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
+ #: inc/php/sidebar.php:40
602
+ msgid "Help"
603
+ msgstr "Ayuda"
604
+
605
+ #: inc/php/sidebar.php:42
606
+ msgid "If you have a question, please read the information in the FAQ section."
607
+ msgstr "Tiene algo que decir? Necesitas ayuda?"
608
+
609
  #. Plugin Name of the plugin/theme
610
  msgid "All Meta Tags"
611
  msgstr "Todos los Meta Tags"
languages/all-meta-tags-it_IT.mo CHANGED
Binary file
languages/all-meta-tags-it_IT.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Stable (latest release)\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: it\n"
@@ -55,7 +55,7 @@ msgstr "di %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 ""
61
 
@@ -63,79 +63,79 @@ msgstr ""
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 "Autore"
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 ""
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
  "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 changes\" "
163
  "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 confusing "
191
  "as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag "
@@ -193,61 +193,61 @@ msgid ""
193
  "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 browser's "
235
  "cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth "
236
  "usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
237
  msgstr ""
238
 
239
- #: inc/php/page.php:157
240
  msgid ""
241
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support "
242
  "forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information "
243
  "as possible, including a link to your website where the problem can be seen."
244
  msgstr ""
245
 
246
- #: inc/php/page.php:159
247
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
248
  msgstr ""
249
 
250
- #: inc/php/page.php:160
251
  msgid ""
252
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It "
253
  "could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some "
@@ -255,84 +255,71 @@ msgid ""
255
  "website, this too can help."
256
  msgstr ""
257
 
258
- #: inc/php/page.php:162
259
  msgid "Where to report bug if found?"
260
  msgstr ""
261
 
262
- #: inc/php/page.php:164
263
  #, php-format
264
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
265
  msgstr ""
266
 
267
- #: inc/php/page.php:170
268
  msgid "Where to share any ideas or suggestions to make the plugin better?"
269
  msgstr ""
270
 
271
- #: inc/php/page.php:172
272
  #, php-format
273
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
274
  msgstr ""
275
 
276
- #: inc/php/page.php:177
277
  msgid "I love this plugin! Can I help somehow?"
278
  msgstr ""
279
 
280
- #: inc/php/page.php:179
281
  #, php-format
282
  msgid ""
283
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank "
284
  "you!"
285
  msgstr ""
286
 
287
- #: inc/php/page.php:185
288
  msgid "My question wasn't answered here."
289
  msgstr ""
290
 
291
- #: inc/php/page.php:187
292
  #, php-format
293
  msgid ""
294
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and "
295
  "there is no a special support team, so I have no way to answer everyone."
296
  msgstr ""
297
 
298
- #: inc/php/settings.php:21
299
- msgid "About"
300
- msgstr "Informazioni"
301
-
302
- #: inc/php/settings.php:23
303
- msgid "This plugin allows you to easily add Meta Tags to your website."
304
- msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
305
 
306
- #: inc/php/settings.php:30 inc/php/settings.php:244
307
  msgid ""
308
- "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and "
309
- "lets me spend more time building things for people like you to enjoy."
 
 
310
  msgstr ""
311
- "Sono uno sviluppatore indipendente, senza un reddito stabile, quindi ogni piccolo contributo è utile a coprire i "
312
- "miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li "
313
- "apprezzano."
314
 
315
- #: inc/php/settings.php:31 inc/php/settings.php:245
316
  msgid "Donate with PayPal"
317
  msgstr ""
318
 
319
- #: inc/php/settings.php:32 inc/php/settings.php:246
320
- msgid "Thanks for your support!"
321
- msgstr "Grazie per il tuo supporto!"
322
-
323
- #: inc/php/settings.php:37
324
- msgid "Help"
325
- msgstr "Aiuto"
326
-
327
- #: inc/php/settings.php:39
328
- msgid "If you have a question, please read the information in the FAQ section."
329
- msgstr "Hai qualcosa da dirmi? Hai bisogno di aiuto?"
330
 
331
- #: inc/php/settings.php:56
332
  msgid "Web Master Tools"
333
  msgstr "Webmaster Tools"
334
 
335
- #: inc/php/settings.php:58
336
  msgid ""
337
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog "
338
  "or store before they provide their services to you. You can use the options below to verify your domain. If your "
@@ -342,7 +329,7 @@ msgstr ""
342
  "blog o negozio prima che ti forniscano i loro servizi. Puoi usare le opzioni qui sotto per verificare il tuo "
343
  "dominio. Se il tuo dominio è già verificato, puoi semplicemente ignorarle."
344
 
345
- #: inc/php/settings.php:63
346
  msgid ""
347
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
348
  "name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -350,7 +337,7 @@ msgstr ""
350
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
351
  "verifica.<br>Esempio: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
352
 
353
- #: inc/php/settings.php:68
354
  msgid ""
355
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
356
  "name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
@@ -358,7 +345,7 @@ msgstr ""
358
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
359
  "verifica.<br>Esempio: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
360
 
361
- #: inc/php/settings.php:73
362
  msgid ""
363
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
364
  "name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -366,16 +353,16 @@ msgstr ""
366
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
367
  "verifica.<br>Esempio: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
368
 
369
- #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159 inc/php/settings.php:183
370
- #: inc/php/settings.php:219
371
  msgid "Save changes"
372
  msgstr "Salva modifiche"
373
 
374
- #: inc/php/settings.php:83
375
  msgid "Domain Verification"
376
  msgstr "Verifica dominio"
377
 
378
- #: inc/php/settings.php:85
379
  msgid ""
380
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure "
381
  "that you are the correct owner of your blog or store before they provide their services to you. You can use the "
@@ -386,7 +373,7 @@ msgstr ""
386
  "opzioni qui sotto per verificare il tuo dominio. Se il tuo dominio è già verificato, puoi semplicemente "
387
  "ignorarle."
388
 
389
- #: inc/php/settings.php:90
390
  msgid ""
391
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
392
  "name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
@@ -394,23 +381,23 @@ msgstr ""
394
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
395
  "verifica.<br>Esempio: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
396
 
397
- #: inc/php/settings.php:95
398
  msgid ""
399
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
400
  "+ArthurGareginyan/"
401
  msgstr "Inserisci un URL assoluto al tuo profilo Google+. <br>Esempio: https://plus.google.com/+ArthurGareginyan/"
402
 
403
- #: inc/php/settings.php:100
404
  msgid ""
405
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
406
  "gareginyan"
407
  msgstr "Inserisci un URL assoluto al tuo profilo Facebook. <br>Esempio: https://www.facebook.com/arthur.gareginyan"
408
 
409
- #: inc/php/settings.php:105
410
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
411
  msgstr "Inserisci il tuo nome utente Twitter. <br>Esempio: @AGareginyan"
412
 
413
- #: inc/php/settings.php:110
414
  msgid ""
415
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
416
  "name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
@@ -418,7 +405,7 @@ msgstr ""
418
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
419
  "verifica.<br>Esempio: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
420
 
421
- #: inc/php/settings.php:115
422
  msgid ""
423
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
424
  "name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -426,7 +413,7 @@ msgstr ""
426
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
427
  "verifica.<br>Esempio: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
428
 
429
- #: inc/php/settings.php:120
430
  msgid ""
431
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
432
  "name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -434,7 +421,7 @@ msgstr ""
434
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
435
  "verifica.<br>Esempio: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
436
 
437
- #: inc/php/settings.php:125
438
  msgid ""
439
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
440
  "name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
@@ -442,11 +429,11 @@ msgstr ""
442
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
443
  "verifica.<br>Esempio: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
444
 
445
- #: inc/php/settings.php:128
446
  msgid "Custom Meta Tags"
447
  msgstr "Tag meta personalizzati"
448
 
449
- #: inc/php/settings.php:130
450
  msgid ""
451
  "If you can't find a field to enter your required meta tag then you can add it here. In this field you can add "
452
  "multiple meta tags."
@@ -454,11 +441,11 @@ msgstr ""
454
  "Se non riesci a trovare un campo per inserire il tuo meta tag richiesto allora puoi aggiungerlo qui. In questo "
455
  "campo puoi aggiungere tag meta multipli."
456
 
457
- #: inc/php/settings.php:141
458
  msgid "Meta Tags for Static Home Page only"
459
  msgstr "Tag meta solo per la pagina home statica"
460
 
461
- #: inc/php/settings.php:143
462
  msgid ""
463
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your "
464
  "website."
@@ -466,11 +453,11 @@ msgstr ""
466
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
467
  "statica del tuo sito web."
468
 
469
- #: inc/php/settings.php:146
470
  msgid "Home Description"
471
  msgstr "Descrizione home"
472
 
473
- #: inc/php/settings.php:148 inc/php/settings.php:172
474
  msgid ""
475
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars "
476
  "for the home description."
@@ -478,20 +465,20 @@ msgstr ""
478
  "Inserisci una breve descrizione del tuo sito web (150-250 caratteri). La maggior parte dei motori di ricerca usa "
479
  "un massimo di 160 caratteri per la descrizione della home."
480
 
481
- #: inc/php/settings.php:152
482
  msgid "Home Keyword(s)"
483
  msgstr "Parole chiave home"
484
 
485
- #: inc/php/settings.php:154
486
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
487
  msgstr ""
488
  "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina home statica del tuo sito web."
489
 
490
- #: inc/php/settings.php:165
491
  msgid "Meta Tags for Default Home Page and Blog Page only"
492
  msgstr "Tag meta solo per pagina home predefinita e pagina blog"
493
 
494
- #: inc/php/settings.php:167
495
  msgid ""
496
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and "
497
  "Blog Page of your website."
@@ -499,54 +486,54 @@ msgstr ""
499
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
500
  "predefinita e alla pagina blog del tuo sito web."
501
 
502
- #: inc/php/settings.php:170
503
  msgid "Blog Description"
504
  msgstr "Descrizione blog"
505
 
506
- #: inc/php/settings.php:176
507
  msgid "Blog Keyword(s)"
508
  msgstr "Parole chiave blog"
509
 
510
- #: inc/php/settings.php:178
511
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
512
  msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
513
 
514
- #: inc/php/settings.php:189
515
  msgid "Meta Tags for all website (Global)"
516
  msgstr "Tag meta per tutto il sito (globale)"
517
 
518
- #: inc/php/settings.php:191
519
  msgid ""
520
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
521
  "website."
522
  msgstr ""
523
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Author, Copyright e Keywords ovunque sul tuo sito."
524
 
525
- #: inc/php/settings.php:199
526
  msgid "Designer"
527
  msgstr "Designer"
528
 
529
- #: inc/php/settings.php:204
530
  msgid "Contact"
531
  msgstr "Contatti"
532
 
533
- #: inc/php/settings.php:208
534
  msgid "Copyright"
535
  msgstr "Copyright"
536
 
537
- #: inc/php/settings.php:212
538
  msgid "Keyword(s)"
539
  msgstr "Parole chiave"
540
 
541
- #: inc/php/settings.php:214
542
  msgid "Enter a comma-delimited list of global keywords for your website."
543
  msgstr "Inserisci una lista delimitata da virgole di parole chiave globali per il tuo sito web."
544
 
545
- #: inc/php/settings.php:225
546
  msgid "WooCommerce & Google Shopping"
547
  msgstr "WooCommerce & Google Shopping"
548
 
549
- #: inc/php/settings.php:227
550
  msgid ""
551
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
552
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars and "
@@ -556,7 +543,7 @@ msgstr ""
556
  "le pagine prodotto WooCommerce del tuo sito web. Ecco il codice per una maglietta da donna al prezzo di 16 "
557
  "dollari e 80 centesimi."
558
 
559
- #: inc/php/settings.php:237
560
  msgid ""
561
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/structured-"
562
  "data/testing-tool\" target=\"_blank\">here</a>."
@@ -564,6 +551,35 @@ msgstr ""
564
  "Puoi controllare <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">qui</a> "
565
  "tali dati generati sulle pagine del tuo sito web."
566
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
567
  #. Plugin Name of the plugin/theme
568
  msgid "All Meta Tags"
569
  msgstr "All Meta Tags"
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Stable (latest release)\n"
6
+ "POT-Creation-Date: 2017-08-10 15:58+0300\n"
7
+ "PO-Revision-Date: 2017-08-10 15:58+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: it\n"
55
  msgid "Version"
56
  msgstr ""
57
 
58
+ #: inc/php/page.php:48 inc/php/page.php:68
59
  msgid "Usage"
60
  msgstr ""
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 ""
69
 
70
+ #: inc/php/page.php:51 inc/php/page.php:221 inc/php/settings.php:162
71
+ msgid "Author"
72
+ msgstr "Autore"
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
  "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 changes\" "
163
  "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 confusing "
191
  "as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag "
193
  "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 browser's "
235
  "cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth "
236
  "usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:158
240
  msgid ""
241
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support "
242
  "forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information "
243
  "as possible, including a link to your website where the problem can be seen."
244
  msgstr ""
245
 
246
+ #: inc/php/page.php:160
247
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
248
  msgstr ""
