WD Instagram Feed – Instagram Gallery - Version 1.1.0

Version Description

IMPORTANT: Instagram changed the API. You need to get a new access token by using "Sign in with Instagram" button on the Settings page in order to keep your Instagram Feed WD plugin functioning after June 1.
new: Instagram new API
new: Spanish translation (Thanks to Alexandro Lacadena Gomez)

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 WD Instagram Feed – Instagram Gallery
Version 1.1.0
Comparing to
See all releases

Code changes from version 1.0.10 to 1.1.0

admin-functions.php CHANGED
@@ -440,6 +440,21 @@ function wdi_install(){
440
  add_option('wdi_version', WDI_VERSION);
441
  }
442
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
443
  }
444
 
445
  //Callback function for Settings Configure Section
@@ -447,7 +462,7 @@ function wdi_configure_section_callback(){
447
  $new_url = urlencode(admin_url('admin.php?page=wdi_settings')) . '&response_type=token';
448
  ?>
449
  <div id="login_with_instagram">
450
- <a onclick="document.cookie = 'wdi_autofill=true'" href="https://api.instagram.com/oauth/authorize/?client_id=145c5c2d6ea141ed86459d70c770ae50&redirect_uri=http://api.web-dorado.com/instagram/?return_url=<?php echo $new_url;?>"><img src="<?php echo plugins_url('/images/sign_in_with_instagram.png',__FILE__)?>" alt=""></a>
451
  </div>
452
  <div class="wdi_access_token_missing"><?php
453
  $options = get_option(WDI_OPT);
440
  add_option('wdi_version', WDI_VERSION);
441
  }
442
 
443
+ /**
444
+ * add api update notice
445
+ * @since 1.1.0
446
+ */
447
+
448
+ $admin_notices_option = get_option('wdi_admin_notice', array());
449
+ $admin_notices_option['api_update_token_reset'] = array(
450
+ 'start' => current_time("n/j/Y"),
451
+ 'int' => 0,
452
+ 'dismissed' => 1, // dismissed on activate
453
+ );
454
+ update_option('wdi_admin_notice', $admin_notices_option);
455
+
456
+
457
+
458
  }
459
 
460
  //Callback function for Settings Configure Section
462
  $new_url = urlencode(admin_url('admin.php?page=wdi_settings')) . '&response_type=token';
463
  ?>
464
  <div id="login_with_instagram">
465
+ <a onclick="document.cookie = 'wdi_autofill=true'" href="https://api.instagram.com/oauth/authorize/?client_id=54da896cf80343ecb0e356ac5479d9ec&scope=basic+public_content&redirect_uri=http://api.web-dorado.com/instagram/?return_url=<?php echo $new_url;?>"><img src="<?php echo plugins_url('/images/sign_in_with_instagram.png',__FILE__)?>" alt=""></a>
466
  </div>
467
  <div class="wdi_access_token_missing"><?php
468
  $options = get_option(WDI_OPT);
