Version Description
- Release 2016-05-05
- Added import/export settings feature
Download this release
Release Info
Developer | mrsztuczkens |
Plugin | jQuery Pin It Button for Images |
Version | 1.52 |
Comparing to | |
See all releases |
Code changes from version 1.51 to 1.52
- includes/admin/class-jpibfi-admin.php +9 -4
- includes/admin/class-jpibfi-advanced-options.php +1 -1
- includes/admin/class-jpibfi-import-export.php +179 -0
- includes/admin/class-jpibfi-options.php +4 -1
- includes/admin/class-jpibfi-selection-options.php +5 -3
- includes/admin/class-jpibfi-visual-options.php +5 -5
- includes/admin/views/admin.php +31 -27
- includes/admin/views/notice.php +0 -3
- index.php +1 -1
- jquery-pin-it-button-for-images.php +3 -2
- languages/jquery-pin-it-button-for-images-es_ES.pot +499 -499
- languages/jquery-pin-it-button-for-images.pot +133 -97
- readme.txt +351 -344
includes/admin/class-jpibfi-admin.php
CHANGED
@@ -72,23 +72,28 @@ class JPIBFI_Admin {
|
|
72 |
/* Prints admin page */
|
73 |
public function print_admin_page() {
|
74 |
|
|
|
|
|
|
|
|
|
75 |
//dictionary of tab names associated with settings to render names
|
76 |
$settings_tabs = array(
|
77 |
'selection_options' => array(
|
78 |
'settings_name' => 'jpibfi_selection_options',
|
79 |
'tab_label' => __( 'Selection', 'jquery-pin-it-button-for-images' ),
|
80 |
-
'support_link' => 'http://wordpress.org/support/plugin/jquery-pin-it-button-for-images',
|
81 |
),
|
82 |
'visual_options' => array(
|
83 |
'settings_name' => 'jpibfi_visual_options',
|
84 |
'tab_label' => __( 'Visual', 'jquery-pin-it-button-for-images' ),
|
85 |
-
'support_link' => 'http://wordpress.org/support/plugin/jquery-pin-it-button-for-images',
|
86 |
),
|
87 |
'advanced_options' => array(
|
88 |
'settings_name' => 'jpibfi_advanced_options',
|
89 |
'tab_label' => __('Advanced', 'jquery-pin-it-button-for-images' ),
|
90 |
-
|
91 |
-
|
|
|
|
|
|
|
92 |
);
|
93 |
|
94 |
$settings_tabs = apply_filters( 'jpibfi_settings_tabs', $settings_tabs);
|
72 |
/* Prints admin page */
|
73 |
public function print_admin_page() {
|
74 |
|
75 |
+
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
76 |
+
JPIBFI_Import_Export::get_instance()->handle_import();
|
77 |
+
}
|
78 |
+
|
79 |
//dictionary of tab names associated with settings to render names
|
80 |
$settings_tabs = array(
|
81 |
'selection_options' => array(
|
82 |
'settings_name' => 'jpibfi_selection_options',
|
83 |
'tab_label' => __( 'Selection', 'jquery-pin-it-button-for-images' ),
|
|
|
84 |
),
|
85 |
'visual_options' => array(
|
86 |
'settings_name' => 'jpibfi_visual_options',
|
87 |
'tab_label' => __( 'Visual', 'jquery-pin-it-button-for-images' ),
|
|
|
88 |
),
|
89 |
'advanced_options' => array(
|
90 |
'settings_name' => 'jpibfi_advanced_options',
|
91 |
'tab_label' => __('Advanced', 'jquery-pin-it-button-for-images' ),
|
92 |
+
),
|
93 |
+
'import_export' => array(
|
94 |
+
'settings_name' => 'jpibfi_import_export_options',
|
95 |
+
'tab_label' => __('Import/Export', 'jquery-pin-it-button-for-images')
|
96 |
+
)
|
97 |
);
|
98 |
|
99 |
$settings_tabs = apply_filters( 'jpibfi_settings_tabs', $settings_tabs);
|
includes/admin/class-jpibfi-advanced-options.php
CHANGED
@@ -28,7 +28,7 @@ class JPIBFI_Advanced_Options extends JPIBFI_Options {
|
|
28 |
return apply_filters( 'jpibfi_default_advanced_options', $defaults );
|
29 |
}
|
30 |
|
31 |
-
function get_option_name(){
|
32 |
return 'jpibfi_advanced_options';
|
33 |
}
|
34 |
|
28 |
return apply_filters( 'jpibfi_default_advanced_options', $defaults );
|
29 |
}
|
30 |
|
31 |
+
static function get_option_name(){
|
32 |
return 'jpibfi_advanced_options';
|
33 |
}
|
34 |
|
includes/admin/class-jpibfi-import-export.php
ADDED
@@ -0,0 +1,179 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class JPIBFI_Import_Export {
|
4 |
+
|
5 |
+
protected static $instance = null;
|
6 |
+
|
7 |
+
public static function get_instance() {
|
8 |
+
// If the single instance hasn't been set, set it now.
|
9 |
+
if ( null == self::$instance ) {
|
10 |
+
self::$instance = new self;
|
11 |
+
}
|
12 |
+
return self::$instance;
|
13 |
+
}
|
14 |
+
|
15 |
+
private function __construct(){
|
16 |
+
add_filter( 'export_args', array( $this, 'export_args' ) );
|
17 |
+
add_action( 'export_wp', array( $this, 'export_wp' ) );
|
18 |
+
add_action( 'admin_init', array( $this, 'initialize' ) );
|
19 |
+
}
|
20 |
+
|
21 |
+
private function error_message( $message, $details = '' ) {
|
22 |
+
echo '<div class="error notice is-dismissible"><p><strong>' . $message . '</strong>';
|
23 |
+
if ( ! empty( $details ) ) {
|
24 |
+
echo '<br />' . $details;
|
25 |
+
}
|
26 |
+
echo '</p></div>';
|
27 |
+
return false;
|
28 |
+
}
|
29 |
+
|
30 |
+
private function success_message(){
|
31 |
+
echo '<div class="updated notice is-dismissible"><p><strong>';
|
32 |
+
_e('Import successful', 'jquery_pin_it_button_for_images');
|
33 |
+
echo '</strong></p></div>';
|
34 |
+
}
|
35 |
+
|
36 |
+
/**
|
37 |
+
* @param array $args The export args being filtered.
|
38 |
+
* @return array The (possibly modified) export args.
|
39 |
+
*/
|
40 |
+
public function export_args( $args ) {
|
41 |
+
if ( ! empty( $_GET['content'] ) && 'jpibfi' == $_GET['content'] ) {
|
42 |
+
return array( 'jpibfi' => true );
|
43 |
+
}
|
44 |
+
return $args;
|
45 |
+
}
|
46 |
+
|
47 |
+
|
48 |
+
/**
|
49 |
+
* Export options as a JSON file if that's what the user wants to do.
|
50 |
+
*
|
51 |
+
* @param array $args The export arguments.
|
52 |
+
* @return void
|
53 |
+
*/
|
54 |
+
public function export_wp( $args ) {
|
55 |
+
if (empty($args['jpibfi']))
|
56 |
+
return;
|
57 |
+
|
58 |
+
$filename = 'jpibfi_settings_' . date( 'Y-m-d' ) . '.json';
|
59 |
+
|
60 |
+
header( 'Content-Description: File Transfer' );
|
61 |
+
header( 'Content-Disposition: attachment; filename=' . $filename );
|
62 |
+
header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ), true );
|
63 |
+
|
64 |
+
$option_names = array();
|
65 |
+
$option_names[] = JPIBFI_Selection_Options::get_option_name();
|
66 |
+
$option_names[] = JPIBFI_Visual_Options::get_option_name();
|
67 |
+
$option_names[] = JPIBFI_Advanced_Options::get_option_name();
|
68 |
+
|
69 |
+
$export_options = array();
|
70 |
+
|
71 |
+
foreach ( $option_names as $option_name ) {
|
72 |
+
|
73 |
+
$option_value = get_option( $option_name );
|
74 |
+
if ( $option_value !== false ) {
|
75 |
+
$export_options[ $option_name ] = maybe_serialize( $option_value );
|
76 |
+
}
|
77 |
+
}
|
78 |
+
$JSON_PRETTY_PRINT = defined( 'JSON_PRETTY_PRINT' ) ? JSON_PRETTY_PRINT : null;
|
79 |
+
echo json_encode( array( 'options' => $export_options ), $JSON_PRETTY_PRINT );
|
80 |
+
exit;
|
81 |
+
}
|
82 |
+
|
83 |
+
public function handle_import(){
|
84 |
+
check_admin_referer( 'import-upload' );
|
85 |
+
$file = wp_import_handle_upload();
|
86 |
+
|
87 |
+
if ( isset( $file['error'] ) ) {
|
88 |
+
return $this->error_message(
|
89 |
+
__( 'Sorry, there has been an error.', 'jquery_pin_it_button_for_images' ),
|
90 |
+
esc_html( $file['error'] )
|
91 |
+
);
|
92 |
+
}
|
93 |
+
|
94 |
+
if ( ! isset( $file['file'], $file['id'] ) ) {
|
95 |
+
return $this->error_message(
|
96 |
+
__( 'Sorry, there has been an error.', 'jquery-pin-it-button-for-images' ),
|
97 |
+
__( 'The file did not upload properly. Please try again.', 'jquery-pin-it-button-for-images' )
|
98 |
+
);
|
99 |
+
}
|
100 |
+
|
101 |
+
if ( ! file_exists( $file['file'] ) ) {
|
102 |
+
wp_import_cleanup( $file['id'] );
|
103 |
+
return $this->error_message(
|
104 |
+
__( 'Sorry, there has been an error.', 'jquery-pin-it-button-for-images' ),
|
105 |
+
sprintf( __( 'The export file could not be found at <code>%s</code>. It is likely that this was caused by a permissions problem.', 'jquery-pin-it-button-for-images' ), esc_html( $file['file'] ) )
|
106 |
+
);
|
107 |
+
}
|
108 |
+
|
109 |
+
if ( ! is_file( $file['file'] ) ) {
|
110 |
+
wp_import_cleanup( $file['id'] );
|
111 |
+
return $this->error_message(
|
112 |
+
__( 'Sorry, there has been an error.', 'jquery-pin-it-button-for-images' ),
|
113 |
+
__( 'The path is not a file, please try again.', 'jquery-pin-it-button-for-images' )
|
114 |
+
);
|
115 |
+
}
|
116 |
+
|
117 |
+
$file_contents = file_get_contents( $file['file'] );
|
118 |
+
$data = json_decode( $file_contents, true );
|
119 |
+
wp_import_cleanup( $file['id']);
|
120 |
+
|
121 |
+
$options_to_import = $data['options'];
|
122 |
+
foreach ( (array)$options_to_import as $option_name => $option_value ) {
|
123 |
+
|
124 |
+
$val= maybe_unserialize( $option_value );
|
125 |
+
update_option( $option_name, $val );
|
126 |
+
//var_dump($option_name, get_option($option_name), $val);
|
127 |
+
}
|
128 |
+
$this->success_message();
|
129 |
+
}
|
130 |
+
|
131 |
+
public function initialize(){
|
132 |
+
|
133 |
+
add_settings_section(
|
134 |
+
'import_export_section',
|
135 |
+
__( 'Import/Export Settings', 'jquery-pin-it-button-for-images' ),
|
136 |
+
'__return_false',
|
137 |
+
'jpibfi_import_export_options'
|
138 |
+
);
|
139 |
+
|
140 |
+
add_settings_field(
|
141 |
+
'Export',
|
142 |
+
__( 'Export', 'jquery-pin-it-button-for-images' ),
|
143 |
+
array( $this, 'export_callback' ),
|
144 |
+
'jpibfi_import_export_options',
|
145 |
+
'import_export_section',
|
146 |
+
array()
|
147 |
+
);
|
148 |
+
|
149 |
+
add_settings_field(
|
150 |
+
'Import',
|
151 |
+
__( 'Import', 'jquery-pin-it-button-for-images' ),
|
152 |
+
array( $this, 'import_callback' ),
|
153 |
+
'jpibfi_import_export_options',
|
154 |
+
'import_export_section',
|
155 |
+
array()
|
156 |
+
);
|
157 |
+
|
158 |
+
register_setting(
|
159 |
+
'jpibfi_import_export_options',
|
160 |
+
'jpibfi_import_export_options'
|
161 |
+
);
|
162 |
+
}
|
163 |
+
|
164 |
+
public function export_callback( $args ){
|
165 |
+
|
166 |
+
echo '<a class="button button-primary" href="' . admin_url('export.php?download=true&content=jpibfi'). '">'
|
167 |
+
.__('Download Export File', 'jquery-pin-it-button-for-images')
|
168 |
+
.'</a>';
|
169 |
+
|
170 |
+
}
|
171 |
+
|
172 |
+
public function import_callback(){
|
173 |
+
_e( 'Choose a JSON (.json) file to upload, then click Upload file and import.', 'jquery-pin-it-button-for-images' );
|
174 |
+
wp_import_upload_form( 'options-general.php?page=jpibfi_settings&tab=import_export');
|
175 |
+
}
|
176 |
+
}
|
177 |
+
|
178 |
+
|
179 |
+
add_action( 'plugins_loaded', array( 'JPIBFI_Import_Export', 'get_instance' ) );
|
includes/admin/class-jpibfi-options.php
CHANGED
@@ -4,7 +4,10 @@ if (!class_exists('JPIBFI_Options')){
|
|
4 |
|
5 |
abstract class JPIBFI_Options {
|
6 |
|
7 |
-
protected
|
|
|
|
|
|
|
8 |
protected abstract function get_default_options();
|
9 |
|
10 |
private function get_db_options(){
|
4 |
|
5 |
abstract class JPIBFI_Options {
|
6 |
|
7 |
+
protected static function get_option_name(){
|
8 |
+
return '';
|
9 |
+
}
|
10 |
+
|
11 |
protected abstract function get_default_options();
|
12 |
|
13 |
private function get_db_options(){
|
includes/admin/class-jpibfi-selection-options.php
CHANGED
@@ -36,7 +36,7 @@ class JPIBFI_Selection_Options extends JPIBFI_Options {
|
|
36 |
return apply_filters('jpibfi_default_selection_options', $defaults);
|
37 |
}
|
38 |
|
39 |
-
function get_option_name(){
|
40 |
return 'jpibfi_selection_options';
|
41 |
}
|
42 |
|
@@ -244,6 +244,7 @@ class JPIBFI_Selection_Options extends JPIBFI_Options {
|
|
244 |
}
|
245 |
|
246 |
public function sanitize_selection_options( $input ) {
|
|
|
247 |
$jpibfi_selection_options = $this->get_options();
|
248 |
|
249 |
foreach( $input as $key => $value ) {
|
@@ -258,6 +259,7 @@ class JPIBFI_Selection_Options extends JPIBFI_Options {
|
|
258 |
else if ( 'enabled_classes' == $key )
|
259 |
$field = __( 'Enabled classes', 'jquery-pin-it-button-for-images' );
|
260 |
|
|
|
261 |
add_settings_error(
|
262 |
$key,
|
263 |
esc_attr( 'settings_updated' ),
|
@@ -275,6 +277,7 @@ class JPIBFI_Selection_Options extends JPIBFI_Options {
|
|
275 |
else if ( 'min_image_width' == $key )
|
276 |
$field = __( 'Minimum image width', 'jquery-pin-it-button-for-images' );
|
277 |
|
|
|
278 |
add_settings_error(
|
279 |
$key,
|
280 |
esc_attr( 'settings_updated' ),
|
@@ -293,9 +296,8 @@ class JPIBFI_Selection_Options extends JPIBFI_Options {
|
|
293 |
}
|
294 |
}
|
295 |
|
296 |
-
$errors = get_settings_errors();
|
297 |
|
298 |
-
if (
|
299 |
|
300 |
update_option( $this->get_option_name() . '_errors', $input );
|
301 |
return $jpibfi_selection_options;
|
36 |
return apply_filters('jpibfi_default_selection_options', $defaults);
|
37 |
}
|
38 |
|
39 |
+
static function get_option_name(){
|
40 |
return 'jpibfi_selection_options';
|
41 |
}
|
42 |
|
244 |
}
|
245 |
|
246 |
public function sanitize_selection_options( $input ) {
|
247 |
+
$errors = false;
|
248 |
$jpibfi_selection_options = $this->get_options();
|
249 |
|
250 |
foreach( $input as $key => $value ) {
|
259 |
else if ( 'enabled_classes' == $key )
|
260 |
$field = __( 'Enabled classes', 'jquery-pin-it-button-for-images' );
|
261 |
|
262 |
+
$errors = true;
|
263 |
add_settings_error(
|
264 |
$key,
|
265 |
esc_attr( 'settings_updated' ),
|
277 |
else if ( 'min_image_width' == $key )
|
278 |
$field = __( 'Minimum image width', 'jquery-pin-it-button-for-images' );
|
279 |
|
280 |
+
$errors = true;
|
281 |
add_settings_error(
|
282 |
$key,
|
283 |
esc_attr( 'settings_updated' ),
|
296 |
}
|
297 |
}
|
298 |
|
|
|
299 |
|
300 |
+
if ( $errors ) {
|
301 |
|
302 |
update_option( $this->get_option_name() . '_errors', $input );
|
303 |
return $jpibfi_selection_options;
|
includes/admin/class-jpibfi-visual-options.php
CHANGED
@@ -53,7 +53,7 @@ class JPIBFI_Visual_Options extends JPIBFI_Options {
|
|
53 |
return apply_filters( 'jpibfi_default_visual_options', $defaults );
|
54 |
}
|
55 |
|
56 |
-
function get_option_name(){
|
57 |
return 'jpibfi_visual_options';
|
58 |
}
|
59 |
|
@@ -364,6 +364,7 @@ class JPIBFI_Visual_Options extends JPIBFI_Options {
|
|
364 |
}
|
365 |
|
366 |
public function sanitize_visual_options( $input ) {
|
|
|
367 |
$jpibfi_visual_options = $this->get_options();
|
368 |
|
369 |
foreach( $input as $key => $value ) {
|
@@ -378,6 +379,7 @@ class JPIBFI_Visual_Options extends JPIBFI_Options {
|
|
378 |
$name = __('Custom image width', 'jquery-pin-it-button-for-images' );
|
379 |
|
380 |
if ( '' != $value && ( !is_numeric( $value ) || $value < 0 ) ) {
|
|
|
381 |
add_settings_error(
|
382 |
$key,
|
383 |
esc_attr( 'settings_updated' ),
|
@@ -387,7 +389,7 @@ class JPIBFI_Visual_Options extends JPIBFI_Options {
|
|
387 |
break;
|
388 |
case 'transparency_value':
|
389 |
if ( !is_numeric( $input[ $key ] ) || ( $input[ $key ] < 0.0 ) || ( $input[ $key ] > 1.0 ) ) {
|
390 |
-
|
391 |
add_settings_error(
|
392 |
$key,
|
393 |
esc_attr( 'settings_updated' ),
|
@@ -410,9 +412,7 @@ class JPIBFI_Visual_Options extends JPIBFI_Options {
|
|
410 |
$input[ $setting_name ] = '0';
|
411 |
}
|
412 |
|
413 |
-
$errors
|
414 |
-
|
415 |
-
if ( count( $errors ) > 0 ) {
|
416 |
|
417 |
update_option( $this->get_option_name() . '_errors', $input );
|
418 |
return $jpibfi_visual_options;
|
53 |
return apply_filters( 'jpibfi_default_visual_options', $defaults );
|
54 |
}
|
55 |
|
56 |
+
static function get_option_name(){
|
57 |
return 'jpibfi_visual_options';
|
58 |
}
|
59 |
|
364 |
}
|
365 |
|
366 |
public function sanitize_visual_options( $input ) {
|
367 |
+
$errors = false;
|
368 |
$jpibfi_visual_options = $this->get_options();
|
369 |
|
370 |
foreach( $input as $key => $value ) {
|
379 |
$name = __('Custom image width', 'jquery-pin-it-button-for-images' );
|
380 |
|
381 |
if ( '' != $value && ( !is_numeric( $value ) || $value < 0 ) ) {
|
382 |
+
$errors = true;
|
383 |
add_settings_error(
|
384 |
$key,
|
385 |
esc_attr( 'settings_updated' ),
|
389 |
break;
|
390 |
case 'transparency_value':
|
391 |
if ( !is_numeric( $input[ $key ] ) || ( $input[ $key ] < 0.0 ) || ( $input[ $key ] > 1.0 ) ) {
|
392 |
+
$errors = true;
|
393 |
add_settings_error(
|
394 |
$key,
|
395 |
esc_attr( 'settings_updated' ),
|
412 |
$input[ $setting_name ] = '0';
|
413 |
}
|
414 |
|
415 |
+
if ( $errors ) {
|
|
|
|
|
416 |
|
417 |
update_option( $this->get_option_name() . '_errors', $input );
|
418 |
return $jpibfi_visual_options;
|
includes/admin/views/admin.php
CHANGED
@@ -3,32 +3,36 @@
|
|
3 |
?>
|
4 |
<div class="wrap">
|
5 |
|
6 |
-
|
7 |
-
<?php
|
8 |
-
$tab = isset( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : 'selection_options';
|
9 |
-
$tab_found = false;
|
10 |
-
foreach( $settings_tabs as $tab_name => $tab_settings)
|
11 |
-
|
12 |
-
|
13 |
-
$tab = false == $tab_found ? 'selection_options' : $tab;
|
14 |
-
$current_settings = $settings_tabs[ $tab ];
|
15 |
-
?>
|
16 |
-
<div id="icon-plugins" class="icon32"></div>
|
17 |
-
<h2 class="nav-tab-wrapper">
|
18 |
-
<?php foreach( $settings_tabs as $tab_name => $settings) { ?>
|
19 |
-
<a href="?page=jpibfi_settings&tab=<?php echo $tab_name; ?>" class="nav-tab <?php echo $tab_name == $tab ? 'nav-tab-active' : ''; ?>"><?php echo $settings['tab_label']; ?></a>
|
20 |
-
<?php } ?>
|
21 |
-
</h2>
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
<
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
</div>
|
3 |
?>
|
4 |
<div class="wrap">
|
5 |
|
6 |
+
<h2><?php _e( 'jQuery Pin It Button For Images Options', 'jquery-pin-it-button-for-images' ); ?></h2>
|
7 |
+
<?php
|
8 |
+
$tab = isset( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : 'selection_options';
|
9 |
+
$tab_found = false;
|
10 |
+
foreach( $settings_tabs as $tab_name => $tab_settings)
|
11 |
+
$tab_found = $tab_found || ( $tab_name == $tab );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
+
$tab = false == $tab_found ? 'selection_options' : $tab;
|
14 |
+
$current_settings = $settings_tabs[ $tab ];
|
15 |
+
?>
|
16 |
+
<div id="icon-plugins" class="icon32"></div>
|
17 |
+
<h2 class="nav-tab-wrapper">
|
18 |
+
<?php foreach( $settings_tabs as $tab_name => $settings) { ?>
|
19 |
+
<a href="?page=jpibfi_settings&tab=<?php echo $tab_name; ?>" class="nav-tab <?php echo $tab_name == $tab ? 'nav-tab-active' : ''; ?>"><?php echo $settings['tab_label']; ?></a>
|
20 |
+
<?php } ?>
|
21 |
+
</h2>
|
22 |
+
<p>
|
23 |
+
<a href="http://mrsztuczkens.me/how-to-get-the-most-out-of-jpibfi/" class="button" target="_blank" rel="nofollow"><b><?php _e( 'How to Get The Most Out of JPIBFI', 'jquery-pin-it-button-for-images' ); ?></b></a>
|
24 |
+
<a href="http://wordpress.org/support/plugin/jquery-pin-it-button-for-images" class="button" target="_blank" rel="nofollow"><b><?php _e( 'Support forum', 'jquery-pin-it-button-for-images' ); ?></b></a>
|
25 |
+
</p>
|
26 |
+
<?php if ($tab != 'import_export'): ?>
|
27 |
+
<form method="post" action="options.php">
|
28 |
+
<?php endif; ?>
|
29 |
+
<?php
|
30 |
+
settings_fields( $current_settings[ 'settings_name'] );
|
31 |
+
do_settings_sections( $current_settings[ 'settings_name'] );
|
32 |
+
if ($tab != 'import_export')
|
33 |
+
submit_button();
|
34 |
+
?>
|
35 |
+
<?php if ($tab != 'import_export'): ?>
|
36 |
+
</form>
|
37 |
+
<?php endif; ?>
|
38 |
</div>
|
includes/admin/views/notice.php
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
<div class="updated">
|
2 |
-
<p><?php _e('<strong>jQuery Pin It Button for Images Pro</strong> is coming soon.', 'jquery-pin-it-button-for-images'); ?></p>
|
3 |
-
</div>
|
|
|
|
|
|
index.php
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
<?php
|
2 |
/* Let The Force Be With You */
|
1 |
+
<?php
|
2 |
/* Let The Force Be With You */
|
jquery-pin-it-button-for-images.php
CHANGED
@@ -6,7 +6,7 @@ Description: Highlights images on hover and adds a "Pin It" button over them for
|
|
6 |
Text Domain: jquery-pin-it-button-for-images
|
7 |
Domain Path: /languages
|
8 |
Author: Marcin Skrzypiec
|
9 |
-
Version:1.
|
10 |
Author URI: http://mrsztuczkens.me/
|
11 |
*/
|
12 |
|
@@ -42,7 +42,7 @@ if ( ! class_exists( 'jQuery_Pin_It_Button_For_Images' ) ) :
|
|
42 |
private function includes() {
|
43 |
|
44 |
require_once(plugin_dir_path(__FILE__) . 'includes/class-jpibfi-globals.php');
|
45 |
-
JPIBFI_Globals::init(__FILE__, '1.
|
46 |
|
47 |
$files = array(
|
48 |
'includes/admin/class-jpibfi-admin-utilities.php',
|
@@ -51,6 +51,7 @@ if ( ! class_exists( 'jQuery_Pin_It_Button_For_Images' ) ) :
|
|
51 |
'includes/admin/class-jpibfi-advanced-options.php',
|
52 |
'includes/admin/class-jpibfi-visual-options.php',
|
53 |
'includes/admin/class-jpibfi-admin.php',
|
|
|
54 |
'includes/public/class-jpibfi-client-utilities.php',
|
55 |
'includes/public/class-jpibfi-client.php'
|
56 |
);
|
6 |
Text Domain: jquery-pin-it-button-for-images
|
7 |
Domain Path: /languages
|
8 |
Author: Marcin Skrzypiec
|
9 |
+
Version:1.52
|
10 |
Author URI: http://mrsztuczkens.me/
|
11 |
*/
|
12 |
|
42 |
private function includes() {
|
43 |
|
44 |
require_once(plugin_dir_path(__FILE__) . 'includes/class-jpibfi-globals.php');
|
45 |
+
JPIBFI_Globals::init(__FILE__, '1.52', 'a');
|
46 |
|
47 |
$files = array(
|
48 |
'includes/admin/class-jpibfi-admin-utilities.php',
|
51 |
'includes/admin/class-jpibfi-advanced-options.php',
|
52 |
'includes/admin/class-jpibfi-visual-options.php',
|
53 |
'includes/admin/class-jpibfi-admin.php',
|
54 |
+
'includes/admin/class-jpibfi-import-export.php',
|
55 |
'includes/public/class-jpibfi-client-utilities.php',
|
56 |
'includes/public/class-jpibfi-client.php'
|
57 |
);
|
languages/jquery-pin-it-button-for-images-es_ES.pot
CHANGED
@@ -1,499 +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/"
|
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/"
|
languages/jquery-pin-it-button-for-images.pot
CHANGED
@@ -15,378 +15,414 @@ msgstr ""
|
|
15 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n\n"
|
17 |
|
18 |
-
#: includes
|
19 |
msgid "Selection"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: includes
|
23 |
msgid "Visual"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: includes
|
27 |
msgid "Advanced"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: includes
|
|
|
|
|
|
|
|
|
31 |
msgid "Settings"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: includes
|
35 |
msgid "Disable \"Pin it\" button for this post (works only on single pages/posts)"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: includes
|
39 |
msgid "jQuery Pin It Button for Images Pro is coming soon. Click <a target=\"_blank\" href=\"%s\">here</a> to learn more."
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: includes
|
43 |
msgid "Advanced Settings"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes
|
47 |
msgid "Debug"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: includes
|
51 |
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"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes
|
55 |
msgid "Container selector"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: includes
|
59 |
msgid "This is the selector used to find the container that holds the entire single post. It looks for an element that is a parent of the content of the post. Usually it's a div or article element. This setting is important to making \"Use post url\" visual setting work properly."
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: includes
|
63 |
msgid "Advanced settings"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: includes
|
67 |
msgid "Enable debug mode"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: includes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
msgid "Image selector"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: includes
|
75 |
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."
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: includes
|
79 |
msgid "Disabled classes"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: includes
|
83 |
msgid "Pictures with these CSS classes won't show the \"Pin it\" button. Please separate multiple classes with semicolons. Spaces are not accepted."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: includes
|
87 |
msgid "Enabled classes"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: includes
|
91 |
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."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: includes
|
95 |
msgid "On which pages the \"Pin it\" button should be shown"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: includes
|
99 |
msgid "Check on which pages you want the Pinterest button to show up."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes
|
103 |
msgid "Minimum resolution that should trigger the \"Pin it\" button to show up"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes
|
107 |
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."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: includes
|
111 |
msgid "Which images can be pinned"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes
|
115 |
msgid "No classes added."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: includes
|
119 |
msgid "Class name"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: includes
|
123 |
msgid "Add"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: includes
|
127 |
msgid "Home page"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: includes
|
131 |
msgid "Pages"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: includes
|
135 |
msgid "Single posts"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: includes
|
139 |
msgid "Category and archive pages"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: includes
|
143 |
msgid "Blog pages"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: includes
|
147 |
msgid "Height"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: includes
|
151 |
msgid "Width"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: includes
|
155 |
msgid "the given value doesn't meet the requirements. Please correct it and try again."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: includes
|
159 |
msgid "Minimum image height"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: includes
|
163 |
msgid "Minimum image width"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: includes
|
167 |
msgid "value must be a number greater or equal to %d."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: includes
|
171 |
msgid "Show button"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: includes
|
175 |
msgid "When the \"Pin it\" button should be visible."
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: includes
|
179 |
msgid "Description source"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: includes
|
183 |
msgid "From where the Pinterest message should be taken. Please note that \"Image description\" works properly only for images that were added to your Media Library."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: includes
|
187 |
msgid "Linked page"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes
|
191 |
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."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes
|
195 |
msgid "Pin linked images"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes
|
199 |
msgid "Transparency value"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes
|
203 |
msgid "This setting sets the transparency of the image."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes
|
207 |
msgid "Custom \"Pin It\" button"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes
|
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 |
-
#: includes
|
215 |
msgid "\"Pin it\" button position"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes
|
219 |
msgid "Where the \"Pin it\" button should appear on the image."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes
|
223 |
msgid "\"Pin it\" button margins"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes
|
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 |
-
#: includes
|
231 |
msgid "Top left"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: includes
|
235 |
msgid "Bottom right"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: includes
|
239 |
msgid "Middle"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes
|
243 |
msgid "Retina friendly"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes
|
247 |
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."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes
|
251 |
msgid "How it should look like"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes
|
255 |
msgid "On hover"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: includes
|
259 |
msgid "Always on touch devices"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: includes
|
263 |
msgid "Always"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes
|
267 |
msgid "This feature is disabled in this version of the plugin. Consider buying <a target=\"_blank\" href=\"%s\">the PRO version</a>."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes
|
271 |
msgid "Page title"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes
|
275 |
msgid "Page description"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes
|
279 |
msgid "Picture title or (if title not available) alt attribute"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes
|
283 |
msgid "Site title (Settings->General)"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes
|
287 |
msgid "Image description"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes
|
291 |
msgid "Image alt attribute"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes
|
295 |
msgid "Always link to individual post page"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes
|
299 |
msgid "Active"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes
|
303 |
msgid "When checked, pins full-sized images instead of thumbnails (works only if you link thumbnails to their full versions)."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes
|
307 |
msgid "File extensions to use"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes
|
311 |
msgid "Leaving this empty means files of any extension will be used (also those without any extension). If you want to use only files of specific extension(s), type those file extensions here (separated by commas)."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: includes
|
315 |
msgid "Choose transparency (between %.02f and %.02f)"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: includes
|
319 |
msgid "Use custom image"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: includes
|
323 |
msgid "Upload an image using media library"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: includes
|
327 |
msgid "URL address of the image"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes
|
331 |
msgid "Custom Pin It button preview"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes
|
335 |
msgid "Refresh preview"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes
|
339 |
msgid "Top right"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: includes
|
343 |
msgid "Bottom left"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes
|
347 |
msgid "Top"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: includes
|
351 |
msgid "Bottom"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes
|
355 |
msgid "Left"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes
|
359 |
msgid "Right"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: includes
|
363 |
msgid "Optimize for high pixel density displays"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes
|
367 |
msgid "Custom image height"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: includes
|
371 |
msgid "Custom image width"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: includes
|
375 |
msgid "Transparency value must be a number between %.02d and %.02f."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: includes
|
379 |
msgid "jQuery Pin It Button For Images Options"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: includes
|
383 |
msgid "How to Get The Most Out of JPIBFI"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: includes
|
387 |
msgid "Support forum"
|
388 |
msgstr ""
|
389 |
-
|
390 |
-
#: includes\admin\views\notice.php:3
|
391 |
-
msgid "<strong>jQuery Pin It Button for Images Pro</strong> is coming soon."
|
392 |
-
msgstr ""
|
15 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n\n"
|
17 |
|
18 |
+
#: includes/admin/class-jpibfi-admin.php:165, includes/admin/class-jpibfi-selection-options.php:121
|
19 |
msgid "Selection"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: includes/admin/class-jpibfi-admin.php:173, includes/admin/class-jpibfi-visual-options.php:147
|
23 |
msgid "Visual"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: includes/admin/class-jpibfi-admin.php:181
|
27 |
msgid "Advanced"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: includes/admin/class-jpibfi-admin.php:189
|
31 |
+
msgid "Import/Export"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: includes/admin/class-jpibfi-admin.php:227, jquery-pin-it-button-for-images.php:133
|
35 |
msgid "Settings"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: includes/admin/class-jpibfi-admin.php:263
|
39 |
msgid "Disable \"Pin it\" button for this post (works only on single pages/posts)"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: includes/admin/class-jpibfi-admin.php:333
|
43 |
msgid "jQuery Pin It Button for Images Pro is coming soon. Click <a target=\"_blank\" href=\"%s\">here</a> to learn more."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/admin/class-jpibfi-advanced-options.php:81
|
47 |
msgid "Advanced Settings"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/admin/class-jpibfi-advanced-options.php:97
|
51 |
msgid "Debug"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: includes/admin/class-jpibfi-advanced-options.php:107
|
55 |
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"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: includes/admin/class-jpibfi-advanced-options.php:119
|
59 |
msgid "Container selector"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: includes/admin/class-jpibfi-advanced-options.php:129
|
63 |
msgid "This is the selector used to find the container that holds the entire single post. It looks for an element that is a parent of the content of the post. Usually it's a div or article element. This setting is important to making \"Use post url\" visual setting work properly."
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/admin/class-jpibfi-advanced-options.php:151
|
67 |
msgid "Advanced settings"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: includes/admin/class-jpibfi-advanced-options.php:167
|
71 |
msgid "Enable debug mode"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: includes/admin/class-jpibfi-import-export.php:191, includes/admin/class-jpibfi-import-export.php:207, includes/admin/class-jpibfi-import-export.php:223
|
75 |
+
msgid "Sorry, there has been an error."
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/admin/class-jpibfi-import-export.php:193
|
79 |
+
msgid "The file did not upload properly. Please try again."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/admin/class-jpibfi-import-export.php:209
|
83 |
+
msgid "The export file could not be found at <code>%s</code>. It is likely that this was caused by a permissions problem."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/admin/class-jpibfi-import-export.php:225
|
87 |
+
msgid "The path is not a file, please try again."
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/admin/class-jpibfi-import-export.php:269
|
91 |
+
msgid "Import/Export Settings"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/admin/class-jpibfi-import-export.php:283
|
95 |
+
msgid "Export"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/admin/class-jpibfi-import-export.php:301
|
99 |
+
msgid "Import"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/admin/class-jpibfi-import-export.php:333
|
103 |
+
msgid "Download Export File"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/admin/class-jpibfi-import-export.php:345
|
107 |
+
msgid "Choose a JSON (.json) file to upload, then click Upload file and import."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/admin/class-jpibfi-selection-options.php:137
|
111 |
msgid "Image selector"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/admin/class-jpibfi-selection-options.php:147
|
115 |
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."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: includes/admin/class-jpibfi-selection-options.php:169, includes/admin/class-jpibfi-selection-options.php:515
|
119 |
msgid "Disabled classes"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: includes/admin/class-jpibfi-selection-options.php:179
|
123 |
msgid "Pictures with these CSS classes won't show the \"Pin it\" button. Please separate multiple classes with semicolons. Spaces are not accepted."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: includes/admin/class-jpibfi-selection-options.php:191, includes/admin/class-jpibfi-selection-options.php:519
|
127 |
msgid "Enabled classes"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: includes/admin/class-jpibfi-selection-options.php:201
|
131 |
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."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: includes/admin/class-jpibfi-selection-options.php:213
|
135 |
msgid "On which pages the \"Pin it\" button should be shown"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: includes/admin/class-jpibfi-selection-options.php:223
|
139 |
msgid "Check on which pages you want the Pinterest button to show up."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: includes/admin/class-jpibfi-selection-options.php:235
|
143 |
msgid "Minimum resolution that should trigger the \"Pin it\" button to show up"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: includes/admin/class-jpibfi-selection-options.php:245
|
147 |
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."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: includes/admin/class-jpibfi-selection-options.php:269
|
151 |
msgid "Which images can be pinned"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: includes/admin/class-jpibfi-selection-options.php:309, includes/admin/class-jpibfi-selection-options.php:357
|
155 |
msgid "No classes added."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: includes/admin/class-jpibfi-selection-options.php:317, includes/admin/class-jpibfi-selection-options.php:365
|
159 |
msgid "Class name"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: includes/admin/class-jpibfi-selection-options.php:323, includes/admin/class-jpibfi-selection-options.php:371
|
163 |
msgid "Add"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: includes/admin/class-jpibfi-selection-options.php:411
|
167 |
msgid "Home page"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: includes/admin/class-jpibfi-selection-options.php:415
|
171 |
msgid "Pages"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: includes/admin/class-jpibfi-selection-options.php:419
|
175 |
msgid "Single posts"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: includes/admin/class-jpibfi-selection-options.php:423
|
179 |
msgid "Category and archive pages"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: includes/admin/class-jpibfi-selection-options.php:427
|
183 |
msgid "Blog pages"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: includes/admin/class-jpibfi-selection-options.php:455, includes/admin/class-jpibfi-visual-options.php:575
|
187 |
msgid "Height"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: includes/admin/class-jpibfi-selection-options.php:469, includes/admin/class-jpibfi-visual-options.php:589
|
191 |
msgid "Width"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: includes/admin/class-jpibfi-selection-options.php:531
|
195 |
msgid "the given value doesn't meet the requirements. Please correct it and try again."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: includes/admin/class-jpibfi-selection-options.php:551
|
199 |
msgid "Minimum image height"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: includes/admin/class-jpibfi-selection-options.php:555
|
203 |
msgid "Minimum image width"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/admin/class-jpibfi-selection-options.php:567, includes/admin/class-jpibfi-visual-options.php:771
|
207 |
msgid "value must be a number greater or equal to %d."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/admin/class-jpibfi-visual-options.php:161
|
211 |
msgid "Show button"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/admin/class-jpibfi-visual-options.php:171
|
215 |
msgid "When the \"Pin it\" button should be visible."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/admin/class-jpibfi-visual-options.php:183
|
219 |
msgid "Description source"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/admin/class-jpibfi-visual-options.php:193
|
223 |
msgid "From where the Pinterest message should be taken. Please note that \"Image description\" works properly only for images that were added to your Media Library."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/admin/class-jpibfi-visual-options.php:205
|
227 |
msgid "Linked page"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: includes/admin/class-jpibfi-visual-options.php:215
|
231 |
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."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: includes/admin/class-jpibfi-visual-options.php:227
|
235 |
msgid "Pin linked images"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: includes/admin/class-jpibfi-visual-options.php:247
|
239 |
msgid "Transparency value"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: includes/admin/class-jpibfi-visual-options.php:257
|
243 |
msgid "This setting sets the transparency of the image."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: includes/admin/class-jpibfi-visual-options.php:269
|
247 |
msgid "Custom \"Pin It\" button"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: includes/admin/class-jpibfi-visual-options.php:279
|
251 |
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."
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: includes/admin/class-jpibfi-visual-options.php:291
|
255 |
msgid "\"Pin it\" button position"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: includes/admin/class-jpibfi-visual-options.php:301
|
259 |
msgid "Where the \"Pin it\" button should appear on the image."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: includes/admin/class-jpibfi-visual-options.php:313
|
263 |
msgid "\"Pin it\" button margins"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/admin/class-jpibfi-visual-options.php:323
|
267 |
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."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/admin/class-jpibfi-visual-options.php:325, includes/admin/class-jpibfi-visual-options.php:635
|
271 |
msgid "Top left"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/admin/class-jpibfi-visual-options.php:327, includes/admin/class-jpibfi-visual-options.php:641
|
275 |
msgid "Bottom right"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/admin/class-jpibfi-visual-options.php:329, includes/admin/class-jpibfi-visual-options.php:643
|
279 |
msgid "Middle"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: includes/admin/class-jpibfi-visual-options.php:343
|
283 |
msgid "Retina friendly"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: includes/admin/class-jpibfi-visual-options.php:353
|
287 |
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."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/admin/class-jpibfi-visual-options.php:377
|
291 |
msgid "How it should look like"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/admin/class-jpibfi-visual-options.php:393
|
295 |
msgid "On hover"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/admin/class-jpibfi-visual-options.php:395
|
299 |
msgid "Always on touch devices"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: includes/admin/class-jpibfi-visual-options.php:397
|
303 |
msgid "Always"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/admin/class-jpibfi-visual-options.php:407
|
307 |
msgid "This feature is disabled in this version of the plugin. Consider buying <a target=\"_blank\" href=\"%s\">the PRO version</a>."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/admin/class-jpibfi-visual-options.php:433
|
311 |
msgid "Page title"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: includes/admin/class-jpibfi-visual-options.php:435
|
315 |
msgid "Page description"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: includes/admin/class-jpibfi-visual-options.php:437
|
319 |
msgid "Picture title or (if title not available) alt attribute"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: includes/admin/class-jpibfi-visual-options.php:439
|
323 |
msgid "Site title (Settings->General)"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: includes/admin/class-jpibfi-visual-options.php:441
|
327 |
msgid "Image description"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: includes/admin/class-jpibfi-visual-options.php:443
|
331 |
msgid "Image alt attribute"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/admin/class-jpibfi-visual-options.php:469
|
335 |
msgid "Always link to individual post page"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: includes/admin/class-jpibfi-visual-options.php:493
|
339 |
msgid "Active"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: includes/admin/class-jpibfi-visual-options.php:495
|
343 |
msgid "When checked, pins full-sized images instead of thumbnails (works only if you link thumbnails to their full versions)."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: includes/admin/class-jpibfi-visual-options.php:497
|
347 |
msgid "File extensions to use"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: includes/admin/class-jpibfi-visual-options.php:501
|
351 |
msgid "Leaving this empty means files of any extension will be used (also those without any extension). If you want to use only files of specific extension(s), type those file extensions here (separated by commas)."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/admin/class-jpibfi-visual-options.php:517
|
355 |
msgid "Choose transparency (between %.02f and %.02f)"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/admin/class-jpibfi-visual-options.php:553
|
359 |
msgid "Use custom image"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: includes/admin/class-jpibfi-visual-options.php:559
|
363 |
msgid "Upload an image using media library"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: includes/admin/class-jpibfi-visual-options.php:565
|
367 |
msgid "URL address of the image"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: includes/admin/class-jpibfi-visual-options.php:603
|
371 |
msgid "Custom Pin It button preview"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: includes/admin/class-jpibfi-visual-options.php:611
|
375 |
msgid "Refresh preview"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: includes/admin/class-jpibfi-visual-options.php:637
|
379 |
msgid "Top right"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: includes/admin/class-jpibfi-visual-options.php:639
|
383 |
msgid "Bottom left"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: includes/admin/class-jpibfi-visual-options.php:683
|
387 |
msgid "Top"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: includes/admin/class-jpibfi-visual-options.php:687
|
391 |
msgid "Bottom"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: includes/admin/class-jpibfi-visual-options.php:691
|
395 |
msgid "Left"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: includes/admin/class-jpibfi-visual-options.php:695
|
399 |
msgid "Right"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: includes/admin/class-jpibfi-visual-options.php:721
|
403 |
msgid "Optimize for high pixel density displays"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: includes/admin/class-jpibfi-visual-options.php:753
|
407 |
msgid "Custom image height"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: includes/admin/class-jpibfi-visual-options.php:757
|
411 |
msgid "Custom image width"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: includes/admin/class-jpibfi-visual-options.php:791
|
415 |
msgid "Transparency value must be a number between %.02d and %.02f."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: includes/admin/views/admin.php:11
|
419 |
msgid "jQuery Pin It Button For Images Options"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/admin/views/admin.php:45
|
423 |
msgid "How to Get The Most Out of JPIBFI"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/admin/views/admin.php:47
|
427 |
msgid "Support forum"
|
428 |
msgstr ""
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -1,345 +1,352 @@
|
|
1 |
-
=== jQuery Pin It Button For Images ===
|
2 |
-
Contributors: mrsztuczkens, redearthdesign, brocheafoin, robertark
|
3 |
-
Tags: pinterest, pin it, button, image, images, pinit, social media, hover, click, photo, photos
|
4 |
-
Requires at least: 3.3.0
|
5 |
-
Tested up to: 4.4.2
|
6 |
-
Stable tag: 1.
|
7 |
-
License: GPLv2 or later
|
8 |
-
|
9 |
-
Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
|
10 |
-
|
11 |
-
== Description ==
|
12 |
-
If you're looking for an easy way to pin images in your blog posts and pages, this plugin will help you with that. It highlights images and adds a "Pin it" button over them once the user hovers his mouse over an image. Once the user clicks the "Pin it" button, the plugin shows a pop-up window with the image and a description. Everything is ready for pinning, although the user can alter the description.
|
13 |
-
|
14 |
-
The plugin allows you to:
|
15 |
-
|
16 |
-
* choose from where the pin description should be taken
|
17 |
-
* choose which pictures shouldn't show the "Pin it" button (using classes)
|
18 |
-
* choose which pictures should show the "Pin it" button (all images, post images, images with certain class(es))
|
19 |
-
* choose if you want to show the "Pin it" button on home page, single posts, single pages or category pages
|
20 |
-
* disable showing the button on certain posts and pages (works only on single posts and single pages)
|
21 |
-
* choose transparency level depending on your needs
|
22 |
-
* use your own Pinterest button design
|
23 |
-
|
24 |
-
Once you activate the plugin, it's ready to go with the default settings - button appears on all images within the body of your posts/pages that aren't marked with "nopin" or "wp-smiley" classes.
|
25 |
-
|
26 |
-
> <strong>jQuery Pin It Button For Images Pro</strong><br>
|
27 |
-
> jQuery Pin It Button For Images Pro is
|
28 |
-
|
29 |
-
**Translators**
|
30 |
-
- Spanish (es_ES) - Andrew Kurtis [WebHostingHub](http://www.webhostinghub.com/)
|
31 |
-
|
32 |
-
If you want to learn more about the plugin, visit its website: http://mrsztuczkens.me/jpibfi/
|
33 |
-
|
34 |
-
(This plugin is not related to or endorsed by Pinterest or its affiliates)
|
35 |
-
|
36 |
-
== Installation ==
|
37 |
-
|
38 |
-
1. Upload the folder to the `/wp-content/plugins/` directory
|
39 |
-
1. Activate the plugin through the 'Plugins' menu in WordPress
|
40 |
-
1. Configuration interface can be found under `Settings - jQuery Pin It Button For Images`. There's also a link to the plugin settings in the "Installed plugins" menu.
|
41 |
-
|
42 |
-
== Frequently Asked Questions ==
|
43 |
-
|
44 |
-
= Where can I change the plugins settings? =
|
45 |
-
|
46 |
-
Configuration interface can be found under `Settings - jQuery Pin It Button For Images`. There's also a link to the plugin settings in the "Installed plugins" menu.
|
47 |
-
|
48 |
-
= How do I add the button only to specific images? =
|
49 |
-
On the plugin settings page, there is a "Enabled classes" setting. Please enter there a class (or classes) that should show the "Pin it" button. Please note that images that don't contain any of the classes added in this setting won't show the "Pin it" button.
|
50 |
-
|
51 |
-
= How do I disable the button on specific images? =
|
52 |
-
Use the "Disabled classes" setting on the settings page - add there specific classes or use the "nopin" class.
|
53 |
-
|
54 |
-
= Can I use my own "Pin it" button design? =
|
55 |
-
Yes. On the settings page, there's a section named "Custom Pit It button". You need to check the Use custom image checkbox and provide a URL address of the image, image's width and height.
|
56 |
-
|
57 |
-
To upload you own image, you can use **Media Library** on your Wordpress installation or an image hosting service like **Photobucket**. Make sure you provide the proper address, width and height of the image. Otherwise, the button won't be displayed properly or won't be displayed at all.
|
58 |
-
|
59 |
-
= Where do I report bugs, improvements and suggestions? =
|
60 |
-
Please report them in the plugin's support forum on Wordpress.org.
|
61 |
-
|
62 |
-
== Screenshots ==
|
63 |
-
|
64 |
-
1. Base image in a blog post
|
65 |
-
2. Highlighted image and "Pin it" button on hover
|
66 |
-
3. Settings panel
|
67 |
-
4. Pinterest pop-up window
|
68 |
-
|
69 |
-
== Changelog ==
|
70 |
-
|
71 |
-
= 1.
|
72 |
-
* Release 2016-
|
73 |
-
*
|
74 |
-
|
75 |
-
= 1.
|
76 |
-
* Release 2016-03-
|
77 |
-
*
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
*
|
82 |
-
*
|
83 |
-
|
84 |
-
= 1.
|
85 |
-
* Release 2016-
|
86 |
-
*
|
87 |
-
|
88 |
-
= 1.
|
89 |
-
* Release 2016-02-
|
90 |
-
*
|
91 |
-
|
92 |
-
= 1.
|
93 |
-
* Release
|
94 |
-
*
|
95 |
-
|
96 |
-
= 1.
|
97 |
-
* Release 2014-
|
98 |
-
*
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
*
|
103 |
-
*
|
104 |
-
|
105 |
-
= 1.
|
106 |
-
* Release 2014-06-
|
107 |
-
*
|
108 |
-
|
109 |
-
= 1.
|
110 |
-
* Release 2014-
|
111 |
-
*
|
112 |
-
|
113 |
-
= 1.
|
114 |
-
* Release 2014-05-
|
115 |
-
* Minor
|
116 |
-
|
117 |
-
= 1.
|
118 |
-
* Release 2014-
|
119 |
-
*
|
120 |
-
|
121 |
-
= 1.
|
122 |
-
* Release 2014-03-13
|
123 |
-
*
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
*
|
128 |
-
*
|
129 |
-
|
130 |
-
= 1.
|
131 |
-
* Released 2014-02-
|
132 |
-
*
|
133 |
-
|
134 |
-
= 1.
|
135 |
-
* Released
|
136 |
-
*
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
*
|
141 |
-
*
|
142 |
-
|
143 |
-
= 1.
|
144 |
-
* Released 2013-11-
|
145 |
-
*
|
146 |
-
|
147 |
-
= 1.
|
148 |
-
* Released 2013-
|
149 |
-
*
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
*
|
154 |
-
*
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
*
|
159 |
-
*
|
160 |
-
|
161 |
-
= 1.
|
162 |
-
* Released 2013-
|
163 |
-
*
|
164 |
-
|
165 |
-
= 1.
|
166 |
-
* Released 2013-08-
|
167 |
-
*
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
*
|
172 |
-
*
|
173 |
-
|
174 |
-
|
175 |
-
*
|
176 |
-
|
177 |
-
|
178 |
-
*
|
179 |
-
*
|
180 |
-
|
181 |
-
= 0.
|
182 |
-
* Released 2013-
|
183 |
-
*
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
*
|
188 |
-
*
|
189 |
-
|
190 |
-
|
191 |
-
*
|
192 |
-
|
193 |
-
|
194 |
-
*
|
195 |
-
*
|
196 |
-
|
197 |
-
|
198 |
-
*
|
199 |
-
|
200 |
-
|
201 |
-
*
|
202 |
-
*
|
203 |
-
|
204 |
-
= 0.9.
|
205 |
-
* Released 2013-02-12
|
206 |
-
*
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
*
|
212 |
-
*
|
213 |
-
|
214 |
-
= 0.
|
215 |
-
* Released 2013-01-
|
216 |
-
* Feature: Ability to
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
*
|
221 |
-
*
|
222 |
-
|
223 |
-
= 0.7 =
|
224 |
-
* Released 2012-12-
|
225 |
-
*
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
*
|
231 |
-
*
|
232 |
-
|
233 |
-
|
234 |
-
*
|
235 |
-
* Feature:
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
First version of the plugin.
|
1 |
+
=== jQuery Pin It Button For Images ===
|
2 |
+
Contributors: mrsztuczkens, redearthdesign, brocheafoin, robertark
|
3 |
+
Tags: pinterest, pin it, button, image, images, pinit, social media, hover, click, photo, photos
|
4 |
+
Requires at least: 3.3.0
|
5 |
+
Tested up to: 4.4.2
|
6 |
+
Stable tag: 1.52
|
7 |
+
License: GPLv2 or later
|
8 |
+
|
9 |
+
Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
|
10 |
+
|
11 |
+
== Description ==
|
12 |
+
If you're looking for an easy way to pin images in your blog posts and pages, this plugin will help you with that. It highlights images and adds a "Pin it" button over them once the user hovers his mouse over an image. Once the user clicks the "Pin it" button, the plugin shows a pop-up window with the image and a description. Everything is ready for pinning, although the user can alter the description.
|
13 |
+
|
14 |
+
The plugin allows you to:
|
15 |
+
|
16 |
+
* choose from where the pin description should be taken
|
17 |
+
* choose which pictures shouldn't show the "Pin it" button (using classes)
|
18 |
+
* choose which pictures should show the "Pin it" button (all images, post images, images with certain class(es))
|
19 |
+
* choose if you want to show the "Pin it" button on home page, single posts, single pages or category pages
|
20 |
+
* disable showing the button on certain posts and pages (works only on single posts and single pages)
|
21 |
+
* choose transparency level depending on your needs
|
22 |
+
* use your own Pinterest button design
|
23 |
+
|
24 |
+
Once you activate the plugin, it's ready to go with the default settings - button appears on all images within the body of your posts/pages that aren't marked with "nopin" or "wp-smiley" classes.
|
25 |
+
|
26 |
+
> <strong>jQuery Pin It Button For Images Pro</strong><br>
|
27 |
+
> jQuery Pin It Button For Images Pro is available with full support for touch devices. Check it out: http://mrsztuczkens.me/jquery-pin-it-button-for-images-pro/
|
28 |
+
|
29 |
+
**Translators**
|
30 |
+
- Spanish (es_ES) - Andrew Kurtis [WebHostingHub](http://www.webhostinghub.com/)
|
31 |
+
|
32 |
+
If you want to learn more about the plugin, visit its website: http://mrsztuczkens.me/jpibfi/
|
33 |
+
|
34 |
+
(This plugin is not related to or endorsed by Pinterest or its affiliates)
|
35 |
+
|
36 |
+
== Installation ==
|
37 |
+
|
38 |
+
1. Upload the folder to the `/wp-content/plugins/` directory
|
39 |
+
1. Activate the plugin through the 'Plugins' menu in WordPress
|
40 |
+
1. Configuration interface can be found under `Settings - jQuery Pin It Button For Images`. There's also a link to the plugin settings in the "Installed plugins" menu.
|
41 |
+
|
42 |
+
== Frequently Asked Questions ==
|
43 |
+
|
44 |
+
= Where can I change the plugins settings? =
|
45 |
+
|
46 |
+
Configuration interface can be found under `Settings - jQuery Pin It Button For Images`. There's also a link to the plugin settings in the "Installed plugins" menu.
|
47 |
+
|
48 |
+
= How do I add the button only to specific images? =
|
49 |
+
On the plugin settings page, there is a "Enabled classes" setting. Please enter there a class (or classes) that should show the "Pin it" button. Please note that images that don't contain any of the classes added in this setting won't show the "Pin it" button.
|
50 |
+
|
51 |
+
= How do I disable the button on specific images? =
|
52 |
+
Use the "Disabled classes" setting on the settings page - add there specific classes or use the "nopin" class.
|
53 |
+
|
54 |
+
= Can I use my own "Pin it" button design? =
|
55 |
+
Yes. On the settings page, there's a section named "Custom Pit It button". You need to check the Use custom image checkbox and provide a URL address of the image, image's width and height.
|
56 |
+
|
57 |
+
To upload you own image, you can use **Media Library** on your Wordpress installation or an image hosting service like **Photobucket**. Make sure you provide the proper address, width and height of the image. Otherwise, the button won't be displayed properly or won't be displayed at all.
|
58 |
+
|
59 |
+
= Where do I report bugs, improvements and suggestions? =
|
60 |
+
Please report them in the plugin's support forum on Wordpress.org.
|
61 |
+
|
62 |
+
== Screenshots ==
|
63 |
+
|
64 |
+
1. Base image in a blog post
|
65 |
+
2. Highlighted image and "Pin it" button on hover
|
66 |
+
3. Settings panel
|
67 |
+
4. Pinterest pop-up window
|
68 |
+
|
69 |
+
== Changelog ==
|
70 |
+
|
71 |
+
= 1.52 =
|
72 |
+
* Release 2016-05-05
|
73 |
+
* Added import/export settings feature
|
74 |
+
|
75 |
+
= 1.51 =
|
76 |
+
* Release 2016-03-15
|
77 |
+
* Few minor fixes
|
78 |
+
|
79 |
+
= 1.50 =
|
80 |
+
* Release 2016-03-13
|
81 |
+
* Feature: Support for infinite scroll-like plugins
|
82 |
+
* Feature: Moved Pin Full Images from a separate plugin into jQuery Pin It Button For Images
|
83 |
+
|
84 |
+
= 1.42 =
|
85 |
+
* Release 2016-03-08
|
86 |
+
* Lots of backend enhancements
|
87 |
+
|
88 |
+
= 1.41 =
|
89 |
+
* Release 2016-02-12
|
90 |
+
* Syntax error for older versions of PHP fixed
|
91 |
+
|
92 |
+
= 1.40 =
|
93 |
+
* Release 2016-02-11
|
94 |
+
* Backend and frontend JavaScript rewritten
|
95 |
+
|
96 |
+
= 1.38 =
|
97 |
+
* Release 2014-09-16
|
98 |
+
* Fixed issue with positioning the button when Retina display active
|
99 |
+
|
100 |
+
= 1.37 =
|
101 |
+
* Release 2014-08-05
|
102 |
+
* Additional option in the description source setting
|
103 |
+
* Issue with saving checkboxes fixed
|
104 |
+
|
105 |
+
= 1.35 =
|
106 |
+
* Release 2014-06-20
|
107 |
+
* Static mode is now disabled
|
108 |
+
|
109 |
+
= 1.34 =
|
110 |
+
* Release 2014-06-16
|
111 |
+
* Added support for plugins lazy loading images
|
112 |
+
|
113 |
+
= 1.33 =
|
114 |
+
* Release 2014-05-18
|
115 |
+
* Minor changes
|
116 |
+
|
117 |
+
= 1.32 =
|
118 |
+
* Release 2014-05-04
|
119 |
+
* Minor fix
|
120 |
+
|
121 |
+
= 1.31 =
|
122 |
+
* Release 2014-03-13
|
123 |
+
* Important fix
|
124 |
+
|
125 |
+
= 1.30 =
|
126 |
+
* Release 2014-03-13
|
127 |
+
* PHP code redesign - plugin is much more extension friendly
|
128 |
+
* Deleted some of the compatibility-with-older-versions code
|
129 |
+
|
130 |
+
= 1.21 =
|
131 |
+
* Released 2014-02-22
|
132 |
+
* Fixed one issue from the previous release
|
133 |
+
|
134 |
+
= 1.20 =
|
135 |
+
* Released 2014-02-16
|
136 |
+
* Major JavaScript code redesign
|
137 |
+
|
138 |
+
= 1.17 =
|
139 |
+
* Released 2013-12-10
|
140 |
+
* Minor bug fix
|
141 |
+
* Added Spanish translation
|
142 |
+
|
143 |
+
= 1.16 =
|
144 |
+
* Released 2013-11-21
|
145 |
+
* Minor bug fix
|
146 |
+
|
147 |
+
= 1.15 =
|
148 |
+
* Released 2013-11-06
|
149 |
+
* Added 'Image description' option to 'Description source' option
|
150 |
+
|
151 |
+
= 1.14 =
|
152 |
+
* Released 2013-10-17
|
153 |
+
* Minor bug with linking images to posts fixed
|
154 |
+
* Plugin now supports Retina displays
|
155 |
+
|
156 |
+
= 1.13 =
|
157 |
+
* Released 2013-10-11
|
158 |
+
* Few minor code changes
|
159 |
+
* Plugin is translation-ready
|
160 |
+
|
161 |
+
= 1.12 =
|
162 |
+
* Released 2013-10-01
|
163 |
+
* One minor bug fixed
|
164 |
+
|
165 |
+
= 1.11 =
|
166 |
+
* Released 2013-08-25
|
167 |
+
* Two minor bugs fixed
|
168 |
+
|
169 |
+
= 1.10 =
|
170 |
+
* Released 2013-08-21
|
171 |
+
* Added dynamic mode that allows users to download the image and fixes many issues with the transparency layer
|
172 |
+
* Removed the ability to add custom css to the Pin It button, but added the ability to change margins
|
173 |
+
|
174 |
+
= 1.00 =
|
175 |
+
* Released 2013-08-09
|
176 |
+
* Major source code redesign
|
177 |
+
* Small changes in how the plugin works on client side
|
178 |
+
* WordPress-style settings panel
|
179 |
+
* Fixed a little glitch from previous version
|
180 |
+
|
181 |
+
= 0.0.99 =
|
182 |
+
* Released 2013-07-18
|
183 |
+
* Major changes in source code (mostly JavaScript), but little changes in features (few minor bugs/issues should be fixed)
|
184 |
+
|
185 |
+
= 0.9.95 =
|
186 |
+
* Released 2013-04-28
|
187 |
+
* Bug fixed: issue with pinning images with hashtags in their title/alt
|
188 |
+
* New feature: possibility to change the position of the "Pin it" button
|
189 |
+
|
190 |
+
= 0.9.9 =
|
191 |
+
* Released 2013-04-04
|
192 |
+
* Bug fixed: showing "Pin it" button on categories and archives even though they are unchecked in the settings
|
193 |
+
* New feature: possibility to set minimum image size that triggers the "Pin it" button to show up
|
194 |
+
* New feature: option to always link the image to its post/page url, instead of linking to the url the user is currently visiting
|
195 |
+
* Improvement: you now can set "Site title" as the default description of the pin
|
196 |
+
|
197 |
+
= 0.9.5 =
|
198 |
+
* Released 2013-03-04
|
199 |
+
* Fixed some issues with image sizing and responsive themes
|
200 |
+
* Code refactoring
|
201 |
+
* Added preview in the settings panel
|
202 |
+
* New feature: adding images using media library
|
203 |
+
|
204 |
+
= 0.9.2 =
|
205 |
+
* Released 2013-02-12
|
206 |
+
* It now works with jQuery versions older than 1.7
|
207 |
+
|
208 |
+
= 0.9.1 =
|
209 |
+
* Released 2013-02-12
|
210 |
+
* Bug fixed: resizing images when their dimensions are larger than the container they're in
|
211 |
+
* Bug fixed: plugin not working when jQuery added multiple times
|
212 |
+
* Bug fixed: wrong image url when images are lazy-loaded
|
213 |
+
|
214 |
+
= 0.9 =
|
215 |
+
* Released 2013-01-28
|
216 |
+
* Feature: Ability to use custom Pinterest button design
|
217 |
+
|
218 |
+
= 0.8 =
|
219 |
+
* Released 2013-01-12
|
220 |
+
* Feature: Ability to choose transparency level depending on one's needs
|
221 |
+
* Added support for default Wordpress align classes, so the plugin doesn't mess up the positioning of the images on screen (in typical cases)
|
222 |
+
|
223 |
+
= 0.7.1 =
|
224 |
+
* Released 2012-12-20
|
225 |
+
* Bug related to deleting and quick-editing posts fixed
|
226 |
+
|
227 |
+
= 0.7 =
|
228 |
+
* Released 2012-12-18
|
229 |
+
* Feature: Ability to show or hide the "Pin it" button on home page, single page, single post and categories (with archives)
|
230 |
+
* Feature: Ability to disable the "Pin it" button on certain post or page, works only on single post/page view
|
231 |
+
* Added security checks using Nonces
|
232 |
+
|
233 |
+
= 0.5 =
|
234 |
+
* Released 2012-12-9
|
235 |
+
* Feature: Pinterest window opens as a pop-up
|
236 |
+
* Feature: Ability to exclude certain classes from showing the "Pin it" button
|
237 |
+
* Feature: Ability to include only certain classes that will show the "Pin it" button
|
238 |
+
* Feature: Image is highlighted once hovered
|
239 |
+
* Feature: IE7 image highlight fix: using a transparent png instead of background-color
|
240 |
+
|
241 |
+
== Upgrade Notice ==
|
242 |
+
|
243 |
+
= 1.52 =
|
244 |
+
* Added import/export settings feature
|
245 |
+
|
246 |
+
= 1.51 =
|
247 |
+
* Few minor fixes
|
248 |
+
|
249 |
+
= 1.50 =
|
250 |
+
Added support for infinite scroll-like plugins and merged Pin Full Images into the plugin.
|
251 |
+
|
252 |
+
= 1.42 =
|
253 |
+
Minor code improvements.
|
254 |
+
|
255 |
+
= 1.41 =
|
256 |
+
Syntax error for older versions of PHP fixed.
|
257 |
+
|
258 |
+
= 1.40 =
|
259 |
+
Minor code improvements.
|
260 |
+
|
261 |
+
= 1.38 =
|
262 |
+
Fixed issue with positioning the button when Retina display active.
|
263 |
+
|
264 |
+
= 1.37 =
|
265 |
+
Additional setting in the description source setting. Small bug fix.
|
266 |
+
|
267 |
+
= 1.35 =
|
268 |
+
Static mode is now disabled.
|
269 |
+
|
270 |
+
= 1.34 =
|
271 |
+
Minor update.
|
272 |
+
|
273 |
+
= 1.33 =
|
274 |
+
Minor addition.
|
275 |
+
|
276 |
+
= 1.32 =
|
277 |
+
Minor fix.
|
278 |
+
|
279 |
+
= 1.31 =
|
280 |
+
Important fix.
|
281 |
+
|
282 |
+
= 1.30 =
|
283 |
+
PHP code redesign.
|
284 |
+
|
285 |
+
= 1.21 =
|
286 |
+
Fixed one issue from the previous release.
|
287 |
+
|
288 |
+
= 1.20 =
|
289 |
+
Just code redesign.
|
290 |
+
|
291 |
+
= 1.17 =
|
292 |
+
Minor bug fix and Spanish translation added.
|
293 |
+
|
294 |
+
= 1.16 =
|
295 |
+
Minor bug fix.
|
296 |
+
|
297 |
+
= 1.15 =
|
298 |
+
Adds 'Image description' option to 'Description source' option.
|
299 |
+
|
300 |
+
= 1.14 =
|
301 |
+
Minor bug fix plus support for Retina displays added.
|
302 |
+
|
303 |
+
= 1.13 =
|
304 |
+
Minor code changes, plus plugin is now translation-ready.
|
305 |
+
|
306 |
+
= 1.12 =
|
307 |
+
One minor bug fix.
|
308 |
+
|
309 |
+
= 1.11 =
|
310 |
+
Two minor bug fixes, that's all.
|
311 |
+
|
312 |
+
= 1.10 =
|
313 |
+
This update is recommended for people who had issues with version 1.00 but version 0.99 worked flawlessly. It adds a new mode that allows users to download images and fixes those issues related to version 1.00.
|
314 |
+
|
315 |
+
= 1.00 =
|
316 |
+
Major source code redesign, new settings panel and fix to a little glitch from previous version of the plugin.
|
317 |
+
|
318 |
+
= 0.9.99 =
|
319 |
+
Major source code changes with almost no changes in terms of features. This version can be considered a "test" one. After fixing bugs (if there are any - please report) version 1.0.0 will be published.
|
320 |
+
|
321 |
+
= 0.9.95 =
|
322 |
+
Minor bug fixed and one new feature (setting the position of the "Pin it" button) added.
|
323 |
+
|
324 |
+
= 0.9.9 =
|
325 |
+
A minor bug fixed and two new features (minimum image size among them) added.
|
326 |
+
|
327 |
+
= 0.9.5 =
|
328 |
+
Few minor bug fixes and tweaks
|
329 |
+
|
330 |
+
= 0.9.3 =
|
331 |
+
Fixed bugs with image sizing and responsive themes
|
332 |
+
|
333 |
+
= 0.9.2 =
|
334 |
+
Small update - plugin now works with jQuery versions older than 1.7.
|
335 |
+
|
336 |
+
= 0.9.1 =
|
337 |
+
Few bugs reported by users got fixed.
|
338 |
+
|
339 |
+
= 0.9 =
|
340 |
+
New feature: using custom Pinterest button design
|
341 |
+
|
342 |
+
= 0.8 =
|
343 |
+
Additional feature and added support for basic image positioning.
|
344 |
+
|
345 |
+
= 0.7.1 =
|
346 |
+
Critical bug fix, please update.
|
347 |
+
|
348 |
+
= 0.7 =
|
349 |
+
Additional features and some security enhancements.
|
350 |
+
|
351 |
+
= 0.5 =
|
352 |
First version of the plugin.
|