Version Description
- Released 2013-10-17
- Minor bug with linking images to posts fixed
- Plugin now supports Retina displays
Download this release
Release Info
Developer | mrsztuczkens |
Plugin | jQuery Pin It Button for Images |
Version | 1.14 |
Comparing to | |
See all releases |
Code changes from version 1.13 to 1.14
- jquery-pin-it-button-for-images.php +35 -5
- js/script.js +1 -1
- js/script.min.js +1 -1
- languages/jpibfi.pot +132 -101
- readme.txt +9 -1
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.
|
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.
|
22 |
define( "JPIBFI_METADATA", "jpibfi_meta" );
|
23 |
define( "JPIBFI_SELECTION_OPTIONS", "jpibfi_selection_options" );
|
24 |
define( "JPIBFI_VISUAL_OPTIONS", "jpibfi_visual_options" );
|
@@ -127,7 +127,13 @@ function jpibfi_print_header_style_action() {
|
|
127 |
|
128 |
$width = $use_custom_image ? $options['custom_image_width'] : JPIBFI_IMAGE_WIDTH;
|
129 |
$height = $use_custom_image ? $options['custom_image_height'] : JPIBFI_IMAGE_HEIGHT;
|
130 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
?>
|
133 |
<!--[if lt IE 9]>
|
@@ -143,6 +149,7 @@ function jpibfi_print_header_style_action() {
|
|
143 |
width: <?php echo $width; ?>px !important;
|
144 |
height: <?php echo $height; ?>px !important;
|
145 |
background: transparent url('<?php echo $url; ?>') no-repeat 0 0 !important;
|
|
|
146 |
}
|
147 |
|
148 |
a.pinit-button.pinit-top-left {
|
@@ -821,7 +828,8 @@ function jpibfi_default_visual_options() {
|
|
821 |
'button_margin_top' => '20',
|
822 |
'button_margin_right' => '20',
|
823 |
'button_margin_bottom'=> '20',
|
824 |
-
'button_margin_left' => '20'
|
|
|
825 |
);
|
826 |
|
827 |
return $defaults;
|
@@ -922,6 +930,17 @@ function jpibfi_initialize_visual_options() {
|
|
922 |
)
|
923 |
);
|
924 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
register_setting(
|
926 |
'jpibfi_visual_options',
|
927 |
'jpibfi_visual_options',
|
@@ -974,7 +993,7 @@ function jpibfi_use_post_url_callback( $args ) {
|
|
974 |
$options = jpibfi_get_visual_options();
|
975 |
$use_post_url = jpibfi_exists_and_equal_to( $options, 'use_post_url', '1' );
|
976 |
|
977 |
-
echo '<input type="checkbox" id="use_post_url" name="jpibfi_visual_options[use_post_url]" value="1" ' . checked(
|
978 |
echo '<label for="use_post_url">' . __( 'Always link to individual post page', 'jpibfi' ) . '</label>';
|
979 |
|
980 |
echo jpibfi_create_description( $args[0] );
|
@@ -1081,6 +1100,17 @@ function jpibfi_pin_it_button_margins_callback( $args ) {
|
|
1081 |
echo jpibfi_create_description( $args[0] );
|
1082 |
}
|
1083 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1084 |
function jpibfi_sanitize_visual_options( $input ) {
|
1085 |
|
1086 |
foreach( $input as $key => $value ) {
|
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.14
|
8 |
Author URI: http://mrsztuczkens.me/
|
9 |
*/
|
10 |
|
18 |
* CONSTANTS
|
19 |
*
|
20 |
*/
|
21 |
+
define( "JPIBFI_VERSION", "1.14" );
|
22 |
define( "JPIBFI_METADATA", "jpibfi_meta" );
|
23 |
define( "JPIBFI_SELECTION_OPTIONS", "jpibfi_selection_options" );
|
24 |
define( "JPIBFI_VISUAL_OPTIONS", "jpibfi_visual_options" );
|
127 |
|
128 |
$width = $use_custom_image ? $options['custom_image_width'] : JPIBFI_IMAGE_WIDTH;
|
129 |
$height = $use_custom_image ? $options['custom_image_height'] : JPIBFI_IMAGE_HEIGHT;
|
130 |
+
|
131 |
+
if ( isset( $options[ 'retina_friendly' ] ) && $options[ 'retina_friendly' ] == '1' ){
|
132 |
+
$width = floor( $width / 2 );
|
133 |
+
$height = floor ( $height / 2 );
|
134 |
+
}
|
135 |
+
|
136 |
+
$url = $use_custom_image ? $options['custom_image_url'] : JPIBFI_IMAGE_URL;
|
137 |
|
138 |
?>
|
139 |
<!--[if lt IE 9]>
|
149 |
width: <?php echo $width; ?>px !important;
|
150 |
height: <?php echo $height; ?>px !important;
|
151 |
background: transparent url('<?php echo $url; ?>') no-repeat 0 0 !important;
|
152 |
+
background-size: <?php echo $width; ?>px <?php echo $height; ?>px !important
|
153 |
}
|
154 |
|
155 |
a.pinit-button.pinit-top-left {
|
828 |
'button_margin_top' => '20',
|
829 |
'button_margin_right' => '20',
|
830 |
'button_margin_bottom'=> '20',
|
831 |
+
'button_margin_left' => '20',
|
832 |
+
'retina_friendly' => '0'
|
833 |
);
|
834 |
|
835 |
return $defaults;
|
930 |
)
|
931 |
);
|
932 |
|
933 |
+
add_settings_field(
|
934 |
+
'retina_friendly',
|
935 |
+
__( 'Retina friendly', 'jpibfi' ),
|
936 |
+
'jpibfi_retina_friendly_callback',
|
937 |
+
'jpibfi_visual_options',
|
938 |
+
'visual_options_section',
|
939 |
+
array(
|
940 |
+
__( 'Please note that checking this option will result in rendering the "Pin it" button half of its normal size (if you use a 80x60 image, the button will be 40x30). When uploading a custom "Pin it" button (the default one is too small), please make sure both width and height are even numbers (i.e. divisible by two) when using this option.', 'jpibfi' ),
|
941 |
+
)
|
942 |
+
);
|
943 |
+
|
944 |
register_setting(
|
945 |
'jpibfi_visual_options',
|
946 |
'jpibfi_visual_options',
|
993 |
$options = jpibfi_get_visual_options();
|
994 |
$use_post_url = jpibfi_exists_and_equal_to( $options, 'use_post_url', '1' );
|
995 |
|
996 |
+
echo '<input type="checkbox" id="use_post_url" name="jpibfi_visual_options[use_post_url]" value="1" ' . checked( true, $use_post_url, false ) . '>';
|
997 |
echo '<label for="use_post_url">' . __( 'Always link to individual post page', 'jpibfi' ) . '</label>';
|
998 |
|
999 |
echo jpibfi_create_description( $args[0] );
|
1100 |
echo jpibfi_create_description( $args[0] );
|
1101 |
}
|
1102 |
|
1103 |
+
function jpibfi_retina_friendly_callback( $args ) {
|
1104 |
+
|
1105 |
+
$options = jpibfi_get_visual_options();
|
1106 |
+
$retina_friendly = jpibfi_exists_and_equal_to( $options, 'retina_friendly', '1' );
|
1107 |
+
|
1108 |
+
echo '<input type="checkbox" id="retina_friendly" name="jpibfi_visual_options[retina_friendly]" value="1" ' . checked( true, $retina_friendly, false ) . '>';
|
1109 |
+
echo '<label for="retina_friendly">' . __( 'Optimize for high pixel density displays', 'jpibfi' ) . '</label>';
|
1110 |
+
|
1111 |
+
echo jpibfi_create_description( $args[0] );
|
1112 |
+
}
|
1113 |
+
|
1114 |
function jpibfi_sanitize_visual_options( $input ) {
|
1115 |
|
1116 |
foreach( $input as $key => $value ) {
|
js/script.js
CHANGED
@@ -237,7 +237,7 @@
|
|
237 |
|
238 |
//if usePostUrl feature is active, we need to get the data
|
239 |
if ( settings.usePostUrl ) {
|
240 |
-
var $inputWithData = $image.closest("div.jpibfi_container").
|
241 |
|
242 |
if ( $inputWithData.length ) {
|
243 |
descriptionForUrl = $inputWithData.attr("data-jpibfi-description")
|
237 |
|
238 |
//if usePostUrl feature is active, we need to get the data
|
239 |
if ( settings.usePostUrl ) {
|
240 |
+
var $inputWithData = $image.closest("div.jpibfi_container").find("input.jpibfi").first();
|
241 |
|
242 |
if ( $inputWithData.length ) {
|
243 |
descriptionForUrl = $inputWithData.attr("data-jpibfi-description")
|
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").
|
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;o=o||u||s.pageTitle;var l="http://pinterest.com/pin/create/bookmarklet/?is_video="+encodeURI("false")+"&url="+encodeURI(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)
|
languages/jpibfi.pot
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
# Copyright (C) 2013
|
2 |
-
# This file is distributed under the same license as the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/tag
|
7 |
-
"POT-Creation-Date: 2013-10-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,340 +12,371 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: jquery-pin-it-button-for-images.php:
|
16 |
-
#: jquery-pin-it-button-for-images.php:
|
17 |
-
#: jquery-pin-it-button-for-images.php:
|
18 |
msgid "Settings"
|
19 |
msgstr ""
|
20 |
|
21 |
-
#: jquery-pin-it-button-for-images.php:
|
22 |
msgid "Disable \"Pin it\" button for this post (works only on single pages/posts)"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: jquery-pin-it-button-for-images.php:
|
26 |
msgid "jQuery Pin It Button For Images Options"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: jquery-pin-it-button-for-images.php:
|
30 |
msgid "Selection Settings"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: jquery-pin-it-button-for-images.php:
|
34 |
msgid "Visual Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: jquery-pin-it-button-for-images.php:
|
38 |
-
#: jquery-pin-it-button-for-images.php:
|
39 |
msgid "Advanced Settings"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: jquery-pin-it-button-for-images.php:
|
43 |
msgid "If you would like to support development of the plugin, please %sdonate%s."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: jquery-pin-it-button-for-images.php:
|
47 |
msgid "If you experience issues with the plugin, check out the %ssupport forum%s."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: jquery-pin-it-button-for-images.php:
|
51 |
msgid "To help promote the plugin, %sleave a review%s."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: jquery-pin-it-button-for-images.php:
|
55 |
msgid "If you have any suggestions for improvements, %suse the feedback form%s."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: jquery-pin-it-button-for-images.php:
|
59 |
msgid "Selection"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: jquery-pin-it-button-for-images.php:
|
63 |
msgid "Image selector"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: jquery-pin-it-button-for-images.php:
|
67 |
msgid "jQuery selector for all the images that should have the \"Pin it\" button. Set the value to %s if you want the \"Pin it\" button to appear only on images in content or %s to appear on all images on site (including sidebar, header and footer). If you know a thing or two about jQuery, you might use your own selector. %sClick here%s to read about jQuery selectors."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: jquery-pin-it-button-for-images.php:
|
71 |
-
#: jquery-pin-it-button-for-images.php:
|
72 |
msgid "Disabled classes"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: jquery-pin-it-button-for-images.php:
|
76 |
msgid "Pictures with these CSS classes won't show the \"Pin it\" button. Please separate multiple classes with semicolons. Spaces are not accepted."
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: jquery-pin-it-button-for-images.php:
|
80 |
-
#: jquery-pin-it-button-for-images.php:
|
81 |
msgid "Enabled classes"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: jquery-pin-it-button-for-images.php:
|
85 |
msgid "Only pictures with these CSS classes will show the \"Pin it\" button. Please separate multiple classes with semicolons. If this field is empty, images with any (besides disabled ones) classes will show the Pin It button."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: jquery-pin-it-button-for-images.php:
|
89 |
msgid "On which pages the \"Pin it\" button should be shown"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: jquery-pin-it-button-for-images.php:
|
93 |
msgid "Check on which pages you want the Pinterest button to show up."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: jquery-pin-it-button-for-images.php:
|
97 |
msgid "Minimum resolution that should trigger the \"Pin it\" button to show up"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: jquery-pin-it-button-for-images.php:
|
101 |
msgid "If you'd like the \"Pin it\" button to not show up on small images (e.g. social media icons), just set the appropriate values above. The default values cause the \"Pin it\" button to show on every eligible image."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: jquery-pin-it-button-for-images.php:
|
105 |
msgid "Which images can be pinned"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: jquery-pin-it-button-for-images.php:
|
109 |
-
#: jquery-pin-it-button-for-images.php:
|
110 |
msgid "No classes added."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: jquery-pin-it-button-for-images.php:
|
114 |
-
#: jquery-pin-it-button-for-images.php:
|
115 |
msgid "Class name"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: jquery-pin-it-button-for-images.php:
|
119 |
-
#: jquery-pin-it-button-for-images.php:
|
120 |
msgid "Add to list"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: jquery-pin-it-button-for-images.php:
|
124 |
msgid "Home page"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: jquery-pin-it-button-for-images.php:
|
128 |
msgid "Pages"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: jquery-pin-it-button-for-images.php:
|
132 |
msgid "Single posts"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: jquery-pin-it-button-for-images.php:
|
136 |
msgid "Category and archive pages"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: jquery-pin-it-button-for-images.php:
|
140 |
msgid "Blog pages"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: jquery-pin-it-button-for-images.php:
|
144 |
-
#: jquery-pin-it-button-for-images.php:
|
145 |
msgid "Height"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: jquery-pin-it-button-for-images.php:
|
149 |
-
#: jquery-pin-it-button-for-images.php:
|
150 |
msgid "Width"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: jquery-pin-it-button-for-images.php:
|
154 |
msgid "the given value doesn't meet the requirements. Please correct it and try again."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: jquery-pin-it-button-for-images.php:
|
158 |
msgid "Minimum image height"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: jquery-pin-it-button-for-images.php:
|
162 |
msgid "Minimum image width"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: jquery-pin-it-button-for-images.php:
|
166 |
-
#: jquery-pin-it-button-for-images.php:
|
167 |
msgid "value must be a number greater or equal to %d."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: jquery-pin-it-button-for-images.php:
|
171 |
msgid "Visual"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: jquery-pin-it-button-for-images.php:
|
175 |
msgid "Mode"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: jquery-pin-it-button-for-images.php:
|
179 |
msgid "Static mode adds a layer on the top of the image that restricts image download, but works on websites that protect images download. Dynamic mode doesn't add that layer and allows image download. If you're experiencing issues with static mode, try using dynamic mode."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: jquery-pin-it-button-for-images.php:
|
183 |
msgid "Description source"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: jquery-pin-it-button-for-images.php:
|
187 |
msgid "From where the Pinterest message should be taken."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: jquery-pin-it-button-for-images.php:
|
191 |
msgid "Linked page"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: jquery-pin-it-button-for-images.php:
|
195 |
msgid "When checked, the link on Pinterest will always point to the individual page with the image and title of this individual page will be used if you've selected Title as the description source, even when the image was pinned on an archive page, category page or homepage. If false, the link will point to the URL the user is currently on."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: jquery-pin-it-button-for-images.php:
|
199 |
msgid "Transparency value"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: jquery-pin-it-button-for-images.php:
|
203 |
msgid "This setting sets the transparency of the image."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: jquery-pin-it-button-for-images.php:
|
207 |
msgid "Custom \"Pin It\" button"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: jquery-pin-it-button-for-images.php:
|
211 |
msgid "Check the <b>Use custom image</b> checkbox, specify image's URL, height and width to use your own Pinterest button design. You can just upload an image using Wordpress media library if you wish."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: jquery-pin-it-button-for-images.php:
|
215 |
msgid "\"Pin it\" button position"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: jquery-pin-it-button-for-images.php:
|
219 |
msgid "Where the \"Pin it\" button should appear on the image."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: jquery-pin-it-button-for-images.php:
|
223 |
msgid "\"Pin it\" button margins"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: jquery-pin-it-button-for-images.php:
|
227 |
msgid "Margins are used to adjust the position of the \"Pin it\" button, but not all margins are used on all button positions. Here is an example. If you're using the \"%s\" position, the button's position will be affected only by top and left margins. Bottom and right margins affect \"%s\" position, etc. The \"%s\" position does not use any margins at all."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: jquery-pin-it-button-for-images.php:
|
231 |
-
#: jquery-pin-it-button-for-images.php:
|
232 |
msgid "Top left"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: jquery-pin-it-button-for-images.php:
|
236 |
-
#: jquery-pin-it-button-for-images.php:
|
237 |
msgid "Bottom right"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: jquery-pin-it-button-for-images.php:
|
241 |
-
#: jquery-pin-it-button-for-images.php:
|
242 |
msgid "Middle"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: jquery-pin-it-button-for-images.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
msgid "How it should look like"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: jquery-pin-it-button-for-images.php:
|
250 |
msgid "Static"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: jquery-pin-it-button-for-images.php:
|
254 |
msgid "Dynamic"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: jquery-pin-it-button-for-images.php:
|
258 |
msgid "Page title"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: jquery-pin-it-button-for-images.php:
|
262 |
msgid "Page description"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: jquery-pin-it-button-for-images.php:
|
266 |
msgid "Picture title or (if title not available) alt attribute"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: jquery-pin-it-button-for-images.php:
|
270 |
msgid "Site title (Settings->General)"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: jquery-pin-it-button-for-images.php:
|
274 |
msgid "Always link to individual post page"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: jquery-pin-it-button-for-images.php:
|
278 |
msgid "Choose transparency (between %.02f and %.02f)"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: jquery-pin-it-button-for-images.php:
|
282 |
msgid "Use custom image"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: jquery-pin-it-button-for-images.php:
|
286 |
msgid "Upload an image using media library"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: jquery-pin-it-button-for-images.php:
|
290 |
msgid "URL address of the image"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: jquery-pin-it-button-for-images.php:
|
294 |
msgid "Custom Pin It button preview"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: jquery-pin-it-button-for-images.php:
|
298 |
msgid "Refresh preview"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: jquery-pin-it-button-for-images.php:
|
302 |
msgid "Top right"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: jquery-pin-it-button-for-images.php:
|
306 |
msgid "Bottom left"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: jquery-pin-it-button-for-images.php:
|
310 |
msgid "Top"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: jquery-pin-it-button-for-images.php:
|
314 |
msgid "Bottom"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: jquery-pin-it-button-for-images.php:
|
318 |
msgid "Left"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: jquery-pin-it-button-for-images.php:
|
322 |
msgid "Right"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: jquery-pin-it-button-for-images.php:
|
|
|
|
|
|
|
|
|
326 |
msgid "Transparency value must be a number between %.02d and %.02f."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: jquery-pin-it-button-for-images.php:
|
330 |
msgid "Custom image height"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: jquery-pin-it-button-for-images.php:
|
334 |
msgid "Custom image width"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: jquery-pin-it-button-for-images.php:
|
338 |
msgid "Debug"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: jquery-pin-it-button-for-images.php:
|
342 |
msgid "Use debug mode only if you are experiencing some issues with the plugin and you are reporting them to the developer of the plugin"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: jquery-pin-it-button-for-images.php:
|
346 |
msgid "Advanced settings"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: jquery-pin-it-button-for-images.php:
|
350 |
msgid "Enable debug mode"
|
351 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-images\n"
|
7 |
+
"POT-Creation-Date: 2013-10-17 11:14:35+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: jquery-pin-it-button-for-images.php:226
|
16 |
+
#: jquery-pin-it-button-for-images.php:236
|
17 |
+
#: jquery-pin-it-button-for-images.php:451
|
18 |
msgid "Settings"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: jquery-pin-it-button-for-images.php:255
|
22 |
msgid "Disable \"Pin it\" button for this post (works only on single pages/posts)"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: jquery-pin-it-button-for-images.php:464
|
26 |
msgid "jQuery Pin It Button For Images Options"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: jquery-pin-it-button-for-images.php:473
|
30 |
msgid "Selection Settings"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: jquery-pin-it-button-for-images.php:474
|
34 |
msgid "Visual Settings"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: jquery-pin-it-button-for-images.php:475
|
38 |
+
#: jquery-pin-it-button-for-images.php:1188
|
39 |
msgid "Advanced Settings"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: jquery-pin-it-button-for-images.php:480
|
43 |
msgid "If you would like to support development of the plugin, please %sdonate%s."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: jquery-pin-it-button-for-images.php:481
|
47 |
msgid "If you experience issues with the plugin, check out the %ssupport forum%s."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: jquery-pin-it-button-for-images.php:482
|
51 |
msgid "To help promote the plugin, %sleave a review%s."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: jquery-pin-it-button-for-images.php:483
|
55 |
msgid "If you have any suggestions for improvements, %suse the feedback form%s."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: jquery-pin-it-button-for-images.php:548
|
59 |
msgid "Selection"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: jquery-pin-it-button-for-images.php:556
|
63 |
msgid "Image selector"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: jquery-pin-it-button-for-images.php:561
|
67 |
msgid "jQuery selector for all the images that should have the \"Pin it\" button. Set the value to %s if you want the \"Pin it\" button to appear only on images in content or %s to appear on all images on site (including sidebar, header and footer). If you know a thing or two about jQuery, you might use your own selector. %sClick here%s to read about jQuery selectors."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: jquery-pin-it-button-for-images.php:572
|
71 |
+
#: jquery-pin-it-button-for-images.php:756
|
72 |
msgid "Disabled classes"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: jquery-pin-it-button-for-images.php:577
|
76 |
msgid "Pictures with these CSS classes won't show the \"Pin it\" button. Please separate multiple classes with semicolons. Spaces are not accepted."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: jquery-pin-it-button-for-images.php:583
|
80 |
+
#: jquery-pin-it-button-for-images.php:758
|
81 |
msgid "Enabled classes"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: jquery-pin-it-button-for-images.php:588
|
85 |
msgid "Only pictures with these CSS classes will show the \"Pin it\" button. Please separate multiple classes with semicolons. If this field is empty, images with any (besides disabled ones) classes will show the Pin It button."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: jquery-pin-it-button-for-images.php:594
|
89 |
msgid "On which pages the \"Pin it\" button should be shown"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: jquery-pin-it-button-for-images.php:599
|
93 |
msgid "Check on which pages you want the Pinterest button to show up."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: jquery-pin-it-button-for-images.php:605
|
97 |
msgid "Minimum resolution that should trigger the \"Pin it\" button to show up"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: jquery-pin-it-button-for-images.php:610
|
101 |
msgid "If you'd like the \"Pin it\" button to not show up on small images (e.g. social media icons), just set the appropriate values above. The default values cause the \"Pin it\" button to show on every eligible image."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: jquery-pin-it-button-for-images.php:624
|
105 |
msgid "Which images can be pinned"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: jquery-pin-it-button-for-images.php:645
|
109 |
+
#: jquery-pin-it-button-for-images.php:674
|
110 |
msgid "No classes added."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: jquery-pin-it-button-for-images.php:654
|
114 |
+
#: jquery-pin-it-button-for-images.php:683
|
115 |
msgid "Class name"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: jquery-pin-it-button-for-images.php:656
|
119 |
+
#: jquery-pin-it-button-for-images.php:685
|
120 |
msgid "Add to list"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: jquery-pin-it-button-for-images.php:706
|
124 |
msgid "Home page"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: jquery-pin-it-button-for-images.php:708
|
128 |
msgid "Pages"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: jquery-pin-it-button-for-images.php:710
|
132 |
msgid "Single posts"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: jquery-pin-it-button-for-images.php:712
|
136 |
msgid "Category and archive pages"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: jquery-pin-it-button-for-images.php:714
|
140 |
msgid "Blog pages"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: jquery-pin-it-button-for-images.php:728
|
144 |
+
#: jquery-pin-it-button-for-images.php:1036
|
145 |
msgid "Height"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: jquery-pin-it-button-for-images.php:735
|
149 |
+
#: jquery-pin-it-button-for-images.php:1043
|
150 |
msgid "Width"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: jquery-pin-it-button-for-images.php:763
|
154 |
msgid "the given value doesn't meet the requirements. Please correct it and try again."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: jquery-pin-it-button-for-images.php:773
|
158 |
msgid "Minimum image height"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: jquery-pin-it-button-for-images.php:775
|
162 |
msgid "Minimum image width"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: jquery-pin-it-button-for-images.php:780
|
166 |
+
#: jquery-pin-it-button-for-images.php:1141
|
167 |
msgid "value must be a number greater or equal to %d."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: jquery-pin-it-button-for-images.php:846
|
171 |
msgid "Visual"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: jquery-pin-it-button-for-images.php:854
|
175 |
msgid "Mode"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: jquery-pin-it-button-for-images.php:859
|
179 |
msgid "Static mode adds a layer on the top of the image that restricts image download, but works on websites that protect images download. Dynamic mode doesn't add that layer and allows image download. If you're experiencing issues with static mode, try using dynamic mode."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: jquery-pin-it-button-for-images.php:865
|
183 |
msgid "Description source"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: jquery-pin-it-button-for-images.php:870
|
187 |
msgid "From where the Pinterest message should be taken."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: jquery-pin-it-button-for-images.php:876
|
191 |
msgid "Linked page"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: jquery-pin-it-button-for-images.php:881
|
195 |
msgid "When checked, the link on Pinterest will always point to the individual page with the image and title of this individual page will be used if you've selected Title as the description source, even when the image was pinned on an archive page, category page or homepage. If false, the link will point to the URL the user is currently on."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: jquery-pin-it-button-for-images.php:887
|
199 |
msgid "Transparency value"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: jquery-pin-it-button-for-images.php:892
|
203 |
msgid "This setting sets the transparency of the image."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: jquery-pin-it-button-for-images.php:898
|
207 |
msgid "Custom \"Pin It\" button"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: jquery-pin-it-button-for-images.php:903
|
211 |
msgid "Check the <b>Use custom image</b> checkbox, specify image's URL, height and width to use your own Pinterest button design. You can just upload an image using Wordpress media library if you wish."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: jquery-pin-it-button-for-images.php:909
|
215 |
msgid "\"Pin it\" button position"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: jquery-pin-it-button-for-images.php:914
|
219 |
msgid "Where the \"Pin it\" button should appear on the image."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: jquery-pin-it-button-for-images.php:920
|
223 |
msgid "\"Pin it\" button margins"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: jquery-pin-it-button-for-images.php:925
|
227 |
msgid "Margins are used to adjust the position of the \"Pin it\" button, but not all margins are used on all button positions. Here is an example. If you're using the \"%s\" position, the button's position will be affected only by top and left margins. Bottom and right margins affect \"%s\" position, etc. The \"%s\" position does not use any margins at all."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: jquery-pin-it-button-for-images.php:926
|
231 |
+
#: jquery-pin-it-button-for-images.php:1066
|
232 |
msgid "Top left"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: jquery-pin-it-button-for-images.php:927
|
236 |
+
#: jquery-pin-it-button-for-images.php:1069
|
237 |
msgid "Bottom right"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: jquery-pin-it-button-for-images.php:928
|
241 |
+
#: jquery-pin-it-button-for-images.php:1070
|
242 |
msgid "Middle"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: jquery-pin-it-button-for-images.php:935
|
246 |
+
msgid "Retina friendly"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: jquery-pin-it-button-for-images.php:940
|
250 |
+
msgid "Please note that checking this option will result in rendering the \"Pin it\" button half of its normal size (if you use a 80x60 image, the button will be 40x30). When uploading a custom \"Pin it\" button (the default one is too small), please make sure both width and height are even numbers (i.e. divisible by two) when using this option."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: jquery-pin-it-button-for-images.php:955
|
254 |
msgid "How it should look like"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: jquery-pin-it-button-for-images.php:965
|
258 |
msgid "Static"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: jquery-pin-it-button-for-images.php:966
|
262 |
msgid "Dynamic"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: jquery-pin-it-button-for-images.php:981
|
266 |
msgid "Page title"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: jquery-pin-it-button-for-images.php:982
|
270 |
msgid "Page description"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: jquery-pin-it-button-for-images.php:983
|
274 |
msgid "Picture title or (if title not available) alt attribute"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: jquery-pin-it-button-for-images.php:984
|
278 |
msgid "Site title (Settings->General)"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: jquery-pin-it-button-for-images.php:997
|
282 |
msgid "Always link to individual post page"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: jquery-pin-it-button-for-images.php:1007
|
286 |
msgid "Choose transparency (between %.02f and %.02f)"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: jquery-pin-it-button-for-images.php:1025
|
290 |
msgid "Use custom image"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: jquery-pin-it-button-for-images.php:1028
|
294 |
msgid "Upload an image using media library"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: jquery-pin-it-button-for-images.php:1031
|
298 |
msgid "URL address of the image"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: jquery-pin-it-button-for-images.php:1050
|
302 |
msgid "Custom Pin It button preview"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: jquery-pin-it-button-for-images.php:1054
|
306 |
msgid "Refresh preview"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: jquery-pin-it-button-for-images.php:1067
|
310 |
msgid "Top right"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: jquery-pin-it-button-for-images.php:1068
|
314 |
msgid "Bottom left"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: jquery-pin-it-button-for-images.php:1090
|
318 |
msgid "Top"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: jquery-pin-it-button-for-images.php:1092
|
322 |
msgid "Bottom"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: jquery-pin-it-button-for-images.php:1094
|
326 |
msgid "Left"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: jquery-pin-it-button-for-images.php:1096
|
330 |
msgid "Right"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: jquery-pin-it-button-for-images.php:1109
|
334 |
+
msgid "Optimize for high pixel density displays"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: jquery-pin-it-button-for-images.php:1125
|
338 |
msgid "Transparency value must be a number between %.02d and %.02f."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: jquery-pin-it-button-for-images.php:1133
|
342 |
msgid "Custom image height"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: jquery-pin-it-button-for-images.php:1135
|
346 |
msgid "Custom image width"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: jquery-pin-it-button-for-images.php:1196
|
350 |
msgid "Debug"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: jquery-pin-it-button-for-images.php:1201
|
354 |
msgid "Use debug mode only if you are experiencing some issues with the plugin and you are reporting them to the developer of the plugin"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: jquery-pin-it-button-for-images.php:1214
|
358 |
msgid "Advanced settings"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: jquery-pin-it-button-for-images.php:1226
|
362 |
msgid "Enable debug mode"
|
363 |
+
msgstr ""
|
364 |
+
#. Plugin Name of the plugin/theme
|
365 |
+
msgid "jQuery Pin It Button For Images"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#. Plugin URI of the plugin/theme
|
369 |
+
msgid "http://mrsztuczkens.me/jpibfi/"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#. Description of the plugin/theme
|
373 |
+
msgid "Highlights images on hover and adds a \"Pin It\" button over them for easy pinning."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#. Author of the plugin/theme
|
377 |
+
msgid "Marcin Skrzypiec"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#. Author URI of the plugin/theme
|
381 |
+
msgid "http://mrsztuczkens.me/"
|
382 |
+
msgstr ""
|
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.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
|
@@ -71,6 +71,11 @@ Please report them in the plugin's support forum on Wordpress.org.
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
|
|
|
|
74 |
= 1.13 =
|
75 |
* Released 2013-10-11
|
76 |
* Few minor code changes
|
@@ -158,6 +163,9 @@ Please report them in the plugin's support forum on Wordpress.org.
|
|
158 |
|
159 |
== Upgrade Notice ==
|
160 |
|
|
|
|
|
|
|
161 |
= 1.13 =
|
162 |
Minor code changes, plus plugin is now translation-ready.
|
163 |
|
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.14
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
|
71 |
|
72 |
== Changelog ==
|
73 |
|
74 |
+
= 1.14 =
|
75 |
+
* Released 2013-10-17
|
76 |
+
* Minor bug with linking images to posts fixed
|
77 |
+
* Plugin now supports Retina displays
|
78 |
+
|
79 |
= 1.13 =
|
80 |
* Released 2013-10-11
|
81 |
* Few minor code changes
|
163 |
|
164 |
== Upgrade Notice ==
|
165 |
|
166 |
+
= 1.14 =
|
167 |
+
Minor bug fix plus support for Retina displays added.
|
168 |
+
|
169 |
= 1.13 =
|
170 |
Minor code changes, plus plugin is now translation-ready.
|
171 |
|