249
 
250
+ #: inc/php/page.php:161
251
  msgid ""
252
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It "
253
  "could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some "
255
  "website, this too can help."
256
  msgstr ""
257
 
258
+ #: inc/php/page.php:163
259
  msgid "Where to report bug if found?"
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:165
263
  #, php-format
264
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
265
  msgstr ""
266
 
267
+ #: inc/php/page.php:171
268
  msgid "Where to share any ideas or suggestions to make the plugin better?"
269
  msgstr ""
270
 
271
+ #: inc/php/page.php:173
272
  #, php-format
273
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:178
277
  msgid "I love this plugin! Can I help somehow?"
278
  msgstr ""
279
 
280
+ #: inc/php/page.php:180
281
  #, php-format
282
  msgid ""
283
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank "
284
  "you!"
285
  msgstr ""
286
 
287
+ #: inc/php/page.php:186
288
  msgid "My question wasn't answered here."
289
  msgstr ""
290
 
291
+ #: inc/php/page.php:188
292
  #, php-format
293
  msgid ""
294
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and "
295
  "there is no a special support team, so I have no way to answer everyone."
296
  msgstr ""
297
 
298
+ #: inc/php/page.php:204
299
+ msgid "If you appreciate my work, you can buy me a coffee!"
300
+ msgstr ""
 
 
 
 
301
 
302
+ #: inc/php/page.php:205
303
  msgid ""
304
+ "I spend a lot of time and effort trying to make sure that the themes, plugins and another things I build are "
305
+ "useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent "
306
+ "developer, without a regular income, so every little contribution helps cover my costs and lets me spend more "
307
+ "time building things for people like you to enjoy."
308
  msgstr ""
 
 
 
309
 
310
+ #: inc/php/page.php:210 inc/php/settings.php:217 inc/php/sidebar.php:34
311
  msgid "Donate with PayPal"
312
  msgstr ""
313
 
314
+ #: inc/php/page.php:212
315
+ msgid "Thank you for your support!"
316
+ msgstr ""
 
 
 
 
 
 
 
 
317
 
318
+ #: inc/php/settings.php:24
319
  msgid "Web Master Tools"
320
  msgstr "Webmaster Tools"
321
 
322
+ #: inc/php/settings.php:26
323
  msgid ""
324
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog "
325
  "or store before they provide their services to you. You can use the options below to verify your domain. If your "
329
  "blog o negozio prima che ti forniscano i loro servizi. Puoi usare le opzioni qui sotto per verificare il tuo "
330
  "dominio. Se il tuo dominio è già verificato, puoi semplicemente ignorarle."
331
 
332
+ #: inc/php/settings.php:31
333
  msgid ""
334
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
335
  "name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
337
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
338
  "verifica.<br>Esempio: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
339
 
340
+ #: inc/php/settings.php:36
341
  msgid ""
342
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
343
  "name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
345
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
346
  "verifica.<br>Esempio: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
347
 
348
+ #: inc/php/settings.php:41
349
  msgid ""
350
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
351
  "name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
353
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
354
  "verifica.<br>Esempio: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
355
 
356
+ #: inc/php/settings.php:45 inc/php/settings.php:103 inc/php/settings.php:127 inc/php/settings.php:151
357
+ #: inc/php/settings.php:187
358
  msgid "Save changes"
359
  msgstr "Salva modifiche"
360
 
361
+ #: inc/php/settings.php:51
362
  msgid "Domain Verification"
363
  msgstr "Verifica dominio"
364
 
365
+ #: inc/php/settings.php:53
366
  msgid ""
367
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure "
368
  "that you are the correct owner of your blog or store before they provide their services to you. You can use the "
373
  "opzioni qui sotto per verificare il tuo dominio. Se il tuo dominio è già verificato, puoi semplicemente "
374
  "ignorarle."
375
 
376
+ #: inc/php/settings.php:58
377
  msgid ""
378
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
379
  "name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
381
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
382
  "verifica.<br>Esempio: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
383
 
384
+ #: inc/php/settings.php:63
385
  msgid ""
386
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
387
  "+ArthurGareginyan/"
388
  msgstr "Inserisci un URL assoluto al tuo profilo Google+. <br>Esempio: https://plus.google.com/+ArthurGareginyan/"
389
 
390
+ #: inc/php/settings.php:68
391
  msgid ""
392
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
393
  "gareginyan"
394
  msgstr "Inserisci un URL assoluto al tuo profilo Facebook. <br>Esempio: https://www.facebook.com/arthur.gareginyan"
395
 
396
+ #: inc/php/settings.php:73
397
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
398
  msgstr "Inserisci il tuo nome utente Twitter. <br>Esempio: @AGareginyan"
399
 
400
+ #: inc/php/settings.php:78
401
  msgid ""
402
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
403
  "name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
405
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
406
  "verifica.<br>Esempio: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
407
 
408
+ #: inc/php/settings.php:83
409
  msgid ""
410
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
411
  "name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
413
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
414
  "verifica.<br>Esempio: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
415
 
416
+ #: inc/php/settings.php:88
417
  msgid ""
418
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
419
  "name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
421
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
422
  "verifica.<br>Esempio: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
423
 
424
+ #: inc/php/settings.php:93
425
  msgid ""
426
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
427
  "name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
429
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
430
  "verifica.<br>Esempio: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
431
 
432
+ #: inc/php/settings.php:96
433
  msgid "Custom Meta Tags"
434
  msgstr "Tag meta personalizzati"
435
 
436
+ #: inc/php/settings.php:98
437
  msgid ""
438
  "If you can't find a field to enter your required meta tag then you can add it here. In this field you can add "
439
  "multiple meta tags."
441
  "Se non riesci a trovare un campo per inserire il tuo meta tag richiesto allora puoi aggiungerlo qui. In questo "
442
  "campo puoi aggiungere tag meta multipli."
443
 
444
+ #: inc/php/settings.php:109
445
  msgid "Meta Tags for Static Home Page only"
446
  msgstr "Tag meta solo per la pagina home statica"
447
 
448
+ #: inc/php/settings.php:111
449
  msgid ""
450
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your "
451
  "website."
453
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
454
  "statica del tuo sito web."
455
 
456
+ #: inc/php/settings.php:114
457
  msgid "Home Description"
458
  msgstr "Descrizione home"
459
 
460
+ #: inc/php/settings.php:116 inc/php/settings.php:140
461
  msgid ""
462
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars "
463
  "for the home description."
465
  "Inserisci una breve descrizione del tuo sito web (150-250 caratteri). La maggior parte dei motori di ricerca usa "
466
  "un massimo di 160 caratteri per la descrizione della home."
467
 
468
+ #: inc/php/settings.php:120
469
  msgid "Home Keyword(s)"
470
  msgstr "Parole chiave home"
471
 
472
+ #: inc/php/settings.php:122
473
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
474
  msgstr ""
475
  "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina home statica del tuo sito web."
476
 
477
+ #: inc/php/settings.php:133
478
  msgid "Meta Tags for Default Home Page and Blog Page only"
479
  msgstr "Tag meta solo per pagina home predefinita e pagina blog"
480
 
481
+ #: inc/php/settings.php:135
482
  msgid ""
483
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and "
484
  "Blog Page of your website."
486
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
487
  "predefinita e alla pagina blog del tuo sito web."
488
 
489
+ #: inc/php/settings.php:138
490
  msgid "Blog Description"
491
  msgstr "Descrizione blog"
492
 
493
+ #: inc/php/settings.php:144
494
  msgid "Blog Keyword(s)"
495
  msgstr "Parole chiave blog"
496
 
497
+ #: inc/php/settings.php:146
498
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
499
  msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
500
 
501
+ #: inc/php/settings.php:157
502
  msgid "Meta Tags for all website (Global)"
503
  msgstr "Tag meta per tutto il sito (globale)"
504
 
505
+ #: inc/php/settings.php:159
506
  msgid ""
507
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
508
  "website."
509
  msgstr ""
510
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Author, Copyright e Keywords ovunque sul tuo sito."
511
 
512
+ #: inc/php/settings.php:167
513
  msgid "Designer"
514
  msgstr "Designer"
515
 
516
+ #: inc/php/settings.php:172
517
  msgid "Contact"
518
  msgstr "Contatti"
519
 
520
+ #: inc/php/settings.php:176
521
  msgid "Copyright"
522
  msgstr "Copyright"
523
 
524
+ #: inc/php/settings.php:180
525
  msgid "Keyword(s)"
526
  msgstr "Parole chiave"
527
 
528
+ #: inc/php/settings.php:182
529
  msgid "Enter a comma-delimited list of global keywords for your website."
530
  msgstr "Inserisci una lista delimitata da virgole di parole chiave globali per il tuo sito web."
531
 
532
+ #: inc/php/settings.php:193
533
  msgid "WooCommerce & Google Shopping"
534
  msgstr "WooCommerce & Google Shopping"
535
 
536
+ #: inc/php/settings.php:195
537
  msgid ""
538
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
539
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars and "
543
  "le pagine prodotto WooCommerce del tuo sito web. Ecco il codice per una maglietta da donna al prezzo di 16 "
544
  "dollari e 80 centesimi."
545
 
546
+ #: inc/php/settings.php:205
547
  msgid ""
548
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/structured-"
549
  "data/testing-tool\" target=\"_blank\">here</a>."
551
  "Puoi controllare <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">qui</a> "
552
  "tali dati generati sulle pagine del tuo sito web."
553
 
554
+ #: inc/php/settings.php:212 inc/php/sidebar.php:29
555
+ msgid ""
556
+ "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and "
557
+ "lets me spend more time building things for people like you to enjoy."
558
+ msgstr ""
559
+ "Sono uno sviluppatore indipendente, senza un reddito stabile, quindi ogni piccolo contributo è utile a coprire i "
560
+ "miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li "
561
+ "apprezzano."
562
+
563
+ #: inc/php/settings.php:219
564
+ msgid "Thanks for your support!"
565
+ msgstr "Grazie per il tuo supporto!"
566
+
567
+ #: inc/php/sidebar.php:20
568
+ msgid "About"
569
+ msgstr "Informazioni"
570
+
571
+ #: inc/php/sidebar.php:22
572
+ msgid "This plugin allows you to easily add Meta Tags to your website."
573
+ msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
574
+
575
+ #: inc/php/sidebar.php:40
576
+ msgid "Help"
577
+ msgstr "Aiuto"
578
+
579
+ #: inc/php/sidebar.php:42
580
+ msgid "If you have a question, please read the information in the FAQ section."
581
+ msgstr "Hai qualcosa da dirmi? Hai bisogno di aiuto?"
582
+
583
  #. Plugin Name of the plugin/theme
584
  msgid "All Meta Tags"
585
  msgstr "All Meta Tags"
languages/all-meta-tags-ru_RU.mo CHANGED
Binary file
languages/all-meta-tags-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
- "POT-Creation-Date: 2017-06-21 14:12+0300\n"
5
- "PO-Revision-Date: 2017-06-21 14:12+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -27,7 +27,7 @@ msgstr "Настройки"
27
 
28
  #: inc/php/core.php:47
29
  msgid "Donate"
30
- msgstr "Поддержать разработку"
31
 
32
  #: inc/php/messages.php:30
33
  msgid "Hello. I'm Arthur, the author of this plugin."
@@ -55,7 +55,7 @@ msgstr "от %s Артура Гарегинян %s"
55
  msgid "Version"
56
  msgstr "Версия"
57
 
58
- #: inc/php/page.php:48 inc/php/page.php:67
59
  msgid "Usage"
60
  msgstr "Применение"
61
 
@@ -63,74 +63,74 @@ msgstr "Применение"
63
  msgid "F.A.Q."
64
  msgstr "F.A.Q."
65
 
66
- #: inc/php/page.php:50 inc/php/page.php:200 inc/php/settings.php:194
67
- msgid "Author"
68
- msgstr "Автор"
69
-
70
- #: inc/php/page.php:51 inc/php/page.php:209 inc/php/settings.php:28
71
- #: inc/php/settings.php:242
72
  msgid "Support"
73
  msgstr "Поддержка"
74
 
 
 
 
 
75
  #: inc/php/page.php:52
76
  msgid "Store"
77
- msgstr "Семья"
78
 
79
- #: inc/php/page.php:69
80
  msgid "To add the meta tags to your website, simply follow these steps:"
81
  msgstr ""
82
  "Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие "
83
  "действия:"
84
 
85
- #: inc/php/page.php:71
86
  msgid "Go to the \"Settings\" tab."
87
  msgstr "Перейдите на вкладку «Настройки»."
88
 
89
- #: inc/php/page.php:72
90
  msgid "Fill in the required fields."
91
  msgstr "Заполните необходимые поля."
92
 
93
- #: inc/php/page.php:73
94
  msgid "Select the desired settings."
95
  msgstr "Выберите нужные настройки."
96
 
97
- #: inc/php/page.php:74
98
  msgid "Click the \"Save changes\" button."
99
  msgstr "Нажмите кнопку «Сохранить изменения»."
