Pinterest "Pin It" Button - Version 2.0.8

Version Description

  • Tested up to WordPress 4.1.
  • Improved translation (i18n) readiness.
Download this release

Release Info

Developer pderksen
Plugin Icon 128x128 Pinterest "Pin It" Button
Version 2.0.8
Comparing to
See all releases

Code changes from version 2.0.7 to 2.0.8

class-pinterest-pin-it-button.php CHANGED
@@ -28,7 +28,7 @@ class Pinterest_Pin_It_Button {
28
  * and README.txt changelog
29
  **************************************/
30
 
31
- protected $version = '2.0.7';
32
 
33
  /**
34
  * Unique identifier for your plugin.
@@ -75,6 +75,9 @@ class Pinterest_Pin_It_Button {
75
  private function __construct() {
76
  // Setup constants.
77
  $this->setup_constants();
 
 
 
78
 
79
  // Run our upgrade checks first and update our version option.
80
  if( ! get_option( 'pib_upgrade_has_run' ) ) {
@@ -105,10 +108,27 @@ class Pinterest_Pin_It_Button {
105
  // Add plugin listing "Settings" action link.
106
  add_filter( 'plugin_action_links_' . plugin_basename( plugin_dir_path( __FILE__ ) . $this->plugin_slug . '.php' ), array( $this, 'settings_link' ) );
107
 
 
 
 
 
 
 
108
  // Check WP version
109
  add_action( 'admin_init', array( $this, 'check_wp_version' ) );
110
  }
111
 
 
 
 
 
 
 
 
 
 
 
 
112
  /**
113
  * Make sure user has the minimum required version of WordPress installed to use the plugin
114
  *
@@ -416,6 +436,13 @@ class Pinterest_Pin_It_Button {
416
 
417
  return $links;
418
  }
 
 
 
 
 
 
 
419
 
420
  /**
421
  * Check if viewing one of this plugin's admin pages.
@@ -458,4 +485,15 @@ class Pinterest_Pin_It_Button {
458
  if( get_current_screen()->id == 'plugins' )
459
  include_once( 'views/admin-install-notice.php' );
460
  }
 
 
 
 
 
 
 
 
 
 
 
461
  }
28
  * and README.txt changelog
29
  **************************************/
30
 
31
+ protected $version = '2.0.8';
32
 
33
  /**
34
  * Unique identifier for your plugin.
75
  private function __construct() {
76
  // Setup constants.
77
  $this->setup_constants();
78
+
79
+ // Load plugin text domain
80
+ add_action( 'plugins_loaded', array( $this, 'plugin_textdomain' ) );
81
 
82
  // Run our upgrade checks first and update our version option.
83
  if( ! get_option( 'pib_upgrade_has_run' ) ) {
108
  // Add plugin listing "Settings" action link.
109
  add_filter( 'plugin_action_links_' . plugin_basename( plugin_dir_path( __FILE__ ) . $this->plugin_slug . '.php' ), array( $this, 'settings_link' ) );
110
 
111
+ // Add upgrade link (if not already in Pro).
112
+ if ( ! class_exists( 'Pinterest_Pin_It_Button_Pro' ) ) {
113
+ add_filter( 'plugin_action_links_' . plugin_basename( plugin_dir_path( __FILE__ ) . $this->plugin_slug . '.php' ), array( $this, 'purchase_pro_link' ) );
114
+ add_action( 'init', array( $this, 'admin_upgrade_link' ) );
115
+ }
116
+
117
  // Check WP version
118
  add_action( 'admin_init', array( $this, 'check_wp_version' ) );
119
  }
120
 
121
+ /**
122
+ * Add "Upgrade to Pro" submenu link
123
+ *
124
+ * @since
125
+ */
126
+ function admin_upgrade_link() {
127
+ if( is_admin() ) {
128
+ include_once( 'includes/upgrade-link.php' );
129
+ }
130
+ }
131
+
132
  /**
133
  * Make sure user has the minimum required version of WordPress installed to use the plugin
134
  *
436
 
437
  return $links;
438
  }
439
+
440
+ public function purchase_pro_link( $links ) {
441
+ $pro_link = sprintf( '<a href="%s">%s</a>', pib_ga_campaign_url( PINPLUGIN_BASE_URL . 'pin-it-button-pro/', 'pib_lite_2', 'plugin_listing', 'pro_upgrade' ), __( 'Purchase Pro', 'sc' ) );
442
+ array_push( $links, $pro_link );
443
+
444
+ return $links;
445
+ }
446
 
447
  /**
448
  * Check if viewing one of this plugin's admin pages.
485
  if( get_current_screen()->id == 'plugins' )
486
  include_once( 'views/admin-install-notice.php' );
487
  }
488
+
489
+ /**
490
+ * Loads plugin text domain for i18n
491
+ */
492
+ function plugin_textdomain() {
493
+ load_plugin_textdomain(
494
+ 'pib',
495
+ false,
496
+ dirname( plugin_basename( PIB_MAIN_FILE ) ) . '/languages/'
497
+ );
498
+ }
499
  }
