All Meta Tags - Version 4.6

Version Description

  • Russian translation updated. (Thanks to Milena Kiseleva)
  • The navigation of the tabs is rearranged.
  • Fixed an issue due to which the sidebar was not hiding on mobile devices.
  • Code of sidebar moved to separate file 'sidebar.php'.
  • Support page tab moved from external source to plugin code.
  • My avatar moved from external source to plugin folder.
  • Banner moved from external source to plugin folder.
  • Code of PayPal button updated.
Download this release

Release Info

Developer Arthur Gareginyan
Plugin Icon 128x128 All Meta Tags
Version 4.6
Comparing to
See all releases

Code changes from version 4.5 to 4.6

all-meta-tags.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily and safely add your custom Meta Tags to WordPress website's header.
6
  * Author: Arthur Gareginyan
7
  * Author URI: https://www.arthurgareginyan.com
8
- * Version: 4.5
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
5
  * Description: Easily and safely add your custom Meta Tags to WordPress website's header.
6
  * Author: Arthur Gareginyan
7
  * Author URI: https://www.arthurgareginyan.com
8
+ * Version: 4.6
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
inc/css/admin.css CHANGED
@@ -5,7 +5,7 @@
5
  * @uthor Arthur Gareginyan
6
  * @link https://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
- * @since 4.5
9
  */
10
 
11
 
@@ -128,45 +128,45 @@ h2 .version {
128
 
129
  /* Sidebar
130
  -------------------------------------------------------------- */
131
- #side-sortables {
132
- position: relative;
133
- }
134
- #side-sortables .postbox {
135
- text-align: center;
136
- }
137
- #side-sortables .paypal {
138
- max-width: 100%;
139
- font-size: 18px;
140
- overflow: hidden;
141
- }
142
- #side-sortables .banner .inside {
143
- margin: 0;
144
- padding: 5px 0;
145
- }
146
- #side-sortables .banner img {
147
- width: 265px;
148
- }
 
 
 
149
 
150
  /* Support - addition section
151
  -------------------------------------------------------------- */
152
  #support-addition {
153
  display: none;
154
  }
155
- #support-addition .paypal {
156
- font-size: 18px;
157
- }
158
 
159
  /* Responsive page
160
  -------------------------------------------------------------- */
161
  @media (max-width: 860px) {
162
  .inner-sidebar {
163
- display: none;
164
  }
165
  #support-addition {
166
- display: block;
167
  }
168
  #post-body-content {
169
- margin-right: 0;
170
  }
171
  }
172
 
@@ -332,6 +332,49 @@ h2 .version {
332
  display: inline;
333
  }
334
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335
  /* Custom List Numbers
336
  -------------------------------------------------------------- */
337
  .custom-counter {
5
  * @uthor Arthur Gareginyan
6
  * @link https://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
+ * @since 4.6
9
  */
10
 
11
 
128
 
129
  /* Sidebar
130
  -------------------------------------------------------------- */
131
+ #side-sortables {
132
+ position: relative;
133
+ }
134
+ #side-sortables .postbox {
135
+ text-align: center;
136
+ }
137
+ #side-sortables .banner .inside {
138
+ margin: 0;
139
+ padding: 5px 0;
140
+ }
141
+ #side-sortables .banner img {
142
+ width: 265px;
143
+ }
144
+
145
+ /* PayPal button
146
+ -------------------------------------------------------------- */
147
+ .paypal {
148
+ max-width: 100%;
149
+ font-size: 18px;
150
+ overflow: hidden;
151
+ }
152
 
153
  /* Support - addition section
154
  -------------------------------------------------------------- */
155
  #support-addition {
156
  display: none;
157
  }
 
 
 
158
 
159
  /* Responsive page
160
  -------------------------------------------------------------- */
161
  @media (max-width: 860px) {
162
  .inner-sidebar {
163
+ display: none !important;
164
  }
165
  #support-addition {
166
+ display: block !important;
167
  }
168
  #post-body-content {
169
+ margin-right: 0 !important;
170
  }
171
  }
172
 
332
  display: inline;
333
  }
334
 
335
+ /* Buttons with label
336
+ -------------------------------------------------------------- */
337
+ .btn-labeled {
338
+ margin: 5px 0 15px 0;
339
+ padding-top: 0;
340
+ padding-bottom: 0;
341
+ max-width: 100%;
342
+ overflow: hidden;
343
+ color: #32689a;
344
+ font-family: "Lucida Grande", Tahoma, sans-serif;
345
+ font-size: 18px;
346
+ font-weight: 600;
347
+ text-shadow: 1px 1px 0 #fff;
348
+ border-bottom-color: rgba(0, 0, 0, 0.4);
349
+ border-radius: 3px !important;
350
+ background-image: -moz-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
351
+ background-image: -ms-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
352
+ background-image: -o-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
353
+ background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.1)), color-stop(49%, rgba(255,255,255,.05)), color-stop(51%, rgba(0,0,0,.05)), to(rgba(0,0,0,.1)));
354
+ background-image: -webkit-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
355
+ background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1));
356
+ }
357
+ .btn-labeled:hover,
358
+ .btn-labeled:focus {
359
+ color: #32689a;
360
+ background-position: 0;
361
+ background-color: transparent;
362
+ background-image: -moz-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
363
+ background-image: -ms-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
364
+ background-image: -o-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
365
+ background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.15)), color-stop(49%, rgba(255,255,255,.15)), color-stop(51%, rgba(0,0,0,.1)), to(rgba(0,0,0,.15)));
366
+ background-image: -webkit-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
367
+ background-image: linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15));
368
+ }
369
+ .btn-labeled .btn-label {
370
+ position: relative;
371
+ display: inline-block;
372
+ width: 48px;
373
+ left: -12px;
374
+ padding: 6px 12px;
375
+ border-right: 1px solid #ccc;
376
+ }
377
+
378
  /* Custom List Numbers
379
  -------------------------------------------------------------- */