100
 
101
- #: inc/php/page.php:75
102
  msgid "Enjoy the improved SEO of your website."
103
  msgstr "Наслаждайтесь улучшенным SEO вашего веб-сайта."
104
 
105
- #: inc/php/page.php:75
106
  msgid "It's that simple!"
107
  msgstr "Вот так просто!"
108
 
109
- #: inc/php/page.php:77
110
  msgid "Note!"
111
  msgstr "Примечание!"
112
 
113
- #: inc/php/page.php:77
114
  msgid "If you want more options then tell me and I will be happy to add it."
115
  msgstr ""
116
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
117
  "добавить их."
118
 
119
- #: inc/php/page.php:86
120
  msgid "Frequently Asked Questions"
121
- msgstr "Частые Вопросы"
122
 
123
- #: inc/php/page.php:90
124
  msgid ""
125
  "If you have a question, please read the Frequently Asked Questions below to "
126
  "see if the answer is here."
127
- msgstr ""
128
 
129
- #: inc/php/page.php:112
130
  msgid "Will this plugin work on my WordPress.COM website?"
131
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
132
 
133
- #: inc/php/page.php:113
134
  msgid ""
135
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
136
  "websites."
@@ -138,17 +138,17 @@ msgstr ""
138
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
139
  "размещённых веб-сайтах (WordPress.ORG)."
140
 
141
- #: inc/php/page.php:115
142
  msgid "Can I use this plugin on my language?"
143
  msgstr "Можно ли использовать этот плагин на моём языке?"
144
 
145
- #: inc/php/page.php:116
146
  msgid ""
147
  "Yes. This plugin is ready for translation and has already been translated "
148
  "into several languages."
149
- msgstr ""
150
 
151
- #: inc/php/page.php:118
152
  #, php-format
153
  msgid ""
154
  "If you want to help translate this plugin then please visit the %s. You can "
@@ -157,24 +157,30 @@ msgid ""
157
  "me at the %s and I will include this translation within the next plugin "
158
  "update."
159
  msgstr ""
 
 
 
 
160
 
161
- #: inc/php/page.php:123
162
  msgid ""
163
  "Maybe not all existed translations are up to date. You are welcome to "
164
  "contribute corrections!"
165
- msgstr ""
166
 
167
- #: inc/php/page.php:124
168
  msgid ""
169
  "Many of plugin users would be delighted if you share your translation with "
170
  "the community. Thanks for your contribution!"
171
  msgstr ""
 
 
172
 
173
- #: inc/php/page.php:126
174
  msgid "How does it work?"
175
- msgstr "Как оно работает?"
176
 
177
- #: inc/php/page.php:127
178
  msgid ""
179
  "On the \"Settings\" tab, fill in the required fields, select the desired "
180
  "settings and click the \"Save changes\" button. Enjoy the improved SEO of "
@@ -184,29 +190,31 @@ msgstr ""
184
  "и нажмите кнопку «Сохранить изменения». Наслаждайтесь улучшенным SEO вашего "
185
  "веб-сайта. Это так просто!"
186
 
187
- #: inc/php/page.php:129
188
  msgid "How much of description I can enter in the text field?"
189
- msgstr ""
190
 
191
- #: inc/php/page.php:130
192
  msgid ""
193
  "I don't limit the number of characters, but most search engines use a "
194
  "maximum of 160 chars for the home description."
195
  msgstr ""
 
 
196
 
197
- #: inc/php/page.php:132
198
  msgid "How much of keywords I can enter in the text field?"
199
- msgstr ""
200
 
201
- #: inc/php/page.php:133
202
  msgid "I don't limit the number of characters."
203
- msgstr ""
204
 
205
- #: inc/php/page.php:135
206
  msgid "I can't get verify my website. What am I doing wrong?"
207
- msgstr ""
208
 
209
- #: inc/php/page.php:136
210
  msgid ""
211
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
212
  "SpecificFeeds) gives you is confusing as you only have to paste in the "
@@ -215,28 +223,38 @@ msgid ""
215
  "</code>). So just paste that into the relevant field and you will see "
216
  "“Success” message appear within a few seconds."
217
  msgstr ""
 
 
 
 
 
 
218
 
219
- #: inc/php/page.php:138
220
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
221
- msgstr ""
222
 
223
- #: inc/php/page.php:139
224
  msgid ""
225
  "To make these plugins compatible you need to stick to one simple rule: do "
226
  "not fill the same field in both plugins at once. Otherwise both plugins "
227
  "fulfill their work and you will get a duplicate actions, for example:"
228
  msgstr ""
 
 
 
 
229
 
230
- #: inc/php/page.php:147
231
  msgid ""
232
  "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
233
- msgstr ""
234
 
235
- #: inc/php/page.php:149
236
  msgid "Does this plugin requires any modification of the theme?"
237
  msgstr "Этот плагин требует изменения темы?"
238
 
239
- #: inc/php/page.php:150
240
  msgid ""
241
  "Absolutely not. This plugin is configurable entirely from the plugin "
242
  "settings page."
@@ -244,11 +262,11 @@ msgstr ""
244
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
245
  "плагина."
246
 
247
- #: inc/php/page.php:152
248
  msgid "Does this require any knowledge of HTML or CSS?"
249
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
250
 
251
- #: inc/php/page.php:153
252
  msgid ""
253
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
254
  "CSS, using an easy-to-use plugin settings page."
@@ -256,11 +274,11 @@ msgstr ""
256
  "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
257
  "помощью простой в использовании страницы настройки плагина."
258
 
259
- #: inc/php/page.php:155
260
  msgid "It's not working. What could be wrong?"
261
  msgstr "Оно не работает. Что может быть не так?"
262
 
263
- #: inc/php/page.php:156
264
  msgid ""
265
  "As with every plugin, it's possible that things don't work. The most common "
266
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -268,22 +286,35 @@ msgid ""
268
  "usage and server load. This is called the browser's cache.​ Clearing your "
269
  "browser's cache may solve the problem."
270
  msgstr ""
 
 
 
 
 
 
271
 
272
- #: inc/php/page.php:157
273
  msgid ""
274
  "It's impossible to tell what could be wrong exactly, but if you post a "
275
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
276
  "to give it a look and try to help out. Please include as much information as "
277
  "possible, including a link to your website where the problem can be seen."
278
  msgstr ""
 
 
 
 
 
279
 
280
- #: inc/php/page.php:159
281
  msgid ""
282
  "The last WordPress update is preventing me from editing my website that is "
283
  "using this plugin. Why is this?"
284
  msgstr ""
 
 
285
 
286
- #: inc/php/page.php:160
287
  msgid ""
288
  "This plugin can not cause such problem. More likely, the problem are related "
289
  "to the settings of the website. It could just be a cache, so please try to "
@@ -291,98 +322,109 @@ msgid ""
291
  "service such as the CloudFlare) and then the cache of your web browser. Also "
292
  "please try to re-login to the website, this too can help."
293
  msgstr ""
 
 
 
 
 
294
 
295
- #: inc/php/page.php:162
296
  msgid "Where to report bug if found?"
297
  msgstr "Где можно сообщить об ошибке?"
298
 
299
- #: inc/php/page.php:164
300
  #, php-format
301
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
302
  msgstr ""
303
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
304
 
305
- #: inc/php/page.php:170
306
  msgid "Where to share any ideas or suggestions to make the plugin better?"
307
  msgstr ""
308
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
309
 
310
- #: inc/php/page.php:172
311
  #, php-format
312
  msgid ""
313
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
314
  msgstr ""
 
 
315
 
316
- #: inc/php/page.php:177
317
  msgid "I love this plugin! Can I help somehow?"
318
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
319
 
320
- #: inc/php/page.php:179
321
  #, php-format
322
  msgid ""
323
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
324
  "click on the donate button, and thank you!"
325
  msgstr ""
 
 
326
 
327
- #: inc/php/page.php:185
328
  msgid "My question wasn't answered here."
329
  msgstr "Моего вопроса здесь нет."
330
 
331
- #: inc/php/page.php:187
332
  #, php-format
333
  msgid ""
334
  "You can ask your question on the plugin support page %s. But please keep in "
335
  "mind that this plugin is free, and there is no a special support team, so I "
336
  "have no way to answer everyone."
337
  msgstr ""
 
 
 
338
 
339
- #: inc/php/settings.php:21
340
- msgid "About"
341
- msgstr "О плагине"
342
-
343
- #: inc/php/settings.php:23
344
- msgid "This plugin allows you to easily add Meta Tags to your website."
345
- msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
346
 
347
- #: inc/php/settings.php:30 inc/php/settings.php:244
348
  msgid ""
349
- "I'm an independent developer, without a regular income, so every little "
350
- "contribution helps cover my costs and lets me spend more time building "
351
- "things for people like you to enjoy."
 
 
 
352
  msgstr ""
353
- независимый разработчик, без регулярного дохода, так что каждый маленький "
354
- "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
 
 
 
355
  "создание программ для людей как вы."
356
 
357
- #: inc/php/settings.php:31 inc/php/settings.php:245
358
  msgid "Donate with PayPal"
359
- msgstr ""
360
 
361
- #: inc/php/settings.php:32 inc/php/settings.php:246
362
- msgid "Thanks for your support!"
363
  msgstr "Спасибо за вашу поддержку!"
364
 
365
- #: inc/php/settings.php:37
366
- msgid "Help"
367
- msgstr "Помощь"
368
-
369
- #: inc/php/settings.php:39
370
- msgid "If you have a question, please read the information in the FAQ section."
371
- msgstr "Есть что сказать? Нужна помощь?"
372
-
373
- #: inc/php/settings.php:56
374
  msgid "Web Master Tools"
375
  msgstr "Веб-мастер инструменты"
376
 
377
- #: inc/php/settings.php:58
378
  msgid ""
379
  "Webmaster Tools require you to verify your domain. This makes sure that you "
380
  "are the correct owner of your blog or store before they provide their "
381
  "services to you. You can use the options below to verify your domain. If "
382
  "your domain is already verified, you can just forget about these."
383
  msgstr ""
 
 
 
 
 
384
 
385
- #: inc/php/settings.php:63
386
  msgid ""
387
  "Enter your meta key “content” value from your verification code to verify "
388
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
@@ -392,7 +434,7 @@ msgstr ""
392
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"google-site-"
393
  "verification\" content=“<b>1234567890</b>” /&gt;"
394
 
395
- #: inc/php/settings.php:68
396
  msgid ""
397
  "Enter your meta key “content” value from your verification code to verify "
398
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
@@ -402,7 +444,7 @@ msgstr ""
402
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"msvalidate.01\" "
403
  "content=“<b>1234567890</b>” /&gt;"
404
 
405
- #: inc/php/settings.php:73
406
  msgid ""
407
  "Enter your meta key “content” value from your verification code to verify "
408
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
@@ -412,16 +454,16 @@ msgstr ""
412
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"yandex-verification\" "
413
  "content=“<b>1234567890</b>” /&gt;"
414
 
415
- #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159
416
- #: inc/php/settings.php:183 inc/php/settings.php:219
417
  msgid "Save changes"
418
  msgstr "Сохранить изменения"
419
 
420
- #: inc/php/settings.php:83
421
  msgid "Domain Verification"
422
  msgstr "Подтверждение домена"
423
 
424
- #: inc/php/settings.php:85
425
  msgid ""
426
  "Third-party services like Alexa, Pinterest and Google-Plus require you to "
427
  "verify your domain. This makes sure that you are the correct owner of your "
@@ -429,8 +471,13 @@ msgid ""
429
  "options below to verify your domain. If your domain is already verified, you "
430
  "can just forget about these."
431
  msgstr ""
 
 
 
 
 
432
 
433
- #: inc/php/settings.php:90
434
  msgid ""
435
  "Enter your meta key “content” value from your verification code to verify "
436
  "your website. <br>Example: &lt;meta name=\"p:domain_verify\" "
@@ -440,7 +487,7 @@ msgstr ""
440
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"p:domain_verify\" "
441
  "content=“<b>1234567890</b>” /&gt;"
442
 
443
- #: inc/php/settings.php:95
444
  msgid ""
445
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
446
  "https://plus.google.com/+ArthurGareginyan/"
@@ -448,17 +495,19 @@ msgstr ""
448
  "Введите полный URL к профилю в Google+. <br>Пример: https://plus.google.com/"
449
  "+ArthurGareginyan/"
450
 
451
- #: inc/php/settings.php:100
452
  msgid ""
453
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
454
  "https://www.facebook.com/arthur.gareginyan"
455
  msgstr ""
 
 
456
 
457
- #: inc/php/settings.php:105
458
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
459
  msgstr "Введите имя пользователя в Twitter. <br>Пример: @AGareginyan"
460
 
461
- #: inc/php/settings.php:110
462
  msgid ""
463
  "Enter your meta key “content” value from your verification code to verify "
464
  "your website. <br>Example: &lt;meta name=\"alexaVerifyID\" "
@@ -468,7 +517,7 @@ msgstr ""
468
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"alexaVerifyID\" "
469
  "content=“<b>1234567890</b>” /&gt;"