includes/upgrade-link.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // Exit if accessed directly
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ function pib_upgrade_link()
8
+ {
9
+ $page_hook = add_submenu_page(
10
+ PIB_PLUGIN_SLUG,
11
+ __( 'Upgrade to Pro', 'pib' ),
12
+ __( 'Upgrade to Pro', 'pib' ),
13
+ 'manage_options',
14
+ PIB_PLUGIN_SLUG . '-upgrade',
15
+ 'pib_upgrade_redirect'
16
+ );
17
+
18
+ add_action( 'load-' . $page_hook , 'pib_upgrade_ob_start' );
19
+ }
20
+ add_action( 'admin_menu', 'pib_upgrade_link' );
21
+
22
+ function pib_upgrade_ob_start() {
23
+ ob_start();
24
+ }
25
+
26
+ function pib_upgrade_redirect()
27
+ {
28
+ wp_redirect( pib_ga_campaign_url( PINPLUGIN_BASE_URL, 'pib_lite_2', 'plugin_menu', 'pro_upgrade' ), 301 );
29
+ exit();
30
+ }
31
+
32
+ function pib_upgrade_link_js()
33
+ {
34
+ ?>
35
+ <script type="text/javascript">
36
+ jQuery(document).ready(function ($) {
37
+ // Open upgrade link in a new window.
38
+ $('a[href="admin.php?page=pinterest-pin-it-button-upgrade"]').on('click', function () {
39
+ $(this).attr('target', '_blank');
40
+ });
41
+ });
42
+ </script>
43
+ <style>
44
+ a[href="admin.php?page=pinterest-pin-it-button-upgrade"] {
45
+ color: #6bbc5b !important;
46
+ }
47
+ a[href="admin.php?page=pinterest-pin-it-button-upgrade"]:hover {
48
+ color: #7ad368 !important;
49
+ }
50
+ </style>
51
+ <?php
52
+ }
53
+ add_action( 'admin_footer', 'pib_upgrade_link_js' );
languages/pib.pot ADDED
@@ -0,0 +1,846 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 Pinterest "Pin It" Button Lite
2
+ # This file is distributed under the same license as the Pinterest "Pin It" Button Lite package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Pinterest \"Pin It\" Button Lite 2.0.7\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/pinterest-pin-it-button\n"
7
+ "POT-Creation-Date: 2014-10-25 15:48-0700\n"
8
+ "PO-Revision-Date: 2014-10-25 15:48-0700\n"
9
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
10
+ "Language-Team: LANGUAGE <LL@li.org>\n"
11
+ "Language: en_US\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.6.4\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-KeywordsList: __;_e\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-SearchPath-0: pinterest-pin-it-button\n"
20
+
21
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:140
22
+ msgid " requires WordPress version <strong>"
23
+ msgstr ""
24
+
25
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:254
26
+ msgid "Pinterest \"Pin It\" Button Lite"
27
+ msgstr ""
28
+
29
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:315
30
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:325
31
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:326
32
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:431
33
+ msgid "Settings"
34
+ msgstr ""
35
+
36
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:316
37
+ msgid "Pin It Button"
38
+ msgstr ""
39
+
40
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:335
41
+ msgid " Help"
42
+ msgstr ""
43
+
44
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:336
45
+ msgid "Help"
46
+ msgstr ""
47
+
48
+ #: pinterest-pin-it-button/class-pinterest-pin-it-button.php:438
49
+ msgid "Purchase Pro"
50
+ msgstr ""
51
+
52
+ #: pinterest-pin-it-button/includes/admin-notices.php:30
53
+ msgid "General settings updated. "
54
+ msgstr ""
55
+
56
+ #: pinterest-pin-it-button/includes/admin-notices.php:34
57
+ msgid "Post Visibility settings updated. "
58
+ msgstr ""
59
+
60
+ #: pinterest-pin-it-button/includes/admin-notices.php:38
61
+ msgid "Styles settings updated. "
62
+ msgstr ""
63
+
64
+ #: pinterest-pin-it-button/includes/admin-notices.php:42
65
+ msgid "Advanced settings updated. "
66
+ msgstr ""
67
+
68
+ #: pinterest-pin-it-button/includes/misc-functions.php:77
69
+ msgid "No items."
70
+ msgstr ""
71
+
72
+ #: pinterest-pin-it-button/includes/register-settings.php:28
73
+ msgid "Button Type"
74
+ msgstr ""
75
+
76
+ #: pinterest-pin-it-button/includes/register-settings.php:33
77
+ #: pinterest-pin-it-button/includes/widgets.php:212
78
+ msgid "User selects image from popup (any image)"
79
+ msgstr ""
80
+
81
+ #: pinterest-pin-it-button/includes/register-settings.php:34
82
+ #: pinterest-pin-it-button/includes/widgets.php:216
83
+ msgid "Image is pre-selected (one image -- defaults to first image in post)"
84
+ msgstr ""
85
+
86
+ #: pinterest-pin-it-button/includes/register-settings.php:39
87
+ msgid "Pin Count"
88
+ msgstr ""
89
+
90
+ #: pinterest-pin-it-button/includes/register-settings.php:43
91
+ #: pinterest-pin-it-button/includes/widgets.php:176
92
+ msgid "Not Shown"
93
+ msgstr ""
94
+
95
+ #: pinterest-pin-it-button/includes/register-settings.php:44
96
+ #: pinterest-pin-it-button/includes/widgets.php:177
97
+ msgid "Beside the Button"
98
+ msgstr ""
99
+
100
+ #: pinterest-pin-it-button/includes/register-settings.php:45
101
+ #: pinterest-pin-it-button/includes/widgets.php:178
102
+ msgid "Above the Button"
103
+ msgstr ""
104
+
105
+ #: pinterest-pin-it-button/includes/register-settings.php:51
106
+ msgid "Show count bubble when there are zero pins."
107
+ msgstr ""
108
+
109
+ #: pinterest-pin-it-button/includes/register-settings.php:56
110
+ msgid "Button Size"
111
+ msgstr ""
112
+
113
+ #: pinterest-pin-it-button/includes/register-settings.php:60
114
+ #: pinterest-pin-it-button/includes/widgets.php:185
115
+ msgid "Small"
116
+ msgstr ""
117
+
118
+ #: pinterest-pin-it-button/includes/register-settings.php:61
119
+ #: pinterest-pin-it-button/includes/widgets.php:186
120
+ msgid "Large"
121
+ msgstr ""
122
+
123
+ #: pinterest-pin-it-button/includes/register-settings.php:66
124
+ msgid "Button Shape"
125
+ msgstr ""
126
+
127
+ #: pinterest-pin-it-button/includes/register-settings.php:70
128
+ #: pinterest-pin-it-button/includes/widgets.php:193
129
+ msgid "Rectangular"
130
+ msgstr ""
131
+
132
+ #: pinterest-pin-it-button/includes/register-settings.php:71
133
+ #: pinterest-pin-it-button/includes/widgets.php:194
134
+ msgid "Circular"
135
+ msgstr ""
136
+
137
+ #: pinterest-pin-it-button/includes/register-settings.php:76
138
+ msgid "Button Color"
139
+ msgstr ""
140
+
141
+ #: pinterest-pin-it-button/includes/register-settings.php:77
142
+ msgid "Color ignored if button shape is <strong>Circular</strong>."
143
+ msgstr ""
144
+
145
+ #: pinterest-pin-it-button/includes/register-settings.php:80
146
+ #: pinterest-pin-it-button/includes/widgets.php:201
147
+ msgid "Gray"
148
+ msgstr ""
149
+
150
+ #: pinterest-pin-it-button/includes/register-settings.php:81
151
+ #: pinterest-pin-it-button/includes/widgets.php:202
152
+ msgid "Red"
153
+ msgstr ""
154
+
155
+ #: pinterest-pin-it-button/includes/register-settings.php:82
156
+ #: pinterest-pin-it-button/includes/widgets.php:203
157
+ msgid "White"
158
+ msgstr ""
159
+
160
+ #: pinterest-pin-it-button/includes/register-settings.php:87
161
+ msgid "Save Settings"
162
+ msgstr ""
163
+
164
+ #: pinterest-pin-it-button/includes/register-settings.php:88
165
+ msgid ""
166
+ "Save your settings when uninstalling this plugin. Useful when upgrading or "
167
+ "re-installing."
168
+ msgstr ""
169
+
170
+ #: pinterest-pin-it-button/includes/register-settings.php:97
171
+ msgid "Post/Page Types"
172
+ msgstr ""
173
+
174
+ #: pinterest-pin-it-button/includes/register-settings.php:98
175
+ msgid ""
176
+ "You may individually hide the \"Pin It\" button per post/page. This field is "
177
+ "located towards the bottom of the post/page edit screen."
178
+ msgstr ""
179
+
180
+ #: pinterest-pin-it-button/includes/register-settings.php:101
181
+ msgid "Home Page (or latest posts page)"
182
+ msgstr ""
183
+
184
+ #: pinterest-pin-it-button/includes/register-settings.php:102
185
+ msgid "Front Page (different from Home Page only if set in Settings > Reading)"
186
+ msgstr ""
187
+
188
+ #: pinterest-pin-it-button/includes/register-settings.php:103
189
+ msgid "Individual Posts"
190
+ msgstr ""
191
+
192
+ #: pinterest-pin-it-button/includes/register-settings.php:104
193
+ msgid "Individual Pages (WordPress static pages)"
194
+ msgstr ""
195
+
196
+ #: pinterest-pin-it-button/includes/register-settings.php:105
197
+ msgid "Archive Pages (includes Category, Tag, Author, and date-based pages)"
198
+ msgstr ""
199
+
200
+ #: pinterest-pin-it-button/includes/register-settings.php:110
201
+ msgid "Post/Page Placement"
202
+ msgstr ""
203
+
204
+ #: pinterest-pin-it-button/includes/register-settings.php:111
205
+ msgid ""
206
+ "Only the button style <strong>\"Image is pre-selected\"</strong> will use "
207
+ "the individual post URL when a visitor pins from a post excerpt."
208
+ msgstr ""
209
+
210
+ #: pinterest-pin-it-button/includes/register-settings.php:112
211
+ #, php-format
212
+ msgid ""
213
+ "Go to Appearance &rarr; <a href=\"%s\">Widgets</a> to add a \"Pin It\" "
214
+ "button to your sidebar or other widget area."
215
+ msgstr ""
216
+
217
+ #: pinterest-pin-it-button/includes/register-settings.php:115
218
+ msgid "Above Content"
219
+ msgstr ""
220
+
221
+ #: pinterest-pin-it-button/includes/register-settings.php:116
222
+ msgid "Below Content"
223
+ msgstr ""
224
+
225
+ #: pinterest-pin-it-button/includes/register-settings.php:117
226
+ msgid "Include in Post Excerpts"
227
+ msgstr ""
228
+
229
+ #: pinterest-pin-it-button/includes/register-settings.php:126
230
+ msgid "Custom CSS"
231
+ msgstr ""
232
+
233
+ #: pinterest-pin-it-button/includes/register-settings.php:127
234
+ msgid "Custom CSS can be used to override other CSS style rules."
235
+ msgstr ""
236
+
237
+ #: pinterest-pin-it-button/includes/register-settings.php:128
238
+ #, php-format
239
+ msgid "Visit the <a href=\"%s\">Help Section</a> for CSS override examples."
240
+ msgstr ""
241
+
242
+ #: pinterest-pin-it-button/includes/register-settings.php:133
243
+ msgid "Remove DIV Container"
244
+ msgstr ""
245
+
246
+ #: pinterest-pin-it-button/includes/register-settings.php:134
247
+ msgid "Remove DIV tag surrounding regular button"
248
+ msgstr ""
249
+
250
+ #: pinterest-pin-it-button/includes/register-settings.php:139
251
+ msgid "Disable CSS File Reference"
252
+ msgstr ""
253
+
254
+ #: pinterest-pin-it-button/includes/register-settings.php:140
255
+ msgid ""
256
+ "Advanced. Will prevent the plugin's CSS file from being referenced. Custom "
257
+ "CSS above will still be included."
258
+ msgstr ""
259
+
260
+ #: pinterest-pin-it-button/includes/register-settings.php:149
261
+ msgid "Disable <code>pinit.js</code>"
262
+ msgstr ""
263
+
264
+ #: pinterest-pin-it-button/includes/register-settings.php:150
265
+ msgid ""
266
+ "Disable output of <code>pinit.js</code>, the JavaScript file for all widgets "
267
+ "from Pinterest."
268
+ msgstr ""
269
+
270
+ #: pinterest-pin-it-button/includes/register-settings.php:151
271
+ msgid ""
272
+ "Check this option if you have <code>pinit.js</code> referenced in another "
273
+ "plugin, widget or your theme. Ouputting <code>pinit.js</code> more than once "
274
+ "on a page can cause conflicts."
275
+ msgstr ""
276
+
277
+ #: pinterest-pin-it-button/includes/register-settings.php:178
278
+ msgid "General Settings"
279
+ msgstr ""
280
+
281
+ #: pinterest-pin-it-button/includes/register-settings.php:197
282
+ msgid "Post Visibility Settings"
283
+ msgstr ""
284
+
285
+ #: pinterest-pin-it-button/includes/register-settings.php:216
286
+ msgid "Style Settings"
287
+ msgstr ""
288
+
289
+ #: pinterest-pin-it-button/includes/register-settings.php:235
290
+ msgid "Advanced Settings"
291
+ msgstr ""
292
+
293
+ #: pinterest-pin-it-button/includes/register-settings.php:499
294
+ #, php-format
295
+ msgid ""
296
+ "The callback function used for the <strong>%s</strong> setting is missing."
297
+ msgstr ""
298
+
299
+ #: pinterest-pin-it-button/includes/upgrade-link.php:11
300
+ #: pinterest-pin-it-button/includes/upgrade-link.php:12
301
+ msgid "Upgrade to Pro"
302
+ msgstr ""
303
+
304
+ #: pinterest-pin-it-button/includes/widgets.php:31
305
+ msgid "Pinterest \"Pin It\" Button"
306
+ msgstr ""
307
+
308
+ #: pinterest-pin-it-button/includes/widgets.php:34
309
+ msgid "Add a Pinterest \"Pin It\" button to any widget area."
310
+ msgstr ""
311
+
312
+ #: pinterest-pin-it-button/includes/widgets.php:170
313
+ msgid "Title (optional)"
314
+ msgstr ""
315
+
316
+ #: pinterest-pin-it-button/includes/widgets.php:174
317
+ msgid "Pin Count:"
318
+ msgstr ""
319
+
320
+ #: pinterest-pin-it-button/includes/widgets.php:183
321
+ msgid "Size:"
322
+ msgstr ""
323
+
324
+ #: pinterest-pin-it-button/includes/widgets.php:191
325
+ msgid "Shape:"
326
+ msgstr ""
327
+
328
+ #: pinterest-pin-it-button/includes/widgets.php:199
329
+ msgid "Color:"
330
+ msgstr ""
331
+
332
+ #: pinterest-pin-it-button/includes/widgets.php:220
333
+ msgid ""
334
+ "These 3 text fields will be used only if the button type is \"image pre-"
335
+ "selected\"."
336
+ msgstr ""
337
+
338
+ #: pinterest-pin-it-button/includes/widgets.php:225
339
+ #: pinterest-pin-it-button/views/post-meta-display.php:39
340
+ msgid "URL of the web page to be pinned"
341
+ msgstr ""
342
+
343
+ #: pinterest-pin-it-button/includes/widgets.php:230
344
+ #: pinterest-pin-it-button/views/admin-help.php:71
345
+ #: pinterest-pin-it-button/views/post-meta-display.php:44
346
+ msgid "URL of the image to be pinned"
347
+ msgstr ""
348
+
349
+ #: pinterest-pin-it-button/includes/widgets.php:235
350
+ msgid "Description of the pin (optional)"
351
+ msgstr ""
352
+
353
+ #: pinterest-pin-it-button/includes/widgets.php:242
354
+ msgid "Alignment"
355
+ msgstr ""
356
+
357
+ #: pinterest-pin-it-button/includes/widgets.php:244
358
+ msgid "None"
359
+ msgstr ""
360
+
361
+ #: pinterest-pin-it-button/includes/widgets.php:245
362
+ msgid "Left"
363
+ msgstr ""
364
+
365
+ #: pinterest-pin-it-button/includes/widgets.php:246
366
+ msgid "Right"
367
+ msgstr ""
368
+
369
+ #: pinterest-pin-it-button/includes/widgets.php:247
370
+ msgid "Center"
371
+ msgstr ""
372
+
373
+ #: pinterest-pin-it-button/includes/widgets.php:255
374
+ msgid ""
375
+ "Remove div tag surrounding this widget button. Also removes alignment "
376
+ "setting."
377
+ msgstr ""
378
+
379
+ #: pinterest-pin-it-button/views/admin-help.php:26
380
+ msgid "Plugin version"
381
+ msgstr ""
382
+
383
+ #: pinterest-pin-it-button/views/admin-help.php:29
384
+ msgid "Shortcode Options"
385
+ msgstr ""
386
+
387
+ #: pinterest-pin-it-button/views/admin-help.php:32
388
+ msgid "Use the shortcode"
389
+ msgstr ""
390
+
391
+ #: pinterest-pin-it-button/views/admin-help.php:32
392
+ msgid "to display the button within your content."
393
+ msgstr ""
394
+
395
+ #: pinterest-pin-it-button/views/admin-help.php:35
396
+ msgid "Use the function"
397
+ msgstr ""
398
+
399
+ #: pinterest-pin-it-button/views/admin-help.php:36
400
+ msgid "to display within template or theme files."
401
+ msgstr ""
402
+
403
+ #: pinterest-pin-it-button/views/admin-help.php:39
404
+ msgid "Available Attributes (Lite & Pro)"
405
+ msgstr ""
406
+
407
+ #: pinterest-pin-it-button/views/admin-help.php:44
408
+ #: pinterest-pin-it-button/views/admin-help.php:125
409
+ msgid "Attribute"
410
+ msgstr ""
411
+
412
+ #: pinterest-pin-it-button/views/admin-help.php:45
413
+ #: pinterest-pin-it-button/views/admin-help.php:126
414
+ msgid "Description"
415
+ msgstr ""
416
+
417
+ #: pinterest-pin-it-button/views/admin-help.php:46
418
+ #: pinterest-pin-it-button/views/admin-help.php:127
419
+ msgid "Choices"
420
+ msgstr ""
421
+
422
+ #: pinterest-pin-it-button/views/admin-help.php:47
423
+ #: pinterest-pin-it-button/views/admin-help.php:128
424
+ msgid "Default"
425
+ msgstr ""
426
+
427
+ #: pinterest-pin-it-button/views/admin-help.php:53
428
+ msgid "\"Pin It\" button behavior type"
429
+ msgstr ""
430
+
431
+ #: pinterest-pin-it-button/views/admin-help.php:59
432
+ msgid "Where to show the pin count bubble"
433
+ msgstr ""
434
+
435
+ #: pinterest-pin-it-button/views/admin-help.php:65
436
+ msgid ""
437
+ "URL of the web page to be pinned. Must be specified if used on home or index "
438
+ "page."
439
+ msgstr ""
440
+
441
+ #: pinterest-pin-it-button/views/admin-help.php:66
442
+ msgid "Any valid web page URL"
443
+ msgstr ""
444
+
445
+ #: pinterest-pin-it-button/views/admin-help.php:67
446
+ msgid "Current post/page URL"
447
+ msgstr ""
448
+
449
+ #: pinterest-pin-it-button/views/admin-help.php:72
450
+ msgid "Any valid image URL"
451
+ msgstr ""
452
+
453
+ #: pinterest-pin-it-button/views/admin-help.php:73
454
+ msgid "First image in post/page"
455
+ msgstr ""
456
+
457
+ #: pinterest-pin-it-button/views/admin-help.php:77
458
+ msgid "Description of the pin. Ignored if button_type=\"any\""
459
+ msgstr ""
460
+
461
+ #: pinterest-pin-it-button/views/admin-help.php:78
462
+ msgid "Any string of text"
463
+ msgstr ""
464
+
465
+ #: pinterest-pin-it-button/views/admin-help.php:83
466
+ msgid "\"Pin It\" button size"
467
+ msgstr ""
468
+
469
+ #: pinterest-pin-it-button/views/admin-help.php:89
470
+ msgid "\"Pin It\" button shape"
471
+ msgstr ""
472
+
473
+ #: pinterest-pin-it-button/views/admin-help.php:95
474
+ msgid "\"Pin It\" button color"
475
+ msgstr ""
476
+
477
+ #: pinterest-pin-it-button/views/admin-help.php:101
478
+ msgid "Adds CSS to align button"
479
+ msgstr ""
480
+
481
+ #: pinterest-pin-it-button/views/admin-help.php:107
482
+ msgid "If true removes surrounding div tag"
483
+ msgstr ""
484
+
485
+ #: pinterest-pin-it-button/views/admin-help.php:113
486
+ msgid "Will always show the count bubble, even for pages with zero pins"
487
+ msgstr ""
488
+
489
+ #: pinterest-pin-it-button/views/admin-help.php:120
490
+ msgid "Available Attributes (Pro Only)"
491
+ msgstr ""
492
+
493
+ #: pinterest-pin-it-button/views/admin-help.php:134
494
+ msgid ""
495
+ "If true will show other social sharing buttons (the share bar). Must be "
496
+ "enabled in main settings. Inherits alignment and other styles from main "
497
+ "settings."
498
+ msgstr ""
499
+
500
+ #: pinterest-pin-it-button/views/admin-help.php:140
501
+ msgid ""
502
+ "If true and \"image is pre-selected\" is enabled, will default to post's "
503
+ "featured image."
504
+ msgstr ""
505
+
506
+ #: pinterest-pin-it-button/views/admin-help.php:147
507
+ msgid "Shortcode Examples"
508
+ msgstr ""
509
+
510
+ #: pinterest-pin-it-button/views/admin-help.php:152
511
+ msgid "Pro only"
512
+ msgstr ""
513
+
514
+ #: pinterest-pin-it-button/views/admin-help.php:155
515
+ msgid "CSS Style Overrides"
516
+ msgstr ""
517
+
518
+ #: pinterest-pin-it-button/views/admin-help.php:158
519
+ msgid ""
520
+ "This plugin outputs a CSS file in an attempt to keep basic \"Pin It\" button "
521
+ "styling intact."
522
+ msgstr ""
523
+
524
+ #: pinterest-pin-it-button/views/admin-help.php:159
525
+ msgid ""
526
+ "To override the CSS styles you may add your own CSS to the plugin's \"Custom "
527
+ "CSS\" box or in your theme files."
528
+ msgstr ""
529
+
530
+ #: pinterest-pin-it-button/views/admin-help.php:160
531
+ msgid ""
532
+ "No !important tags are used in this plugin's CSS, but note that the embed "
533
+ "code from Pinterest also renders some CSS (which may include !important "
534
+ "tags)."
535
+ msgstr ""
536
+
537
+ #: pinterest-pin-it-button/views/admin-help.php:163
538
+ msgid "Available CSS classes (Lite & Pro)"
539
+ msgstr ""
540
+
541
+ #: pinterest-pin-it-button/views/admin-help.php:166
542
+ msgid "Regular button container"
543
+ msgstr ""
544
+
545
+ #: pinterest-pin-it-button/views/admin-help.php:167
546
+ msgid "Regular button link tag"
547
+ msgstr ""
548
+
549
+ #: pinterest-pin-it-button/views/admin-help.php:168
550
+ msgid "Shortcode button container"
551
+ msgstr ""
552
+
553
+ #: pinterest-pin-it-button/views/admin-help.php:169
554
+ msgid "Shortcode button link tag"
555
+ msgstr ""
556
+
557
+ #: pinterest-pin-it-button/views/admin-help.php:170
558
+ msgid "Widget button container"
559
+ msgstr ""
560
+
561
+ #: pinterest-pin-it-button/views/admin-help.php:171
562
+ msgid "Widget button link tag"
563
+ msgstr ""
564
+
565
+ #: pinterest-pin-it-button/views/admin-help.php:175
566
+ msgid ""
567
+ "There is also a <code>span</code> element nested inside the \"Pin It\" "
568
+ "button <code>a</code> tag which contains the count bubble."
569
+ msgstr ""
570
+
571
+ #: pinterest-pin-it-button/views/admin-help.php:178
572
+ msgid "Available CSS classes (Pro Only)"
573
+ msgstr ""
574
+
575
+ #: pinterest-pin-it-button/views/admin-help.php:181
576
+ msgid "Hover button link tag"
577
+ msgstr ""
578
+
579
+ #: pinterest-pin-it-button/views/admin-help.php:182
580
+ msgid "Below image button container"
581
+ msgstr ""
582
+
583
+ #: pinterest-pin-it-button/views/admin-help.php:183
584
+ msgid "Below image button link tag"
585
+ msgstr ""
586
+
587
+ #: pinterest-pin-it-button/views/admin-help.php:185
588
+ msgid "Share bar container"
589
+ msgstr ""
590
+
591
+ #: pinterest-pin-it-button/views/admin-help.php:186
592
+ msgid "Share bar: Pin It button container"
593
+ msgstr ""
594
+
595
+ #: pinterest-pin-it-button/views/admin-help.php:187
596
+ msgid "Share bar: Facebook Share button container"
597
+ msgstr ""
598
+
599
+ #: pinterest-pin-it-button/views/admin-help.php:188
600
+ msgid "Share bar: Facebook Like button container"
601
+ msgstr ""
602
+
603
+ #: pinterest-pin-it-button/views/admin-help.php:189
604
+ msgid "Share bar: Tweet button container"
605
+ msgstr ""
606
+
607
+ #: pinterest-pin-it-button/views/admin-help.php:190
608
+ msgid "Share bar: Google+ Share button container"
609
+ msgstr ""
610
+
611
+ #: pinterest-pin-it-button/views/admin-help.php:191
612
+ msgid "Share bar: Google +1 button container"
613
+ msgstr ""
614
+
615
+ #: pinterest-pin-it-button/views/admin-help.php:192
616
+ msgid "Share bar: LinkedIn Share button container"
617
+ msgstr ""
618
+
619
+ #: pinterest-pin-it-button/views/admin-help.php:195
620
+ msgid "CSS Style Override Examples"
621
+ msgstr ""
622
+
623
+ #: pinterest-pin-it-button/views/admin-help.php:198
624
+ msgid "Increase space under button"
625
+ msgstr ""
626
+
627
+ #: pinterest-pin-it-button/views/admin-help.php:199
628
+ msgid "Add red border around button"
629
+ msgstr ""
630
+
631
+ #: pinterest-pin-it-button/views/admin-help.php:200
632
+ msgid "Add red border around widget button"
633
+ msgstr ""
634
+
635
+ #: pinterest-pin-it-button/views/admin-help.php:203
636
+ msgid "Individual Post/Page Overrides"
637
+ msgstr ""
638
+
639
+ #: pinterest-pin-it-button/views/admin-help.php:206
640
+ msgid ""
641
+ "You may individually override what website address (URL), image and "
642
+ "description will be pinned for each post or page."
643
+ msgstr ""
644
+
645
+ #: pinterest-pin-it-button/views/admin-help.php:207
646
+ msgid ""
647
+ "These fields are located towards the bottom of the post/page edit screen."
648
+ msgstr ""
649
+
650
+ #: pinterest-pin-it-button/views/admin-help.php:211
651
+ #, php-format
652
+ msgid ""
653
+ "Need more widgets? Check out our free <a href=\"%s\">Pinterest Widgets</a> "
654
+ "plugin."
655
+ msgstr ""
656
+
657
+ #: pinterest-pin-it-button/views/admin-help.php:220
658
+ #, php-format
659
+ msgid ""
660
+ "Visit the <a href=\"%s\" target=\"_blank\">Knowledgebase</a> for additional "
661
+ "help."
662
+ msgstr ""
663
+
664
+ #: pinterest-pin-it-button/views/admin-install-notice.php:27
665
+ msgid " is now installed."
666
+ msgstr ""
667
+
668
+ #: pinterest-pin-it-button/views/admin-install-notice.php:28
669
+ msgid "Setup your Pin It button now"
670
+ msgstr ""
671
+
672
+ #: pinterest-pin-it-button/views/admin-install-notice.php:29
673
+ msgid "Hide this"
674
+ msgstr ""
675
+
676
+ #: pinterest-pin-it-button/views/admin-sidebar.php:20
677
+ msgid "Need More Options?"
678
+ msgstr ""
679
+
680
+ #: pinterest-pin-it-button/views/admin-sidebar.php:24
681
+ msgid "Add \"Pin It\" buttons on image hover"
682
+ msgstr ""
683
+
684
+ #: pinterest-pin-it-button/views/admin-sidebar.php:25
685
+ msgid "Add \"Pin It\" buttons under images"
686
+ msgstr ""
687
+
688
+ #: pinterest-pin-it-button/views/admin-sidebar.php:26
689
+ msgid "30 custom \"Pin It\" button designs"
690
+ msgstr ""
691
+
692
+ #: pinterest-pin-it-button/views/admin-sidebar.php:27
693
+ msgid "Upload your own button designs"
694
+ msgstr ""
695
+
696
+ #: pinterest-pin-it-button/views/admin-sidebar.php:28
697
+ msgid "Twitter, Facebook & G+ buttons"
698
+ msgstr ""
699
+
700
+ #: pinterest-pin-it-button/views/admin-sidebar.php:29
701
+ msgid "Use with featured images"
702
+ msgstr ""
703
+
704
+ #: pinterest-pin-it-button/views/admin-sidebar.php:30
705
+ msgid "Use with custom post types"
706
+ msgstr ""
707
+
708
+ #: pinterest-pin-it-button/views/admin-sidebar.php:33
709
+ msgid "WooCommerce support"
710
+ msgstr ""
711
+
712
+ #: pinterest-pin-it-button/views/admin-sidebar.php:36
713
+ msgid "Automatic updates & email support"
714
+ msgstr ""
715
+
716
+ #: pinterest-pin-it-button/views/admin-sidebar.php:40
717
+ msgid "Get all of these and more with Pinterest \"Pin It\" Button Pro!"
718
+ msgstr ""
719
+
720
+ #: pinterest-pin-it-button/views/admin-sidebar.php:46
721
+ msgid "Upgrade to Pro Now"
722
+ msgstr ""
723
+
724
+ #: pinterest-pin-it-button/views/admin-sidebar.php:59
725
+ msgid "WooCommerce Rich Pins"
726
+ msgstr ""
727
+
728
+ #: pinterest-pin-it-button/views/admin-sidebar.php:63
729
+ msgid ""
730
+ "Running a WooCommerce store and want to give your product pins a boost? "
731
+ "There's a plugin for that."
732
+ msgstr ""
733
+
734
+ #: pinterest-pin-it-button/views/admin-sidebar.php:68
735
+ msgid "Check out Rich Pins for WooCommerce"
736
+ msgstr ""
737
+
738
+ #: pinterest-pin-it-button/views/admin-sidebar.php:84
739
+ msgid "Article Rich Pins"
740
+ msgstr ""
741
+
742
+ #: pinterest-pin-it-button/views/admin-sidebar.php:88
743
+ msgid ""
744
+ "Want give your pins a boost with <strong>Article Rich Pins</strong>? There's "
745
+ "a plugin for that."
746
+ msgstr ""
747
+
748
+ #: pinterest-pin-it-button/views/admin-sidebar.php:93
749
+ msgid "Check out Article Rich Pins"
750
+ msgstr ""
751
+
752
+ #: pinterest-pin-it-button/views/admin-sidebar.php:109
753
+ msgid "Now accepting 5-star reviews! It only takes seconds and means a lot."
754
+ msgstr ""
755
+
756
+ #: pinterest-pin-it-button/views/admin-sidebar.php:113
757
+ msgid "Rate this Plugin Now"
758
+ msgstr ""
759
+
760
+ #: pinterest-pin-it-button/views/admin-sidebar.php:126
761
+ msgid "Shortcode & CSS Help"
762
+ msgstr ""
763
+
764
+ #: pinterest-pin-it-button/views/admin-sidebar.php:131
765
+ msgid "Community Support Forums"
766
+ msgstr ""
767
+
768
+ #: pinterest-pin-it-button/views/admin-sidebar.php:136
769
+ msgid "Knowledgebase"
770
+ msgstr ""
771
+
772
+ #: pinterest-pin-it-button/views/admin-sidebar.php:145
773
+ msgid "Recent News from pinplugins.com"
774
+ msgstr ""
775
+
776
+ #: pinterest-pin-it-button/views/admin.php:35
777
+ msgid "General"
778
+ msgstr ""
779
+
780
+ #: pinterest-pin-it-button/views/admin.php:37
781
+ msgid "Post Visibility"
782
+ msgstr ""
783
+
784
+ #: pinterest-pin-it-button/views/admin.php:39
785
+ msgid "Styles"
786
+ msgstr ""
787
+
788
+ #: pinterest-pin-it-button/views/admin.php:41
789
+ msgid "Advanced"
790
+ msgstr ""
791
+
792
+ #: pinterest-pin-it-button/views/post-meta-display.php:18
793
+ msgid "User selects image"
794
+ msgstr ""
795
+
796
+ #: pinterest-pin-it-button/views/post-meta-display.php:18
797
+ msgid "Image pre-selected"
798
+ msgstr ""
799
+
800
+ #: pinterest-pin-it-button/views/post-meta-display.php:27
801
+ msgid ""
802
+ "Individual post or page-level button settings will only take affect if the "
803
+ "\"Pin It\" button type set in the main settings is <strong>\"image pre-"
804
+ "selected\"</strong>."
805
+ msgstr ""
806
+
807
+ #: pinterest-pin-it-button/views/post-meta-display.php:30
808
+ msgid "Current button type:"
809
+ msgstr ""
810
+
811
+ #: pinterest-pin-it-button/views/post-meta-display.php:34
812
+ msgid ""
813
+ "The below settings will not take affects unless the button type is changed. "
814
+ msgstr ""
815
+
816
+ #: pinterest-pin-it-button/views/post-meta-display.php:35
817
+ msgid "Go to \"Pin It\" Button Settings"
818
+ msgstr ""
819
+
820
+ #: pinterest-pin-it-button/views/post-meta-display.php:41
821
+ msgid "Defaults to current post/page URL if left blank."
822
+ msgstr ""
823
+
824
+ #: pinterest-pin-it-button/views/post-meta-display.php:46
825
+ msgid "Defaults to first image in post if left blank."
826
+ msgstr ""
827
+
828
+ #: pinterest-pin-it-button/views/post-meta-display.php:49
829
+ msgid "Description of the pin"
830
+ msgstr ""
831
+
832
+ #: pinterest-pin-it-button/views/post-meta-display.php:51
833
+ msgid "Defaults to post title if left blank."
834
+ msgstr ""
835
+
836
+ #: pinterest-pin-it-button/views/post-meta-display.php:55
837
+ msgid "Show \"Pin It\" button "
838
+ msgstr ""
839
+
840
+ #: pinterest-pin-it-button/views/post-meta-display.php:58
841
+ msgid "If checked displays the button "
842
+ msgstr ""
843
+
844
+ #: pinterest-pin-it-button/views/post-meta-display.php:61
845
+ msgid "If unchecked the button "
846
+ msgstr ""
pinterest-pin-it-button.php CHANGED
@@ -13,12 +13,14 @@
13
  * Plugin Name: Pinterest "Pin It" Button Lite
