jQuery Pin It Button for Images - Version 1.17

Version Description

  • Released 2013-12-10
  • Minor bug fix
  • Added Spanish translation
Download this release

Release Info

Developer mrsztuczkens
Plugin Icon wp plugin jQuery Pin It Button for Images
Version 1.17
Comparing to
See all releases

Code changes from version 1.16 to 1.17

jquery-pin-it-button-for-images.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: jQuery Pin It Button For Images
4
  Plugin URI: http://mrsztuczkens.me/jpibfi/
5
  Description: Highlights images on hover and adds a "Pin It" button over them for easy pinning.
6
  Author: Marcin Skrzypiec
7
- Version: 1.16
8
  Author URI: http://mrsztuczkens.me/
9
  */
10
 
@@ -18,7 +18,7 @@ if ( ! function_exists( 'add_action' ) ) {
18
  * CONSTANTS
19
  *
20
  */
21
- define( "JPIBFI_VERSION", "1.16" );
22
  define( "JPIBFI_VERSION_MINOR", "a" );
23
  define( "JPIBFI_METADATA", "jpibfi_meta" );
24
  define( "JPIBFI_SELECTION_OPTIONS", "jpibfi_selection_options" );
4
  Plugin URI: http://mrsztuczkens.me/jpibfi/
5
  Description: Highlights images on hover and adds a "Pin It" button over them for easy pinning.
6
  Author: Marcin Skrzypiec
7
+ Version: 1.17
8
  Author URI: http://mrsztuczkens.me/
9
  */
10
 
18
  * CONSTANTS
19
  *
20
  */
21
+ define( "JPIBFI_VERSION", "1.17" );
22
  define( "JPIBFI_VERSION_MINOR", "a" );
23
  define( "JPIBFI_METADATA", "jpibfi_meta" );
24
  define( "JPIBFI_SELECTION_OPTIONS", "jpibfi_selection_options" );
js/script.js CHANGED
@@ -255,7 +255,7 @@
255
 
256
  bookmarkDescription = bookmarkDescription || ( descriptionForUrl || settings.pageTitle );
257
 
258
- var imageUrl = 'http://pinterest.com/pin/create/bookmarklet/?is_video=' + encodeURI('false') + "&url=" + encodeURIComponent( bookmarkUrl ) + "&media=" + encodeURI ( $image.data('media') || $image[0].src )
259
  + '&description=' + encodeURIComponent( bookmarkDescription );
260
 
261
  window.open(imageUrl, 'Pinterest', 'width=632,height=253,status=0,toolbar=0,menubar=0,location=1,scrollbars=1');
255
 
256
  bookmarkDescription = bookmarkDescription || ( descriptionForUrl || settings.pageTitle );
257
 
258
+ var imageUrl = 'http://pinterest.com/pin/create/bookmarklet/?is_video=' + encodeURIComponent('false') + "&url=" + encodeURIComponent( bookmarkUrl ) + "&media=" + encodeURIComponent( $image.data('media') || $image[0].src )
259
  + '&description=' + encodeURIComponent( bookmarkDescription );
260
 
261
  window.open(imageUrl, 'Pinterest', 'width=632,height=253,status=0,toolbar=0,menubar=0,location=1,scrollbars=1');
js/script.min.js CHANGED
@@ -1 +1 @@
1
- (function(e){"use strict";function n(e){if(t&&console&&console.log){if("string"==typeof e||e instanceof String){console.log("jpibfi debug: "+e)}else if("object"==typeof e&&typeof JSON!=="undefined"&&typeof JSON.stringify==="function"){console.log("jpibfi debug: "+JSON.stringify(e,null,4))}else if("object"==typeof e){var n="";for(var r in e)n+=r+": "+e[r]+"\n";console.log("jpibfi debug: "+n)}}}function r(e){switch(e){case"0":return"pinit-top-left";case"1":return"pinit-top-right";case"2":return"pinit-bottom-left";case"3":return"pinit-bottom-right";case"4":return"pinit-middle";default:return""}}function i(e){var t=e.split(";");var n="";for(var r=0;r<t.length;r++){if(t[r])n+="."+t[r]+","}if(n)n=n.substr(0,n.length-1);return n}var t=false;e(document).ready(function(){function h(){n("Add Elements called");var t=0;e("img[data-jpibfi-indexer]").each(function(){var n=e(this);if(this.clientWidth<s.minImageWidth||this.clientHeight<s.minImageHeight){n.removeAttr("data-jpibfi-indexer");return}if(s.mode=="static")d(n,s.buttonPosition);t++});n("Images caught after filtering: "+t)}function p(){n("Remove Elements called");e("div.pinit-overlay").remove()}function d(e,t){var n=e.offset();var r=v(e,t);e.after(r);r.css({height:e.get(0).clientHeight+"px",width:e.get(0).clientWidth+"px"}).show().offset({left:n.left,top:n.top});return r}function v(e,t){var n=e.attr("data-jpibfi-indexer");return jQuery("<div/>",{"class":"pinit-overlay","data-jpibfi-indexer":n,title:e.attr("title")||"",html:m(n).addClass(r(t))})}function m(t){var r=jQuery("<a/>",{href:"#","class":"pinit-button","data-jpibfi-indexer":t,text:"Pin It"});r.click(function(t){n("Pin In button clicked");var r=e(this).attr("data-jpibfi-indexer");var i=e('img[data-jpibfi-indexer="'+r+'"]');var o="",u="",a="";if(s.usePostUrl){var f=i.closest("div.jpibfi_container").find("input.jpibfi").first();if(f.length){u=f.attr("data-jpibfi-description");a=f.attr("data-jpibfi-url")}}a=a||s.pageUrl;if(s.descriptionOption==3)o=i.attr("title")||i.attr("alt");else if(s.descriptionOption==2)o=u||s.pageDescription;else if(s.descriptionOption==4)o=s.siteTitle;else if(s.descriptionOption==5)o=i.attr("data-jpibfi-description");o=o||u||s.pageTitle;var l="http://pinterest.com/pin/create/bookmarklet/?is_video="+encodeURI("false")+"&url="+encodeURIComponent(a)+"&media="+encodeURI(i.data("media")||i[0].src)+"&description="+encodeURIComponent(o);window.open(l,"Pinterest","width=632,height=253,status=0,toolbar=0,menubar=0,location=1,scrollbars=1");return false});return r}var s={pageUrl:document.URL,pageTitle:document.title,pageDescription:e('meta[name="description"]').attr("content")||"",siteTitle:jpibfi_options.site_title,imageSelector:jpibfi_options.image_selector,disabledClasses:jpibfi_options.disabled_classes,enabledClasses:jpibfi_options.enabled_classes,descriptionOption:jpibfi_options.description_option,usePostUrl:jpibfi_options.use_post_url=="1",minImageHeight:jpibfi_options.min_image_height,minImageWidth:jpibfi_options.min_image_width,mode:jpibfi_options.mode,buttonPosition:jpibfi_options.button_position};var o={height:parseInt(jpibfi_options.pin_image_height),width:parseInt(jpibfi_options.pin_image_width)};var u={top:parseInt(jpibfi_options.button_margin_top),right:parseInt(jpibfi_options.button_margin_right),bottom:parseInt(jpibfi_options.button_margin_bottom),left:parseInt(jpibfi_options.button_margin_left)};t="1"==jpibfi_options.debug;n(s);n(o);n(u);var a=e(".jpibfi").closest("div").addClass("jpibfi_container");n("Number of containers added: "+a.length);var f=i(s.disabledClasses);var l=i(s.enabledClasses)||"*";n("Image selector: "+s.imageSelector);n("Filter selector: "+l);n("Not selector: "+f);var c=0;e(s.imageSelector).not(f).filter(l).each(function(t){e(this).attr("data-jpibfi-indexer",t);c++});n("Images caught by selectors: "+c);if("static"==s.mode){n("Adding static mode delegates");e(document).delegate("div.pinit-overlay","hover",function(t){var n=t.type==="mouseenter";var r=e(this).attr("data-jpibfi-indexer");e('.pinit-button[data-jpibfi-indexer="'+r+'"]').toggle(n);e('img[data-jpibfi-indexer="'+r+'"]').toggleClass("pinit-hover",n)})}else if("dynamic"==s.mode){n("Adding dynamic mode delegates");e(document).delegate("a.pinit-button","mouseenter",function(){var t=e(this);clearTimeout(t.data("jpibfi-timeoutId"))});e(document).delegate("a.pinit-button","mouseleave",function(){var t=e(this);var n=setTimeout(function(){t.remove();e('img[data-jpibfi-indexer="'+t.attr("data-jpibfi-indexer")+'"]').removeClass("pinit-hover")},100);t.data("jpibfi-timeoutId",n)});e(document).delegate("img[data-jpibfi-indexer]","mouseenter",function(){var t=e(this);var n=t.attr("data-jpibfi-indexer");var r=e('a.pinit-button[data-jpibfi-indexer="'+n+'"]');if(r.length==0){var r=m(n);var i=t.offset();var a={width:t.get(0).clientWidth,height:t.get(0).clientHeight};switch(s.buttonPosition){case"0":i.left+=u.left;i.top+=u.top;break;case"1":i.top+=u.top;i.left=i.left+a.width-u.right-o.width;break;case"2":i.left+=u.left;i.top=i.top+a.height-u.bottom-o.height;break;case"3":i.left=i.left+a.width-u.right-o.width;i.top=i.top+a.height-u.bottom-o.height;break;case"4":i.left=Math.round(i.left+a.width/2-o.width/2);i.top=Math.round(i.top+a.height/2-o.height/2);break}t.after(r);r.show().offset({left:i.left,top:i.top})}else{clearTimeout(r.data("jpibfi-timeoutId"))}e('img[data-jpibfi-indexer="'+r.attr("data-jpibfi-indexer")+'"]').addClass("pinit-hover")});e(document).delegate("img[data-jpibfi-indexer]","mouseleave",function(){var t=e(this).attr("data-jpibfi-indexer");var n=e('a.pinit-button[data-jpibfi-indexer="'+t+'"]');var r=setTimeout(function(){n.remove();e('img[data-jpibfi-indexer="'+n.attr("data-jpibfi-indexer")+'"]').removeClass("pinit-hover")},100);n.data("jpibfi-timeoutId",r)})}e(window).load(h);e(window).resize(function(){p();h()})});})(jQuery)
1
+ (function(e){"use strict";function n(e){if(t&&console&&console.log){if("string"==typeof e||e instanceof String){console.log("jpibfi debug: "+e)}else if("object"==typeof e&&typeof JSON!=="undefined"&&typeof JSON.stringify==="function"){console.log("jpibfi debug: "+JSON.stringify(e,null,4))}else if("object"==typeof e){var n="";for(var r in e)n+=r+": "+e[r]+"\n";console.log("jpibfi debug: "+n)}}}function r(e){switch(e){case"0":return"pinit-top-left";case"1":return"pinit-top-right";case"2":return"pinit-bottom-left";case"3":return"pinit-bottom-right";case"4":return"pinit-middle";default:return""}}function i(e){var t=e.split(";");var n="";for(var r=0;r<t.length;r++){if(t[r])n+="."+t[r]+","}if(n)n=n.substr(0,n.length-1);return n}var t=false;e(document).ready(function(){function h(){n("Add Elements called");var t=0;e("img[data-jpibfi-indexer]").each(function(){var n=e(this);if(this.clientWidth<s.minImageWidth||this.clientHeight<s.minImageHeight){n.removeAttr("data-jpibfi-indexer");return}if(s.mode=="static")d(n,s.buttonPosition);t++});n("Images caught after filtering: "+t)}function p(){n("Remove Elements called");e("div.pinit-overlay").remove()}function d(e,t){var n=e.offset();var r=v(e,t);e.after(r);r.css({height:e.get(0).clientHeight+"px",width:e.get(0).clientWidth+"px"}).show().offset({left:n.left,top:n.top});return r}function v(e,t){var n=e.attr("data-jpibfi-indexer");return jQuery("<div/>",{"class":"pinit-overlay","data-jpibfi-indexer":n,title:e.attr("title")||"",html:m(n).addClass(r(t))})}function m(t){var r=jQuery("<a/>",{href:"#","class":"pinit-button","data-jpibfi-indexer":t,text:"Pin It"});r.click(function(t){n("Pin In button clicked");var r=e(this).attr("data-jpibfi-indexer");var i=e('img[data-jpibfi-indexer="'+r+'"]');var o="",u="",a="";if(s.usePostUrl){var f=i.closest("div.jpibfi_container").find("input.jpibfi").first();if(f.length){u=f.attr("data-jpibfi-description");a=f.attr("data-jpibfi-url")}}a=a||s.pageUrl;if(s.descriptionOption==3)o=i.attr("title")||i.attr("alt");else if(s.descriptionOption==2)o=u||s.pageDescription;else if(s.descriptionOption==4)o=s.siteTitle;else if(s.descriptionOption==5)o=i.attr("data-jpibfi-description");o=o||u||s.pageTitle;var l="http://pinterest.com/pin/create/bookmarklet/?is_video="+encodeURIComponent("false")+"&url="+encodeURIComponent(a)+"&media="+encodeURIComponent(i.data("media")||i[0].src)+"&description="+encodeURIComponent(o);window.open(l,"Pinterest","width=632,height=253,status=0,toolbar=0,menubar=0,location=1,scrollbars=1");return false});return r}var s={pageUrl:document.URL,pageTitle:document.title,pageDescription:e('meta[name="description"]').attr("content")||"",siteTitle:jpibfi_options.site_title,imageSelector:jpibfi_options.image_selector,disabledClasses:jpibfi_options.disabled_classes,enabledClasses:jpibfi_options.enabled_classes,descriptionOption:jpibfi_options.description_option,usePostUrl:jpibfi_options.use_post_url=="1",minImageHeight:jpibfi_options.min_image_height,minImageWidth:jpibfi_options.min_image_width,mode:jpibfi_options.mode,buttonPosition:jpibfi_options.button_position};var o={height:parseInt(jpibfi_options.pin_image_height),width:parseInt(jpibfi_options.pin_image_width)};var u={top:parseInt(jpibfi_options.button_margin_top),right:parseInt(jpibfi_options.button_margin_right),bottom:parseInt(jpibfi_options.button_margin_bottom),left:parseInt(jpibfi_options.button_margin_left)};t="1"==jpibfi_options.debug;n(s);n(o);n(u);var a=e(".jpibfi").closest("div").addClass("jpibfi_container");n("Number of containers added: "+a.length);var f=i(s.disabledClasses);var l=i(s.enabledClasses)||"*";n("Image selector: "+s.imageSelector);n("Filter selector: "+l);n("Not selector: "+f);var c=0;e(s.imageSelector).not(f).filter(l).each(function(t){e(this).attr("data-jpibfi-indexer",t);c++});n("Images caught by selectors: "+c);if("static"==s.mode){n("Adding static mode delegates");e(document).delegate("div.pinit-overlay","hover",function(t){var n=t.type==="mouseenter";var r=e(this).attr("data-jpibfi-indexer");e('.pinit-button[data-jpibfi-indexer="'+r+'"]').toggle(n);e('img[data-jpibfi-indexer="'+r+'"]').toggleClass("pinit-hover",n)})}else if("dynamic"==s.mode){n("Adding dynamic mode delegates");e(document).delegate("a.pinit-button","mouseenter",function(){var t=e(this);clearTimeout(t.data("jpibfi-timeoutId"))});e(document).delegate("a.pinit-button","mouseleave",function(){var t=e(this);var n=setTimeout(function(){t.remove();e('img[data-jpibfi-indexer="'+t.attr("data-jpibfi-indexer")+'"]').removeClass("pinit-hover")},100);t.data("jpibfi-timeoutId",n)});e(document).delegate("img[data-jpibfi-indexer]","mouseenter",function(){var t=e(this);var n=t.attr("data-jpibfi-indexer");var r=e('a.pinit-button[data-jpibfi-indexer="'+n+'"]');if(r.length==0){var r=m(n);var i=t.offset();var a={width:t.get(0).clientWidth,height:t.get(0).clientHeight};switch(s.buttonPosition){case"0":i.left+=u.left;i.top+=u.top;break;case"1":i.top+=u.top;i.left=i.left+a.width-u.right-o.width;break;case"2":i.left+=u.left;i.top=i.top+a.height-u.bottom-o.height;break;case"3":i.left=i.left+a.width-u.right-o.width;i.top=i.top+a.height-u.bottom-o.height;break;case"4":i.left=Math.round(i.left+a.width/2-o.width/2);i.top=Math.round(i.top+a.height/2-o.height/2);break}t.after(r);r.show().offset({left:i.left,top:i.top})}else{clearTimeout(r.data("jpibfi-timeoutId"))}e('img[data-jpibfi-indexer="'+r.attr("data-jpibfi-indexer")+'"]').addClass("pinit-hover")});e(document).delegate("img[data-jpibfi-indexer]","mouseleave",function(){var t=e(this).attr("data-jpibfi-indexer");var n=e('a.pinit-button[data-jpibfi-indexer="'+t+'"]');var r=setTimeout(function(){n.remove();e('img[data-jpibfi-indexer="'+n.attr("data-jpibfi-indexer")+'"]').removeClass("pinit-hover")},100);n.data("jpibfi-timeoutId",r)})}e(window).load(h);e(window).resize(function(){p();h()})});})(jQuery)
languages/jpibfi-es_ES.mo ADDED
Binary file
languages/jpibfi-es_ES.pot ADDED
@@ -0,0 +1,499 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2013 jQuery Pin It Button For Images
2
+ # This file is distributed under the same license as the jQuery Pin It Button For Images package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: jQuery Pin It Button For Images 1.14\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/jquery-pin-it-button-for-"
7
+ "images\n"
8
+ "POT-Creation-Date: 2013-10-29 07:52:19+00:00\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2013-12-03 15:02+0100\n"
13
+ "Last-Translator: jelena kovacevic <jecajeca260@gmail.com>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "X-Generator: Poedit 1.5.5\n"
16
+
17
+ #: jquery-pin-it-button-for-images.php:230
18
+ #: jquery-pin-it-button-for-images.php:240
19
+ #: jquery-pin-it-button-for-images.php:455
20
+ msgid "Settings"
21
+ msgstr "Ajustes"
22
+
23
+ #: jquery-pin-it-button-for-images.php:259
24
+ msgid ""
25
+ "Disable \"Pin it\" button for this post (works only on single pages/posts)"
26
+ msgstr ""
27
+ "Desactivar el botón \"Fíjelo\" para este post (funciona sólo en páginas/"
28
+ "mensajes individuales)"
29
+
30
+ #: jquery-pin-it-button-for-images.php:468
31
+ msgid "jQuery Pin It Button For Images Options"
32
+ msgstr "Botón Fíjelo de jQuery para Opciones de Imágenes"
33
+
34
+ #: jquery-pin-it-button-for-images.php:477
35
+ msgid "Selection Settings"
36
+ msgstr "Ajustes de Selección"
37
+
38
+ #: jquery-pin-it-button-for-images.php:478
39
+ msgid "Visual Settings"
40
+ msgstr "Ajustes Visuales"
41
+
42
+ #: jquery-pin-it-button-for-images.php:479
43
+ #: jquery-pin-it-button-for-images.php:1193
44
+ msgid "Advanced Settings"
45
+ msgstr "Ajustes Avanzados"
46
+
47
+ #: jquery-pin-it-button-for-images.php:484
48
+ msgid ""
49
+ "If you would like to support development of the plugin, please %sdonate%s."
50
+ msgstr "Si usted desea apoyar el desarrollo del plugin, por favor %sdone%s."
51
+
52
+ #: jquery-pin-it-button-for-images.php:485
53
+ msgid ""
54
+ "If you experience issues with the plugin, check out the %ssupport forum%s."
55
+ msgstr ""
56
+ "Si experimenta problemas con el plugin, eche un vistazo al %sforo de soporte"
57
+ "%s."
58
+
59
+ #: jquery-pin-it-button-for-images.php:486
60
+ msgid "To help promote the plugin, %sleave a review%s."
61
+ msgstr "Para ayudar a promover el plugin, %sdeje un comentario%s."
62
+
63
+ #: jquery-pin-it-button-for-images.php:487
64
+ msgid ""
65
+ "If you have any suggestions for improvements, %suse the feedback form%s."
66
+ msgstr ""
67
+ "Si usted tiene alguna sugerencia de mejora, %sutilice el formulario de "
68
+ "comentarios%s."
69
+
70
+ #: jquery-pin-it-button-for-images.php:552
71
+ msgid "Selection"
72
+ msgstr "Selección"
73
+
74
+ #: jquery-pin-it-button-for-images.php:560
75
+ msgid "Image selector"
76
+ msgstr "Selector de imagen"
77
+
78
+ #: jquery-pin-it-button-for-images.php:565
79
+ msgid ""
80
+ "jQuery selector for all the images that should have the \"Pin it\" button. "
81
+ "Set the value to %s if you want the \"Pin it\" button to appear only on "
82
+ "images in content or %s to appear on all images on site (including sidebar, "
83
+ "header and footer). If you know a thing or two about jQuery, you might use "
84
+ "your own selector. %sClick here%s to read about jQuery selectors."
85
+ msgstr ""
86
+ "El selector jQuery para todas las imágenes que deben tener el botón \"Fíjelo"
87
+ "\". Establecer el valor a %s si usted quiere que el botón \"Fíjelo\" "
88
+ "aparezca solamente en las imágenes en el contenido o %s que aparezca en "
89
+ "todas las imágenes en el sitio (incluyendo sidebar, header y footer). Si "
90
+ "usted conoce una cosa o dos acerca de jQuery, usted puede usar su propio "
91
+ "selector. %sHaga clic aquí%s para leer acerca de los selectores de jQuery."
92
+
93
+ #: jquery-pin-it-button-for-images.php:576
94
+ #: jquery-pin-it-button-for-images.php:760
95
+ msgid "Disabled classes"
96
+ msgstr "Deshabilitar clases"
97
+
98
+ #: jquery-pin-it-button-for-images.php:581
99
+ msgid ""
100
+ "Pictures with these CSS classes won't show the \"Pin it\" button. Please "
101
+ "separate multiple classes with semicolons. Spaces are not accepted."
102
+ msgstr ""
103
+ "Las imágenes con estas clases CSS no mostrarán el botón \"Fíjelo\". Por "
104
+ "favor separe clases múltiples con puntos y comas. Los espacios no están "
105
+ "permitidos."
106
+
107
+ #: jquery-pin-it-button-for-images.php:587
108
+ #: jquery-pin-it-button-for-images.php:762
109
+ msgid "Enabled classes"
110
+ msgstr "Clases habilitadas"
111
+
112
+ #: jquery-pin-it-button-for-images.php:592
113
+ msgid ""
114
+ "Only pictures with these CSS classes will show the \"Pin it\" button. Please "
115
+ "separate multiple classes with semicolons. If this field is empty, images "
116
+ "with any (besides disabled ones) classes will show the Pin It button."
117
+ msgstr ""
118
+ "Solamente las imágenes con estas clases CSS se mostrarán en el botón \"Fíjelo"
119
+ "\". Por favor separe clases múltiples con puntos y comas. Si este campo está "
120
+ "vacío, las imágenes con cualquier clase (excepto las deshabilitadas) "
121
+ "mostrarán el botón Fíjelo."
122
+
123
+ #: jquery-pin-it-button-for-images.php:598
124
+ msgid "On which pages the \"Pin it\" button should be shown"
125
+ msgstr "En cuáles páginas el botón \"Fíjelo\" debería mostrarse"
126
+
127
+ #: jquery-pin-it-button-for-images.php:603
128
+ msgid "Check on which pages you want the Pinterest button to show up."
129
+ msgstr ""
130
+ "Chequee en cuáles páginas usted desea que el botón \"Fíjelo\" se muestre."
131
+
132
+ #: jquery-pin-it-button-for-images.php:609
133
+ msgid "Minimum resolution that should trigger the \"Pin it\" button to show up"
134
+ msgstr ""
135
+ "La resolución mínima que debería provocar que el botón \"Fíjelo\" se muestre"
136
+
137
+ #: jquery-pin-it-button-for-images.php:614
138
+ msgid ""
139
+ "If you'd like the \"Pin it\" button to not show up on small images (e.g. "
140
+ "social media icons), just set the appropriate values above. The default "
141
+ "values cause the \"Pin it\" button to show on every eligible image."
142
+ msgstr ""
143
+ "Si usted desea que el botón \"Fíjelo\" no se muestre en imágenes pequeñas (e."
144
+ "j. iconos de social media), solamente asigne los valores apropiados "
145
+ "anteriores. Los valores por defecto causan al botón \"Fíjelo\" que se "
146
+ "muestre en cualquier imagen elegible."
147
+
148
+ #: jquery-pin-it-button-for-images.php:628
149
+ msgid "Which images can be pinned"
150
+ msgstr "Cuáles imágenes pueden ser fijadas"
151
+
152
+ #: jquery-pin-it-button-for-images.php:649
153
+ #: jquery-pin-it-button-for-images.php:678
154
+ msgid "No classes added."
155
+ msgstr "No se añadieron clases."
156
+
157
+ #: jquery-pin-it-button-for-images.php:658
158
+ #: jquery-pin-it-button-for-images.php:687
159
+ msgid "Class name"
160
+ msgstr "Nombre de la clase"
161
+
162
+ #: jquery-pin-it-button-for-images.php:660
163
+ #: jquery-pin-it-button-for-images.php:689
164
+ msgid "Add to list"
165
+ msgstr "Adicionar a la lista"
166
+
167
+ #: jquery-pin-it-button-for-images.php:710
168
+ msgid "Home page"
169
+ msgstr "Página de Inicio"
170
+
171
+ #: jquery-pin-it-button-for-images.php:712
172
+ msgid "Pages"
173
+ msgstr "Páginas"
174
+
175
+ #: jquery-pin-it-button-for-images.php:714
176
+ msgid "Single posts"
177
+ msgstr "Post simples"
178
+
179
+ #: jquery-pin-it-button-for-images.php:716
180
+ msgid "Category and archive pages"
181
+ msgstr "Páginas de categorías y archivos"
182
+
183
+ #: jquery-pin-it-button-for-images.php:718
184
+ msgid "Blog pages"
185
+ msgstr "Páginas de blog"
186
+
187
+ #: jquery-pin-it-button-for-images.php:732
188
+ #: jquery-pin-it-button-for-images.php:1041
189
+ msgid "Height"
190
+ msgstr "Largo"
191
+
192
+ #: jquery-pin-it-button-for-images.php:739
193
+ #: jquery-pin-it-button-for-images.php:1048
194
+ msgid "Width"
195
+ msgstr "Ancho"
196
+
197
+ #: jquery-pin-it-button-for-images.php:767
198
+ msgid ""
199
+ "the given value doesn't meet the requirements. Please correct it and try "
200
+ "again."
201
+ msgstr ""
202
+ "los valores dados no cumplen los requerimientos. Por favor arréglelos y "
203
+ "pruebe nuevamente."
204
+
205
+ #: jquery-pin-it-button-for-images.php:777
206
+ msgid "Minimum image height"
207
+ msgstr "Largo mínimo de imagen"
208
+
209
+ #: jquery-pin-it-button-for-images.php:779
210
+ msgid "Minimum image width"
211
+ msgstr "Ancho mínimo de imagen"
212
+
213
+ #: jquery-pin-it-button-for-images.php:784
214
+ #: jquery-pin-it-button-for-images.php:1146
215
+ msgid "value must be a number greater or equal to %d."
216
+ msgstr "el valor debe ser un número mayor o igual a %d."
217
+
218
+ #: jquery-pin-it-button-for-images.php:850
219
+ msgid "Visual"
220
+ msgstr "Visual"
221
+
222
+ #: jquery-pin-it-button-for-images.php:858
223
+ msgid "Mode"
224
+ msgstr "Modo"
225
+
226
+ #: jquery-pin-it-button-for-images.php:863
227
+ msgid ""
228
+ "Static mode adds a layer on the top of the image that restricts image "
229
+ "download, but works on websites that protect images download. Dynamic mode "
230
+ "doesn't add that layer and allows image download. If you're experiencing "
231
+ "issues with static mode, try using dynamic mode."
232
+ msgstr ""
233
+ "El modo estático adiciona una capa en la cima de la imagen que restringe el "
234
+ "download de la imagen, pero funciona en sitios web que protegen el download "
235
+ "de las imágenes. El modo dinámico no adiciona esa capa y permite el download "
236
+ "de imágenes. Si usted está experimentando problemas con el modo estático, "
237
+ "trate de usar el dinámico."
238
+
239
+ #: jquery-pin-it-button-for-images.php:869
240
+ msgid "Description source"
241
+ msgstr "Origen de la descripción"
242
+
243
+ #: jquery-pin-it-button-for-images.php:874
244
+ msgid ""
245
+ "From where the Pinterest message should be taken. Please note that \"Image "
246
+ "description\" works properly only for images that were added to your Media "
247
+ "Library."
248
+ msgstr ""
249
+ "De dónde el mensaje Fíjelo debería ser tomado. Por favor note que "
250
+ "\"Descripción de Imagen\" funciona correctamente solamente para imágenes que "
251
+ "fueron adicionadas a su Librería de Media. "
252
+
253
+ #: jquery-pin-it-button-for-images.php:880
254
+ msgid "Linked page"
255
+ msgstr "Página enlazada"
256
+
257
+ #: jquery-pin-it-button-for-images.php:885
258
+ msgid ""
259
+ "When checked, the link on Pinterest will always point to the individual page "
260
+ "with the image and title of this individual page will be used if you've "
261
+ "selected Title as the description source, even when the image was pinned on "
262
+ "an archive page, category page or homepage. If false, the link will point to "
263
+ "the URL the user is currently on."
264
+ msgstr ""
265
+ "Cuando está chequeada, el enlace a Fíjelo aparecerá apuntando a la página "
266
+ "individual con la imagen y el título de esta página individual será usado si "
267
+ "usted ha seleccionado Título como el origen de descripción, aún cuando la "
268
+ "imagen fue fijada en una página archivada, una página de categoría o una "
269
+ "página de inicio. Si está en falso, el enlace apuntará a la URL en la que el "
270
+ "usuario está."
271
+
272
+ #: jquery-pin-it-button-for-images.php:891
273
+ msgid "Transparency value"
274
+ msgstr "Valor de transparencia"
275
+
276
+ #: jquery-pin-it-button-for-images.php:896
277
+ msgid "This setting sets the transparency of the image."
278
+ msgstr "Este ajuste asigna la transparencia de la imagen."
279
+
280
+ #: jquery-pin-it-button-for-images.php:902
281
+ msgid "Custom \"Pin It\" button"
282
+ msgstr "Botón \"Fíjelo\" personalizado."
283
+
284
+ #: jquery-pin-it-button-for-images.php:907
285
+ msgid ""
286
+ "Check the <b>Use custom image</b> checkbox, specify image's URL, height and "
287
+ "width to use your own Pinterest button design. You can just upload an image "
288
+ "using Wordpress media library if you wish."
289
+ msgstr ""
290
+ "Seleccione el checkbox <b>Usar imagen personalizada</b>, especifique la URL "
291
+ "de la imagen, el largo y el ancho para usar su propio diseño de botón "
292
+ "\"Fíjelo\". Usted puede subir la imagen usando la librería de media de "
293
+ "Wordpress si usted lo desea."
294
+
295
+ #: jquery-pin-it-button-for-images.php:913
296
+ msgid "\"Pin it\" button position"
297
+ msgstr "Posición del botón \"Fíjelo\"."
298
+
299
+ #: jquery-pin-it-button-for-images.php:918
300
+ msgid "Where the \"Pin it\" button should appear on the image."
301
+ msgstr "Cuándo el botón \"Fíjelo\" debería aparecer en la imagen."
302
+
303
+ #: jquery-pin-it-button-for-images.php:924
304
+ msgid "\"Pin it\" button margins"
305
+ msgstr "Márgenes del botón \"Fíjelo\""
306
+
307
+ #: jquery-pin-it-button-for-images.php:929
308
+ msgid ""
309
+ "Margins are used to adjust the position of the \"Pin it\" button, but not "
310
+ "all margins are used on all button positions. Here is an example. If you're "
311
+ "using the \"%s\" position, the button's position will be affected only by "
312
+ "top and left margins. Bottom and right margins affect \"%s\" position, etc. "
313
+ "The \"%s\" position does not use any margins at all."
314
+ msgstr ""
315
+ "Los márgenes son usados para ajustar la posición del botón \"Fíjelo\", pero "
316
+ "no todos los márgenes son usados para todas las posiciones de botones. Aquí "
317
+ "va un ejemplo. Si usted está usando la posición \"%s\", la posición del "
318
+ "botón será afectada solamente por los márgenes top y left. Los márgenes "
319
+ "bottom y right afectan la posición \"%s\", etc. La posición no utiliza "
320
+ "ningún margen. "
321
+
322
+ #: jquery-pin-it-button-for-images.php:930
323
+ #: jquery-pin-it-button-for-images.php:1071
324
+ msgid "Top left"
325
+ msgstr "Arriba a la izquierda"
326
+
327
+ #: jquery-pin-it-button-for-images.php:931
328
+ #: jquery-pin-it-button-for-images.php:1074
329
+ msgid "Bottom right"
330
+ msgstr "Abajo a la derecha"
331
+
332
+ #: jquery-pin-it-button-for-images.php:932
333
+ #: jquery-pin-it-button-for-images.php:1075
334
+ msgid "Middle"
335
+ msgstr "Centro"
336
+
337
+ #: jquery-pin-it-button-for-images.php:939
338
+ msgid "Retina friendly"
339
+ msgstr "Amigable a la retina"
340
+
341
+ #: jquery-pin-it-button-for-images.php:944
342
+ msgid ""
343
+ "Please note that checking this option will result in rendering the \"Pin it"
344
+ "\" button half of its normal size (if you use a 80x60 image, the button will "
345
+ "be 40x30). When uploading a custom \"Pin it\" button (the default one is too "
346
+ "small), please make sure both width and height are even numbers (i.e. "
347
+ "divisible by two) when using this option."
348
+ msgstr ""
349
+ "Por favor note que seleccionando esta opción resultará en renderizar el "
350
+ "botón \"Fíjelo\" a la mitad de su tamaño normal (si usted utiliza una imagen "
351
+ "de 80x60, el botón será de 40x30). Cuando se sube un botón \"Fíjelo\" "
352
+ "personalizado (el de por defecto es muy pequeño), por favor asegúrese que "
353
+ "ambos el ancho y el largo son números pares (e.j divisible por dos) cuando "
354
+ "se usa esta opción."
355
+
356
+ #: jquery-pin-it-button-for-images.php:959
357
+ msgid "How it should look like"
358
+ msgstr "Cómo debería lucir"
359
+
360
+ #: jquery-pin-it-button-for-images.php:969
361
+ msgid "Static"
362
+ msgstr "Estático"
363
+
364
+ #: jquery-pin-it-button-for-images.php:970
365
+ msgid "Dynamic"
366
+ msgstr "Dinámico"
367
+
368
+ #: jquery-pin-it-button-for-images.php:985
369
+ msgid "Page title"
370
+ msgstr "Título de la página"
371
+
372
+ #: jquery-pin-it-button-for-images.php:986
373
+ msgid "Page description"
374
+ msgstr "Descripción de la página"
375
+
376
+ #: jquery-pin-it-button-for-images.php:987
377
+ msgid "Picture title or (if title not available) alt attribute"
378
+ msgstr ""
379
+ "Título de la imagen o (si el título no está disponible) del atributo alt"
380
+
381
+ #: jquery-pin-it-button-for-images.php:988
382
+ msgid "Site title (Settings->General)"
383
+ msgstr "Título del sitio (Ajustes->General)"
384
+
385
+ #: jquery-pin-it-button-for-images.php:989
386
+ msgid "Image description"
387
+ msgstr "Descripción de la imagen"
388
+
389
+ #: jquery-pin-it-button-for-images.php:1002
390
+ msgid "Always link to individual post page"
391
+ msgstr "Siempre enlazar a la página del post individual"
392
+
393
+ #: jquery-pin-it-button-for-images.php:1012
394
+ msgid "Choose transparency (between %.02f and %.02f)"
395
+ msgstr "Escoger transparencia (entre %.02f and %.02f)"
396
+
397
+ #: jquery-pin-it-button-for-images.php:1030
398
+ msgid "Use custom image"
399
+ msgstr "Usar imagen personalizada"
400
+
401
+ #: jquery-pin-it-button-for-images.php:1033
402
+ msgid "Upload an image using media library"
403
+ msgstr "Subir una imagen usando librería de media"
404
+
405
+ #: jquery-pin-it-button-for-images.php:1036
406
+ msgid "URL address of the image"
407
+ msgstr "Dirección URL de la imagen"
408
+
409
+ #: jquery-pin-it-button-for-images.php:1055
410
+ msgid "Custom Pin It button preview"
411
+ msgstr "Vista previa del botón Fíjelo personalizado"
412
+
413
+ #: jquery-pin-it-button-for-images.php:1059
414
+ msgid "Refresh preview"
415
+ msgstr "Vista previa de refrescado"
416
+
417
+ #: jquery-pin-it-button-for-images.php:1072
418
+ msgid "Top right"
419
+ msgstr "Arriba a la derecha"
420
+
421
+ #: jquery-pin-it-button-for-images.php:1073
422
+ msgid "Bottom left"
423
+ msgstr "Abajo a la izquierda"
424
+
425
+ #: jquery-pin-it-button-for-images.php:1095
426
+ msgid "Top"
427
+ msgstr "Arriba"
428
+
429
+ #: jquery-pin-it-button-for-images.php:1097
430
+ msgid "Bottom"
431
+ msgstr "Abajo"
432
+
433
+ #: jquery-pin-it-button-for-images.php:1099
434
+ msgid "Left"
435
+ msgstr "Izquierda"
436
+
437
+ #: jquery-pin-it-button-for-images.php:1101
438
+ msgid "Right"
439
+ msgstr "Derecha"
440
+
441
+ #: jquery-pin-it-button-for-images.php:1114
442
+ msgid "Optimize for high pixel density displays"
443
+ msgstr "Optimizar para mostrados de densidad de pixeles altos"
444
+
445
+ #: jquery-pin-it-button-for-images.php:1130
446
+ msgid "Transparency value must be a number between %.02d and %.02f."
447
+ msgstr "El valor de transparencia debe ser un número entre %.02d y %.02f."
448
+
449
+ #: jquery-pin-it-button-for-images.php:1138
450
+ msgid "Custom image height"
451
+ msgstr "Largo personalizado de la imagen "
452
+
453
+ #: jquery-pin-it-button-for-images.php:1140
454
+ msgid "Custom image width"
455
+ msgstr "Ancho personalizado de la imagen "
456
+
457
+ #: jquery-pin-it-button-for-images.php:1201
458
+ msgid "Debug"
459
+ msgstr "Debuguear"
460
+
461
+ #: jquery-pin-it-button-for-images.php:1206
462
+ msgid ""
463
+ "Use debug mode only if you are experiencing some issues with the plugin and "
464
+ "you are reporting them to the developer of the plugin"
465
+ msgstr ""
466
+ "Usar modo debug solamente si usted está experimentando algunos problemas con "
467
+ "el plugin y esta reportándolos al desarrollador del plugin"
468
+
469
+ #: jquery-pin-it-button-for-images.php:1219
470
+ msgid "Advanced settings"
471
+ msgstr "Ajustes avanzados"
472
+
473
+ #: jquery-pin-it-button-for-images.php:1231
474
+ msgid "Enable debug mode"
475
+ msgstr "Habilitar modo debug"
476
+
477
+ #. Plugin Name of the plugin/theme
478
+ msgid "jQuery Pin It Button For Images"
479
+ msgstr "Botón \"Fíjelo\" de jQuery Para Imágenes"
480
+
481
+ #. Plugin URI of the plugin/theme
482
+ msgid "http://mrsztuczkens.me/jpibfi/"
483
+ msgstr "http://mrsztuczkens.me/jpibfi/"
484
+
485
+ #. Description of the plugin/theme
486
+ msgid ""
487
+ "Highlights images on hover and adds a \"Pin It\" button over them for easy "
488
+ "pinning."
489
+ msgstr ""
490
+ "Resalta imágenes en hover y adiciona un botón \"Fíjelo\" sobre ellas para el "
491
+ "fijado fácil."
492
+
493
+ #. Author of the plugin/theme
494
+ msgid "Marcin Skrzypiec"
495
+ msgstr "Marcin Skrzypiec"
496
+
497
+ #. Author URI of the plugin/theme
498
+ msgid "http://mrsztuczkens.me/"
499
+ msgstr "http://mrsztuczkens.me/"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bit.ly/Uw2mEP
4
  Tags: pinterest, pin it, button, image, images, pinit, social media, hover, click, photo, photos
5
  Requires at least: 3.3.0
6
  Tested up to: 3.6.1
7
- Stable tag: 1.16
8
  License: GPLv2 or later
9
 
10
  Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
@@ -23,7 +23,11 @@ The plugin allows you to:
23
  * use your own Pinterest button design
24
 
25
  Once you activate the plugin, it's ready to go with the typical settings - button appears on all images within the body of your posts/pages that aren't marked with "nopin" or "wp-smiley" classes.
26
-
 
 
 
 
27
  **Please report any bugs (or feature requests) in the plugin's support forum.**
28
 
29
  Check out the new features in the Changelog.
@@ -36,6 +40,7 @@ Please consider donating any spare change to help me work on this plugin more. D
36
 
37
  (This plugin is not related to or endorsed by Pinterest or its affiliates)
38
 
 
39
  == Installation ==
40
 
41
  1. Upload the folder to the `/wp-content/plugins/` directory
@@ -71,6 +76,11 @@ Please report them in the plugin's support forum on Wordpress.org.
71
 
72
  == Changelog ==
73
 
 
 
 
 
 
74
  = 1.16 =
75
  * Released 2013-11-21
76
  * Minor bug fix
@@ -171,7 +181,10 @@ Please report them in the plugin's support forum on Wordpress.org.
171
 
172
  == Upgrade Notice ==
173
 
174
- = 1.15 =
 
 
 
175
  Minor bug fix.
176
 
177
  = 1.15 =
4
  Tags: pinterest, pin it, button, image, images, pinit, social media, hover, click, photo, photos
5
  Requires at least: 3.3.0
6
  Tested up to: 3.6.1
7
+ Stable tag: 1.17
8
  License: GPLv2 or later
9
 
10
  Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
23
  * use your own Pinterest button design
24
 
25
  Once you activate the plugin, it's ready to go with the typical settings - button appears on all images within the body of your posts/pages that aren't marked with "nopin" or "wp-smiley" classes.
26
+
27
+ **Translators**
28
+
29
+ - Spanish (es_ES) - Andrew Kurtis [WebHostingHub](http://www.webhostinghub.com/)
30
+
31
  **Please report any bugs (or feature requests) in the plugin's support forum.**
32
 
33
  Check out the new features in the Changelog.
40
 
41
  (This plugin is not related to or endorsed by Pinterest or its affiliates)
42
 
43
+
44
  == Installation ==
45
 
46
  1. Upload the folder to the `/wp-content/plugins/` directory
76
 
77
  == Changelog ==
78
 
79
+ = 1.17 =
80
+ * Released 2013-12-10
81
+ * Minor bug fix
82
+ * Added Spanish translation
83
+
84
  = 1.16 =
85
  * Released 2013-11-21
86
  * Minor bug fix
181
 
182
  == Upgrade Notice ==
183
 
184
+ = 1.17 =
185
+ Minor bug fix and Spanish translation added.
186
+
187
+ = 1.16 =
188
  Minor bug fix.
189
 
190
  = 1.15 =