Skip to content
lightbox2-module.pot 43.4 KiB
Newer Older
Stella Power's avatar
Stella Power committed
# $Id$
#
# LANGUAGE translation of Drupal (general)
# Copyright YEAR NAME <EMAIL@ADDRESS>
# Generated from files:
#  lightbox2.module,v 1.16.2.17.2.144 2009/01/08 12:33:51 snpower
#  lightbox2.info,v 1.1.2.1.2.3 2008/07/14 11:51:23 snpower
Stella Power's avatar
Stella Power committed
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"POT-Creation-Date: 2009-01-08 12:40+0000\n"
Stella Power's avatar
Stella Power committed
"PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n"
"Last-Translator: NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"

#: lightbox2.module:27 lightbox2.info:0
msgid "Enables Lightbox2 for Drupal"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:30
msgid "<h3>Overview</h3>\n      <p align=\"justify\">Lightbox2 JS is a simple, unobtrusive script used to overlay images on the current page. It's a snap to setup and works on all modern browsers. The module comes with a Lightbox2 Lite option which does not use the jQuery libraries; it is therefore less likely to conflict with anything else.</p>\n      <p align=\"justify\">Places images above your current page, not within. This frees you from the constraints of the layout, particularly column widths. Keeps users on the same page. Clicking to view an image and then having to click the back button to return to your site is bad for continuity (and no fun!).</p>\n<h3>Features</h3>\nThe version 2 module has several benefits over the plain Lightbox module.  Note, not all of these features are available when the \"Lightbox2 Lite\" option is enabled.\n<ul>\n<li>Image Sets: group related images and navigate through them with ease - ideal for your image galleries.</li>\n<li>Slideshow Capability: automatically transition between grouped images, includes play/pause and previous and next buttons.</li>\n<li>HTML Content Support: ability to show websites or other HTML content in a lightbox.</li>\n<li>Video Content Support: ability to show videos in a lightbox.</li>\n<li>Visual Effects: fancy pre-loader and transition when you click on the image.</li>\n<li>Keyboard Shortcuts: useful <a href=\"http://drupal.org/node/249827\">keyboard shortcuts</a> for switching between images, toggling play / pause, etc.</li>\n<li>Zoom Capability: larger images are reduced in size so they fit snugly inside the browser window.  A zoom button can then be clicked on to see it in its original size.</li>\n<li>Automatic Image Detection: configurable automatic re-formatting of\nimage thumbnails, so there is no need to add 'rel=\"lightbox\"' to each\nimage link on your site.  <a\nhref=\"http://drupal.org/project/image\">Image</a>, <a\nhref=\"http://drupal.org/project/inline\">Inline</a>, <a\nhref=\"http://drupal.org/project/flickr\">Flickr</a>, <a\nhref=\"http://drupal.org/project/img_assist\">Image Assist</a> and <a\nhref=\"http://drupal.org/project/imagefield\">CCK Imagefield</a> modules are all\nsupported.  It's also possible to configure a custom list of image classes\nwhich should trigger the lightbox functionality.</li>\n<li><a href=\"http://drupal.org/project/imagecache\">Imagecache</a> Support: adds a Lightbox2 field formatter for <a href=\"http://drupal.org/project/imagefield\">CCK imagefields</a> for your custom <a href=\"http://drupal.org/project/views\">views</a>.</li>\n<li>Image Page Link: a link to the image node can be provided within the lightbox itself.</li>\n<li>Page Exclusion Capability: exclude certain pages on your site from having the lightbox2 functionality.</li>\n<li>Login Support: ability to modify all user/login links so the login form appears in a lightbox.</li>\n<li>Skin and Animation Configuration: configure the order and speed of the lightbox animations, along with the lightbox colors, border size and overlay opacity.</li>\n<li>Gallery 2 Support: support for Gallery 2 images via the <a href=\"http://drupal.org/project/gallery\">Gallery</a> module (beta).</li>\n</ul>\n      <p align=\"justify\"><h3>Usage</h3></p>\n      <h5 style=\"text-decoration: underline;\">Adding a Basic Lightbox</h5>\n      <p>Add rel=&quot;lightbox&quot; attribute to any link tag to activate the lightbox. For example: </p>\n      <p>&lt;a href=&quot;image-1.jpg&quot; rel=&quot;lightbox&quot;&gt;image #1&lt;/a&gt;</p>\n      <p>&lt;a href=&quot;image-1.jpg&quot; rel=&quot;lightbox[][my caption]&quot;&gt;image #1&lt;/a&gt;</p>\n      <p>Optional: To show a caption either use the title attribute or put in the second set of [] of the rel attribute.</p>\n<h5 style=\"text-decoration: underline;\">Grouping Images</h5>\n   <p>If you have a set of related images that you would like to group, follow\n   step one but additionally include a group name between square brackets in the\n   rel attribute. For example:</p><p>&lt;a href=\"images/image-1.jpg\"\n   rel=\"lightbox[roadtrip]\"&gt;image #1&lt;/a&gt;<br />\n&lt;a href=\"images/image-2.jpg\" rel=\"lightbox[roadtrip][caption 2]\"&gt;image\n#2&lt;/a&gt;<br />\n&lt;a href=\"images/image-3.jpg\" rel=\"lightbox[roadtrip][caption 3]\"&gt;image\n#3&lt;/a&gt;<br /></p>\n<p>No limits to the number of image sets per page or how many images are allowed\nin each set.</p>\n\n<p>If you have a set of images that you would like to group together in a lightbox, but only wish for one of these images to be visible on your page, you can assign the \"lightbox_hide_image\" class to hide the additional images.  For example:</p>\n\n<p>&lt;a href=\"images/image-1.jpg\" rel=\"lightbox[roadtrip]\"&gt;image #1&lt;/a&gt;<br />\n&lt;a href=\"images/image-2.jpg\" rel=\"lightbox[roadtrip]\" class=\"lightbox_hide_image\"&gt;image #2&lt;/a&gt;<br />\n&lt;a href=\"images/image-3.jpg\" rel=\"lightbox[roadtrip][caption 3]\" class=\"lightbox_hide_image\"&gt;image #3&lt;/a&gt;</p>\n\n<h5 style=\"text-decoration: underline;\">Slideshow</h5>\n<p>This is very similar to the grouping functionality described above.  The only difference is that \"rel\" attribute should be set to \"lightshow\" instead of \"lightbox\".  Using the same example as above, we could launch the images in a slideshow by doing:</p>\n\n<p>&lt;a href=\"images/image-1.jpg\" rel=\"lightshow[roadtrip]\"&gt;image #1&lt;/a&gt;<br />\n&lt;a href=\"images/image-2.jpg\" rel=\"lightshow[roadtrip][caption 2]\"&gt;image #2&lt;/a&gt;<br />\n&lt;a href=\"images/image-3.jpg\" rel=\"lightshow[roadtrip][caption 3]\"&gt;image #3&lt;/a&gt;</p>\n\n<h5 style=\"text-decoration: underline;\">Video Content</h5>\n<p>\nIt's possible to show video content in the lightbox.  In this case the \"rel\" attribute should be set to <code>lightvideo</code>.  It's possible to group videos and to control the size of the lightbox by setting the 'width' and 'height' properties.  The properties can be configured like <code>lightvideo[group|width:300px; height: 200px;]</code> and <code>lightvideo[|width:300px; height: 200px;][my caption]</code>.  The properties should all be of the format \"property: value;\" - note the closing semi-colon.  If no properties are set, then the default width and height of 400px will be used.  See below for more detailed examples.</p>\n\n<p>Basic example:<br />\n<code>\n&lt;a href=\"http://video.google.com/videoplay?docid=1811233136844420765\" rel=\"lightvideo\"&gt;Google video example - default size&lt;/a&gt;<br />\n</code></p>\n\n<p>Basic example with caption:<br />\n<code>\n&lt;a href=\"http://video.google.com/videoplay?docid=1811233136844420765\" rel=\"lightvideo[][my caption]\"&gt;Google video example - default size&lt;/a&gt;<br />\n</code></p>\n\n<p>Grouped example:<br />\n<code>\n&lt;a href=\"http://video.google.com/videoplay?docid=29023498723974239479\" rel=\"lightvideo[group][my caption]\"&gt;Grouped example 1&lt;/a&gt;<br />\n&lt;a href=\"http://video.google.com/videoplay?docid=1811233136844420765\" rel=\"lightvideo[group][my caption]\"&gt;Grouped example 2&lt;/a&gt;<br />\n</code></p>\n\n<p>Controlling lightbox size example:<br />\n<code>\n&lt;a href=\"http://video.google.com/videoplay?docid=1811233136844420765\" rel=\"lightvideo[|width:400px; height:300px;][my caption]\"&gt;Google video example - custom size&lt;/a&gt;<br />\n</code></p>\n\n<p>Supported Video Formats<br />\nasx, wmv, mov and swf videos should all be supported.  A number of video providers are also supported, for example YouTube and Google Video.  For full details on how to integrate these with lightbox, please see the online documentation.</p>\n\n<h5 style=\"text-decoration: underline;\">HTML Content</h5>\n<p>It's possible to show webpage content in the lightbox, using iframes.  In this case the \"rel\" attribute should be set to <code>lightframe</code>.  Again it's possible to group the items, (e.g. <code>lightframe[search]</code>) but in addition to that, it's possible to control some of the iframe properties.  It's possible to set the 'width', 'height' and 'scrolling' properties of the iframe.  The properties are separated from the group name by a <code>|</code>, for example <code>lightframe[search|width:100px;]</code> and <code>lightframe[search|width:120px][my caption]</code>.  If no grouping is being used, then the <code>|</code> is still used and the format would be <code>lightframe[|width:100px;]</code>.  The properties should all be of the format \"property: value;\" - note the closing semi-colon.  If no iframe properties are set, then the default width and height of 400px will be used.  See below for more detailed examples.</p>\n\n<p>Basic example:<br />\n<code>\n&lt;a href=\"http://www.google.com\" rel=\"lightframe[][Search Google]\"&gt;Search google&lt;/a&gt;\n</code></p>\n\n<p>Grouped example:<br />\n<code>\n&lt;a href=\"http://www.google.com\" rel=\"lightframe[search]\"&gt;Search google&lt;/a&gt;<br />\n&lt;a href=\"http://www.yahoo.com\" rel=\"lightframe[search][Search Yahoo]\"&gt;Search yahoo&lt;/a&gt;\n</code></p>\n\n<p>Controlling iframe property example:<br />\n<code>\n&lt;a href=\"http://www.google.com\" rel=\"lightframe[|width:400px; height:300px; scrolling: auto;]\"&gt;Search google&lt;/a&gt;\n</code></p>\n\n<p>Controlling iframe property when grouped example:<br />\n<code>\n&lt;a href=\"http://www.google.com\" rel=\"lightframe[search|width:400px; height:300px; scrolling: auto;]\"&gt;Search google&lt;/a&gt;<br />\n&lt;a href=\"http://www.yahoo.com\" rel=\"lightframe[search|width:400px; height:300px;][Search Yahoo]\"&gt;Search yahoo&lt;/a&gt;\n</code></p>\n<h5 style=\"text-decoration: underline;\">Inline Content Support</h5>\n<p>It's possible to show HTML snippets in the lightbox, that is on the same domain.  In this case the \"rel\" attribute should be set to <code>lightmodal</code>.  Again it's possible to group the content, (e.g. <code>lightmodal[search]</code>) but in addition to that, it's possible to control some of the inline / modal properties.  It's possible to set the 'width', 'height' and 'scrolling' properties of the inline content.  The properties are separated from the group name by a <code>|</code>, for example <code>lightmodal[search|width:100px;]</code> and <code>lightmodal[search|width:100px;][my caption]</code>.  If no grouping is being used, then the <code>|</code> is still used and the format would be <code>lightmodal[|width:100px;]</code>.  The properties should all be of the format \"property: value;\" - note the closing semi-colon.  If no properties are set, then the default width and height of 400px will be used. See below for more detailed examples.</p>\n\n<p>Basic example:<br />\n<code>\n&lt;a href=\"search.php\" rel=\"lightmodal\"&gt;Search&lt;/a&gt;\n</code></p>\n\n<p>Basic example with caption:<br />\n<code>\n&lt;a href=\"search.php\" rel=\"lightmodal[][my caption]\"&gt;Search&lt;/a&gt;\n</code></p>\n\n<p>Grouped example:<br />\n<code>\n&lt;a href=\"search.php\" rel=\"lightmodal[search]\"&gt;Search&lt;/a&gt;<br />\n&lt;a href=\"search.php?status=1\" rel=\"lightmodal[search][published]\"&gt;Search published content&lt;/a&gt;\n</code></p>\n\n<p>Controlling modal property example:<br />\n<code>\n&lt;a href=\"search.php\" rel=\"lightmodal[|width:400px; height:300px; scrolling: auto;]\"&gt;Search&lt;/a&gt;\n</code></p>\n\n<p>Controlling modal property when grouped example:<br />\n<code>\n&lt;a href=\"search.php\" rel=\"lightmodal[search|width:400px; height:300px; scrolling: auto;]\"&gt;Search&lt;/a&gt;<br />\n&lt;a href=\"search.php?status=1\" rel=\"lightmodal[search|width:400px; height:300px;][Search published]\"&gt;Search published content&lt;/a&gt;<br />\n&lt;a href=\"search.php?status=0\" rel=\"lightmodal[search|width:400px; height:300px;][Search Unpublished]\"&gt;Search unpublished content&lt;/a&gt;\n</code></p>\n\n<h3>Keyboard Shortcuts</h3>\n<p>The default keyboard shortcuts are listed below.  You can override these on the admin page.</a>\n\n<table border=0>\n<tr><td>Close Lightbox</td><td>x</td></tr>\n<tr><td></td><td>o</td></tr>\n<tr><td></td><td>c</td></tr>\n<tr><td></td><td>ESC</td></tr>\n\n<tr><td>Previous Image</td><td>p</td></tr>\n<tr><td></td><td>Left Arrow</td></tr>\n\n<tr><td>Next Image</td><td>n</td></tr>\n<tr><td></td><td>Right Arrow</td></tr>\n\n<tr><td>Toggle Zoom</td><td>z (not available in slideshow)</td></tr>\n\n<tr><td>Toggle Play / Pause</td><td>Spacebar (slideshow only)</td></tr>\n</table>\n\n<p>Not all of the keyboard shortcuts work in the Opera browser, for example \"z\" for toggling the zoom and \"spacebar\" for toggling play / pause in slideshows.  This can be overcome by updating your shortcut settings in the Opera preferences editor.</p>\n\n"
#: lightbox2.module:217 lightbox2.info:0
Stella Power's avatar
Stella Power committed
msgid "Lightbox2"
msgstr ""