14
  * Plugin URI: http://pinplugins.com/pin-it-button-pro/
15
  * Description: Add a Pinterest "Pin It" Button to your site and get your visitors to start pinning your awesome content!
16
- * Version: 2.0.7
17
  * Author: Phil Derksen
18
  * Author URI: http://philderksen.com
19
  * License: GPL-2.0+
20
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
21
  * GitHub Plugin URI: https://github.com/pderksen/WP-Pinterest-Pin-It-Button
 
 
22
  */
23
 
24
  // Exit if accessed directly.
13
  * Plugin Name: Pinterest "Pin It" Button Lite
14
  * Plugin URI: http://pinplugins.com/pin-it-button-pro/
15
  * Description: Add a Pinterest "Pin It" Button to your site and get your visitors to start pinning your awesome content!
16
+ * Version: 2.0.8
17
  * Author: Phil Derksen
18
  * Author URI: http://philderksen.com
19
  * License: GPL-2.0+
20
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
21
  * GitHub Plugin URI: https://github.com/pderksen/WP-Pinterest-Pin-It-Button
22
+ * Text Domain: pib
23
+ * Domain Path: /languages/
24
  */
25
 
26
  // Exit if accessed directly.
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  === Pinterest "Pin It" Button ===
2
  Contributors: pderksen, nickyoung87