470
 
471
- #: inc/php/settings.php:115
472
  msgid ""
473
  "Enter your meta key “content” value from your verification code to verify "
474
  "your website. <br>Example: &lt;meta name=\"norton-safeweb-site-verification"
@@ -478,7 +527,7 @@ msgstr ""
478
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"norton-safeweb-site-"
479
  "verification\" content=“<b>1234567890</b>” /&gt;"
480
 
481
- #: inc/php/settings.php:120
482
  msgid ""
483
  "Enter your meta key “content” value from your verification code to verify "
484
  "your website. <br>Example: &lt;meta name=\"wot-verification\" "
@@ -488,7 +537,7 @@ msgstr ""
488
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"wot-verification\" "
489
  "content=“<b>1234567890</b>” /&gt;"
490
 
491
- #: inc/php/settings.php:125
492
  msgid ""
493
  "Enter your meta key “content” value from your verification code to verify "
494
  "your website. <br>Example: &lt;meta name=\"specificfeeds-verification-code\" "
@@ -498,11 +547,11 @@ msgstr ""
498
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"specificfeeds-"
499
  "verification-code\" content=“<b>1234567890</b>” /&gt;"
500
 
501
- #: inc/php/settings.php:128
502
  msgid "Custom Meta Tags"
503
  msgstr "Пользовательские мета-теги"
504
 
505
- #: inc/php/settings.php:130
506
  msgid ""
507
  "If you can't find a field to enter your required meta tag then you can add "
508
  "it here. In this field you can add multiple meta tags."
@@ -510,11 +559,11 @@ msgstr ""
510
  "Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-"
511
  "тег сюда. В это поле вы можете добавить несколько мета-тегов."
512
 
513
- #: inc/php/settings.php:141
514
  msgid "Meta Tags for Static Home Page only"
515
  msgstr "Мета-теги только для Static Home Page"
516
 
517
- #: inc/php/settings.php:143
518
  msgid ""
519
  "You can use the options below to add meta tags such as Description and "
520
  "Keywords only in Static Home Page of your website."
@@ -523,11 +572,11 @@ msgstr ""
523
  "таких как Description и Keywords только на Static Home Page страницу вашего "
524
  "вебсайта."
525
 
526
- #: inc/php/settings.php:146
527
  msgid "Home Description"
528
  msgstr "Описание главной страницы"
529
 
530
- #: inc/php/settings.php:148 inc/php/settings.php:172
531
  msgid ""
532
  "Enter a short description of your website (150-250 characters). Most search "
533
  "engines use a maximum of 160 chars for the home description."
@@ -536,11 +585,11 @@ msgstr ""
536
  "поисковых систем используют максимум 160 символов для описания домашней "
537
  "страницы."
538
 
539
- #: inc/php/settings.php:152
540
  msgid "Home Keyword(s)"
541
  msgstr "Ключевые слова главной страницы"
542
 
543
- #: inc/php/settings.php:154
544
  msgid ""
545
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
546
  "website."
@@ -548,11 +597,11 @@ msgstr ""
548
  "Введите, разделенный запятыми, список ключевых слов для только Static Home "
549
  "Page вашего веб-сайта."
550
 
551
- #: inc/php/settings.php:165
552
  msgid "Meta Tags for Default Home Page and Blog Page only"
553
  msgstr "Мета-теги для Default Home Page и только Blog Page"
554
 
555
- #: inc/php/settings.php:167
556
  msgid ""
557
  "You can use the options below to add meta tags such as Description and "
558
  "Keywords only in Default Home Page and Blog Page of your website."
@@ -561,26 +610,26 @@ msgstr ""
561
  "таких как Description и Keywords только на Default Home Page и Blog Page "
562
  "страницы вашего вебсайта."
563
 
564
- #: inc/php/settings.php:170
565
  msgid "Blog Description"
566
  msgstr "Описание блога"
567
 
568
- #: inc/php/settings.php:176
569
  msgid "Blog Keyword(s)"
570
  msgstr "Ключевые слова блога"
571
 
572
- #: inc/php/settings.php:178
573
  msgid ""
574
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
575
  msgstr ""
576
  "Введите, разделенный запятыми, список ключевых слов для только Blog Page "
577
  "вашего веб-сайта."
578
 
579
- #: inc/php/settings.php:189
580
  msgid "Meta Tags for all website (Global)"
581
  msgstr "Мета-теги для всего веб-сайта (Глобальные)"
582
 
583
- #: inc/php/settings.php:191
584
  msgid ""
585
  "You can use the options below to add meta tags such as Author, Copyright and "
586
  "Keywords in everywhere on your website."
@@ -588,33 +637,33 @@ msgstr ""
588
  "Вы можете использовать ниже-расположенные опции для добавления мета тегов "
589
  "таких как Author, Copyright и Keywords на каждую страницу вашего вебсайта."
590
 
591
- #: inc/php/settings.php:199
592
  msgid "Designer"
593
  msgstr "Дизайнер"
594
 
595
- #: inc/php/settings.php:204
596
  msgid "Contact"
597
  msgstr "Контакты"
598
 
599
- #: inc/php/settings.php:208
600
  msgid "Copyright"
601
  msgstr "Copyright"
602
 
603
- #: inc/php/settings.php:212
604
  msgid "Keyword(s)"
605
  msgstr "Ключевые слова"
606
 
607
- #: inc/php/settings.php:214
608
  msgid "Enter a comma-delimited list of global keywords for your website."
609
  msgstr ""
610
  "Введите, разделенный запятыми, список глобальных ключевых слов для вашего "
611
  "веб-сайта."
612
 
613
- #: inc/php/settings.php:225
614
  msgid "WooCommerce & Google Shopping"
615
  msgstr "WooCommerce и Google Shopping"
616
 
617
- #: inc/php/settings.php:227
618
  msgid ""
619
  "This plugin automatically adds the necessary Google Shopping (Merchant "
620
  "Center) structured data on all WooCommerce product pages on your website. "
@@ -626,7 +675,7 @@ msgstr ""
626
  "разметка для женской футболки которая продаётся за 16 долларов и 80 центов "
627
  "США."
628
 
629
- #: inc/php/settings.php:237
630
  msgid ""
631
  "Check these data generated on the pages of your website you can <a href="
632
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
@@ -636,6 +685,37 @@ msgstr ""
636
  "<a href=\"https://search.google.com/structured-data/testing-tool\" target="
637
  "\"_blank\">здесь</a>."
638
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
639
  #. Plugin Name of the plugin/theme
640
  msgid "All Meta Tags"
641
  msgstr "All Meta Tags"
@@ -648,6 +728,8 @@ msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
648
  msgid ""
649
  "Easily and safely add your custom Meta Tags to WordPress website's header."
650
  msgstr ""
 
 
651
 
652
  #. Author of the plugin/theme
653
  msgid "Arthur Gareginyan"
@@ -657,6 +739,9 @@ msgstr "Артур Гарегинян"
657
  msgid "https://www.arthurgareginyan.com"
658
  msgstr "https://www.arthurgareginyan.com"
659
 
 
 
 
660
  #~ msgid "You can contact me by email %s"
661
  #~ msgstr "Вы можете связаться со мной по электронной почте %s"
662
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
+ "POT-Creation-Date: 2017-08-10 15:58+0300\n"
5
+ "PO-Revision-Date: 2017-08-10 15:58+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
27
 
28
  #: inc/php/core.php:47
29
  msgid "Donate"
30
+ msgstr "Поддержать"
31
 
32
  #: inc/php/messages.php:30
33
  msgid "Hello. I'm Arthur, the author of this plugin."
55
  msgid "Version"
56
  msgstr "Версия"
57
 
58
+ #: inc/php/page.php:48 inc/php/page.php:68
59
  msgid "Usage"
60
  msgstr "Применение"
61
 
63
  msgid "F.A.Q."
64
  msgstr "F.A.Q."
65
 
66
+ #: inc/php/page.php:50 inc/php/page.php:201 inc/php/settings.php:210
67
+ #: inc/php/sidebar.php:27
 
 
 
 
68
  msgid "Support"
69
  msgstr "Поддержка"
70
 
71
+ #: inc/php/page.php:51 inc/php/page.php:221 inc/php/settings.php:162
72
+ msgid "Author"
73
+ msgstr "Автор"
74
+
75
  #: inc/php/page.php:52
76
  msgid "Store"
77
+ msgstr "Магазин"
78
 
79
+ #: inc/php/page.php:70
80
  msgid "To add the meta tags to your website, simply follow these steps:"
81
  msgstr ""
82
  "Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие "
83
  "действия:"
84
 
85
+ #: inc/php/page.php:72
86
  msgid "Go to the \"Settings\" tab."
87
  msgstr "Перейдите на вкладку «Настройки»."
88
 
89
+ #: inc/php/page.php:73
90
  msgid "Fill in the required fields."
91
  msgstr "Заполните необходимые поля."
92
 
93
+ #: inc/php/page.php:74
94
  msgid "Select the desired settings."
95
  msgstr "Выберите нужные настройки."
96
 
97
+ #: inc/php/page.php:75
98
  msgid "Click the \"Save changes\" button."
99
  msgstr "Нажмите кнопку «Сохранить изменения»."
100
 
101
+ #: inc/php/page.php:76
102
  msgid "Enjoy the improved SEO of your website."
103
  msgstr "Наслаждайтесь улучшенным SEO вашего веб-сайта."
104
 
105
+ #: inc/php/page.php:76
106
  msgid "It's that simple!"
107
  msgstr "Вот так просто!"
108
 
109
+ #: inc/php/page.php:78
110
  msgid "Note!"
111
  msgstr "Примечание!"
112
 
113
+ #: inc/php/page.php:78
114
  msgid "If you want more options then tell me and I will be happy to add it."
115
  msgstr ""
116
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
117
  "добавить их."
118
 
119
+ #: inc/php/page.php:87
120
  msgid "Frequently Asked Questions"
121
+ msgstr "Часто задаваемые вопросы"
122
 
123
+ #: inc/php/page.php:91
124
  msgid ""
125
  "If you have a question, please read the Frequently Asked Questions below to "
126
  "see if the answer is here."
127
+ msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
128
 
129
+ #: inc/php/page.php:113
130
  msgid "Will this plugin work on my WordPress.COM website?"
131
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
132
 
133
+ #: inc/php/page.php:114
134
  msgid ""
135
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
136
  "websites."
138
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
139
  "размещённых веб-сайтах (WordPress.ORG)."
140
 
141
+ #: inc/php/page.php:116
142
  msgid "Can I use this plugin on my language?"
143
  msgstr "Можно ли использовать этот плагин на моём языке?"
144
 
145
+ #: inc/php/page.php:117
146
  msgid ""
147
  "Yes. This plugin is ready for translation and has already been translated "
148
  "into several languages."
149
+ msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
150
 
151
+ #: inc/php/page.php:119
152
  #, php-format
153
  msgid ""
154
  "If you want to help translate this plugin then please visit the %s. You can "
157
  "me at the %s and I will include this translation within the next plugin "
158
  "update."
159
  msgstr ""
160
+ "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s. Вы "
161
+ "также можете использовать файл POT, который включён в плагин и помещён в "
162
+ "папку «languages», чтобы создать PO файл перевода. Просто отправьте мне файл "
163
+ "PO на %s и Я включу этот перевод в следующее обновление плагина."
164
 
165
+ #: inc/php/page.php:124
166
  msgid ""
167
  "Maybe not all existed translations are up to date. You are welcome to "
168
  "contribute corrections!"
169
+ msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
170
 
171
+ #: inc/php/page.php:125
172
  msgid ""
173
  "Many of plugin users would be delighted if you share your translation with "
174
  "the community. Thanks for your contribution!"
175
  msgstr ""
176
+ "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом "
177
+ "с сообществом. Спасибо за ваш вклад!"
178
 
179
+ #: inc/php/page.php:127
180
  msgid "How does it work?"
181
+ msgstr "Как это работает?"
182
 
183
+ #: inc/php/page.php:128
184
  msgid ""
185
  "On the \"Settings\" tab, fill in the required fields, select the desired "
186
  "settings and click the \"Save changes\" button. Enjoy the improved SEO of "
190
  "и нажмите кнопку «Сохранить изменения». Наслаждайтесь улучшенным SEO вашего "
191
  "веб-сайта. Это так просто!"
192
 
193
+ #: inc/php/page.php:130
194
  msgid "How much of description I can enter in the text field?"
195
+ msgstr "Сколько описаний я могу ввести в текстовое поле?"
196
 
197
+ #: inc/php/page.php:131
198
  msgid ""
199
  "I don't limit the number of characters, but most search engines use a "
200
  "maximum of 160 chars for the home description."
201
  msgstr ""
202
+ "Я не ограничиваю количество символов, но большинство поисковых систем "
203
+ "используют максимум 160 символов для description."
204
 
205
+ #: inc/php/page.php:133
206
  msgid "How much of keywords I can enter in the text field?"