#: lightbox2.module:220;227
Stella Power's avatar
Stella Power committed
msgid "Allows the user to configure the lightbox2 settings"
msgstr ""

#: lightbox2.module:223
msgid "General"
msgstr ""

#: lightbox2.module:232;1003
msgid "Slideshow"
msgstr ""

#: lightbox2.module:236
msgid "Allows the user to configure the lightbox2 slideshow functionality."
msgstr ""

#: lightbox2.module:241;1004
Stella Power's avatar
Stella Power committed
msgid "HTML Content"
msgstr ""

#: lightbox2.module:245
Stella Power's avatar
Stella Power committed
msgid "Allows the user to configure the lightbox2 HTML content functionality."
msgstr ""

#: lightbox2.module:250
msgid "Automatic image handling"
msgstr ""

#: lightbox2.module:254
msgid "Allows the user to configure the lightbox2 automatic image handling settings"
#: lightbox2.module:267
Stella Power's avatar
Stella Power committed
msgid "Login"
msgstr ""

#: lightbox2.module:317
Stella Power's avatar
Stella Power committed
msgid "View Image Details"
msgstr ""

#: lightbox2.module:317
Stella Power's avatar
Stella Power committed
msgid "Image !current of !total"
msgstr ""

#: lightbox2.module:317
msgid "Page !current of !total"
msgstr ""