3
  Tags: pinterest, pin it button, social, social media, image, images, photo, photos, pinterest pin it button, pin it, social button
4
- Requires at least: 3.7.4
5
- Tested up to: 4.0
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -79,7 +79,7 @@ You can install this plugin one of three ways:
79
  1. Look for the author name `Phil Derksen` on the plugin.
80
  1. Click to install.
81
  1. Activate the plugin.
82
- 1. A new menu item `Pin It Button` will appear in your Admin.
83
 
84
  = 2. Download & Upload =
85
  1. Download the plugin (a zip file) on the right column of this page.
@@ -87,14 +87,14 @@ You can install this plugin one of three ways:
87
  1. Select the tab "Upload".
88
  1. Upload the .zip file you just downloaded.
89
  1. Activate the plugin.
90
- 1. A new menu item `Pin It Button` will appear in your Admin.
91
 
92
  = 3. FTP Upload =
93
  1. Download the plugin (.zip file) on the right column of this page.
94
  1. Unzip the zip file contents.
95
  1. Upload the `pinterest-pin-it-button` folder to the `/wp-content/plugins/` directory of your site.
96
  1. Activate the plugin through the 'Plugins' menu in WordPress.
97
- 1. A new menu item `Pin It Button` will appear in your Admin.
98
 