207
+ msgstr "Сколько ключевых слов я могу ввести в текстовое поле?"
208
 
209
+ #: inc/php/page.php:134
210
  msgid "I don't limit the number of characters."
211
+ msgstr "Я не ограничиваю количество символов."
212
 
213
+ #: inc/php/page.php:136
214
  msgid "I can't get verify my website. What am I doing wrong?"
215
+ msgstr "Я не могу проверить свой сайт. Что я делаю не так?"
216
 
217
+ #: inc/php/page.php:137
218
  msgid ""
219
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
220
  "SpecificFeeds) gives you is confusing as you only have to paste in the "
223
  "</code>). So just paste that into the relevant field and you will see "
224
  "“Success” message appear within a few seconds."
225
  msgstr ""
226
+ "Код тега, который даёт тебе Google (или Bing, Yandex, Pinterest, Alexa, "
227
+ "Norton, WOT, SpecificFeeds) может запутать, поскольку вам нужно вставить "
228
+ "только серийный ключ - число/буквы (<code>1234567890</code>) а не весь тэг "
229
+ "(<code>&lt;meta name=\"google-site-verification\" content=“1234567890” /&gt;"
230
+ "</code>). Так что просто вставьте серийный ключ в соответствующее поле, и вы "
231
+ "увидите сообщение «Success» в течение нескольких секунд."
232
 
233
+ #: inc/php/page.php:139
234
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
235
+ msgstr "Как насчет совместимости с плагином \"All in One SEO Pack\"?"
236
 
237
+ #: inc/php/page.php:140
238
  msgid ""
239
  "To make these plugins compatible you need to stick to one simple rule: do "
240
  "not fill the same field in both plugins at once. Otherwise both plugins "
241
  "fulfill their work and you will get a duplicate actions, for example:"
242
  msgstr ""
243
+ "Чтобы эти плагины были совместимы, вам нужно придерживаться одного простого "
244
+ "правила: не заполняйте одно и то же поле в обоих плагинах одновременно. В "
245
+ "противном случае оба плагина выполняют свою работу, и вы получите дубликаты "
246
+ "действий, например:"
247
 
248
+ #: inc/php/page.php:148
249
  msgid ""
250
  "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
251
+ msgstr "В остальном «All Meta Tags» и «All in One SEO Pack» совместимы."
252
 
253
+ #: inc/php/page.php:150
254
  msgid "Does this plugin requires any modification of the theme?"
255
  msgstr "Этот плагин требует изменения темы?"
256
 
257
+ #: inc/php/page.php:151
258
  msgid ""
259
  "Absolutely not. This plugin is configurable entirely from the plugin "
260
  "settings page."
262
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
263
  "плагина."
264
 
265
+ #: inc/php/page.php:153
266
  msgid "Does this require any knowledge of HTML or CSS?"
267
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
268
 
269
+ #: inc/php/page.php:154
270
  msgid ""
271
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
272
  "CSS, using an easy-to-use plugin settings page."
274
  "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
275
  "помощью простой в использовании страницы настройки плагина."
276
 
277
+ #: inc/php/page.php:156
278
  msgid "It's not working. What could be wrong?"
279
  msgstr "Оно не работает. Что может быть не так?"
280
 
281
+ #: inc/php/page.php:157
282
  msgid ""
283
  "As with every plugin, it's possible that things don't work. The most common "
284
  "reason for this is a web browser's cache. Every web browser stores a cache "
286
  "usage and server load. This is called the browser's cache.​ Clearing your "
287
  "browser's cache may solve the problem."
288
  msgstr ""
289
+ "Как и в случае с любым другим плагином, что-то может не работать. Наиболее "
290
+ "распространенной причиной этого является кеш веб-браузера. Каждый веб-"
291
+ "браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и "
292
+ "т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на "
293
+ "сервер. Это называется кешем браузера. Очистка кеша браузера может решить "
294
+ "проблему."
295
 
296
+ #: inc/php/page.php:158
297
  msgid ""
298
  "It's impossible to tell what could be wrong exactly, but if you post a "
299
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
300
  "to give it a look and try to help out. Please include as much information as "
301
  "possible, including a link to your website where the problem can be seen."
302
  msgstr ""
303
+ "Невозможно точно сказать, что может быть неправильно, но если вы разместите "
304
+ "запрос поддержки на форуме поддержки плагинов на WordPress.org, Я с "
305
+ "удовольствием посмотрю его и попытаюсь помочь. Пожалуйста, укажите как можно "
306
+ "больше информации, включая ссылку на ваш сайт, на котором можно увидеть "
307
+ "проблему."
308
 
309
+ #: inc/php/page.php:160
310
  msgid ""
311
  "The last WordPress update is preventing me from editing my website that is "
312
  "using this plugin. Why is this?"
313
  msgstr ""
314
+ "Последнее обновление WordPress не позволяет мне редактировать мой сайт, "
315
+ "который использует этот плагин. Почему так?"
316
 
317
+ #: inc/php/page.php:161
318
  msgid ""
319
  "This plugin can not cause such problem. More likely, the problem are related "
320
  "to the settings of the website. It could just be a cache, so please try to "
322
  "service such as the CloudFlare) and then the cache of your web browser. Also "
323
  "please try to re-login to the website, this too can help."
324
  msgstr ""
325
+ "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана "
326
+ "с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш "
327
+ "вашего сайта (возможно, вы используете плагин для кеширования или какой-либо "
328
+ "веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также "
329
+ "попробуйте повторно войти на сайт, это тоже может помочь."
330
 
331
+ #: inc/php/page.php:163
332
  msgid "Where to report bug if found?"
333
  msgstr "Где можно сообщить об ошибке?"
334
 
335
+ #: inc/php/page.php:165
336
  #, php-format
337
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
338
  msgstr ""
339
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
340
 
341
+ #: inc/php/page.php:171
342
  msgid "Where to share any ideas or suggestions to make the plugin better?"
343
  msgstr ""
344
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
345
 
346
+ #: inc/php/page.php:173
347
  #, php-format
348
  msgid ""
349
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
350
  msgstr ""
351
+ "Любые предложения приветствуются! Пожалуйста, пришлите мне электронное "
352
+ "письмо на адрес %s. Спасибо!"
353
 
354
+ #: inc/php/page.php:178
355
  msgid "I love this plugin! Can I help somehow?"
356
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
357
 
358
+ #: inc/php/page.php:180
359
  #, php-format
360
  msgid ""
361
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
362
  "click on the donate button, and thank you!"
363
  msgstr ""
364
+ "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, "
365
+ "нажмите на кнопку пожертвования. Спасибо!"
366
 
367
+ #: inc/php/page.php:186
368
  msgid "My question wasn't answered here."
369
  msgstr "Моего вопроса здесь нет."
370
 
371
+ #: inc/php/page.php:188
372
  #, php-format
373
  msgid ""
374
  "You can ask your question on the plugin support page %s. But please keep in "
375
  "mind that this plugin is free, and there is no a special support team, so I "
376
  "have no way to answer everyone."
377
  msgstr ""
378
+ "Вы можете задать ваш вопрос на странице поддержки плагина %s. Но имейте в "
379
+ "виду, что этот плагин является бесплатным и без специальной поддержки, "
380
+ "поэтому у меня нет возможности ответить на все вопросы."
381
 
382
+ #: inc/php/page.php:204
383
+ msgid "If you appreciate my work, you can buy me a coffee!"
384
+ msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
 
 
 
 
385
 
386
+ #: inc/php/page.php:205
387
  msgid ""
388
+ "I spend a lot of time and effort trying to make sure that the themes, "
389
+ "plugins and another things I build are useful, and the ultimate proof of "
390
+ "that for me is that you actually want to use them. But, I’m an independent "
391
+ "developer, without a regular income, so every little contribution helps "
392
+ "cover my costs and lets me spend more time building things for people like "
393
+ "you to enjoy."
394
  msgstr ""
395
+ трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и "
396
+ "другие вещи, которые я создаю, полезны и окончательное доказательство этого "
397
+ "для меня состоит в том, что вы на самом деле хотите их использовать. Но Я "
398
+ "независимый разработчик, без регулярного дохода, поэтому каждый небольшой "
399
+ "вклад помогает мне покрыть расходы и позволяет тратить больше времени на "
400
  "создание программ для людей как вы."
401
 
402
+ #: inc/php/page.php:210 inc/php/settings.php:217 inc/php/sidebar.php:34
403
  msgid "Donate with PayPal"
404
+ msgstr "Пожертвовать через Pay Pal"
405
 
406
+ #: inc/php/page.php:212
407
+ msgid "Thank you for your support!"
408
  msgstr "Спасибо за вашу поддержку!"
409
 
410
+ #: inc/php/settings.php:24
 
 
 
 
 
 
 
 
411
  msgid "Web Master Tools"
412
  msgstr "Веб-мастер инструменты"
413
 
414
+ #: inc/php/settings.php:26
415
  msgid ""
416
  "Webmaster Tools require you to verify your domain. This makes sure that you "
417
  "are the correct owner of your blog or store before they provide their "
418
  "services to you. You can use the options below to verify your domain. If "
419
  "your domain is already verified, you can just forget about these."
420
  msgstr ""
421
+ "Webmaster Tools требует подтверждения вашего домена. Это подтвердит то, что "
422
+ "вы действительно являетесь владельцем своего блога или магазина, прежде чем "
423
+ "они смогут предоставить вам свои услуги. Вы можете использовать следующие "
424
+ "параметры, чтобы подтвердить свой домен. Если ваш домен уже проверен, вы "
425
+ "можете просто забыть об этих полях."
426
 
427
+ #: inc/php/settings.php:31
428
  msgid ""
429
  "Enter your meta key “content” value from your verification code to verify "
430
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
434
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"google-site-"
435
  "verification\" content=“<b>1234567890</b>” /&gt;"
436
 
437
+ #: inc/php/settings.php:36
438
  msgid ""
439
  "Enter your meta key “content” value from your verification code to verify "
440
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
444
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"msvalidate.01\" "
445
  "content=“<b>1234567890</b>” /&gt;"
446
 
447
+ #: inc/php/settings.php:41
448
  msgid ""
449
  "Enter your meta key “content” value from your verification code to verify "
450
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
454
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"yandex-verification\" "
455
  "content=“<b>1234567890</b>” /&gt;"
456
 
457
+ #: inc/php/settings.php:45 inc/php/settings.php:103 inc/php/settings.php:127
458
+ #: inc/php/settings.php:151 inc/php/settings.php:187
459
  msgid "Save changes"
460
  msgstr "Сохранить изменения"
461
 
462
+ #: inc/php/settings.php:51
463
  msgid "Domain Verification"
464
  msgstr "Подтверждение домена"
465
 
466
+ #: inc/php/settings.php:53
467
  msgid ""
468
  "Third-party services like Alexa, Pinterest and Google-Plus require you to "
469
  "verify your domain. This makes sure that you are the correct owner of your "
471
  "options below to verify your domain. If your domain is already verified, you "
472
  "can just forget about these."
473
  msgstr ""
474
+ "Сторонние службы, такие как Alexa, Pinterest и Google-Plus, требуют "
475
+ "подтверждения вашего домена. Это гарантирует, что вы являетесь правильным "
476
+ "владельцем своего блога или магазина, прежде чем предоставлять свои услуги "
477
+ "вам. Вы можете использовать следующие параметры, чтобы подтвердить свой "
478
+ "домен. Если ваш домен уже проверен, вы можете просто забыть об этом."
479
 
480
+ #: inc/php/settings.php:58
481
  msgid ""
482
  "Enter your meta key “content” value from your verification code to verify "
483
  "your website. <br>Example: &lt;meta name=\"p:domain_verify\" "
487
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"p:domain_verify\" "
488
  "content=“<b>1234567890</b>” /&gt;"
489
 
490
+ #: inc/php/settings.php:63
491
  msgid ""
492
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
493
  "https://plus.google.com/+ArthurGareginyan/"
495
  "Введите полный URL к профилю в Google+. <br>Пример: https://plus.google.com/"
496
  "+ArthurGareginyan/"
497
 
498
+ #: inc/php/settings.php:68
499
  msgid ""
500
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
501
  "https://www.facebook.com/arthur.gareginyan"
502
  msgstr ""
503
+ "Введите полный URL-адрес профиля пользователя в Facebook. <br>Пример: "
504
+ "https://www.facebook.com/arthur.gareginyan"
505
 
506
+ #: inc/php/settings.php:73
507
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
508
  msgstr "Введите имя пользователя в Twitter. <br>Пример: @AGareginyan"
509
 
510
+ #: inc/php/settings.php:78
511
  msgid ""
512
  "Enter your meta key “content” value from your verification code to verify "
513
  "your website. <br>Example: &lt;meta name=\"alexaVerifyID\" "
517
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"alexaVerifyID\" "
518
  "content=“<b>1234567890</b>” /&gt;"
519
 
520
+ #: inc/php/settings.php:83
521
  msgid ""
522
  "Enter your meta key “content” value from your verification code to verify "