#: lightbox2.module:317
msgid "Video !current of !total"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:323
msgid "Layout settings"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:333
msgid "Lightbox2 lite"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:341
msgid "Use lightbox2 lite"
msgstr ""

#: lightbox2.module:342
msgid "Checking this box will enable Lightbox2 Lite and will disable all of the automatic image URL re-formatting features.  It also disables all grouping features."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:350
msgid "Use alternative layout"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:351
msgid "Enabling this option alters the layout of the lightbox elements. In the alternative layout the navigational links appear under the image with the caption text, instead of being overlayed on the image itself.  This doesn't apply when using Lightbox Lite."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:358
Stella Power's avatar
Stella Power committed
msgid "Force visibility of navigation links"
msgstr ""

#: lightbox2.module:359
msgid "When viewing grouped images using the default layout, the navigational links to the next and previous images are only displayed when you hover over the image.  Checking this box forces these links to be displayed all the time."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:366
msgid "Continuous galleries"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:367
Stella Power's avatar
Stella Power committed
msgid "When viewing grouped images, the Next button on the last image will display the first image, while the Previous button on the first image will display the last image."
msgstr ""

#: lightbox2.module:374
msgid "Open image page in new window"
msgstr ""

#: lightbox2.module:375
msgid "This controls whether the link to the image page underneath the image is opened in a new window or the current window."
msgstr ""

#: lightbox2.module:383
msgid "Text for image page link"
msgstr ""

