first commit
589
wp-content/plugins/wp-jquery-lightbox/jquery.lightbox.js
Normal file
@@ -0,0 +1,589 @@
|
||||
/**
|
||||
* WP jQuery Lightbox
|
||||
* Version 1.4.8.2 - 2021-01-23
|
||||
*
|
||||
* @author Ulf Benjaminsson (http://www.ulfbenjaminsson.com)
|
||||
*
|
||||
* This is a modified version of Warren Krevenkis Lightbox-port (see notice below) for use in the WP jQuery Lightbox-
|
||||
* plugin (http://wordpress.org/extend/plugins/wp-jquery-lightbox/)
|
||||
* Modifications include:
|
||||
* . migrated to modern jQuery (Thanks: [Joseph Rézeau aka papijo](https://www.rezeau.org/)!)
|
||||
* . improved support of Gutenberg editor's image captions (Thanks: [Joseph Rézeau aka papijo](https://www.rezeau.org/)!)
|
||||
* . added slideshow
|
||||
* . added swipe-support
|
||||
* . added "support" for WordPress admin bar.
|
||||
* . improved the resizing code to respect aspect ratio
|
||||
* . improved scaling routines to maximize images while taking captions into account
|
||||
* . added support for browser resizing and orientation changes
|
||||
* . grabs image caption from WordPress [gallery] or media library output
|
||||
* . using WordPress API to localize script (with safe fallbacks)
|
||||
* . grabs image title if the link lacks one
|
||||
* . using rel attribute instead of class
|
||||
* . auto-lightboxing all links after page load
|
||||
* . replaced explicit IMG-urls with divs, styled through the CSS.
|
||||
* . honors empty captions / titles
|
||||
* . use only title if captions is identical
|
||||
* . added support for disabling all animations
|
||||
* . using no-conflict mode (for good measure)
|
||||
**/
|
||||
/**
|
||||
* jQuery Lightbox
|
||||
* Version 0.5 - 11/29/2007
|
||||
* @author Warren Krewenki
|
||||
*
|
||||
* This package is distributed under the BSD license.
|
||||
* For full license information, see LICENSE.TXT
|
||||
*
|
||||
* Based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
|
||||
* Originally written to make use of the Prototype framework, and Script.acalo.us, now altered to use jQuery.
|
||||
**/
|
||||
(function($){
|
||||
//http://stackoverflow.com/a/16187766/347764
|
||||
function versionCompare(a, b){
|
||||
var i, l, d;
|
||||
a = a.split('.');
|
||||
b = b.split('.');
|
||||
l = Math.min(a.length, b.length);
|
||||
for (i=0; i<l; i++) {
|
||||
d = parseInt(a[i], 10) - parseInt(b[i], 10);
|
||||
if (d !== 0) {
|
||||
return d;
|
||||
}
|
||||
}
|
||||
return a.length - b.length;
|
||||
}
|
||||
$.fn.lightbox = function(options) {
|
||||
var opts = $.extend({}, $.fn.lightbox.defaults, options);
|
||||
if($("#overlay").is(':visible')){//to resize the overlay whenever doLightbox is invoked
|
||||
$(window).trigger('resize'); //we need this to deal with InfiniteScroll and similar.
|
||||
}
|
||||
function onClick() {
|
||||
initialize();
|
||||
start(this);
|
||||
return false;
|
||||
}
|
||||
if(versionCompare($.fn.jquery, '1.7') > 0){
|
||||
return $(this).on("click", onClick);
|
||||
}else{
|
||||
return $(this).live("click", onClick); //deprecated since 1.7
|
||||
}
|
||||
function initialize() {
|
||||
$(window).on('orientationchange', resizeListener);
|
||||
$(window).on('resize', resizeListener);
|
||||
$('#overlay').remove();
|
||||
$('#lightbox').remove();
|
||||
opts.inprogress = false;
|
||||
opts.auto = -1;
|
||||
var txt = opts.strings;
|
||||
var arrowLeft = '<svg id="prevArrow" width="60px" height="60px" viewBox="-5.5 0 26 26" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-423.000000, -1196.000000)" fill="currentColor"><path d="M428.115,1209 L437.371,1200.6 C438.202,1199.77 438.202,1198.43 437.371,1197.6 C436.541,1196.76 435.194,1196.76 434.363,1197.6 L423.596,1207.36 C423.146,1207.81 422.948,1208.41 422.985,1209 C422.948,1209.59 423.146,1210.19 423.596,1210.64 L434.363,1220.4 C435.194,1221.24 436.541,1221.24 437.371,1220.4 C438.202,1219.57 438.202,1218.23 437.371,1217.4 L428.115,1209" id="chevron-left"></path></g></g></svg>';
|
||||
var arrowRight = '<svg id="nextArrow" width="60px" height="60px" viewBox="-5.5 0 26 26" xmlns="http://www.w3.org/2000/svg"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g transform="translate(-474.000000, -1196.000000)" fill="currentColor"><path d="M488.404,1207.36 L477.637,1197.6 C476.806,1196.76 475.459,1196.76 474.629,1197.6 C473.798,1198.43 473.798,1199.77 474.629,1200.6 L483.885,1209 L474.629,1217.4 C473.798,1218.23 473.798,1219.57 474.629,1220.4 C475.459,1221.24 476.806,1221.24 477.637,1220.4 L488.404,1210.64 C488.854,1210.19 489.052,1209.59 489.015,1209 C489.052,1208.41 488.854,1207.81 488.404,1207.36"></path></g></g></svg>';
|
||||
|
||||
var navigation = opts.newNavStyle
|
||||
? '<div id="newHoverNav">' + arrowLeft + arrowRight + '</div>'
|
||||
: '<div id="hoverNav"><a href="javascript://" title="' + txt.prevLinkTitle + '" id="prevLink"></a><a href="javascript://" id="nextLink" title="' + txt.nextLinkTitle + '"></a></div>';
|
||||
|
||||
var swipeNavigation = opts.newNavStyle
|
||||
? arrowLeft + arrowRight
|
||||
: '<a href="javascript://" title="' + txt.prevLinkTitle + '" id="prevLink" class="touch-device"></a><a href="javascript://" id="nextLink" class="touch-device" title="' + txt.nextLinkTitle + '"></a>';
|
||||
|
||||
var outerImage = '<div id="outerImageContainer"><div id="imageContainer"><img id="lightboxImage">' + navigation + '<div id="jqlb_loading"><a href="javascript://" id="loadingLink"><div id="jqlb_spinner"></div></a></div></div></div>';
|
||||
if ( jqlbIsTouchDevice() ) {
|
||||
outerImage = '<div id="outerImageContainer"><div id="imageContainer"><img id="lightboxImage">' + swipeNavigation + '<div id="jqlb_loading"><a href="javascript://" id="loadingLink"><div id="jqlb_spinner"></div></a></div></div></div>';
|
||||
}
|
||||
var imageData = '<div id="imageDataContainer" class="clearfix"><div id="imageData"><div id="imageDetails"><span id="titleAndCaption"></span><div id="controls"><span id="numberDisplay"></span> <a id="playPause" href="#"></a> <span id="downloadLink"></span></div></div><div id="bottomNav">';
|
||||
imageData += '<a href="javascript://" id="bottomNavClose" title="' + txt.closeTitle + '"><div id="jqlb_closelabel"></div></a></div></div></div>';
|
||||
var string;
|
||||
if ( opts.navbarOnTop ) {
|
||||
string = '<div id="overlay"></div><div id="lightbox">' + imageData + outerImage + '</div>';
|
||||
$("body").append(string);
|
||||
$("#imageDataContainer").addClass('ontop');
|
||||
} else {
|
||||
string = '<div id="overlay"></div><div id="lightbox">' + outerImage + imageData + '</div>';
|
||||
$("body").append(string);
|
||||
}
|
||||
$("#overlay").on("click", function () { end(); }).hide();
|
||||
$("#lightbox").on("click", function () { end(); }).hide();
|
||||
$("#loadingLink").on("click", function () { end(); return false; });
|
||||
$("#bottomNavClose").on("click", function () { end(); return false; });
|
||||
$('#outerImageContainer').width(opts.widthCurrent).height(opts.heightCurrent);
|
||||
$('#imageDataContainer').width(opts.widthCurrent);
|
||||
if (!opts.imageClickClose) {
|
||||
$("#lightboxImage").on("click", function () { return false; });
|
||||
$("#hoverNav").on("click", function () { return false; });
|
||||
}
|
||||
|
||||
// Apply color options
|
||||
$("#outerImageContainer").css({ "background-color": opts.borderColor });
|
||||
$("#overlay").css({
|
||||
"background-color": opts.overlayColor ?? '#000',
|
||||
"opacity": opts.overlayOpacity ?? '.6',
|
||||
"font-style": "italic"
|
||||
});
|
||||
|
||||
// Hide/show infobar
|
||||
if ( ! opts.showInfoBar ) {
|
||||
$('#imageDataContainer').addClass('hide');
|
||||
}
|
||||
|
||||
// Fixed nav postion infobar
|
||||
if ( opts.fixedNav ) {
|
||||
$('#prevArrow').addClass('fixed');
|
||||
$('#nextArrow').addClass('fixed');
|
||||
}
|
||||
};
|
||||
//allow image to reposition & scale if orientation change or resize occurs.
|
||||
function resizeListener(e) {
|
||||
if (opts.resizeTimeout) {
|
||||
clearTimeout(opts.resizeTimeout);
|
||||
opts.resizeTimeout = false;
|
||||
}
|
||||
opts.resizeTimeout = setTimeout(function () { doScale(); }, 50); //a delay to avoid duplicate event calls.
|
||||
}
|
||||
function getPageSize(){
|
||||
return {
|
||||
pageWidth:$(document).width(), //returns width of HTML document
|
||||
pageHeight:$(document).height(),
|
||||
viewportWidth:$(window).width(), //width of browser viewport, minus scrollbars
|
||||
viewportHeight:$(window).height()-opts.adminBarHeight,
|
||||
};
|
||||
};
|
||||
function getPageScroll() {
|
||||
var yScroll = $(document).scrollTop();
|
||||
if(opts.adminBarHeight && parseInt($('#wpadminbar').css('top'), 10) === 0){
|
||||
yScroll += opts.adminBarHeight;
|
||||
}
|
||||
return {x:$(document).scrollLeft(), y:yScroll};
|
||||
};
|
||||
function start(imageLink) {
|
||||
var pageSize = getPageSize();
|
||||
var newTop = 0;
|
||||
$("#overlay").hide().css({width: pageSize.pageWidth + 'px', height: pageSize.pageHeight + 'px', opacity: opts.overlayOpacity*100 + '%'}).fadeIn(400);
|
||||
var imageNum = 0;
|
||||
var images = [];
|
||||
opts.downloads = {}; //to keep track of any custom download links
|
||||
$("a").each(function(){
|
||||
if(!this.href || (this.rel != imageLink.rel)) {
|
||||
return;
|
||||
}
|
||||
var jqThis = $(this);
|
||||
var title = opts.showTitle ? getTitle(jqThis) : '';
|
||||
var caption = {html:'',text:''};
|
||||
if (opts.showCaption) {
|
||||
// Case if Gutenberg blocks : the caption now resides inside the <figcaption> tag.
|
||||
var figureCaption = jqThis.parent().children('figcaption')[0];
|
||||
if (figureCaption !== undefined) { // Case Gutenberg blocks
|
||||
caption.html = figureCaption.innerHTML;
|
||||
} else { // Case Classic blocks
|
||||
var caption = getCaption(jqThis);
|
||||
}
|
||||
}
|
||||
|
||||
if (opts.showTitle && title.toLowerCase() == caption.text.toLowerCase()) {
|
||||
title = caption.html; //to keep linked captions
|
||||
caption.html = ''; //but not duplicate the text
|
||||
}
|
||||
|
||||
var s = (title != '') ? '<span id="titleText">' + title + '</span>' : '';
|
||||
s += (title != '' && caption.html)? '<br />' : '';
|
||||
s += (caption.html != '') ? '<span id="captionText">' + caption.html +'</span>' : '';
|
||||
if(opts.showDownload || jqThis.attr("data-download")){
|
||||
opts.downloads[images.length] = jqThis.attr("data-download"); //use length as an index. convenient since it will always be unique
|
||||
}
|
||||
images.push(new Array(this.href, s, images.length));
|
||||
});
|
||||
if (images.length > 1) {
|
||||
for (i = 0; i < images.length; i++) {
|
||||
for (j = images.length - 1; j > i; j--) {
|
||||
if (images[i][0] == images[j][0]) {
|
||||
images.splice(j, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
while (images[imageNum][0] != imageLink.href) { imageNum++; }
|
||||
}
|
||||
opts.imageArray = images;
|
||||
var scroll = getPageScroll();
|
||||
setLightBoxPos(scroll.y, scroll.x).show();// calculate top and left offset for the lightbox
|
||||
changeImage(imageNum);
|
||||
|
||||
// Set panzoom on initial image
|
||||
if ( jqlbIsZoomEnabled() ) {
|
||||
var lightboxImage = document.getElementById( 'lightboxImage' );
|
||||
panzoom = Panzoom( lightboxImage, { maxScale: 5, minScale: 1, panOnlyWhenZoomed: true } );
|
||||
}
|
||||
|
||||
setNav();
|
||||
};
|
||||
function getTitle(jqLink){
|
||||
var title = jqLink.attr("title") || '';
|
||||
var jqImg = jqLink.children('img:first-child');
|
||||
if ( opts.useAltForTitle && ( jqLink.attr('alt') || jqImg.attr('alt') ) ) {
|
||||
title = jqLink.attr('alt') ? jqLink.attr('alt') : jqImg.attr('alt');
|
||||
}
|
||||
if(!title){
|
||||
var jqImg = jqLink.children('img:first-child');
|
||||
if (jqImg.attr('title')) {
|
||||
title = jqImg.attr('title'); //grab the title from the image if the link lacks one
|
||||
} else if(jqImg.attr('alt')){
|
||||
title = jqImg.attr('alt'); //if neither link nor image have a title attribute
|
||||
}
|
||||
}
|
||||
return title.trim();
|
||||
}
|
||||
function getCaption(jqLink){
|
||||
var caption = {html:'',text:''};
|
||||
if (jqLink.parent().next('.gallery-caption').html()) {
|
||||
var jq = jqLink.parent().next('.gallery-caption');
|
||||
caption.html = jq.html(); //holds html, links etc
|
||||
caption.text = jq.text(); //plain-text
|
||||
} else if (jqLink.next('.wp-caption-text').html()) {
|
||||
caption.html = jqLink.next('.wp-caption-text').html();
|
||||
caption.text = jqLink.next('.wp-caption-text').text();
|
||||
}
|
||||
caption.text = caption.text.trim().replace('’', ''').replace('’', '\'').replace('…', '...');//http://nickjohnson.com/b/wordpress-apostrophe-vs-right-single-quote
|
||||
return caption;
|
||||
}
|
||||
function setLightBoxPos(newTop, newLeft) {
|
||||
if (opts.resizeSpeed > 0) {
|
||||
return $('#lightbox').animate({ top: newTop+ 'px', left: newLeft+ 'px' }, opts.resizeSpeed, 'linear');
|
||||
}
|
||||
return $('#lightbox').css({ top: newTop + 'px', left: newLeft + 'px' });
|
||||
};
|
||||
function changeImage(imageNum) {
|
||||
if (opts.inprogress != false) {
|
||||
return;
|
||||
}
|
||||
opts.inprogress = true;
|
||||
opts.activeImage = imageNum;
|
||||
// hide elements during transition
|
||||
$('#jqlb_loading').show();
|
||||
$('#lightboxImage').hide();
|
||||
$('#hoverNav').hide();
|
||||
$('#prevLink').hide();
|
||||
$('#nextLink').hide();
|
||||
$('#prevArrow').hide();
|
||||
$('#nextArrow').hide();
|
||||
doChangeImage();
|
||||
};
|
||||
function doChangeImage() {
|
||||
opts.imgPreloader = new Image();
|
||||
opts.imgPreloader.onload = function () {
|
||||
$('#lightboxImage').attr('src', opts.imageArray[opts.activeImage][0]);
|
||||
updateDetails();
|
||||
doScale(); // once image is preloaded, resize image container
|
||||
preloadNeighborImages();
|
||||
};
|
||||
opts.imgPreloader.src = opts.imageArray[opts.activeImage][0];
|
||||
};
|
||||
function doScale() {
|
||||
if (!opts.imgPreloader) {
|
||||
return;
|
||||
}
|
||||
var newWidth = opts.imgPreloader.width;
|
||||
var newHeight = opts.imgPreloader.height;
|
||||
var pageSize = getPageSize();
|
||||
var noScrollWidth = (pageSize.viewportWidth < pageSize.pageWidth) ? pageSize.pageWidth : pageSize.viewportWidth; //if viewport is smaller than page, use page width.
|
||||
$("#overlay").css({ width: noScrollWidth + 'px', height: pageSize.pageHeight + 'px' });
|
||||
var maxHeight = (pageSize.viewportHeight) - ($("#imageDataContainer").outerHeight(true) + (2 * opts.borderSize));
|
||||
var maxWidth = (pageSize.viewportWidth) - (2*opts.borderSize);
|
||||
if(opts.fitToScreen){
|
||||
var displayHeight = maxHeight-opts.marginSize;
|
||||
var displayWidth = maxWidth-opts.marginSize;
|
||||
var ratio = 1;
|
||||
if (newHeight > displayHeight) {
|
||||
ratio = displayHeight / newHeight; //ex. 600/1024 = 0.58
|
||||
}
|
||||
newWidth = newWidth * ratio;
|
||||
newHeight = newHeight * ratio;
|
||||
ratio = 1;
|
||||
if (newWidth > displayWidth) {
|
||||
ratio = displayWidth / newWidth; //ex. 800/1280 == 0.62
|
||||
}
|
||||
newWidth = Math.round(newWidth * ratio);
|
||||
newHeight = Math.round(newHeight * ratio);
|
||||
}
|
||||
var scroll = getPageScroll();
|
||||
var centerY = scroll.y + (maxHeight * 0.5);
|
||||
var newTop = centerY - (newHeight * 0.5);
|
||||
var newLeft = scroll.x;
|
||||
$('#lightboxImage').width(newWidth).height(newHeight);
|
||||
resizeImageContainer(newWidth, newHeight, newTop, newLeft);
|
||||
}
|
||||
function resizeImageContainer(imgWidth, imgHeight, lightboxTop, lightboxLeft) {
|
||||
opts.widthCurrent = $("#outerImageContainer").outerWidth();
|
||||
opts.heightCurrent = $("#outerImageContainer").outerHeight();
|
||||
var widthNew = Math.max(300, imgWidth + (opts.borderSize * 2)); //300 = iphone. http://wordpress.org/support/topic/image-not-resized-correctly-with-wptouch?replies=6#post-4205735
|
||||
var heightNew = (imgHeight + (opts.borderSize * 2));
|
||||
setLightBoxPos(lightboxTop, lightboxLeft);
|
||||
$('#imageDataContainer').animate({width:widthNew}, opts.resizeSpeed, 'linear');
|
||||
$('#outerImageContainer').animate({width:widthNew,height:heightNew}, opts.resizeSpeed, 'linear', function () {
|
||||
showImage();
|
||||
});
|
||||
if (opts.imageArray.length > 1) {
|
||||
$('#hoverNav').show();
|
||||
$('#prevLink').show();
|
||||
$('#nextLink').show();
|
||||
$('#prevArrow').show();
|
||||
$('#nextArrow').show();
|
||||
}
|
||||
$('#prevLink,#nextLink').height(imgHeight);
|
||||
};
|
||||
function showImage(){
|
||||
$('#jqlb_loading').hide();
|
||||
showDetails();
|
||||
if(opts.resizeSpeed > 0){
|
||||
$('#lightboxImage').fadeIn("fast", function(){
|
||||
onImageVisible();
|
||||
});
|
||||
}else{
|
||||
$('#lightboxImage').show();
|
||||
onImageVisible();
|
||||
}
|
||||
opts.inprogress = false;
|
||||
};
|
||||
function showDetails(){
|
||||
$('#titleAndCaption').css("opacity", '100%');
|
||||
if(opts.showDownload){
|
||||
$('#downloadLink').css('opacity', '100%');
|
||||
}
|
||||
if(opts.showNumbers){
|
||||
$('#numberDisplay').css('opacity', '100%');
|
||||
}
|
||||
if(opts.slidehowSpeed){
|
||||
$('#playPause').css('opacity', '100%');
|
||||
}
|
||||
if(opts.resizeSpeed > 0){
|
||||
$("#imageDetails").animate({opacity: '100%'}, 'fast');
|
||||
}else{
|
||||
$("#imageDetails").css('opacity', '100%');
|
||||
}
|
||||
}
|
||||
function onImageVisible(){
|
||||
if(opts.auto != -1){
|
||||
clearTimeout(opts.auto); //in case we came here after mouse/keyboard interaction
|
||||
opts.auto = setTimeout(function(){changeImage((opts.activeImage == (opts.imageArray.length - 1)) ? 0 : opts.activeImage + 1);}, opts.slidehowSpeed);
|
||||
}
|
||||
enableKeyboardNav();
|
||||
|
||||
// Re-attach panzoom to current image
|
||||
if ( jqlbIsZoomEnabled() ) {
|
||||
panzoom?.destroy();
|
||||
var lightboxImage = document.getElementById( 'lightboxImage' );
|
||||
panzoom = Panzoom( lightboxImage, { maxScale: 5, minScale: 1, panOnlyWhenZoomed: true } );
|
||||
}
|
||||
}
|
||||
function preloadNeighborImages() {
|
||||
if (opts.imageArray.length > 1) {
|
||||
preloadNextImage = new Image();
|
||||
preloadNextImage.src = opts.imageArray[(opts.activeImage == (opts.imageArray.length - 1)) ? 0 : opts.activeImage + 1][0]
|
||||
preloadPrevImage = new Image();
|
||||
preloadPrevImage.src = opts.imageArray[(opts.activeImage == 0) ? (opts.imageArray.length - 1) : opts.activeImage - 1][0]
|
||||
} else {
|
||||
if ((opts.imageArray.length - 1) > opts.activeImage) {
|
||||
preloadNextImage = new Image();
|
||||
preloadNextImage.src = opts.imageArray[opts.activeImage + 1][0];
|
||||
}
|
||||
if (opts.activeImage > 0) {
|
||||
preloadPrevImage = new Image();
|
||||
preloadPrevImage.src = opts.imageArray[opts.activeImage - 1][0];
|
||||
}
|
||||
}
|
||||
};
|
||||
function updateDetails(){ //update caption, title and control, and makes them invisible while we animate into position.
|
||||
var images = opts.imageArray;
|
||||
var txt = opts.strings;
|
||||
var i = opts.activeImage;
|
||||
var downloadIndex = images[i][2];
|
||||
var pos = (opts.showNumbers && images.length > 1) ? txt.image + (i + 1) + txt.of + images.length : '';
|
||||
$("#imageDetails").css("opacity", '100%');
|
||||
if(images[i][1] != ''){
|
||||
$('#titleAndCaption').css('opacity', '100%').html(images[i][1]);
|
||||
}else{
|
||||
$('#titleAndCaption').empty();
|
||||
}
|
||||
if(opts.showNumbers){
|
||||
$('#numberDisplay').css('opacity', '100%').html(pos);
|
||||
}else{
|
||||
$('#numberDisplay').empty();
|
||||
}
|
||||
if(opts.slidehowSpeed && images.length > 1){
|
||||
var pp = (opts.auto === -1) ? txt.play : txt.pause;
|
||||
$('#playPause').css('opacity', '100%').attr('href', '#').text(pp);
|
||||
}else{
|
||||
$('#playPause').empty();
|
||||
}
|
||||
if(opts.showDownload || opts.downloads[downloadIndex]){
|
||||
var url = opts.downloads[downloadIndex] ? opts.downloads[downloadIndex] : images[i][0];
|
||||
$('#downloadLink').css('opacity', '100%').html($('<a>').attr('href', url).attr('target', '_blank').attr('download', '').text(txt.download));
|
||||
}else{
|
||||
$('#downloadLink').empty();
|
||||
}
|
||||
var position = $('#downloadLink').position();
|
||||
};
|
||||
function setNav() {
|
||||
if (opts.imageArray.length > 1) {
|
||||
$('#prevLink').on("click", function () {
|
||||
changeImage((opts.activeImage == 0) ? (opts.imageArray.length - 1) : opts.activeImage - 1);
|
||||
return false;
|
||||
});
|
||||
$('#nextLink').on("click", function () {
|
||||
changeImage((opts.activeImage == (opts.imageArray.length - 1)) ? 0 : opts.activeImage + 1);
|
||||
return false;
|
||||
});
|
||||
$('#prevArrow').on("click", function () {
|
||||
changeImage((opts.activeImage == 0) ? (opts.imageArray.length - 1) : opts.activeImage - 1);
|
||||
return false;
|
||||
});
|
||||
$('#nextArrow').on("click", function () {
|
||||
changeImage((opts.activeImage == (opts.imageArray.length - 1)) ? 0 : opts.activeImage + 1);
|
||||
return false;
|
||||
});
|
||||
|
||||
if($.fn.touchwipe){
|
||||
$('#imageContainer').touchwipe({
|
||||
wipeLeft: function() {
|
||||
if ( ! isImageZoomed() ) {
|
||||
changeImage((opts.activeImage == (opts.imageArray.length - 1)) ? 0 : opts.activeImage + 1);
|
||||
}
|
||||
},
|
||||
wipeRight: function() {
|
||||
if ( ! isImageZoomed() ) {
|
||||
changeImage((opts.activeImage == 0) ? (opts.imageArray.length - 1) : opts.activeImage - 1);
|
||||
}
|
||||
},
|
||||
min_move_x: 20,
|
||||
preventDefaultEvents: true
|
||||
});
|
||||
}
|
||||
if(opts.slidehowSpeed){
|
||||
$('#playPause').off('click').on("click", function() {
|
||||
if(opts.auto != -1){
|
||||
$(this).text(opts.strings.play);
|
||||
clearTimeout(opts.auto);
|
||||
opts.auto = -1;
|
||||
}else{
|
||||
$(this).text(opts.strings.pause);
|
||||
opts.auto = setTimeout(function(){changeImage((opts.activeImage == (opts.imageArray.length - 1)) ? 0 : opts.activeImage + 1);}, opts.slidehowSpeed);
|
||||
}
|
||||
return false;
|
||||
});
|
||||
}
|
||||
enableKeyboardNav();
|
||||
}
|
||||
};
|
||||
function end() {
|
||||
disableKeyboardNav();
|
||||
clearTimeout(opts.auto);
|
||||
opts.auto = -1;
|
||||
$('#lightbox').hide();
|
||||
$('#overlay').fadeOut();
|
||||
};
|
||||
function keyboardAction(e) {
|
||||
var o = e.data.opts;
|
||||
var keycode = e.keyCode;
|
||||
var escapeKey = 27;
|
||||
var key = String.fromCharCode(keycode).toLowerCase();
|
||||
if ((key == 'x') || (key == 'o') || (key == 'c') || (keycode == escapeKey)) { // close lightbox
|
||||
end();
|
||||
} else if ((key == 'p') || (keycode == 37)) { // display previous image
|
||||
disableKeyboardNav();
|
||||
changeImage((o.activeImage == 0) ? (o.imageArray.length - 1) : o.activeImage - 1);
|
||||
} else if ((key == 'n') || (keycode == 39)) { // display next image
|
||||
disableKeyboardNav();
|
||||
changeImage((o.activeImage == (o.imageArray.length - 1)) ? 0 : o.activeImage + 1);
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
function enableKeyboardNav() {
|
||||
$(document).off('keydown').on('keydown', {opts: opts}, keyboardAction);
|
||||
};
|
||||
function disableKeyboardNav() {
|
||||
$(document).off('keydown');
|
||||
};
|
||||
function isImageZoomed() {
|
||||
if ( jqlbIsZoomEnabled() && panzoom?.getScale() > 1 ) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
};
|
||||
$.fn.lightbox.defaults = {
|
||||
showCaption:false,
|
||||
showNumbers:true,
|
||||
adminBarHeight:0, //28
|
||||
overlayOpacity: '80%',
|
||||
borderSize: 10,
|
||||
imageArray: new Array,
|
||||
activeImage: null,
|
||||
inprogress: false, //this is an internal state variable. don't touch.
|
||||
widthCurrent: 300,
|
||||
heightCurrent: 300,
|
||||
showTitle: true,
|
||||
imageClickClose: true
|
||||
};
|
||||
$(document).ready(doLightBox);
|
||||
})(jQuery);
|
||||
|
||||
var panzoom = {};
|
||||
|
||||
function jqlbIsTouchDevice() {
|
||||
return (('ontouchstart' in window) ||
|
||||
(navigator.maxTouchPoints > 0) ||
|
||||
(navigator.msMaxTouchPoints > 0));
|
||||
}
|
||||
|
||||
function jqlbIsZoomEnabled() {
|
||||
return JQLBSettings.allowPinchZoom === '1'
|
||||
}
|
||||
|
||||
//you can call doLightBox() manually at any time to activate the lightboxing. Useful for AJAX-loaded content.
|
||||
function doLightBox(){
|
||||
var haveConf = (typeof JQLBSettings == 'object');
|
||||
var ss, rs, ms = 0;
|
||||
if(haveConf && JQLBSettings.slideshowSpeed) {
|
||||
ss = parseInt(JQLBSettings.slideshowSpeed);
|
||||
}
|
||||
if(haveConf && JQLBSettings.resizeSpeed) {
|
||||
rs = parseInt(JQLBSettings.resizeSpeed);
|
||||
}
|
||||
if(haveConf && JQLBSettings.marginSize){
|
||||
ms = parseInt(JQLBSettings.marginSize);
|
||||
}
|
||||
if(haveConf && jqlbIsTouchDevice() && JQLBSettings.mobileMarginSize){
|
||||
ms = parseInt(JQLBSettings.mobileMarginSize)
|
||||
}
|
||||
var default_strings = {
|
||||
prevLinkTitle: 'previous image',
|
||||
nextLinkTitle: 'next image',
|
||||
closeTitle: 'close image gallery',
|
||||
image: 'Image ',
|
||||
of: ' of ',
|
||||
download: 'Download',
|
||||
pause: '(pause slideshow)',
|
||||
play: '(play slideshow)'
|
||||
};
|
||||
jQuery('a[rel^="lightbox"]').lightbox({
|
||||
adminBarHeight: jQuery('#wpadminbar').height() || 0,
|
||||
showNumbers: (haveConf && JQLBSettings.showNumbers == '0') ? false : true,
|
||||
showCaption: (haveConf && JQLBSettings.showCaption == '0') ? false : true,
|
||||
showTitle: (haveConf && JQLBSettings.showTitle == '0') ? false : true,
|
||||
useAltForTitle: (haveConf && JQLBSettings.useAltForTitle == '0') ? false : true,
|
||||
marginSize: (haveConf && ms) ? ms : 0,
|
||||
fitToScreen: (haveConf && JQLBSettings.fitToScreen == '1') ? true : false,
|
||||
resizeSpeed: (haveConf && rs >= 0) ? rs : 400,
|
||||
slidehowSpeed: (haveConf && ss >= 0) ? ss : 4000,
|
||||
showDownload: (haveConf && JQLBSettings.showDownload == '0') ? false : true,
|
||||
navbarOnTop: (haveConf && JQLBSettings.navbarOnTop == '0') ? false : true,
|
||||
strings: (haveConf && typeof JQLBSettings.prevLinkTitle == 'string') ? JQLBSettings : default_strings,
|
||||
borderSize: (haveConf && JQLBSettings?.borderSize ? JQLBSettings?.borderSize : 10),
|
||||
borderColor: (haveConf && JQLBSettings?.borderColor ),
|
||||
overlayColor: (haveConf && JQLBSettings?.overlayColor ),
|
||||
overlayOpacity: (haveConf && JQLBSettings?.overlayOpacity ),
|
||||
newNavStyle: (haveConf && JQLBSettings?.newNavStyle == '0' ? false : true ),
|
||||
fixedNav: (haveConf && JQLBSettings?.fixedNav == '0' ? false : true ),
|
||||
navArrowColor: (haveConf && JQLBSettings?.navArrowColor ),
|
||||
navBackgroundColor: (haveConf && JQLBSettings?.navBackgroundColor ),
|
||||
showInfoBar: (haveConf && JQLBSettings?.showInfoBar == 0 ? false : true )
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
/**
|
||||
* jQuery Plugin to obtain touch gestures from iPhone, iPod Touch and iPad, should also work with Android mobile phones (not tested yet!)
|
||||
* Common usage: wipe images (left and right to show the previous or next image)
|
||||
*
|
||||
* @author Andreas Waltl, netCU Internetagentur (http://www.netcu.de)
|
||||
* @version 1.1.1 (9th December 2010) - fix bug (older IE's had problems)
|
||||
* @version 1.1 (1st September 2010) - support wipe up and wipe down
|
||||
* @version 1.0 (15th July 2010)
|
||||
*/
|
||||
(function($) {
|
||||
$.fn.touchwipe = function(settings) {
|
||||
var config = {
|
||||
min_move_x: 20,
|
||||
min_move_y: 20,
|
||||
wipeLeft: function() { },
|
||||
wipeRight: function() { },
|
||||
wipeUp: function() { },
|
||||
wipeDown: function() { },
|
||||
preventDefaultEvents: true
|
||||
};
|
||||
|
||||
if (settings) $.extend(config, settings);
|
||||
|
||||
this.each(function() {
|
||||
var startX;
|
||||
var startY;
|
||||
var isMoving = false;
|
||||
|
||||
function cancelTouch() {
|
||||
this.removeEventListener('touchmove', onTouchMove);
|
||||
startX = null;
|
||||
isMoving = false;
|
||||
}
|
||||
|
||||
function onTouchMove(e) {
|
||||
if(config.preventDefaultEvents) {
|
||||
e.preventDefault();
|
||||
}
|
||||
if(isMoving) {
|
||||
var x = e.touches[0].pageX;
|
||||
var y = e.touches[0].pageY;
|
||||
var dx = startX - x;
|
||||
var dy = startY - y;
|
||||
if(Math.abs(dx) >= config.min_move_x) {
|
||||
cancelTouch();
|
||||
if(dx > 0) {
|
||||
config.wipeLeft();
|
||||
}
|
||||
else {
|
||||
config.wipeRight();
|
||||
}
|
||||
}
|
||||
else if(Math.abs(dy) >= config.min_move_y) {
|
||||
cancelTouch();
|
||||
if(dy > 0) {
|
||||
config.wipeDown();
|
||||
}
|
||||
else {
|
||||
config.wipeUp();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function onTouchStart(e)
|
||||
{
|
||||
if (e.touches.length == 1) {
|
||||
startX = e.touches[0].pageX;
|
||||
startY = e.touches[0].pageY;
|
||||
isMoving = true;
|
||||
this.addEventListener('touchmove', onTouchMove, false);
|
||||
}
|
||||
}
|
||||
if ('ontouchstart' in document.documentElement) {
|
||||
this.addEventListener('touchstart', onTouchStart, false);
|
||||
}
|
||||
});
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
})(jQuery);
|
||||
10
wp-content/plugins/wp-jquery-lightbox/jquery.touchwipe.min.js
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* jQuery Plugin to obtain touch gestures from iPhone, iPod Touch and iPad, should also work with Android mobile phones (not tested yet!)
|
||||
* Common usage: wipe images (left and right to show the previous or next image)
|
||||
*
|
||||
* @author Andreas Waltl, netCU Internetagentur (http://www.netcu.de)
|
||||
* @version 1.1.1 (9th December 2010) - fix bug (older IE's had problems)
|
||||
* @version 1.1 (1st September 2010) - support wipe up and wipe down
|
||||
* @version 1.0 (15th July 2010)
|
||||
*/
|
||||
(function($){$.fn.touchwipe=function(settings){var config={min_move_x:20,min_move_y:20,wipeLeft:function(){},wipeRight:function(){},wipeUp:function(){},wipeDown:function(){},preventDefaultEvents:true};if(settings)$.extend(config,settings);this.each(function(){var startX;var startY;var isMoving=false;function cancelTouch(){this.removeEventListener('touchmove',onTouchMove);startX=null;isMoving=false}function onTouchMove(e){if(config.preventDefaultEvents){e.preventDefault()}if(isMoving){var x=e.touches[0].pageX;var y=e.touches[0].pageY;var dx=startX-x;var dy=startY-y;if(Math.abs(dx)>=config.min_move_x){cancelTouch();if(dx>0){config.wipeLeft()}else{config.wipeRight()}}else if(Math.abs(dy)>=config.min_move_y){cancelTouch();if(dy>0){config.wipeDown()}else{config.wipeUp()}}}}function onTouchStart(e){if(e.touches.length==1){startX=e.touches[0].pageX;startY=e.touches[0].pageY;isMoving=true;this.addEventListener('touchmove',onTouchMove,false)}}if('ontouchstart'in document.documentElement){this.addEventListener('touchstart',onTouchStart,false)}});return this}})(jQuery);
|
||||
@@ -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>
|
||||
|
||||
@@ -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..."
|
||||
@@ -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"
|
||||
@@ -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"
|
||||
@@ -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 "
|
||||
@@ -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"
|
||||
|
||||
@@ -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 "
|
||||
@@ -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 "שמור שינויים"
|
||||
|
||||
@@ -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 "
|
||||
@@ -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 "設定を保存"
|
||||
|
||||
@@ -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 "Поиск..."
|
||||
@@ -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"
|
||||
@@ -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"
|
||||
@@ -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 "
|
||||
@@ -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 "
|
||||
@@ -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"
|
||||
@@ -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..."
|
||||
@@ -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 "Поиск..."
|
||||
@@ -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..."
|
||||
@@ -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"
|
||||
7
wp-content/plugins/wp-jquery-lightbox/panzoom.min.js
vendored
Normal file
419
wp-content/plugins/wp-jquery-lightbox/readme.txt
Normal file
@@ -0,0 +1,419 @@
|
||||
=== WP jQuery Lightbox ===
|
||||
Contributors: pandaboxwp
|
||||
Tags: lightbox, photo, image, gallery
|
||||
Requires at least: 5.0
|
||||
Tested up to: 6.4.3
|
||||
Stable tag: 1.5.3
|
||||
Requires PHP: 7.0
|
||||
License: GPLv2 or later
|
||||
|
||||
Very simple and lightweight lightbox plugin for WordPress. Formerly the 'WP JQuery Lightbox'.
|
||||
|
||||
== Description ==
|
||||
|
||||
A simple, lightweight WordPress lightbox plugin. [See demo here](https://pandaboxwp.com).
|
||||
|
||||
**Features**
|
||||
|
||||
* Automattically detect images so they open in a lightbox with no need to adjust markup.
|
||||
* Works seamlessly with WordPress core images and galleries, and galleries from many plugins.
|
||||
* Play or puase slideshow within lightbox.
|
||||
* Enhanced mobile support with swipe gestures on touch devices, improved scaling to maximizes use of screen space, and live adjustment to the browser window and orientation of your phone.
|
||||
* Browse images with your keyboard: Arrows, P(revious)/N(ext) and X/C/ESC for close.
|
||||
* Admin panel to configure options. sv
|
||||
* Localization support.
|
||||
* Lightweight and fast.
|
||||
|
||||
See the plugin in action here: [pandaboxwp.com](https://pandaboxwp.com)
|
||||
|
||||
**Background and Thanks**
|
||||
|
||||
Special thanks to [Ulf Benjaminsson](http://www.ulfbenjaminsson.com), who created this plugin and maintained it for many years.
|
||||
|
||||
This plugin lets you keep [Lightbox 2](http://www.huddletogether.com/projects/lightbox2/) functionality but sheds the bulk of the Prototype Framework and Scriptaculous Effects Library. Warren Krewenki [ported Lightbox to jQuery](http://warren.mesozen.com/jquery-lightbox/) and this plugin is mostly a wrapper to his work.
|
||||
|
||||
== Screenshots ==
|
||||
|
||||
1. Default frontend appearance.
|
||||
|
||||
== Installation ==
|
||||
|
||||
1. Upload the `wp-jquery-lightbox`-folder to the `/wp-content/plugins/` directory
|
||||
1. Activate the plugin through the 'Plugins' menu in WordPress
|
||||
1. Check out the jQuery Lightbox-panel in your admin interface for usage details and configuration.
|
||||
|
||||
= How to Use: =
|
||||
1. With [WordPress built-in gallery](http://codex.wordpress.org/Gallery_Shortcode): [`[gallery link="file"]`](http://codex.wordpress.org/Gallery_Shortcode)
|
||||
1. All galleries in a post make a single slideshow. To create separate slideshows, use `group`:
|
||||
|
||||
`[gallery link="file" ids="1,2,3" group="mon"]`
|
||||
|
||||
`[gallery link="file" ids="4,5,6" group="tue"]`
|
||||
|
||||
1. You can manually add a `rel="lightbox"` attribute to any link:
|
||||
|
||||
`<a href="image-1.jpg" rel="lightbox" title="my caption">image #1</a>`
|
||||
|
||||
Note the use of title-attribute to set a caption
|
||||
|
||||
1. To manually group sets of related images, follow step 3 but additionally include a group name in the `rel` attribute:
|
||||
|
||||
`<a href="image-1.jpg" rel="lightbox[roadtrip]">image #1</a>`
|
||||
|
||||
`<a href="image-2.jpg" rel="lightbox[roadtrip]">image #2</a>`
|
||||
|
||||
`<a href="image-3.jpg" rel="lightbox[roadtrip]">image #3</a>`
|
||||
|
||||
1. You can use the `data-download` attribute to set a custom download link:
|
||||
|
||||
`<a href="image-medium.jpg" rel="lightbox" data-download="image-superlarge.jpg"> [...] </a>`
|
||||
|
||||
1. To *disable* lightboxing of an image link, just set any other rel-attribute: `rel="nobox"`
|
||||
|
||||
1. Keyboard support: Arrows, P(revious)/N(ext) and X/C/ESC for close. Swipe left / right on touch devices.
|
||||
|
||||
1. [Infinite-Scroll](http://wordpress.org/extend/plugins/infinite-scroll/) and similar "endless pages"-plugins should call `doLightbox();` whenever it loads new content. Check your plugin for a setting
|
||||
named "callbacks" - code that is called after each new page is loaded. Add this line;
|
||||
|
||||
`if(typeof doLightBox !== 'undefined' && typeof jQuery !== 'undefined'){
|
||||
doLightBox();
|
||||
}`
|
||||
|
||||
1. On the server side you can apply lightbox to any content by running `jqlb_apply_lightbox($your_html_content, "any ID");` It returns a string with all image links lightboxed, grouped by `"any id"`.
|
||||
|
||||
= Trouble shooting: =
|
||||
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.
|
||||
|
||||
1. Make sure your site is not throwing any javascript errors. Use [your browsers javascript console](http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers) to find out.
|
||||
|
||||
If you're running a custom theme:
|
||||
|
||||
1. Make sure you have [`wp_head();`](http://codex.wordpress.org/Function_Reference/wp_head) just before the closing `</head>` tag of your theme, or you will break many plugins, which generally use this hook to reference JavaScript files.
|
||||
|
||||
1. For the same reason, always have `wp_footer();` just before the closing `</body>` tag of your theme.
|
||||
|
||||
1. Many JavaScript optimizers, combiners, minifiers, etc. conflict with [`wp_localize_script`](http://codex.wordpress.org/Function_Reference/wp_localize_script2), used to configure this plugin and many others.
|
||||
|
||||
* If you have problems with jQuery Lightbox; first disable all JavaScript-optimizing plugins. (Optimize Scripts, W3 Total Cache, WP Minify etc)
|
||||
|
||||
* If you develop JavaScript optimizers for WordPress, please play nice with the default API...
|
||||
|
||||
* [More info about this issue](http://wordpress.org/support/topic/122-worked-13-does-not-work-for-me?replies=19)
|
||||
|
||||
Lastly:
|
||||
|
||||
1. Disable all other plugins, one at a time. Try the lightbox between each.
|
||||
|
||||
1. Revert to the default theme. Did it help? Fix your theme.
|
||||
|
||||
1. Search the forums for similar symptoms.
|
||||
|
||||
Still have problems? Post a link and describe what issue you're having, and tell us what of these steps you've already tried.
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.5.3 (2024-03-12) =
|
||||
* Improve mobile panzoom behavior
|
||||
* Remove nav for single images
|
||||
* Option to use alt as title
|
||||
|
||||
= 1.5.2 (2024-03-12) =
|
||||
* Fix new nav arrow size
|
||||
|
||||
= 1.5.1 (2024-03-12) =
|
||||
* Replace dashicons with svg for nav arrows
|
||||
|
||||
= 1.5 (2024-03-07) =
|
||||
* Added new nav arrow style options
|
||||
* Added overlay color/opacity options
|
||||
* Added border color/width options
|
||||
* Added image shadow option
|
||||
* Added option to hide infobar
|
||||
* Improved styling
|
||||
|
||||
= 1.4.9.3 (2024-02-08) =
|
||||
* Added pinch-to-zoom support for mobile
|
||||
* Improved mobile styling
|
||||
|
||||
= 1.4.9.2 (2024-01-12) =
|
||||
* Update author and contributors
|
||||
* Update tested WordPress version
|
||||
* Update minimum PHP version to 7.0
|
||||
|
||||
= 1.4.9.1 (2023-11-05) =
|
||||
* Add webp support
|
||||
* Remove donation links
|
||||
|
||||
= 1.4.9 (2023-11-03) =
|
||||
* Updated readme author and description
|
||||
* Fixed image centering on small screens
|
||||
* Removed white space from end of lines
|
||||
* Updated default settings for resize_on_demand and margin_size
|
||||
* Capitalized slideshow links
|
||||
|
||||
= 1.4.8.4 (2023-10-24) =
|
||||
* Removed screenshots and banner image from repository
|
||||
|
||||
= 1.4.8.3 (2021-01-26) =
|
||||
* Added setting to control whether jQuery is loaded in the header or footer.
|
||||
|
||||
= 1.4.8.2 (2021-01-26) =
|
||||
* Migrated lightbox to modern jQuery (Thanks: [Joseph Rézeau aka papijo](https://www.rezeau.org/)!)
|
||||
* Improved support of Gutenberg editor's image captions (Thanks: [Joseph Rézeau aka papijo](https://www.rezeau.org/)!)
|
||||
* Tested up to WordPress 5.6 and PHP 7.4.12
|
||||
|
||||
= 1.4.8.1 (2019-03-24) =
|
||||
* Tested for WordPress 5.x and PHP 7.0
|
||||
|
||||
= 1.4.8 (2015-12-31) =
|
||||
* Fixed translations not being loaded properly
|
||||
* Fixed support for WordPress 4.4
|
||||
|
||||
= 1.4.7 (2015-09-21) =
|
||||
* Support for WordPress' new translation system.
|
||||
* Updated translation for Portugese (Thanks: Pedro Mendonça)
|
||||
* Added images and CSS for Portugese (Thanks: Pedro Mendonça)
|
||||
|
||||
= 1.4.6 (2015-03-20) =
|
||||
* "Download link" now correctly open a download dialogue instead of displaying the file
|
||||
* Title, caption and all control elements can now be turned on / off individually
|
||||
* Added support for custom style sheets (just copy original to your theme's style folder, and hack away)
|
||||
* Restructured the HTML slightly, making styling easier
|
||||
* Added specific CSS selectors for all elements
|
||||
* Fixed animation speed setting being ignored
|
||||
* Dropped quirks support for Internet Explorer 8
|
||||
* Removed help-text setting
|
||||
|
||||
= 1.4.5 (2013-06-09) =
|
||||
* Fit to screen edge on low rez displays (<500px)
|
||||
* Added global setting to hide title & caption
|
||||
* Reduced the amount of code running for each image shown
|
||||
* Updated German translation (thanks [Niko23](http://wordpress.org/support/topic/translation-of-client-side-text?replies=5#post-4230050))
|
||||
* Fix: swipe direction
|
||||
* Fix: slideshow now waits for images to display before starting timer.
|
||||
* Fix: support for latest jQuery
|
||||
* Fix: WordPress encoding wrong quote mark in captions, causing duplicate texts to display.
|
||||
|
||||
|
||||
= 1.4.1 (2013-02-03) =
|
||||
* Added swipe gestures on touch devices
|
||||
* Added slideshow
|
||||
* Added support for multiple sets in one post (use: [`group`](http://wordpress.org/extend/plugins/wp-jquery-lightbox/installation/) with the gallery-shortcode)
|
||||
* Added support for arbitrary Download links via the [`data-download`-attribute](http://wordpress.org/extend/plugins/wp-jquery-lightbox/installation/)
|
||||
* Added support to pick text from the image ALT-attribute (if title is not available)
|
||||
* Added translations: Norwegian Bokmål (thanks [Ole Martin Kristiansen](http://hvorerole.com/)!)
|
||||
* Fix regexp to deal with urls like www.gif.org. (Thanks Yannick Berker!)
|
||||
* Fix changed common IDs to avoid collisions. (you'll have to update your CSS now!) (Hat tip; Pollmann Frederic)
|
||||
* Fix better support of Infinite Scroll and similar
|
||||
* Fix toggling visible state on unrelated object, embed and select nodes. [mwolfe02](http://wordpress.org/support/topic/lightbox-shows-hidden-selectembedobject-blocks?replies=1)
|
||||
* Fix leaky CSS on admin page
|
||||
|
||||
= 1.3.4.2 (2011-02-01) =
|
||||
* Fallbacks for people using older jQuery
|
||||
|
||||
= 1.3.4.1 (2011-01-31) =
|
||||
* Updated deprecated jQuery calls (thanks; David Naber)
|
||||
|
||||
= 1.3.4 (2011-12-29) =
|
||||
* Maybe fix for [mixed HTTP/HTTPS sites](http://wordpress.org/support/topic/mixed-http-and-https-installation-problems)
|
||||
* [Support for query params in image links](http://wordpress.org/support/topic/automatic-lightbox-functionarity-failes-to-work-with-image-links?replies=2#post-2302997)
|
||||
* [Fixed button messup in Firefox](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-broken-in-firefox?replies=9)
|
||||
* Fixed depth fight with the default twentyeleven theme header
|
||||
* [Fixed admin bar covering the lightbox](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-show-download-link-not-working?replies=4#post-2400784)
|
||||
* Added info on how to disable lightbox for specific links (bogus rel-attribute)
|
||||
* Added translations: [Romanian](http://wordpress.org/support/topic/wp-jquery-lightbox-romanian-translation?replies=1), [French](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-french-translation?replies=2#post-2187626) and [Hebrew](www.sagive.co.il)
|
||||
* Updated: Russian language icons (thanks; Ilya Gorenburg), [Japanese translation](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-japanese-translation-for-133?replies=1)
|
||||
|
||||
= 1.3.3 (2011-06-12) =
|
||||
* Fixes [for Internet Explorer](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-jquery-version-and-ie-issues) (A million thanks to [David Grayston](http://www.grayston.net/2011/internet-explorer-v8-and-opacity-issues/#more-342)!).
|
||||
* Fix for [mixed HTTP/HTTPS installations](http://wordpress.org/support/topic/mixed-http-and-https-installation-problems).
|
||||
* Added setting to have margins to screen edge.
|
||||
* Added setting to put info & navigation on top.
|
||||
* Added setting for help text.
|
||||
* Added Japanese translation ([Thanks redcocker](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-japanese-translation)).
|
||||
|
||||
= 1.3.2 (2011-05-16) =
|
||||
* Added support for auto-lightboxing comments too
|
||||
* Added Russian and Czech translations (incl. images). Thanks again Denis!
|
||||
* Added Polish translation ([thanks Fisiu](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-polish-localization?replies=1))
|
||||
* Fixed fallbacks to avoid [breakage over JavaScript optimizers](http://wordpress.org/support/topic/122-worked-13-does-not-work-for-me?replies=19#post-2091734).
|
||||
* Known issues: [1.3.x is garbage on IE7 and IE8](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-jquery-version-and-ie-issues?replies=3). I've got no clue and no time - **help appreciated!**
|
||||
|
||||
= 1.3.1 (2011-05-02) =
|
||||
* Forgot to include languages files! :)
|
||||
|
||||
= 1.3 (2011-05-01) =
|
||||
* Improved scaling to make maximum use of display area.
|
||||
* Supports orientation / resize changes - Lightbox reflows with site.
|
||||
* Added translation support (Thanks; [Martin S](http://sukimashita.com/) & Denis N. Voituk).
|
||||
* Added option to display download link.
|
||||
* Added support for disabling all animations (set duration to 0).
|
||||
* Fixed "duration" not having an effect.
|
||||
* [For Developers: public method to apply Lightbox to any string.](http://wordpress.org/extend/plugins/wp-jquery-lightbox/installation/)
|
||||
|
||||
= 1.2.2 (2011-04-14) =
|
||||
* Use WordPress bundled jQuery instead of forcing the Google CDN
|
||||
* Fixed the settings link on the Plugins page
|
||||
|
||||
= 1.2.1 (2010-10-24) =
|
||||
* [Use only caption if title is identical](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-title-captions-bug-found-solved-and-fix-proposed?replies=8#post-1748874)
|
||||
* Removed a forgotten debug call
|
||||
|
||||
= 1.2 (2010-10-12) =
|
||||
* Added support for Media Library titles and captions.
|
||||
* Minified the javascript (8.6KB vs 17.8KB)
|
||||
* Minified the CSS (2.0KB vs 2.7KB)
|
||||
|
||||
= 1.1 (2010-10-09) =
|
||||
* Honors empty captions.
|
||||
* Fixed typos on admin page.
|
||||
* [thanks, josephknight!](http://tinyurl.com/3677p6r)
|
||||
|
||||
= 1.0 (2010-04-11) =
|
||||
* Release.
|
||||
|
||||
== Upgrade Notice ==
|
||||
= 1.4.8 =
|
||||
Fixed support for WordPress 4.4, Fixed translations not being loaded properly
|
||||
|
||||
= 1.4.7 =
|
||||
New Portugese translation. Support for WordPress' new translation system.
|
||||
|
||||
= 1.4.6 =
|
||||
Lots of bug fixes and performance improvements. New CSS styles!
|
||||
|
||||
= 1.4.5 (2013-06-09) =
|
||||
Support latest jQuery. Better use of small screen estate, fixed buggy features (slideshow, swipes) and reduced system load.
|
||||
|
||||
= 1.4.1 =
|
||||
Swipe gestures, slideshow, sets and lots of fixes. Check your config screen after update!
|
||||
|
||||
= 1.3.4.2 (2011-02-01) =
|
||||
* Fallbacks for people using older jQuery
|
||||
|
||||
= 1.3.4.1 (2011-01-31) =
|
||||
Updated deprecated jQuery calls (thanks; David Naber)
|
||||
|
||||
= 1.3.4 =
|
||||
Lots of fixes, translations and support for the Admin Bar and Twentyeleven theme.
|
||||
|
||||
= 1.3.3 =
|
||||
Fixes for Internet Explorer. Added Japanese translation.
|
||||
|
||||
= 1.3.2 =
|
||||
Support for auto-lightboxing comments. Added Polish, Russian and Czech languages.
|
||||
|
||||
= 1.3.1 =
|
||||
Added missing files from previous release... Also: mobile support, larger display area.
|
||||
|
||||
= 1.3 =
|
||||
Enables larger viewing area, improved mobile experience and translations.
|
||||
|
||||
= 1.2.2 =
|
||||
Use WordPress bundled jQuery instead of forcing the Google CDN
|
||||
|
||||
= 1.2.1 =
|
||||
Removed forgotten debug call. Important upgrade!
|
||||
|
||||
= 1.2 =
|
||||
Support caption and titles from the Media Library
|
||||
|
||||
= 1.1 =
|
||||
Honors empty captions and fixes some typos.
|
||||
|
||||
= 1.0 =
|
||||
First release.
|
||||
|
||||
|
||||
== Frequently Asked Questions ==
|
||||
|
||||
= Trouble shooting: =
|
||||
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.
|
||||
|
||||
1. Make sure your site is not throwing any javascript errors. Use [your browsers javascript console](http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers) to find out.
|
||||
|
||||
If you're running a custom theme:
|
||||
|
||||
1. Make sure you have [`wp_head();`](http://codex.wordpress.org/Function_Reference/wp_head) just before the closing `</head>` tag of your theme, or you will break many plugins, which generally use this hook to reference JavaScript files.
|
||||
|
||||
1. For the same reason, always have `wp_footer();` just before the closing `</body>` tag of your theme.
|
||||
|
||||
1. Many JavaScript optimizers, combiners, minifiers, etc. conflict with [`wp_localize_script`](http://codex.wordpress.org/Function_Reference/wp_localize_script2), used to configure this plugin and many others.
|
||||
|
||||
* If you have problems with jQuery Lightbox; first disable all JavaScript-optimizing plugins. (Optimize Scripts, W3 Total Cache, WP Minify etc)
|
||||
|
||||
* If you develop JavaScript optimizers for WordPress, please play nice with the default API...
|
||||
|
||||
* [More info about this issue](http://wordpress.org/support/topic/122-worked-13-does-not-work-for-me?replies=19)
|
||||
|
||||
Lastly:
|
||||
|
||||
1. Disable all other plugins, one at a time. Try the lightbox between each.
|
||||
|
||||
1. Revert to the default theme. Did it help? Fix your theme.
|
||||
|
||||
1. Search the forums for similar symptoms.
|
||||
|
||||
Still have problems? Post a link and describe what issue you're having, and tell us what of these steps you've already tried.
|
||||
|
||||
= Can the lightbox display the image description instead of the title? =
|
||||
WP jQuery Lightbox grabs texts from three different HTML nodes;
|
||||
|
||||
1. `title`-attribute of link-to-image
|
||||
1. `img` tag's `title` attribute (if 1 is empty)
|
||||
1. `img` tag's `alt` attribute (if 1 and 2 is empty)
|
||||
1. HTML content of `.gallery-caption` or `.wp-caption-text` (in that order)
|
||||
|
||||
Look at how the default TwentyTwelve theme uses these in its galleries and set up your theme so it outputs what you need in these places.
|
||||
|
||||
= I can see elements of my site through the overlay =
|
||||
|
||||
It's a problem of [z-index](http://www.w3schools.com/Css/pr_pos_z-index.asp). Check [the z-index property](http://www.w3schools.com/Css/pr_pos_z-index.asp) for the problematic elements, and force them to be less than 100. (Thanks [dway](http://wordpress.org/support/topic/plugin-wp-jquery-lightbox-title-captions-bug-found-solved-and-fix-proposed?replies=20#post-2052340)!)
|
||||
|
||||
= How do I add images to a post? =
|
||||
|
||||
[Inserting Images into Posts and Pages](http://codex.wordpress.org/Inserting_Images_into_Posts_and_Pages)
|
||||
|
||||
= How do I create a thumbnail gallery? =
|
||||
|
||||
Upload images to a post (see previous question) and use [WordPress' built-in gallery shortcode](http://codex.wordpress.org/Gallery_Shortcode): `[gallery link="file"]`
|
||||
|
||||
Note the `link="file"` - this is crucial! By default the gallery will link your humbnails to a page displaying your image. With `link="file"` the thumbnails links
|
||||
directly to the image files - allowing Lightbox to function.
|
||||
|
||||
= Must fade-in and animation of all *box-scripts be so slow? =
|
||||
|
||||
WP-jQuery Lightbox lets you configure the animation duration and disable image resizing from the admin panel. Set duration to 0 to disable animations entirely.
|
||||
|
||||
= For developers: =
|
||||
1. Always have `wp_footer();` just before the closing `</body>` tag of your theme, or you will break many plugins, which generally use this hook to reference JavaScript files.
|
||||
1. Apply lightbox to any content by running `jqlb_apply_lightbox($your_content, "any ID");` It returns a string with all image links lightboxed, grouped by `"any id"`.
|
||||
1. Many JavaScript optimizers, combiners, minifiers, etc. conflict with [`wp_localize_script`](http://codex.wordpress.org/Function_Reference/wp_localize_script2), used to configure this plugin and many others.
|
||||
|
||||
* If you have problems with jQuery Lightbox; first disable all JavaScript-optimizing plugins. (Optimize Scripts, W3 Total Cache, WP Minify etc)
|
||||
* If you develop JavaScript optimizers for WordPress, please play nice with the default API...
|
||||
* [More info about this issue](http://wordpress.org/support/topic/122-worked-13-does-not-work-for-me?replies=19)
|
||||
|
||||
= Can I help you in any way? =
|
||||
|
||||
Indeed you can!
|
||||
|
||||
Translations and help with implementing them would be nice.
|
||||
|
||||
== Additional Info ==
|
||||
Copyright (C) 2010-2023 Ulf Benjaminsson.
|
||||
Copyright (C) 2023-Present PandaboxWP LLC.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
BIN
wp-content/plugins/wp-jquery-lightbox/styles/images/blank.gif
Normal file
|
After Width: | Height: | Size: 43 B |
BIN
wp-content/plugins/wp-jquery-lightbox/styles/images/close.gif
Normal file
|
After Width: | Height: | Size: 222 B |
|
After Width: | Height: | Size: 979 B |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 222 B |
|
After Width: | Height: | Size: 940 B |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 333 B |
|
After Width: | Height: | Size: 307 B |
|
After Width: | Height: | Size: 299 B |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 222 B |
|
After Width: | Height: | Size: 435 B |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 484 B |
|
After Width: | Height: | Size: 307 B |
|
After Width: | Height: | Size: 439 B |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 222 B |
|
After Width: | Height: | Size: 596 B |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 454 B |
|
After Width: | Height: | Size: 307 B |
|
After Width: | Height: | Size: 462 B |
BIN
wp-content/plugins/wp-jquery-lightbox/styles/images/fi/blank.gif
Normal file
|
After Width: | Height: | Size: 43 B |
BIN
wp-content/plugins/wp-jquery-lightbox/styles/images/fi/close.gif
Normal file
|
After Width: | Height: | Size: 222 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
BIN
wp-content/plugins/wp-jquery-lightbox/styles/images/fi/next.gif
Normal file
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 1.4 KiB |
BIN
wp-content/plugins/wp-jquery-lightbox/styles/images/fi/prev.gif
Normal file
|
After Width: | Height: | Size: 307 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 222 B |
|
After Width: | Height: | Size: 622 B |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 359 B |
|
After Width: | Height: | Size: 307 B |
|
After Width: | Height: | Size: 411 B |
BIN
wp-content/plugins/wp-jquery-lightbox/styles/images/loading.gif
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
wp-content/plugins/wp-jquery-lightbox/styles/images/next.gif
Normal file
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 715 B |
BIN
wp-content/plugins/wp-jquery-lightbox/styles/images/prev.gif
Normal file
|
After Width: | Height: | Size: 307 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 222 B |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 305 B |
|
After Width: | Height: | Size: 483 B |