99
  == Frequently Asked Questions ==
100
 
@@ -122,9 +122,14 @@ CSS styling and shortcode help available within the plugin admin.
122
 
123
  == Changelog ==
124
 
 
 
 
 
 
125
  = 2.0.7 =
126
 
127
- * Tested with WordPress 4.0.
128
  * Button will now pin full size image instead of thumbnail.
129
 
130
  = 2.0.6 =
1
  === Pinterest "Pin It" Button ===
2
  Contributors: pderksen, nickyoung87
3
  Tags: pinterest, pin it button, social, social media, image, images, photo, photos, pinterest pin it button, pin it, social button
4
+ Requires at least: 3.8.5
5
+ Tested up to: 4.1
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
79
  1. Look for the author name `Phil Derksen` on the plugin.
80
  1. Click to install.
81
  1. Activate the plugin.
82
+ 1. A new menu item `Pin It Button` will appear in the main menu.
83
 
84
  = 2. Download & Upload =
85
  1. Download the plugin (a zip file) on the right column of this page.
87
  1. Select the tab "Upload".
88
  1. Upload the .zip file you just downloaded.
89
  1. Activate the plugin.
90
+ 1. A new menu item `Pin It Button` will appear in the main menu.
91
 
92
  = 3. FTP Upload =
93
  1. Download the plugin (.zip file) on the right column of this page.