#: lightbox2.module:384
msgid "This is the text that will appear as the link to the image page underneath the image in the lightbox.  Leave blank for text not to appear."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:391
msgid "Image count text"
#: lightbox2.module:392
msgid "This text is used to display the image count underneath the image in the lightbox when image grouping is enabled.  Use !current as a placeholder for the number of the current image and !total for the total number of images in the group.  For example, \"Image !current of !total\".  Leave blank for text not to appear."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:399
msgid "Page count text"
#: lightbox2.module:400
msgid "This text is used to display the page count underneath HTML content displayed in the lightbox when using groups.  Use !current as a placeholder for the number of the current page and !total for the total number of pages in the group.  For example, \"Page !current of !total\".  Leave blank for text not to appear."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:407
msgid "Video count text"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:408
msgid "This text is used to display the count underneath video content displayed in the lightbox when using groups.  Use !current as a placeholder for the number of the current video and !total for the total number of videos in the group.  For example, \"Video !current of !total\".  Leave blank for text not to appear."
msgstr ""

#: lightbox2.module:417
msgid "Image resize settings"
msgstr ""

#: lightbox2.module:425
msgid "Disable zoom feature"
msgstr ""

#: lightbox2.module:426
msgid "By default, when the image being displayed in the lightbox is larger than the browser window, it is resized to fit within the window and a zoom button is provided for users who wish to view the image in its original size.  Checking this box will disable this feature and all images will be displayed without any resizing."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:433
msgid "Disable zoom in / out feature"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:434
Stella Power's avatar
Stella Power committed
msgid "When the image being displayed in the lightbox is resized to fit in the browser window, a \"zoom in\" button is shown.  This allows the user to zoom in to see the original full size image.  They will then see a \"zoom out\" button which will allow them to see the smaller resized version.  Checking this box will prevent these buttons from appearing."
msgstr ""

#: lightbox2.module:443
msgid "Modal form settings"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:451
msgid "Enable login support"
#: lightbox2.module:452
Stella Power's avatar
Stella Power committed
msgid "Enabling this option will modify all login links so that the login form appears in a lightbox."
msgstr ""

#: lightbox2.module:459
msgid "Enable contact form support"
msgstr ""

#: lightbox2.module:460
msgid "Enabling this option will modify all contact links so that the contact form appears in a lightbox."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:468
msgid "Video settings"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:476
msgid "Enable video support"
msgstr ""

#: lightbox2.module:477
Stella Power's avatar
Stella Power committed
msgid "By default, video support is disabled in order to reduce the amount of javascript needed.  Checking this box will enable it."
#: lightbox2.module:484
msgid "Path to FLV Player"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:485
msgid "The path to the FLV player, relative to Drupal root directory."
msgstr ""

#: lightbox2.module:492
msgid "FLV Player flashvars"
msgstr ""

#: lightbox2.module:493
msgid "Flashvars for the FLV Player where supported, e.g. \"autoplay=1&playerMode=normal\"."
msgstr ""

#: lightbox2.module:500
msgid "Page specific lightbox2 settings"
msgstr ""

#: lightbox2.module:507
Stella Power's avatar
Stella Power committed
msgid "Load only on the listed pages."
msgstr ""

#: lightbox2.module:508
Stella Power's avatar
Stella Power committed
msgid "Load on every page except the listed pages."
msgstr ""

#: lightbox2.module:513
msgid "Enable lightbox2 on specific pages"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:519
Stella Power's avatar
Stella Power committed
msgid "Pages"
msgstr ""

#: lightbox2.module:520
msgid "List one page per line as Drupal paths.  The % and * characters are wildcards.  Example paths are \"node/add/page\" and \"node/add/*\".  Use &lt;front&gt; to match the front page."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:530
msgid "CCK display settings"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:536
msgid "No Grouping"
msgstr ""

#: lightbox2.module:537
msgid "Group by Field Name"
msgstr ""

#: lightbox2.module:538
msgid "Group by Node Id"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:539
msgid "Group by Field Name and Node Id"
msgstr ""

#: lightbox2.module:546
msgid "Select Emfield Image grouping in Views"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:547
Stella Power's avatar
Stella Power committed
msgid "By default, emfield images in views are grouped by the field name they appear in the view in.  You can override that grouping here."
msgstr ""

#: lightbox2.module:557
msgid "Select Imagefield grouping in Views"
#: lightbox2.module:558
msgid "By default, imagefields in views are grouped by the field name they appear in the view in.  You can override that grouping here."
#: lightbox2.module:564
msgid "Use node title as caption"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:565
Stella Power's avatar
Stella Power committed
msgid "By default, the caption for imagefields is the image title text configured.  If no title is configured, then the alt text will be used.  This option allows you to override that and always display the node title as the image caption."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:576
Stella Power's avatar
Stella Power committed
msgid "Advanced settings"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:586
msgid "Location of javscript"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:587
msgid "Header"
msgstr ""

#: lightbox2.module:587
msgid "Footer"
msgstr ""

#: lightbox2.module:588
msgid "By default, the lightbox javascript files are loaded in the HTML header.  However, for sites using SWFObject to load their Flash content, the footer setting is recommended to prevent \"Operation Aborted\" errors in IE.  If using the footer setting, please note that not all themes correctly implement the footer region and may require a small change."
#: lightbox2.module:594
msgid "Click on overlay or lightbox to close it"
msgstr ""

#: lightbox2.module:595
msgid "Enable user to close lightbox by clicking on the lightbox itself or the overlay background."
msgstr ""

#: lightbox2.module:603
msgid "Keyboard shortcuts"
msgstr ""

#: lightbox2.module:604
msgid "Configure the keyboard shortcuts for controlling the lightbox.  These options do not apply to the Lightbox2 Lite version, which uses the default \"Close keys\" (c, x and esc) to close the lightbox."
msgstr ""

#: lightbox2.module:611
msgid "Close keys"
msgstr ""

#: lightbox2.module:612
msgid "A list of keys (or key codes) that a user may use to close the lightbox. Values should be separated by a space. Defaults to 'c x 27' (c, x, or esc)."
msgstr ""