523
  "your website. <br>Example: &lt;meta name=\"norton-safeweb-site-verification"
527
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"norton-safeweb-site-"
528
  "verification\" content=“<b>1234567890</b>” /&gt;"
529
 
530
+ #: inc/php/settings.php:88
531
  msgid ""
532
  "Enter your meta key “content” value from your verification code to verify "
533
  "your website. <br>Example: &lt;meta name=\"wot-verification\" "
537
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"wot-verification\" "
538
  "content=“<b>1234567890</b>” /&gt;"
539
 
540
+ #: inc/php/settings.php:93
541
  msgid ""
542
  "Enter your meta key “content” value from your verification code to verify "
543
  "your website. <br>Example: &lt;meta name=\"specificfeeds-verification-code\" "
547
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"specificfeeds-"
548
  "verification-code\" content=“<b>1234567890</b>” /&gt;"
549
 
550
+ #: inc/php/settings.php:96
551
  msgid "Custom Meta Tags"
552
  msgstr "Пользовательские мета-теги"
553
 
554
+ #: inc/php/settings.php:98
555
  msgid ""
556
  "If you can't find a field to enter your required meta tag then you can add "
557
  "it here. In this field you can add multiple meta tags."
559
  "Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-"
560
  "тег сюда. В это поле вы можете добавить несколько мета-тегов."
561
 
562
+ #: inc/php/settings.php:109
563
  msgid "Meta Tags for Static Home Page only"
564
  msgstr "Мета-теги только для Static Home Page"
565
 
566
+ #: inc/php/settings.php:111
567
  msgid ""
568
  "You can use the options below to add meta tags such as Description and "
569
  "Keywords only in Static Home Page of your website."
572
  "таких как Description и Keywords только на Static Home Page страницу вашего "
573
  "вебсайта."
574
 
575
+ #: inc/php/settings.php:114
576
  msgid "Home Description"
577
  msgstr "Описание главной страницы"
578
 
579
+ #: inc/php/settings.php:116 inc/php/settings.php:140
580
  msgid ""
581
  "Enter a short description of your website (150-250 characters). Most search "
582
  "engines use a maximum of 160 chars for the home description."
585
  "поисковых систем используют максимум 160 символов для описания домашней "
586
  "страницы."
587
 
588
+ #: inc/php/settings.php:120
589
  msgid "Home Keyword(s)"
590
  msgstr "Ключевые слова главной страницы"
591
 
592
+ #: inc/php/settings.php:122
593
  msgid ""
594
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
595
  "website."
597
  "Введите, разделенный запятыми, список ключевых слов для только Static Home "
598
  "Page вашего веб-сайта."
599
 
600
+ #: inc/php/settings.php:133
601
  msgid "Meta Tags for Default Home Page and Blog Page only"
602
  msgstr "Мета-теги для Default Home Page и только Blog Page"
603
 
604
+ #: inc/php/settings.php:135
605
  msgid ""
606
  "You can use the options below to add meta tags such as Description and "
607
  "Keywords only in Default Home Page and Blog Page of your website."
610
  "таких как Description и Keywords только на Default Home Page и Blog Page "
611
  "страницы вашего вебсайта."
612
 
613
+ #: inc/php/settings.php:138
614
  msgid "Blog Description"
615
  msgstr "Описание блога"
616
 
617
+ #: inc/php/settings.php:144
618
  msgid "Blog Keyword(s)"
619
  msgstr "Ключевые слова блога"
620
 
621
+ #: inc/php/settings.php:146
622
  msgid ""
623
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
624
  msgstr ""
625
  "Введите, разделенный запятыми, список ключевых слов для только Blog Page "
626
  "вашего веб-сайта."
627
 
628
+ #: inc/php/settings.php:157
629
  msgid "Meta Tags for all website (Global)"
630
  msgstr "Мета-теги для всего веб-сайта (Глобальные)"
631
 
632
+ #: inc/php/settings.php:159
633
  msgid ""
634
  "You can use the options below to add meta tags such as Author, Copyright and "
635
  "Keywords in everywhere on your website."
637
  "Вы можете использовать ниже-расположенные опции для добавления мета тегов "
638
  "таких как Author, Copyright и Keywords на каждую страницу вашего вебсайта."
639
 
640
+ #: inc/php/settings.php:167
641
  msgid "Designer"
642
  msgstr "Дизайнер"
643
 
644
+ #: inc/php/settings.php:172
645
  msgid "Contact"
646
  msgstr "Контакты"
647
 
648
+ #: inc/php/settings.php:176
649
  msgid "Copyright"
650
  msgstr "Copyright"
651
 
652
+ #: inc/php/settings.php:180
653
  msgid "Keyword(s)"
654
  msgstr "Ключевые слова"
655
 
656
+ #: inc/php/settings.php:182
657
  msgid "Enter a comma-delimited list of global keywords for your website."
658
  msgstr ""
659
  "Введите, разделенный запятыми, список глобальных ключевых слов для вашего "
660
  "веб-сайта."
661
 
662
+ #: inc/php/settings.php:193
663
  msgid "WooCommerce & Google Shopping"
664
  msgstr "WooCommerce и Google Shopping"
665
 
666
+ #: inc/php/settings.php:195
667
  msgid ""
668
  "This plugin automatically adds the necessary Google Shopping (Merchant "
669
  "Center) structured data on all WooCommerce product pages on your website. "
675
  "разметка для женской футболки которая продаётся за 16 долларов и 80 центов "
676
  "США."
677
 
678
+ #: inc/php/settings.php:205
679
  msgid ""
680
  "Check these data generated on the pages of your website you can <a href="
681
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
685
  "<a href=\"https://search.google.com/structured-data/testing-tool\" target="
686
  "\"_blank\">здесь</a>."
687
 
688
+ #: inc/php/settings.php:212 inc/php/sidebar.php:29
689
+ msgid ""
690
+ "I'm an independent developer, without a regular income, so every little "
691
+ "contribution helps cover my costs and lets me spend more time building "
692
+ "things for people like you to enjoy."
693
+ msgstr ""
694
+ "Я независимый разработчик, без регулярного дохода, так что каждый маленький "
695
+ "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
696
+ "создание программ для людей как вы."
697
+
698
+ #: inc/php/settings.php:219
699
+ msgid "Thanks for your support!"
700
+ msgstr "Спасибо за вашу поддержку!"
701
+
702
+ #: inc/php/sidebar.php:20
703
+ msgid "About"
704
+ msgstr "О плагине"
705
+
706
+ #: inc/php/sidebar.php:22
707
+ msgid "This plugin allows you to easily add Meta Tags to your website."
708
+ msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
709
+
710
+ #: inc/php/sidebar.php:40
711
+ msgid "Help"
712
+ msgstr "Помощь"
713
+
714
+ #: inc/php/sidebar.php:42
715
+ msgid "If you have a question, please read the information in the FAQ section."
716
+ msgstr ""
717
+ "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
718
+
719
  #. Plugin Name of the plugin/theme
720
  msgid "All Meta Tags"
721
  msgstr "All Meta Tags"
728
  msgid ""
729
  "Easily and safely add your custom Meta Tags to WordPress website's header."
730
  msgstr ""
731
+ "Легко и безопасно добавлять свои собственные метатеги в заголовок веб-сайта "
732
+ "WordPress."
733
 
734
  #. Author of the plugin/theme
735
  msgid "Arthur Gareginyan"
739
  msgid "https://www.arthurgareginyan.com"
740
  msgstr "https://www.arthurgareginyan.com"
741
 
742
+ #~ msgid "Family"
743
+ #~ msgstr "Семья"
744
+
745
  #~ msgid "You can contact me by email %s"
746
  #~ msgstr "Вы можете связаться со мной по электронной почте %s"
747
 
languages/all-meta-tags.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
- "POT-Creation-Date: 2017-06-21 14:12+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -54,7 +54,7 @@ msgstr ""
54
  msgid "Version"
55
  msgstr ""
56
 
57
- #: inc/php/page.php:48 inc/php/page.php:67
58
  msgid "Usage"
59
  msgstr ""
60
 
@@ -62,82 +62,82 @@ msgstr ""
62
  msgid "F.A.Q."
63
  msgstr ""
64
 
65
- #: inc/php/page.php:50 inc/php/page.php:200 inc/php/settings.php:194
66
- msgid "Author"
67
  msgstr ""
68
 
69
- #: inc/php/page.php:51 inc/php/page.php:209 inc/php/settings.php:28 inc/php/settings.php:242
70
- msgid "Support"
71
  msgstr ""
72
 
73
  #: inc/php/page.php:52
74
  msgid "Store"
75
  msgstr ""
76
 
77
- #: inc/php/page.php:69
78
  msgid "To add the meta tags to your website, simply follow these steps:"
79
  msgstr ""
80
 
81
- #: inc/php/page.php:71
82
  msgid "Go to the \"Settings\" tab."
83
  msgstr ""
84
 
85
- #: inc/php/page.php:72
86
  msgid "Fill in the required fields."
87
  msgstr ""
88
 
89
- #: inc/php/page.php:73
90
  msgid "Select the desired settings."
91
  msgstr ""
92
 
93
- #: inc/php/page.php:74
94
  msgid "Click the \"Save changes\" button."
95
  msgstr ""
96
 
97
- #: inc/php/page.php:75
98
  msgid "Enjoy the improved SEO of your website."
99
  msgstr ""
100
 
101
- #: inc/php/page.php:75
102
  msgid "It's that simple!"
103
  msgstr ""
104
 
105
- #: inc/php/page.php:77
106
  msgid "Note!"
107
  msgstr ""
108
 
109
- #: inc/php/page.php:77
110
  msgid "If you want more options then tell me and I will be happy to add it."
111
  msgstr ""
112
 
113
- #: inc/php/page.php:86
114
  msgid "Frequently Asked Questions"
115
  msgstr ""
116
 
117
- #: inc/php/page.php:90
118
  msgid ""
119
  "If you have a question, please read the Frequently Asked Questions below to see if the answer is "
120
  "here."
121
  msgstr ""
122
 
123
- #: inc/php/page.php:112
124
  msgid "Will this plugin work on my WordPress.COM website?"
125
  msgstr ""
126
 
127
- #: inc/php/page.php:113
128
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
129
  msgstr ""
130
 
131
- #: inc/php/page.php:115
132
  msgid "Can I use this plugin on my language?"
133
  msgstr ""
134
 
135
- #: inc/php/page.php:116
136
  msgid ""
137
  "Yes. This plugin is ready for translation and has already been translated into several languages."
138
  msgstr ""
139
 
140
- #: inc/php/page.php:118
141
  #, php-format
142
  msgid ""
143
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, "
@@ -146,49 +146,49 @@ msgid ""
146
  "update."
147
  msgstr ""
148
 
149
- #: inc/php/page.php:123
150
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
151
  msgstr ""
152
 
153
- #: inc/php/page.php:124
154
  msgid ""
155
  "Many of plugin users would be delighted if you share your translation with the community. Thanks "
156
  "for your contribution!"
157
  msgstr ""
158
 
159
- #: inc/php/page.php:126
160
  msgid "How does it work?"
161
  msgstr ""
162
 
163
- #: inc/php/page.php:127
164
  msgid ""
165
  "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the "
166
  "\"Save changes\" button. Enjoy the improved SEO of your website. It's that simple!"
167
  msgstr ""
168
 
169
- #: inc/php/page.php:129
170
  msgid "How much of description I can enter in the text field?"
171
  msgstr ""
172
 
173
- #: inc/php/page.php:130
174
  msgid ""
175
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the "
176
  "home description."
177
  msgstr ""
178
 
179
- #: inc/php/page.php:132
180
  msgid "How much of keywords I can enter in the text field?"
181
  msgstr ""
182
 
183
- #: inc/php/page.php:133
184
  msgid "I don't limit the number of characters."
185
  msgstr ""
186
 
187
- #: inc/php/page.php:135
188
  msgid "I can't get verify my website. What am I doing wrong?"
189
  msgstr ""
190
 
191
- #: inc/php/page.php:136
192
  msgid ""
193
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you "
194
  "is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) "
@@ -197,44 +197,44 @@ msgid ""
197
  "a few seconds."
198
  msgstr ""
199
 
200
- #: inc/php/page.php:138
201
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
202
  msgstr ""
203
 
204
- #: inc/php/page.php:139
205
  msgid ""
206
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field "
207
  "in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate "
208
  "actions, for example:"
209
  msgstr ""
210
 
211
- #: inc/php/page.php:147
212
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
213
  msgstr ""
214
 
215
- #: inc/php/page.php:149
216
  msgid "Does this plugin requires any modification of the theme?"
217
  msgstr ""
218
 
219
- #: inc/php/page.php:150
220
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
221
  msgstr ""
222
 
223
- #: inc/php/page.php:152
224
  msgid "Does this require any knowledge of HTML or CSS?"
225
  msgstr ""
226
 
227
- #: inc/php/page.php:153
228
  msgid ""
229
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-"
230
  "use plugin settings page."
231
  msgstr ""
232
 