94
  1. Unzip the zip file contents.
95
  1. Upload the `pinterest-pin-it-button` folder to the `/wp-content/plugins/` directory of your site.
96
  1. Activate the plugin through the 'Plugins' menu in WordPress.
97
+ 1. A new menu item `Pin It Button` will appear in the main menu.
98
 
99
  == Frequently Asked Questions ==
100
 
122
 
123
  == Changelog ==
124
 
125
+ = 2.0.8 =
126
+
127
+ * Tested up to WordPress 4.1.
128
+ * Improved translation (i18n) readiness.
129
+
130
  = 2.0.7 =
131
 
132
+ * Tested up to WordPress 4.0.
133
  * Button will now pin full size image instead of thumbnail.
134
 
135
  = 2.0.6 =
views/admin-sidebar.php CHANGED
@@ -45,6 +45,11 @@ if ( ! defined( 'ABSPATH' ) ) {
45
  class="button-primary button-large" target="_blank">
46
  <?php _e( 'Upgrade to Pro Now', 'pib' ); ?></a>
47
  </div>
 
 
 
 
 
48
  </div>
49
  </div>
50
  </div>
45
  class="button-primary button-large" target="_blank">
46
  <?php _e( 'Upgrade to Pro Now', 'pib' ); ?></a>
47
  </div>
48
+
49
+ <!-- Black Friday 2014 Promo -->
50
+ <div class="centered">
51
+ <h3>Use the Black Friday discount code <span style="color:red;">BF2014</span> to get 30% off any license. Expires Friday, Dec. 5.</h3>
52
+ </div>
53
  </div>
54
  </div>
55
  </div>