#: lightbox2.module:618
msgid "Previous keys"
msgstr ""

#: lightbox2.module:619
msgid "A list of keys (or key codes) that a user may use to navigate to the previous item in the lightbox. Values should be separated by a space. Defaults to 'p 37' (p or left arrow)."
msgstr ""

#: lightbox2.module:625
msgid "Next keys"
msgstr ""

#: lightbox2.module:626
msgid "A list of keys (or key codes) that a user may use to navigate to the next item in the lightbox. Values should be separated by a space. Defaults to 'n 39' (n or right arrow)."
msgstr ""

#: lightbox2.module:632
msgid "Zoom keys"
msgstr ""

#: lightbox2.module:633
msgid "A list of keys (or key codes) that a user may use to zoom in / out of images in the lightbox. Values should be separated by a space. Defaults to 'z'."
msgstr ""

#: lightbox2.module:639
msgid "Pause / play keys"
msgstr ""

#: lightbox2.module:640
msgid "A list of keys (or key codes) that a user may use to pause / play the lightbox. Values should be separated by a space. Defaults to '32' (spacebar)."
msgstr ""

#: lightbox2.module:648
Stella Power's avatar
Stella Power committed
msgid "Skin settings"
msgstr ""

#: lightbox2.module:654
msgid "Border size"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:657
Stella Power's avatar
Stella Power committed
msgid "Enter the size of the border in pixels to display around the image."
msgstr ""

#: lightbox2.module:663
msgid "Lightbox color"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:667
Stella Power's avatar
Stella Power committed
msgid "Enter a hexadecimal color value for the border.  For example <code>fff</code> or <code>ffffff</code> for white)."
msgstr ""

#: lightbox2.module:673
msgid "Font color"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:677
Stella Power's avatar
Stella Power committed
msgid "Enter a hexadecimal color value for the font.  For example <code>000</code> or <code>000000</code> for black)."
msgstr ""

#: lightbox2.module:683
Stella Power's avatar
Stella Power committed
msgid "Distance from top"
msgstr ""

#: lightbox2.module:686
Stella Power's avatar
Stella Power committed
msgid "Enter the position of the top of the lightbox in\npixels.  Leave blank for automatic calculation."
msgstr ""

#: lightbox2.module:696
Stella Power's avatar
Stella Power committed
msgid "Overlay settings"
msgstr ""

#: lightbox2.module:707
msgid "Overlay opacity"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:709
Stella Power's avatar
Stella Power committed
msgid "The overlay opacity setting determines how visible the background page is behind the lightbox.  The opacity value can range from 0.0 to 1.0 where 0.0 is 100% transparent and 1.0 is 100% opaque."
msgstr ""

#: lightbox2.module:714
msgid "Overlay color"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:718
Stella Power's avatar
Stella Power committed
msgid "Enter a hexadecimal color value for the overlay.  For example <code>000</code> or <code>000000</code> for black)."
msgstr ""

#: lightbox2.module:726
Stella Power's avatar
Stella Power committed
msgid "Animation settings"
msgstr ""

#: lightbox2.module:732
Stella Power's avatar
Stella Power committed
msgid "These options aren't available when using Lightbox2 Lite."
msgstr ""

#: lightbox2.module:735
Stella Power's avatar
Stella Power committed
msgid "Simultaneous"
msgstr ""

#: lightbox2.module:736
Stella Power's avatar
Stella Power committed
msgid "Width then height"
msgstr ""

#: lightbox2.module:737
Stella Power's avatar
Stella Power committed
msgid "Height then width"
msgstr ""

#: lightbox2.module:741
msgid "Resize sequence"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:743
Stella Power's avatar
Stella Power committed
msgid "The sequence to use for the resizing animation."
msgstr ""

#: lightbox2.module:748
msgid "Resize duration"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:751
Stella Power's avatar
Stella Power committed
msgid "The duration (in seconds) of the resizing animation.  Enter a value between 0 and 10."
msgstr ""

#: lightbox2.module:756
msgid "Appearance duration"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:759
Stella Power's avatar
Stella Power committed
msgid "The duration (in seconds) of the lightbox appearance animation.  Enter a value between 0 and 10."
msgstr ""

#: lightbox2.module:765
msgid "Caption slide down duration"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:768
Stella Power's avatar
Stella Power committed
msgid "The duration (in seconds) of the caption sliding-down animation.  Enter a value between 0 and 10."
msgstr ""

#: lightbox2.module:794
msgid "Interval seconds"
#: lightbox2.module:795
msgid "The slideshow interval is the length of time in seconds an image is visible before the slideshow shows the next image."
#: lightbox2.module:803
msgid "Automatically start slideshow"
msgstr ""

#: lightbox2.module:804
msgid "When enabled the slideshow will automatically start."
#: lightbox2.module:811
msgid "Automatically exit slideshow"
msgstr ""

#: lightbox2.module:812
msgid "When enabled the lightbox will automatically close after displaying the last image."
#: lightbox2.module:819
msgid "Show play / pause button"
#: lightbox2.module:820
msgid "When enabled, a play / pause button will be shown in the slideshow allowing the user more control over their viewing experience."
#: lightbox2.module:827
msgid "Pause slideshow on \"Next Image\" click"
#: lightbox2.module:828
msgid "When enabled the slideshow is automatically paused, and the following image shown, when the \"Next\" button is clicked."
#: lightbox2.module:835
msgid "Pause slideshow on \"Previous Image\" click"
#: lightbox2.module:836
msgid "When enabled the slideshow is automatically paused, and the previous image shown, when the \"Previous\" button is clicked."
#: lightbox2.module:843
msgid "Continuous loop"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:844
Stella Power's avatar
Stella Power committed
msgid "When enabled the slideshow will automatically start over after displaying the last slide.  This prevents the slideshow from automatically exiting when enabled."
msgstr ""

#: lightbox2.module:873
msgid "FLV player path doesn't exist."
msgstr ""

#: lightbox2.module:878;887;891
Stella Power's avatar
Stella Power committed
msgid "You must enter a properly formed hex value."
msgstr ""