233
- #: inc/php/page.php:155
234
  msgid "It's not working. What could be wrong?"
235
  msgstr ""
236
 
237
- #: inc/php/page.php:156
238
  msgid ""
239
  "As with every plugin, it's possible that things don't work. The most common reason for this is a "
240
  "web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
@@ -242,7 +242,7 @@ msgid ""
242
  "browser's cache may solve the problem."
243
  msgstr ""
244
 
245
- #: inc/php/page.php:157
246
  msgid ""
247
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
248
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
@@ -250,13 +250,13 @@ msgid ""
250
  "seen."
251
  msgstr ""
252
 
253
- #: inc/php/page.php:159
254
  msgid ""
255
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why "
256
  "is this?"
257
  msgstr ""
258
 
259
- #: inc/php/page.php:160
260
  msgid ""
261
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
262
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
@@ -264,115 +264,105 @@ msgid ""
264
  "Also please try to re-login to the website, this too can help."
265
  msgstr ""
266
 
267
- #: inc/php/page.php:162
268
  msgid "Where to report bug if found?"
269
  msgstr ""
270
 
271
- #: inc/php/page.php:164
272
  #, php-format
273
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
274
  msgstr ""
275
 
276
- #: inc/php/page.php:170
277
  msgid "Where to share any ideas or suggestions to make the plugin better?"
278
  msgstr ""
279
 
280
- #: inc/php/page.php:172
281
  #, php-format
282
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
283
  msgstr ""
284
 
285
- #: inc/php/page.php:177
286
  msgid "I love this plugin! Can I help somehow?"
287
  msgstr ""
288
 
289
- #: inc/php/page.php:179
290
  #, php-format
291
  msgid ""
292
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
293
  "button, and thank you!"
294
  msgstr ""
295
 
296
- #: inc/php/page.php:185
297
  msgid "My question wasn't answered here."
298
  msgstr ""
299
 
300
- #: inc/php/page.php:187
301
  #, php-format
302
  msgid ""
303
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin "
304
  "is free, and there is no a special support team, so I have no way to answer everyone."
305
  msgstr ""
306
 
307
- #: inc/php/settings.php:21
308
- msgid "About"
309
  msgstr ""
310
 
311
- #: inc/php/settings.php:23
312
- msgid "This plugin allows you to easily add Meta Tags to your website."
313
- msgstr ""
314
-
315
- #: inc/php/settings.php:30 inc/php/settings.php:244
316
  msgid ""
317
- "I'm an independent developer, without a regular income, so every little contribution helps cover my "
 
 
318
  "costs and lets me spend more time building things for people like you to enjoy."
319
  msgstr ""
320
 
321
- #: inc/php/settings.php:31 inc/php/settings.php:245
322
  msgid "Donate with PayPal"
323
  msgstr ""
324
 
325
- #: inc/php/settings.php:32 inc/php/settings.php:246
326
- msgid "Thanks for your support!"
327
  msgstr ""
328
 
329
- #: inc/php/settings.php:37
330
- msgid "Help"
331
- msgstr ""
332
-
333
- #: inc/php/settings.php:39
334
- msgid "If you have a question, please read the information in the FAQ section."
335
- msgstr ""
336
-
337
- #: inc/php/settings.php:56
338
  msgid "Web Master Tools"
339
  msgstr ""
340
 
341
- #: inc/php/settings.php:58
342
  msgid ""
343
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner "
344
  "of your blog or store before they provide their services to you. You can use the options below to "
345
  "verify your domain. If your domain is already verified, you can just forget about these."
346
  msgstr ""
347
 
348
- #: inc/php/settings.php:63
349
  msgid ""
350
  "Enter your meta key “content” value from your verification code to verify your website. "
351
  "<br>Example: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
352
  msgstr ""
353
 
354
- #: inc/php/settings.php:68
355
  msgid ""
356
  "Enter your meta key “content” value from your verification code to verify your website. "
357
  "<br>Example: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
358
  msgstr ""
359
 
360
- #: inc/php/settings.php:73
361
  msgid ""
362
  "Enter your meta key “content” value from your verification code to verify your website. "
363
  "<br>Example: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
364
  msgstr ""
365
 
366
- #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159 inc/php/settings.php:183
367
- #: inc/php/settings.php:219
368
  msgid "Save changes"
369
  msgstr ""
370
 
371
- #: inc/php/settings.php:83
372
  msgid "Domain Verification"
373
  msgstr ""
374
 
375
- #: inc/php/settings.php:85
376
  msgid ""
377
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This "
378
  "makes sure that you are the correct owner of your blog or store before they provide their services "
@@ -380,159 +370,185 @@ msgid ""
380
  "you can just forget about these."
381
  msgstr ""
382
 
383
- #: inc/php/settings.php:90
384
  msgid ""
385
  "Enter your meta key “content” value from your verification code to verify your website. "
386
  "<br>Example: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
387
  msgstr ""
388
 
389
- #: inc/php/settings.php:95
390
  msgid ""
391
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
392
  "+ArthurGareginyan/"
393
  msgstr ""
394
 
395
- #: inc/php/settings.php:100
396
  msgid ""
397
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook."
398
  "com/arthur.gareginyan"
399
  msgstr ""
400
 
401
- #: inc/php/settings.php:105
402
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
403
  msgstr ""
404
 
405
- #: inc/php/settings.php:110
406
  msgid ""
407
  "Enter your meta key “content” value from your verification code to verify your website. "
408
  "<br>Example: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
409
  msgstr ""
410
 
411
- #: inc/php/settings.php:115
412
  msgid ""
413
  "Enter your meta key “content” value from your verification code to verify your website. "
414
  "<br>Example: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
415
  msgstr ""
416
 
417
- #: inc/php/settings.php:120
418
  msgid ""
419
  "Enter your meta key “content” value from your verification code to verify your website. "
420
  "<br>Example: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
421
  msgstr ""
422
 
423
- #: inc/php/settings.php:125
424
  msgid ""
425
  "Enter your meta key “content” value from your verification code to verify your website. "
426
  "<br>Example: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
427
  msgstr ""
428
 
429
- #: inc/php/settings.php:128
430
  msgid "Custom Meta Tags"
431
  msgstr ""
432
 
433
- #: inc/php/settings.php:130
434
  msgid ""
435
  "If you can't find a field to enter your required meta tag then you can add it here. In this field "
436
  "you can add multiple meta tags."
437
  msgstr ""
438
 
439
- #: inc/php/settings.php:141
440
  msgid "Meta Tags for Static Home Page only"
441
  msgstr ""
442
 
443
- #: inc/php/settings.php:143
444
  msgid ""
445
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home "
446
  "Page of your website."
447
  msgstr ""
448
 
449
- #: inc/php/settings.php:146
450
  msgid "Home Description"
451
  msgstr ""
452
 
453
- #: inc/php/settings.php:148 inc/php/settings.php:172
454
  msgid ""
455
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum "
456
  "of 160 chars for the home description."
457
  msgstr ""
458
 
459
- #: inc/php/settings.php:152
460
  msgid "Home Keyword(s)"
461
  msgstr ""
462
 
463
- #: inc/php/settings.php:154
464
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
465
  msgstr ""
466
 
467
- #: inc/php/settings.php:165
468
  msgid "Meta Tags for Default Home Page and Blog Page only"
469
  msgstr ""
470
 
471
- #: inc/php/settings.php:167
472
  msgid ""
473
  "You can use the options below to add meta tags such as Description and Keywords only in Default "
474
  "Home Page and Blog Page of your website."
475
  msgstr ""
476
 
477
- #: inc/php/settings.php:170
478
  msgid "Blog Description"
479
  msgstr ""
480
 
481
- #: inc/php/settings.php:176
482
  msgid "Blog Keyword(s)"
483
  msgstr ""
484
 
485
- #: inc/php/settings.php:178
486
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
487
  msgstr ""
488
 
489
- #: inc/php/settings.php:189
490
  msgid "Meta Tags for all website (Global)"
491
  msgstr ""
492
 
493
- #: inc/php/settings.php:191
494
  msgid ""
495
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere "
496
  "on your website."
497
  msgstr ""
498
 
499
- #: inc/php/settings.php:199
500
  msgid "Designer"
501
  msgstr ""
502
 
503
- #: inc/php/settings.php:204
504
  msgid "Contact"
505
  msgstr ""
506
 
507
- #: inc/php/settings.php:208
508
  msgid "Copyright"
509
  msgstr ""
510
 
511
- #: inc/php/settings.php:212
512
  msgid "Keyword(s)"
513
  msgstr ""
514
 
515
- #: inc/php/settings.php:214
516
  msgid "Enter a comma-delimited list of global keywords for your website."
517
  msgstr ""
518
 
519
- #: inc/php/settings.php:225
520
  msgid "WooCommerce & Google Shopping"
521
  msgstr ""
522
 
523
- #: inc/php/settings.php:227
524
  msgid ""
525
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on "
526
  "all WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells "
527
  "for 16 dollars and 80 cents of US."
528
  msgstr ""
529
 
530
- #: inc/php/settings.php:237
531
  msgid ""
532
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
533
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
534
  msgstr ""
535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
536
  #. Plugin Name of the plugin/theme
537
  msgid "All Meta Tags"
538
  msgstr ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2017-08-10 15:58+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
54
  msgid "Version"
55
  msgstr ""
56
 
57
+ #: inc/php/page.php:48 inc/php/page.php:68
58
  msgid "Usage"
59
  msgstr ""
60
 
62
  msgid "F.A.Q."
63
  msgstr ""
64
 
65
+ #: inc/php/page.php:50 inc/php/page.php:201 inc/php/settings.php:210 inc/php/sidebar.php:27
66
+ msgid "Support"
67
  msgstr ""
68
 
69
+ #: inc/php/page.php:51 inc/php/page.php:221 inc/php/settings.php:162
70
+ msgid "Author"
71
  msgstr ""
72
 
73
  #: inc/php/page.php:52
74
  msgid "Store"
75
  msgstr ""
76
 
77
+ #: inc/php/page.php:70
78
  msgid "To add the meta tags to your website, simply follow these steps:"
79
  msgstr ""
80
 
81
+ #: inc/php/page.php:72
82
  msgid "Go to the \"Settings\" tab."
83
  msgstr ""
84
 
85
+ #: inc/php/page.php:73
86
  msgid "Fill in the required fields."
87
  msgstr ""
88
 
89
+ #: inc/php/page.php:74
90
  msgid "Select the desired settings."
91
  msgstr ""
92
 
93
+ #: inc/php/page.php:75
94
  msgid "Click the \"Save changes\" button."
95
  msgstr ""
96
 
97
+ #: inc/php/page.php:76
98
  msgid "Enjoy the improved SEO of your website."
99
  msgstr ""
100
 
101
+ #: inc/php/page.php:76
102
  msgid "It's that simple!"
103
  msgstr ""
104
 
105
+ #: inc/php/page.php:78
106
  msgid "Note!"
107
  msgstr ""
108
 
109
+ #: inc/php/page.php:78
110
  msgid "If you want more options then tell me and I will be happy to add it."
111
  msgstr ""
112
 
113
+ #: inc/php/page.php:87
114
  msgid "Frequently Asked Questions"
115
  msgstr ""
116
 
117
+ #: inc/php/page.php:91
118
  msgid ""
119
  "If you have a question, please read the Frequently Asked Questions below to see if the answer is "
120
  "here."
121
  msgstr ""
122
 
123
+ #: inc/php/page.php:113
124
  msgid "Will this plugin work on my WordPress.COM website?"
125
  msgstr ""
126
 
127
+ #: inc/php/page.php:114
128
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
129
  msgstr ""
130
 
131
+ #: inc/php/page.php:116
132
  msgid "Can I use this plugin on my language?"
133
  msgstr ""
134
 
135
+ #: inc/php/page.php:117
136
  msgid ""
137
  "Yes. This plugin is ready for translation and has already been translated into several languages."
138
  msgstr ""
139
 
140
+ #: inc/php/page.php:119
141
  #, php-format
142
  msgid ""
143
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, "
146
  "update."
147
  msgstr ""
148
 
149
+ #: inc/php/page.php:124
150
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
151
  msgstr ""
152
 
153
+ #: inc/php/page.php:125
154
  msgid ""
155
  "Many of plugin users would be delighted if you share your translation with the community. Thanks "
156
  "for your contribution!"
157
  msgstr ""
158
 
159
+ #: inc/php/page.php:127
160
  msgid "How does it work?"
161
  msgstr ""
162
 
163
+ #: inc/php/page.php:128
164
  msgid ""
165
  "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the "
166
  "\"Save changes\" button. Enjoy the improved SEO of your website. It's that simple!"
167
  msgstr ""
168
 
169
+ #: inc/php/page.php:130
170
  msgid "How much of description I can enter in the text field?"
171
  msgstr ""
172
 
173
+ #: inc/php/page.php:131
174
  msgid ""
175
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the "
176
  "home description."
177
  msgstr ""
178
 
179
+ #: inc/php/page.php:133
180
  msgid "How much of keywords I can enter in the text field?"