admin/views/WDIViewSettings_wdi.php CHANGED
@@ -16,6 +16,16 @@ private $model;
16
  public function display(){
17
  require_once(WDI_DIR . '/framework/WDI_admin_view.php');
18
  if(isset($_GET['access_token'])) {
 
 
 
 
 
 
 
 
 
 
19
  ?>
20
  <script>
21
  wdi_controller.instagram = new WDIInstagram();
16
  public function display(){
17
  require_once(WDI_DIR . '/framework/WDI_admin_view.php');
18
  if(isset($_GET['access_token'])) {
19
+
20
+ /*dismiss api update notice*/
21
+ $admin_notices_option = get_option('wdi_admin_notice', array());
22
+ $admin_notices_option['api_update_token_reset'] = array(
23
+ 'start' => current_time("n/j/Y"),
24
+ 'int' => 0,
25
+ 'dismissed' => 1,
26
+ );
27
+ update_option('wdi_admin_notice', $admin_notices_option);
28
+
29
  ?>
30
  <script>
31
  wdi_controller.instagram = new WDIInstagram();
css/notices.css CHANGED
@@ -84,4 +84,8 @@
84
  .wd_hny a{
85
  display: block;
86
  height: 100%;
87
- }
 
 
 
 
84
  .wd_hny a{
85
  display: block;
86
  height: 100%;
87
+ }
88
+
89
+ .wdi_notice_red .wd-notice-title{
90
+ color:#ec4136;
91
+ }
frontend/views/WDIViewThumbnails_view.php CHANGED
@@ -295,19 +295,39 @@ public function generate_feed_styles($feed_row){
295
 
296
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_photo_wrap {
297
  padding: <?php echo $style['th_photo_wrap_padding']?>; /*photo_wrap_padding*/
298
-
 
 
299
  overflow: hidden;
300
  }
 
 
 
 
 
301
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_photo_wrap_inner{
 
 
 
 
 
302
  border: <?php echo $style['th_photo_wrap_border_size']?> solid <?php echo $style['th_photo_wrap_border_color']?>;/*photo_wrap_border_size,photo_wrap_border_color*/
303
  background-color: <?php echo $style['th_photo_wrap_bg_color']?>;/*photo_wrap_bg_color*/
304
  }
305
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_photo_img{
306
  border-radius: <?php echo $style['th_photo_img_border_radius']?>;/*photo_img_border_radius*/
 
 
307
  }
308
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_img{
309
- width: 100%;
310
- display: block;
 
 
 
 
 
 
311
  }
312
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_feed_item{
313
  width: <?php echo $colNum.'%'?>;/*thumbnail_size*/
@@ -320,7 +340,6 @@ public function generate_feed_styles($feed_row){
320
  text-align: center;
321
  padding-bottom: 10px;
322
  }
323
-
324
 
325
 
326
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_thumb_likes{
295
 
296
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_photo_wrap {
297
  padding: <?php echo $style['th_photo_wrap_padding']?>; /*photo_wrap_padding*/
298
+ position: relative;
299
+ width: 100%;
300
+ display: inline-block;
301
  overflow: hidden;
302
  }
303
+ #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_photo_wrap:after{
304
+ padding-top: 100%;
305
+ display: block;
306
+ content: "";
307
+ }
308
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_photo_wrap_inner{
309
+ position: absolute;
310
+ top: 0;
311
+ bottom: 0;
312
+ left: 0;
313
+ right: 0;
314
  border: <?php echo $style['th_photo_wrap_border_size']?> solid <?php echo $style['th_photo_wrap_border_color']?>;/*photo_wrap_border_size,photo_wrap_border_color*/
315
  background-color: <?php echo $style['th_photo_wrap_bg_color']?>;/*photo_wrap_bg_color*/
316
  }
317
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_photo_img{
318
  border-radius: <?php echo $style['th_photo_img_border_radius']?>;/*photo_img_border_radius*/
319
+ width: 100%;
320
+ height: 100%;
321
  }
322
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_img{
323
+ /*width: 100%;*/
324
+ /*display: block;*/
325
+ position: absolute;
326
+ top: 0;
327
+ left: 0;
328
+ right: 0;
329
+ bottom: 0;
330
+ margin: auto;
331
  }
332
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_feed_item{
333
  width: <?php echo $colNum.'%'?>;/*thumbnail_size*/
340
  text-align: center;
341
  padding-bottom: 10px;
342
  }
 
343
 
344
 
345
  #wdi_feed_<?php echo $wdi_feed_counter?> .wdi_thumb_likes{
instagram-wdi-notices.php CHANGED
@@ -87,20 +87,21 @@ class WDI_Notices {
87
  $admin_display_msg = (isset($admin_notices[$slug]['msg']) ? $admin_notices[$slug]['msg'] : '');
88
  $admin_display_title = (isset($admin_notices[$slug]['title']) ? $admin_notices[$slug]['title'] : '');
89
  $admin_display_link = (isset($admin_notices[$slug]['link']) ? $admin_notices[$slug]['link'] : '');
90
- $output_css = false;
 
91
  // Ensure the notice hasn't been hidden and that the current date is after the start date
92
  if ($admin_display_check == 0 && strtotime($admin_display_start) <= strtotime($current_date)) {
93
  // Get remaining query string
94
  $query_str = esc_url(add_query_arg($this->prefix . '_admin_notice_ignore', $slug));
95
  // Admin notice display output
96
  if ( strpos( $slug, 'promo' ) === false ) {
97
- echo '<div class="update-nag wd-admin-notice">
98
  <div class="' . $this->prefix . '-notice-logo"></div>
99
  <p class="wd-notice-title">' . $admin_display_title . '</p>
100
  <p class="wd-notice-body">' . $admin_display_msg . '</p>
101
- <ul class="wd-notice-body wd-blue">' . $admin_display_link . '</ul>
102
- <a href="' . $query_str . '" class="dashicons dashicons-dismiss"></a>
103
- </div>';
104
  }
105
  else{
106
  if ( strtotime( $end ) >= strtotime( $current_date ) ) {
@@ -232,7 +233,15 @@ class WDI_Notices {
232
  <li><span class="dashicons dashicons-dismiss"></span><a href="' . $one_week_support . '">' . __('Never show again', $this->prefix) . '</a></li>',
233
  'int' => 7
234
  );
235
- $notices['new_year_promo'] = array(
 
 
 
 
 
 
 
 
236
  'title' => __('Hey! How\'s It Going?', $this->prefix),
237
  'msg' => '<div class="wd_hny"><a href="https://web-dorado.com/products/wordpress-instagram-feed-wd.html?source=promo" target="_blank"></a></div>',
238
  'link' => '<li><span class="dashicons dashicons-dismiss"></span><a href="' . $promo_close . '">' . __( 'Never show again' ,$this->prefix) . '</a></li>',
@@ -240,6 +249,8 @@ class WDI_Notices {
240
  'end' => '2016-01-01',
241
  'int' => 0
242
  );
 
 
243
 
244
 
245
  $this->admin_notice($notices);
87
  $admin_display_msg = (isset($admin_notices[$slug]['msg']) ? $admin_notices[$slug]['msg'] : '');
88
  $admin_display_title = (isset($admin_notices[$slug]['title']) ? $admin_notices[$slug]['title'] : '');
89
  $admin_display_link = (isset($admin_notices[$slug]['link']) ? $admin_notices[$slug]['link'] : '');
90
+ $custom_class = (isset($admin_notices[$slug]['custom_class']) ? $admin_notices[$slug]['custom_class'] : '');
91
+ $output_css = false;
92
  // Ensure the notice hasn't been hidden and that the current date is after the start date
93
  if ($admin_display_check == 0 && strtotime($admin_display_start) <= strtotime($current_date)) {
94
  // Get remaining query string
95
  $query_str = esc_url(add_query_arg($this->prefix . '_admin_notice_ignore', $slug));
96
  // Admin notice display output
97
  if ( strpos( $slug, 'promo' ) === false ) {
98
+ echo '<div class="update-nag wd-admin-notice '. $custom_class .'">
99
  <div class="' . $this->prefix . '-notice-logo"></div>
100
  <p class="wd-notice-title">' . $admin_display_title . '</p>
101
  <p class="wd-notice-body">' . $admin_display_msg . '</p>
102
+ <ul class="wd-notice-body wd-blue">' . $admin_display_link . '</ul>'.
103
+ '<a href="' . $query_str . '" class="dashicons dashicons-dismiss"></a>'.
104
+ '</div>';
105
  }
106
  else{
107
  if ( strtotime( $end ) >= strtotime( $current_date ) ) {
233
  <li><span class="dashicons dashicons-dismiss"></span><a href="' . $one_week_support . '">' . __('Never show again', $this->prefix) . '</a></li>',
234
  'int' => 7
235
  );
236
+ $notices['api_update_token_reset'] = array(
237
+ 'title' => __('Important', $this->prefix),
238
+ 'msg' => sprintf(__('Instagram changed the API. You need to get a new access token by using "Sign in with Instagram" button on the Settings page in order to keep your Instagram Feed WD plugin functioning after June 1.', $this->prefix), $this->plugin_name),
239
+ 'link' => '<li><span class="dashicons dashicons-admin-tools"></span><a href="'.admin_url("admin.php?page=wdi_settings").'" target="_self">' . __('Sure! I\'d love to!', $this->prefix) . '</a></li>',
240
+ 'int' => 0,
241
+ 'custom_class' => 'wdi_notice_red'
242
+ );
243
+
244
+ $notices['new_year_promo'] = array( ///kep this one the last in the list
245
  'title' => __('Hey! How\'s It Going?', $this->prefix),
246
  'msg' => '<div class="wd_hny"><a href="https://web-dorado.com/products/wordpress-instagram-feed-wd.html?source=promo" target="_blank"></a></div>',
247
  'link' => '<li><span class="dashicons dashicons-dismiss"></span><a href="' . $promo_close . '">' . __( 'Never show again' ,$this->prefix) . '</a></li>',
249
  'end' => '2016-01-01',
250
  'int' => 0
251
  );
252
+
253
+
254
 
255
 
256
  $this->admin_notice($notices);
js/gallerybox/wdi_gallery_box.js CHANGED
@@ -1,7 +1,7 @@
1
 
2
  var isPopUpOpened = false;
3
 
4
- function wdi_spider_createpopup(url, current_view, width, height, duration, description, lifetime,currentFeed) {
5
 
6
  url = url.replace(/&#038;/g, '&');
7
  if (isPopUpOpened) { return };
@@ -16,7 +16,7 @@ function wdi_spider_createpopup(url, current_view, width, height, duration, desc
16
 
17
  // jQuery.get(url, function(data) {
18
  // ;
19
- // var popup = jQuery(
20
  // '<div id="wdi_spider_popup_wrap" class="wdi_spider_popup_wrap" style="' +
21
  // ' width:' + width + 'px;' +
22
  // ' height:' + height + 'px;' +
@@ -24,11 +24,11 @@ function wdi_spider_createpopup(url, current_view, width, height, duration, desc
24
  // ' margin-left: -' + width / 2 + 'px; ">' +
25
  // data +
26
  // '</div>')
27
- // .hide()
28
- // .appendTo("body");
29
 
30
- // wdi_spider_showpopup(description, lifetime, popup, duration);
31
- // }).success(function(jqXHR, textStatus, errorThrown) {
32
  // jQuery("#wdi_spider_popup_loading_" + current_view).css({display: "none !important;"});
33
  // });
34
  ///////////////////////////////////////
@@ -67,24 +67,24 @@ function wdi_spider_showpopup(description, lifetime, popup, duration) {
67
  isPopUpOpened = true;
68
  popup.show();
69
 
70
- wdi_spider_receivedpopup(description, lifetime);
71
  }
72
 
73
  function wdi_spider_hasalreadyreceivedpopup(description) {
74
  if (document.cookie.indexOf(description) > -1) {
75
  delete document.cookie[document.cookie.indexOf(description)];
76
  }
77
- return false;
78
  }
79
 
80
  function wdi_spider_receivedpopup(description, lifetime) {
81
- var date = new Date();
82
- date.setDate(date.getDate() + lifetime);
83
- document.cookie = description + "=true;expires=" + date.toUTCString() + ";path=/";
84
  }
85
 
86
  function wdi_spider_isunsupporteduseragent() {
87
- return (!window.XMLHttpRequest);
88
  }
89
 
90
  function wdi_spider_destroypopup(duration) {
@@ -181,7 +181,7 @@ function wdi_spider_ajax_save(form_id,image_id) {
181
  wdi_comments_manager = {
182
  media_id : '',
183
  mediaComments :[], /*all comments*/
184
- load_more_count : 3,
185
  commentCounter : 0,/* current comments counter*/
186
  currentKey : -1, /*iamge id*/
187
  init : function(image_id){
@@ -199,13 +199,13 @@ wdi_comments_manager = {
199
  reset_comments : function(){
200
  jQuery('#wdi_load_more_comments').remove();
201
  jQuery('#wdi_added_comments').html('');
202
- currentImage = wdi_data[this.currentKey];
203
  this.commentCounter = 0;
204
  this.media_id = wdi_data[this.currentKey]['id'];
205
  this.getAjaxComments(this.currentKey);
206
 
207
 
208
- this.showComments(currentImage['comments_data']);
209
 
210
 
211
  },
@@ -291,6 +291,11 @@ wdi_comments_manager = {
291
  }
292
 
293
  wdi_comments_manager.mediaComments = response['data'];
 
 
 
 
 
294
  wdi_comments_manager.ajax_comments_ready(response['data']);
295
 
296
  }
@@ -408,12 +413,12 @@ function wdi_spider_check_email(id) {
408
 
409
  // Refresh captcha.
410
  function wdi_captcha_refresh(id) {
411
- if (document.getElementById(id + "_img") && document.getElementById(id + "_input")) {
412
- srcArr = document.getElementById(id + "_img").src.split("&r=");
413
- document.getElementById(id + "_img").src = srcArr[0] + '&r=' + Math.floor(Math.random() * 100);
414
- document.getElementById(id + "_img").style.display = "inline-block";
415
- document.getElementById(id + "_input").value = "";
416
- }
417
  }
418
 
419
  function wdi_play_pause($this){
1
 
2
  var isPopUpOpened = false;
3
 
4
+ function wdi_spider_createpopup(url, current_view, width, height, duration, description, lifetime, currentFeed) {
5
 
6
  url = url.replace(/&#038;/g, '&');
7
  if (isPopUpOpened) { return };
16
 
17
  // jQuery.get(url, function(data) {
18
  // ;
19
+ // var popup = jQuery(
20
  // '<div id="wdi_spider_popup_wrap" class="wdi_spider_popup_wrap" style="' +
21
  // ' width:' + width + 'px;' +
22
  // ' height:' + height + 'px;' +
24
  // ' margin-left: -' + width / 2 + 'px; ">' +
25
  // data +
26
  // '</div>')
27
+ // .hide()
28
+ // .appendTo("body");
29
 
30
+ // wdi_spider_showpopup(description, lifetime, popup, duration);
31
+ // }).success(function(jqXHR, textStatus, errorThrown) {
32
  // jQuery("#wdi_spider_popup_loading_" + current_view).css({display: "none !important;"});
33
  // });
34
  ///////////////////////////////////////
67
  isPopUpOpened = true;
68
  popup.show();
69
 
70
+ wdi_spider_receivedpopup(description, lifetime);
71
  }
72
 
73
  function wdi_spider_hasalreadyreceivedpopup(description) {
74
  if (document.cookie.indexOf(description) > -1) {
75
  delete document.cookie[document.cookie.indexOf(description)];
76
  }
77
+ return false;
78
  }
79
 
80
  function wdi_spider_receivedpopup(description, lifetime) {
81
+ var date = new Date();
82
+ date.setDate(date.getDate() + lifetime);
83
+ document.cookie = description + "=true;expires=" + date.toUTCString() + ";path=/";
84
  }
85
 
86
  function wdi_spider_isunsupporteduseragent() {
87
+ return (!window.XMLHttpRequest);
88
  }
89
 
90
  function wdi_spider_destroypopup(duration) {
181
  wdi_comments_manager = {
182
  media_id : '',
183
  mediaComments :[], /*all comments*/
184
+ load_more_count : 10,
185
  commentCounter : 0,/* current comments counter*/
186
  currentKey : -1, /*iamge id*/
187
  init : function(image_id){
199
  reset_comments : function(){
200
  jQuery('#wdi_load_more_comments').remove();
201
  jQuery('#wdi_added_comments').html('');
202
+ //currentImage = wdi_data[this.currentKey];
203
  this.commentCounter = 0;
204
  this.media_id = wdi_data[this.currentKey]['id'];
205
  this.getAjaxComments(this.currentKey);
206
 
207
 
208
+ //this.showComments(currentImage['comments_data']);
209
 
210
 
211
  },
291
  }
292
 
293
  wdi_comments_manager.mediaComments = response['data'];
294
+ //ttt
295
+ var currentImage = wdi_data[wdi_comments_manager.currentKey];
296
+ currentImage['comments_data'] = response['data'];
297
+
298
+ wdi_comments_manager.showComments(currentImage['comments_data'], wdi_comments_manager.load_more_count);
299
  wdi_comments_manager.ajax_comments_ready(response['data']);
300
 
301
  }
413
 
414
  // Refresh captcha.
415
  function wdi_captcha_refresh(id) {
416
+ if (document.getElementById(id + "_img") && document.getElementById(id + "_input")) {
417
+ srcArr = document.getElementById(id + "_img").src.split("&r=");
418
+ document.getElementById(id + "_img").src = srcArr[0] + '&r=' + Math.floor(Math.random() * 100);
419
+ document.getElementById(id + "_img").style.display = "inline-block";
420
+ document.getElementById(id + "_input").value = "";
421
+ }
422
  }
423
 
424
  function wdi_play_pause($this){
languages/wdi-es_ES.mo ADDED
Binary file
languages/wdi-es_ES.po ADDED
@@ -0,0 +1,2115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2016-05-16 15:56+0400\n"
5
+ "PO-Revision-Date: 2016-05-16 15:56+0400\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: es_ES\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.7\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-KeywordsList: _e;__\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: admin-functions.php:30
19
+ msgid "Succesfully Uninstalled!"
20
+ msgstr "¡Desinstalado correctamente!"
21
+
22
+ #: admin-functions.php:36
23
+ msgid "Already Unistalled"
24
+ msgstr "Ya está desinstalado"
25
+
26
+ #: admin-functions.php:470
27
+ msgid ""
28
+ "You need Access Token for using plugin, click sign in with Instagram button "
29
+ "above to get yours"
30
+ msgstr ""
31
+ "Necesita el Token de acceso para usar el plugin, haga clic en el botón "
32
+ "superior de inicio de sesión Instagram para obtener el tuyo"
33
+
34
+ #: admin-functions.php:546
35
+ msgid "Access Token"
36
+ msgstr "Token de Acceso"
37
+
38
+ #: admin-functions.php:547
39
+ msgid "Username"
40
+ msgstr "Nombre de usuario"
41
+
42
+ #: admin-functions.php:549
43
+ msgid "Custom CSS"
44
+ msgstr "CSS personalizado"
45
+
46
+ #: admin-functions.php:550
47
+ msgid "Custom JavaScript"
48
+ msgstr "JavaSript personalizado"
49
+
50
+ #: admin-functions.php:605
51
+ msgid "Database error, please uninstall the plugin and install again"
52
+ msgstr ""
53
+ "Error en la base de datos, por favor desinstale el plugin e instálelo otra "
54
+ "vez"
55
+
56
+ #: admin/controllers/WDIControllerFeeds_wdi.php:167
57
+ #: admin/controllers/WDIControllerFeeds_wdi.php:197
58
+ #: admin/controllers/WDIControllerFeeds_wdi.php:232
59
+ #: admin/controllers/WDIControllerThemes_wdi.php:343
60
+ msgid "Cannot Write on database"
61
+ msgstr "No se puede escribir en la base de datos"
62
+
63
+ #: admin/controllers/WDIControllerFeeds_wdi.php:172
64
+ #: admin/controllers/WDIControllerFeeds_wdi.php:205
65
+ #: admin/controllers/WDIControllerFeeds_wdi.php:240
66
+ msgid "You have not made new changes"
67
+ msgstr "No ha hecho nuevos cambios"
68
+
69
+ #: admin/controllers/WDIControllerFeeds_wdi.php:174
70
+ msgid "Successfully saved"
71
+ msgstr "Guardado correctamente"
72
+
73
+ #: admin/controllers/WDIControllerFeeds_wdi.php:208
74
+ msgid "Changes have been successfully applied"
75
+ msgstr "Los cambios se han aplicado con éxito"
76
+
77
+ #: admin/controllers/WDIControllerFeeds_wdi.php:243
78
+ msgid "Feed successfully reseted"
79
+ msgstr "Feed reseteado correctamente"
80
+
81
+ #: admin/controllers/WDIControllerFeeds_wdi.php:258
82
+ msgid "Item Succesfully Duplicated."
83
+ msgstr "Elemento duplicado correctamente"
84
+
85
+ #: admin/controllers/WDIControllerFeeds_wdi.php:281
86
+ #: admin/controllers/WDIControllerThemes_wdi.php:377
87
+ msgid "Item Succesfully Deleted."
88
+ msgstr "Elemento eliminado correctamente"
89
+
90
+ #: admin/controllers/WDIControllerFeeds_wdi.php:284
91
+ #: admin/controllers/WDIControllerFeeds_wdi.php:316
92
+ #: admin/controllers/WDIControllerFeeds_wdi.php:353
93
+ #: admin/controllers/WDIControllerThemes_wdi.php:380
94
+ msgid "Error. Please install plugin again."
95
+ msgstr "Error. Por favor instale el plugin de nuevo"
96
+
97
+ #: admin/controllers/WDIControllerFeeds_wdi.php:301
98
+ #: admin/controllers/WDIControllerThemes_wdi.php:409
99
+ msgid "Items Succesfully Deleted."
100
+ msgstr "Elemento borrado correctamente"
101
+
102
+ #: admin/controllers/WDIControllerFeeds_wdi.php:304
103
+ #: admin/controllers/WDIControllerFeeds_wdi.php:341
104
+ #: admin/controllers/WDIControllerFeeds_wdi.php:378
105
+ #: admin/controllers/WDIControllerThemes_wdi.php:413
106
+ msgid "You must select at least one item."
107
+ msgstr "Debes seleccionar al menos un elemento."
108
+
109
+ #: admin/controllers/WDIControllerFeeds_wdi.php:313
110
+ msgid "Item Succesfully Published."
111
+ msgstr "Elemento publicado correctamente."
112
+
113
+ #: admin/controllers/WDIControllerFeeds_wdi.php:338
114
+ msgid "Items Succesfully Published."
115
+ msgstr "Elemento publicado correctamente."
116
+
117
+ #: admin/controllers/WDIControllerFeeds_wdi.php:350
118
+ msgid "Item Succesfully Unpublished."
119
+ msgstr "Elemento despublicado correctamente."
120
+
121
+ #: admin/controllers/WDIControllerFeeds_wdi.php:375
122
+ msgid "Items Succesfully Unpublished."
123
+ msgstr "Elemento despublicado correctamente"
124
+
125
+ #: admin/controllers/WDIControllerThemes_wdi.php:340
126
+ msgid "Please select at least one item"
127
+ msgstr "Debes seleccionar al menos un elemento."
128
+
129
+ #: admin/controllers/WDIControllerThemes_wdi.php:345
130
+ msgid "Items Succesfully Duplicated."
131
+ msgstr "Elemento duplicado correctamente"
132
+
133
+ #: admin/controllers/WDIControllerThemes_wdi.php:383
134
+ #: admin/controllers/WDIControllerThemes_wdi.php:404
135
+ msgid "You cannot delete default theme."
136
+ msgstr "No puedes borrar el tema por defecto"
137
+
138
+ #: admin/controllers/WDIControllerWidget.php:22
139
+ msgid "Show your instagram feeds in your widget area"
140
+ msgstr "Muestra el feed de tu Instagram en el área de widgets"
141
+
142
+ #: admin/controllers/WDIControllerWidget.php:27
143
+ msgid "Instagram WD Widget"
144
+ msgstr "Widget Instagram WD"
145
+
146
+ #: admin/views/WDIViewEditorShortcode.php:100
147
+ msgid "Select Feed:"
148
+ msgstr "Selecciona feed:"
149
+
150
+ #: admin/views/WDIViewFeeds_wdi.php:39
151
+ msgid "This Section Allows You to Add/Edit Feeds"
152
+ msgstr ""
153
+
154
+ #: admin/views/WDIViewFeeds_wdi.php:40 admin/views/WDIViewFeeds_wdi.php:330
155
+ #: admin/views/WDIViewSettings_wdi.php:50 admin/views/WDIViewThemes_wdi.php:31
156
+ msgid "Read More in User Manual"
157
+ msgstr "Lee más en el manual de usuario"
158
+
159
+ #: admin/views/WDIViewFeeds_wdi.php:54 wd-instagram-feed.php:153
160
+ msgid "Feeds"
161
+ msgstr "Feeds"
162
+
163
+ #: admin/views/WDIViewFeeds_wdi.php:58
164
+ msgid "Add new"
165
+ msgstr "Añadir nuevo"
166
+
167
+ #: admin/views/WDIViewFeeds_wdi.php:63
168
+ msgid "Select All"
169
+ msgstr "Seleccionar todo"
170
+
171
+ #: admin/views/WDIViewFeeds_wdi.php:77 admin/views/WDIViewFeeds_wdi.php:98
172
+ #: frontend/views/WDIViewGalleryBox.php:1348
173
+ #: frontend/views/WDIViewGalleryBox.php:1376
174
+ #: frontend/views/WDIViewGalleryBox.php:1383
175
+ msgid "Name"
176
+ msgstr "Nombre"
177
+
178
+ #: admin/views/WDIViewFeeds_wdi.php:92
179
+ msgid "Feed"
180
+ msgstr "Feed"
181
+
182
+ #: admin/views/WDIViewFeeds_wdi.php:101
183
+ msgid "Shortcode"
184
+ msgstr "Código corto"
185
+
186
+ #: admin/views/WDIViewFeeds_wdi.php:102
187
+ msgid "PHP function"
188
+ msgstr "Función PHP"
189
+
190
+ #: admin/views/WDIViewFeeds_wdi.php:108
191
+ msgid "Published"
192
+ msgstr "Publicado"
193
+
194
+ #: admin/views/WDIViewFeeds_wdi.php:111
195
+ msgid "Edit"
196
+ msgstr "Editar"
197
+
198
+ #: admin/views/WDIViewFeeds_wdi.php:112
199
+ msgid "Delete"
200
+ msgstr "Borrar"
201
+
202
+ #: admin/views/WDIViewFeeds_wdi.php:209
203
+ msgid "Feed Name"
204
+ msgstr "Nombre del feed"
205
+
206
+ #: admin/views/WDIViewFeeds_wdi.php:209
207
+ msgid "The name of your feed which can be displayed in feed's header section"
208
+ msgstr ""
209
+ "El nombre del feed que puede ser mostrado en la cabecera de la sección de "
210
+ "feeds"
211
+
212
+ #: admin/views/WDIViewFeeds_wdi.php:210
213
+ msgid "Changing Theme is Available Only in PRO version"
214
+ msgstr ""
215
+
216
+ #: admin/views/WDIViewFeeds_wdi.php:210
217
+ msgid "Theme"
218
+ msgstr "Tema"
219
+
220
+ #: admin/views/WDIViewFeeds_wdi.php:210
221
+ msgid "The theme of your feed, you can create themes in themes menu"
222
+ msgstr "El tema de tu feed, puedes crear temas en el menú de temas"
223
+
224
+ #: admin/views/WDIViewFeeds_wdi.php:211
225
+ msgid "Feed Usernames and Hashtags"
226
+ msgstr "Nombres de usuario del feed y hashtags"
227
+
228
+ #: admin/views/WDIViewFeeds_wdi.php:211
229
+ msgid ""
230
+ "Enter usernames or hashtags to your feed, hashtags must start with #, "
231
+ "username's shouldn't start with @"
232
+ msgstr ""
233
+ "Introduce nombres de usuarios o hashtags a tu feed, los hashtags deben "
234
+ "empezar con #, los nombres de usuario no deben empezar con @"
235
+
236
+ #: admin/views/WDIViewFeeds_wdi.php:212
237
+ msgid "Featured Image"
238
+ msgstr "Imagen destacada"
239
+
240
+ #: admin/views/WDIViewFeeds_wdi.php:212
241
+ msgid "Select Featured Image For Header Section"
242
+ msgstr "Selecciona la imagen destacada para la sección de cabecera"
243
+
244
+ #: admin/views/WDIViewFeeds_wdi.php:213
245
+ msgid "Feed Display Type"
246
+ msgstr "Forma de mostrar el feed"
247
+
248
+ #: admin/views/WDIViewFeeds_wdi.php:213
249
+ msgid "Pagination"
250
+ msgstr "Número de página"
251
+
252
+ #: admin/views/WDIViewFeeds_wdi.php:213
253
+ msgid "Load More Button"
254
+ msgstr "Carga más botones"
255
+
256
+ #: admin/views/WDIViewFeeds_wdi.php:213
257
+ msgid "Infinite Scroll"
258
+ msgstr "Scroll infinito"
259
+
260
+ #: admin/views/WDIViewFeeds_wdi.php:213
261
+ msgid "This Feature is Available in PRO version"
262
+ msgstr ""
263
+
264
+ #: admin/views/WDIViewFeeds_wdi.php:213
265
+ msgid "How to load and display new images"
266
+ msgstr "Cómo cargar y mostrar nuevas imágenes"
267
+
268
+ #: admin/views/WDIViewFeeds_wdi.php:214
269
+ msgid "Sort Images By"
270
+ msgstr "Ordenar imágenes por"
271
+
272
+ #: admin/views/WDIViewFeeds_wdi.php:214
273
+ msgid "Date"
274
+ msgstr "Fecha"
275
+
276
+ #: admin/views/WDIViewFeeds_wdi.php:214
277
+ msgid "Likes"
278
+ msgstr "Me gustas"
279
+
280
+ #: admin/views/WDIViewFeeds_wdi.php:214
281
+ msgid "Comments"
282
+ msgstr "Comentarios"
283
+
284
+ #: admin/views/WDIViewFeeds_wdi.php:214 framework/WDILibrary.php:767
285
+ msgid "Random"
286
+ msgstr "Aleatorio"
287
+
288
+ #: admin/views/WDIViewFeeds_wdi.php:214
289
+ msgid "How to sort images"
290
+ msgstr "Cómo ordenar las imágenes"
291
+
292
+ #: admin/views/WDIViewFeeds_wdi.php:215
293
+ msgid "Order By"
294
+ msgstr "Ordenar por"
295
+
296
+ #: admin/views/WDIViewFeeds_wdi.php:215
297
+ msgid "Sorting order either Ascending or Descending"
298
+ msgstr "Orden ascendente o descendente"
299
+
300
+ #: admin/views/WDIViewFeeds_wdi.php:216
301
+ msgid "Follow on Instagram Button"
302
+ msgstr "Seguir en el botón de Instagram"
303
+
304
+ #: admin/views/WDIViewFeeds_wdi.php:217
305
+ msgid "Display Header"
306
+ msgstr "Mostrar cabecera"
307
+
308
+ #: admin/views/WDIViewFeeds_wdi.php:217
309
+ msgid "Displays feed's header, header includes feed name and feed users"
310
+ msgstr ""
311
+ "Muestra la cabecera del feed, la cabecera incluye el nombre del feed y los "
312
+ "usuarios del feed"
313
+
314
+ #: admin/views/WDIViewFeeds_wdi.php:218
315
+ msgid "Number of Photos to Display"
316
+ msgstr "Número de fotos a mostrar"
317
+
318
+ #: admin/views/WDIViewFeeds_wdi.php:218
319
+ msgid "Number of images to load when page loads first time"
320
+ msgstr "Número de imágenes a cargar cuando la página carga por primera vez"
321
+
322
+ #: admin/views/WDIViewFeeds_wdi.php:219
323
+ msgid "Number of Photos to Load"
324
+ msgstr "Número de fotos a cargar"
325
+
326
+ #: admin/views/WDIViewFeeds_wdi.php:219
327
+ msgid ""
328
+ "Number of images to load when clicking load more button or triggering "
329
+ "infinite scroll"
330
+ msgstr ""
331
+ "Número de imágenes a cargar cuando se haga clic en el botón de cargar más, o "
332
+ "se active el scroll infinito"
333
+
334
+ #: admin/views/WDIViewFeeds_wdi.php:220
335
+ msgid "Number of Images Per Page"
336
+ msgstr "Número de imágenes por página"
337
+
338
+ #: admin/views/WDIViewFeeds_wdi.php:220
339
+ msgid "Number Of Images To Show On Each Pagination Page"
340
+ msgstr "Número de imágenes a mostrar en cada página de la navegación"
341
+
342
+ #: admin/views/WDIViewFeeds_wdi.php:221
343
+ msgid "Number of Pages To Preload"
344
+ msgstr "Número de imágenes a precargar"
345
+
346
+ #: admin/views/WDIViewFeeds_wdi.php:221 admin/views/WDIViewFeeds_wdi.php:222
347
+ msgid "This Will Preload Images For Pagination"
348
+ msgstr "Esto precargará imágenes para la paginación"
349
+
350
+ #: admin/views/WDIViewFeeds_wdi.php:222
351
+ msgid "Number of Images To Preload"
352
+ msgstr "Número de imágenes a precargar"
353
+
354
+ #: admin/views/WDIViewFeeds_wdi.php:223
355
+ msgid "Number of Images To Load Each Time"
356
+ msgstr "Número de imágenes a cargar cada vez"
357
+
358
+ #: admin/views/WDIViewFeeds_wdi.php:223
359
+ msgid "Number Of Photos To Load on Each Load"
360
+ msgstr "Número de fotos a cagar en cada proceso de carga"
361
+
362
+ #: admin/views/WDIViewFeeds_wdi.php:224
363
+ msgid "Number of Columns"
364
+ msgstr "Número de columnas"
365
+
366
+ #: admin/views/WDIViewFeeds_wdi.php:224
367
+ msgid "Feed item's column count"
368
+ msgstr "Número de columnas de elementos del feed"
369
+
370
+ #: admin/views/WDIViewFeeds_wdi.php:225
371
+ msgid "Sort Again Whole Feed After Loading New Images"
372
+ msgstr "Ordenar de nuevo todo el feed después de cargar nuevas imágenes"
373
+
374
+ #: admin/views/WDIViewFeeds_wdi.php:225
375
+ msgid "Sort both newly loaded and existing images alltogether"
376
+ msgstr ""
377
+ "Ordenar tanto las imágenes nuevas cargadas como las existentes todas juntas"
378
+
379
+ #: admin/views/WDIViewFeeds_wdi.php:226
380
+ msgid "Show Likes"
381
+ msgstr "Mostrar me gustas"
382
+
383
+ #: admin/views/WDIViewFeeds_wdi.php:226 admin/views/WDIViewFeeds_wdi.php:227
384
+ #: admin/views/WDIViewFeeds_wdi.php:228 admin/views/WDIViewFeeds_wdi.php:229
385
+ #: admin/views/WDIViewFeeds_wdi.php:243 admin/views/WDIViewFeeds_wdi.php:244
386
+ #: admin/views/WDIViewFeeds_wdi.php:246 admin/views/WDIViewFeeds_wdi.php:247
387
+ #: admin/views/WDIViewFeeds_wdi.php:251 admin/views/WDIViewFeeds_wdi.php:253
388
+ #: admin/views/WDIViewFeeds_wdi.php:256
389
+ msgid "This Feature is Available Only in PRO version"
390
+ msgstr ""
391
+
392
+ #: admin/views/WDIViewFeeds_wdi.php:227
393
+ msgid "Show Description"
394
+ msgstr "Mostrar descripción"
395
+
396
+ #: admin/views/WDIViewFeeds_wdi.php:228
397
+ #: frontend/views/WDIViewGalleryBox.php:2333
398
+ msgid "Show Comments"
399
+ msgstr "Mostrar comentarios"
400
+
401
+ #: admin/views/WDIViewFeeds_wdi.php:229
402
+ msgid "Show Username On Image Thumb"
403
+ msgstr "Mostrar el nombre de usuario en la miniatura de la imagen"
404
+
405
+ #: admin/views/WDIViewFeeds_wdi.php:230
406
+ msgid "Show User Data"
407
+ msgstr "Mostrar datos de usuario"
408
+
409
+ #: admin/views/WDIViewFeeds_wdi.php:231
410
+ msgid "Display User Bio"
411
+ msgstr "Mostrar la biografía del usuario"
412
+
413
+ #: admin/views/WDIViewFeeds_wdi.php:231
414
+ msgid "User bio will be displayed if feed has only one user"
415
+ msgstr "La biografía del usuario se mostrará si el feed solo tiene un usuario"
416
+
417
+ #: admin/views/WDIViewFeeds_wdi.php:232
418
+ msgid "Display User Posts and Followers count"
419
+ msgstr "Mostrar posts del usuario y el contador de Seguidores"
420
+
421
+ #: admin/views/WDIViewFeeds_wdi.php:233
422
+ msgid "Show Full Description"
423
+ msgstr "Mostrar descripción completa"
424
+
425
+ #: admin/views/WDIViewFeeds_wdi.php:233
426
+ msgid "Discription will be shown no matter how long it is"
427
+ msgstr "La descripción se mostrará sin importar lo larga que sea"
428
+
429
+ #: admin/views/WDIViewFeeds_wdi.php:234
430
+ msgid "Disable Mobile Layout"
431
+ msgstr "Desactivar plantilla para móviles"
432
+
433
+ #: admin/views/WDIViewFeeds_wdi.php:234
434
+ msgid "Column number stays the same in all screens"
435
+ msgstr "El número de columnas seguirá igual en todas las pantallas"
436
+
437
+ #: admin/views/WDIViewFeeds_wdi.php:235
438
+ msgid "Image Onclick"
439
+ msgstr "Imagen al clicar"
440
+
441
+ #: admin/views/WDIViewFeeds_wdi.php:235
442
+ msgid "Open Lightbox"
443
+ msgstr "Abrir lightbox"
444
+
445
+ #: admin/views/WDIViewFeeds_wdi.php:235
446
+ msgid "Redirect To Instagram"
447
+ msgstr "Redirigir a Instagram"
448
+
449
+ #: admin/views/WDIViewFeeds_wdi.php:235
450
+ msgid "Do Nothing"
451
+ msgstr "No hacer nada"
452
+
453
+ #: admin/views/WDIViewFeeds_wdi.php:237
454
+ msgid "Full width lightbox"
455
+ msgstr "Lightbox de ancho completo"
456
+
457
+ #: admin/views/WDIViewFeeds_wdi.php:237 admin/views/WDIViewFeeds_wdi.php:241
458
+ #: admin/views/WDIViewFeeds_wdi.php:243 admin/views/WDIViewFeeds_wdi.php:246
459
+ #: admin/views/WDIViewFeeds_wdi.php:247 admin/views/WDIViewFeeds_wdi.php:248
460
+ #: admin/views/WDIViewFeeds_wdi.php:249 admin/views/WDIViewFeeds_wdi.php:250
461
+ #: admin/views/WDIViewFeeds_wdi.php:252 admin/views/WDIViewFeeds_wdi.php:253
462
+ #: admin/views/WDIViewFeeds_wdi.php:254 admin/views/WDIViewFeeds_wdi.php:255
463
+ #: admin/views/WDIViewFeeds_wdi.php:256 admin/views/WDIViewFeeds_wdi.php:257
464
+ #: admin/views/WDIViewFeeds_wdi.php:258 admin/views/WDIViewFeeds_wdi.php:259
465
+ #: admin/views/WDIViewFeeds_wdi.php:260 admin/views/WDIViewFeeds_wdi.php:261
466
+ #: admin/views/WDIViewFeeds_wdi.php:262 admin/views/WDIViewFeeds_wdi.php:265
467
+ msgid "Yes"
468
+ msgstr "Sí"
469
+
470
+ #: admin/views/WDIViewFeeds_wdi.php:237 admin/views/WDIViewFeeds_wdi.php:241
471
+ #: admin/views/WDIViewFeeds_wdi.php:243 admin/views/WDIViewFeeds_wdi.php:246
472
+ #: admin/views/WDIViewFeeds_wdi.php:247 admin/views/WDIViewFeeds_wdi.php:248
473
+ #: admin/views/WDIViewFeeds_wdi.php:249 admin/views/WDIViewFeeds_wdi.php:250
474
+ #: admin/views/WDIViewFeeds_wdi.php:252 admin/views/WDIViewFeeds_wdi.php:253
475
+ #: admin/views/WDIViewFeeds_wdi.php:254 admin/views/WDIViewFeeds_wdi.php:255
476
+ #: admin/views/WDIViewFeeds_wdi.php:256 admin/views/WDIViewFeeds_wdi.php:257
477
+ #: admin/views/WDIViewFeeds_wdi.php:258 admin/views/WDIViewFeeds_wdi.php:259
478
+ #: admin/views/WDIViewFeeds_wdi.php:260 admin/views/WDIViewFeeds_wdi.php:261
479
+ #: admin/views/WDIViewFeeds_wdi.php:262 admin/views/WDIViewFeeds_wdi.php:265
480
+ msgid "No"
481
+ msgstr "No"
482
+
483
+ #: admin/views/WDIViewFeeds_wdi.php:238
484
+ msgid "Lightbox Width"
485
+ msgstr "Ancho del lightbox"
486
+
487
+ #: admin/views/WDIViewFeeds_wdi.php:239
488
+ msgid "Lightbox Height"
489
+ msgstr "Altura del lightbox"
490
+
491
+ #: admin/views/WDIViewFeeds_wdi.php:240
492
+ msgid "Lightbox Effect"
493
+ msgstr "Efecto del lightbox"
494
+
495
+ #: admin/views/WDIViewFeeds_wdi.php:241
496
+ msgid "Lightbox autoplay"
497
+ msgstr "Reproducción automática del lightbox"
498
+
499
+ #: admin/views/WDIViewFeeds_wdi.php:242
500
+ msgid "Time Interval"
501
+ msgstr "Intervalo de tiempo"
502
+
503
+ #: admin/views/WDIViewFeeds_wdi.php:243
504
+ msgid "Enable filmstrip in lightbox"
505
+ msgstr "Activar la tira de imágenes en el lightbox"
506
+
507
+ #: admin/views/WDIViewFeeds_wdi.php:244
508
+ msgid "Filmstrip size"
509
+ msgstr "Tamaño de la tira de imágenes"
510
+
511
+ #: admin/views/WDIViewFeeds_wdi.php:245
512
+ msgid "Show Next / Previous Buttons"
513
+ msgstr "Mostrar botones de Siguiente/Anterior"
514
+
515
+ #: admin/views/WDIViewFeeds_wdi.php:245
516
+ msgid "On Hover"
517
+ msgstr "Encima"
518
+
519
+ #: admin/views/WDIViewFeeds_wdi.php:245
520
+ msgid "Always"
521
+ msgstr "Siempre"
522
+
523
+ #: admin/views/WDIViewFeeds_wdi.php:246
524
+ msgid "Display info by default"
525
+ msgstr "Mostrar información por defecto"
526
+
527
+ #: admin/views/WDIViewFeeds_wdi.php:247
528
+ msgid "Full width info"
529
+ msgstr "Información de ancho completo"
530
+
531
+ #: admin/views/WDIViewFeeds_wdi.php:248
532
+ msgid "Enable Loop"
533
+ msgstr "Activar loop"
534
+
535
+ #: admin/views/WDIViewFeeds_wdi.php:249
536
+ msgid "Enable Right Click Protection"
537
+ msgstr "Activar protección de click derecho"
538
+
539
+ #: admin/views/WDIViewFeeds_wdi.php:250
540
+ msgid "Enable control buttons"
541
+ msgstr "Activar botones de control"
542
+
543
+ #: admin/views/WDIViewFeeds_wdi.php:251
544
+ msgid "Enable info"
545
+ msgstr "Activar información"
546
+
547
+ #: admin/views/WDIViewFeeds_wdi.php:252
548
+ msgid "Enable fullscreen"
549
+ msgstr "Activar pantalla completa"
550
+
551
+ #: admin/views/WDIViewFeeds_wdi.php:253
552
+ msgid "Enable comments"
553
+ msgstr "Activar comentarios"
554
+
555
+ #: admin/views/WDIViewFeeds_wdi.php:254
556
+ msgid "Link To Instagram Button"
557
+ msgstr "Enlace del botón de Instagram"
558
+
559
+ #: admin/views/WDIViewFeeds_wdi.php:255
560
+ msgid "Enable Download Button"
561
+ msgstr "Activar botón de descarga"
562
+
563
+ #: admin/views/WDIViewFeeds_wdi.php:256
564
+ msgid "Enable Share Buttons"
565
+ msgstr "Activar botones de compartir"
566
+
567
+ #: admin/views/WDIViewFeeds_wdi.php:257
568
+ msgid "Enable Facebook button"
569
+ msgstr "Activar botón de Facebook"
570
+
571
+ #: admin/views/WDIViewFeeds_wdi.php:258
572
+ msgid "Enable Twitter button"
573
+ msgstr "Activar botón de Twitter"
574
+
575
+ #: admin/views/WDIViewFeeds_wdi.php:259
576
+ msgid "Enable Google+ button"
577
+ msgstr "Activar botón de Google+"
578
+
579
+ #: admin/views/WDIViewFeeds_wdi.php:260
580
+ msgid "Enable Pinterest button"
581
+ msgstr "Activar botón de Pinterest"
582
+
583
+ #: admin/views/WDIViewFeeds_wdi.php:261
584
+ msgid "Enable Tumblr button"
585
+ msgstr "Activar botón de Tumblr"
586
+
587
+ #: admin/views/WDIViewFeeds_wdi.php:262
588
+ msgid "Show Images Count"
589
+ msgstr "Mostrar contador de imágenes"
590
+
591
+ #: admin/views/WDIViewFeeds_wdi.php:265
592
+ msgid "Enable Conditional Filters"
593
+ msgstr "Activar filtros condicionales"
594
+
595
+ #: admin/views/WDIViewFeeds_wdi.php:266
596
+ msgid "Filter Logic"
597
+ msgstr "Filtro lógico"
598
+
599
+ #: admin/views/WDIViewFeeds_wdi.php:283 admin/views/WDIViewFeeds_wdi.php:288
600
+ msgid "Available In Pro Version"
601
+ msgstr ""
602
+
603
+ #: admin/views/WDIViewFeeds_wdi.php:304
604
+ msgid "Feed Settings"
605
+ msgstr "Ajustes del feed"
606
+
607
+ #: admin/views/WDIViewFeeds_wdi.php:305
608
+ msgid "Lightbox Settings"
609
+ msgstr "Ajustes del lightbox"
610
+
611
+ #: admin/views/WDIViewFeeds_wdi.php:306 admin/views/WDIViewLicensing_wdi.php:42
612
+ msgid "Conditional Filters"
613
+ msgstr "Filtros condicionales"
614
+
615
+ #: admin/views/WDIViewFeeds_wdi.php:329
616
+ msgid "Here You Can Change Feed Parameters"
617
+ msgstr "Aquí puedes cambiar los parámetros del feed"
618
+
619
+ #: admin/views/WDIViewFeeds_wdi.php:341
620
+ msgid "Edit feed"
621
+ msgstr "Editar feed"
622
+
623
+ #: admin/views/WDIViewFeeds_wdi.php:344
624
+ msgid "Add new Feed"
625
+ msgstr "Añadir un feed nuevo"
626
+
627
+ #: admin/views/WDIViewFeeds_wdi.php:374
628
+ msgid ""
629
+ "This is FREE version, Conditional filters are available only in PRO version"
630
+ msgstr ""
631
+
632
+ #: admin/views/WDIViewFeeds_wdi.php:398
633
+ msgid "Add"
634
+ msgstr "Añadir"
635
+
636
+ #: admin/views/WDIViewFeeds_wdi.php:414
637
+ msgid "Save"
638
+ msgstr "Guardar"
639
+
640
+ #: admin/views/WDIViewFeeds_wdi.php:416
641
+ msgid "Apply"
642
+ msgstr "Aplicar"
643
+
644
+ #: admin/views/WDIViewFeeds_wdi.php:417 framework/WDILibrary.php:189
645
+ #: framework/WDILibrary.php:717
646
+ msgid "Reset"
647
+ msgstr "Resetear"
648
+
649
+ #: admin/views/WDIViewFeeds_wdi.php:418
650
+ msgid "Cancel"
651
+ msgstr "Cancelar"
652
+
653
+ #: admin/views/WDIViewLicensing_wdi.php:29
654
+ msgid "ready"
655
+ msgstr ""
656
+
657
+ #: admin/views/WDIViewLicensing_wdi.php:31
658
+ msgid "Responsive Design and Layout"
659
+ msgstr ""
660
+
661
+ #: admin/views/WDIViewLicensing_wdi.php:32
662
+ msgid "SEO Friendly"
663
+ msgstr ""
664
+
665
+ #: admin/views/WDIViewLicensing_wdi.php:33
666
+ msgid "Thumbnails layout"
667
+ msgstr ""
668
+
669
+ #: admin/views/WDIViewLicensing_wdi.php:34
670
+ msgid "Image Browser layout"
671
+ msgstr ""
672
+
673
+ #: admin/views/WDIViewLicensing_wdi.php:35
674
+ msgid "Lightbox"
675
+ msgstr ""
676
+
677
+ #: admin/views/WDIViewLicensing_wdi.php:36
678
+ msgid "Load More Button / Classic Pagination"
679
+ msgstr ""
680
+
681
+ #: admin/views/WDIViewLicensing_wdi.php:37
682
+ msgid "Image Sorting"
683
+ msgstr ""
684
+
685
+ #: admin/views/WDIViewLicensing_wdi.php:38
686
+ msgid "Widget"
687
+ msgstr ""
688
+
689
+ #: admin/views/WDIViewLicensing_wdi.php:39
690
+ msgid "Slideshow/Lightbox Effects"
691
+ msgstr ""
692
+
693
+ #: admin/views/WDIViewLicensing_wdi.php:43
694
+ msgid "Image On Hover Effects"
695
+ msgstr ""
696
+
697
+ #: admin/views/WDIViewLicensing_wdi.php:44
698
+ msgid "Infinite Scroll Load More"
699
+ msgstr ""
700
+
701
+ #: admin/views/WDIViewLicensing_wdi.php:45
702
+ msgid "Full Style Customization With Themes"
703
+ msgstr ""
704
+
705
+ #: admin/views/WDIViewLicensing_wdi.php:46
706
+ msgid "Filmstrip"
707
+ msgstr ""
708
+
709
+ #: admin/views/WDIViewLicensing_wdi.php:47
710
+ msgid "Instagram Comments in Lightbox"
711
+ msgstr ""
712
+
713
+ #: admin/views/WDIViewLicensing_wdi.php:48
714
+ msgid "Blog Style layout"
715
+ msgstr ""
716
+
717
+ #: admin/views/WDIViewLicensing_wdi.php:49
718
+ msgid "Masonry layout"
719
+ msgstr ""
720
+
721
+ #: admin/views/WDIViewLicensing_wdi.php:50
722
+ msgid "Videos in BlogStyle, ImageBrowser and Lightbox"
723
+ msgstr ""
724
+
725
+ #: admin/views/WDIViewLicensing_wdi.php:51
726
+ msgid "Social Share Buttons"
727
+ msgstr ""
728
+
729
+ #: admin/views/WDIViewLicensing_wdi.php:52
730
+ msgid "Multiple User/Hashtag Feeds"
731
+ msgstr ""
732
+
733
+ #: admin/views/WDIViewLicensing_wdi.php:53
734
+ msgid "Filtering Images Based on Users/Hashtags"
735
+ msgstr ""
736
+
737
+ #: admin/views/WDIViewLicensing_wdi.php:54
738
+ msgid "Support / Updates"
739
+ msgstr ""
740
+
741
+ #: admin/views/WDIViewLicensing_wdi.php:57
742
+ msgid "Free"
743
+ msgstr ""
744
+
745
+ #: admin/views/WDIViewLicensing_wdi.php:81
746
+ msgid "Only Bug Fixes"
747
+ msgstr ""
748
+
749
+ #: admin/views/WDIViewLicensing_wdi.php:84
750
+ msgid "Pro Version"
751
+ msgstr ""
752
+
753
+ #: admin/views/WDIViewLicensing_wdi.php:108
754
+ msgid "Full Support"
755
+ msgstr ""
756
+
757
+ #: admin/views/WDIViewLicensing_wdi.php:120
758
+ msgid "After purchasing the commercial version follow these steps:"
759
+ msgstr ""
760
+
761
+ #: admin/views/WDIViewLicensing_wdi.php:122
762
+ msgid "Deactivate Instagram Feed WD plugin."
763
+ msgstr ""
764
+
765
+ #: admin/views/WDIViewLicensing_wdi.php:123
766
+ msgid "Delete Instagram Feed WD plugin."
767
+ msgstr ""
768
+
769
+ #: admin/views/WDIViewLicensing_wdi.php:124
770
+ msgid "Install the downloaded commercial version of the plugin."
771
+ msgstr ""
772
+
773
+ #: admin/views/WDIViewSettings_wdi.php:49
774
+ msgid "This Section Allows You To Set API Parameters"
775
+ msgstr ""
776
+
777
+ #: admin/views/WDIViewSettings_wdi.php:60
778
+ msgid "Instagram WD Settings"
779
+ msgstr "Ajustes de Instagram WD"
780
+
781
+ #: admin/views/WDIViewSettings_wdi.php:65
782
+ msgid "Reset Access Token and Username"
783
+ msgstr "Resetear token de acceso y nombre de usuario"
784
+
785
+ #: admin/views/WDIViewSettings_wdi.php:80
786
+ msgid ""
787
+ "Are you sure that you want to reset access token and username, after "
788
+ "resetting it you will need to log in with Instagram again for using plugin"
789
+ msgstr ""
790
+ "Estás seguro de querer resetear el token de acceso y el nombre se usuario, "
791
+ "después de resetearlo necesitaras iniciar sesión con Instagram de nuevo para "
792
+ "usar el plugin"
793
+
794
+ #: admin/views/WDIViewThemes_wdi.php:30
795
+ msgid "Here You Can Customize Your Themes"
796
+ msgstr ""
797
+
798
+ #: admin/views/WDIViewThemes_wdi.php:40
799
+ msgid ""
800
+ "This is FREE version, Customizing themes is available only in PRO version"
801
+ msgstr ""
802
+
803
+ #: admin/views/WDIViewUninstall_wdi.php:22
804
+ #: admin/views/WDIViewUninstall_wdi.php:68
805
+ #: admin/views/WDIViewUninstall_wdi.php:80
806
+ msgid "Uninstalling Instagram Feed WD"
807
+ msgstr "Desinstalando Instagram Feed WD"
808
+
809
+ #: admin/views/WDIViewUninstall_wdi.php:24
810
+ msgid ""
811
+ "Deactivating Instagram Feed WD plugin does not remove any data that may have "
812
+ "been created. To completely remove this plugin, you can uninstall it here."
813
+ msgstr ""
814
+ "Desactivando el plugin de Instagram Feed WD no se eliminará ningún dato que "
815
+ "se haya podido crear. Para eliminar por completo este plugin, puedes "
816
+ "desinstalarlo desde aquí."
817
+
818
+ #: admin/views/WDIViewUninstall_wdi.php:25
819
+ msgid ""
820
+ "WARNING: Once uninstalled, this can't be undone. You should use a Database "
821
+ "Backup plugin of WordPress to back up all the data first."
822
+ msgstr ""
823
+ "ATENCIÓN: Una vez desinstalado no se puede deshacer el proceso. Debes usar "
824
+ "un plugin de copia de seguridad de la base de datos de WordPress para hacer "
825
+ "una copia de seguridad de todos los datos primero."
826
+
827
+ #: admin/views/WDIViewUninstall_wdi.php:26
828
+ msgid "The following Database Tables will be deleted:"
829
+ msgstr "Las siguientes tablas de la base de datos se borrarán:"
830
+
831
+ #: admin/views/WDIViewUninstall_wdi.php:42
832
+ #: admin/views/WDIViewUninstall_wdi.php:55
833
+ msgid "Are you sure you want to uninstall plugin?"
834
+ msgstr "¿De verdad quieres desinstalar el plugin?"
835
+
836
+ #: admin/views/WDIViewUninstall_wdi.php:70
837
+ msgid "Instagram Feed WD is uninstalled"
838
+ msgstr "Instagram Feed WD se ha desinstalado"
839
+
840
+ #: admin/views/WDIViewUninstall_wdi.php:70
841
+ #: admin/views/WDIViewUninstall_wdi.php:93
842
+ msgid "Click Here"
843
+ msgstr "Haz clic aquí"
844
+
845
+ #: admin/views/WDIViewUninstall_wdi.php:70
846
+ #: admin/views/WDIViewUninstall_wdi.php:93
847
+ msgid "to deactivate it"
848
+ msgstr "para desactivarlo"
849
+
850
+ #: admin/views/WDIViewUninstall_wdi.php:82
851
+ msgid "The following Database Tables has been successfully deleted:"
852
+ msgstr ""
853
+ "Las siguientes tablas de la base de datos se han eliminado correctamente:"
854
+
855
+ #: admin/views/WDIViewUninstall_wdi.php:93
856
+ msgid "Instagram Feed WD is successfully uninstalled"
857
+ msgstr "Instagram Feed WD se ha desinstalado correctamente"
858
+
859
+ #: framework/WDILibrary.php:188 framework/WDILibrary.php:720
860
+ msgid "Search"
861
+ msgstr "Buscar"
862
+
863
+ #: framework/WDILibrary.php:511
864
+ msgid " item(s)"
865
+ msgstr "elemento(s)"
866
+
867
+ #: framework/WDILibrary.php:516
868
+ msgid "First"
869
+ msgstr "Primero"
870
+
871
+ #: framework/WDILibrary.php:517
872
+ msgid "Previous"
873
+ msgstr "Anterior"
874
+
875
+ #: framework/WDILibrary.php:518
876
+ msgid "Next"
877
+ msgstr "Siguiente"
878
+
879
+ #: framework/WDILibrary.php:519
880
+ msgid "Last"
881
+ msgstr "Último"
882
+
883
+ #: framework/WDILibrary.php:537
884
+ msgid "Go to the first page"
885
+ msgstr "Ir a la primera página"
886
+
887
+ #: framework/WDILibrary.php:538
888
+ msgid "Go to the previous page"
889
+ msgstr "Ir a la página anterior"
890
+
891
+ #: framework/WDILibrary.php:540
892
+ msgid "of"
893
+ msgstr "de"
894
+
895
+ #: framework/WDILibrary.php:544
896
+ msgid "Go to the next page"
897
+ msgstr "Ir a la página siguiente"
898
+
899
+ #: framework/WDILibrary.php:545
900
+ msgid "Go to the last page"
901
+ msgstr "Ir a la última página"
902
+
903
+ #: framework/WDILibrary.php:557
904
+ msgid "Load More..."
905
+ msgstr "Cargar más..."
906
+
907
+ #: framework/WDILibrary.php:762
908
+ msgid "Order by: "
909
+ msgstr "Ordenar según: "
910
+
911
+ #: framework/WDILibrary.php:764
912
+ msgid "Default"
913
+ msgstr "Por defecto"
914
+
915
+ #: framework/WDILibrary.php:765
916
+ msgid "Filename"
917
+ msgstr "Nombre de archivo"
918
+
919
+ #: framework/WDILibrary.php:766
920
+ msgid "Size"
921
+ msgstr "Tamaño"
922
+
923
+ #: framework/WDI_admin_view.php:717
924
+ msgid "Preview"
925
+ msgstr "Vista previa"
926
+
927
+ #: frontend/shortcode.php:28
928
+ msgid "Invalid shortcode"
929
+ msgstr "Código corto inválido"
930
+
931
+ #: frontend/shortcode.php:43
932
+ msgid "Access Token is invalid, please get it again "
933
+ msgstr "El Token de Acceso es inválido, por favor obtenlo de nuevo."
934
+
935
+ #: frontend/shortcode.php:48
936
+ msgid "Feed Doesn't exists "
937
+ msgstr "No existe el feed"
938
+
939
+ #: frontend/shortcode.php:72
940
+ msgid "Unable to display unpublished feed "
941
+ msgstr "Imposible mostrar un feed no publicado."
942
+
943
+ #: frontend/shortcode.php:95
944
+ msgid "Invalid feed type"
945
+ msgstr "Tipo de feed inválido"
946
+
947
+ #: frontend/shortcode.php:131
948
+ msgid "Connection Error, try again later :("
949
+ msgstr "Error de conexión, inténtalo de nuevo más adelante :("
950
+
951
+ #: frontend/shortcode.php:132
952
+ msgid "Username not found"
953
+ msgstr "Nombre de usuario no encontrado"
954
+
955
+ #: frontend/shortcode.php:133
956
+ msgid "Network error, please try again later :("
957
+ msgstr "Error de red, por favor inténtalo de nuevo después :("
958
+
959
+ #: frontend/shortcode.php:134
960
+ msgid "There is no data for that hashtag"
961
+ msgstr "No hay datos para ese hashtag"
962
+
963
+ #: frontend/shortcode.php:135
964
+ msgid "Click to filter images by this user"
965
+ msgstr "Haz clic para filtrar las imágenes de este usuario"
966
+
967
+ #: frontend/shortcode.php:171
968
+ msgid "Field is required."
969
+ msgstr "El campo es obligatorio."
970
+
971
+ #: frontend/shortcode.php:172 frontend/views/WDIViewGalleryBox.php:1335
972
+ msgid "This is not a valid email address."
973
+ msgstr "No es una dirección de correo electrónico correcta."
974
+
975
+ #: frontend/shortcode.php:173
976
+ msgid "There are no images matching your search."
977
+ msgstr "No hay ninguna imagen que coincida con tu búsqueda."
978
+
979
+ #: frontend/views/WDIViewGalleryBox.php:1006
980
+ msgid "The image has been deleted."
981
+ msgstr "La imagen ha sido borrada."
982
+
983
+ #: frontend/views/WDIViewGalleryBox.php:1027
984
+ #: frontend/views/WDIViewGalleryBox.php:2890
985
+ msgid "Play"
986
+ msgstr "Reproducir"
987
+
988
+ #: frontend/views/WDIViewGalleryBox.php:1031
989
+ #: frontend/views/WDIViewGalleryBox.php:2161
990
+ #: frontend/views/WDIViewGalleryBox.php:2717
991
+ #: frontend/views/WDIViewGalleryBox.php:2814
992
+ msgid "Maximize"
993
+ msgstr "Maximizar"
994
+
995
+ #: frontend/views/WDIViewGalleryBox.php:1035
996
+ #: frontend/views/WDIViewGalleryBox.php:2163
997
+ #: frontend/views/WDIViewGalleryBox.php:2816
998
+ msgid "Fullscreen"
999
+ msgstr "Pantalla completa"
1000
+
1001
+ #: frontend/views/WDIViewGalleryBox.php:1037
1002
+ #: frontend/views/WDIViewGalleryBox.php:2581
1003
+ msgid "Show info"
1004
+ msgstr "Mostrar información"
1005
+
1006
+ #: frontend/views/WDIViewGalleryBox.php:1039
1007
+ msgid "Show comments"
1008
+ msgstr "Mostrar los comentarios"
1009
+
1010
+ #: frontend/views/WDIViewGalleryBox.php:1041
1011
+ #: frontend/views/WDIViewGalleryBox.php:2594
1012
+ msgid "Show rating"
1013
+ msgstr "Mostrar puntuación"
1014
+
1015
+ #: frontend/views/WDIViewGalleryBox.php:1047
1016
+ #: frontend/views/WDIViewGalleryBox.php:1048
1017
+ msgid "Share on Facebook"
1018
+ msgstr "Compartir en Facebook"
1019
+
1020
+ #: frontend/views/WDIViewGalleryBox.php:1054
1021
+ #: frontend/views/WDIViewGalleryBox.php:1055
1022
+ msgid "Share on Twitter"
1023
+ msgstr "Compartir en Twitter"
1024
+
1025
+ #: frontend/views/WDIViewGalleryBox.php:1061
1026
+ #: frontend/views/WDIViewGalleryBox.php:1062
1027
+ msgid "Share on Google+"
1028
+ msgstr "Compartir en Google+"
1029
+
1030
+ #: frontend/views/WDIViewGalleryBox.php:1068
1031
+ #: frontend/views/WDIViewGalleryBox.php:1069
1032
+ msgid "Share on Pinterest"
1033
+ msgstr "Compartir en Pinterest"
1034
+
1035
+ #: frontend/views/WDIViewGalleryBox.php:1075
1036
+ #: frontend/views/WDIViewGalleryBox.php:1076
1037
+ msgid "Share on Tumblr"
1038
+ msgstr "Compartir en Tumblr"
1039
+
1040
+ #: frontend/views/WDIViewGalleryBox.php:1084
1041
+ msgid "Share"
1042
+ msgstr "Compartir"
1043
+
1044
+ #: frontend/views/WDIViewGalleryBox.php:1103
1045
+ msgid "Open image in Instagram."
1046
+ msgstr "Abrir imagen en Instagram"
1047
+
1048
+ #: frontend/views/WDIViewGalleryBox.php:1131
1049
+ msgid "Download original image"
1050
+ msgstr "Descargar imagen original"
1051
+
1052
+ #: frontend/views/WDIViewGalleryBox.php:1328
1053
+ msgid "Error. Incorrect Verification Code."
1054
+ msgstr "Error. Código de verificación incorrecto."
1055
+
1056
+ #: frontend/views/WDIViewGalleryBox.php:1343
1057
+ #: frontend/views/WDIViewGalleryBox.php:2381
1058
+ msgid "Hide Comments"
1059
+ msgstr "Ocultar comentarios"
1060
+
1061
+ #: frontend/views/WDIViewGalleryBox.php:1354
1062
+ #: frontend/views/WDIViewGalleryBox.php:1376
1063
+ #: frontend/views/WDIViewGalleryBox.php:1383
1064
+ msgid "Email"
1065
+ msgstr "Correo electrónico"
1066
+
1067
+ #: frontend/views/WDIViewGalleryBox.php:1361
1068
+ #: frontend/views/WDIViewGalleryBox.php:1376
1069
+ #: frontend/views/WDIViewGalleryBox.php:1383
1070
+ msgid "Comment"
1071
+ msgstr "Comentario"
1072
+
1073
+ #: frontend/views/WDIViewGalleryBox.php:1366
1074
+ msgid "Verification Code"
1075
+ msgstr "Código de verificación"
1076
+
1077
+ #: frontend/views/WDIViewGalleryBox.php:1389
1078
+ msgid "Submit"
1079
+ msgstr "Enviar"
1080
+
1081
+ #: frontend/views/WDIViewGalleryBox.php:1390
1082
+ msgid "Your comment is awaiting moderation"
1083
+ msgstr "Tu comentario está esperando ser aprobado"
1084
+
1085
+ #: frontend/views/WDIViewGalleryBox.php:1397
1086
+ #: frontend/views/WDIViewGalleryBox.php:2066
1087
+ #: frontend/views/WDIViewGalleryBox.php:2391
1088
+ msgid "There are no comments to show"
1089
+ msgstr "No hay comentarios para mostrar"
1090
+
1091
+ #: frontend/views/WDIViewGalleryBox.php:2567
1092
+ msgid "Hide info"
1093
+ msgstr "Ocultar información"
1094
+
1095
+ #: frontend/views/WDIViewGalleryBox.php:2590
1096
+ msgid "Hide rating"
1097
+ msgstr "Ocultar puntuación"
1098
+
1099
+ #: frontend/views/WDIViewGalleryBox.php:2754
1100
+ #: frontend/views/WDIViewGalleryBox.php:2974
1101
+ msgid "Restore"
1102
+ msgstr "Restaurar"
1103
+
1104
+ #: frontend/views/WDIViewGalleryBox.php:2869
1105
+ msgid "Exit Fullscreen"
1106
+ msgstr "Salir de la pantalla completa"
1107
+
1108
+ #: frontend/views/WDIViewGalleryBox.php:2884
1109
+ #: frontend/views/WDIViewGalleryBox.php:2901
1110
+ msgid "Pause"
1111
+ msgstr "Pausar"
1112
+
1113
+ #: frontend/views/WDIViewImageBrowser_view.php:39
1114
+ #: frontend/views/WDIViewImageBrowser_view.php:51
1115
+ #: frontend/views/WDIViewThumbnails_view.php:42
1116
+ #: frontend/views/WDIViewThumbnails_view.php:59
1117
+ msgid "First Page"
1118
+ msgstr "Primera página"
1119
+
1120
+ #: frontend/views/WDIViewImageBrowser_view.php:39
1121
+ #: frontend/views/WDIViewImageBrowser_view.php:51
1122
+ #: frontend/views/WDIViewThumbnails_view.php:42
1123
+ #: frontend/views/WDIViewThumbnails_view.php:59
1124
+ msgid "Previous Page"
1125
+ msgstr "Página anterior"
1126
+
1127
+ #: frontend/views/WDIViewImageBrowser_view.php:39
1128
+ #: frontend/views/WDIViewImageBrowser_view.php:51
1129
+ #: frontend/views/WDIViewThumbnails_view.php:42
1130
+ #: frontend/views/WDIViewThumbnails_view.php:59
1131
+ msgid "Next Page"
1132
+ msgstr "Siguiente página"
1133
+
1134
+ #: frontend/views/WDIViewImageBrowser_view.php:39
1135
+ #: frontend/views/WDIViewImageBrowser_view.php:51
1136
+ #: frontend/views/WDIViewThumbnails_view.php:42
1137
+ #: frontend/views/WDIViewThumbnails_view.php:59
1138
+ msgid "Last Page"
1139
+ msgstr "Última página"
1140
+
1141
+ #: frontend/views/WDIViewImageBrowser_view.php:46
1142
+ #: frontend/views/WDIViewThumbnails_view.php:52
1143
+ msgid "Load More"
1144
+ msgstr "Cargar más"
1145
+
1146
+ #: instagram-wdi-notices.php:218
1147
+ msgid "Leave A Review?"
1148
+ msgstr "¿Dejar un análisis?"
1149
+
1150
+ #: instagram-wdi-notices.php:219
1151
+ #, php-format
1152
+ msgid ""
1153
+ "We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
1154
+ "review on WordPress.org?"
1155
+ msgstr ""
1156
+ "¡Confiamos en que hayas disfrutado usando WordPress %s! ¿Quizá te gustaría "
1157
+ "dejarnos un análisis en WordPress.org?"
1158
+
1159
+ #: instagram-wdi-notices.php:220 instagram-wdi-notices.php:248
1160
+ msgid "Sure! I'd love to!"
1161
+ msgstr "¡Seguro!¡Me encantaría!"
1162
+
1163
+ #: instagram-wdi-notices.php:221
1164
+ msgid "I've already left a review"
1165
+ msgstr "Ya he dejado una opinión"
1166
+
1167
+ #: instagram-wdi-notices.php:222
1168
+ msgid "Maybe Later"
1169
+ msgstr "Quizá después"
1170
+
1171
+ #: instagram-wdi-notices.php:223 instagram-wdi-notices.php:233
1172
+ #: instagram-wdi-notices.php:239
1173
+ msgid "Never show again"
1174
+ msgstr "No me lo muestres de nuevo"
1175
+
1176
+ #: instagram-wdi-notices.php:229 instagram-wdi-notices.php:237
1177
+ msgid "Hey! How's It Going?"
1178
+ msgstr "¡Hey! ¿Qué tal vas?"
1179
+
1180
+ #: instagram-wdi-notices.php:230
1181
+ #, php-format
1182
+ msgid ""
1183
+ "Thank you for using WordPress %s! We hope that you've found everything you "
1184
+ "need, but if you have any questions:"
1185
+ msgstr ""
1186
+ "¡Gracias por usar WordPress %s! Esperamos que hayas encontrado todo lo que "
1187
+ "necesites, pero si tienes cualquier duda:"
1188
+
1189
+ #: instagram-wdi-notices.php:231
1190
+ msgid "Check out User Guide"
1191
+ msgstr "Consulta el manual de usuario"
1192
+
1193
+ #: instagram-wdi-notices.php:232
1194
+ msgid "Get Some Help"
1195
+ msgstr "Pide ayuda"
1196
+
1197
+ #: instagram-wdi-notices.php:246
1198
+ msgid "Important"
1199
+ msgstr ""
1200
+
1201
+ #: instagram-wdi-notices.php:247
1202
+ msgid ""
1203
+ "Instagram changed the API. You need to get a new access token in order to "
1204
+ "keep your Instagram Feed WD plugin functioning after June 1."
1205
+ msgstr ""
1206
+
1207
+ #: templates/plugin-uninstalled.php:28
1208
+ msgid "you have uninstalled"
1209
+ msgstr "has desinstalado"
1210
+
1211
+ #: templates/plugin-uninstalled.php:28
1212
+ msgid ""
1213
+ "plugin,if you want to use it again simply deactivate and activate it again"
1214
+ msgstr ""
1215
+ "plugin, si quieres usarlo de nuevo simplemente desactívalo y actívalo de "
1216
+ "nuevo"
1217
+
1218
+ #: wd-instagram-feed.php:121
1219
+ msgid "Configure"
1220
+ msgstr "Configurar"
1221
+
1222
+ #: wd-instagram-feed.php:124
1223
+ msgid "Customize"
1224
+ msgstr "Personalizar"
1225
+
1226
+ #: wd-instagram-feed.php:152
1227
+ msgid "Instagram Feed WD"
1228
+ msgstr "Instagram Feed WD"
1229
+
1230
+ #: wd-instagram-feed.php:154
1231
+ msgid "Themes"
1232
+ msgstr "Temas"
1233
+
1234
+ #: wd-instagram-feed.php:155
1235
+ msgid "Settings"
1236
+ msgstr "Ajustes"
1237
+
1238
+ #: wd-instagram-feed.php:156
1239
+ msgid "Buy Pro"
1240
+ msgstr ""
1241
+
1242
+ #: wd-instagram-feed.php:162
1243
+ msgid "Uninstall"
1244
+ msgstr "Desinstalar"
1245
+
1246
+ #: wd-instagram-feed.php:236
1247
+ msgid "All the data will be removed from the database. Continue?"
1248
+ msgstr "Toda la información se borrará de la base de datos. ¿Continuar?"
1249
+
1250
+ #: wd-instagram-feed.php:237
1251
+ msgid "Some error with instagram servers, try agian later :("
1252
+ msgstr ""
1253
+ "Hubo un error con los servidores de Instagram, inténtalo de nuevo más "
1254
+ "adelante :("
1255
+
1256
+ #: wd-instagram-feed.php:238
1257
+ msgid "Invalid user:"
1258
+ msgstr "Usuario incorrecto:"
1259
+
1260
+ #: wd-instagram-feed.php:239
1261
+ msgid "already added!"
1262
+ msgstr "¡Ya se ha añadido!"
1263
+
1264
+ #: wd-instagram-feed.php:240
1265
+ msgid "User does not exist."
1266
+ msgstr "El usuario no existe."
1267
+
1268
+ #: wd-instagram-feed.php:241
1269
+ msgid "Network Error, please try again later. :("
1270
+ msgstr "Error de red, por favor inténtalo de nuevo más adelante. :("
1271
+
1272
+ #: wd-instagram-feed.php:242
1273
+ msgid "Invalid hashtag"
1274
+ msgstr "Hashtag inválido"
1275
+
1276
+ #: wd-instagram-feed.php:243
1277
+ msgid "This hashtag currently has no posts. Are you sure you want to add it?"
1278
+ msgstr ""
1279
+ "Este hashtag no tiene ningún post en este momento. ¿Seguro que quieres "
1280
+ "añadirlo?"
1281
+
1282
+ #: wd-instagram-feed.php:244
1283
+ msgid "You can add only one username or hashtag in FREE Version"
1284
+ msgstr ""
1285
+
1286
+ #: wd-instagram-feed.php:245
1287
+ msgid "Available in PRO"
1288
+ msgstr ""
1289
+
1290
+ #: wd-instagram-feed.php:246
1291
+ msgid "Combined Usernames/Hashtags are available only in PRO version"
1292
+ msgstr ""
1293
+
1294
+ #: wd-instagram-feed.php:247
1295
+ msgid "Customizing Themes is available only in PRO version"
1296
+ msgstr ""
1297
+
1298
+ #: wd-instagram-feed.php:248
1299
+ msgid "URL is not valid"
1300
+ msgstr "La URL no es válida"
1301
+
1302
+ #: wd-instagram-feed.php:249
1303
+ msgid "Please Select Condition Type"
1304
+ msgstr "Por favor selecciona el tipo de condición"
1305
+
1306
+ #: wd-instagram-feed.php:250
1307
+ msgid "Show Posts Which Have All Of The Conditions"
1308
+ msgstr "Mostrar posts que tengan todas las condiciones"
1309
+
1310
+ #: wd-instagram-feed.php:251
1311
+ msgid "Show Posts Which Have At Least One Of The Conditions"
1312
+ msgstr "Mostrar posts que tengan al menos una de las condiciones"
1313
+
1314
+ #: wd-instagram-feed.php:252
1315
+ msgid "Hide Posts Which Have At Least One Of The Conditions"
1316
+ msgstr "Esconder posts que tengan al menos una de las condiciones"
1317
+
1318
+ #: wd-instagram-feed.php:253
1319
+ msgid "EITHER"
1320
+ msgstr "UNO U OTRO"
1321
+
1322
+ #: wd-instagram-feed.php:254
1323
+ msgid "NEITHER"
1324
+ msgstr "NINGUNO"
1325
+
1326
+ #: wd-instagram-feed.php:255
1327
+ msgid "EXCEPT"
1328
+ msgstr "EXCEPTO"
1329
+
1330
+ #: wd-instagram-feed.php:256
1331
+ msgid "AND"
1332
+ msgstr "Y"
1333
+
1334
+ #: wd-instagram-feed.php:257
1335
+ msgid "OR"
1336
+ msgstr "O"
1337
+
1338
+ #: wd-instagram-feed.php:258
1339
+ msgid "NOR"
1340
+ msgstr "NI"
1341
+
1342
+ #~ msgid "Successfully reseted"
1343
+ #~ msgstr "Reseteado correctamente"
1344
+
1345
+ #~ msgid "You have not made new changes in this section"
1346
+ #~ msgstr "No ha hecho nuevos cambios en esta sección"
1347
+
1348
+ #~ msgid "Section successfully reseted"
1349
+ #~ msgstr "Sección reseteada correctamente"
1350
+
1351
+ #~ msgid "This section allows you to create, edit and delete Feeds."
1352
+ #~ msgstr "Esta sección te permite crear, editar o borrar feeds."
1353
+
1354
+ #~ msgid "Source of filtering"
1355
+ #~ msgstr "Fuente de filtrado"
1356
+
1357
+ #~ msgid ""
1358
+ #~ "Please note that filters are being applied to maximum 330 image per load. "
1359
+ #~ "This means that even if you have 25 images per load but only 20 images "
1360
+ #~ "correspond to your filter then those 20 images will be displayed during "
1361
+ #~ "the load."
1362
+ #~ msgstr ""
1363
+ #~ "Por favor, tenga en cuenta que los filtros se aplican a un máximo de 330 "
1364
+ #~ "fotos por carga. Esto significa que aún teniendo 25 imágenes por carga, "
1365
+ #~ "pero solo 20 imágenes corresponder a tu filtro, entonces 20 imágenes se "
1366
+ #~ "cargarán en el proceso."
1367
+
1368
+ #~ msgid "Add Condition"
1369
+ #~ msgstr "Añadir condición"
1370
+
1371
+ #~ msgid "Enter Your Codition Here..."
1372
+ #~ msgstr "Introduce tu condición aquí..."
1373
+
1374
+ #~ msgid "Condition Type"
1375
+ #~ msgstr "Tipo de condición"
1376
+
1377
+ #~ msgid "Hashtag"
1378
+ #~ msgstr "Hastag"
1379
+
1380
+ #~ msgid "Mention"
1381
+ #~ msgstr "Mención"
1382
+
1383
+ #~ msgid "Description"
1384
+ #~ msgstr "Descripción"
1385
+
1386
+ #~ msgid "Instagram Media Link"
1387
+ #~ msgstr "Enlace multimedia a Instagram"
1388
+
1389
+ #~ msgid "Add New Condition"
1390
+ #~ msgstr "Añadir nueva condición"
1391
+
1392
+ #~ msgid ""
1393
+ #~ "Write your condition, select condition type and click on Add New "
1394
+ #~ "Condition. You can add as many conditions as you want. You can add "
1395
+ #~ "different condition types mixed together as well."
1396
+ #~ msgstr ""
1397
+ #~ "Escribe tu condición, selecciona el tipo de condición y haz clic en "
1398
+ #~ "Añadir nueva condición. Puedes añadir tantas como quieras. Puedes añadir "
1399
+ #~ "diferentes tipos de condición mezcladas todas entre ellas sí así lo "
1400
+ #~ "deseas."
1401
+
1402
+ #~ msgid "Result"
1403
+ #~ msgstr "Resultado"
1404
+
1405
+ #~ msgid "Posts Which Meet Following Condition Would Be Shown"
1406
+ #~ msgstr "Serán mostrados los posts que cumplan las siguientes condiciones"
1407
+
1408
+ #~ msgid "This section allows you to set API parameters"
1409
+ #~ msgstr "Esta sección te permite establecer parámetros API"
1410
+
1411
+ #~ msgid "Read More in User Manual."
1412
+ #~ msgstr "Leer más en el manual de usuario"
1413
+
1414
+ #~ msgid "This section allows you to create, edit and delete Themes."
1415
+ #~ msgstr "Esta sección te permite crear, editar y borrar Temas."
1416
+
1417
+ #~ msgid "Theme Name"
1418
+ #~ msgstr "Nombre del tema"
1419
+
1420
+ #~ msgid "Feed Container Width"
1421
+ #~ msgstr "Anchura del contenedor del feed"
1422
+
1423
+ #~ msgid "Includes all feed elements"
1424
+ #~ msgstr "Incluye todos los elementos del feed"
1425
+
1426
+ #~ msgid "Feed Container Background Color"
1427
+ #~ msgstr "Color de fondo del contenedor del feed"
1428
+
1429
+ #~ msgid "Feed Wrapper Width"
1430
+ #~ msgstr "Anchura del borde del feed"
1431
+
1432
+ #~ msgid "Includes only feed images, does not include feed header"
1433
+ #~ msgstr "Incluye solo imágenes del feed, no incluye cabecera del feed"
1434
+
1435
+ #~ msgid "Feed Wrapper Background Color"
1436
+ #~ msgstr "Color de fondo del borde del feed"
1437
+
1438
+ #~ msgid "Active Filter Background Color"
1439
+ #~ msgstr "Activar filtro de color de fondo"
1440
+
1441
+ #~ msgid "Background color of filter when it is active"
1442
+ #~ msgstr "Color de fondo del filtro cuando está activo"
1443
+
1444
+ #~ msgid "Header Margin"
1445
+ #~ msgstr "Margen de la cabecera"
1446
+
1447
+ #~ msgid "Header Padding"
1448
+ #~ msgstr "Desplazamiento de la cabecera"
1449
+
1450
+ #~ msgid "Header Border Size"
1451
+ #~ msgstr "Tamaño del borden de la cabecera"
1452
+
1453
+ #~ msgid "Header Border Color"
1454
+ #~ msgstr "Color del borde de la cabecera"
1455
+
1456
+ #~ msgid "Header Position"
1457
+ #~ msgstr "Posición de la cabecera"
1458
+
1459
+ #~ msgid "Left"
1460
+ #~ msgstr "Izquierda"
1461
+
1462
+ #~ msgid "Center"
1463
+ #~ msgstr "Centro"
1464
+
1465
+ #~ msgid "Right"
1466
+ #~ msgstr "Derecha"
1467
+
1468
+ #~ msgid "Header Image Width"
1469
+ #~ msgstr "Anchura de la imagen de cabecera"
1470
+
1471
+ #~ msgid "Header Border Radius"
1472
+ #~ msgstr "Radio del borde de la cabecera"
1473
+
1474
+ #~ msgid "Header Text Padding"
1475
+ #~ msgstr "Desplazamiento del texto de cabecera"
1476
+
1477
+ #~ msgid "Header Text Color"
1478
+ #~ msgstr "Color del texto de cabecera"
1479
+
1480
+ #~ msgid "Header Font Weight"
1481
+ #~ msgstr "Peso de la fuente de la cabecera"
1482
+
1483
+ #~ msgid "400 (Normal)"
1484
+ #~ msgstr "400 (normal)"
1485
+
1486
+ #~ msgid "Header Text Font Size"
1487
+ #~ msgstr "Tamaño de la fuente de cabecera"
1488
+
1489
+ #~ msgid "Header Text Font Style"
1490
+ #~ msgstr "Estilo de la fuente de cabecera"
1491
+
1492
+ #~ msgid "User Horizontal Margin"
1493
+ #~ msgstr "Margen horizontal del usuario"
1494
+
1495
+ #~ msgid "Single User Padding"
1496
+ #~ msgstr "Movimiento de usuario único"
1497
+
1498
+ #~ msgid "User Border Size"
1499
+ #~ msgstr "Tamaño del borde de usuario"
1500
+
1501
+ #~ msgid "User Border Color"
1502
+ #~ msgstr "Color del borde de usuario"
1503
+
1504
+ #~ msgid "User Image Width"
1505
+ #~ msgstr "Anchura de la imagen de usuario"
1506
+
1507
+ #~ msgid "User Border Radius"
1508
+ #~ msgstr "Radio del borde de usuario"
1509
+
1510
+ #~ msgid "User Background Color"
1511
+ #~ msgstr "Color de fondo de usuario"
1512
+
1513
+ #~ msgid "Users Border Color"
1514
+ #~ msgstr "Color del borde de usuarios"
1515
+
1516
+ #~ msgid "Users Background Color"
1517
+ #~ msgstr "Color de fondo de usuarios"
1518
+
1519
+ #~ msgid "Users Text Color"
1520
+ #~ msgstr "Color del texto de usuarios"
1521
+
1522
+ #~ msgid "Users Font Weight"
1523
+ #~ msgstr "Peso de la fuente de usuarios"
1524
+
1525
+ #~ msgid "Username Font Size"
1526
+ #~ msgstr "Tamaño de fuente del nombre de usuario"
1527
+
1528
+ #~ msgid "Users Text Font Style"
1529
+ #~ msgstr "Estilo de fuente del texto de usuarios"
1530
+
1531
+ #~ msgid "User Description Font Size"
1532
+ #~ msgstr "Tamaño de fuente de la descripción de usuario"
1533
+
1534
+ #~ msgid "Follow Button Border Radius"
1535
+ #~ msgstr "Radio del borde del botón de Seguir"
1536
+
1537
+ #~ msgid "Follow Button Padding"
1538
+ #~ msgstr "Desplazamiento del botón de Seguir"
1539
+
1540
+ #~ msgid "Distance between user's name and follow button"
1541
+ #~ msgstr "Distancia entre el nombre de usuario y el botón de seguir"
1542
+
1543
+ #~ msgid "Follow Button Background Color"
1544
+ #~ msgstr "Color de fondo del botón de Seguir"
1545
+
1546
+ #~ msgid "Follow Button Border Color"
1547
+ #~ msgstr "Color del borde del botón de Seguir"
1548
+
1549
+ #~ msgid "Follow Button Text Color"
1550
+ #~ msgstr "Color del texto del botón de Seguir"
1551
+
1552
+ #~ msgid "Follow Button Font Size"
1553
+ #~ msgstr "Tamaño de fuente del botón de Seguir"
1554
+
1555
+ #~ msgid "Follow Button Border Hover Color"
1556
+ #~ msgstr "Color del borde del botón de seguir al estar encima"
1557
+
1558
+ #~ msgid "Follow Button Text Hover Color"
1559
+ #~ msgstr "Color del texto del botón Seguir al estar encima"
1560
+
1561
+ #~ msgid "Follow Button Background Hover Color"
1562
+ #~ msgstr "Color de fondo del botón Seguir al estar encima"
1563
+
1564
+ #~ msgid "Load More Button Position"
1565
+ #~ msgstr "Posición del botón Cargar más"
1566
+
1567
+ #~ msgid "Load More Button Padding"
1568
+ #~ msgstr "Desplazamiento del botón Cargar más"
1569
+
1570
+ #~ msgid "Load More Background Color"
1571
+ #~ msgstr "Color de fondo del botón Carga más"
1572
+
1573
+ #~ msgid "Load More Button Border Radius"
1574
+ #~ msgstr "Radio del borde del botón Cargar más"
1575
+
1576
+ #~ msgid "Load More Button Height"
1577
+ #~ msgstr "Altura del botón Cargar más"
1578
+
1579
+ #~ msgid "Load More Button Width"
1580
+ #~ msgstr "Anchura del botón Cargar más"
1581
+
1582
+ #~ msgid "Load More Button Border Size"
1583
+ #~ msgstr "Tamaño del borde del botón Cargar más"
1584
+
1585
+ #~ msgid "Load More Button Border Color"
1586
+ #~ msgstr "Color del borde del botón Cargar más"
1587
+
1588
+ #~ msgid "Load More Button Text Color"
1589
+ #~ msgstr "Color del texto del botón Cargar más"
1590
+
1591
+ #~ msgid "Load More Button Text Font Size"
1592
+ #~ msgstr "Tamaño de fuente del texto del botón Cargar más"
1593
+
1594
+ #~ msgid "Load More Button Hover Color"
1595
+ #~ msgstr "Color del botón Cargar más al estar encima"
1596
+
1597
+ #~ msgid "Pagination Color"
1598
+ #~ msgstr "Color de paginación"
1599
+
1600
+ #~ msgid "Pagination Height"
1601
+ #~ msgstr "Altura de paginación"
1602
+
1603
+ #~ msgid "Pagination Button Margins"
1604
+ #~ msgstr "Margen de los botones de paginación"
1605
+
1606
+ #~ msgid "Pagination Hover Color"
1607
+ #~ msgstr "Color de paginación al estar encima"
1608
+
1609
+ #~ msgid "Pagination Buttons Alignment"
1610
+ #~ msgstr "Alineamiento de los botones de paginación"
1611
+
1612
+ #~ msgid "Pagination Buttons Position"
1613
+ #~ msgstr "Posición de los botones de paginación"
1614
+
1615
+ #~ msgid "Top"
1616
+ #~ msgstr "Arriba"
1617
+
1618
+ #~ msgid "Bottom"
1619
+ #~ msgstr "Abajo"
1620
+
1621
+ #~ msgid "Overlay Background Color"
1622
+ #~ msgstr "Color de fondo de la superposición"
1623
+
1624
+ #~ msgid "Overlay Background Opacity"
1625
+ #~ msgstr "Opacidad del fondo de la superposición"
1626
+
1627
+ #~ msgid "Lightbox Background Color"
1628
+ #~ msgstr "Color de fondo del lightbox"
1629
+
1630
+ #~ msgid "Control Buttons Height"
1631
+ #~ msgstr "Altura de los botones de control"
1632
+
1633
+ #~ msgid "Control Buttons Margin (top)"
1634
+ #~ msgstr "Margen de los botones de control (Superior)"
1635
+
1636
+ #~ msgid "Control Buttons Margin (left)"
1637
+ #~ msgstr "Margen de los botones de control (Izquierda)"
1638
+
1639
+ #~ msgid "Control Buttons Position"
1640
+ #~ msgstr "Posición de los botones de control"
1641
+
1642
+ #~ msgid "Control Buttons Background Color"
1643
+ #~ msgstr "Color de fondo de los botones de control"
1644
+
1645
+ #~ msgid "Control Buttons Contain Container Border Radius"
1646
+ #~ msgstr "Borde del radio del contenedor que contiene los botones de control"
1647
+
1648
+ #~ msgid "Control Buttons Container Opacity"
1649
+ #~ msgstr "Opacidad del contenedor de los botones de control"
1650
+
1651
+ #~ msgid "Control Buttons Alignment"
1652
+ #~ msgstr "Alineación de los botones de control"
1653
+
1654
+ #~ msgid "Control Buttons Color"
1655
+ #~ msgstr "Color de los botones de control"
1656
+
1657
+ #~ msgid "Control Buttons Opacity"
1658
+ #~ msgstr "Opacidad de los botones de control"
1659
+
1660
+ #~ msgid "Toggle Button Height"
1661
+ #~ msgstr "Alternar altura del botón"
1662
+
1663
+ #~ msgid "Toggle Button Width"
1664
+ #~ msgstr "Alternar ancho del botón"
1665
+
1666
+ #~ msgid "Close Button Border Radius"
1667
+ #~ msgstr "Radio del borde del botón Cerrar"
1668
+
1669
+ #~ msgid "Close Button Border Width"
1670
+ #~ msgstr "Anchura del borde del botón Cerrar"
1671
+
1672
+ #~ msgid "Close Button Border Style"
1673
+ #~ msgstr "Estilo del borde del botón Cerrar"
1674
+
1675
+ #~ msgid "Close Button Border Color"
1676
+ #~ msgstr "Color del borde del botón Cerrar"
1677
+
1678
+ #~ msgid "Close Button Box Shadow"
1679
+ #~ msgstr "Sombra de la caja del botón Cerrar"
1680
+
1681
+ #~ msgid "Close Button Background Color"
1682
+ #~ msgstr "Color de fondo del botón Cerrar"
1683
+
1684
+ #~ msgid "Close Button Opacity"
1685
+ #~ msgstr "Opacidad del botón Cerrar"
1686
+
1687
+ #~ msgid "Close Button Width"
1688
+ #~ msgstr "Anchura del botón Cerrar"
1689
+
1690
+ #~ msgid "Close Button Height"
1691
+ #~ msgstr "Altura del botón Cerrar"
1692
+
1693
+ #~ msgid "Close Button Top"
1694
+ #~ msgstr "Encima del botón Cerrar"
1695
+
1696
+ #~ msgid "Close Button Right"
1697
+ #~ msgstr "Derecha del botón Cerrar"
1698
+
1699
+ #~ msgid "Close Button Size"
1700
+ #~ msgstr "Tamaño del botón Cerrar"
1701
+
1702
+ #~ msgid "Close Button Color"
1703
+ #~ msgstr "Color del botón Cerrar"
1704
+
1705
+ #~ msgid "Fullscreen Close Button Color"
1706
+ #~ msgstr "Color del botón Cerrar a pantalla completa"
1707
+
1708
+ #~ msgid "Close Button Hover Color"
1709
+ #~ msgstr "Color al estar encima del botón Cerrar"
1710
+
1711
+ #~ msgid "Share Buttons Color"
1712
+ #~ msgstr "Color de los botones de compartir"
1713
+
1714
+ #~ msgid "Right, Left Buttons Style"
1715
+ #~ msgstr "Derecha, Izquierda estilo de los botones"
1716
+
1717
+ #~ msgid "Right, Left Buttons Background Color"
1718
+ #~ msgstr "Derecha, Izquierda color de fondo de los botones"
1719
+
1720
+ #~ msgid "Right, Left Buttons Opacity"
1721
+ #~ msgstr "Derecha, Izquierda Opacidad de los botones"
1722
+
1723
+ #~ msgid "Right, Left Buttons Box Shadow: "
1724
+ #~ msgstr "Derecha, Izquierda Sombra de la caja de botones: "
1725
+
1726
+ #~ msgid "Right, Left Buttons Height"
1727
+ #~ msgstr "Derecha, Izquierda altura de los botones"
1728
+
1729
+ #~ msgid "Right, Left Buttons Width"
1730
+ #~ msgstr "Derecha, Izquierda anchura de los botones"
1731
+
1732
+ #~ msgid "Right, Left Buttons Size"
1733
+ #~ msgstr "Derecha, Izquierda tamaño de los botones"
1734
+
1735
+ #~ msgid "Right, Left, Close Buttons Hover Color"
1736
+ #~ msgstr "Derecha, Izquierda color al estar encima de los botones"
1737
+
1738
+ #~ msgid "Right, Left Buttons Color"
1739
+ #~ msgstr "Derecha, Izquierda color de los botones"
1740
+
1741
+ #~ msgid "Right, Left Buttons Border Radius"
1742
+ #~ msgstr "Derecha, Izquierda radio del borde de los botones"
1743
+
1744
+ #~ msgid "Right, Left Buttons Border Width"
1745
+ #~ msgstr "Derecha, Izquierda anchura del borde de los botones"
1746
+
1747
+ #~ msgid "Right, Left Buttons Border Style"
1748
+ #~ msgstr "Derecha, Izquierda estilo del borde de los botones"
1749
+
1750
+ #~ msgid "Right, Left Buttons Border Color"
1751
+ #~ msgstr "Derecha, Izquierda color del borde de los botones"
1752
+
1753
+ #~ msgid "Filmstrip Position"
1754
+ #~ msgstr "Posición de la tira de imágenes"
1755
+
1756
+ #~ msgid "Filmstrip Thumbnail Margin"
1757
+ #~ msgstr "Margen de la miniatura de la tira de imágenes"
1758
+
1759
+ #~ msgid "Filmstrip Thumbnail Border Width"
1760
+ #~ msgstr "Anchura del borde de la miniatura la tira de imágenes"
1761
+
1762
+ #~ msgid "Filmstrip Thumbnail Border Style"
1763
+ #~ msgstr "Estilo del borde de la miniatura de la tira de imágenes"
1764
+
1765
+ #~ msgid "Filmstrip Thumbnail Border Color"
1766
+ #~ msgstr "Color del borde de la miniatura de la tira de imágenes"
1767
+
1768
+ #~ msgid "Filmstrip Thumbnail Border Radius"
1769
+ #~ msgstr "Radio del borde de la miniatura de la tira de imágenes"
1770
+
1771
+ #~ msgid "Filmstrip Thumbnail Active Border Width"
1772
+ #~ msgstr "Anchura del borde de la miniatura activa de la tira de imágenes"
1773
+
1774
+ #~ msgid "Filmstrip Thumbnail Active Border Color"
1775
+ #~ msgstr "Color del borde de la miniatura activa de la tira de imágenes"
1776
+
1777
+ #~ msgid "Filmstrip Thumbnail Deactive Opacity"
1778
+ #~ msgstr "Opacidad de las miniaturas no activas de la tira de imágenes"
1779
+
1780
+ #~ msgid "Filmstrip Right, Left Buttons Size"
1781
+ #~ msgstr "Tamaño de los botones Derecha, Izquierda de la tira de imágenes"
1782
+
1783
+ #~ msgid "Filmstrip Right, Left Buttons Color"
1784
+ #~ msgstr "Color de los botones Derecha, Izquierda de la tira de imágenes"
1785
+
1786
+ #~ msgid "Filmstrip Right, Left Button Background Color"
1787
+ #~ msgstr ""
1788
+ #~ "Color de fondo de los botones Derecha, Izquierda de la tira de imágenes"
1789
+
1790
+ #~ msgid "Info Position"
1791
+ #~ msgstr "Posición de la info"
1792
+
1793
+ #~ msgid "Info Alignment"
1794
+ #~ msgstr "Alineamiento de la info"
1795
+
1796
+ #~ msgid "Info Background Color"
1797
+ #~ msgstr "Color de fondo de la info"
1798
+
1799
+ #~ msgid "Info Background Transparency"
1800
+ #~ msgstr "Transparencia del fondo de la info"
1801
+
1802
+ #~ msgid "Info border width"
1803
+ #~ msgstr "Anchura del borde de la info"
1804
+
1805
+ #~ msgid "Info Border Style"
1806
+ #~ msgstr "Estilo del borde de la info"
1807
+
1808
+ #~ msgid "Info Border Color"
1809
+ #~ msgstr "Color del borde de la info"
1810
+
1811
+ #~ msgid "Info Border Radius"
1812
+ #~ msgstr "Radio de borde de la info"
1813
+
1814
+ #~ msgid "Info Padding"
1815
+ #~ msgstr "Desplazamiento de la info"
1816
+
1817
+ #~ msgid "Info Margin"
1818
+ #~ msgstr "Margen de la info"
1819
+
1820
+ #~ msgid "Title Font Color"
1821
+ #~ msgstr "Color de fuente del título"
1822
+
1823
+ #~ msgid "Title Font Family"
1824
+ #~ msgstr "Familia de fuente del título"
1825
+
1826
+ #~ msgid "Title Font Weight"
1827
+ #~ msgstr "Peso de la fuente del título"
1828
+
1829
+ #~ msgid "Title Font Size"
1830
+ #~ msgstr "Tamaño de fuente del título"
1831
+
1832
+ #~ msgid "Description Font Color"
1833
+ #~ msgstr "Color de fuente de la descripción"
1834
+
1835
+ #~ msgid "Description Font Family"
1836
+ #~ msgstr "Familia de la fuente de la descripción"
1837
+
1838
+ #~ msgid "Description Font Weight"
1839
+ #~ msgstr "Peso de la fuente de la descripción"
1840
+
1841
+ #~ msgid "Description Font Size"
1842
+ #~ msgstr "Tamaño de fuente de la descripción"
1843
+
1844
+ #~ msgid "Lightbox Image Description Height"
1845
+ #~ msgstr "Altura de la descripción de imagen en el lightbox"
1846
+
1847
+ #~ msgid "Comments Width"
1848
+ #~ msgstr "Anchura de los comentarios"
1849
+
1850
+ #~ msgid "Comments Position"
1851
+ #~ msgstr "Posición de los comentarios"
1852
+
1853
+ #~ msgid "Comments Background Color"
1854
+ #~ msgstr "Color de fondo de los comentarios"
1855
+
1856
+ #~ msgid "Comments Font Size"
1857
+ #~ msgstr "Tamaño de fuente de los comentarios"
1858
+
1859
+ #~ msgid "Comments Font Color"
1860
+ #~ msgstr "Color de fuente de los comentarios"
1861
+
1862
+ #~ msgid "Comments Font Family"
1863
+ #~ msgstr "Famillia de fuente de los comentarios"
1864
+
1865
+ #~ msgid "Comments Author Font Size"
1866
+ #~ msgstr "Tamaño de fuente para el autor en los comentarios"
1867
+
1868
+ #~ msgid "Users and Hashtag Color"
1869
+ #~ msgstr "Color de usuarios y hashtag"
1870
+
1871
+ #~ msgid "Users and Hashtag Hover Color"
1872
+ #~ msgstr "Color al pasar por encima de los usuarios y hashtag"
1873
+
1874
+ #~ msgid "Comments Date Font Size"
1875
+ #~ msgstr "Tamaño de fuente para la fecha en los comentarios"
1876
+
1877
+ #~ msgid "Comments Body Font Size"
1878
+ #~ msgstr "Tamaño de fuente del cuerpo de los comentarios"
1879
+
1880
+ #~ msgid "Comment Input Border Width"
1881
+ #~ msgstr "Anchura del borde del cuadro de introducir comentario"
1882
+
1883
+ #~ msgid "Comment Input Border Style"
1884
+ #~ msgstr "Estilo del borde del cuadro de introducir comentario"
1885
+
1886
+ #~ msgid "Comment Input Border Color"
1887
+ #~ msgstr "Color del borde del cuadro de introducir comentario"
1888
+
1889
+ #~ msgid "Comment Input Border Radius"
1890
+ #~ msgstr "Radio del borde del cuadro de introducir comentario"
1891
+
1892
+ #~ msgid "Comment Input Padding"
1893
+ #~ msgstr "Desplazamiento del borde del cuadro de introducir comentario"
1894
+
1895
+ #~ msgid "Comment Input Background Color"
1896
+ #~ msgstr "Color de fondo del cuadro de introducir comentario"
1897
+
1898
+ #~ msgid "Comment Button Background Color"
1899
+ #~ msgstr "Color de fondo del botón de introducir comentario"
1900
+
1901
+ #~ msgid "Comment Button Padding"
1902
+ #~ msgstr "Desplazamiento del botón de comentar"
1903
+
1904
+ #~ msgid "Comment Button Border Width"
1905
+ #~ msgstr "Anchura del borde del botón de comentar"
1906
+
1907
+ #~ msgid "Comment Button Border Style"
1908
+ #~ msgstr "Estilo del borde del botón de comentar"
1909
+
1910
+ #~ msgid "Comment Button Border Color"
1911
+ #~ msgstr "Color del borde del botón de comentar"
1912
+
1913
+ #~ msgid "Comment Button Border Radius"
1914
+ #~ msgstr "Radio del borde del botón de comentar"
1915
+
1916
+ #~ msgid "Comment Separator Width"
1917
+ #~ msgstr "Anchura del separador en comentarios"
1918
+
1919
+ #~ msgid "Comment Separator Style"
1920
+ #~ msgstr "Estilo del separador en comentarios"
1921
+
1922
+ #~ msgid "Comment Separator Color"
1923
+ #~ msgstr "Color del separador en los comentarios"
1924
+
1925
+ #~ msgid "Load More Comments Text Color"
1926
+ #~ msgstr "Color del texto Cargar más comentarios"
1927
+
1928
+ #~ msgid "Load More Comments Text Hover Color"
1929
+ #~ msgstr "Color al pasar por encima del texto Cargar más comentarios"
1930
+
1931
+ #~ msgid "Photo Wrapper Padding"
1932
+ #~ msgstr "Desplazamiento del contenedor de fotos"
1933
+
1934
+ #~ msgid "Photo Wrapper Border Size"
1935
+ #~ msgstr "Tamaño del borde del contenedor de fotos"
1936
+
1937
+ #~ msgid "Photo Wrapper Border Color"
1938
+ #~ msgstr "Color del borde del contenedor de fotos"
1939
+
1940
+ #~ msgid "Photo border Radius"
1941
+ #~ msgstr "Radio del borde de la foto"
1942
+
1943
+ #~ msgid "Photo Wrapper Background Color"
1944
+ #~ msgstr "Color de fondo del contenedor de fotos"
1945
+
1946
+ #~ msgid "Photo Meta Background Color"
1947
+ #~ msgstr "Color de fondo de los meta de la foto"
1948
+
1949
+ #~ msgid "Same Line For Likes and Comments"
1950
+ #~ msgstr "Misma línea para los Me gusta y los comentarios."
1951
+
1952
+ #~ msgid "\"Likes\" Text Color"
1953
+ #~ msgstr "Color del texto de los \"Me gusta\""
1954
+
1955
+ #~ msgid "\"Comments\" Text Color"
1956
+ #~ msgstr "Color del texto de los \"Comentarios\""
1957
+
1958
+ #~ msgid "Photo Caption Font Size"
1959
+ #~ msgstr "Tamaño de fuente de los títulos de fotos"
1960
+
1961
+ #~ msgid "Photo Caption Color"
1962
+ #~ msgstr "Color de los títulos de las fotos"
1963
+
1964
+ #~ msgid "Photo Margin"
1965
+ #~ msgstr "Margen de la foto"
1966
+
1967
+ #~ msgid "Photo Caption Hover Color"
1968
+ #~ msgstr "Color al pasar por encima de los títulos de las fotos"
1969
+
1970
+ #~ msgid "\"Likes\" and \"Comments\" Font Size"
1971
+ #~ msgstr "Tamaño de fuente de los \"Me gusta\" y \"Comentarios\""
1972
+
1973
+ #~ msgid "Image Overlay Hover Color"
1974
+ #~ msgstr "Color de la superposición al pasar por encima de las fotos"
1975
+
1976
+ #~ msgid "Image Overlay Transparency"
1977
+ #~ msgstr "Transparencia de la superposición al pasar por encima de las fotos"
1978
+
1979
+ #~ msgid "Hover Icon Color"
1980
+ #~ msgstr "Color de icono al pasar por encima"
1981
+
1982
+ #~ msgid "Hover Icon Size"
1983
+ #~ msgstr "Tamaño del icono al pasar por encima"
1984
+
1985
+ #~ msgid "Thumbnail Username Background Color"
1986
+ #~ msgstr "Color de fondo de la miniatura del nombre de usuario"
1987
+
1988
+ #~ msgid "Thumbnail Username Color"
1989
+ #~ msgstr "Color de la miniatura del nombre de usuario"
1990
+
1991
+ #~ msgid "Thumbnail Hover Effect"
1992
+ #~ msgstr "Efecto al pasar por encima de las miniaturas"
1993
+
1994
+ #~ msgid "Here You Can Customize Your Theme"
1995
+ #~ msgstr "Aquí puedes personalizar tu tema"
1996
+
1997
+ #~ msgid ""
1998
+ #~ "Instagram Feed WD is a user-friendly tool for displaying user or hashtag-"
1999
+ #~ "based feeds on your website. You can create feeds with one of the "
2000
+ #~ "available layouts. It allows displaying image metadata, open up images in "
2001
+ #~ "lightbox, download them and even share in social networking websites."
2002
+ #~ msgstr ""
2003
+ #~ "Instagram Feed WD es una herramienta amigable para mostrar feeds según "
2004
+ #~ "usuario o hashtag en tu página web. Puedes crear feeds con uno de los "
2005
+ #~ "diseños disponibles. Permite mostrar datos de imágenes, abrir las "
2006
+ #~ "imágenes en lightbox (cajas de luz), descargarlas e incluso compartirlas "
2007
+ #~ "en redes sociales."
2008
+
2009
+ #~ msgid "Updates"
2010
+ #~ msgstr "Actualizaciones"
2011
+
2012
+ #~ msgid ""
2013
+ #~ "You can download the latest version of your plugin from your %s account.\n"
2014
+ #~ " After deactivating and deleting the "
2015
+ #~ "current version, install the downloaded version\n"
2016
+ #~ " of the plugin"
2017
+ #~ msgstr ""
2018
+ #~ "Puedes descargar la última versión del plugin desde tu %s cuenta.\n"
2019
+ #~ "Después de desactivar y borrar la versión actual, instala la versión "
2020
+ #~ "descargada\n"
2021
+ #~ "del plugin"
2022
+
2023
+ #~ msgid "Current version %s"
2024
+ #~ msgstr "Versión actual %s"
2025
+
2026
+ #~ msgid "There is a new %s version"
2027
+ #~ msgstr "Hay una nueva versión %s"
2028
+
2029
+ #~ msgid "What's new:"
2030
+ #~ msgstr "Que hay nuevo:"
2031
+
2032
+ #~ msgid "More updates"
2033
+ #~ msgstr "Más actualizaciones"
2034
+
2035
+ #~ msgid "%s is up to date."
2036
+ #~ msgstr "%s está actualizado."
2037
+
2038
+ #~ msgid "Show less"
2039
+ #~ msgstr "Mostrar menos"
2040
+
2041
+ #~ msgid "Click here to get your access token and user ID"
2042
+ #~ msgstr "Нажмите здесь, чтобы получить свой токен и ID"
2043
+
2044
+ #~ msgid "Follow on Instagram button"
2045
+ #~ msgstr "Кнопка \"Следовать в Инстаграме\""
2046
+
2047
+ #~ msgid "Resort After Loading New Images"
2048
+ #~ msgstr "Пересортировка после загрузки новых изображений"
2049
+
2050
+ #~ msgid "Show Usernames"
2051
+ #~ msgstr "Показать имена пользователей"
2052
+
2053
+ #~ msgid "Enable Original Image Display Button"
2054
+ #~ msgstr "Вкл. кнопку Отобр. оригин. изобр."
2055
+
2056
+ #~ msgid "Delete all plugin related data from database"
2057
+ #~ msgstr "Удалить из базы данных все данные, касающиеся плагина"
2058
+
2059
+ #~ msgid "Min Image Width"
2060
+ #~ msgstr "Минимальная ширина изображения"
2061
+
2062
+ #~ msgid "Max Image Width"
2063
+ #~ msgstr "Максимальная ширина изображения"
2064
+
2065
+ #~ msgid "User Padding"
2066
+ #~ msgstr "Внутренний отступ имени пользователя"
2067
+
2068
+ #~ msgid "Overlay background transparency"
2069
+ #~ msgstr "Прозрачность фона наложения"
2070
+
2071
+ #~ msgid "Control Buttons Container Border Radius"
2072
+ #~ msgstr "Радиус рамки контейнера кнопок управления"
2073
+
2074
+ #~ msgid "Control Buttons Transparency"
2075
+ #~ msgstr "Прозрачность кнопок управления"
2076
+
2077
+ #~ msgid "Close Button Transparency"
2078
+ #~ msgstr "Прозрачность кнопки \"Закрыть\""
2079
+
2080
+ #~ msgid "Right, Left Buttons Transparency"
2081
+ #~ msgstr "Прозрачность кнопок влево / вправо"
2082
+
2083
+ #~ msgid "Filmstrip Thumbnail Deactive Transparency"
2084
+ #~ msgstr "Прозрачность неактивных миниатюр диафильма"
2085
+
2086
+ #~ msgid "Access Token is invalid, please get it again"
2087
+ #~ msgstr "Токен доступа неверный, пожалуйста, получите его заново"
2088
+
2089
+ #~ msgid "Feed Doesn't exists"
2090
+ #~ msgstr "Фид не существует"
2091
+
2092
+ #~ msgid "Unable to display unpublished feed"
2093
+ #~ msgstr "Невозможно отобразить неопубликованный фид"
2094
+
2095
+ #~ msgid "Instagram WDI"
2096
+ #~ msgstr "Instagram WDI"
2097
+
2098
+ #~ msgid "Already added!"
2099
+ #~ msgstr "Уже добавлено!"
2100
+
2101
+ #~ msgid "Instagram WD description."
2102
+ #~ msgstr "Описание Instagram WD"
2103
+
2104
+ #~ msgid ""
2105
+ #~ "You can download the latest version of your plugins from your %s "
2106
+ #~ "account.\n"
2107
+ #~ " After deactivate and delete the current version.\n"
2108
+ #~ " Install the downloaded latest version of the plugin."
2109
+ #~ msgstr ""
2110
+ #~ "Вы можете загрузить последнюю версию плагинов из своего %s аккаунта.\n"
2111
+ #~ " После деактивации удалите текущую версию.\n"
2112
+ #~ " Установите загруженную последнюю плагина."
2113
+
2114
+ #~ msgid "Close Button: "
2115
+ #~ msgstr "Кнопка Закрыть"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-instagram-feed-wd.html
4
  Tags: : custom instagram Feed, instagram, instagram account, instagram feed, instagram photos, instagram plugin, instagram posts, instagram stream, instagram wall, mobile instagram, responsive instagram, gallery, hashtag, images, photos, shortcode, widget ,Grid instagram view, instagram gallery, instagram images, instagram page, instagram plugin, instagram responsive, instagram touch, Instagram widgets, lightbox instagram, lightbox, feed
5
  Requires at least: 3.9
6
  Tested up to: 4.5
7
- Stable tag: 1.0.10
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -12,6 +12,8 @@ This Instagram plugin is a user-friendly tool for displaying user or hashtag-ba
12
 
13
  == Description ==
14
 
 
 
15
  [WordPress WD Instagram Feed ](https://web-dorado.com/products/wordpress-instagram-feed-wd.html)
16
  [Demo](http://wpdemo.web-dorado.com/instagram-wd/)
17
  [User Guide](https://web-dorado.com/wordpress-instagram-feed-wd/installation-and-configuration/installation.html)
@@ -105,6 +107,11 @@ After downloading the ZIP file of the Instagram Feed WD plugin,
105
 
106
  == Changelog ==
107
 
 
 
 
 
 
108
  = 1.0.10 =
109
  Temporarily disable pagination in hashtag based feeds
110
  Changed: Russian Translations ( Thanks to Alex Petrin )
4
  Tags: : custom instagram Feed, instagram, instagram account, instagram feed, instagram photos, instagram plugin, instagram posts, instagram stream, instagram wall, mobile instagram, responsive instagram, gallery, hashtag, images, photos, shortcode, widget ,Grid instagram view, instagram gallery, instagram images, instagram page, instagram plugin, instagram responsive, instagram touch, Instagram widgets, lightbox instagram, lightbox, feed
5
  Requires at least: 3.9
6
  Tested up to: 4.5
7
+ Stable tag: 1.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ **IMPORTANT: Instagram changed the API. You need to get a new access token by using "Sign in with Instagram" button on the Settings page in order to keep your Instagram Feed WD plugin functioning after June 1.**
16
+
17
  [WordPress WD Instagram Feed ](https://web-dorado.com/products/wordpress-instagram-feed-wd.html)
18
  [Demo](http://wpdemo.web-dorado.com/instagram-wd/)
19
  [User Guide](https://web-dorado.com/wordpress-instagram-feed-wd/installation-and-configuration/installation.html)
107
 
108
  == Changelog ==
109
 
110
+ = 1.1.0 =
111
+ **IMPORTANT: Instagram changed the API. You need to get a new access token by using "Sign in with Instagram" button on the Settings page in order to keep your Instagram Feed WD plugin functioning after June 1.**
112
+ new: Instagram new API
113
+ new: Spanish translation (Thanks to Alexandro Lacadena Gomez)
114
+
115
  = 1.0.10 =
116
  Temporarily disable pagination in hashtag based feeds
117
  Changed: Russian Translations ( Thanks to Alex Petrin )
update/wdi_update.php CHANGED
@@ -66,6 +66,18 @@ function wdi_update_diff($new_v, $old_v = 0.0){
66
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . WDI_THEME_TABLE . " ADD `th_photo_img_hover_effect` varchar(32) NOT NULL DEFAULT 'none'");
67
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . WDI_THEME_TABLE . " ADD `mas_photo_img_hover_effect` varchar(32) NOT NULL DEFAULT 'none'");
68
  }
69
- }
 
 
 
 
 
 
 
 
 
70
 
71
 
 
 
 
66
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . WDI_THEME_TABLE . " ADD `th_photo_img_hover_effect` varchar(32) NOT NULL DEFAULT 'none'");
67
  $wpdb->query("ALTER TABLE " . $wpdb->prefix . WDI_THEME_TABLE . " ADD `mas_photo_img_hover_effect` varchar(32) NOT NULL DEFAULT 'none'");
68
  }
69
+ if(version_compare($old_v, "1.0", '<')){
70
+ /*add api update notice*/
71
+ $admin_notices_option = get_option('wdi_admin_notice', array());
72
+ $admin_notices_option['api_update_token_reset'] = array(
73
+ 'start' => current_time("n/j/Y"),
74
+ 'int' => 0,
75
+ //'dismissed' => 1,
76
+ );
77
+ update_option('wdi_admin_notice', $admin_notices_option);
78
+ }
79
 
80
 
81
+
82
+ }
83
+
wd-instagram-feed.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Instagram Feed WD
4
  Plugin URI: https://web-dorado.com/products/wordpress-instagram-feed-wd.html
5
  Description: WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website. You can create feeds with one of the available layouts. It allows displaying image metadata, open up images in lightbox, download them and even share in social networking websites.
6
- Version: 1.0.10
7
  Author: WebDorado
8
  Author URI: https://web-dorado.com
9
  License: GPLv2 or later
@@ -20,7 +20,7 @@ define("WDI_META", "_".WDI_VAR."_meta");
20
  //define("wdi",'wdi');
21
  define('WDI_FEED_TABLE','wdi_feeds');
22
  define('WDI_THEME_TABLE','wdi_themes');
23
- define('WDI_VERSION','1.0.10');
24
  define('WDI_IS_PRO','false');
25
 
26
 
3
  Plugin Name: Instagram Feed WD
4
  Plugin URI: https://web-dorado.com/products/wordpress-instagram-feed-wd.html
5
  Description: WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website. You can create feeds with one of the available layouts. It allows displaying image metadata, open up images in lightbox, download them and even share in social networking websites.
6
+ Version: 1.1.0
7
  Author: WebDorado
8
  Author URI: https://web-dorado.com
9
  License: GPLv2 or later
20
  //define("wdi",'wdi');
21
  define('WDI_FEED_TABLE','wdi_feeds');
22
  define('WDI_THEME_TABLE','wdi_themes');
23
+ define('WDI_VERSION','1.1.0');
24
  define('WDI_IS_PRO','false');
25
 
26