#: lightbox2.module:883
Stella Power's avatar
Stella Power committed
msgid "You must enter a size greater than 0 pixels."
msgstr ""

#: lightbox2.module:895
Stella Power's avatar
Stella Power committed
msgid "You must enter a size greater than 0 pixels.  Leave blank for default positioning."
msgstr ""

#: lightbox2.module:899;903;907
Stella Power's avatar
Stella Power committed
msgid "You must enter a duration between 0 and 10 seconds."
msgstr ""

#: lightbox2.module:920
msgid "The \"interval seconds\" value must be numeric."
#: lightbox2.module:944
msgid "Default width"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:945
Stella Power's avatar
Stella Power committed
msgid "The default width of the iframe in pixels."
msgstr ""

#: lightbox2.module:953
msgid "Default height"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:954
Stella Power's avatar
Stella Power committed
msgid "The default height of the iframe in pixels."
msgstr ""

#: lightbox2.module:962
msgid "Enable border"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:963
Stella Power's avatar
Stella Power committed
msgid "Enable iframe border.  You can modify the border style in your theme's css file using the iframe's id \"lightboxFrame\"."
msgstr ""

#: lightbox2.module:977
Stella Power's avatar
Stella Power committed
msgid "The \"default width\" value must be numeric."
msgstr ""

#: lightbox2.module:980
Stella Power's avatar
Stella Power committed
msgid "The \"default height\" value must be numeric."
msgstr ""

#: lightbox2.module:1000
msgid "Disabled"
#: lightbox2.module:1001
msgid "Lightbox"
msgstr ""

#: lightbox2.module:1002
msgid "Lightbox grouped"
msgstr ""

#: lightbox2.module:1005
Stella Power's avatar
Stella Power committed
msgid "HTML Content grouped"
msgstr ""

#: lightbox2.module:1010
msgid "These options allow automatic URL re-formatting of images.  This removes the need for you to add 'rel=\"lightbox\"' to each image link throughout your site.  You can select which image sizes will trigger the lightbox and configure a list of image CSS classes which should also have their URLs automatically re-formatted.  This feature is not available when using Lightbox2 Lite."
#: lightbox2.module:1017
msgid "Automatic handlers"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1026
msgid "Image node settings"
msgstr ""

#: lightbox2.module:1034
msgid "Automatic handler for image nodes"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1036
msgid "Choose how URLs for image nodes will be automatically handled."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1051
msgid "Lightbox image display size"
msgstr ""

#: lightbox2.module:1054
msgid "Select which image size will be loaded in the lightbox.  This only applies to images uploaded with the Image module."
#: lightbox2.module:1060
msgid "Image trigger size"
msgstr ""

#: lightbox2.module:1063
msgid "Select which image size, when clicked on, will automatically trigger the lightbox.  This only applies to images uploaded with the Image module."
#: lightbox2.module:1071
msgid "Disable lightbox for gallery lists"
#: lightbox2.module:1072
msgid "Checking this box will disable the lightbox for images in gallery lists.  This means it is possible to open a gallery by clicking on the teaser image, but the lightbox will still appear when viewing images within the gallery.  This only applies to image galleries created with the \"image gallery\" module."
#: lightbox2.module:1080
msgid "Flickr images"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1087
msgid "Automatic handler for Flickr images"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1089
msgid "Choose how URLs for Flickr images will be automatically handled."
#: lightbox2.module:1097
msgid "Gallery2 images"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1104
msgid "Automatic handler for Gallery2 block images"
#: lightbox2.module:1106
msgid "Choose how URLs for images, contained within Gallery2 image blocks, will be automatically handled."
#: lightbox2.module:1115
msgid "Inline images"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1122
msgid "Automatic handler for Inline images"
#: lightbox2.module:1124
msgid "Choose how URLs for Inline images will be automatically handled."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1132
msgid "Image Assist images"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1139
msgid "Automatic handler for Image Assist custom size images"
#: lightbox2.module:1141
msgid "Choose how URLs for custom size images, displayed by the Image Assist module, will be automatically handled."
#: lightbox2.module:1149
msgid "Custom class images"
#: lightbox2.module:1156
Stella Power's avatar
Stella Power committed
msgid "Automatic handler for custom class images"
#: lightbox2.module:1158
Stella Power's avatar
Stella Power committed
msgid "Choose how URLs for custom class images will be automatically handled."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1164
Stella Power's avatar
Stella Power committed
msgid "Custom image trigger classes"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1165
Stella Power's avatar
Stella Power committed
msgid "List the image classes which should trigger the lightbox when clicked on.  Put each class on a separate line."
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1175
Stella Power's avatar
Stella Power committed
msgid "Acidfree settings"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1181
msgid "Disable lightbox for Acidfree gallery lists"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1182
msgid "Checking this box will disable the lightbox for images in gallery lists.  This means it is possible to open a gallery by clicking on the teaser image, but the lightbox will still appear when viewing images within the gallery.  This only applies to image galleries created with the \"acidfree\" module."
#: lightbox2.module:1189
msgid "Enable lightbox for Acidfree videos"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1190
Stella Power's avatar
Stella Power committed
msgid "Checking this box will enable the display of acidfree videos in a lightbox.  This only applies to videos created by the \"video\" module and which appear in an acidfree gallery."
msgstr ""

#: lightbox2.module:1205;1309
msgid "Image links with 'rel=\"lightbox\"' in the &lt;a&gt; tag will appear in a Lightbox when clicked on."
#: lightbox2.module:1208
msgid "To add a lightbox to your images, add rel=\"lightbox\" attribute to any link tag to activate the lightbox. For example:"
#: lightbox2.module:1209
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=\"image-1.jpg\" rel=\"lightbox\"&gt;image #1&lt;/a&gt;</code>"
#: lightbox2.module:1210
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=\"image-1.jpg\" rel=\"lightbox[][my caption]\"&gt;image #1&lt;/a&gt;</code>"
msgstr ""

