first commit
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
<h2>How to Use:</h2>
|
||||
<ol>
|
||||
<li>You can use WordPress image galleries and have them grouped and auto-lightboxed: <a href="http://codex.wordpress.org/Gallery_Shortcode"><code>[gallery link="file"]</code></a></li>
|
||||
<li>[gallery]'s are automatically grouped by post ID. You can split them into separate slideshows, using the <code>group</code>-attribute:
|
||||
<pre><code> [gallery link="file" ids="1,2,3" group="mon"]
|
||||
[gallery link="file" ids="4,5,6" group="tue"]</code></pre>
|
||||
</li>
|
||||
<li>You can also add a <code>rel="lightbox"</code> attribute to any link tag to activate the lightbox. For example:
|
||||
<pre><code> <a href="images/image-1.jpg" rel="lightbox" title="my caption">image #1</a></code></pre>
|
||||
<em>Optional:</em> Use the <code>title</code> attribute if you want to show a caption.
|
||||
</li>
|
||||
<li>If you have a set of related images that you would like to group, simply include a group name in the rel attribute. For example:
|
||||
<pre><code> <a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
|
||||
<a href="images/image-2.jpg" rel="lightbox[roadtrip]">image #2</a>
|
||||
<a href="images/image-3.jpg" rel="lightbox[roadtrip]">image #3</a></code></pre>
|
||||
No limits to the number of image sets per page or how many images are allowed in each set. Go nuts!</li>
|
||||
<li>To <strong>disable</strong> lightboxing of an image link, just set any other rel-attribute: <code>rel="nobox"</code></li>
|
||||
<li>You can use the <code>data-download</code>-attribute to set a custom download link:
|
||||
<a href="image-medium.jpg" rel="lightbox" data-download="image-superlarge.jpg"> [...] </a> </li>
|
||||
<li><a href="http://wordpress.org/extend/plugins/infinite-scroll/">Infinite-Scroll</a> and similar "endless pages"-plugin, should call <code>doLightbox();</code> whenever it loads new content. Most plugins have a setting
|
||||
for code that is called after each new page is loaded - just give it this:
|
||||
<code>if(typeof doLightBox !== 'undefined' && typeof jQuery !== 'undefined'){
|
||||
doLightBox();
|
||||
}</code></li>
|
||||
</ol>
|
||||
<h2>Troubleshooting</h2>
|
||||
<p>If you have problems with WP jQuery Lightbox, please make sure you try these steps before asking for help. If you ask for help and I find any of these steps would fix the problem, I will just link you back here to do the work yourself.</p>
|
||||
<ol>
|
||||
<li>Make sure your site is not throwing any javascript errors. Use <a href="http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers">your browsers javascript console</a> to find out.
|
||||
<li>If you're running a custom theme:</li>
|
||||
<ol>
|
||||
<li>Always have <code>wp_header();</code> just before the closing <code></head></code> tag of your theme, or you will break many plugins, which generally use this hook to reference JavaScript files</li>
|
||||
<li>Always have <code>wp_footer();</code>, just before the closing <code></body></code>, for the same reason</li>
|
||||
<li>Many JavaScript optimizers, combiners, minifiers, etc. conflict with <a href="http://codex.wordpress.org/Function_Reference/wp_localize_script2"><code>wp_localize_script()</code></a>, used to configure this plugin and many others.
|
||||
<ul style="list-style-type: circle;margin-left: 24px;">
|
||||
<li>If you experience problems with jQuery Lightbox, please disable all JavaScript-optimizing plugins. (Optimize Scripts, W3 Total Cache, WP Minify etc)</li>
|
||||
<li>If you develop JavaScript optimizers for WordPress, please play nice with the default API...</li>
|
||||
<li><a href="http://wordpress.org/support/topic/122-worked-13-does-not-work-for-me?replies=19">More info about this issue</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ol>
|
||||
<li>Disable all other plugins, one at a time. Try the lightbox between each.</li>
|
||||
<li>Revert to the default theme. Did it help? Fix your theme.</li>
|
||||
<li><strong>Search</strong> the forums before posting.</li>
|
||||
</ol>
|
||||
<h2>Credits</h2><ul style="list-style-type: circle;margin-left: 24px;">
|
||||
<li>wp-jquery-lightbox was created by <a href="http://www.ulfben.com">Ulf Benjaminsson</a></li>
|
||||
<li>wp-jquery-lightbox borrowed the regexp from <a href="http://stimuli.ca/lightbox/">LightBox-2 by Rupert Morris</a> to apply lightbox-rel without clobbering manual inputs.</li>
|
||||
<li>wp-jquery-lightbox uses a modified (see below) <a href="http://github.com/krewenki/jquery-lightbox/">jQuery Lightbox</a> by <a href="http://warren.mesozen.com/jquery-lightbox/">Warren Krewenki</a></li>
|
||||
<li><a href="http://github.com/krewenki/jquery-lightbox/">jQuery Lightbox</a> is based on <a href="http://www.huddletogether.com/projects/lightbox2/">Lightbox 2 by Lokesh Dhakar</a></li>
|
||||
<li>Swipe support is courtesy of Andreas Waltl's <a href="http://www.netcu.de/jquery-touchwipe-iphone-ipad-library">touchwipe-library</a></li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
<h2>How to Use:</h2>
|
||||
<ol>
|
||||
<li>You can use WordPress image galleries and have them grouped and auto-lightboxed: <a href="http://codex.wordpress.org/Gallery_Shortcode"><code>[gallery link="file"]</code></a></li>
|
||||
<li>[gallery]'s are automatically grouped by post ID. You can split them into separate slideshows, using the <code>group</code>-attribute:
|
||||
<pre><code> [gallery link="file" ids="1,2,3" group="mon"]
|
||||
[gallery link="file" ids="4,5,6" group="tue"]</code></pre>
|
||||
</li>
|
||||
<li>You can also add a <code>rel="lightbox"</code> attribute to any link tag to activate the lightbox. For example:
|
||||
<pre><code> <a href="images/image-1.jpg" rel="lightbox" title="my caption">image #1</a></code></pre>
|
||||
<em>Optional:</em> Use the <code>title</code> attribute if you want to show a caption.
|
||||
</li>
|
||||
<li>If you have a set of related images that you would like to group, simply include a group name in the rel attribute. For example:
|
||||
<pre><code> <a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
|
||||
<a href="images/image-2.jpg" rel="lightbox[roadtrip]">image #2</a>
|
||||
<a href="images/image-3.jpg" rel="lightbox[roadtrip]">image #3</a></code></pre>
|
||||
No limits to the number of image sets per page or how many images are allowed in each set. Go nuts!</li>
|
||||
<li>To <strong>disable</strong> lightboxing of an image link, just set any other rel-attribute: <code>rel="nobox"</code></li>
|
||||
<li>You can use the <code>data-download</code>-attribute to set a custom download link:
|
||||
<a href="image-medium.jpg" rel="lightbox" data-download="image-superlarge.jpg"> [...] </a> </li>
|
||||
<li><a href="http://wordpress.org/extend/plugins/infinite-scroll/">Infinite-Scroll</a> and similar "endless pages"-plugin, should call <code>doLightbox();</code> whenever it loads new content. Most plugins have a setting
|
||||
for code that is called after each new page is loaded - just give it this:
|
||||
<code>if(typeof doLightBox !== 'undefined' && typeof jQuery !== 'undefined'){
|
||||
doLightBox();
|
||||
}</code></li>
|
||||
</ol>
|
||||
<h2>Troubleshooting</h2>
|
||||
<p>If you have problems with WP jQuery Lightbox, please make sure you try these steps before asking for help. If you ask for help and I find any of these steps would fix the problem, I will just link you back here to do the work yourself.</p>
|
||||
<ol>
|
||||
<li>Make sure your site is not throwing any javascript errors. Use <a href="http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers">your browsers javascript console</a> to find out.
|
||||
<li>If you're running a custom theme:</li>
|
||||
<ol>
|
||||
<li>Always have <code>wp_header();</code> just before the closing <code></head></code> tag of your theme, or you will break many plugins, which generally use this hook to reference JavaScript files</li>
|
||||
<li>Always have <code>wp_footer();</code>, just before the closing <code></body></code>, for the same reason</li>
|
||||
<li>Many JavaScript optimizers, combiners, minifiers, etc. conflict with <a href="http://codex.wordpress.org/Function_Reference/wp_localize_script2"><code>wp_localize_script()</code></a>, used to configure this plugin and many others.
|
||||
<ul style="list-style-type: circle;margin-left: 24px;">
|
||||
<li>If you experience problems with jQuery Lightbox, please disable all JavaScript-optimizing plugins. (Optimize Scripts, W3 Total Cache, WP Minify etc)</li>
|
||||
<li>If you develop JavaScript optimizers for WordPress, please play nice with the default API...</li>
|
||||
<li><a href="http://wordpress.org/support/topic/122-worked-13-does-not-work-for-me?replies=19">More info about this issue</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ol>
|
||||
<li>Disable all other plugins, one at a time. Try the lightbox between each.</li>
|
||||
<li>Revert to the default theme. Did it help? Fix your theme.</li>
|
||||
<li><strong>Search</strong> the forums before posting.</li>
|
||||
</ol>
|
||||
<h2>Credits</h2><ul style="list-style-type: circle;margin-left: 24px;">
|
||||
<li>wp-jquery-lightbox was created by <a href="http://www.ulfben.com">Ulf Benjaminsson</a></li>
|
||||
<li>wp-jquery-lightbox borrowed the regexp from <a href="http://stimuli.ca/lightbox/">LightBox-2 by Rupert Morris</a> to apply lightbox-rel without clobbering manual inputs.</li>
|
||||
<li>wp-jquery-lightbox uses a modified (see below) <a href="http://github.com/krewenki/jquery-lightbox/">jQuery Lightbox</a> by <a href="http://warren.mesozen.com/jquery-lightbox/">Warren Krewenki</a></li>
|
||||
<li><a href="http://github.com/krewenki/jquery-lightbox/">jQuery Lightbox</a> is based on <a href="http://www.huddletogether.com/projects/lightbox2/">Lightbox 2 by Lokesh Dhakar</a></li>
|
||||
<li>Swipe support is courtesy of Andreas Waltl's <a href="http://www.netcu.de/jquery-touchwipe-iphone-ipad-library">touchwipe-library</a></li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,102 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-02-20 15:12+0100\n"
|
||||
"PO-Revision-Date: 2011-02-20 16:51+0100\n"
|
||||
"Last-Translator: ArtPrima.cz <ask@artprima.cz>\n"
|
||||
"Language-Team: ArtPrima.cz <ask@artprima.cz>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Czech\n"
|
||||
"X-Poedit-Country: CZECH REPUBLIC\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
|
||||
"X-Poedit-SearchPath-0: C:\\_work\\svn\\artprima\\trunk\\wp-content\\plugins\\wp-jquery-lightbox\n"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:44
|
||||
msgid "Settings"
|
||||
msgstr "Nastavení"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:81
|
||||
msgid "previous image"
|
||||
msgstr "předchozí obrázek"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:82
|
||||
msgid "next image"
|
||||
msgstr "další obrázek"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:85
|
||||
msgid "close image gallery"
|
||||
msgstr "zavřít galerii"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:83
|
||||
msgid "« Previous"
|
||||
msgstr "« Předchozí"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:84
|
||||
msgid "Next »"
|
||||
msgstr "Další »"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:86
|
||||
msgid "Image "
|
||||
msgstr "Obrázek "
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:87
|
||||
msgid " of "
|
||||
msgstr " z "
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:107
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Nepodvádíte?"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Používat lightbox automaticky"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:121
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Dovolit pluginu přidat potřebný html do obrázkových odkazů"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:125
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Zmenšit velké obrázky, aby se vešly na obrazovku"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:129
|
||||
msgid "Note: <u>Excessively large images</u> waste bandwidth!"
|
||||
msgstr "Poznámka: <u>Příliš velké obrázky</u> plýtvají šířkou pásma!"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:133
|
||||
msgid "Animation speed (in milliseconds)"
|
||||
msgstr "Rychlost animace (v milisekundách)"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:140
|
||||
msgid "Save Changes"
|
||||
msgstr "Uložit změny"
|
||||
|
||||
#~ msgid "(more...)"
|
||||
#~ msgstr "(dále...)"
|
||||
|
||||
#~ msgid "Contacts"
|
||||
#~ msgstr "Kontakty"
|
||||
|
||||
#~ msgid "Contact Us"
|
||||
#~ msgstr "Kontaktujte nás"
|
||||
|
||||
#~ msgid "Read more..."
|
||||
#~ msgstr "Číst dále..."
|
||||
|
||||
#~ msgid "Contact Us..."
|
||||
#~ msgstr "Kontaktujte nás..."
|
||||
|
||||
#~ msgid "Order..."
|
||||
#~ msgstr "Objednat..."
|
||||
|
||||
#~ msgid "Search..."
|
||||
#~ msgstr "Hledat..."
|
||||
Binary file not shown.
@@ -0,0 +1,144 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-06-26 20:31+0100\n"
|
||||
"PO-Revision-Date: 2013-08-29 03:28+0700\n"
|
||||
"Last-Translator: John Larsen <finkelstoned@yahoo.com>\n"
|
||||
"Language-Team: grogcw <grogcw@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Generator: Poedit 1.5.7\n"
|
||||
"X-Poedit-SearchPath-0: G:\\@WINNEEDS\\Desktop\\wp-jquery-lightbox.1.3.3\\wp-"
|
||||
"jquery-lightbox\n"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:113
|
||||
msgid "previous image"
|
||||
msgstr "forrige billede"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:114
|
||||
msgid "next image"
|
||||
msgstr "næste billede"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:115
|
||||
msgid "« Previous"
|
||||
msgstr "« Forrige"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:116
|
||||
msgid "Next »"
|
||||
msgstr "Næste »"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "close image gallery"
|
||||
msgstr "Luk slideshow"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:118
|
||||
msgid "Image "
|
||||
msgstr "Billede "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:119
|
||||
msgid " of "
|
||||
msgstr " af "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:120
|
||||
msgid "Download"
|
||||
msgstr "download"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:166
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Snyder, huh ?"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Lad plugin lægge det nødvendige html i billede links"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Auto-lightbox billedelinks"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid ""
|
||||
"Note: this will disable the nofollow-attribute of comment links, that "
|
||||
"otherwise interfere with the lightbox."
|
||||
msgstr ""
|
||||
"Bemærk: Dette vil deaktivere nofollow-attributten på kommentarer, som ellers "
|
||||
"kan give konflikt med lightbox-funktionen."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid ""
|
||||
"Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/"
|
||||
"Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr ""
|
||||
"Aktiver lightbox i kommentarer (deaktiverer <a href=\"http://codex.wordpress."
|
||||
"org/Nofollow\">nofollow-attributtet</a>!)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:193
|
||||
msgid "Show download link"
|
||||
msgstr "Vis downloadlink"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:197
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank: åbner billedet i et nyt vindue\n"
|
||||
"_self: åbner billedet i samme ramme som link (standard)\n"
|
||||
"_parent: åbner billedet i forældrerammen\n"
|
||||
"_top: åbne billedet i hele vinduet "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:200
|
||||
msgid "Target for download link:"
|
||||
msgstr "Target for download link:"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:214
|
||||
msgid "Show image info on top"
|
||||
msgstr "Vis bildeinformation i toppen"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:222
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Tilpas store billeder til mindre skjærme"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Hold en afstand mellem billedet og skjærmens kanter."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Minste margin til skjærmkant (standard: 0)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:234
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Animationstid (i millisekunder)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:240
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Hjælpetekst (standard: ingen)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:244
|
||||
msgid ""
|
||||
"Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC "
|
||||
"for close."
|
||||
msgstr ""
|
||||
"Bladre mellem billedene med tastaturet: Pile eller P(revious)/N(ext) og X/C/"
|
||||
"ESC for at lukke."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:246
|
||||
msgid "Save Changes"
|
||||
msgstr "Gem ændringer"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " \\u2190 / P - previous image\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "next image\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - close image gallery"
|
||||
#~ msgstr ""
|
||||
#~ " \\u2190 / P - forrige bilde\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "neste bilde\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - lukk bildegalleri"
|
||||
Binary file not shown.
@@ -0,0 +1,180 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: wp-jquery-lightbox v1.4.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-23 17:41-0500\n"
|
||||
"PO-Revision-Date: Wed Jan 13 2016 22:54:16 GMT+0100\n"
|
||||
"Last-Translator: Hans M. Herbrand web266.de\n"
|
||||
"Language-Team: \n"
|
||||
"Language: German\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
||||
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
||||
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
||||
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
||||
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: Loco - https://localise.biz/\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Loco-Target-Locale: de_DE"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid ""
|
||||
"A drop in replacement for LightBox-2 and similar plugins. Uses jQuery to "
|
||||
"save you from the JS-library mess in your header. :)"
|
||||
msgstr ""
|
||||
|
||||
#: ../wp-jquery-lightbox.php:43
|
||||
#, fuzzy
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#. Name of the plugin
|
||||
msgid "wp-jquery-lightbox"
|
||||
msgstr "wp-jquery-lightbox"
|
||||
|
||||
#. URI of the plugin
|
||||
msgid "http://wordpress.org/extend/plugins/wp-jquery-lightbox"
|
||||
msgstr "http://wordpress.org/extend/plugins/wp-jquery-lightbox"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Ulf Benjaminsson"
|
||||
msgstr "Ulf Benjaminsson"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://www.ulfben.com"
|
||||
msgstr "http://www.ulfben.com"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:243
|
||||
msgid "Show caption"
|
||||
msgstr "Zeige Bildunterschrift"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:286
|
||||
msgid "Use custom stylesheet"
|
||||
msgstr "Benutzerdefiniertes Stylesheet verwenden"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:236
|
||||
msgid "Show title"
|
||||
msgstr "Zeige Titel"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:250
|
||||
msgid "Show image numbers:"
|
||||
msgstr "Zeige Bildnummern"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:130
|
||||
msgid "previous image"
|
||||
msgstr "Vorheriges Bild"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:131
|
||||
msgid "next image"
|
||||
msgstr "Nächstes Bild"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:132
|
||||
msgid "close image gallery"
|
||||
msgstr "Bildergalerie schließen"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:133 ../wp-jquery-lightbox.php:250
|
||||
msgid "Image "
|
||||
msgstr "Bild "
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:134 ../wp-jquery-lightbox.php:250
|
||||
msgid " of "
|
||||
msgstr " von "
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:135
|
||||
msgid "Download"
|
||||
msgstr "Herunterladen"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:136
|
||||
msgid "(pause slideshow)"
|
||||
msgstr "(Diashow anhalten)"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:137
|
||||
msgid "(play slideshow)"
|
||||
msgstr "(Diashow starten)"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:207
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Tricksen’ hm?"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:222
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Plugin fügt selbst benötigtes HTML in Bild-Links ein"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:222
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Auto-Lightbox Bild Verlinkung"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:229
|
||||
msgid ""
|
||||
"Note: this will disable the nofollow-attribute of comment links, that "
|
||||
"otherwise interfere with the lightbox."
|
||||
msgstr ""
|
||||
"Hinweis: Hierdurch wird das nofollow-Attribut für Kommentare deaktiviert, da "
|
||||
"dieses sonst die Lightbox-Funktionsweise stören würde."
|
||||
|
||||
#: ../wp-jquery-lightbox.php:229
|
||||
msgid ""
|
||||
"Enable lightbox in comments (disables <a href=\"http://codex.wordpress."
|
||||
"org/Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr ""
|
||||
"Aktiviere Lightbox für Kommentare (deaktiviert <a href=\"http://codex."
|
||||
"wordpress.org/Nofollow\">das nofollow Attribut!</a>)"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:257
|
||||
msgid "Show download link"
|
||||
msgstr "Zeige Link zum Herunterladen"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:265
|
||||
msgid "Show image info on top"
|
||||
msgstr "Zeige Bildinformationen oberhalb des Bildes"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:273
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Große Bilder in Bildschirm einpassen"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:278
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Füge einen Abstand zwischen Bild und Rahmen ein."
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:278
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Mindestabstand zum Rahmen des Bildschirms (Vorgabe: 0)"
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:292
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Animationsdauer (in Millisekunden) "
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:298
|
||||
msgid "Slideshow speed (in milliseconds). 0 to disable."
|
||||
msgstr ""
|
||||
"Verweilzeit der Bilder während der Diashow (in Millisekunden). 0 schaltet "
|
||||
"Diashow ab."
|
||||
|
||||
# @ jqlb
|
||||
#: ../wp-jquery-lightbox.php:303
|
||||
msgid "Save Changes"
|
||||
msgstr "Änderungen speichern"
|
||||
Binary file not shown.
@@ -0,0 +1,132 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-06-26 20:31+0100\n"
|
||||
"PO-Revision-Date: 2012-02-15 18:48+0100\n"
|
||||
"Last-Translator: Miguel Montes Porras <info@mimopo.es>\n"
|
||||
"Language-Team: grogcw <grogcw@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: French\n"
|
||||
"X-Poedit-Country: FRANCE\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-SearchPath-0: G:\\@WINNEEDS\\Desktop\\wp-jquery-lightbox.1.3.3\\wp-jquery-lightbox\n"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:113
|
||||
msgid "previous image"
|
||||
msgstr "Imagen anterior"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:114
|
||||
msgid "next image"
|
||||
msgstr "Siguiente imagen"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:115
|
||||
msgid "« Previous"
|
||||
msgstr "« Anterior"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:116
|
||||
msgid "Next »"
|
||||
msgstr "Siguiente »"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "close image gallery"
|
||||
msgstr "cerrar galería"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:118
|
||||
msgid "Image "
|
||||
msgstr "Imagen"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:119
|
||||
msgid " of "
|
||||
msgstr " de "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:120
|
||||
msgid "Download"
|
||||
msgstr "Descargar"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:166
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Haciendo trampas ¿eh?"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Deje que el plugin añada el html decesario a los enlaces de imágenes"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Auto-lightbox para los links de imágenes"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid "Note: this will disable the nofollow-attribute of comment links, that otherwise interfere with the lightbox."
|
||||
msgstr "Nota: esto desactivará el atributo nofollow de los enlaces de comentario, que de otro modo interferirían con el lightbox."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid "Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr "Activar lightbox para los comentarios (¡desactiva <a href=\"http://codex.wordpress.org/Nofollow\">el atributo nofollow!</a>)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:193
|
||||
msgid "Show download link"
|
||||
msgstr "Mostrar enlace de descarga"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:197
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank: abre la imagen en una nueva ventana o pestaña\n"
|
||||
"_self: abre la imagen en el mismo frame en que fue clickada (por defecto)\n"
|
||||
"_parent: abre la imagen en el frame padre\n"
|
||||
"_top: ouvre abre la imagen sola en la ventana"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:200
|
||||
msgid "Target for download link:"
|
||||
msgstr "Destino para el enlace de descarga:"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:214
|
||||
msgid "Show image info on top"
|
||||
msgstr "Mostrar la información de la imagen encima"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:222
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Adaptar imágenes grandes en pantallas pequeñas"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Mantener una distancia entre la imagen y los bordes de la pantalla."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Margen mínimo hasta el borde de la pantalla (por defecto: 0)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:234
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Duración de la animación (en milisegundos)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:240
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Texto de ayuda (por defecto: ninguno)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:244
|
||||
msgid "Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC for close."
|
||||
msgstr "Navegar con el teclado: (P) Anterior / (N) Siguiente ; X / C / ESC para cerrar."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:246
|
||||
msgid "Save Changes"
|
||||
msgstr "Guardar Cambios"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " \\u2190 / P - previous image\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "next image\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - close image gallery"
|
||||
#~ msgstr ""
|
||||
#~ " \\u2190 / P - Image précédente\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "Image suivante\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - fermer la galerie "
|
||||
Binary file not shown.
@@ -0,0 +1,125 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-06-26 20:31+0100\n"
|
||||
"PO-Revision-Date: 2012-07-13 11:47+0200\n"
|
||||
"Last-Translator: Toni Ahonen <toni.ahonen@me.com>\n"
|
||||
"Language-Team: Toni Ahonen\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Finnish\n"
|
||||
"X-Poedit-Country: FINLAND\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Asetukset"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:113
|
||||
msgid "previous image"
|
||||
msgstr "edellinen kuva"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:114
|
||||
msgid "next image"
|
||||
msgstr "seuraava kuva"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:115
|
||||
msgid "« Previous"
|
||||
msgstr "« Edellinen"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:116
|
||||
msgid "Next »"
|
||||
msgstr "Seuraava »"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "close image gallery"
|
||||
msgstr "sulje kuvagalleria"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:118
|
||||
msgid "Image "
|
||||
msgstr "Kuva "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:119
|
||||
msgid " of "
|
||||
msgstr "/"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:120
|
||||
msgid "Download"
|
||||
msgstr "Lataa"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:166
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Huijaatko?"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Anna lisäosan lisätä tarvittavat html-koodit kuvalinkkeihin"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Automaattiset lightbox-kuvalinkit"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid "Note: this will disable the nofollow-attribute of comment links, that otherwise interfere with the lightbox."
|
||||
msgstr "Huomio: Tämä estää nofollow-attribuutin kommenttilinkeistä, joka voi vaikuttaa lightboxiin."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid "Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr "Salli lightbox kommenteissa (estää <a href=\"http://codex.wordpress.org/Nofollow\">nofollow-attribuutin!</a>)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:193
|
||||
msgid "Show download link"
|
||||
msgstr "Näytä latauslinkki"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:197
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank: avaa kuvan uuteen ikkunaan tai välilehteen\n"
|
||||
"_self: avaa kuvan samaan kehykseen (oletus)\n"
|
||||
"_parent: avaa kuvan pääkehykseen \n"
|
||||
"_top: avaa kuvan koko ikkunaan"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:200
|
||||
msgid "Target for download link:"
|
||||
msgstr "Ladattavan kuvan target-attribuutti:"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:214
|
||||
msgid "Show image info on top"
|
||||
msgstr "Näytä kuvan info yläpuolella"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:222
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Pienennä suuret kuvat sopimaan pienempiin näyttöihin"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Säilytä väli kuvan ja näytön reunojen välillä."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Pienin sallittu marginaali näytön reunalle (oletus: 0)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:234
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Animaation kesto (millisekunneissa)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:240
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Ohjeteksti (oletus: tyhjä)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:244
|
||||
msgid "Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC for close."
|
||||
msgstr "Selaa kuvia näppäimistöllä: Nuolinäppäimet tai P (=edellinen)/N(=seuraava) ja X/C/ESC sulkemiseen."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:246
|
||||
msgid "Save Changes"
|
||||
msgstr "Tallenna muutokset"
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,132 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-06-26 20:31+0100\n"
|
||||
"PO-Revision-Date: 2011-06-26 20:51+0100\n"
|
||||
"Last-Translator: Olivier Grasset <grogcw@gmail.com>\n"
|
||||
"Language-Team: grogcw <grogcw@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: French\n"
|
||||
"X-Poedit-Country: FRANCE\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-SearchPath-0: G:\\@WINNEEDS\\Desktop\\wp-jquery-lightbox.1.3.3\\wp-jquery-lightbox\n"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Réglages"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:113
|
||||
msgid "previous image"
|
||||
msgstr "Image précédente"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:114
|
||||
msgid "next image"
|
||||
msgstr "Image suivante"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:115
|
||||
msgid "« Previous"
|
||||
msgstr "« Précédent"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:116
|
||||
msgid "Next »"
|
||||
msgstr "Suivant »"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "close image gallery"
|
||||
msgstr "fermer la galerie"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:118
|
||||
msgid "Image "
|
||||
msgstr "Image "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:119
|
||||
msgid " of "
|
||||
msgstr " sur "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:120
|
||||
msgid "Download"
|
||||
msgstr "Télécharger"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:166
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Vous trichez, hein ?"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Laisser le plugin ajouter les liens html nécessaires aux images"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Ajouter les liens Lightbox automatiquement"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid "Note: this will disable the nofollow-attribute of comment links, that otherwise interfere with the lightbox."
|
||||
msgstr "Désactive l'attribut nofollow sur les liens en commentaire, ceci peut interférer avec Lightbox."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid "Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr "Activer les commentaires dans Lightbox (désactive <a href=\"http://codex.wordpress.org/Nofollow\">l'attribut nofollow !</a>)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:193
|
||||
msgid "Show download link"
|
||||
msgstr "Afficher le lien de téléchargement"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:197
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank: ouvre l'image dans une nouvelle fenêtre ou un nouvel onglet\n"
|
||||
"_self: ouvre l'image dans la meme fenêtre qu'utilisée (default)\n"
|
||||
"_parent: ouvre l'image dans une fenêtre parente\n"
|
||||
"_top: ouvre l'image en plein dans la fenêtre"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:200
|
||||
msgid "Target for download link:"
|
||||
msgstr "Cible pour le lien de téléchargement :"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:214
|
||||
msgid "Show image info on top"
|
||||
msgstr "Montrer les informations d'image au dessus"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:222
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Réduire les grandes images pour s'adapter aux petits écrans"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Garder une distance entre l'image et les bords de l'écran."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Marge minimale aux bords de l'écran (par défaut: 0)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:234
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Vitesse d'animation (en millisecondes)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:240
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Texte d'aide (par défaut : aucun)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:244
|
||||
msgid "Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC for close."
|
||||
msgstr "Naviguez avec les flèches du clavier, (P)récédent / Suiva(N)t ; X / C / échap pour fermer."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:246
|
||||
msgid "Save Changes"
|
||||
msgstr "Sauver les changements"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " \\u2190 / P - previous image\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "next image\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - close image gallery"
|
||||
#~ msgstr ""
|
||||
#~ " \\u2190 / P - Image précédente\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "Image suivante\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - fermer la galerie "
|
||||
Binary file not shown.
@@ -0,0 +1,94 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox Hebrew\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-05-17 16:35+0900\n"
|
||||
"PO-Revision-Date: 2011-10-16 00:49+0200\n"
|
||||
"Last-Translator: שגיב SEO <info@sagive.co.il>\n"
|
||||
"Language-Team: Sagive SEO <info@sagive.co.il>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Hebrew\n"
|
||||
"X-Poedit-Country: ISRAEL\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-SearchPath-0: C:\\_work\\svn\\artprima\\trunk\\wp-content\\plugins\\wp-jquery-lightbox\n"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "הגדרות"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:98
|
||||
msgid " \\u2190 / P - previous image\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - next image\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - close image gallery"
|
||||
msgstr " \\u2190 / P - תמונה קודמת\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - תמונה הבאה\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - סגור את גלריית התמונות"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:99
|
||||
msgid "previous image"
|
||||
msgstr "לתמונה הקודמת"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:100
|
||||
msgid "next image"
|
||||
msgstr "לתמונה הבאה"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:101
|
||||
msgid "« Previous"
|
||||
msgstr "«קודם"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:102
|
||||
msgid "Next »"
|
||||
msgstr " הבא »"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:103
|
||||
msgid "close image gallery"
|
||||
msgstr "סגור גלריית תמונות"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:104
|
||||
msgid "Image "
|
||||
msgstr "תמונה"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:105
|
||||
msgid " of "
|
||||
msgstr "של"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:106
|
||||
msgid "Download"
|
||||
msgstr "הורדה"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:152
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "מרמה’ אה?"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:165
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "תן לתוסף להוסיף את הקוד HTML עבור קישורי התמונות"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:165
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Auto-lightbox קישורי תמונה"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:172
|
||||
msgid "Disables the nofollow-attribute of comment links, that otherwise interfere with the lightbox."
|
||||
msgstr "בטל את הגדרת No-Follow של קישורי תגובות, אחרת זה עשוי להפריע לLightBox"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:172
|
||||
msgid "Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr "הפעל lightbox בתגובות (מכבה את <a href=\"http://codex.wordpress.org/Nofollow\">את התכונה No-Follow</a>)"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Show download link"
|
||||
msgstr "הצג קישור הורדה"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "כווץ תמונות גדולות כדי שיתאימו למסכים קטנים יותר"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:192
|
||||
msgid "Animation duration (in milliseconds)"
|
||||
msgstr "אורך האנימציה (במילי-שניות)"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:197
|
||||
msgid "Save Changes"
|
||||
msgstr "שמור שינויים"
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,145 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-06-26 20:31+0100\n"
|
||||
"PO-Revision-Date: 2013-04-10 20:01+0100\n"
|
||||
"Last-Translator: Il Zio <zio069@gmail.com>\n"
|
||||
"Language-Team: grogcw <grogcw@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"Language: fr_FR\n"
|
||||
"X-Generator: Poedit 1.5.5\n"
|
||||
"X-Poedit-SearchPath-0: G:\\@WINNEEDS\\Desktop\\wp-jquery-lightbox.1.3.3\\wp-"
|
||||
"jquery-lightbox\n"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Impostazioni"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:113
|
||||
msgid "previous image"
|
||||
msgstr "Immagine precedente"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:114
|
||||
msgid "next image"
|
||||
msgstr "Image successiva"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:115
|
||||
msgid "« Previous"
|
||||
msgstr "« Precedente"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:116
|
||||
msgid "Next »"
|
||||
msgstr "Successiva»"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "close image gallery"
|
||||
msgstr "chiudi la galleria"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:118
|
||||
msgid "Image "
|
||||
msgstr "Immagine "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:119
|
||||
msgid " of "
|
||||
msgstr " di "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:120
|
||||
msgid "Download"
|
||||
msgstr "Scarica"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:166
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Giochi sporco, eh ?"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Lascia che il plugin aggiunga l'html necessario ai link delle immagini"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Aggiungi automaticamente i link alle immagini"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid ""
|
||||
"Note: this will disable the nofollow-attribute of comment links, that "
|
||||
"otherwise interfere with the lightbox."
|
||||
msgstr ""
|
||||
"Nota: questo disattiverà l'attributo nofollow dei link ai commenti, che "
|
||||
"altrimenti interferirebbero con lightbox"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid ""
|
||||
"Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/"
|
||||
"Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr ""
|
||||
"Attiva i commenti in Lightbox (disabilita <a href=\"http://codex.wordpress."
|
||||
"org/Nofollow\">l'attributo nofollow !</a>)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:193
|
||||
msgid "Show download link"
|
||||
msgstr "Mostra il link di download"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:197
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank: apre l'immagine in una nuova finestra o scheda_self: apre l'immagine "
|
||||
"nello stessa scheda che la utilizza (default)\n"
|
||||
"_parent: apre l'immagine nella finestra padre\n"
|
||||
"_top: apre l'immagine nell'intera scheda"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:200
|
||||
msgid "Target for download link:"
|
||||
msgstr "Destinazione per il link di download :"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:214
|
||||
msgid "Show image info on top"
|
||||
msgstr "Mostra le informazioni sull'immagine sopra"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:222
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Riduci le immagini grandi per entrare negli schermi più piccoli"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Mantieni distanza tra l'immagine ed i bordi dello schermo"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Margine minimo ai bordi dello schermo (di default: 0)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:234
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Durata animazione (in millisecondes)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:240
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Testo di aiuto (default : nessuno)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:244
|
||||
msgid ""
|
||||
"Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC "
|
||||
"for close."
|
||||
msgstr ""
|
||||
"Navigazione con la tastiera: frecce o (P)recedente / Segue(N)te ; X / C / "
|
||||
"per chiudere."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:246
|
||||
msgid "Save Changes"
|
||||
msgstr "Salva le modifiche"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " \\u2190 / P - previous image\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "next image\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - close image gallery"
|
||||
#~ msgstr ""
|
||||
#~ " \\u2190 / P - Image précédente\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "Image suivante\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - fermer la galerie "
|
||||
Binary file not shown.
@@ -0,0 +1,94 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-05-17 16:35+0900\n"
|
||||
"PO-Revision-Date: 2011-05-18 15:56+0900\n"
|
||||
"Last-Translator: Redcocker\n"
|
||||
"Language-Team: redcocker <masa153@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Japanese\n"
|
||||
"X-Poedit-Country: JAPAN\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-SearchPath-0: C:\\_work\\svn\\artprima\\trunk\\wp-content\\plugins\\wp-jquery-lightbox\n"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "設定"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:98
|
||||
msgid " \\u2190 / P - previous image\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - next image\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - close image gallery"
|
||||
msgstr " \\u2190 / P - 前の画像\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - 次の画像\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - ギャラリーを閉じる"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:99
|
||||
msgid "previous image"
|
||||
msgstr "前の画像"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:100
|
||||
msgid "next image"
|
||||
msgstr "次の画像"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:101
|
||||
msgid "« Previous"
|
||||
msgstr "« 前へ"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:102
|
||||
msgid "Next »"
|
||||
msgstr "次へ »"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:103
|
||||
msgid "close image gallery"
|
||||
msgstr "ギャラリーを閉じる"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:104
|
||||
msgid "Image "
|
||||
msgstr "画像 "
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:105
|
||||
msgid " of "
|
||||
msgstr "の"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:106
|
||||
msgid "Download"
|
||||
msgstr "ダウンロード"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:152
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "間違えましたか?"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:165
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "必要とするHTMLをイメージリンクに追加させる"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:165
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "自動的に画像(イメージリンク)にLightbox効果を適応する"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:172
|
||||
msgid "Disables the nofollow-attribute of comment links, that otherwise interfere with the lightbox."
|
||||
msgstr "Lightbox効果を妨げるコメントリンクのnofollow属性は無効になる"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:172
|
||||
msgid "Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr "コメント欄でLightbox効果を有効にする(<a href=\"http://codex.wordpress.org/Nofollow\">nofollow属性</a>は無効になります。)"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Show download link"
|
||||
msgstr "ダウンロードリンクを表示"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "スクリーンサイズに合わせて画像を縮小"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:192
|
||||
msgid "Animation duration (in milliseconds)"
|
||||
msgstr "アニメーションの継続時間(ミリ秒)"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:197
|
||||
msgid "Save Changes"
|
||||
msgstr "設定を保存"
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,179 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-10-05 13:07+0200\n"
|
||||
"PO-Revision-Date: 2013-10-05 13:19+0200\n"
|
||||
"Last-Translator: Hancas <majklas@nereal.us>\n"
|
||||
"Language-Team: ArtPrima.cz <ask@artprima.cz>\n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 1.5.5\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Nustatymai"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:116
|
||||
msgid "previous image"
|
||||
msgstr "ankstesnis paveiksliukas"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:117
|
||||
msgid "next image"
|
||||
msgstr "sekantis paveiksliukas"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:118
|
||||
msgid "close image gallery"
|
||||
msgstr "uždaryti paveiksliukų galeriją"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:119
|
||||
msgid "Image "
|
||||
msgstr "Paveiksliukas "
|
||||
|
||||
#: ../wp-jquery-lightbox.php:120
|
||||
msgid " of "
|
||||
msgstr " iš "
|
||||
|
||||
#: ../wp-jquery-lightbox.php:121
|
||||
msgid "Download"
|
||||
msgstr "Parsisiųsti"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:122
|
||||
msgid "(pause slideshow)"
|
||||
msgstr "(Pristabdyti skaidrių peržiūrą)"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:123
|
||||
msgid "(play slideshow)"
|
||||
msgstr "(Paleisti skaidrių peržiūrą)"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:186
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Čytini, ane?"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:201
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Leisti įskiepiui pridėti reikiamą kodą prie paveiksliukų nuorodų"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:201
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Automatiškai taikyti LightBox paveiksliukų nuorodoms"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:208
|
||||
msgid ""
|
||||
"Note: this will disable the nofollow-attribute of comment links, that "
|
||||
"otherwise interfere with the lightbox."
|
||||
msgstr ""
|
||||
"Dėmesio: tai panaikins \"nofollow\" atributą naudojamą komentarų nuorodose, "
|
||||
"nes tai nesuderinama su lightbox'u."
|
||||
|
||||
#: ../wp-jquery-lightbox.php:208
|
||||
msgid ""
|
||||
"Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/"
|
||||
"Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr ""
|
||||
"Įgalinti lightbox'ą komentaruose (panaikins <a href=\"http://codex.wordpress."
|
||||
"org/Nofollow\">\"nofollow\" atributą!</a>)"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:215
|
||||
msgid "Show title & caption"
|
||||
msgstr "Rodyti pavadinimą ir iškarpą"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:222
|
||||
msgid "Show download link"
|
||||
msgstr "Rodyti parsisiuntimo nuorodą"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:226
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank: atidaryti paveiksliuką naujame naršyklės lange ar skirtuke\n"
|
||||
"_self: atidaryti paveiksliuką tame pačiame lange, kuriame buvo paspausta "
|
||||
"(default)\n"
|
||||
"_parent: atidaryti paveiksliuką tėviname lange\n"
|
||||
"_top: atidaryti paveiksliuką per visą ekraną"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:229
|
||||
msgid "Target for download link:"
|
||||
msgstr "Parsisiuntimo nuorodos tipas:"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:243
|
||||
msgid "Show image info on top"
|
||||
msgstr "Rodyti paveiksliuko informaciją viršuje"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:251
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Sutraukti didelius paveiksliukus, kad tilptų į mažesnius ekranus"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:256
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Atskirti patį paveiksliuką nuo ekrano šonų."
|
||||
|
||||
#: ../wp-jquery-lightbox.php:256
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Minimalus atstumas nuo ekrano šonų (numatyta: 0)"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:263
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Animacijos greitis (milisekundėmis)"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:269
|
||||
msgid "Slideshow speed (in milliseconds). 0 to disable."
|
||||
msgstr ""
|
||||
"Skaidrų peržiūros greitis (milisekundėmis). 0 - panaikina šią galimybę."
|
||||
|
||||
#: ../wp-jquery-lightbox.php:275
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Pagalbinis tesktas (numatyta: jokio) "
|
||||
|
||||
#: ../wp-jquery-lightbox.php:279
|
||||
msgid ""
|
||||
"Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC "
|
||||
"for close."
|
||||
msgstr ""
|
||||
"Peržvelgti paveiksliukus su klaviatūros pagalba: Rodyklytėm arba P"
|
||||
"(ankstesnis)/N(kitas) and X/C/ESC uždaryti."
|
||||
|
||||
#: ../wp-jquery-lightbox.php:281
|
||||
msgid "Save Changes"
|
||||
msgstr "Išsaugoti pakeitimus"
|
||||
|
||||
#~ msgid "« Previous"
|
||||
#~ msgstr "« Ankstesnis"
|
||||
|
||||
#~ msgid "Next »"
|
||||
#~ msgstr "Sekantis »"
|
||||
|
||||
#~ msgid "Note: <u>Excessively large images</u> waste bandwidth!"
|
||||
#~ msgstr "Dėmesio: <u>LABAI dideli paveiksliukai</u> kenkia greitaveikai!"
|
||||
|
||||
#~ msgid "(more...)"
|
||||
#~ msgstr "(далее...)"
|
||||
|
||||
#~ msgid "Contacts"
|
||||
#~ msgstr "Контакты"
|
||||
|
||||
#~ msgid "Contact Us"
|
||||
#~ msgstr "Связаться с нами"
|
||||
|
||||
#~ msgid "Read more..."
|
||||
#~ msgstr "Читать далее..."
|
||||
|
||||
#~ msgid "Contact Us..."
|
||||
#~ msgstr "Связаться с нами..."
|
||||
|
||||
#~ msgid "Order..."
|
||||
#~ msgstr "Заказать..."
|
||||
|
||||
#~ msgid "Search..."
|
||||
#~ msgstr "Поиск..."
|
||||
Binary file not shown.
@@ -0,0 +1,144 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-06-26 20:31+0100\n"
|
||||
"PO-Revision-Date: 2012-10-10 18:54+0100\n"
|
||||
"Last-Translator: olerules <olerules@gmail.com>\n"
|
||||
"Language-Team: grogcw <grogcw@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-SearchPath-0: G:\\@WINNEEDS\\Desktop\\wp-jquery-lightbox.1.3.3\\wp-"
|
||||
"jquery-lightbox\n"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Innstillinger"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:113
|
||||
msgid "previous image"
|
||||
msgstr "forrige bilde"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:114
|
||||
msgid "next image"
|
||||
msgstr "neste bilde"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:115
|
||||
msgid "« Previous"
|
||||
msgstr "« Forrige"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:116
|
||||
msgid "Next »"
|
||||
msgstr "Neste »"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "close image gallery"
|
||||
msgstr "Lukk bildegalleri"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:118
|
||||
msgid "Image "
|
||||
msgstr "Bilde "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:119
|
||||
msgid " of "
|
||||
msgstr " av "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:120
|
||||
msgid "Download"
|
||||
msgstr "Last ned"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:166
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Jukser, huh ?"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "La plugin-en legge til nødvendig html til bildelenkene"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Auto-lightbox bildelenker"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid ""
|
||||
"Note: this will disable the nofollow-attribute of comment links, that "
|
||||
"otherwise interfere with the lightbox."
|
||||
msgstr ""
|
||||
"Merk: Dette vil deaktivere nofollow-attributtet på kommentarlenker, som "
|
||||
"ellers vil skape konflikt med lightbox-funksjonen."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid ""
|
||||
"Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/"
|
||||
"Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr ""
|
||||
"Aktiver lightbox i kommentarer (deaktiverer <a href=\"http://codex.wordpress."
|
||||
"org/Nofollow\">nofollow-attributtet</a>!)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:193
|
||||
msgid "Show download link"
|
||||
msgstr "Vis nedlastningslenke"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:197
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank: åpne bildet i et nytt vindu\n"
|
||||
"_self: åpne bildet i samme ramme som lenke (standard)\n"
|
||||
"_parent: åpne bildet i foreldrerammen\n"
|
||||
"_top: åpne bildet i hele rammen "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:200
|
||||
msgid "Target for download link:"
|
||||
msgstr "Mål for nedlastningslenke:"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:214
|
||||
msgid "Show image info on top"
|
||||
msgstr "Vis bildeinformasjon på toppen"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:222
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Krymp store bilder for mindre skjermer"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Hold en avstand mellom bildet og skjermkantene."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Minstemargin til skjermkantene (standard: 0)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:234
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Animasjonstid (i millisekunder)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:240
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Hjelpetekst (standard: ingen)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:244
|
||||
msgid ""
|
||||
"Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC "
|
||||
"for close."
|
||||
msgstr ""
|
||||
"Bla mellom bildene med tastaturet: Piler eller P(revious)/N(ext) og X/C/ESC "
|
||||
"for å lukke."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:246
|
||||
msgid "Save Changes"
|
||||
msgstr "Lagre endringer"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " \\u2190 / P - previous image\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "next image\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - close image gallery"
|
||||
#~ msgstr ""
|
||||
#~ " \\u2190 / P - forrige bilde\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "neste bilde\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - lukk bildegalleri"
|
||||
Binary file not shown.
@@ -0,0 +1,165 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: wp-jquery-lightbox v1.3.4.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-04 15:30+0100\n"
|
||||
"PO-Revision-Date: 2013-02-04 15:32+0100\n"
|
||||
"Last-Translator: Carl Rozema <carl.rozema@axcint.nl>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Instellingen"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:112
|
||||
msgid "previous image"
|
||||
msgstr "vorige afbeelding"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:113
|
||||
msgid "next image"
|
||||
msgstr "volgende afbeelding"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:114
|
||||
msgid "close image gallery"
|
||||
msgstr "gallerij sluiten"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:115
|
||||
msgid "Image "
|
||||
msgstr "Afbeelding "
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:116
|
||||
msgid " of "
|
||||
msgstr " van "
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:117
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: wp-jquery-lightbox.php:118
|
||||
msgid "(pause slideshow)"
|
||||
msgstr "(pauzeer diashow)"
|
||||
|
||||
#: wp-jquery-lightbox.php:119
|
||||
msgid "(play slideshow)"
|
||||
msgstr "(diashow)"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:182
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Valsspelen’ hm?"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:197
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Laat de plugin zelf benodigde HTML in afbeedlingslinks invoegen"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:197
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Auto-Lightbox Afbeelding links"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:204
|
||||
msgid ""
|
||||
"Note: this will disable the nofollow-attribute of comment links, that "
|
||||
"otherwise interfere with the lightbox."
|
||||
msgstr ""
|
||||
"Let op: Dit zal het nofollow atribuut van reacties deactiveren, die anders "
|
||||
"interfereren met de lightbox."
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:204
|
||||
msgid ""
|
||||
"Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/"
|
||||
"Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr ""
|
||||
"Aktiveer lightbox in reacties (deactiveert <a href=\"http://codex.wordpress."
|
||||
"org/Nofollow\">het nofollow attribuut!</a>)"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:211
|
||||
msgid "Show download link"
|
||||
msgstr "Toon download link"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:215
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank: open de afbeelding in een nieuw window of tab\n"
|
||||
"_self: open de afbeelding in het zelfde window (standaard)\n"
|
||||
"_parent: open de afbeelding in de parent frameset\n"
|
||||
"_top: open de afbeelding in het volledige window"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:218
|
||||
msgid "Target for download link:"
|
||||
msgstr "Download link doel:"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:232
|
||||
msgid "Show image info on top"
|
||||
msgstr "Toon afbeelding info over de afbeelding"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:240
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Maak grote afbeeldingen passend in kleinere schermen"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:245
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Hou een afstand tussen de afbeelding en de schermranden."
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:245
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Minimum marge tot de schermrand (standaard: 0)"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:252
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Animatieduur (in milliseconden) "
|
||||
|
||||
#: wp-jquery-lightbox.php:258
|
||||
msgid "Slideshow speed (in milliseconds). 0 to disable."
|
||||
msgstr "Diashow snelheid (in milliseconden). 0 om te deactiveren"
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:264
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Help tekst (standaard: geen) "
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:268
|
||||
msgid ""
|
||||
"Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC "
|
||||
"for close."
|
||||
msgstr ""
|
||||
"Wissel de afbeeldingen met je toetsenbord: Cursortoetsen of P(revious voor "
|
||||
"vorige)/N(ext voor volgende) en X/C/Esc om te sluiten."
|
||||
|
||||
# @ jqlb
|
||||
#: wp-jquery-lightbox.php:270
|
||||
msgid "Save Changes"
|
||||
msgstr "Wijzigingen opslaan"
|
||||
Binary file not shown.
@@ -0,0 +1,132 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-12-30 10:38+0100\n"
|
||||
"PO-Revision-Date: 2011-12-30 10:39+0100\n"
|
||||
"Last-Translator: Jacek <mechlab@gmail.com>\n"
|
||||
"Language-Team: jacek <mechlab@gmail.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Polish\n"
|
||||
"X-Poedit-Country: POLAND\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:38
|
||||
msgid "Settings"
|
||||
msgstr "Ustawienia"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:108
|
||||
msgid "previous image"
|
||||
msgstr "poprzedni obraz"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:109
|
||||
msgid "next image"
|
||||
msgstr "następny obraz"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:110
|
||||
msgid "« Previous"
|
||||
msgstr "« Poprzedni"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:111
|
||||
msgid "Next »"
|
||||
msgstr "Następny »"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:112
|
||||
msgid "close image gallery"
|
||||
msgstr "zamknij galerię"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:113
|
||||
msgid "Image "
|
||||
msgstr "Obraz "
|
||||
|
||||
#: ../wp-jquery-lightbox.php:114
|
||||
msgid " of "
|
||||
msgstr "z"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:115
|
||||
msgid "Download"
|
||||
msgstr "Pobierz"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:161
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Oszukujesz?"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:176
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Pozwól wtyczce dodać niezbędny kod html do łącz z obrazami"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:176
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Aktywuj automatycznie lightbox dla łącz z obrazami"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:183
|
||||
msgid "Note: this will disable the nofollow-attribute of comment links, that otherwise interfere with the lightbox."
|
||||
msgstr "Uwaga: to wyłączy atrybut nofollow z linków do komentarzy, które inaczej zaburzyłyby działanie lightbox"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:183
|
||||
msgid "Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr "Włącz lightbox w komentarzach (wyłącza atrybut <a href=\"http://codex.wordpress.org/Nofollow\">nofollow!</a>)"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:190
|
||||
msgid "Show download link"
|
||||
msgstr "Pokaż link do pobierania"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:194
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank:otwiera obraz w nowym oknie lub karcie\n"
|
||||
"_self: otwiera obraz w tym samym oknie lub karcie (domyślnie)\n"
|
||||
"_parent: otwiera obraz w oknie lub karcie nadrzędnym\n"
|
||||
"_top: otwiera obraz w głównym oknie"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:197
|
||||
msgid "Target for download link:"
|
||||
msgstr "Cel linku pobierania:"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:211
|
||||
msgid "Show image info on top"
|
||||
msgstr "Pokaż informacje na górze"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:219
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Przytnij duże obrazy dla mniejszych ekranów"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:224
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Margines pomiędzy obrazem a krawędziami ekranu"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:224
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Minimalny margines od krawędzi ekranu (domyślnie: 0)"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:231
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Szybkość animacji (w milisekundach)"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:237
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Tekst pomocy (domyślnie: brak)"
|
||||
|
||||
#: ../wp-jquery-lightbox.php:241
|
||||
msgid "Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC for close."
|
||||
msgstr "Przeglądaj obrazki przy pomocy klawiatury: strzałki lub P(poprzedni) / N(następny) oraz X/C/Esc żeby zamknąć."
|
||||
|
||||
#: ../wp-jquery-lightbox.php:243
|
||||
msgid "Save Changes"
|
||||
msgstr "Zapisz zmiany"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " \\u2190 / P - previous image\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "next image\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - close image gallery"
|
||||
#~ msgstr ""
|
||||
#~ " \\u2190 / P - Image précédente\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "Image suivante\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - fermer la galerie "
|
||||
Binary file not shown.
@@ -0,0 +1,143 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-06-26 20:31+0100\n"
|
||||
"PO-Revision-Date: 2013-10-12 09:49-0300\n"
|
||||
"Last-Translator: José Luís Carneiro <contato@jlcarneiro.com>\n"
|
||||
"Language-Team: José Luís <contato@jlcarneiro.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"Language: pt_BR\n"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Configurações"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:113
|
||||
msgid "previous image"
|
||||
msgstr "Imagem anterior"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:114
|
||||
msgid "next image"
|
||||
msgstr "Imagem seguinte"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:115
|
||||
msgid "« Previous"
|
||||
msgstr "« Anterior"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:116
|
||||
msgid "Next »"
|
||||
msgstr "Seguinte »"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "close image gallery"
|
||||
msgstr "Fechar a galeria"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:118
|
||||
msgid "Image "
|
||||
msgstr "Imagem "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:119
|
||||
msgid " of "
|
||||
msgstr " de "
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:120
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:166
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Trapaceando, né?"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Deixar o plugin adicionar o HTML necessário aos links de imagem"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:179
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Alterar os links de imagem automaticamente"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid ""
|
||||
"Note: this will disable the nofollow-attribute of comment links, that "
|
||||
"otherwise interfere with the lightbox."
|
||||
msgstr ""
|
||||
"Atenção: isso desabilitará o atributo nofollow nos links de comentários, "
|
||||
"para não interferirem com o lightbox."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:186
|
||||
msgid ""
|
||||
"Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/"
|
||||
"Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr ""
|
||||
"Habilitar o lightbox nos comentários (desabilita o <a href=\"http://codex."
|
||||
"wordpress.org/Nofollow\">atributo nofollow!</a>)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:193
|
||||
msgid "Show download link"
|
||||
msgstr "Exibir link de download"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:197
|
||||
msgid ""
|
||||
"_blank: open the image in a new window or tab\n"
|
||||
"_self: open the image in the same frame as it was clicked (default)\n"
|
||||
"_parent: open the image in the parent frameset\n"
|
||||
"_top: open the image in the full body of the window"
|
||||
msgstr ""
|
||||
"_blank: abrir a imagem em um nova janela ou aba\n"
|
||||
"_self: abrir a imagem na mesma frame em que foi clicada (default)\n"
|
||||
"_parent: abrir a imagem no frameset pai\n"
|
||||
"_top: abrir a imagem ocupando toda a janela"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:200
|
||||
msgid "Target for download link:"
|
||||
msgstr "Destino para o link de download"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:214
|
||||
msgid "Show image info on top"
|
||||
msgstr "Exibir informações da imagem no topo"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:222
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Reduzir imagens grandes em telas menores"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Manter distância mínima entre a imagem e as bordas da tela."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:227
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Margem minima para a borda da tela (padrão: 0)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:234
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Duração da animação (em milisegundos)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:240
|
||||
msgid "Help text (default: none) "
|
||||
msgstr "Texto de ajuda (padrão: nenhum)"
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:244
|
||||
msgid ""
|
||||
"Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC "
|
||||
"for close."
|
||||
msgstr ""
|
||||
"Navegar pelas imagens usando o teclado: setas ou P/N (anterior/posterior) e "
|
||||
"X/C/ESC para fechar."
|
||||
|
||||
#: G:\@WINNEEDS\Desktop\wp-jquery-lightbox.1.3.3\wp-jquery-lightbox/wp-jquery-lightbox.php:246
|
||||
msgid "Save Changes"
|
||||
msgstr "Salvar alterações"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " \\u2190 / P - previous image\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "next image\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - close image gallery"
|
||||
#~ msgstr ""
|
||||
#~ " \\u2190 / P - Imagem anterior\\u00a0\\u00a0\\u00a0\\u00a0\\u2192 / N - "
|
||||
#~ "Imagem seguinte\\u00a0\\u00a0\\u00a0\\u00a0ESC / X - Fechar a galeria "
|
||||
Binary file not shown.
@@ -0,0 +1,166 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-09-21 14:49+0100\n"
|
||||
"PO-Revision-Date: 2015-09-21 16:37+0100\n"
|
||||
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
||||
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 1.8.4\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: wp-jquery-lightbox.php:41
|
||||
msgid "Settings"
|
||||
msgstr "Definições"
|
||||
|
||||
#: wp-jquery-lightbox.php:129
|
||||
msgid "previous image"
|
||||
msgstr "Imagem anterior"
|
||||
|
||||
#: wp-jquery-lightbox.php:130
|
||||
msgid "next image"
|
||||
msgstr "Imagem seguinte"
|
||||
|
||||
#: wp-jquery-lightbox.php:131
|
||||
msgid "close image gallery"
|
||||
msgstr "Fechar a galeria"
|
||||
|
||||
#: wp-jquery-lightbox.php:132 wp-jquery-lightbox.php:242
|
||||
msgid "Image "
|
||||
msgstr "Imagem "
|
||||
|
||||
#: wp-jquery-lightbox.php:133 wp-jquery-lightbox.php:242
|
||||
msgid " of "
|
||||
msgstr " de "
|
||||
|
||||
#: wp-jquery-lightbox.php:134
|
||||
msgid "Download"
|
||||
msgstr "Descarregar"
|
||||
|
||||
#: wp-jquery-lightbox.php:135
|
||||
msgid "(pause slideshow)"
|
||||
msgstr "(pausar apresentação)"
|
||||
|
||||
#: wp-jquery-lightbox.php:136
|
||||
msgid "(play slideshow)"
|
||||
msgstr "(iniciar apresentação)"
|
||||
|
||||
#: wp-jquery-lightbox.php:199
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "A fazer batota?"
|
||||
|
||||
#: wp-jquery-lightbox.php:214
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Deixe o plugin adicionar o html necessário às ligações das imagens"
|
||||
|
||||
#: wp-jquery-lightbox.php:214
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Alterar as ligações das imagens automaticamente"
|
||||
|
||||
#: wp-jquery-lightbox.php:221
|
||||
msgid ""
|
||||
"Note: this will disable the nofollow-attribute of comment links, that "
|
||||
"otherwise interfere with the lightbox."
|
||||
msgstr ""
|
||||
"Nota: isto desactivará o atributo 'nofollow' das ligações dos comentários, "
|
||||
"que de outro modo interfeririam com o lightbox."
|
||||
|
||||
#: wp-jquery-lightbox.php:221
|
||||
msgid ""
|
||||
"Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/"
|
||||
"Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr ""
|
||||
"Activar lightbox nos comentários (desactiva <a href=\"http://codex.wordpress."
|
||||
"org/Nofollow\">o atributo 'nofollow'!</a>)"
|
||||
|
||||
#: wp-jquery-lightbox.php:228
|
||||
msgid "Show title"
|
||||
msgstr "Mostrar título"
|
||||
|
||||
#: wp-jquery-lightbox.php:235
|
||||
msgid "Show caption"
|
||||
msgstr "Mostrar legenda"
|
||||
|
||||
#: wp-jquery-lightbox.php:242
|
||||
msgid "Show image numbers:"
|
||||
msgstr "Mostrar números das imagens:"
|
||||
|
||||
#: wp-jquery-lightbox.php:249
|
||||
msgid "Show download link"
|
||||
msgstr "Mostrar ligação para descarregar"
|
||||
|
||||
#: wp-jquery-lightbox.php:257
|
||||
msgid "Show image info on top"
|
||||
msgstr "Mostrar a informação da imagem no topo"
|
||||
|
||||
#: wp-jquery-lightbox.php:265
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Reduzir imagens grandes a ecrãs pequenos"
|
||||
|
||||
#: wp-jquery-lightbox.php:270
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Manter uma distância entre a imagem e os bordos do ecrã."
|
||||
|
||||
#: wp-jquery-lightbox.php:270
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Margem mínima ao bordo do ecrã (por omissão: 0)"
|
||||
|
||||
#: wp-jquery-lightbox.php:278
|
||||
msgid "Use custom stylesheet"
|
||||
msgstr "Usar folha de estilos personalizada"
|
||||
|
||||
#: wp-jquery-lightbox.php:284
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Duração da animação (em milisegundos) "
|
||||
|
||||
#: wp-jquery-lightbox.php:290
|
||||
msgid "Slideshow speed (in milliseconds). 0 to disable."
|
||||
msgstr "Velocidade da apresentação (em milisegundos). 0 para desactivar."
|
||||
|
||||
#: wp-jquery-lightbox.php:295
|
||||
msgid "Save Changes"
|
||||
msgstr "Guardar alterações"
|
||||
|
||||
#~ msgid "« Previous"
|
||||
#~ msgstr "« Anterior"
|
||||
|
||||
#~ msgid "Next »"
|
||||
#~ msgstr "Seguinte »"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "_blank: open the image in a new window or tab\n"
|
||||
#~ "_self: open the image in the same frame as it was clicked (default)\n"
|
||||
#~ "_parent: open the image in the parent frameset\n"
|
||||
#~ "_top: open the image in the full body of the window"
|
||||
#~ msgstr ""
|
||||
#~ "_blank: abrir a imagem numa nova janela ou separador\n"
|
||||
#~ "_self: abrir a imagem na mesma janela em que for seleccionada (por "
|
||||
#~ "omissão)\n"
|
||||
#~ "_parent: abrir a imagem na janela superior\n"
|
||||
#~ "_top: abrir a imagem ocupando toda a janela"
|
||||
|
||||
#~ msgid "Target for download link:"
|
||||
#~ msgstr "Destino para a ligação de descarga:"
|
||||
|
||||
#~ msgid "Help text (default: none) "
|
||||
#~ msgstr "Texto de ajuda (por omissão: nenhum)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Browse images with your keyboard: Arrows or P(revious)/N(ext) and X/C/ESC "
|
||||
#~ "for close."
|
||||
#~ msgstr ""
|
||||
#~ "Navegar pelas imagens com o teclado: Setas ou 'P' (Anterior) e "
|
||||
#~ "'N' (Seguinte), 'X' ou 'C' ou 'Esc' para fechar."
|
||||
|
||||
#~ msgid "Show title & caption"
|
||||
#~ msgstr "Mostrar título e descrição"
|
||||
Binary file not shown.
@@ -0,0 +1,102 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-02-20 15:12+0100\n"
|
||||
"PO-Revision-Date: 2011-06-28 20:17+0200\n"
|
||||
"Last-Translator: Jibo <contact@jibo.ro>\n"
|
||||
"Language-Team: Anunturi <contact@jibo.ro>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Romanian\n"
|
||||
"X-Poedit-Country: ROMANIA\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
|
||||
"X-Poedit-SearchPath-0: C:\\_work\\svn\\artprima\\trunk\\wp-content\\plugins\\wp-jquery-lightbox\n"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:44
|
||||
msgid "Settings"
|
||||
msgstr "Setări"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:81
|
||||
msgid "previous image"
|
||||
msgstr "imaginea anterioară"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:82
|
||||
msgid "next image"
|
||||
msgstr "următoarea imagine"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:85
|
||||
msgid "close image gallery"
|
||||
msgstr "închide galeria de imagini"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:83
|
||||
msgid "« Previous"
|
||||
msgstr "« Anterioara"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:84
|
||||
msgid "Next »"
|
||||
msgstr "Urmatoarea »"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:86
|
||||
msgid "Image "
|
||||
msgstr "Imagine"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:87
|
||||
msgid " of "
|
||||
msgstr " din "
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:107
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Vrei să trişezi, aşa-i?"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Link-uri automate către imagini"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:121
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Permite plugin-ului să adauge codul HTML necesar pentru link-uri către imagini"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:125
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Redimensionează imaginile mari pentru a încape pe ecrane mai mici"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:129
|
||||
msgid "Note: <u>Excessively large images</u> waste bandwidth!"
|
||||
msgstr "Notă: <u>Imagini excesiv de mari</u> iroseşti banda de internet!"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:133
|
||||
msgid "Animation speed (in milliseconds)"
|
||||
msgstr "Viteza de animaţie (în milisecunde)"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:140
|
||||
msgid "Save Changes"
|
||||
msgstr "Salvează modificările"
|
||||
|
||||
#~ msgid "(more...)"
|
||||
#~ msgstr "(dále...)"
|
||||
|
||||
#~ msgid "Contacts"
|
||||
#~ msgstr "Kontakty"
|
||||
|
||||
#~ msgid "Contact Us"
|
||||
#~ msgstr "Kontaktujte nás"
|
||||
|
||||
#~ msgid "Read more..."
|
||||
#~ msgstr "Číst dále..."
|
||||
|
||||
#~ msgid "Contact Us..."
|
||||
#~ msgstr "Kontaktujte nás..."
|
||||
|
||||
#~ msgid "Order..."
|
||||
#~ msgstr "Objednat..."
|
||||
|
||||
#~ msgid "Search..."
|
||||
#~ msgstr "Hledat..."
|
||||
Binary file not shown.
@@ -0,0 +1,102 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-02-20 15:05+0100\n"
|
||||
"PO-Revision-Date: 2011-02-20 15:10+0100\n"
|
||||
"Last-Translator: ArtPrima.cz <ask@artprima.cz>\n"
|
||||
"Language-Team: ArtPrima.cz <ask@artprima.cz>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-Language: Russian\n"
|
||||
"X-Poedit-Country: RUSSIAN FEDERATION\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
|
||||
"X-Poedit-SearchPath-0: C:\\_work\\svn\\artprima\\trunk\\wp-content\\plugins\\wp-jquery-lightbox\n"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:44
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:81
|
||||
msgid "previous image"
|
||||
msgstr "предыдущее изображение"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:82
|
||||
msgid "next image"
|
||||
msgstr "следующее изображение"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:85
|
||||
msgid "close image gallery"
|
||||
msgstr "закрыть галерею"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:83
|
||||
msgid "« Previous"
|
||||
msgstr "« Предыдущее"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:84
|
||||
msgid "Next »"
|
||||
msgstr "Следующее »"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:86
|
||||
msgid "Image "
|
||||
msgstr "Изображение "
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:87
|
||||
msgid " of "
|
||||
msgstr " из "
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:107
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Жульничаем?"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Использовать lightbox автоматически"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:121
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Позволить плагину добавлять необходимый html к ссылкам на изображения"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:125
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Подгонять размер изображения под экран"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:129
|
||||
msgid "Note: <u>Excessively large images</u> waste bandwidth!"
|
||||
msgstr "Внимание: <u>Слишком большие изображения</u> впустую забивают канал!"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:133
|
||||
msgid "Animation speed (in milliseconds)"
|
||||
msgstr "Скорость анимации (в милисекундах)"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:140
|
||||
msgid "Save Changes"
|
||||
msgstr "Сохранить изменения"
|
||||
|
||||
#~ msgid "(more...)"
|
||||
#~ msgstr "(далее...)"
|
||||
|
||||
#~ msgid "Contacts"
|
||||
#~ msgstr "Контакты"
|
||||
|
||||
#~ msgid "Contact Us"
|
||||
#~ msgstr "Связаться с нами"
|
||||
|
||||
#~ msgid "Read more..."
|
||||
#~ msgstr "Читать далее..."
|
||||
|
||||
#~ msgid "Contact Us..."
|
||||
#~ msgstr "Связаться с нами..."
|
||||
|
||||
#~ msgid "Order..."
|
||||
#~ msgstr "Заказать..."
|
||||
|
||||
#~ msgid "Search..."
|
||||
#~ msgstr "Поиск..."
|
||||
Binary file not shown.
@@ -0,0 +1,103 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WP JQuery Lightbox\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-02-20 15:12+0100\n"
|
||||
"PO-Revision-Date: 2013-09-15 17:26+0100\n"
|
||||
"Last-Translator: ArtPrima.cz <ask@artprima.cz>\n"
|
||||
"Language-Team: ArtPrima.cz <ask@artprima.cz>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_c;__ngettext:1,2\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SourceCharset: utf-8\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"Language: cs_CZ\n"
|
||||
"X-Generator: Poedit 1.5.7\n"
|
||||
"X-Poedit-SearchPath-0: C:\\_work\\svn\\artprima\\trunk\\wp-content\\plugins"
|
||||
"\\wp-jquery-lightbox\n"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:44
|
||||
msgid "Settings"
|
||||
msgstr "Nastavenie"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:81
|
||||
msgid "previous image"
|
||||
msgstr "predchádzajúci obrázok"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:82
|
||||
msgid "next image"
|
||||
msgstr "ďalší obrázok"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:80
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:85
|
||||
msgid "close image gallery"
|
||||
msgstr "zavrieť galériu"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:83
|
||||
msgid "« Previous"
|
||||
msgstr "« Predchádzajúci"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:84
|
||||
msgid "Next »"
|
||||
msgstr "Ďalší »"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:86
|
||||
msgid "Image "
|
||||
msgstr "Obrázok "
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:87
|
||||
msgid " of "
|
||||
msgstr " z "
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:107
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Nepodvádzate?"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:117
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Používať lightbox automaticky"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:121
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Dovoliť pluginu pridať potrebný html kód do obrázkových odkazov"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:125
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Zmenšiť veľké obrázky, aby sa vošli na obrazovku"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:129
|
||||
msgid "Note: <u>Excessively large images</u> waste bandwidth!"
|
||||
msgstr "Poznámka: <u>Príliš veľké obrázky</u> plytvajú šírkou pásma!"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:133
|
||||
msgid "Animation speed (in milliseconds)"
|
||||
msgstr "Rýchlosť animácie (v milisekundách)"
|
||||
|
||||
#: C:\_work\svn\artprima\trunk\wp-content\plugins\wp-jquery-lightbox/wp-jquery-lightbox.php:140
|
||||
msgid "Save Changes"
|
||||
msgstr "Uložiť zmeny"
|
||||
|
||||
#~ msgid "(more...)"
|
||||
#~ msgstr "(dále...)"
|
||||
|
||||
#~ msgid "Contacts"
|
||||
#~ msgstr "Kontakty"
|
||||
|
||||
#~ msgid "Contact Us"
|
||||
#~ msgstr "Kontaktujte nás"
|
||||
|
||||
#~ msgid "Read more..."
|
||||
#~ msgstr "Číst dále..."
|
||||
|
||||
#~ msgid "Contact Us..."
|
||||
#~ msgstr "Kontaktujte nás..."
|
||||
|
||||
#~ msgid "Order..."
|
||||
#~ msgstr "Objednat..."
|
||||
|
||||
#~ msgid "Search..."
|
||||
#~ msgstr "Hledat..."
|
||||
Binary file not shown.
@@ -0,0 +1,139 @@
|
||||
# Translation of Development (trunk) in Ukrainian
|
||||
# This file is distributed under the same license as the Development (trunk) package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2015-12-18 20:46+0200\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 1.8.6\n"
|
||||
"Project-Id-Version: Development (trunk)\n"
|
||||
"POT-Creation-Date: \n"
|
||||
"Last-Translator: Ihor Vispyanskiy <virua@ukr.net>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: uk\n"
|
||||
|
||||
#: wp-jquery-lightbox.php:42
|
||||
msgid "Settings"
|
||||
msgstr "Налаштування"
|
||||
|
||||
#: wp-jquery-lightbox.php:130
|
||||
msgid "previous image"
|
||||
msgstr "попереднє зображення"
|
||||
|
||||
#: wp-jquery-lightbox.php:131
|
||||
msgid "next image"
|
||||
msgstr "наступне зображення"
|
||||
|
||||
#: wp-jquery-lightbox.php:132
|
||||
msgid "close image gallery"
|
||||
msgstr "закрити галерею зображень"
|
||||
|
||||
#: wp-jquery-lightbox.php:133 wp-jquery-lightbox.php:243
|
||||
msgid "Image "
|
||||
msgstr "Зображення "
|
||||
|
||||
#: wp-jquery-lightbox.php:134 wp-jquery-lightbox.php:243
|
||||
msgid " of "
|
||||
msgstr " з "
|
||||
|
||||
#: wp-jquery-lightbox.php:135
|
||||
msgid "Download"
|
||||
msgstr "Завантажити"
|
||||
|
||||
#: wp-jquery-lightbox.php:136
|
||||
msgid "(pause slideshow)"
|
||||
msgstr "(зупинити слайд-шоу)"
|
||||
|
||||
#: wp-jquery-lightbox.php:137
|
||||
msgid "(play slideshow)"
|
||||
msgstr "(почати слайд-шоу)"
|
||||
|
||||
#: wp-jquery-lightbox.php:200
|
||||
msgid "Cheatin’ uh?"
|
||||
msgstr "Шахраюємо?"
|
||||
|
||||
#: wp-jquery-lightbox.php:215
|
||||
msgid "Let the plugin add necessary html to image links"
|
||||
msgstr "Дозволити плагіну додавати необхідний html до посилань на зображення"
|
||||
|
||||
#: wp-jquery-lightbox.php:215
|
||||
msgid "Auto-lightbox image links"
|
||||
msgstr "Використовувати lightbox автоматично"
|
||||
|
||||
#: wp-jquery-lightbox.php:222
|
||||
msgid "Note: this will disable the nofollow-attribute of comment links, that otherwise interfere with the lightbox."
|
||||
msgstr "Примітка: це відключить nofollow-атрибут для посиланнях в коментарях, який в іншому випадку втручатиметься в lightbox."
|
||||
|
||||
#: wp-jquery-lightbox.php:222
|
||||
msgid "Enable lightbox in comments (disables <a href=\"http://codex.wordpress.org/Nofollow\">the nofollow attribute!</a>)"
|
||||
msgstr "Включити lightbox в коментарях (відключає <a href=\"http://codex.wordpress.org/Nofollow\">nofollow-атрибут!</a>)"
|
||||
|
||||
#: wp-jquery-lightbox.php:229
|
||||
msgid "Show title"
|
||||
msgstr "Показати назву"
|
||||
|
||||
#: wp-jquery-lightbox.php:236
|
||||
msgid "Show caption"
|
||||
msgstr "Показати підпис"
|
||||
|
||||
#: wp-jquery-lightbox.php:243
|
||||
msgid "Show image numbers:"
|
||||
msgstr "Показати кількість зображень:"
|
||||
|
||||
#: wp-jquery-lightbox.php:250
|
||||
msgid "Show download link"
|
||||
msgstr "Показати посилання на завантаження"
|
||||
|
||||
#: wp-jquery-lightbox.php:258
|
||||
msgid "Show image info on top"
|
||||
msgstr "Показати дані про зображення зверху"
|
||||
|
||||
#: wp-jquery-lightbox.php:266
|
||||
msgid "Shrink large images to fit smaller screens"
|
||||
msgstr "Підігнати розмір зображення під екран"
|
||||
|
||||
#: wp-jquery-lightbox.php:271
|
||||
msgid "Keep a distance between the image and the screen edges."
|
||||
msgstr "Тримати дистанцію між зображенням і краєм екрану."
|
||||
|
||||
#: wp-jquery-lightbox.php:271
|
||||
msgid "Minimum margin to screen edge (default: 0)"
|
||||
msgstr "Мінімальний відступ до краю екрана (за замовчуванням: 0)"
|
||||
|
||||
#: wp-jquery-lightbox.php:279
|
||||
msgid "Use custom stylesheet"
|
||||
msgstr "Використовувати власні стилі"
|
||||
|
||||
#: wp-jquery-lightbox.php:285
|
||||
msgid "Animation duration (in milliseconds) "
|
||||
msgstr "Тривалість анімації (в мілісекундах) "
|
||||
|
||||
#: wp-jquery-lightbox.php:291
|
||||
msgid "Slideshow speed (in milliseconds). 0 to disable."
|
||||
msgstr "Швидкість слайд-шоу (в мілісекундах). 0 для відключення."
|
||||
|
||||
#: wp-jquery-lightbox.php:296
|
||||
msgid "Save Changes"
|
||||
msgstr "Зберегти зміни"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "wp-jquery-lightbox"
|
||||
msgstr "WP jQuery Lightbox"
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://wordpress.org/extend/plugins/wp-jquery-lightbox/"
|
||||
msgstr "http://wordpress.org/extend/plugins/wp-jquery-lightbox/"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "A drop in replacement for LightBox-2 and similar plugins. Uses jQuery to save you from the JS-library mess in your header. :)"
|
||||
msgstr "Спроба замінити LightBox-2 і аналогічні плагіни. Використовує jQuery, щоб врятувати вас від засилля JS-бібліотек в шапці сайту. :)"
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Ulf Benjaminsson"
|
||||
msgstr "Ulf Benjaminsson"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.ulfben.com"
|
||||
msgstr "http://www.ulfben.com"
|
||||
Reference in New Issue
Block a user