380
  .custom-counter {
inc/img/avatar.png ADDED
Binary file
inc/img/banner.png ADDED
Binary file
inc/img/paypal.svg ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 90">
2
+ <defs>
3
+ <style>.cls-1{fill:#32689a;}</style>
4
+ </defs>
5
+ <path class="cls-1" d="M58.1,0H18.6L1.2,80.1h23.1L30,53.6h16.5c15.8,0,29-9.7,32.6-26.3C83.1,8.5,69.6,0,58.1,0z M40.8,38.2h-7.5 l5-21.9h11.3c3.9,0,6.8,2.3,7.8,5.7c-0.5-0.1-1-0.2-1.5-0.2H44.5L40.8,38.2z M57.3,27.3c-1.4,6-7,10.7-12.8,10.9l2.7-12h10.3 C57.5,26.5,57.4,26.9,57.3,27.3z M85.4,32.8c1.3-6.2,0.7-11.3-1.1-15.3c3.7,4.5,5.7,11,3.8,19.7c-3.5,16.6-16.8,26.3-32.6,26.3 H39L33.3,90H10.2l1-4.4h19.4l5.7-26.6h16.5C68.6,59.1,81.8,49.3,85.4,32.8z" id="PayPal"/>
6
+
7
+ </svg>
inc/img/thanks.png ADDED
Binary file
inc/js/admin.js CHANGED
@@ -5,7 +5,7 @@
5
  * @uthor Arthur Gareginyan
6
  * @link https://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
- * @since 4.5
9
  */
10
 
11
 
@@ -22,9 +22,7 @@ jQuery(document).ready(function($) {
22
 
23
  // Add dynamic content to page tabs. Needed for having an up to date content.
24
  $('.include-tab-author').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-author');
25
- $('.include-tab-support').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-support');
26
  $('.include-tab-store').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-store');
27
- $('.include-banner').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-banner');
28
 
29
  // Add questions and answers into spoilers and color them in different colors
30
  $('.panel-group .panel').each(function(i) {
5
  * @uthor Arthur Gareginyan
6
  * @link https://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
+ * @since 4.6
9
  */
10
 
11
 
22
 
23
  // Add dynamic content to page tabs. Needed for having an up to date content.
24
  $('.include-tab-author').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-author');
 
25
  $('.include-tab-store').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-store');
 
26
 
27
  // Add questions and answers into spoilers and color them in different colors
28
  $('.panel-group .panel').each(function(i) {
inc/php/messages.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Hello message - Bootstrap Modal
12
  *
13
- * @since 4.5
14
  */
15
  function allmetatags_hello_message() {
16
 
@@ -25,7 +25,7 @@ function allmetatags_hello_message() {
25
  <div class="modal-dialog">
26
  <div class="modal-content">
27
  <div class="modal-body">
28
- <img src="https://www.spacexchimp.com/assets/dynamic-content/images/avatar.png">
29
  <button type="button" class="close" data-dismiss="modal">&times;</button>
30
  <p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', ALLMT_TEXT ); ?></p>
31
  <p><?php printf(
10
  /**
11
  * Hello message - Bootstrap Modal
12
  *
13
+ * @since 4.6
14
  */
15
  function allmetatags_hello_message() {
16
 
25
  <div class="modal-dialog">
26
  <div class="modal-content">
27
  <div class="modal-body">
28
+ <img src="<?php echo ALLMT_URL . 'inc/img/avatar.png'; ?>">
29
  <button type="button" class="close" data-dismiss="modal">&times;</button>
30
  <p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', ALLMT_TEXT ); ?></p>
31
  <p><?php printf(
inc/php/page.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Render Settings Page
12
  *
13
- * @since 4.5
14
  */
15
  function allmetatags_render_submenu_page() {
16
 
@@ -47,17 +47,18 @@ function allmetatags_render_submenu_page() {
47
  <li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Settings', $text ); ?></a></li>
48
  <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
49
  <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
50
- <li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', $text ); ?></a></li>
51
  <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
 
52
  <li><a href="#tab-store" data-toggle="tab"><?php _e( 'Store', $text ); ?></a></li>
53
  </ul>
54
  <!-- END-TABS NAVIGATION MENU -->
55
 
56
  <!-- TAB 1 -->
57
  <div class="tab-page fade active in" id="tab-core">
58
-
 
 
59
  <?php require_once( ALLMT_PATH . 'inc/php/settings.php' ); ?>
60
-
61
  </div>
62
  <!-- END-TAB 1 -->
63
 
@@ -195,19 +196,30 @@ function allmetatags_render_submenu_page() {
195
  <!-- END-TAB 3 -->
196
 
197
  <!-- TAB 4 -->
198
- <div class="tab-page fade" id="tab-author">
199
  <div class="postbox">
200
- <h3 class="title"><?php _e( 'Author', $text ); ?></h3>
201
- <div class="inside include-tab-author"></div>
 
 
 
 
 
 
 
 
 
 
 
202
  </div>
203
  </div>
204
  <!-- END-TAB 4 -->
205
 
206
  <!-- TAB 5 -->
207
- <div class="tab-page fade" id="tab-support">
208
  <div class="postbox">
209
- <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
210
- <div class="inside include-tab-support"></div>
211
  </div>
212
  </div>
213
  <!-- END-TAB 5 -->
@@ -218,8 +230,6 @@ function allmetatags_render_submenu_page() {
218
  </div>
219
  <!-- END-TAB 6 -->
220
 
221
- <div class="additional-css"></div>
222
-
223
  </div>
224
 
225
  </div>
10
  /**
11
  * Render Settings Page
12
  *
13
+ * @since 4.6
14
  */
15
  function allmetatags_render_submenu_page() {
16
 
47
  <li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Settings', $text ); ?></a></li>
48
  <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
49
  <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
 
50
  <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
51
+ <li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', $text ); ?></a></li>
52
  <li><a href="#tab-store" data-toggle="tab"><?php _e( 'Store', $text ); ?></a></li>
53
  </ul>
54
  <!-- END-TABS NAVIGATION MENU -->
55
 
56
  <!-- TAB 1 -->
57
  <div class="tab-page fade active in" id="tab-core">
58
+ <!-- INCLUDE SIDEBAR -->
59
+ <?php require_once( ALLMT_PATH . 'inc/php/sidebar.php' ); ?>
60
+ <!-- INCLUDE SETTINGS -->
61
  <?php require_once( ALLMT_PATH . 'inc/php/settings.php' ); ?>
 
62
  </div>
63
  <!-- END-TAB 1 -->
64
 
196
  <!-- END-TAB 3 -->
197
 
198
  <!-- TAB 4 -->
199
+ <div class="tab-page fade" id="tab-support">
200
  <div class="postbox">
201
+ <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
202
+ <div class="inside">
203
+ <img src="<?php echo ALLMT_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!" class="pull-right">
204
+ <p><?php _e( 'If you appreciate my work, you can buy me a coffee!', $text ); ?></p>
205
+ <p><?php _e( 'I spend a lot of time and effort trying to make sure that the themes, plugins and another things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
206
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default btn-labeled">
207
+ <span class="btn-label">
208
+ <img src="<?php echo ALLMT_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
209
+ </span>
210
+ <?php _e( 'Donate with PayPal', $text ); ?>
211
+ </a>
212
+ <p><?php _e( 'Thank you for your support!', $text ); ?></p>
213
+ </div>
214
  </div>
215
  </div>
216
  <!-- END-TAB 4 -->
217
 
218
  <!-- TAB 5 -->
219
+ <div class="tab-page fade" id="tab-author">
220
  <div class="postbox">
221
+ <h3 class="title"><?php _e( 'Author', $text ); ?></h3>
222
+ <div class="inside include-tab-author"></div>
223
  </div>
224
  </div>
225
  <!-- END-TAB 5 -->
230
  </div>
231
  <!-- END-TAB 6 -->
232
 
 
 
233
  </div>
234
 
235
  </div>
inc/php/settings.php CHANGED
@@ -8,45 +8,11 @@
8
  defined( 'ABSPATH' ) or die( "Restricted access!" );
9
 
10
  /**
11
- * Render Settings Tab
12
  *
13
- * @since 4.5
14
  */
15
  ?>
16
- <!-- SIDEBAR -->
17
- <div class="inner-sidebar">
18
- <div id="side-sortables" class="meta-box-sortabless ui-sortable">
19
-
20
- <div class="postbox about">
21
- <h3 class="title"><?php _e( 'About', $text ); ?></h3>
22
- <div class="inside">
23
- <p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', $text ); ?></p>
24
- </div>
25
- </div>
26
-
27
- <div class="postbox support">
28
- <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
29
- <div class="inside">
30
- <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
31
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', $text ); ?></a>
32
- <p><?php _e( 'Thanks for your support!', $text ); ?></p>
33
- </div>
34
- </div>
35
-
36
- <div class="postbox help">
37
- <h3 class="title"><?php _e( 'Help', $text ); ?></h3>
38
- <div class="inside">
39
- <p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
40
- </div>
41
- </div>
42
-
43
- <div class="include-banner"></div>
44
-
45
- </div>
46
- </div>
47
- <!-- END-SIDEBAR -->
48
-
49
- <!-- FORM -->
50
  <div class="has-sidebar sm-padded">
51
  <div id="post-body-content" class="has-sidebar-content">
52
  <div class="meta-box-sortabless">
@@ -244,7 +210,12 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
244
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
245
  <div class="inside">
246
  <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
247
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', $text ); ?></a>
 
 
 
 
 
248
  <p><?php _e( 'Thanks for your support!', $text ); ?></p>
249
  </div>
250
  </div>
@@ -254,5 +225,4 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
254
  </div>
255
  </div>
256
  </div>
257
- <!-- END-FORM -->
258
  <?php
8
  defined( 'ABSPATH' ) or die( "Restricted access!" );
9
 
10
  /**
11
+ * Render Settings Tab Content
12
  *
13
+ * @since 4.6
14
  */
15
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  <div class="has-sidebar sm-padded">
17
  <div id="post-body-content" class="has-sidebar-content">
18
  <div class="meta-box-sortabless">
210
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
211
  <div class="inside">
212
  <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
213
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default btn-labeled">
214
+ <span class="btn-label">
215
+ <img src="<?php echo ALLMT_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
216
+ </span>
217
+ <?php _e( 'Donate with PayPal', $text ); ?>
218
+ </a>
219
  <p><?php _e( 'Thanks for your support!', $text ); ?></p>
220
  </div>
221
  </div>
225
  </div>
226
  </div>
227
  </div>
 
228
  <?php
inc/php/sidebar.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Prevent Direct Access
5
+ *
6
+ * @since 0.1
7
+ */
8
+ defined( 'ABSPATH' ) or die( "Restricted access!" );
9
+
10
+ /**
11
+ * Render Sidebar
12
+ *
13
+ * @since 4.6
14
+ */
15
+ ?>
16
+ <div class="inner-sidebar">
17
+ <div id="side-sortables" class="meta-box-sortabless ui-sortable">
18
+
19
+ <div class="postbox about">
20
+ <h3 class="title"><?php _e( 'About', $text ); ?></h3>
21
+ <div class="inside">
22
+ <p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', $text ); ?></p>
23
+ </div>
24
+ </div>
25
+
26
+ <div class="postbox support">
27
+ <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
28
+ <div class="inside">
29
+ <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
30
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default btn-labeled">
31
+ <span class="btn-label">
32
+ <img src="<?php echo ALLMT_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
33
+ </span>
34
+ <?php _e( 'Donate with PayPal', $text ); ?>
35
+ </a>
36
+ </div>
37
+ </div>
38
+
39
+ <div class="postbox help">
40
+ <h3 class="title"><?php _e( 'Help', $text ); ?></h3>
41
+ <div class="inside">
42
+ <p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
43
+ </div>
44
+ </div>
45
+
46
+ <div class="postbox banner">
47
+ <div class="inside">
48
+ <a href="https://www.spacexchimp.com/" target="_blank">
49
+ <img src="<?php echo ALLMT_URL . 'inc/img/banner.png'; ?>" alt="Space X-Chimp Studio">
50
+ </a>
51
+ </div>
52
+ </div>
53
+
54
+ </div>
55
+ </div>
56
+ <?php
languages/all-meta-tags-es_ES.mo CHANGED
Binary file
languages/all-meta-tags-es_ES.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Development (trunk)\n"
6
- "POT-Creation-Date: 2017-06-21 14:12+0300\n"
7
- "PO-Revision-Date: 2017-06-21 14:12+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -55,7 +55,7 @@ msgstr "por %s Arthur Gareginyan %s"
55
  msgid "Version"
56
  msgstr ""
57
 
58
- #: inc/php/page.php:48 inc/php/page.php:67
59
  msgid "Usage"
60
  msgstr "Uso"
61
 
@@ -63,79 +63,79 @@ msgstr "Uso"
63
  msgid "F.A.Q."
64
  msgstr ""
65
 
66
- #: inc/php/page.php:50 inc/php/page.php:200 inc/php/settings.php:194
67
- msgid "Author"
68
- msgstr "Autor"
69
-
70
- #: inc/php/page.php:51 inc/php/page.php:209 inc/php/settings.php:28 inc/php/settings.php:242
71
  msgid "Support"
72
  msgstr "Soporte"
73
 
 
 
 
 
74
  #: inc/php/page.php:52
75
  msgid "Store"
76
  msgstr ""
77
 
78
- #: inc/php/page.php:69
79
  msgid "To add the meta tags to your website, simply follow these steps:"
80
  msgstr ""
81
 
82
- #: inc/php/page.php:71
83
  msgid "Go to the \"Settings\" tab."
84
  msgstr ""
85
 
86
- #: inc/php/page.php:72
87
  msgid "Fill in the required fields."
88
  msgstr ""
89
 
90
- #: inc/php/page.php:73
91
  msgid "Select the desired settings."
92
  msgstr ""
93
 
94
- #: inc/php/page.php:74
95
  msgid "Click the \"Save changes\" button."
96
  msgstr ""
97
 
98
- #: inc/php/page.php:75
99
  msgid "Enjoy the improved SEO of your website."
100
  msgstr ""
101
 
102
- #: inc/php/page.php:75
103
  msgid "It's that simple!"
104
  msgstr ""
105
 
106
- #: inc/php/page.php:77
107
  msgid "Note!"
108
  msgstr ""
109
 
110
- #: inc/php/page.php:77
111
  msgid "If you want more options then tell me and I will be happy to add it."
112
  msgstr ""
113
 
114
- #: inc/php/page.php:86
115
  msgid "Frequently Asked Questions"
116
  msgstr ""
117
 
118
- #: inc/php/page.php:90
119
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
120
  msgstr ""
121
 
122
- #: inc/php/page.php:112
123
  msgid "Will this plugin work on my WordPress.COM website?"
124
  msgstr ""
125
 
126
- #: inc/php/page.php:113
127
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
128
  msgstr ""
129
 
130
- #: inc/php/page.php:115
131
  msgid "Can I use this plugin on my language?"
132
  msgstr ""
133
 
134
- #: inc/php/page.php:116
135
  msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
136
  msgstr ""
137
 
138
- #: inc/php/page.php:118
139
  #, php-format
140
  msgid ""
141
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is "
@@ -143,49 +143,49 @@ msgid ""
143
  "file to me at the %s and I will include this translation within the next plugin update."
144
  msgstr ""
145
 
146
- #: inc/php/page.php:123
147
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
148
  msgstr ""
149
 
150
- #: inc/php/page.php:124
151
  msgid ""
152
  "Many of plugin users would be delighted if you share your translation with the community. Thanks for your "
153
  "contribution!"
154
  msgstr ""
155
 
156
- #: inc/php/page.php:126
157
  msgid "How does it work?"
158
  msgstr ""
159
 
160
- #: inc/php/page.php:127
161
  msgid ""
162
  "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save "
163
  "changes\" button. Enjoy the improved SEO of your website. It's that simple!"
164
  msgstr ""
165
 
166
- #: inc/php/page.php:129
167
  msgid "How much of description I can enter in the text field?"
168
  msgstr ""
169
 
170
- #: inc/php/page.php:130
171
  msgid ""
172
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
173
  "description."
174
  msgstr ""
175
 
176
- #: inc/php/page.php:132
177
  msgid "How much of keywords I can enter in the text field?"
178
  msgstr ""
179
 
180
- #: inc/php/page.php:133
181
  msgid "I don't limit the number of characters."
182
  msgstr ""
183
 
184
- #: inc/php/page.php:135
185
  msgid "I can't get verify my website. What am I doing wrong?"
186
  msgstr ""
187
 
188
- #: inc/php/page.php:136
189
  msgid ""
190
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is "
191
  "confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the "
@@ -193,43 +193,43 @@ msgid ""
193
  "paste that into the relevant field and you will see “Success” message appear within a few seconds."
194
  msgstr ""
195
 
196
- #: inc/php/page.php:138
197
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
198
  msgstr ""
199
 
200
- #: inc/php/page.php:139
201
  msgid ""
202
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
203
  "plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
204
  msgstr ""
205
 
206
- #: inc/php/page.php:147
207
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
208
  msgstr ""
209
 
210
- #: inc/php/page.php:149
211
  msgid "Does this plugin requires any modification of the theme?"
212
  msgstr ""
213
 
214
- #: inc/php/page.php:150
215
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
216
  msgstr ""
217
 
218
- #: inc/php/page.php:152
219
  msgid "Does this require any knowledge of HTML or CSS?"
220
  msgstr ""
221
 
222
- #: inc/php/page.php:153
223
  msgid ""
224
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
225
  "settings page."
226
  msgstr ""
227
 
228
- #: inc/php/page.php:155
229
  msgid "It's not working. What could be wrong?"
230
  msgstr ""
231
 
232
- #: inc/php/page.php:156
233
  msgid ""
234
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web "
235
  "browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to "
@@ -237,19 +237,19 @@ msgid ""
237
  "may solve the problem."
238
  msgstr ""
239
 
240
- #: inc/php/page.php:157
241
  msgid ""
242
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's "
243
  "support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much "
244
  "information as possible, including a link to your website where the problem can be seen."
245
  msgstr ""
246
 
247
- #: inc/php/page.php:159
248
  msgid ""
249
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
250
  msgstr ""
251
 
252
- #: inc/php/page.php:160
253
  msgid ""
254
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. "
255
  "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or "
@@ -257,84 +257,71 @@ msgid ""
257
  "to the website, this too can help."
258
  msgstr ""
259
 
260
- #: inc/php/page.php:162
261
  msgid "Where to report bug if found?"
262
  msgstr ""
263
 
264
- #: inc/php/page.php:164
265
  #, php-format
266
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
267
  msgstr ""
268
 
269
- #: inc/php/page.php:170
270
  msgid "Where to share any ideas or suggestions to make the plugin better?"
271
  msgstr ""
272
 
273
- #: inc/php/page.php:172
274
  #, php-format
275
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
276
  msgstr ""
277
 
278
- #: inc/php/page.php:177
279
  msgid "I love this plugin! Can I help somehow?"
280
  msgstr ""
281
 
282
- #: inc/php/page.php:179
283
  #, php-format
284
  msgid ""
285
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and "
286
  "thank you!"
287
  msgstr ""
288
 
289
- #: inc/php/page.php:185
290
  msgid "My question wasn't answered here."
291
  msgstr ""
292
 
293
- #: inc/php/page.php:187
294
  #, php-format
295
  msgid ""
296
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, "
297
  "and there is no a special support team, so I have no way to answer everyone."
298
  msgstr ""
299
 
300
- #: inc/php/settings.php:21
301
- msgid "About"
302
- msgstr "Acerca de"
303
-
304
- #: inc/php/settings.php:23
305
- msgid "This plugin allows you to easily add Meta Tags to your website."
306
- msgstr "Este plugin te permite añadir fácilmente Meta Etiquetas personalizadas a tu sitio web."
307
 
308
- #: inc/php/settings.php:30 inc/php/settings.php:244
309
  msgid ""
310
- "I'm an independent developer, without a regular income, so every little contribution helps cover my costs "
311
- "and lets me spend more time building things for people like you to enjoy."
 
 
312
  msgstr ""
313
- "Soy un desarrollador independiente, sin ingresos fijos, por lo que cualquier contribución, por pequeña que "
314
- "sea, me ayuda a cubrir mis gastos y me permite dedicar más tiempo para construir cosas que pueda disfrutar "
315
- "gente como tú."
316
 
317
- #: inc/php/settings.php:31 inc/php/settings.php:245
318
  msgid "Donate with PayPal"
319
  msgstr ""
320
 
321
- #: inc/php/settings.php:32 inc/php/settings.php:246
322
- msgid "Thanks for your support!"
323
- msgstr "¡Gracias por su colaboración!"
324
-
325
- #: inc/php/settings.php:37
326
- msgid "Help"
327
- msgstr "Ayuda"
328
-
329
- #: inc/php/settings.php:39
330
- msgid "If you have a question, please read the information in the FAQ section."
331
- msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
332
 
333
- #: inc/php/settings.php:56
334
  msgid "Web Master Tools"
335
  msgstr "Web Master Tools"
336
 
337
- #: inc/php/settings.php:58
338
  msgid ""
339
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your "
340
  "blog or store before they provide their services to you. You can use the options below to verify your "
@@ -344,7 +331,7 @@ msgstr ""
344
  "antes de que ellos te brinden su servicio. Puedes usar las opciones que aparecen a continuación para "
345
  "verificar tu dominio. Si tu dominio ya está verificado, puedes obviar esto."
346
 
347
- #: inc/php/settings.php:63
348
  msgid ""
349
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
350
  "meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -352,7 +339,7 @@ msgstr ""
352
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
353
  "br>Ejemplo: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
354
 
355
- #: inc/php/settings.php:68
356
  msgid ""
357
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
358
  "meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
@@ -360,7 +347,7 @@ msgstr ""
360
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
361
  "br>Ejemplo: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
362
 
363
- #: inc/php/settings.php:73
364
  msgid ""
365
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
366
  "meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -368,16 +355,16 @@ msgstr ""
368
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
369
  "br>Ejemplo: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
370
 
371
- #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159 inc/php/settings.php:183
372
- #: inc/php/settings.php:219
373
  msgid "Save changes"
374
  msgstr "Guardar los cambios"
375
 
376
- #: inc/php/settings.php:83
377
  msgid "Domain Verification"
378
  msgstr "Verificación del domino"
379
 
380
- #: inc/php/settings.php:85
381
  msgid ""
382
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes "
383
  "sure that you are the correct owner of your blog or store before they provide their services to you. You can "
@@ -389,7 +376,7 @@ msgstr ""
389
  "opciones que aparecen a continuación para verificar tu dominio. Si tu dominio ya está verificado, puedes "
390
  "obviar esto."
391
 
392
- #: inc/php/settings.php:90
393
  msgid ""
394
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
395
  "meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
@@ -397,7 +384,7 @@ msgstr ""
397
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
398
  "br>Ejemplo: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
399
 
400
- #: inc/php/settings.php:95
401
  msgid ""
402
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
403
  "+ArthurGareginyan/"
@@ -405,7 +392,7 @@ msgstr ""
405
  "Ingresa la URL completa del perfil de Google+ del editor. <br>Ejemplo: https://plus.google.com/"
406
  "+ArthurGareginyan/"
407
 
408
- #: inc/php/settings.php:100
409
  msgid ""
410
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
411
  "gareginyan"
@@ -413,11 +400,11 @@ msgstr ""
413
  "Ingresa la URL completa del perfil de Facebook del editor. <br>Ejemplo: https://www.facebook.com/arthur."
414
  "gareginyan"
415
 
416
- #: inc/php/settings.php:105
417
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
418
  msgstr "Ingresa el nombre de usuario de Twitter del editor. <br>Ejemplo: @AGareginyan"
419
 
420
- #: inc/php/settings.php:110
421
  msgid ""
422
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
423
  "meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
@@ -425,7 +412,7 @@ msgstr ""
425
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
426
  "br>Ejemplo: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
427
 
428
- #: inc/php/settings.php:115
429
  msgid ""
430
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
431
  "meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -433,7 +420,7 @@ msgstr ""
433
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
434
  "br>Ejemplo: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
435
 
436
- #: inc/php/settings.php:120
437
  msgid ""
438
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
439
  "meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -441,7 +428,7 @@ msgstr ""
441
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
442
  "br>Ejemplo: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
443
 
444
- #: inc/php/settings.php:125
445
  msgid ""
446
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
447
  "meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
@@ -449,11 +436,11 @@ msgstr ""
449
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
450
  "br>Ejemplo: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
451
 
452
- #: inc/php/settings.php:128
453
  msgid "Custom Meta Tags"
454
  msgstr "Meta etiquetas personalizadas"
455
 
456
- #: inc/php/settings.php:130
457
  msgid ""
458
  "If you can't find a field to enter your required meta tag then you can add it here. In this field you can "
459
  "add multiple meta tags."
@@ -461,11 +448,11 @@ msgstr ""
461
  "Si no encuentras un campo para introducir la meta etiqueta que requieres, puedes añadirla aquí. En este "
462
  "campo puedes agregar varias meta etiquetas."
463
 
464
- #: inc/php/settings.php:141
465
  msgid "Meta Tags for Static Home Page only"
466
  msgstr "Meta etiquetas sólo para la página de inicio estática"
467
 
468
- #: inc/php/settings.php:143
469
  msgid ""
470
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of "
471
  "your website."
@@ -473,11 +460,11 @@ msgstr ""
473
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
474
  "sólo en la página de inicio de tu sitio web."
475
 
476
- #: inc/php/settings.php:146
477
  msgid "Home Description"
478
  msgstr "Descripción del sitio"
479
 
480
- #: inc/php/settings.php:148 inc/php/settings.php:172
481
  msgid ""
482
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 "
483
  "chars for the home description."
@@ -485,21 +472,21 @@ msgstr ""
485
  "Ingresa una breve descripción de tu sitio web (Entre 150 y 250 caracteres). La mayoría de los motores de "
486
  "búsqueda usa un máximo de 160 caracteres para esta descripción."
487
 
488
- #: inc/php/settings.php:152
489
  msgid "Home Keyword(s)"
490
  msgstr "Palabra(s) clave de la página de inicio"
491
 
492
- #: inc/php/settings.php:154
493
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
494
  msgstr ""
495
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página estática de inicio "
496
  "de tu sitio web."
497
 
498
- #: inc/php/settings.php:165
499
  msgid "Meta Tags for Default Home Page and Blog Page only"
500
  msgstr "Meta etiquetas sólo para la página de inicio y la del blog"
501
 
502
- #: inc/php/settings.php:167
503
  msgid ""
504
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page "
505
  "and Blog Page of your website."
@@ -507,25 +494,25 @@ msgstr ""
507
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
508
  "en la página de inicio y en la del blog de tu sitio web."
509
 
510
- #: inc/php/settings.php:170
511
  msgid "Blog Description"
512
  msgstr "Descripción del blog"
513
 
514
- #: inc/php/settings.php:176
515
  msgid "Blog Keyword(s)"
516
  msgstr "Palabra(s) clave del blog"
517
 
518
- #: inc/php/settings.php:178
519
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
520
  msgstr ""
521
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio "
522
  "web."
523
 
524
- #: inc/php/settings.php:189
525
  msgid "Meta Tags for all website (Global)"
526
  msgstr "Meta etiquetas para todo el sitio web (Globales)"
527
 
528
- #: inc/php/settings.php:191
529
  msgid ""
530
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
531
  "website."
@@ -533,31 +520,31 @@ msgstr ""
533
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Autor, Derechos Reservados y "
534
  "Palabras Clave en cualquier parte de tu sitio web."
535
 
536
- #: inc/php/settings.php:199
537
  msgid "Designer"
538
  msgstr "Diseñador"
539
 
540
- #: inc/php/settings.php:204
541
  msgid "Contact"
542
  msgstr "Contacto"
543
 
544
- #: inc/php/settings.php:208
545
  msgid "Copyright"
546
  msgstr "Derechos reservados"
547
 
548
- #: inc/php/settings.php:212
549
  msgid "Keyword(s)"
550
  msgstr "Palabra(s) clave"
551
 
552
- #: inc/php/settings.php:214
553
  msgid "Enter a comma-delimited list of global keywords for your website."
554
  msgstr "Ingresa un listado, separado por comas, de las palabras clave globales para tu sitio web."
555
 
556
- #: inc/php/settings.php:225
557
  msgid "WooCommerce & Google Shopping"
558
  msgstr "WooCommerce y Google Shopping"
559
 
560
- #: inc/php/settings.php:227
561
  msgid ""
562
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
563
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars "
@@ -567,7 +554,7 @@ msgstr ""
567
  "páginas de producto de tu sitio web. Aquí esta el código para una blusa de mujer que cuesta 16 dólares con "
568
  "80 centavos norteamericanos."
569
 
570
- #: inc/php/settings.php:237
571
  msgid ""
572
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
573
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
@@ -575,6 +562,35 @@ msgstr ""
575
  "Puedes revisar los datos generados para las páginas de tu sitio web <a href=\"https://search.google.com/"
576
  "structured-data/testing-tool\" target=\"_blank\">aquí</a>."
577
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
578
  #. Plugin Name of the plugin/theme
579
  msgid "All Meta Tags"
580
  msgstr "Todas las meta etiquetas"
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-08-10 15:59+0300\n"
7
+ "PO-Revision-Date: 2017-08-10 15:59+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
55
  msgid "Version"
56
  msgstr ""
57
 
58
+ #: inc/php/page.php:48 inc/php/page.php:68
59
  msgid "Usage"
60
  msgstr "Uso"
61
 
63
  msgid "F.A.Q."
64
  msgstr ""
65
 
66
+ #: inc/php/page.php:50 inc/php/page.php:201 inc/php/settings.php:210 inc/php/sidebar.php:27
 
 
 
 
67
  msgid "Support"
68
  msgstr "Soporte"
69
 
70
+ #: inc/php/page.php:51 inc/php/page.php:221 inc/php/settings.php:162
71
+ msgid "Author"
72
+ msgstr "Autor"
73
+
74
  #: inc/php/page.php:52
75
  msgid "Store"
76
  msgstr ""
77
 
78
+ #: inc/php/page.php:70
79
  msgid "To add the meta tags to your website, simply follow these steps:"
80
  msgstr ""
81
 
82
+ #: inc/php/page.php:72
83
  msgid "Go to the \"Settings\" tab."
84
  msgstr ""
85
 
86
+ #: inc/php/page.php:73
87
  msgid "Fill in the required fields."
88
  msgstr ""
89
 
90
+ #: inc/php/page.php:74
91
  msgid "Select the desired settings."
92
  msgstr ""
93
 
94
+ #: inc/php/page.php:75
95
  msgid "Click the \"Save changes\" button."
96
  msgstr ""
97
 
98
+ #: inc/php/page.php:76
99
  msgid "Enjoy the improved SEO of your website."
100
  msgstr ""
101
 
102
+ #: inc/php/page.php:76
103
  msgid "It's that simple!"
104
  msgstr ""
105
 
106
+ #: inc/php/page.php:78
107
  msgid "Note!"
108
  msgstr ""
109
 
110
+ #: inc/php/page.php:78
111
  msgid "If you want more options then tell me and I will be happy to add it."
112
  msgstr ""
113
 
114
+ #: inc/php/page.php:87
115
  msgid "Frequently Asked Questions"
116
  msgstr ""
117
 
118
+ #: inc/php/page.php:91
119
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
120
  msgstr ""
121
 
122
+ #: inc/php/page.php:113
123
  msgid "Will this plugin work on my WordPress.COM website?"
124
  msgstr ""
125
 
126
+ #: inc/php/page.php:114
127
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:116
131
  msgid "Can I use this plugin on my language?"
132
  msgstr ""
133
 
134
+ #: inc/php/page.php:117
135
  msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
136
  msgstr ""
137
 
138
+ #: inc/php/page.php:119
139
  #, php-format
140
  msgid ""
141
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is "
143
  "file to me at the %s and I will include this translation within the next plugin update."
144
  msgstr ""
145
 
146
+ #: inc/php/page.php:124
147
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
148
  msgstr ""
149
 
150
+ #: inc/php/page.php:125
151
  msgid ""
152
  "Many of plugin users would be delighted if you share your translation with the community. Thanks for your "
153
  "contribution!"
154
  msgstr ""
155
 
156
+ #: inc/php/page.php:127
157
  msgid "How does it work?"
158
  msgstr ""
159
 
160
+ #: inc/php/page.php:128
161
  msgid ""
162
  "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save "
163
  "changes\" button. Enjoy the improved SEO of your website. It's that simple!"
164
  msgstr ""
165
 
166
+ #: inc/php/page.php:130
167
  msgid "How much of description I can enter in the text field?"
168
  msgstr ""
169
 
170
+ #: inc/php/page.php:131
171
  msgid ""
172
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
173
  "description."
174
  msgstr ""
175
 
176
+ #: inc/php/page.php:133
177
  msgid "How much of keywords I can enter in the text field?"
178
  msgstr ""
179
 
180
+ #: inc/php/page.php:134
181
  msgid "I don't limit the number of characters."
182
  msgstr ""
183
 
184
+ #: inc/php/page.php:136
185
  msgid "I can't get verify my website. What am I doing wrong?"
186
  msgstr ""
187
 
188
+ #: inc/php/page.php:137
189
  msgid ""
190
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is "
191
  "confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the "
193
  "paste that into the relevant field and you will see “Success” message appear within a few seconds."
194
  msgstr ""
195
 
196
+ #: inc/php/page.php:139
197
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
198
  msgstr ""
199
 
200
+ #: inc/php/page.php:140
201
  msgid ""
202
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
203
  "plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
204
  msgstr ""
205
 
206
+ #: inc/php/page.php:148
207
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
208
  msgstr ""
209
 
210
+ #: inc/php/page.php:150
211
  msgid "Does this plugin requires any modification of the theme?"
212
  msgstr ""
213
 
214
+ #: inc/php/page.php:151
215
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
216
  msgstr ""
217
 
218
+ #: inc/php/page.php:153
219
  msgid "Does this require any knowledge of HTML or CSS?"
220
  msgstr ""
221
 
222
+ #: inc/php/page.php:154
223
  msgid ""
224
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
225
  "settings page."
226
  msgstr ""
227
 
228
+ #: inc/php/page.php:156
229
  msgid "It's not working. What could be wrong?"
230
  msgstr ""
231
 
232
+ #: inc/php/page.php:157
233
  msgid ""
234
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web "
235
  "browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to "
237
  "may solve the problem."
238
  msgstr ""
239
 
240
+ #: inc/php/page.php:158
241
  msgid ""
242
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's "
243
  "support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much "
244
  "information as possible, including a link to your website where the problem can be seen."
245
  msgstr ""
246
 
247
+ #: inc/php/page.php:160
248
  msgid ""
249
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
250
  msgstr ""
251
 
252
+ #: inc/php/page.php:161
253
  msgid ""
254
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. "
255
  "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or "
257
  "to the website, this too can help."
258
  msgstr ""
259
 
260
+ #: inc/php/page.php:163
261
  msgid "Where to report bug if found?"
262
  msgstr ""
263
 
264
+ #: inc/php/page.php:165
265
  #, php-format
266
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
267
  msgstr ""
268
 
269
+ #: inc/php/page.php:171
270
  msgid "Where to share any ideas or suggestions to make the plugin better?"
271
  msgstr ""
272
 
273
+ #: inc/php/page.php:173
274
  #, php-format
275
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
276
  msgstr ""
277
 
278
+ #: inc/php/page.php:178
279
  msgid "I love this plugin! Can I help somehow?"
280
  msgstr ""
281
 
282
+ #: inc/php/page.php:180
283
  #, php-format
284
  msgid ""
285
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and "
286
  "thank you!"
287
  msgstr ""
288
 
289
+ #: inc/php/page.php:186
290
  msgid "My question wasn't answered here."
291
  msgstr ""
292
 
293
+ #: inc/php/page.php:188
294
  #, php-format
295
  msgid ""
296
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, "
297
  "and there is no a special support team, so I have no way to answer everyone."
298
  msgstr ""
299
 
300
+ #: inc/php/page.php:204
301
+ msgid "If you appreciate my work, you can buy me a coffee!"
302
+ msgstr ""
 
 
 
 
303
 
304
+ #: inc/php/page.php:205
305
  msgid ""
306
+ "I spend a lot of time and effort trying to make sure that the themes, plugins and another things I build are "
307
+ "useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent "
308
+ "developer, without a regular income, so every little contribution helps cover my costs and lets me spend "
309
+ "more time building things for people like you to enjoy."
310
  msgstr ""
 
 
 
311
 
312
+ #: inc/php/page.php:210 inc/php/settings.php:217 inc/php/sidebar.php:34
313
  msgid "Donate with PayPal"
314
  msgstr ""
315
 
316
+ #: inc/php/page.php:212
317
+ msgid "Thank you for your support!"
318
+ msgstr ""
 
 
 
 
 
 
 
 
319
 
320
+ #: inc/php/settings.php:24
321
  msgid "Web Master Tools"
322
  msgstr "Web Master Tools"
323
 
324
+ #: inc/php/settings.php:26
325
  msgid ""
326
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your "
327
  "blog or store before they provide their services to you. You can use the options below to verify your "
331
  "antes de que ellos te brinden su servicio. Puedes usar las opciones que aparecen a continuación para "
332
  "verificar tu dominio. Si tu dominio ya está verificado, puedes obviar esto."
333
 
334
+ #: inc/php/settings.php:31
335
  msgid ""
336
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
337
  "meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
339
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
340
  "br>Ejemplo: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
341
 
342
+ #: inc/php/settings.php:36
343
  msgid ""
344
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
345
  "meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
347
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
348
  "br>Ejemplo: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
349
 
350
+ #: inc/php/settings.php:41
351
  msgid ""
352
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
353
  "meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
355
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
356
  "br>Ejemplo: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
357
 
358
+ #: inc/php/settings.php:45 inc/php/settings.php:103 inc/php/settings.php:127 inc/php/settings.php:151
359
+ #: inc/php/settings.php:187
360
  msgid "Save changes"
361
  msgstr "Guardar los cambios"
362
 
363
+ #: inc/php/settings.php:51
364
  msgid "Domain Verification"
365
  msgstr "Verificación del domino"
366
 
367
+ #: inc/php/settings.php:53
368
  msgid ""
369
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes "
370
  "sure that you are the correct owner of your blog or store before they provide their services to you. You can "
376
  "opciones que aparecen a continuación para verificar tu dominio. Si tu dominio ya está verificado, puedes "
377
  "obviar esto."
378
 
379
+ #: inc/php/settings.php:58
380
  msgid ""
381
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
382
  "meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
384
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
385
  "br>Ejemplo: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
386
 
387
+ #: inc/php/settings.php:63
388
  msgid ""
389
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
390
  "+ArthurGareginyan/"
392
  "Ingresa la URL completa del perfil de Google+ del editor. <br>Ejemplo: https://plus.google.com/"
393
  "+ArthurGareginyan/"
394
 
395
+ #: inc/php/settings.php:68
396
  msgid ""
397
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
398
  "gareginyan"
400
  "Ingresa la URL completa del perfil de Facebook del editor. <br>Ejemplo: https://www.facebook.com/arthur."
401
  "gareginyan"
402
 
403
+ #: inc/php/settings.php:73
404
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
405
  msgstr "Ingresa el nombre de usuario de Twitter del editor. <br>Ejemplo: @AGareginyan"
406
 
407
+ #: inc/php/settings.php:78
408
  msgid ""
409
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
410
  "meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
412
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
413
  "br>Ejemplo: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
414
 
415
+ #: inc/php/settings.php:83
416
  msgid ""
417
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
418
  "meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
420
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
421
  "br>Ejemplo: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
422
 
423
+ #: inc/php/settings.php:88
424
  msgid ""
425
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
426
  "meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
428
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
429
  "br>Ejemplo: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
430
 
431
+ #: inc/php/settings.php:93
432
  msgid ""
433
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
434
  "meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
436
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
437
  "br>Ejemplo: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
438
 
439
+ #: inc/php/settings.php:96
440
  msgid "Custom Meta Tags"
441
  msgstr "Meta etiquetas personalizadas"
442
 
443
+ #: inc/php/settings.php:98
444
  msgid ""
445
  "If you can't find a field to enter your required meta tag then you can add it here. In this field you can "
446
  "add multiple meta tags."
448
  "Si no encuentras un campo para introducir la meta etiqueta que requieres, puedes añadirla aquí. En este "
449
  "campo puedes agregar varias meta etiquetas."
450
 
451
+ #: inc/php/settings.php:109
452
  msgid "Meta Tags for Static Home Page only"
453
  msgstr "Meta etiquetas sólo para la página de inicio estática"
454
 
455
+ #: inc/php/settings.php:111
456
  msgid ""
457
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of "
458
  "your website."
460
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
461
  "sólo en la página de inicio de tu sitio web."
462
 
463
+ #: inc/php/settings.php:114
464
  msgid "Home Description"
465
  msgstr "Descripción del sitio"
466
 
467
+ #: inc/php/settings.php:116 inc/php/settings.php:140
468
  msgid ""
469
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 "
470
  "chars for the home description."
472
  "Ingresa una breve descripción de tu sitio web (Entre 150 y 250 caracteres). La mayoría de los motores de "
473
  "búsqueda usa un máximo de 160 caracteres para esta descripción."
474
 
475
+ #: inc/php/settings.php:120
476
  msgid "Home Keyword(s)"
477
  msgstr "Palabra(s) clave de la página de inicio"
478
 
479
+ #: inc/php/settings.php:122
480
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
481
  msgstr ""
482
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página estática de inicio "
483
  "de tu sitio web."
484
 
485
+ #: inc/php/settings.php:133
486
  msgid "Meta Tags for Default Home Page and Blog Page only"
487
  msgstr "Meta etiquetas sólo para la página de inicio y la del blog"
488
 
489
+ #: inc/php/settings.php:135
490
  msgid ""
491
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page "
492
  "and Blog Page of your website."
494
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
495
  "en la página de inicio y en la del blog de tu sitio web."
496
 
497
+ #: inc/php/settings.php:138
498
  msgid "Blog Description"
499
  msgstr "Descripción del blog"
500
 
501
+ #: inc/php/settings.php:144
502
  msgid "Blog Keyword(s)"
503
  msgstr "Palabra(s) clave del blog"
504
 
505
+ #: inc/php/settings.php:146
506
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
507
  msgstr ""
508
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio "
509
  "web."
510
 
511
+ #: inc/php/settings.php:157
512
  msgid "Meta Tags for all website (Global)"
513
  msgstr "Meta etiquetas para todo el sitio web (Globales)"
514
 
515
+ #: inc/php/settings.php:159
516
  msgid ""
517
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
518
  "website."
520
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Autor, Derechos Reservados y "
521
  "Palabras Clave en cualquier parte de tu sitio web."
522
 
523
+ #: inc/php/settings.php:167
524
  msgid "Designer"
525
  msgstr "Diseñador"
526
 
527
+ #: inc/php/settings.php:172
528
  msgid "Contact"
529
  msgstr "Contacto"
530
 
531
+ #: inc/php/settings.php:176
532
  msgid "Copyright"
533
  msgstr "Derechos reservados"
534
 
535
+ #: inc/php/settings.php:180
536
  msgid "Keyword(s)"
537
  msgstr "Palabra(s) clave"
538
 
539
+ #: inc/php/settings.php:182
540
  msgid "Enter a comma-delimited list of global keywords for your website."
541
  msgstr "Ingresa un listado, separado por comas, de las palabras clave globales para tu sitio web."
542
 
543
+ #: inc/php/settings.php:193
544
  msgid "WooCommerce & Google Shopping"
545
  msgstr "WooCommerce y Google Shopping"
546
 
547
+ #: inc/php/settings.php:195
548
  msgid ""
549
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
550
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars "
554
  "páginas de producto de tu sitio web. Aquí esta el código para una blusa de mujer que cuesta 16 dólares con "
555
  "80 centavos norteamericanos."
556
 
557
+ #: inc/php/settings.php:205
558
  msgid ""
559
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
560
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
562
  "Puedes revisar los datos generados para las páginas de tu sitio web <a href=\"https://search.google.com/"
563
  "structured-data/testing-tool\" target=\"_blank\">aquí</a>."
564
 
565
+ #: inc/php/settings.php:212 inc/php/sidebar.php:29
566
+ msgid ""
567
+ "I'm an independent developer, without a regular income, so every little contribution helps cover my costs "
568
+ "and lets me spend more time building things for people like you to enjoy."
569
+ msgstr ""
570
+ "Soy un desarrollador independiente, sin ingresos fijos, por lo que cualquier contribución, por pequeña que "
571
+ "sea, me ayuda a cubrir mis gastos y me permite dedicar más tiempo para construir cosas que pueda disfrutar "
572
+ "gente como tú."
573
+
574
+ #: inc/php/settings.php:219
575
+ msgid "Thanks for your support!"
576
+ msgstr "¡Gracias por su colaboración!"
577
+
578
+ #: inc/php/sidebar.php:20
579
+ msgid "About"
580
+ msgstr "Acerca de"
581
+
582
+ #: inc/php/sidebar.php:22
583
+ msgid "This plugin allows you to easily add Meta Tags to your website."
584
+ msgstr "Este plugin te permite añadir fácilmente Meta Etiquetas personalizadas a tu sitio web."
585
+
586
+ #: inc/php/sidebar.php:40
587
+ msgid "Help"
588
+ msgstr "Ayuda"
589
+
590
+ #: inc/php/sidebar.php:42
591
+ msgid "If you have a question, please read the information in the FAQ section."
592
+ msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
593
+
594
  #. Plugin Name of the plugin/theme
595
  msgid "All Meta Tags"
596
  msgstr "Todas las meta etiquetas"
languages/all-meta-tags-es_MX.mo CHANGED
Binary file
languages/all-meta-tags-es_MX.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-06-21 14:12+0300\n"
6
- "PO-Revision-Date: 2017-06-21 14:12+0300\n"
7
  "Last-Translator: Sergio <srg2010@yahoo.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_MX\n"
@@ -58,7 +58,7 @@ msgstr "por %s Arthur Gareginyan %s"
58
  msgid "Version"
59
  msgstr ""
60
 
61
- #: inc/php/page.php:48 inc/php/page.php:67
62
  msgid "Usage"
63
  msgstr "Uso"
64
 
@@ -66,86 +66,86 @@ msgstr "Uso"
66
  msgid "F.A.Q."
67
  msgstr ""
68
 
69
- #: inc/php/page.php:50 inc/php/page.php:200 inc/php/settings.php:194
70
- msgid "Author"
71
- msgstr "Autor"
72
-
73
- #: inc/php/page.php:51 inc/php/page.php:209 inc/php/settings.php:28
74
- #: inc/php/settings.php:242
75
  msgid "Support"
76
  msgstr "Soporte"
77
 
 
 
 
 
78
  #: inc/php/page.php:52
79
  msgid "Store"
80
  msgstr ""
81
 
82
- #: inc/php/page.php:69
83
  msgid "To add the meta tags to your website, simply follow these steps:"
84
  msgstr ""
85
 
86
- #: inc/php/page.php:71
87
  msgid "Go to the \"Settings\" tab."
88
  msgstr ""
89
 
90
- #: inc/php/page.php:72
91
  msgid "Fill in the required fields."
92
  msgstr ""
93
 
94
- #: inc/php/page.php:73
95
  msgid "Select the desired settings."
96
  msgstr ""
97
 
98
- #: inc/php/page.php:74
99
  msgid "Click the \"Save changes\" button."
100
  msgstr ""
101
 
102
- #: inc/php/page.php:75
103
  msgid "Enjoy the improved SEO of your website."
104
  msgstr ""
105
 
106
- #: inc/php/page.php:75
107
  msgid "It's that simple!"
108
  msgstr ""
109
 
110
- #: inc/php/page.php:77
111
  msgid "Note!"
112
  msgstr ""
113
 
114
- #: inc/php/page.php:77
115
  msgid "If you want more options then tell me and I will be happy to add it."
116
  msgstr ""
117
 
118
- #: inc/php/page.php:86
119
  msgid "Frequently Asked Questions"
120
  msgstr ""
121
 
122
- #: inc/php/page.php:90
123
  msgid ""
124
  "If you have a question, please read the Frequently Asked Questions below to "
125
  "see if the answer is here."
126
  msgstr ""
127
 
128
- #: inc/php/page.php:112
129
  msgid "Will this plugin work on my WordPress.COM website?"
130
  msgstr ""
131
 
132
- #: inc/php/page.php:113
133
  msgid ""
134
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
135
  "websites."
136
  msgstr ""
137
 
138
- #: inc/php/page.php:115
139
  msgid "Can I use this plugin on my language?"
140
  msgstr ""
141
 
142
- #: inc/php/page.php:116
143
  msgid ""
144
  "Yes. This plugin is ready for translation and has already been translated "
145
  "into several languages."
146
  msgstr ""
147
 
148
- #: inc/php/page.php:118
149
  #, php-format
150
  msgid ""
151
  "If you want to help translate this plugin then please visit the %s. You can "
@@ -155,52 +155,52 @@ msgid ""
155
  "update."
156
  msgstr ""
157
 
158
- #: inc/php/page.php:123
159
  msgid ""
160
  "Maybe not all existed translations are up to date. You are welcome to "
161
  "contribute corrections!"
162
  msgstr ""
163
 
164
- #: inc/php/page.php:124
165
  msgid ""
166
  "Many of plugin users would be delighted if you share your translation with "
167
  "the community. Thanks for your contribution!"
168
  msgstr ""
169
 
170
- #: inc/php/page.php:126
171
  msgid "How does it work?"
172
  msgstr ""
173
 
174
- #: inc/php/page.php:127
175
  msgid ""
176
  "On the \"Settings\" tab, fill in the required fields, select the desired "
177
  "settings and click the \"Save changes\" button. Enjoy the improved SEO of "
178
  "your website. It's that simple!"
179
  msgstr ""
180
 
181
- #: inc/php/page.php:129
182
  msgid "How much of description I can enter in the text field?"
183
  msgstr ""
184
 
185
- #: inc/php/page.php:130
186
  msgid ""
187
  "I don't limit the number of characters, but most search engines use a "
188
  "maximum of 160 chars for the home description."
189
  msgstr ""
190
 
191
- #: inc/php/page.php:132
192
  msgid "How much of keywords I can enter in the text field?"
193
  msgstr ""
194
 
195
- #: inc/php/page.php:133
196
  msgid "I don't limit the number of characters."
197
  msgstr ""
198
 
199
- #: inc/php/page.php:135
200
  msgid "I can't get verify my website. What am I doing wrong?"
201
  msgstr ""
202
 
203
- #: inc/php/page.php:136
204
  msgid ""
205
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
206
  "SpecificFeeds) gives you is confusing as you only have to paste in the "
@@ -210,47 +210,47 @@ msgid ""
210
  "“Success” message appear within a few seconds."
211
  msgstr ""
212
 
213
- #: inc/php/page.php:138
214
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
215
  msgstr ""
216
 
217
- #: inc/php/page.php:139
218
  msgid ""
219
  "To make these plugins compatible you need to stick to one simple rule: do "
220
  "not fill the same field in both plugins at once. Otherwise both plugins "
221
  "fulfill their work and you will get a duplicate actions, for example:"
222
  msgstr ""
223
 
224
- #: inc/php/page.php:147
225
  msgid ""
226
  "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
227
  msgstr ""
228
 
229
- #: inc/php/page.php:149
230
  msgid "Does this plugin requires any modification of the theme?"
231
  msgstr ""
232
 
233
- #: inc/php/page.php:150
234
  msgid ""
235
  "Absolutely not. This plugin is configurable entirely from the plugin "
236
  "settings page."
237
  msgstr ""
238
 
239
- #: inc/php/page.php:152
240
  msgid "Does this require any knowledge of HTML or CSS?"
241
  msgstr ""
242
 
243
- #: inc/php/page.php:153
244
  msgid ""
245
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
246
  "CSS, using an easy-to-use plugin settings page."
247
  msgstr ""
248
 
249
- #: inc/php/page.php:155
250
  msgid "It's not working. What could be wrong?"
251
  msgstr ""
252
 
253
- #: inc/php/page.php:156
254
  msgid ""
255
  "As with every plugin, it's possible that things don't work. The most common "
256
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -259,7 +259,7 @@ msgid ""
259
  "browser's cache may solve the problem."
260
  msgstr ""
261
 
262
- #: inc/php/page.php:157
263
  msgid ""
264
  "It's impossible to tell what could be wrong exactly, but if you post a "
265
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -267,13 +267,13 @@ msgid ""
267
  "possible, including a link to your website where the problem can be seen."
268
  msgstr ""
269
 
270
- #: inc/php/page.php:159
271
  msgid ""
272
  "The last WordPress update is preventing me from editing my website that is "
273
  "using this plugin. Why is this?"
274
  msgstr ""
275
 
276
- #: inc/php/page.php:160
277
  msgid ""
278
  "This plugin can not cause such problem. More likely, the problem are related "
279
  "to the settings of the website. It could just be a cache, so please try to "
@@ -282,41 +282,41 @@ msgid ""
282
  "please try to re-login to the website, this too can help."
283
  msgstr ""
284
 
285
- #: inc/php/page.php:162
286
  msgid "Where to report bug if found?"
287
  msgstr ""
288
 
289
- #: inc/php/page.php:164
290
  #, php-format
291
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
292
  msgstr ""
293
 
294
- #: inc/php/page.php:170
295
  msgid "Where to share any ideas or suggestions to make the plugin better?"
296
  msgstr ""
297
 
298
- #: inc/php/page.php:172
299
  #, php-format
300
  msgid ""
301
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
302
  msgstr ""
303
 
304
- #: inc/php/page.php:177
305
  msgid "I love this plugin! Can I help somehow?"
306
  msgstr ""
307
 
308
- #: inc/php/page.php:179
309
  #, php-format
310
  msgid ""
311
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
312
  "click on the donate button, and thank you!"
313
  msgstr ""
314
 
315
- #: inc/php/page.php:185
316
  msgid "My question wasn't answered here."
317
  msgstr ""
318
 
319
- #: inc/php/page.php:187
320
  #, php-format
321
  msgid ""
322
  "You can ask your question on the plugin support page %s. But please keep in "
@@ -324,44 +324,33 @@ msgid ""
324
  "have no way to answer everyone."
325
  msgstr ""
326
 
327
- #: inc/php/settings.php:21
328
- msgid "About"
329
- msgstr "Acerca"
330
-
331
- #: inc/php/settings.php:23
332
- msgid "This plugin allows you to easily add Meta Tags to your website."
333
- msgstr "Este plugin te permite agregar fácilmente Meta Tags a tu sitio web."
334
 
335
- #: inc/php/settings.php:30 inc/php/settings.php:244
336
  msgid ""
337
- "I'm an independent developer, without a regular income, so every little "
338
- "contribution helps cover my costs and lets me spend more time building "
339
- "things for people like you to enjoy."
 
 
 
340
  msgstr ""
341
- "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este "
342
- "plugin aún mejor y tenerlo actualizado."
343
 
344
- #: inc/php/settings.php:31 inc/php/settings.php:245
345
  msgid "Donate with PayPal"
346
  msgstr ""
347
 
348
- #: inc/php/settings.php:32 inc/php/settings.php:246
349
- msgid "Thanks for your support!"
350
- msgstr "Gracias por su apoyo!"
351
-
352
- #: inc/php/settings.php:37
353
- msgid "Help"
354
- msgstr "Ayuda"
355
-
356
- #: inc/php/settings.php:39
357
- msgid "If you have a question, please read the information in the FAQ section."
358
- msgstr "Tiene algo que decir? Necesitas ayuda?"
359
 
360
- #: inc/php/settings.php:56
361
  msgid "Web Master Tools"
362
  msgstr "Herramientas para Web Master"
363
 
364
- #: inc/php/settings.php:58
365
  msgid ""
366
  "Webmaster Tools require you to verify your domain. This makes sure that you "
367
  "are the correct owner of your blog or store before they provide their "
@@ -374,37 +363,37 @@ msgstr ""
374
  "comprobar su dominio. Si su dominio ya está verificado, puede olvidarse de "
375
  "ellas."
376
 
377
- #: inc/php/settings.php:63
378
  msgid ""
379
  "Enter your meta key “content” value from your verification code to verify "
380
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
381
  "content=“<b>1234567890</b>” /&gt;"
382
  msgstr ""
383
 
384
- #: inc/php/settings.php:68
385
  msgid ""
386
  "Enter your meta key “content” value from your verification code to verify "
387
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
388
  "content=“<b>1234567890</b>” /&gt;"
389
  msgstr ""
390
 
391
- #: inc/php/settings.php:73
392
  msgid ""
393
  "Enter your meta key “content” value from your verification code to verify "
394
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
395
  "content=“<b>1234567890</b>” /&gt;"
396
  msgstr ""
397
 
398
- #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159
399
- #: inc/php/settings.php:183 inc/php/settings.php:219
400
  msgid "Save changes"
401
  msgstr "Guardar Cambios"
402
 
403
- #: inc/php/settings.php:83
404
  msgid "Domain Verification"
405
  msgstr "Verificar Dominio"
406
 
407
- #: inc/php/settings.php:85
408
  msgid ""
409
  "Third-party services like Alexa, Pinterest and Google-Plus require you to "
410
  "verify your domain. This makes sure that you are the correct owner of your "
@@ -418,72 +407,72 @@ msgstr ""
418
  "Puede utilizar las opciones de abajo para comprobar su dominio. Si su "
419
  "dominio ya está verificado, puede olvidarse de ellas."
420
 
421
- #: inc/php/settings.php:90
422
  msgid ""
423
  "Enter your meta key “content” value from your verification code to verify "
424
  "your website. <br>Example: &lt;meta name=\"p:domain_verify\" "
425
  "content=“<b>1234567890</b>” /&gt;"
426
  msgstr ""
427
 
428
- #: inc/php/settings.php:95
429
  msgid ""
430
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
431
  "https://plus.google.com/+ArthurGareginyan/"
432
  msgstr ""
433
 
434
- #: inc/php/settings.php:100
435
  msgid ""
436
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
437
  "https://www.facebook.com/arthur.gareginyan"
438
  msgstr ""
439
 
440
- #: inc/php/settings.php:105
441
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
442
  msgstr ""
443
 
444
- #: inc/php/settings.php:110
445
  msgid ""
446
  "Enter your meta key “content” value from your verification code to verify "
447
  "your website. <br>Example: &lt;meta name=\"alexaVerifyID\" "
448
  "content=“<b>1234567890</b>” /&gt;"
449
  msgstr ""
450
 
451
- #: inc/php/settings.php:115
452
  msgid ""
453
  "Enter your meta key “content” value from your verification code to verify "
454
  "your website. <br>Example: &lt;meta name=\"norton-safeweb-site-verification"
455
  "\" content=“<b>1234567890</b>” /&gt;"
456
  msgstr ""
457
 
458
- #: inc/php/settings.php:120
459
  msgid ""
460
  "Enter your meta key “content” value from your verification code to verify "
461
  "your website. <br>Example: &lt;meta name=\"wot-verification\" "
462
  "content=“<b>1234567890</b>” /&gt;"
463
  msgstr ""
464
 
465
- #: inc/php/settings.php:125
466
  msgid ""
467
  "Enter your meta key “content” value from your verification code to verify "
468
  "your website. <br>Example: &lt;meta name=\"specificfeeds-verification-code\" "
469
  "content=“<b>1234567890</b>” /&gt;"
470
  msgstr ""
471
 
472
- #: inc/php/settings.php:128
473
  msgid "Custom Meta Tags"
474
  msgstr ""
475
 
476
- #: inc/php/settings.php:130
477
  msgid ""
478
  "If you can't find a field to enter your required meta tag then you can add "
479
  "it here. In this field you can add multiple meta tags."
480
  msgstr ""
481
 
482
- #: inc/php/settings.php:141
483
  msgid "Meta Tags for Static Home Page only"
484
  msgstr "Meta Tags solo para Paginas de Inicio estática"
485
 
486
- #: inc/php/settings.php:143
487
  msgid ""
488
  "You can use the options below to add meta tags such as Description and "
489
  "Keywords only in Static Home Page of your website."
@@ -491,31 +480,31 @@ msgstr ""
491
  "Puede usar las opciones abajo para agregar meta tags, como Descripción y "
492
  "palabras claves solo en Paginas de Inicio estática en su sitio web."
493
 
494
- #: inc/php/settings.php:146
495
  msgid "Home Description"
496
  msgstr ""
497
 
498
- #: inc/php/settings.php:148 inc/php/settings.php:172
499
  msgid ""
500
  "Enter a short description of your website (150-250 characters). Most search "
501
  "engines use a maximum of 160 chars for the home description."
502
  msgstr ""
503
 
504
- #: inc/php/settings.php:152
505
  msgid "Home Keyword(s)"
506
  msgstr ""
507
 
508
- #: inc/php/settings.php:154
509
  msgid ""
510
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
511
  "website."
512
  msgstr ""
513
 
514
- #: inc/php/settings.php:165
515
  msgid "Meta Tags for Default Home Page and Blog Page only"
516
  msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
517
 
518
- #: inc/php/settings.php:167
519
  msgid ""
520
  "You can use the options below to add meta tags such as Description and "
521
  "Keywords only in Default Home Page and Blog Page of your website."
@@ -524,24 +513,24 @@ msgstr ""
524
  "descripción y palabras claves sólo en página principal predeterminada y Blog "
525
  "página de su sitio web."
526
 
527
- #: inc/php/settings.php:170
528
  msgid "Blog Description"
529
  msgstr ""
530
 
531
- #: inc/php/settings.php:176
532
  msgid "Blog Keyword(s)"
533
  msgstr ""
534
 
535
- #: inc/php/settings.php:178
536
  msgid ""
537
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
538
  msgstr ""
539
 
540
- #: inc/php/settings.php:189
541
  msgid "Meta Tags for all website (Global)"
542
  msgstr "Meta Tags para todo el sitio web (Global)"
543
 
544
- #: inc/php/settings.php:191
545
  msgid ""
546
  "You can use the options below to add meta tags such as Author, Copyright and "
547
  "Keywords in everywhere on your website."
@@ -549,31 +538,31 @@ msgstr ""
549
  "Puede usar las opciones abajo para agregar meta tags como Autor, Derecho "
550
  "autor, palabras clavs en cualquier sitio de su pagina web."
551
 
552
- #: inc/php/settings.php:199
553
  msgid "Designer"
554
  msgstr ""
555
 
556
- #: inc/php/settings.php:204
557
  msgid "Contact"
558
  msgstr ""
559
 
560
- #: inc/php/settings.php:208
561
  msgid "Copyright"
562
  msgstr ""
563
 
564
- #: inc/php/settings.php:212
565
  msgid "Keyword(s)"
566
  msgstr ""
567
 
568
- #: inc/php/settings.php:214
569
  msgid "Enter a comma-delimited list of global keywords for your website."
570
  msgstr ""
571
 
572
- #: inc/php/settings.php:225
573
  msgid "WooCommerce & Google Shopping"
574
  msgstr ""
575
 
576
- #: inc/php/settings.php:227
577
  msgid ""
578
  "This plugin automatically adds the necessary Google Shopping (Merchant "
579
  "Center) structured data on all WooCommerce product pages on your website. "
@@ -581,13 +570,42 @@ msgid ""
581
  "cents of US."
582
  msgstr ""
583
 
584
- #: inc/php/settings.php:237
585
  msgid ""
586
  "Check these data generated on the pages of your website you can <a href="
587
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
588
  "\">here</a>."
589
  msgstr ""
590
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
591
  #. Plugin Name of the plugin/theme
592
  msgid "All Meta Tags"
593
  msgstr "Todos los Meta Tags"
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-08-10 15:58+0300\n"
6
+ "PO-Revision-Date: 2017-08-10 15:58+0300\n"
7
  "Last-Translator: Sergio <srg2010@yahoo.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_MX\n"
58
  msgid "Version"
59
  msgstr ""
60
 
61
+ #: inc/php/page.php:48 inc/php/page.php:68
62
  msgid "Usage"
63
  msgstr "Uso"
64
 
66
  msgid "F.A.Q."
67
  msgstr ""
68
 
69
+ #: inc/php/page.php:50 inc/php/page.php:201 inc/php/settings.php:210
70
+ #: inc/php/sidebar.php:27
 
 
 
 
71
  msgid "Support"
72
  msgstr "Soporte"
73
 
74
+ #: inc/php/page.php:51 inc/php/page.php:221 inc/php/settings.php:162
75
+ msgid "Author"
76
+ msgstr "Autor"
77
+
78
  #: inc/php/page.php:52
79
  msgid "Store"
80
  msgstr ""
81
 
82
+ #: inc/php/page.php:70
83
  msgid "To add the meta tags to your website, simply follow these steps:"
84
  msgstr ""
85
 
86
+ #: inc/php/page.php:72
87
  msgid "Go to the \"Settings\" tab."
88
  msgstr ""
89
 
90
+ #: inc/php/page.php:73
91
  msgid "Fill in the required fields."
92
  msgstr ""
93
 
94
+ #: inc/php/page.php:74
95
  msgid "Select the desired settings."
96
  msgstr ""
97
 
98
+ #: inc/php/page.php:75
99
  msgid "Click the \"Save changes\" button."
100
  msgstr ""
101
 
102
+ #: inc/php/page.php:76
103
  msgid "Enjoy the improved SEO of your website."
104
  msgstr ""
105
 
106
+ #: inc/php/page.php:76
107
  msgid "It's that simple!"
108
  msgstr ""
109
 
110
+ #: inc/php/page.php:78
111
  msgid "Note!"
112
  msgstr ""
113
 
114
+ #: inc/php/page.php:78
115
  msgid "If you want more options then tell me and I will be happy to add it."
116
  msgstr ""
117
 
118
+ #: inc/php/page.php:87
119
  msgid "Frequently Asked Questions"
120
  msgstr ""
121
 
122
+ #: inc/php/page.php:91
123
  msgid ""
124
  "If you have a question, please read the Frequently Asked Questions below to "
125
  "see if the answer is here."
126
  msgstr ""
127
 
128
+ #: inc/php/page.php:113
129
  msgid "Will this plugin work on my WordPress.COM website?"
130
  msgstr ""
131
 
132
+ #: inc/php/page.php:114
133
  msgid ""
134
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
135
  "websites."
136
  msgstr ""
137
 
138
+ #: inc/php/page.php:116
139
  msgid "Can I use this plugin on my language?"
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:117
143
  msgid ""
144
  "Yes. This plugin is ready for translation and has already been translated "
145
  "into several languages."
146
  msgstr ""
147
 
148
+ #: inc/php/page.php:119
149
  #, php-format
150
  msgid ""
151
  "If you want to help translate this plugin then please visit the %s. You can "
155
  "update."
156
  msgstr ""
157
 
158
+ #: inc/php/page.php:124
159
  msgid ""
160
  "Maybe not all existed translations are up to date. You are welcome to "
161
  "contribute corrections!"
162
  msgstr ""
163
 
164
+ #: inc/php/page.php:125
165
  msgid ""
166
  "Many of plugin users would be delighted if you share your translation with "
167
  "the community. Thanks for your contribution!"
168
  msgstr ""
169
 
170
+ #: inc/php/page.php:127
171
  msgid "How does it work?"
172
  msgstr ""
173
 
174
+ #: inc/php/page.php:128
175
  msgid ""
176
  "On the \"Settings\" tab, fill in the required fields, select the desired "
177
  "settings and click the \"Save changes\" button. Enjoy the improved SEO of "
178
  "your website. It's that simple!"
179
  msgstr ""
180
 
181
+ #: inc/php/page.php:130
182
  msgid "How much of description I can enter in the text field?"
183
  msgstr ""
184
 
185
+ #: inc/php/page.php:131
186
  msgid ""
187
  "I don't limit the number of characters, but most search engines use a "
188
  "maximum of 160 chars for the home description."
189
  msgstr ""
190
 
191
+ #: inc/php/page.php:133
192
  msgid "How much of keywords I can enter in the text field?"
193
  msgstr ""
194
 
195
+ #: inc/php/page.php:134
196
  msgid "I don't limit the number of characters."
197
  msgstr ""
198
 
199
+ #: inc/php/page.php:136
200
  msgid "I can't get verify my website. What am I doing wrong?"
201
  msgstr ""
202
 
203
+ #: inc/php/page.php:137
204
  msgid ""
205
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
206
  "SpecificFeeds) gives you is confusing as you only have to paste in the "
210
  "“Success” message appear within a few seconds."
211
  msgstr ""
212
 
213
+ #: inc/php/page.php:139
214
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
215
  msgstr ""
216
 
217
+ #: inc/php/page.php:140
218
  msgid ""
219
  "To make these plugins compatible you need to stick to one simple rule: do "
220
  "not fill the same field in both plugins at once. Otherwise both plugins "
221
  "fulfill their work and you will get a duplicate actions, for example:"
222
  msgstr ""
223
 
224
+ #: inc/php/page.php:148
225
  msgid ""
226
  "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
227
  msgstr ""
228
 
229
+ #: inc/php/page.php:150
230
  msgid "Does this plugin requires any modification of the theme?"
231
  msgstr ""
232
 
233
+ #: inc/php/page.php:151
234
  msgid ""
235
  "Absolutely not. This plugin is configurable entirely from the plugin "
236
  "settings page."
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:153
240
  msgid "Does this require any knowledge of HTML or CSS?"
241
  msgstr ""
242
 
243
+ #: inc/php/page.php:154
244
  msgid ""
245
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
246
  "CSS, using an easy-to-use plugin settings page."
247
  msgstr ""
248
 
249
+ #: inc/php/page.php:156
250
  msgid "It's not working. What could be wrong?"
251
  msgstr ""
252
 
253
+ #: inc/php/page.php:157
254
  msgid ""
255
  "As with every plugin, it's possible that things don't work. The most common "
256
  "reason for this is a web browser's cache. Every web browser stores a cache "
259
  "browser's cache may solve the problem."
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:158
263
  msgid ""
264
  "It's impossible to tell what could be wrong exactly, but if you post a "
265
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
267
  "possible, including a link to your website where the problem can be seen."
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:160
271
  msgid ""
272
  "The last WordPress update is preventing me from editing my website that is "
273
  "using this plugin. Why is this?"
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:161
277
  msgid ""
278
  "This plugin can not cause such problem. More likely, the problem are related "
279
  "to the settings of the website. It could just be a cache, so please try to "
282
  "please try to re-login to the website, this too can help."
283
  msgstr ""
284
 
285
+ #: inc/php/page.php:163
286
  msgid "Where to report bug if found?"
287
  msgstr ""
288
 
289
+ #: inc/php/page.php:165
290
  #, php-format
291
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
292
  msgstr ""
293
 
294
+ #: inc/php/page.php:171
295
  msgid "Where to share any ideas or suggestions to make the plugin better?"
296
  msgstr ""
297
 
298
+ #: inc/php/page.php:173
299
  #, php-format
300
  msgid ""
301
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
302
  msgstr ""
303
 
304
+ #: inc/php/page.php:178
305
  msgid "I love this plugin! Can I help somehow?"
306
  msgstr ""
307
 
308
+ #: inc/php/page.php:180
309
  #, php-format
310
  msgid ""
311
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
312
  "click on the donate button, and thank you!"
313
  msgstr ""
314
 
315
+ #: inc/php/page.php:186
316
  msgid "My question wasn't answered here."
317
  msgstr ""
318
 
319
+ #: inc/php/page.php:188
320
  #, php-format
321
  msgid ""
322
  "You can ask your question on the plugin support page %s. But please keep in "
324
  "have no way to answer everyone."
325
  msgstr ""
326
 
327
+ #: inc/php/page.php:204
328
+ msgid "If you appreciate my work, you can buy me a coffee!"
329
+ msgstr ""
 
 
 
 
330
 
331
+ #: inc/php/page.php:205
332
  msgid ""
333
+ "I spend a lot of time and effort trying to make sure that the themes, "
334
+ "plugins and another things I build are useful, and the ultimate proof of "
335
+ "that for me is that you actually want to use them. But, I’m an independent "
336
+ "developer, without a regular income, so every little contribution helps "
337
+ "cover my costs and lets me spend more time building things for people like "
338
+ "you to enjoy."
339
  msgstr ""
 
 
340
 
341
+ #: inc/php/page.php:210 inc/php/settings.php:217 inc/php/sidebar.php:34
342
  msgid "Donate with PayPal"
343
  msgstr ""
344
 
345
+ #: inc/php/page.php:212
346
+ msgid "Thank you for your support!"
347
+ msgstr ""
 
 
 
 
 
 
 
 
348
 
349
+ #: inc/php/settings.php:24
350
  msgid "Web Master Tools"
351
  msgstr "Herramientas para Web Master"
352
 
353
+ #: inc/php/settings.php:26
354
  msgid ""
355
  "Webmaster Tools require you to verify your domain. This makes sure that you "
356
  "are the correct owner of your blog or store before they provide their "
363
  "comprobar su dominio. Si su dominio ya está verificado, puede olvidarse de "
364
  "ellas."
365
 
366
+ #: inc/php/settings.php:31
367
  msgid ""
368
  "Enter your meta key “content” value from your verification code to verify "
369
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
370
  "content=“<b>1234567890</b>” /&gt;"
371
  msgstr ""
372
 
373
+ #: inc/php/settings.php:36
374
  msgid ""
375
  "Enter your meta key “content” value from your verification code to verify "
376
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
377
  "content=“<b>1234567890</b>” /&gt;"
378
  msgstr ""
379
 
380
+ #: inc/php/settings.php:41
381
  msgid ""
382
  "Enter your meta key “content” value from your verification code to verify "
383
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
384
  "content=“<b>1234567890</b>” /&gt;"
385
  msgstr ""
386
 
387
+ #: inc/php/settings.php:45 inc/php/settings.php:103 inc/php/settings.php:127
388
+ #: inc/php/settings.php:151 inc/php/settings.php:187
389
  msgid "Save changes"
390
  msgstr "Guardar Cambios"
391
 
392
+ #: inc/php/settings.php:51
393
  msgid "Domain Verification"
394
  msgstr "Verificar Dominio"
395
 
396
+ #: inc/php/settings.php:53
397
  msgid ""
398
  "Third-party services like Alexa, Pinterest and Google-Plus require you to "
399
  "verify your domain. This makes sure that you are the correct owner of your "
407
  "Puede utilizar las opciones de abajo para comprobar su dominio. Si su "
408
  "dominio ya está verificado, puede olvidarse de ellas."
409
 
410
+ #: inc/php/settings.php:58
411
  msgid ""
412
  "Enter your meta key “content” value from your verification code to verify "
413
  "your website. <br>Example: &lt;meta name=\"p:domain_verify\" "
414
  "content=“<b>1234567890</b>” /&gt;"
415
  msgstr ""
416
 
417
+ #: inc/php/settings.php:63
418
  msgid ""
419
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
420
  "https://plus.google.com/+ArthurGareginyan/"
421
  msgstr ""
422
 
423
+ #: inc/php/settings.php:68
424
  msgid ""
425
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
426
  "https://www.facebook.com/arthur.gareginyan"
427
  msgstr ""
428
 
429
+ #: inc/php/settings.php:73
430
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
431
  msgstr ""
432
 
433
+ #: inc/php/settings.php:78
434
  msgid ""
435
  "Enter your meta key “content” value from your verification code to verify "
436
  "your website. <br>Example: &lt;meta name=\"alexaVerifyID\" "
437
  "content=“<b>1234567890</b>” /&gt;"
438
  msgstr ""
439
 
440
+ #: inc/php/settings.php:83
441
  msgid ""
442
  "Enter your meta key “content” value from your verification code to verify "
443
  "your website. <br>Example: &lt;meta name=\"norton-safeweb-site-verification"
444
  "\" content=“<b>1234567890</b>” /&gt;"
445
  msgstr ""
446
 
447
+ #: inc/php/settings.php:88
448
  msgid ""
449
  "Enter your meta key “content” value from your verification code to verify "
450
  "your website. <br>Example: &lt;meta name=\"wot-verification\" "
451
  "content=“<b>1234567890</b>” /&gt;"
452
  msgstr ""
453
 
454
+ #: inc/php/settings.php:93
455
  msgid ""
456
  "Enter your meta key “content” value from your verification code to verify "
457
  "your website. <br>Example: &lt;meta name=\"specificfeeds-verification-code\" "
458
  "content=“<b>1234567890</b>” /&gt;"
459
  msgstr ""
460
 
461
+ #: inc/php/settings.php:96
462
  msgid "Custom Meta Tags"
463
  msgstr ""
464
 
465
+ #: inc/php/settings.php:98
466
  msgid ""
467
  "If you can't find a field to enter your required meta tag then you can add "
468
  "it here. In this field you can add multiple meta tags."
469
  msgstr ""
470
 
471
+ #: inc/php/settings.php:109
472
  msgid "Meta Tags for Static Home Page only"
473
  msgstr "Meta Tags solo para Paginas de Inicio estática"
474
 
475
+ #: inc/php/settings.php:111
476
  msgid ""
477
  "You can use the options below to add meta tags such as Description and "
478
  "Keywords only in Static Home Page of your website."
480
  "Puede usar las opciones abajo para agregar meta tags, como Descripción y "
481
  "palabras claves solo en Paginas de Inicio estática en su sitio web."
482
 
483
+ #: inc/php/settings.php:114
484
  msgid "Home Description"
485
  msgstr ""
486
 
487
+ #: inc/php/settings.php:116 inc/php/settings.php:140
488
  msgid ""
489
  "Enter a short description of your website (150-250 characters). Most search "
490
  "engines use a maximum of 160 chars for the home description."
491
  msgstr ""
492
 
493
+ #: inc/php/settings.php:120
494
  msgid "Home Keyword(s)"
495
  msgstr ""
496
 
497
+ #: inc/php/settings.php:122
498
  msgid ""
499
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
500
  "website."
501
  msgstr ""
502
 
503
+ #: inc/php/settings.php:133
504
  msgid "Meta Tags for Default Home Page and Blog Page only"
505
  msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
506
 
507
+ #: inc/php/settings.php:135
508
  msgid ""
509
  "You can use the options below to add meta tags such as Description and "
510
  "Keywords only in Default Home Page and Blog Page of your website."
513
  "descripción y palabras claves sólo en página principal predeterminada y Blog "
514
  "página de su sitio web."
515
 
516
+ #: inc/php/settings.php:138
517
  msgid "Blog Description"
518
  msgstr ""
519
 
520
+ #: inc/php/settings.php:144
521
  msgid "Blog Keyword(s)"
522
  msgstr ""
523
 
524
+ #: inc/php/settings.php:146
525
  msgid ""
526
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
527
  msgstr ""
528
 
529
+ #: inc/php/settings.php:157
530
  msgid "Meta Tags for all website (Global)"
531
  msgstr "Meta Tags para todo el sitio web (Global)"
532
 
533
+ #: inc/php/settings.php:159
534
  msgid ""
535
  "You can use the options below to add meta tags such as Author, Copyright and "
536
  "Keywords in everywhere on your website."
538
  "Puede usar las opciones abajo para agregar meta tags como Autor, Derecho "
539
  "autor, palabras clavs en cualquier sitio de su pagina web."
540
 
541
+ #: inc/php/settings.php:167
542
  msgid "Designer"
543
  msgstr ""
544
 
545
+ #: inc/php/settings.php:172
546
  msgid "Contact"
547
  msgstr ""
548
 
549
+ #: inc/php/settings.php:176
550
  msgid "Copyright"
551
  msgstr ""
552
 
553
+ #: inc/php/settings.php:180
554
  msgid "Keyword(s)"
555
  msgstr ""
556
 
557
+ #: inc/php/settings.php:182
558
  msgid "Enter a comma-delimited list of global keywords for your website."
559
  msgstr ""
560
 
561
+ #: inc/php/settings.php:193
562
  msgid "WooCommerce & Google Shopping"
563
  msgstr ""
564
 
565
+ #: inc/php/settings.php:195
566
  msgid ""
567
  "This plugin automatically adds the necessary Google Shopping (Merchant "
568
  "Center) structured data on all WooCommerce product pages on your website. "
570
  "cents of US."
571
  msgstr ""
572
 
573
+ #: inc/php/settings.php:205
574
  msgid ""
575
  "Check these data generated on the pages of your website you can <a href="
576
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
577
  "\">here</a>."
578
  msgstr ""
579
 
580
+ #: inc/php/settings.php:212 inc/php/sidebar.php:29
581
+ msgid ""
582
+ "I'm an independent developer, without a regular income, so every little "
583
+ "contribution helps cover my costs and lets me spend more time building "
584
+ "things for people like you to enjoy."
585
+ msgstr ""
586
+ "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este "
587
+ "plugin aún mejor y tenerlo actualizado."
588
+
589
+ #: inc/php/settings.php:219
590
+ msgid "Thanks for your support!"
591
+ msgstr "Gracias por su apoyo!"
592
+
593
+ #: inc/php/sidebar.php:20
594
+ msgid "About"
595
+ msgstr "Acerca"
596
+
597
+ #: inc/php/sidebar.php:22
598
+ msgid "This plugin allows you to easily add Meta Tags to your website."
599
+ msgstr "Este plugin te permite agregar fácilmente Meta Tags a tu sitio web."
600
+
601
+