#: lightbox2.module:1211
Stella Power's avatar
Stella Power committed
msgid " To show a caption either use the title attribute or put in the second set of square brackets of the rel attribute."
#: lightbox2.module:1212
msgid "If you have a set of related images that you would like to group, then you will need to include a group name between square brackets in the rel attribute. For example:"
#: lightbox2.module:1213
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=\"image-1.jpg\" rel=\"lightbox[roadtrip]\"&gt;image #1&lt;/a&gt;<br /> &lt;a href=\"image-2.jpg\" rel=\"lightbox[roadtrip][caption 2]\"&gt;image #2&lt;/a&gt;<br /> &lt;a href=\"image-3.jpg\" rel=\"lightbox[roadtrip][caption 3]\"&gt;image #3&lt;/a&gt;<br /> </code>"
#: lightbox2.module:1214
msgid "There are no limits to the number of image sets per page or how many images are allowed in each set."
#: lightbox2.module:1215;1232
msgid "If you wish to turn the caption into a link, format your caption in the following way:"
#: lightbox2.module:1216
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=\"image-1.jpg\" rel='lightbox[][&lt;a href=\"http://www.yourlink.com\"&gt;View Image Details&lt;/a&gt;]' &gt;image #1&lt;/a&gt;</code>"
#: lightbox2.module:1221
msgid "Image links from G2 are formatted for use with Lightbox2"
msgstr ""

#: lightbox2.module:1225;1315
msgid "Image links with 'rel=\"lightshow\"' in the &lt;a&gt; tag will appear in a Lightbox slideshow when clicked on."
#: lightbox2.module:1228
Stella Power's avatar
Stella Power committed
msgid "To add a lightbox slideshow to your images, add rel=\"lightshow[slideshowname][slide caption]\" attribute to any link tag to activate the slideshow. For example:"
#: lightbox2.module:1229
msgid "<code>&lt;a href=\"image-1.jpg\" rel=\"lightshow[show1]\"&gt;image #1&lt;/a&gt;<br /> &lt;a href=\"image-2.jpg\" rel=\"lightshow[show1]\"&gt;image #2&lt;/a&gt;<br /> &lt;a href=\"image-3.jpg\" rel=\"lightshow[show1]\"&gt;image #3&lt;/a&gt;<br /> </code>"
#: lightbox2.module:1230
Stella Power's avatar
Stella Power committed
msgid "The title attribute in the link tag is optional. The addition of this attribute enables the display of a caption with the image displayed in the lightbox."
msgstr ""

#: lightbox2.module:1231
msgid "There are no limits to the number of slideshow image sets per page or how many images are allowed in each slideshow."
#: lightbox2.module:1233
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=\"image-1.jpg\" rel='lightshow[show1][&lt;a href=\"http://www.yourlink.com\"&gt;View Image Details&lt;/a&gt;]'&gt;image #1&lt;/a&gt;</code>"
#: lightbox2.module:1239;1318
msgid "Links to HTML content with 'rel=\"lightframe\"' in the &lt;a&gt; tag will appear in a Lightbox when clicked on."
#: lightbox2.module:1242
Stella Power's avatar
Stella Power committed
msgid "It's possible to show webpage content in the lightbox, using iframes.  In this case the \"rel\" attribute should be set to \"lightframe\".  Again it's possible to group the content, (e.g. <code>lightframe[search][caption]</code>) but in addition to that, it's possible to control some of the iframe properties.  It's possible to set the \"width\", \"height\" and \"scrolling\" properties of the iframe.  The properties are separated from the group name by a <code>|</code>, for example <code>lightframe[search|width:100px;][caption]</code>.  If no grouping is being used, then the <code>|</code> is still used and the format would be <code>lightframe[|width:100px;]</code>.  The properties should all be of the format \"property: value;\" - note the closing semi-colon.  If no iframe properties are set, then the default width and height of 400px will be used.  See below for more detailed examples."
#: lightbox2.module:1243;1262;1276
msgid "Basic example:"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1244
msgid "<code>&lt;a href=&quot;http://www.google.com&quot; rel=&quot;lightframe&quot;&gt;Search google&lt;/a&gt;</code>"
#: lightbox2.module:1245;1278
msgid "Grouped example:"
#: lightbox2.module:1246
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=&quot;http://www.google.com&quot; rel=&quot;lightframe[search][caption]&quot;&gt;Search google&lt;/a&gt;<br />&lt;a href=&quot;http://www.yahoo.com&quot; rel=&quot;lightframe[search]&quot;&gt;Search yahoo&lt;/a&gt;</code>"
#: lightbox2.module:1248
msgid "Controlling iframe property example:"
#: lightbox2.module:1249
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=&quot;http://www.google.com&quot; rel=&quot;lightframe[|width:400px; height:300px; scrolling: auto;][caption]&quot;&gt;Search google&lt;/a&gt;</code>"
#: lightbox2.module:1250
msgid "Controlling iframe property when grouped example:"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1251
msgid "<code>&lt;a href=&quot;http://www.google.com&quot; rel=&quot;lightframe[search|width:400px; height:300px; scrolling: auto;]&quot;&gt;Search google&lt;/a&gt;<br />&lt;a href=&quot;http://www.yahoo.com&quot; rel=&quot;lightframe[search|width:400px; height:300px;]&quot;&gt;Search yahoo&lt;/a&gt;</code>"
#: lightbox2.module:1258;1321
msgid "Links to video content with 'rel=\"lightvideo\"' in the &lt;a&gt; tag will appear in a Lightbox when clicked on."
msgstr ""

#: lightbox2.module:1261
msgid "It's possible to show video content in the lightbox.  In this case the \"rel\" attribute should be set to <code>lightvideo</code>.  It's possible to group videos and to control the size of the lightbox by setting the \"width\" and \"height\" properties.  The properties can be configured like <code>lightvideo[group|width:300px; height: 200px;][caption]</code>.  The properties should all be of the format \"property: value;\" - note the closing semi-colon.  If no properties are set, then the default width and height of 400px will be used.  See below for more detailed examples."
#: lightbox2.module:1263
msgid "<code>&lt;a href=&quot;http://video.google.com/videoplay?docid=1811233136844420765&quot; rel=&quot;lightvideo&quot;&gt;Google video example - default size&lt;/a&gt;</code>"
msgstr ""