181
  msgstr ""
182
 
183
+ #: inc/php/page.php:134
184
  msgid "I don't limit the number of characters."
185
  msgstr ""
186
 
187
+ #: inc/php/page.php:136
188
  msgid "I can't get verify my website. What am I doing wrong?"
189
  msgstr ""
190
 
191
+ #: inc/php/page.php:137
192
  msgid ""
193
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you "
194
  "is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) "
197
  "a few seconds."
198
  msgstr ""
199
 
200
+ #: inc/php/page.php:139
201
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
202
  msgstr ""
203
 
204
+ #: inc/php/page.php:140
205
  msgid ""
206
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field "
207
  "in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate "
208
  "actions, for example:"
209
  msgstr ""
210
 
211
+ #: inc/php/page.php:148
212
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
213
  msgstr ""
214
 
215
+ #: inc/php/page.php:150
216
  msgid "Does this plugin requires any modification of the theme?"
217
  msgstr ""
218
 
219
+ #: inc/php/page.php:151
220
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
221
  msgstr ""
222
 
223
+ #: inc/php/page.php:153
224
  msgid "Does this require any knowledge of HTML or CSS?"
225
  msgstr ""
226
 
227
+ #: inc/php/page.php:154
228
  msgid ""
229
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-"
230
  "use plugin settings page."
231
  msgstr ""
232
 
233
+ #: inc/php/page.php:156
234
  msgid "It's not working. What could be wrong?"
235
  msgstr ""
236
 
237
+ #: inc/php/page.php:157
238
  msgid ""
239
  "As with every plugin, it's possible that things don't work. The most common reason for this is a "
240
  "web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
242
  "browser's cache may solve the problem."
243
  msgstr ""
244
 
245
+ #: inc/php/page.php:158
246
  msgid ""
247
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
248
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
250
  "seen."
251
  msgstr ""
252
 
253
+ #: inc/php/page.php:160
254
  msgid ""
255
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why "
256
  "is this?"
257
  msgstr ""
258
 
259
+ #: inc/php/page.php:161
260
  msgid ""
261
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
262
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
264
  "Also please try to re-login to the website, this too can help."
265
  msgstr ""
266
 
267
+ #: inc/php/page.php:163
268
  msgid "Where to report bug if found?"
269
  msgstr ""
270
 
271
+ #: inc/php/page.php:165
272
  #, php-format
273
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:171
277
  msgid "Where to share any ideas or suggestions to make the plugin better?"
278
  msgstr ""
279
 
280
+ #: inc/php/page.php:173
281
  #, php-format
282
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
283
  msgstr ""
284
 
285
+ #: inc/php/page.php:178
286
  msgid "I love this plugin! Can I help somehow?"
287
  msgstr ""
288
 
289
+ #: inc/php/page.php:180
290
  #, php-format
291
  msgid ""
292
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
293
  "button, and thank you!"
294
  msgstr ""
295
 
296
+ #: inc/php/page.php:186
297
  msgid "My question wasn't answered here."
298
  msgstr ""
299
 
300
+ #: inc/php/page.php:188
301
  #, php-format
302
  msgid ""
303
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin "
304
  "is free, and there is no a special support team, so I have no way to answer everyone."
305
  msgstr ""
306
 
307
+ #: inc/php/page.php:204
308
+ msgid "If you appreciate my work, you can buy me a coffee!"
309
  msgstr ""
310
 
311
+ #: inc/php/page.php:205
 
 
 
 
312
  msgid ""
313
+ "I spend a lot of time and effort trying to make sure that the themes, plugins and another things I "
314
+ "build are useful, and the ultimate proof of that for me is that you actually want to use them. But, "
315
+ "I’m an independent developer, without a regular income, so every little contribution helps cover my "
316
  "costs and lets me spend more time building things for people like you to enjoy."
317
  msgstr ""
318
 
319
+ #: inc/php/page.php:210 inc/php/settings.php:217 inc/php/sidebar.php:34
320
  msgid "Donate with PayPal"
321
  msgstr ""
322
 
323
+ #: inc/php/page.php:212
324
+ msgid "Thank you for your support!"
325
  msgstr ""
326
 
327
+ #: inc/php/settings.php:24
 
 
 
 
 
 
 
 
328
  msgid "Web Master Tools"
329
  msgstr ""
330
 
331
+ #: inc/php/settings.php:26
332
  msgid ""
333
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner "
334
  "of your blog or store before they provide their services to you. You can use the options below to "
335
  "verify your domain. If your domain is already verified, you can just forget about these."
336
  msgstr ""
337
 
338
+ #: inc/php/settings.php:31
339
  msgid ""
340
  "Enter your meta key “content” value from your verification code to verify your website. "
341
  "<br>Example: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
342
  msgstr ""
343
 
344
+ #: inc/php/settings.php:36
345
  msgid ""
346
  "Enter your meta key “content” value from your verification code to verify your website. "
347
  "<br>Example: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
348
  msgstr ""
349
 
350
+ #: inc/php/settings.php:41
351
  msgid ""
352
  "Enter your meta key “content” value from your verification code to verify your website. "
353
  "<br>Example: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
354
  msgstr ""
355
 
356
+ #: inc/php/settings.php:45 inc/php/settings.php:103 inc/php/settings.php:127 inc/php/settings.php:151
357
+ #: inc/php/settings.php:187
358
  msgid "Save changes"
359
  msgstr ""
360
 
361
+ #: inc/php/settings.php:51
362
  msgid "Domain Verification"
363
  msgstr ""
364
 
365
+ #: inc/php/settings.php:53
366
  msgid ""
367
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This "
368
  "makes sure that you are the correct owner of your blog or store before they provide their services "
370
  "you can just forget about these."
371
  msgstr ""
372
 
373
+ #: inc/php/settings.php:58
374
  msgid ""
375
  "Enter your meta key “content” value from your verification code to verify your website. "
376
  "<br>Example: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
377
  msgstr ""
378
 
379
+ #: inc/php/settings.php:63
380
  msgid ""
381
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
382
  "+ArthurGareginyan/"
383
  msgstr ""
384
 
385
+ #: inc/php/settings.php:68
386
  msgid ""
387
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook."
388
  "com/arthur.gareginyan"
389
  msgstr ""
390
 
391
+ #: inc/php/settings.php:73
392
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
393
  msgstr ""
394
 
395
+ #: inc/php/settings.php:78
396
  msgid ""
397
  "Enter your meta key “content” value from your verification code to verify your website. "
398
  "<br>Example: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
399
  msgstr ""
400
 
401
+ #: inc/php/settings.php:83
402
  msgid ""
403
  "Enter your meta key “content” value from your verification code to verify your website. "
404
  "<br>Example: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
405
  msgstr ""
406
 
407
+ #: inc/php/settings.php:88
408
  msgid ""
409
  "Enter your meta key “content” value from your verification code to verify your website. "
410
  "<br>Example: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
411
  msgstr ""
412
 
413
+ #: inc/php/settings.php:93
414
  msgid ""
415
  "Enter your meta key “content” value from your verification code to verify your website. "
416
  "<br>Example: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
417
  msgstr ""
418
 
419
+ #: inc/php/settings.php:96
420
  msgid "Custom Meta Tags"
421
  msgstr ""
422
 
423
+ #: inc/php/settings.php:98
424
  msgid ""
425
  "If you can't find a field to enter your required meta tag then you can add it here. In this field "
426
  "you can add multiple meta tags."
427
  msgstr ""
428
 
429
+ #: inc/php/settings.php:109
430
  msgid "Meta Tags for Static Home Page only"
431
  msgstr ""
432
 
433
+ #: inc/php/settings.php:111
434
  msgid ""
435
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home "
436
  "Page of your website."
437
  msgstr ""
438
 
439
+ #: inc/php/settings.php:114
440
  msgid "Home Description"
441
  msgstr ""
442
 
443
+ #: inc/php/settings.php:116 inc/php/settings.php:140
444
  msgid ""
445
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum "
446
  "of 160 chars for the home description."
447
  msgstr ""
448
 
449
+ #: inc/php/settings.php:120
450
  msgid "Home Keyword(s)"
451
  msgstr ""
452
 
453
+ #: inc/php/settings.php:122
454
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
455
  msgstr ""
456
 
457
+ #: inc/php/settings.php:133
458
  msgid "Meta Tags for Default Home Page and Blog Page only"
459
  msgstr ""
460
 
461
+ #: inc/php/settings.php:135
462
  msgid ""
463
  "You can use the options below to add meta tags such as Description and Keywords only in Default "
464
  "Home Page and Blog Page of your website."
465
  msgstr ""
466
 
467
+ #: inc/php/settings.php:138
468
  msgid "Blog Description"
469
  msgstr ""
470
 
471
+ #: inc/php/settings.php:144
472
  msgid "Blog Keyword(s)"
473
  msgstr ""
474
 
475
+ #: inc/php/settings.php:146
476
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
477
  msgstr ""
478
 
479
+ #: inc/php/settings.php:157
480
  msgid "Meta Tags for all website (Global)"
481
  msgstr ""
482
 
483
+ #: inc/php/settings.php:159
484
  msgid ""
485
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere "
486
  "on your website."
487
  msgstr ""
488
 
489
+ #: inc/php/settings.php:167
490
  msgid "Designer"
491
  msgstr ""
492
 
493
+ #: inc/php/settings.php:172
494
  msgid "Contact"
495
  msgstr ""
496
 
497
+ #: inc/php/settings.php:176
498
  msgid "Copyright"
499
  msgstr ""
500
 
501
+ #: inc/php/settings.php:180
502
  msgid "Keyword(s)"
503
  msgstr ""
504
 
505
+ #: inc/php/settings.php:182
506
  msgid "Enter a comma-delimited list of global keywords for your website."
507
  msgstr ""
508
 
509
+ #: inc/php/settings.php:193
510
  msgid "WooCommerce & Google Shopping"
511
  msgstr ""
512
 
513
+ #: inc/php/settings.php:195
514
  msgid ""
515
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on "
516
  "all WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells "
517
  "for 16 dollars and 80 cents of US."
518
  msgstr ""
519
 
520
+ #: inc/php/settings.php:205
521
  msgid ""
522
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
523
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
524
  msgstr ""
525
 
526
+ #: inc/php/settings.php:212 inc/php/sidebar.php:29
527
+ msgid ""
528
+ "I'm an independent developer, without a regular income, so every little contribution helps cover my "
529
+ "costs and lets me spend more time building things for people like you to enjoy."
530
+ msgstr ""
531
+
532
+ #: inc/php/settings.php:219
533
+ msgid "Thanks for your support!"
534
+ msgstr ""
535
+
536
+ #: inc/php/sidebar.php:20
537
+ msgid "About"
538
+ msgstr ""
539
+
540
+ #: inc/php/sidebar.php:22
541
+ msgid "This plugin allows you to easily add Meta Tags to your website."
542
+ msgstr ""
543
+
544
+ #: inc/php/sidebar.php:40
545
+ msgid "Help"
546
+ msgstr ""
547
+
548
+ #: inc/php/sidebar.php:42
549
+ msgid "If you have a question, please read the information in the FAQ section."
550
+ msgstr ""
551
+
552
  #. Plugin Name of the plugin/theme
553
  msgid "All Meta Tags"
554
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: meta, tag,tags, custom, simple, plugin, twitter, facebook, g+, google, goo
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
- Stable tag: 4.5
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -68,7 +68,7 @@ If you want more options then tell me and I will be happy to add it.
68
  This plugin is ready for translation and has already been translated into several languages.
69
 
70
  * English (default)
71
- * Russian
72
  * Spanish - Mexico (translation by Sergio Yeyo Troncoso)
73
  * Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
74
  * Italian (translation by Stefano Tombolini)
@@ -195,6 +195,16 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
195
 
196
  == Changelog ==
197
 
 
 
 
 
 
 
 
 
 
 
198
  = 4.5 =
199
  * Stylesheet in the admin.css file improved.
200
  * The '!important' declarations in the admin.css file removed.
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.8
7
+ Stable tag: 4.6
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
68
  This plugin is ready for translation and has already been translated into several languages.
69
 
70
  * English (default)
71
+ * Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
72
  * Spanish - Mexico (translation by Sergio Yeyo Troncoso)
73
  * Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
74
  * Italian (translation by Stefano Tombolini)
195
 
196
  == Changelog ==
197
 
198
+ = 4.6 =
199
+ * Russian translation updated. (Thanks to Milena Kiseleva)
200
+ * The navigation of the tabs is rearranged.
201
+ * Fixed an issue due to which the sidebar was not hiding on mobile devices.
202
+ * Code of sidebar moved to separate file 'sidebar.php'.
203
+ * Support page tab moved from external source to plugin code.
204
+ * My avatar moved from external source to plugin folder.
205
+ * Banner moved from external source to plugin folder.
206
+ * Code of PayPal button updated.
207
+
208
  = 4.5 =
209
  * Stylesheet in the admin.css file improved.
210
  * The '!important' declarations in the admin.css file removed.