#: lightbox2.module:1264
msgid "Controlling lightbox size example:"
msgstr ""

#: lightbox2.module:1265
msgid "<code>&lt;a href=&quot;http://video.google.com/videoplay?docid=1811233136844420765&quot; rel=&quot;lightvideo[group|width:400px; height:300px;][caption]&quot;&gt;Google video example - custom size&lt;/a&gt;</code>"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1266
msgid "Supported video formats include asx, wmv, mov and swf.  A number of online video providers are also supported, including YouTube and Google Video.  For a full list of the current supported video providers please see the documentation on drupal.org."
msgstr ""

#: lightbox2.module:1272;1324
Stella Power's avatar
Stella Power committed
msgid "Links to inline or modal content with 'rel=\"lightmodal\"' in the &lt;a&gt; tag will appear in a Lightbox when clicked on."
msgstr ""

#: lightbox2.module:1275
Stella Power's avatar
Stella Power committed
msgid "It's possible to show HTML snippets in the lightbox, that is on the same domain.  In this case the \"rel\" attribute should be set to \"lightmodal\".  Again it's possible to group the content, (e.g. <code>lightmodal[group][caption]</code>) but in addition to that, it's possible to control some of the modal properties.  It's possible to set the \"width\", \"height\" and \"scrolling\" properties of the modal.  The properties are separated from the group name by a <code>|</code>, for example <code>lightmodal[group|width:100px;][caption]</code>.  If no grouping is being used, then the <code>|</code> is still used and the format would be <code>lightmodal[|width:100px;]</code>.  The properties should all be of the format \"property: value;\" - note the closing semi-colon.  If no modal properties are set, then the default width and height of 400px will be used.  See below for more detailed examples."
msgstr ""

#: lightbox2.module:1277
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=&quot;search.php&quot; rel=&quot;lightmodal&quot;&gt;Search&lt;/a&gt;</code>"
msgstr ""

#: lightbox2.module:1279
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=&quot;search.php&quot; rel=&quot;lightmodal[search][caption 1]&quot;&gt;Search&lt;/a&gt;<br />&lt;a href=&quot;search.php?status=1&quot; rel=&quot;lightmodal[search]&quot;&gt;Search published&lt;/a&gt;</code>"
msgstr ""

#: lightbox2.module:1281
Stella Power's avatar
Stella Power committed
msgid "Controlling modal property example:"
msgstr ""

#: lightbox2.module:1282
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=&quot;search.php&quot; rel=&quot;lightmodal[|width:400px; height:300px; scrolling: auto;][caption]&quot;&gt;Search&lt;/a&gt;</code>"
msgstr ""

#: lightbox2.module:1283
Stella Power's avatar
Stella Power committed
msgid "Controlling modal property when grouped example:"
msgstr ""

#: lightbox2.module:1284
Stella Power's avatar
Stella Power committed
msgid "<code>&lt;a href=&quot;search.php&quot; rel=&quot;lightmodal[search|width:400px; height:300px; scrolling: auto;]&quot;&gt;Search&lt;/a&gt;<br />&lt;a href=&quot;search.php?status=1&quot; rel=&quot;lightmodal[search|width:400px; height:300px;]&quot;&gt;Search published&lt;/a&gt;</code>"
msgstr ""

#: lightbox2.module:1298
msgid "Lightbox filter"
msgstr ""

#: lightbox2.module:1299
msgid "Lightbox G2 filter"
msgstr ""

#: lightbox2.module:1300
msgid "Lightbox slideshow filter"
msgstr ""

#: lightbox2.module:1301
msgid "Lightbox iframe filter"
msgstr ""

#: lightbox2.module:1302
msgid "Lightbox video filter"
msgstr ""

#: lightbox2.module:1303
Stella Power's avatar
Stella Power committed
msgid "Lightbox modal filter"
msgstr ""

#: lightbox2.module:1304
Stella Power's avatar
Stella Power committed
msgid "Disable Lightbox iframe filter"
msgstr ""

#: lightbox2.module:1312
msgid "Turns g2_filter links into Lightbox2 appropriate links"
Stella Power's avatar
Stella Power committed
msgstr ""

#: lightbox2.module:1327
Stella Power's avatar
Stella Power committed
msgid "It's possible to show webpage content in the lightbox, using iframes.  In this case the \"rel\" attribute should be set to \"lightframe\".  However, users can do this without any filters to be enabled.  To prevent users from adding iframes to the site in this manner, then please enable this option."
msgstr ""

#: lightbox2.module:1560
Stella Power's avatar
Stella Power committed
msgid "press !x to close"
msgstr ""

#: lightbox2.module:1703
Stella Power's avatar
Stella Power committed
msgid "Lightbox2: Image Thumbnail -> Original"
msgstr ""

#: lightbox2.module:1707
Stella Power's avatar
Stella Power committed
msgid "Lightbox2 slideshow: Image Thumbnail -> Original"
msgstr ""

#: lightbox2.module:1711
Stella Power's avatar
Stella Power committed
msgid "Lightbox2 iframe: Image Thumbnail -> Content"
msgstr ""

#: lightbox2.module:1717
Stella Power's avatar
Stella Power committed
msgid "Lightbox2: Image Thumbnail -> Full Size Video"
msgstr ""

#: lightbox2.module:1723
Stella Power's avatar
Stella Power committed
msgid "Lightbox2 iframe"
msgstr ""

#: lightbox2.module:205
Stella Power's avatar
Stella Power committed
msgid "administer lightbox2"
msgstr ""

#: lightbox2.module:0
Stella Power's avatar
Stella Power committed
msgid "lightbox2"
msgstr ""