All Meta Tags - Version 4.3

Version Description

  • To the plugin settings page added information about the plugin version number.
  • The "Tested up to:" comment changed to 4.8 after full testing process.
  • The "version.php" file renamed to "versioning.php".
  • The "versioning.php" file updated to new version.
  • The "plugin_version_number" function renamed to the "versioning".
Download this release

Release Info

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

Code changes from version 4.2 to 4.3

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: http://www.arthurgareginyan.com
8
- * Version: 4.2
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
@@ -79,7 +79,7 @@ allmetatags_define_constants( 'SETTINGS', 'allmetatags' );
79
  */
80
  require_once( ALLMT_PATH . 'inc/php/core.php' );
81
  require_once( ALLMT_PATH . 'inc/php/upgrade.php' );
82
- require_once( ALLMT_PATH . 'inc/php/version.php' );
83
  require_once( ALLMT_PATH . 'inc/php/enqueue.php' );
84
  require_once( ALLMT_PATH . 'inc/php/functional.php' );
85
  require_once( ALLMT_PATH . 'inc/php/page.php' );
5
  * Description: Easily and safely add your custom Meta Tags to WordPress website's header.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
+ * Version: 4.3
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
79
  */
80
  require_once( ALLMT_PATH . 'inc/php/core.php' );
81
  require_once( ALLMT_PATH . 'inc/php/upgrade.php' );
82
+ require_once( ALLMT_PATH . 'inc/php/versioning.php' );
83
  require_once( ALLMT_PATH . 'inc/php/enqueue.php' );
84
  require_once( ALLMT_PATH . 'inc/php/functional.php' );
85
  require_once( ALLMT_PATH . 'inc/php/page.php' );
inc/css/admin.css CHANGED
@@ -5,7 +5,7 @@
5
  * @uthor Arthur Gareginyan
6
  * @link http://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
- * @since 4.0
9
  */
10
 
11
 
@@ -142,6 +142,10 @@ h3.title {
142
  #side-sortables .paypal {
143
  font-size: 18px;
144
  }
 
 
 
 
145
 
146
  /* Support - addition section
147
  -------------------------------------------------------------- */
5
  * @uthor Arthur Gareginyan
6
  * @link http://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
+ * @since 4.3
9
  */
10
 
11
 
142
  #side-sortables .paypal {
143
  font-size: 18px;
144
  }
145
+ #side-sortables .version {
146
+ color: #888888;
147
+ text-align: right;
148
+ }
149
 
150
  /* Support - addition section
151
  -------------------------------------------------------------- */
inc/php/settings.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Render Settings Tab
12
  *
13
- * @since 4.2
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
@@ -21,6 +21,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
21
  <h3 class="title"><?php _e( 'About', ALLMT_TEXT ); ?></h3>
22
  <div class="inside">
23
  <p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', ALLMT_TEXT ); ?></p>
 
24
  </div>
25
  </div>
26
 
10
  /**
11
  * Render Settings Tab
12
  *
13
+ * @since 4.3
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
21
  <h3 class="title"><?php _e( 'About', ALLMT_TEXT ); ?></h3>
22
  <div class="inside">
23
  <p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', ALLMT_TEXT ); ?></p>
24
+ <p class="version"><?php _e( 'Version', ALLMT_TEXT ); ?> <?php echo ALLMT_VERSION; ?></p>
25
  </div>
26
  </div>
27
 
inc/php/version.php DELETED
@@ -1,77 +0,0 @@
1
- <?php
2
-
3
- /**
4
- * Prevent Direct Access
5
- *
6
- * @since 0.1
7
- */
8
- defined( 'ABSPATH' ) or die( "Restricted access!" );
9
-
10
- /**
11
- * Function for managing information about the version number of the plugin
12
- *
13
- * @since 4.2
14
- */
15
- function allmetatags_plugin_version_number() {
16
-
17
- // Set variables:
18
- // - Read the plugin service information from the database and put it into an array
19
- // - Make the "$info" array if the plugin service information in the database is not exist
20
- // - Get the current plugin version number from the database
21
- // - Get the new plugin version number from the global constant
22
- $info = get_option( ALLMT_SETTINGS . '_service_info' );
23
- if ( !is_array( $info ) ) {
24
- $info = array();
25
- }
26
- $current_number = !empty( $info['version'] ) ? $info['version'] : '0';
27
- $new_number = ALLMT_VERSION;
28
-
29
- // Update the "_service_info" data in the database if the version number is not number
30
- if ( !is_numeric($current_number) ) {
31
-
32
- $info['version'] = $new_number;
33
- update_option( ALLMT_SETTINGS . '_service_info', $info );
34
-
35
- }
36
-
37
- // If the version number in the database is same as the new version number:
38
- // - Reset the "old_version" marker in the database
39
- // - Exit from this function
40
- if ( $new_number == $current_number ) {
41
-
42
- if ( $info['old_version'] == '1' ) {
43
-
44
- $info['old_version'] = '0';
45
- update_option( ALLMT_SETTINGS . '_service_info', $info );
46
-
47
- }
48
-
49
- return;
50
- }
51
-
52
- // If the version number in the database is smaller than the new version number:
53
- // - Save the new version number to the database
54
- // - Update the "old_version" marker in the database
55
- // - Exit from this function
56
- if ( $new_number > $current_number ) {
57
-
58
- $info['version'] = $new_number;
59
- $info['old_version'] = '0';
60
- update_option( ALLMT_SETTINGS . '_service_info', $info );
61
-
62
- return;
63
- }
64
-
65
- // If the version number in the database is greater than the new version number:
66
- // - Save the "old_version" marker to the database
67
- // - Exit from this function
68
- if ( $new_number < $current_number ) {
69
-
70
- $info['old_version'] = '1';
71
- update_option( ALLMT_SETTINGS . '_service_info', $info );
72
-
73
- return;
74
- }
75
-
76
- }
77
- allmetatags_plugin_version_number();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
inc/php/versioning.php ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Prevent Direct Access
5
+ *
6
+ * @since 0.1
7
+ */
8
+ defined( 'ABSPATH' ) or die( "Restricted access!" );
9
+
10
+ /**
11
+ * Function for managing information about the version number of the plugin
12
+ *
13
+ * @since 4.3
14
+ */
15
+ function allmetatags_versioning() {
16
+
17
+ ///////////////////////////////////////////////////////////////////
18
+ // SETTING VARIABLES //
19
+ ///////////////////////////////////////////////////////////////////
20
+
21
+ $version_files = ALLMT_VERSION;
22
+ $settings = ALLMT_SETTINGS;
23
+
24
+ // Read the plugin service information from the database and put it into an array
25
+ $info = get_option( $settings . '_service_info' );
26
+
27
+ // Make the "$info" array if the plugin service information in the database is not exist
28
+ if ( ! is_array( $info ) ) $info = array();
29
+
30
+ // Get the current plugin version number from the database
31
+ $version_db = !empty( $info['version'] ) ? $info['version'] : '0';
32
+
33
+ ///////////////////////////////////////////////////////////////////
34
+ // FORMATTING NUMBERS //
35
+ ///////////////////////////////////////////////////////////////////
36
+
37
+ // Clean the version number from extra digits
38
+ $version_db = substr( $version_db, 0, 4 );
39
+ $version_files = substr( $version_files, 0, 4 );
40
+ if ( ! is_numeric( $version_db ) ) {
41
+ $version_db = number_format( floor( $version_db * 100 ) / 100, 1, '.', '' );
42
+ }
43
+ if ( ! is_numeric( $version_files ) ) {
44
+ $version_files = number_format( floor( $version_files * 100 ) / 100, 1, '.', '' );
45
+ }
46
+
47
+ // Count the number of decimal digits in version number
48
+ $version_db_count = strlen( substr( strrchr( $version_db, "."), 1 ) );
49
+ $version_files_count = strlen( substr( strrchr( $version_files, "."), 1 ) );
50
+
51
+ // Fix decimals if the number of decimal digits in version number is 1
52
+ if ( $version_db_count == '1' ) {
53
+ $version_db_formated = ( $version_db - floor( $version_db ) ) / 10;
54
+ $version_db_formated = ( floor( $version_db ) + $version_db_formated );
55
+ $version_db = sprintf( '%0.2f', $version_db_formated );
56
+ }
57
+ if ( $version_files_count == '1' ) {
58
+ $version_files_formated = ( $version_files - floor( $version_files ) ) / 10;
59
+ $version_files_formated = ( floor( $version_files ) + $version_files_formated );
60
+ $version_files = sprintf( '%0.2f', $version_files_formated );
61
+ }
62
+
63
+ ///////////////////////////////////////////////////////////////////
64
+ // COMPARING NUMBERS //
65
+ ///////////////////////////////////////////////////////////////////
66
+
67
+ // If the version number in the database is same as the new version number:
68
+ // - Reset the "old_version" marker in the database
69
+ // - Exit from this function
70
+ if ( $version_files == $version_db ) {
71
+
72
+ if ( $info['old_version'] == '1' ) {
73
+
74
+ $info['old_version'] = '0';
75
+ update_option( $settings . '_service_info', $info );
76
+
77
+ }
78
+
79
+ return;
80
+ }
81
+
82
+ // If the version number in the database is smaller than the new version number:
83
+ // - Save the new version number to the database
84
+ // - Update the "old_version" marker in the database
85
+ // - Exit from this function
86
+ if ( $version_files > $version_db ) {
87
+
88
+ $info['version'] = $version_files;
89
+ $info['old_version'] = '0';
90
+ update_option( $settings . '_service_info', $info );
91
+
92
+ return;
93
+ }
94
+
95
+ // If the version number in the database is greater than the new version number:
96
+ // - Save the "old_version" marker to the database
97
+ // - Exit from this function
98
+ if ( $version_files < $version_db ) {
99
+
100
+ $info['old_version'] = '1';
101
+ update_option( $settings . '_service_info', $info );
102
+
103
+ return;
104
+ }
105
+
106
+ }
107
+ allmetatags_versioning();
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-05-23 08:33+0300\n"
7
- "PO-Revision-Date: 2017-05-23 08:33+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -59,11 +59,11 @@ msgstr "Uso"
59
  msgid "F.A.Q."
60
  msgstr ""
61
 
62
- #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
63
  msgid "Author"
64
  msgstr "Autor"
65
 
66
- #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28 inc/php/settings.php:238
67
  msgid "Support"
68
  msgstr "Soporte"
69
 
@@ -266,7 +266,11 @@ msgstr "Acerca de"
266
  msgid "This plugin allows you to easily add Meta Tags to your website."
267
  msgstr "Este plugin te permite añadir fácilmente Meta Etiquetas personalizadas a tu sitio web."
268
 
269
- #: inc/php/settings.php:30 inc/php/settings.php:240
 
 
 
 
270
  msgid ""
271
  "I'm an independent developer, without a regular income, so every little contribution helps cover my costs "
272
  "and lets me spend more time building things for people like you to enjoy."
@@ -275,27 +279,27 @@ msgstr ""
275
  "sea, me ayuda a cubrir mis gastos y me permite dedicar más tiempo para construir cosas que pueda disfrutar "
276
  "gente como tú."
277
 
278
- #: inc/php/settings.php:31 inc/php/settings.php:241
279
  msgid "Donate with PayPal"
280
  msgstr ""
281
 
282
- #: inc/php/settings.php:32 inc/php/settings.php:242
283
  msgid "Thanks for your support!"
284
  msgstr "¡Gracias por su colaboración!"
285
 
286
- #: inc/php/settings.php:37
287
  msgid "Help"
288
  msgstr "Ayuda"
289
 
290
- #: inc/php/settings.php:39
291
  msgid "Got something to say? Need help?"
292
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
293
 
294
- #: inc/php/settings.php:62
295
  msgid "Web Master Tools"
296
  msgstr "Web Master Tools"
297
 
298
- #: inc/php/settings.php:64
299
  msgid ""
300
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your "
301
  "blog or store before they provide their services to you. You can use the options below to verify your "
@@ -305,7 +309,7 @@ msgstr ""
305
  "antes de que ellos te brinden su servicio. Puedes usar las opciones que aparecen a continuación para "
306
  "verificar tu dominio. Si tu dominio ya está verificado, puedes obviar esto."
307
 
308
- #: inc/php/settings.php:69
309
  msgid ""
310
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
311
  "meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -313,7 +317,7 @@ msgstr ""
313
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
314
  "br>Ejemplo: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
315
 
316
- #: inc/php/settings.php:74
317
  msgid ""
318
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
319
  "meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
@@ -321,7 +325,7 @@ msgstr ""
321
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
322
  "br>Ejemplo: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
323
 
324
- #: inc/php/settings.php:79
325
  msgid ""
326
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
327
  "meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -329,16 +333,16 @@ msgstr ""
329
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
330
  "br>Ejemplo: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
331
 
332
- #: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160 inc/php/settings.php:182
333
- #: inc/php/settings.php:216
334
  msgid "Save Changes"
335
  msgstr "Guardar los cambios"
336
 
337
- #: inc/php/settings.php:87
338
  msgid "Domain Verification"
339
  msgstr "Verificación del domino"
340
 
341
- #: inc/php/settings.php:89
342
  msgid ""
343
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes "
344
  "sure that you are the correct owner of your blog or store before they provide their services to you. You can "
@@ -350,7 +354,7 @@ msgstr ""
350
  "opciones que aparecen a continuación para verificar tu dominio. Si tu dominio ya está verificado, puedes "
351
  "obviar esto."
352
 
353
- #: inc/php/settings.php:94
354
  msgid ""
355
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
356
  "meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
@@ -358,7 +362,7 @@ msgstr ""
358
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
359
  "br>Ejemplo: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
360
 
361
- #: inc/php/settings.php:99
362
  msgid ""
363
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
364
  "+ArthurGareginyan/"
@@ -366,7 +370,7 @@ msgstr ""
366
  "Ingresa la URL completa del perfil de Google+ del editor. <br>Ejemplo: https://plus.google.com/"
367
  "+ArthurGareginyan/"
368
 
369
- #: inc/php/settings.php:104
370
  msgid ""
371
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
372
  "gareginyan"
@@ -374,11 +378,11 @@ msgstr ""
374
  "Ingresa la URL completa del perfil de Facebook del editor. <br>Ejemplo: https://www.facebook.com/arthur."
375
  "gareginyan"
376
 
377
- #: inc/php/settings.php:109
378
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
379
  msgstr "Ingresa el nombre de usuario de Twitter del editor. <br>Ejemplo: @AGareginyan"
380
 
381
- #: inc/php/settings.php:114
382
  msgid ""
383
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
384
  "meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
@@ -386,7 +390,7 @@ msgstr ""
386
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
387
  "br>Ejemplo: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
388
 
389
- #: inc/php/settings.php:119
390
  msgid ""
391
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
392
  "meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -394,7 +398,7 @@ msgstr ""
394
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
395
  "br>Ejemplo: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
396
 
397
- #: inc/php/settings.php:124
398
  msgid ""
399
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
400
  "meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -402,7 +406,7 @@ msgstr ""
402
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
403
  "br>Ejemplo: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
404
 
405
- #: inc/php/settings.php:129
406
  msgid ""
407
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
408
  "meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
@@ -410,11 +414,11 @@ msgstr ""
410
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
411
  "br>Ejemplo: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
412
 
413
- #: inc/php/settings.php:132
414
  msgid "Custom Meta Tags"
415
  msgstr "Meta etiquetas personalizadas"
416
 
417
- #: inc/php/settings.php:134
418
  msgid ""
419
  "If you can't find a field to enter your required meta tag then you can add it here. In this field you can "
420
  "add multiple meta tags."
@@ -422,11 +426,11 @@ msgstr ""
422
  "Si no encuentras un campo para introducir la meta etiqueta que requieres, puedes añadirla aquí. En este "
423
  "campo puedes agregar varias meta etiquetas."
424
 
425
- #: inc/php/settings.php:143
426
  msgid "Meta Tags for Static Home Page only"
427
  msgstr "Meta etiquetas sólo para la página de inicio estática"
428
 
429
- #: inc/php/settings.php:145
430
  msgid ""
431
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of "
432
  "your website."
@@ -434,11 +438,11 @@ msgstr ""
434
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
435
  "sólo en la página de inicio de tu sitio web."
436
 
437
- #: inc/php/settings.php:148
438
  msgid "Home Description"
439
  msgstr "Descripción del sitio"
440
 
441
- #: inc/php/settings.php:150 inc/php/settings.php:172
442
  msgid ""
443
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 "
444
  "chars for the home description."
@@ -446,21 +450,21 @@ msgstr ""
446
  "Ingresa una breve descripción de tu sitio web (Entre 150 y 250 caracteres). La mayoría de los motores de "
447
  "búsqueda usa un máximo de 160 caracteres para esta descripción."
448
 
449
- #: inc/php/settings.php:154
450
  msgid "Home Keyword(s)"
451
  msgstr "Palabra(s) clave de la página de inicio"
452
 
453
- #: inc/php/settings.php:156
454
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
455
  msgstr ""
456
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página estática de inicio "
457
  "de tu sitio web."
458
 
459
- #: inc/php/settings.php:165
460
  msgid "Meta Tags for Default Home Page and Blog Page only"
461
  msgstr "Meta etiquetas sólo para la página de inicio y la del blog"
462
 
463
- #: inc/php/settings.php:167
464
  msgid ""
465
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page "
466
  "and Blog Page of your website."
@@ -468,25 +472,25 @@ msgstr ""
468
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
469
  "en la página de inicio y en la del blog de tu sitio web."
470
 
471
- #: inc/php/settings.php:170
472
  msgid "Blog Description"
473
  msgstr "Descripción del blog"
474
 
475
- #: inc/php/settings.php:176
476
  msgid "Blog Keyword(s)"
477
  msgstr "Palabra(s) clave del blog"
478
 
479
- #: inc/php/settings.php:178
480
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
481
  msgstr ""
482
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio "
483
  "web."
484
 
485
- #: inc/php/settings.php:187
486
  msgid "Meta Tags for all website (Global)"
487
  msgstr "Meta etiquetas para todo el sitio web (Globales)"
488
 
489
- #: inc/php/settings.php:189
490
  msgid ""
491
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
492
  "website."
@@ -494,31 +498,31 @@ msgstr ""
494
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Autor, Derechos Reservados y "
495
  "Palabras Clave en cualquier parte de tu sitio web."
496
 
497
- #: inc/php/settings.php:197
498
  msgid "Designer"
499
  msgstr "Diseñador"
500
 
501
- #: inc/php/settings.php:202
502
  msgid "Contact"
503
  msgstr "Contacto"
504
 
505
- #: inc/php/settings.php:206
506
  msgid "Copyright"
507
  msgstr "Derechos reservados"
508
 
509
- #: inc/php/settings.php:210
510
  msgid "Keyword(s)"
511
  msgstr "Palabra(s) clave"
512
 
513
- #: inc/php/settings.php:212
514
  msgid "Enter a comma-delimited list of global keywords for your website."
515
  msgstr "Ingresa un listado, separado por comas, de las palabras clave globales para tu sitio web."
516
 
517
- #: inc/php/settings.php:221
518
  msgid "WooCommerce & Google Shopping"
519
  msgstr "WooCommerce y Google Shopping"
520
 
521
- #: inc/php/settings.php:223
522
  msgid ""
523
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
524
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars "
@@ -528,7 +532,7 @@ msgstr ""
528
  "páginas de producto de tu sitio web. Aquí esta el código para una blusa de mujer que cuesta 16 dólares con "
529
  "80 centavos norteamericanos."
530
 
531
- #: inc/php/settings.php:233
532
  msgid ""
533
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
534
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-06-04 13:30+0300\n"
7
+ "PO-Revision-Date: 2017-06-04 13:30+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
59
  msgid "F.A.Q."
60
  msgstr ""
61
 
62
+ #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:188
63
  msgid "Author"
64
  msgstr "Autor"
65
 
66
+ #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:29 inc/php/settings.php:234
67
  msgid "Support"
68
  msgstr "Soporte"
69
 
266
  msgid "This plugin allows you to easily add Meta Tags to your website."
267
  msgstr "Este plugin te permite añadir fácilmente Meta Etiquetas personalizadas a tu sitio web."
268
 
269
+ #: inc/php/settings.php:24
270
+ msgid "Version"
271
+ msgstr ""
272
+
273
+ #: inc/php/settings.php:31 inc/php/settings.php:236
274
  msgid ""
275
  "I'm an independent developer, without a regular income, so every little contribution helps cover my costs "
276
  "and lets me spend more time building things for people like you to enjoy."
279
  "sea, me ayuda a cubrir mis gastos y me permite dedicar más tiempo para construir cosas que pueda disfrutar "
280
  "gente como tú."
281
 
282
+ #: inc/php/settings.php:32 inc/php/settings.php:237
283
  msgid "Donate with PayPal"
284
  msgstr ""
285
 
286
+ #: inc/php/settings.php:33 inc/php/settings.php:238
287
  msgid "Thanks for your support!"
288
  msgstr "¡Gracias por su colaboración!"
289
 
290
+ #: inc/php/settings.php:38
291
  msgid "Help"
292
  msgstr "Ayuda"
293
 
294
+ #: inc/php/settings.php:40
295
  msgid "Got something to say? Need help?"
296
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
297
 
298
+ #: inc/php/settings.php:58
299
  msgid "Web Master Tools"
300
  msgstr "Web Master Tools"
301
 
302
+ #: inc/php/settings.php:60
303
  msgid ""
304
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your "
305
  "blog or store before they provide their services to you. You can use the options below to verify your "
309
  "antes de que ellos te brinden su servicio. Puedes usar las opciones que aparecen a continuación para "
310
  "verificar tu dominio. Si tu dominio ya está verificado, puedes obviar esto."
311
 
312
+ #: inc/php/settings.php:65
313
  msgid ""
314
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
315
  "meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
317
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
318
  "br>Ejemplo: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
319
 
320
+ #: inc/php/settings.php:70
321
  msgid ""
322
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
323
  "meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
325
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
326
  "br>Ejemplo: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
327
 
328
+ #: inc/php/settings.php:75
329
  msgid ""
330
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
331
  "meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
333
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
334
  "br>Ejemplo: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
335
 
336
+ #: inc/php/settings.php:78 inc/php/settings.php:134 inc/php/settings.php:156 inc/php/settings.php:178
337
+ #: inc/php/settings.php:212
338
  msgid "Save Changes"
339
  msgstr "Guardar los cambios"
340
 
341
+ #: inc/php/settings.php:83
342
  msgid "Domain Verification"
343
  msgstr "Verificación del domino"
344
 
345
+ #: inc/php/settings.php:85
346
  msgid ""
347
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes "
348
  "sure that you are the correct owner of your blog or store before they provide their services to you. You can "
354
  "opciones que aparecen a continuación para verificar tu dominio. Si tu dominio ya está verificado, puedes "
355
  "obviar esto."
356
 
357
+ #: inc/php/settings.php:90
358
  msgid ""
359
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
360
  "meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
362
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
363
  "br>Ejemplo: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
364
 
365
+ #: inc/php/settings.php:95
366
  msgid ""
367
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
368
  "+ArthurGareginyan/"
370
  "Ingresa la URL completa del perfil de Google+ del editor. <br>Ejemplo: https://plus.google.com/"
371
  "+ArthurGareginyan/"
372
 
373
+ #: inc/php/settings.php:100
374
  msgid ""
375
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
376
  "gareginyan"
378
  "Ingresa la URL completa del perfil de Facebook del editor. <br>Ejemplo: https://www.facebook.com/arthur."
379
  "gareginyan"
380
 
381
+ #: inc/php/settings.php:105
382
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
383
  msgstr "Ingresa el nombre de usuario de Twitter del editor. <br>Ejemplo: @AGareginyan"
384
 
385
+ #: inc/php/settings.php:110
386
  msgid ""
387
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
388
  "meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
390
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
391
  "br>Ejemplo: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
392
 
393
+ #: inc/php/settings.php:115
394
  msgid ""
395
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
396
  "meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
398
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
399
  "br>Ejemplo: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
400
 
401
+ #: inc/php/settings.php:120
402
  msgid ""
403
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
404
  "meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
406
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
407
  "br>Ejemplo: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
408
 
409
+ #: inc/php/settings.php:125
410
  msgid ""
411
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
412
  "meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
414
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
415
  "br>Ejemplo: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
416
 
417
+ #: inc/php/settings.php:128
418
  msgid "Custom Meta Tags"
419
  msgstr "Meta etiquetas personalizadas"
420
 
421
+ #: inc/php/settings.php:130
422
  msgid ""
423
  "If you can't find a field to enter your required meta tag then you can add it here. In this field you can "
424
  "add multiple meta tags."
426
  "Si no encuentras un campo para introducir la meta etiqueta que requieres, puedes añadirla aquí. En este "
427
  "campo puedes agregar varias meta etiquetas."
428
 
429
+ #: inc/php/settings.php:139
430
  msgid "Meta Tags for Static Home Page only"
431
  msgstr "Meta etiquetas sólo para la página de inicio estática"
432
 
433
+ #: inc/php/settings.php:141
434
  msgid ""
435
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of "
436
  "your website."
438
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
439
  "sólo en la página de inicio de tu sitio web."
440
 
441
+ #: inc/php/settings.php:144
442
  msgid "Home Description"
443
  msgstr "Descripción del sitio"
444
 
445
+ #: inc/php/settings.php:146 inc/php/settings.php:168
446
  msgid ""
447
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 "
448
  "chars for the home description."
450
  "Ingresa una breve descripción de tu sitio web (Entre 150 y 250 caracteres). La mayoría de los motores de "
451
  "búsqueda usa un máximo de 160 caracteres para esta descripción."
452
 
453
+ #: inc/php/settings.php:150
454
  msgid "Home Keyword(s)"
455
  msgstr "Palabra(s) clave de la página de inicio"
456
 
457
+ #: inc/php/settings.php:152
458
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
459
  msgstr ""
460
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página estática de inicio "
461
  "de tu sitio web."
462
 
463
+ #: inc/php/settings.php:161
464
  msgid "Meta Tags for Default Home Page and Blog Page only"
465
  msgstr "Meta etiquetas sólo para la página de inicio y la del blog"
466
 
467
+ #: inc/php/settings.php:163
468
  msgid ""
469
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page "
470
  "and Blog Page of your website."
472
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
473
  "en la página de inicio y en la del blog de tu sitio web."
474
 
475
+ #: inc/php/settings.php:166
476
  msgid "Blog Description"
477
  msgstr "Descripción del blog"
478
 
479
+ #: inc/php/settings.php:172
480
  msgid "Blog Keyword(s)"
481
  msgstr "Palabra(s) clave del blog"
482
 
483
+ #: inc/php/settings.php:174
484
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
485
  msgstr ""
486
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio "
487
  "web."
488
 
489
+ #: inc/php/settings.php:183
490
  msgid "Meta Tags for all website (Global)"
491
  msgstr "Meta etiquetas para todo el sitio web (Globales)"
492
 
493
+ #: inc/php/settings.php:185
494
  msgid ""
495
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
496
  "website."
498
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Autor, Derechos Reservados y "
499
  "Palabras Clave en cualquier parte de tu sitio web."
500
 
501
+ #: inc/php/settings.php:193
502
  msgid "Designer"
503
  msgstr "Diseñador"
504
 
505
+ #: inc/php/settings.php:198
506
  msgid "Contact"
507
  msgstr "Contacto"
508
 
509
+ #: inc/php/settings.php:202
510
  msgid "Copyright"
511
  msgstr "Derechos reservados"
512
 
513
+ #: inc/php/settings.php:206
514
  msgid "Keyword(s)"
515
  msgstr "Palabra(s) clave"
516
 
517
+ #: inc/php/settings.php:208
518
  msgid "Enter a comma-delimited list of global keywords for your website."
519
  msgstr "Ingresa un listado, separado por comas, de las palabras clave globales para tu sitio web."
520
 
521
+ #: inc/php/settings.php:217
522
  msgid "WooCommerce & Google Shopping"
523
  msgstr "WooCommerce y Google Shopping"
524
 
525
+ #: inc/php/settings.php:219
526
  msgid ""
527
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
528
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars "
532
  "páginas de producto de tu sitio web. Aquí esta el código para una blusa de mujer que cuesta 16 dólares con "
533
  "80 centavos norteamericanos."
534
 
535
+ #: inc/php/settings.php:229
536
  msgid ""
537
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
538
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
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-05-23 08:33+0300\n"
6
- "PO-Revision-Date: 2017-05-23 08:33+0300\n"
7
  "Last-Translator: Sergio <srg2010@yahoo.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_MX\n"
@@ -62,12 +62,12 @@ msgstr "Uso"
62
  msgid "F.A.Q."
63
  msgstr ""
64
 
65
- #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
66
  msgid "Author"
67
  msgstr "Autor"
68
 
69
- #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28
70
- #: inc/php/settings.php:238
71
  msgid "Support"
72
  msgstr "Soporte"
73
 
@@ -288,7 +288,11 @@ msgstr "Acerca"
288
  msgid "This plugin allows you to easily add Meta Tags to your website."
289
  msgstr "Este plugin te permite agregar fácilmente Meta Tags a tu sitio web."
290
 
291
- #: inc/php/settings.php:30 inc/php/settings.php:240
 
 
 
 
292
  msgid ""
293
  "I'm an independent developer, without a regular income, so every little "
294
  "contribution helps cover my costs and lets me spend more time building "
@@ -297,27 +301,27 @@ msgstr ""
297
  "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este "
298
  "plugin aún mejor y tenerlo actualizado."
299
 
300
- #: inc/php/settings.php:31 inc/php/settings.php:241
301
  msgid "Donate with PayPal"
302
  msgstr ""
303
 
304
- #: inc/php/settings.php:32 inc/php/settings.php:242
305
  msgid "Thanks for your support!"
306
  msgstr "Gracias por su apoyo!"
307
 
308
- #: inc/php/settings.php:37
309
  msgid "Help"
310
  msgstr "Ayuda"
311
 
312
- #: inc/php/settings.php:39
313
  msgid "Got something to say? Need help?"
314
  msgstr "Tiene algo que decir? Necesitas ayuda?"
315
 
316
- #: inc/php/settings.php:62
317
  msgid "Web Master Tools"
318
  msgstr "Herramientas para Web Master"
319
 
320
- #: inc/php/settings.php:64
321
  msgid ""
322
  "Webmaster Tools require you to verify your domain. This makes sure that you "
323
  "are the correct owner of your blog or store before they provide their "
@@ -330,37 +334,37 @@ msgstr ""
330
  "comprobar su dominio. Si su dominio ya está verificado, puede olvidarse de "
331
  "ellas."
332
 
333
- #: inc/php/settings.php:69
334
  msgid ""
335
  "Enter your meta key “content” value from your verification code to verify "
336
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
337
  "content=“<b>1234567890</b>” /&gt;"
338
  msgstr ""
339
 
340
- #: inc/php/settings.php:74
341
  msgid ""
342
  "Enter your meta key “content” value from your verification code to verify "
343
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
344
  "content=“<b>1234567890</b>” /&gt;"
345
  msgstr ""
346
 
347
- #: inc/php/settings.php:79
348
  msgid ""
349
  "Enter your meta key “content” value from your verification code to verify "
350
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
351
  "content=“<b>1234567890</b>” /&gt;"
352
  msgstr ""
353
 
354
- #: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160
355
- #: inc/php/settings.php:182 inc/php/settings.php:216
356
  msgid "Save Changes"
357
  msgstr "Guardar Cambios"
358
 
359
- #: inc/php/settings.php:87
360
  msgid "Domain Verification"
361
  msgstr "Verificar Dominio"
362
 
363
- #: inc/php/settings.php:89
364
  msgid ""
365
  "Third-party services like Alexa, Pinterest and Google-Plus require you to "
366
  "verify your domain. This makes sure that you are the correct owner of your "
@@ -374,72 +378,72 @@ msgstr ""
374
  "Puede utilizar las opciones de abajo para comprobar su dominio. Si su "
375
  "dominio ya está verificado, puede olvidarse de ellas."
376
 
377
- #: inc/php/settings.php:94
378
  msgid ""
379
  "Enter your meta key “content” value from your verification code to verify "
380
  "your website. <br>Example: &lt;meta name=\"p:domain_verify\" "
381
  "content=“<b>1234567890</b>” /&gt;"
382
  msgstr ""
383
 
384
- #: inc/php/settings.php:99
385
  msgid ""
386
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
387
  "https://plus.google.com/+ArthurGareginyan/"
388
  msgstr ""
389
 
390
- #: inc/php/settings.php:104
391
  msgid ""
392
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
393
  "https://www.facebook.com/arthur.gareginyan"
394
  msgstr ""
395
 
396
- #: inc/php/settings.php:109
397
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
398
  msgstr ""
399
 
400
- #: inc/php/settings.php:114
401
  msgid ""
402
  "Enter your meta key “content” value from your verification code to verify "
403
  "your website. <br>Example: &lt;meta name=\"alexaVerifyID\" "
404
  "content=“<b>1234567890</b>” /&gt;"
405
  msgstr ""
406
 
407
- #: inc/php/settings.php:119
408
  msgid ""
409
  "Enter your meta key “content” value from your verification code to verify "
410
  "your website. <br>Example: &lt;meta name=\"norton-safeweb-site-verification"
411
  "\" content=“<b>1234567890</b>” /&gt;"
412
  msgstr ""
413
 
414
- #: inc/php/settings.php:124
415
  msgid ""
416
  "Enter your meta key “content” value from your verification code to verify "
417
  "your website. <br>Example: &lt;meta name=\"wot-verification\" "
418
  "content=“<b>1234567890</b>” /&gt;"
419
  msgstr ""
420
 
421
- #: inc/php/settings.php:129
422
  msgid ""
423
  "Enter your meta key “content” value from your verification code to verify "
424
  "your website. <br>Example: &lt;meta name=\"specificfeeds-verification-code\" "
425
  "content=“<b>1234567890</b>” /&gt;"
426
  msgstr ""
427
 
428
- #: inc/php/settings.php:132
429
  msgid "Custom Meta Tags"
430
  msgstr ""
431
 
432
- #: inc/php/settings.php:134
433
  msgid ""
434
  "If you can't find a field to enter your required meta tag then you can add "
435
  "it here. In this field you can add multiple meta tags."
436
  msgstr ""
437
 
438
- #: inc/php/settings.php:143
439
  msgid "Meta Tags for Static Home Page only"
440
  msgstr "Meta Tags solo para Paginas de Inicio estática"
441
 
442
- #: inc/php/settings.php:145
443
  msgid ""
444
  "You can use the options below to add meta tags such as Description and "
445
  "Keywords only in Static Home Page of your website."
@@ -447,31 +451,31 @@ msgstr ""
447
  "Puede usar las opciones abajo para agregar meta tags, como Descripción y "
448
  "palabras claves solo en Paginas de Inicio estática en su sitio web."
449
 
450
- #: inc/php/settings.php:148
451
  msgid "Home Description"
452
  msgstr ""
453
 
454
- #: inc/php/settings.php:150 inc/php/settings.php:172
455
  msgid ""
456
  "Enter a short description of your website (150-250 characters). Most search "
457
  "engines use a maximum of 160 chars for the home description."
458
  msgstr ""
459
 
460
- #: inc/php/settings.php:154
461
  msgid "Home Keyword(s)"
462
  msgstr ""
463
 
464
- #: inc/php/settings.php:156
465
  msgid ""
466
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
467
  "website."
468
  msgstr ""
469
 
470
- #: inc/php/settings.php:165
471
  msgid "Meta Tags for Default Home Page and Blog Page only"
472
  msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
473
 
474
- #: inc/php/settings.php:167
475
  msgid ""
476
  "You can use the options below to add meta tags such as Description and "
477
  "Keywords only in Default Home Page and Blog Page of your website."
@@ -480,24 +484,24 @@ msgstr ""
480
  "descripción y palabras claves sólo en página principal predeterminada y Blog "
481
  "página de su sitio web."
482
 
483
- #: inc/php/settings.php:170
484
  msgid "Blog Description"
485
  msgstr ""
486
 
487
- #: inc/php/settings.php:176
488
  msgid "Blog Keyword(s)"
489
  msgstr ""
490
 
491
- #: inc/php/settings.php:178
492
  msgid ""
493
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
494
  msgstr ""
495
 
496
- #: inc/php/settings.php:187
497
  msgid "Meta Tags for all website (Global)"
498
  msgstr "Meta Tags para todo el sitio web (Global)"
499
 
500
- #: inc/php/settings.php:189
501
  msgid ""
502
  "You can use the options below to add meta tags such as Author, Copyright and "
503
  "Keywords in everywhere on your website."
@@ -505,31 +509,31 @@ msgstr ""
505
  "Puede usar las opciones abajo para agregar meta tags como Autor, Derecho "
506
  "autor, palabras clavs en cualquier sitio de su pagina web."
507
 
508
- #: inc/php/settings.php:197
509
  msgid "Designer"
510
  msgstr ""
511
 
512
- #: inc/php/settings.php:202
513
  msgid "Contact"
514
  msgstr ""
515
 
516
- #: inc/php/settings.php:206
517
  msgid "Copyright"
518
  msgstr ""
519
 
520
- #: inc/php/settings.php:210
521
  msgid "Keyword(s)"
522
  msgstr ""
523
 
524
- #: inc/php/settings.php:212
525
  msgid "Enter a comma-delimited list of global keywords for your website."
526
  msgstr ""
527
 
528
- #: inc/php/settings.php:221
529
  msgid "WooCommerce & Google Shopping"
530
  msgstr ""
531
 
532
- #: inc/php/settings.php:223
533
  msgid ""
534
  "This plugin automatically adds the necessary Google Shopping (Merchant "
535
  "Center) structured data on all WooCommerce product pages on your website. "
@@ -537,7 +541,7 @@ msgid ""
537
  "cents of US."
538
  msgstr ""
539
 
540
- #: inc/php/settings.php:233
541
  msgid ""
542
  "Check these data generated on the pages of your website you can <a href="
543
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-04 13:30+0300\n"
6
+ "PO-Revision-Date: 2017-06-04 13:30+0300\n"
7
  "Last-Translator: Sergio <srg2010@yahoo.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_MX\n"
62
  msgid "F.A.Q."
63
  msgstr ""
64
 
65
+ #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:188
66
  msgid "Author"
67
  msgstr "Autor"
68
 
69
+ #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:29
70
+ #: inc/php/settings.php:234
71
  msgid "Support"
72
  msgstr "Soporte"
73
 
288
  msgid "This plugin allows you to easily add Meta Tags to your website."
289
  msgstr "Este plugin te permite agregar fácilmente Meta Tags a tu sitio web."
290
 
291
+ #: inc/php/settings.php:24
292
+ msgid "Version"
293
+ msgstr ""
294
+
295
+ #: inc/php/settings.php:31 inc/php/settings.php:236
296
  msgid ""
297
  "I'm an independent developer, without a regular income, so every little "
298
  "contribution helps cover my costs and lets me spend more time building "
301
  "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este "
302
  "plugin aún mejor y tenerlo actualizado."
303
 
304
+ #: inc/php/settings.php:32 inc/php/settings.php:237
305
  msgid "Donate with PayPal"
306
  msgstr ""
307
 
308
+ #: inc/php/settings.php:33 inc/php/settings.php:238
309
  msgid "Thanks for your support!"
310
  msgstr "Gracias por su apoyo!"
311
 
312
+ #: inc/php/settings.php:38
313
  msgid "Help"
314
  msgstr "Ayuda"
315
 
316
+ #: inc/php/settings.php:40
317
  msgid "Got something to say? Need help?"
318
  msgstr "Tiene algo que decir? Necesitas ayuda?"
319
 
320
+ #: inc/php/settings.php:58
321
  msgid "Web Master Tools"
322
  msgstr "Herramientas para Web Master"
323
 
324
+ #: inc/php/settings.php:60
325
  msgid ""
326
  "Webmaster Tools require you to verify your domain. This makes sure that you "
327
  "are the correct owner of your blog or store before they provide their "
334
  "comprobar su dominio. Si su dominio ya está verificado, puede olvidarse de "
335
  "ellas."
336
 
337
+ #: inc/php/settings.php:65
338
  msgid ""
339
  "Enter your meta key “content” value from your verification code to verify "
340
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
341
  "content=“<b>1234567890</b>” /&gt;"
342
  msgstr ""
343
 
344
+ #: inc/php/settings.php:70
345
  msgid ""
346
  "Enter your meta key “content” value from your verification code to verify "
347
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
348
  "content=“<b>1234567890</b>” /&gt;"
349
  msgstr ""
350
 
351
+ #: inc/php/settings.php:75
352
  msgid ""
353
  "Enter your meta key “content” value from your verification code to verify "
354
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
355
  "content=“<b>1234567890</b>” /&gt;"
356
  msgstr ""
357
 
358
+ #: inc/php/settings.php:78 inc/php/settings.php:134 inc/php/settings.php:156
359
+ #: inc/php/settings.php:178 inc/php/settings.php:212
360
  msgid "Save Changes"
361
  msgstr "Guardar Cambios"
362
 
363
+ #: inc/php/settings.php:83
364
  msgid "Domain Verification"
365
  msgstr "Verificar Dominio"
366
 
367
+ #: inc/php/settings.php:85
368
  msgid ""
369
  "Third-party services like Alexa, Pinterest and Google-Plus require you to "
370
  "verify your domain. This makes sure that you are the correct owner of your "
378
  "Puede utilizar las opciones de abajo para comprobar su dominio. Si su "
379
  "dominio ya está verificado, puede olvidarse de ellas."
380
 
381
+ #: inc/php/settings.php:90
382
  msgid ""
383
  "Enter your meta key “content” value from your verification code to verify "
384
  "your website. <br>Example: &lt;meta name=\"p:domain_verify\" "
385
  "content=“<b>1234567890</b>” /&gt;"
386
  msgstr ""
387
 
388
+ #: inc/php/settings.php:95
389
  msgid ""
390
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
391
  "https://plus.google.com/+ArthurGareginyan/"
392
  msgstr ""
393
 
394
+ #: inc/php/settings.php:100
395
  msgid ""
396
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
397
  "https://www.facebook.com/arthur.gareginyan"
398
  msgstr ""
399
 
400
+ #: inc/php/settings.php:105
401
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
402
  msgstr ""
403
 
404
+ #: inc/php/settings.php:110
405
  msgid ""
406
  "Enter your meta key “content” value from your verification code to verify "
407
  "your website. <br>Example: &lt;meta name=\"alexaVerifyID\" "
408
  "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 "
414
  "your website. <br>Example: &lt;meta name=\"norton-safeweb-site-verification"
415
  "\" content=“<b>1234567890</b>” /&gt;"
416
  msgstr ""
417
 
418
+ #: inc/php/settings.php:120
419
  msgid ""
420
  "Enter your meta key “content” value from your verification code to verify "
421
  "your website. <br>Example: &lt;meta name=\"wot-verification\" "
422
  "content=“<b>1234567890</b>” /&gt;"
423
  msgstr ""
424
 
425
+ #: inc/php/settings.php:125
426
  msgid ""
427
  "Enter your meta key “content” value from your verification code to verify "
428
  "your website. <br>Example: &lt;meta name=\"specificfeeds-verification-code\" "
429
  "content=“<b>1234567890</b>” /&gt;"
430
  msgstr ""
431
 
432
+ #: inc/php/settings.php:128
433
  msgid "Custom Meta Tags"
434
  msgstr ""
435
 
436
+ #: inc/php/settings.php:130
437
  msgid ""
438
  "If you can't find a field to enter your required meta tag then you can add "
439
  "it here. In this field you can add multiple meta tags."
440
  msgstr ""
441
 
442
+ #: inc/php/settings.php:139
443
  msgid "Meta Tags for Static Home Page only"
444
  msgstr "Meta Tags solo para Paginas de Inicio estática"
445
 
446
+ #: inc/php/settings.php:141
447
  msgid ""
448
  "You can use the options below to add meta tags such as Description and "
449
  "Keywords only in Static Home Page of your website."
451
  "Puede usar las opciones abajo para agregar meta tags, como Descripción y "
452
  "palabras claves solo en Paginas de Inicio estática en su sitio web."
453
 
454
+ #: inc/php/settings.php:144
455
  msgid "Home Description"
456
  msgstr ""
457
 
458
+ #: inc/php/settings.php:146 inc/php/settings.php:168
459
  msgid ""
460
  "Enter a short description of your website (150-250 characters). Most search "
461
  "engines use a maximum of 160 chars for the home description."
462
  msgstr ""
463
 
464
+ #: inc/php/settings.php:150
465
  msgid "Home Keyword(s)"
466
  msgstr ""
467
 
468
+ #: inc/php/settings.php:152
469
  msgid ""
470
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
471
  "website."
472
  msgstr ""
473
 
474
+ #: inc/php/settings.php:161
475
  msgid "Meta Tags for Default Home Page and Blog Page only"
476
  msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
477
 
478
+ #: inc/php/settings.php:163
479
  msgid ""
480
  "You can use the options below to add meta tags such as Description and "
481
  "Keywords only in Default Home Page and Blog Page of your website."
484
  "descripción y palabras claves sólo en página principal predeterminada y Blog "
485
  "página de su sitio web."
486
 
487
+ #: inc/php/settings.php:166
488
  msgid "Blog Description"
489
  msgstr ""
490
 
491
+ #: inc/php/settings.php:172
492
  msgid "Blog Keyword(s)"
493
  msgstr ""
494
 
495
+ #: inc/php/settings.php:174
496
  msgid ""
497
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
498
  msgstr ""
499
 
500
+ #: inc/php/settings.php:183
501
  msgid "Meta Tags for all website (Global)"
502
  msgstr "Meta Tags para todo el sitio web (Global)"
503
 
504
+ #: inc/php/settings.php:185
505
  msgid ""
506
  "You can use the options below to add meta tags such as Author, Copyright and "
507
  "Keywords in everywhere on your website."
509
  "Puede usar las opciones abajo para agregar meta tags como Autor, Derecho "
510
  "autor, palabras clavs en cualquier sitio de su pagina web."
511
 
512
+ #: inc/php/settings.php:193
513
  msgid "Designer"
514
  msgstr ""
515
 
516
+ #: inc/php/settings.php:198
517
  msgid "Contact"
518
  msgstr ""
519
 
520
+ #: inc/php/settings.php:202
521
  msgid "Copyright"
522
  msgstr ""
523
 
524
+ #: inc/php/settings.php:206
525
  msgid "Keyword(s)"
526
  msgstr ""
527
 
528
+ #: inc/php/settings.php:208
529
  msgid "Enter a comma-delimited list of global keywords for your website."
530
  msgstr ""
531
 
532
+ #: inc/php/settings.php:217
533
  msgid "WooCommerce & Google Shopping"
534
  msgstr ""
535
 
536
+ #: inc/php/settings.php:219
537
  msgid ""
538
  "This plugin automatically adds the necessary Google Shopping (Merchant "
539
  "Center) structured data on all WooCommerce product pages on your website. "
541
  "cents of US."
542
  msgstr ""
543
 
544
+ #: inc/php/settings.php:229
545
  msgid ""
546
  "Check these data generated on the pages of your website you can <a href="
547
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
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-05-23 08:33+0300\n"
7
- "PO-Revision-Date: 2017-05-23 08:33+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: it\n"
@@ -59,11 +59,11 @@ msgstr ""
59
  msgid "F.A.Q."
60
  msgstr ""
61
 
62
- #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
63
  msgid "Author"
64
  msgstr "Autore"
65
 
66
- #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28 inc/php/settings.php:238
67
  msgid "Support"
68
  msgstr ""
69
 
@@ -263,7 +263,11 @@ msgstr "Informazioni"
263
  msgid "This plugin allows you to easily add Meta Tags to your website."
264
  msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
265
 
266
- #: inc/php/settings.php:30 inc/php/settings.php:240
 
 
 
 
267
  msgid ""
268
  "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and "
269
  "lets me spend more time building things for people like you to enjoy."
@@ -272,27 +276,27 @@ msgstr ""
272
  "miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li "
273
  "apprezzano."
274
 
275
- #: inc/php/settings.php:31 inc/php/settings.php:241
276
  msgid "Donate with PayPal"
277
  msgstr ""
278
 
279
- #: inc/php/settings.php:32 inc/php/settings.php:242
280
  msgid "Thanks for your support!"
281
  msgstr "Grazie per il tuo supporto!"
282
 
283
- #: inc/php/settings.php:37
284
  msgid "Help"
285
  msgstr "Aiuto"
286
 
287
- #: inc/php/settings.php:39
288
  msgid "Got something to say? Need help?"
289
  msgstr "Hai qualcosa da dirmi? Hai bisogno di aiuto?"
290
 
291
- #: inc/php/settings.php:62
292
  msgid "Web Master Tools"
293
  msgstr "Webmaster Tools"
294
 
295
- #: inc/php/settings.php:64
296
  msgid ""
297
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog "
298
  "or store before they provide their services to you. You can use the options below to verify your domain. If your "
@@ -302,7 +306,7 @@ msgstr ""
302
  "blog o negozio prima che ti forniscano i loro servizi. Puoi usare le opzioni qui sotto per verificare il tuo "
303
  "dominio. Se il tuo dominio è già verificato, puoi semplicemente ignorarle."
304
 
305
- #: inc/php/settings.php:69
306
  msgid ""
307
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
308
  "name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -310,7 +314,7 @@ msgstr ""
310
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
311
  "verifica.<br>Esempio: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
312
 
313
- #: inc/php/settings.php:74
314
  msgid ""
315
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
316
  "name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
@@ -318,7 +322,7 @@ msgstr ""
318
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
319
  "verifica.<br>Esempio: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
320
 
321
- #: inc/php/settings.php:79
322
  msgid ""
323
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
324
  "name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -326,16 +330,16 @@ msgstr ""
326
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
327
  "verifica.<br>Esempio: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
328
 
329
- #: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160 inc/php/settings.php:182
330
- #: inc/php/settings.php:216
331
  msgid "Save Changes"
332
  msgstr "Salva modifiche"
333
 
334
- #: inc/php/settings.php:87
335
  msgid "Domain Verification"
336
  msgstr "Verifica dominio"
337
 
338
- #: inc/php/settings.php:89
339
  msgid ""
340
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure "
341
  "that you are the correct owner of your blog or store before they provide their services to you. You can use the "
@@ -346,7 +350,7 @@ msgstr ""
346
  "opzioni qui sotto per verificare il tuo dominio. Se il tuo dominio è già verificato, puoi semplicemente "
347
  "ignorarle."
348
 
349
- #: inc/php/settings.php:94
350
  msgid ""
351
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
352
  "name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
@@ -354,23 +358,23 @@ msgstr ""
354
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
355
  "verifica.<br>Esempio: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
356
 
357
- #: inc/php/settings.php:99
358
  msgid ""
359
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
360
  "+ArthurGareginyan/"
361
  msgstr "Inserisci un URL assoluto al tuo profilo Google+. <br>Esempio: https://plus.google.com/+ArthurGareginyan/"
362
 
363
- #: inc/php/settings.php:104
364
  msgid ""
365
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
366
  "gareginyan"
367
  msgstr "Inserisci un URL assoluto al tuo profilo Facebook. <br>Esempio: https://www.facebook.com/arthur.gareginyan"
368
 
369
- #: inc/php/settings.php:109
370
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
371
  msgstr "Inserisci il tuo nome utente Twitter. <br>Esempio: @AGareginyan"
372
 
373
- #: inc/php/settings.php:114
374
  msgid ""
375
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
376
  "name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
@@ -378,7 +382,7 @@ msgstr ""
378
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
379
  "verifica.<br>Esempio: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
380
 
381
- #: inc/php/settings.php:119
382
  msgid ""
383
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
384
  "name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -386,7 +390,7 @@ msgstr ""
386
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
387
  "verifica.<br>Esempio: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
388
 
389
- #: inc/php/settings.php:124
390
  msgid ""
391
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
392
  "name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
@@ -394,7 +398,7 @@ 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=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
396
 
397
- #: inc/php/settings.php:129
398
  msgid ""
399
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
400
  "name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
@@ -402,11 +406,11 @@ msgstr ""
402
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
403
  "verifica.<br>Esempio: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
404
 
405
- #: inc/php/settings.php:132
406
  msgid "Custom Meta Tags"
407
  msgstr "Tag meta personalizzati"
408
 
409
- #: inc/php/settings.php:134
410
  msgid ""
411
  "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 "
412
  "multiple meta tags."
@@ -414,11 +418,11 @@ msgstr ""
414
  "Se non riesci a trovare un campo per inserire il tuo meta tag richiesto allora puoi aggiungerlo qui. In questo "
415
  "campo puoi aggiungere tag meta multipli."
416
 
417
- #: inc/php/settings.php:143
418
  msgid "Meta Tags for Static Home Page only"
419
  msgstr "Tag meta solo per la pagina home statica"
420
 
421
- #: inc/php/settings.php:145
422
  msgid ""
423
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your "
424
  "website."
@@ -426,11 +430,11 @@ msgstr ""
426
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
427
  "statica del tuo sito web."
428
 
429
- #: inc/php/settings.php:148
430
  msgid "Home Description"
431
  msgstr "Descrizione home"
432
 
433
- #: inc/php/settings.php:150 inc/php/settings.php:172
434
  msgid ""
435
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars "
436
  "for the home description."
@@ -438,20 +442,20 @@ msgstr ""
438
  "Inserisci una breve descrizione del tuo sito web (150-250 caratteri). La maggior parte dei motori di ricerca usa "
439
  "un massimo di 160 caratteri per la descrizione della home."
440
 
441
- #: inc/php/settings.php:154
442
  msgid "Home Keyword(s)"
443
  msgstr "Parole chiave home"
444
 
445
- #: inc/php/settings.php:156
446
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
447
  msgstr ""
448
  "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina home statica del tuo sito web."
449
 
450
- #: inc/php/settings.php:165
451
  msgid "Meta Tags for Default Home Page and Blog Page only"
452
  msgstr "Tag meta solo per pagina home predefinita e pagina blog"
453
 
454
- #: inc/php/settings.php:167
455
  msgid ""
456
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and "
457
  "Blog Page of your website."
@@ -459,54 +463,54 @@ msgstr ""
459
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
460
  "predefinita e alla pagina blog del tuo sito web."
461
 
462
- #: inc/php/settings.php:170
463
  msgid "Blog Description"
464
  msgstr "Descrizione blog"
465
 
466
- #: inc/php/settings.php:176
467
  msgid "Blog Keyword(s)"
468
  msgstr "Parole chiave blog"
469
 
470
- #: inc/php/settings.php:178
471
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
472
  msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
473
 
474
- #: inc/php/settings.php:187
475
  msgid "Meta Tags for all website (Global)"
476
  msgstr "Tag meta per tutto il sito (globale)"
477
 
478
- #: inc/php/settings.php:189
479
  msgid ""
480
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
481
  "website."
482
  msgstr ""
483
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Author, Copyright e Keywords ovunque sul tuo sito."
484
 
485
- #: inc/php/settings.php:197
486
  msgid "Designer"
487
  msgstr "Designer"
488
 
489
- #: inc/php/settings.php:202
490
  msgid "Contact"
491
  msgstr "Contatti"
492
 
493
- #: inc/php/settings.php:206
494
  msgid "Copyright"
495
  msgstr "Copyright"
496
 
497
- #: inc/php/settings.php:210
498
  msgid "Keyword(s)"
499
  msgstr "Parole chiave"
500
 
501
- #: inc/php/settings.php:212
502
  msgid "Enter a comma-delimited list of global keywords for your website."
503
  msgstr "Inserisci una lista delimitata da virgole di parole chiave globali per il tuo sito web."
504
 
505
- #: inc/php/settings.php:221
506
  msgid "WooCommerce & Google Shopping"
507
  msgstr "WooCommerce & Google Shopping"
508
 
509
- #: inc/php/settings.php:223
510
  msgid ""
511
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
512
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars and "
@@ -516,7 +520,7 @@ msgstr ""
516
  "le pagine prodotto WooCommerce del tuo sito web. Ecco il codice per una maglietta da donna al prezzo di 16 "
517
  "dollari e 80 centesimi."
518
 
519
- #: inc/php/settings.php:233
520
  msgid ""
521
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/structured-"
522
  "data/testing-tool\" target=\"_blank\">here</a>."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Stable (latest release)\n"
6
+ "POT-Creation-Date: 2017-06-04 13:30+0300\n"
7
+ "PO-Revision-Date: 2017-06-04 13:30+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: it\n"
59
  msgid "F.A.Q."
60
  msgstr ""
61
 
62
+ #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:188
63
  msgid "Author"
64
  msgstr "Autore"
65
 
66
+ #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:29 inc/php/settings.php:234
67
  msgid "Support"
68
  msgstr ""
69
 
263
  msgid "This plugin allows you to easily add Meta Tags to your website."
264
  msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
265
 
266
+ #: inc/php/settings.php:24
267
+ msgid "Version"
268
+ msgstr ""
269
+
270
+ #: inc/php/settings.php:31 inc/php/settings.php:236
271
  msgid ""
272
  "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and "
273
  "lets me spend more time building things for people like you to enjoy."
276
  "miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li "
277
  "apprezzano."
278
 
279
+ #: inc/php/settings.php:32 inc/php/settings.php:237
280
  msgid "Donate with PayPal"
281
  msgstr ""
282
 
283
+ #: inc/php/settings.php:33 inc/php/settings.php:238
284
  msgid "Thanks for your support!"
285
  msgstr "Grazie per il tuo supporto!"
286
 
287
+ #: inc/php/settings.php:38
288
  msgid "Help"
289
  msgstr "Aiuto"
290
 
291
+ #: inc/php/settings.php:40
292
  msgid "Got something to say? Need help?"
293
  msgstr "Hai qualcosa da dirmi? Hai bisogno di aiuto?"
294
 
295
+ #: inc/php/settings.php:58
296
  msgid "Web Master Tools"
297
  msgstr "Webmaster Tools"
298
 
299
+ #: inc/php/settings.php:60
300
  msgid ""
301
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog "
302
  "or store before they provide their services to you. You can use the options below to verify your domain. If your "
306
  "blog o negozio prima che ti forniscano i loro servizi. Puoi usare le opzioni qui sotto per verificare il tuo "
307
  "dominio. Se il tuo dominio è già verificato, puoi semplicemente ignorarle."
308
 
309
+ #: inc/php/settings.php:65
310
  msgid ""
311
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
312
  "name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
314
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
315
  "verifica.<br>Esempio: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
316
 
317
+ #: inc/php/settings.php:70
318
  msgid ""
319
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
320
  "name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
322
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
323
  "verifica.<br>Esempio: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
324
 
325
+ #: inc/php/settings.php:75
326
  msgid ""
327
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
328
  "name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
330
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
331
  "verifica.<br>Esempio: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
332
 
333
+ #: inc/php/settings.php:78 inc/php/settings.php:134 inc/php/settings.php:156 inc/php/settings.php:178
334
+ #: inc/php/settings.php:212
335
  msgid "Save Changes"
336
  msgstr "Salva modifiche"
337
 
338
+ #: inc/php/settings.php:83
339
  msgid "Domain Verification"
340
  msgstr "Verifica dominio"
341
 
342
+ #: inc/php/settings.php:85
343
  msgid ""
344
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure "
345
  "that you are the correct owner of your blog or store before they provide their services to you. You can use the "
350
  "opzioni qui sotto per verificare il tuo dominio. Se il tuo dominio è già verificato, puoi semplicemente "
351
  "ignorarle."
352
 
353
+ #: inc/php/settings.php:90
354
  msgid ""
355
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
356
  "name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
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=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
360
 
361
+ #: inc/php/settings.php:95
362
  msgid ""
363
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
364
  "+ArthurGareginyan/"
365
  msgstr "Inserisci un URL assoluto al tuo profilo Google+. <br>Esempio: https://plus.google.com/+ArthurGareginyan/"
366
 
367
+ #: inc/php/settings.php:100
368
  msgid ""
369
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur."
370
  "gareginyan"
371
  msgstr "Inserisci un URL assoluto al tuo profilo Facebook. <br>Esempio: https://www.facebook.com/arthur.gareginyan"
372
 
373
+ #: inc/php/settings.php:105
374
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
375
  msgstr "Inserisci il tuo nome utente Twitter. <br>Esempio: @AGareginyan"
376
 
377
+ #: inc/php/settings.php:110
378
  msgid ""
379
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
380
  "name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
382
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
383
  "verifica.<br>Esempio: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
384
 
385
+ #: inc/php/settings.php:115
386
  msgid ""
387
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
388
  "name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
390
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
391
  "verifica.<br>Esempio: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
392
 
393
+ #: inc/php/settings.php:120
394
  msgid ""
395
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
396
  "name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
398
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
399
  "verifica.<br>Esempio: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
400
 
401
+ #: inc/php/settings.php:125
402
  msgid ""
403
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
404
  "name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
406
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
407
  "verifica.<br>Esempio: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
408
 
409
+ #: inc/php/settings.php:128
410
  msgid "Custom Meta Tags"
411
  msgstr "Tag meta personalizzati"
412
 
413
+ #: inc/php/settings.php:130
414
  msgid ""
415
  "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 "
416
  "multiple meta tags."
418
  "Se non riesci a trovare un campo per inserire il tuo meta tag richiesto allora puoi aggiungerlo qui. In questo "
419
  "campo puoi aggiungere tag meta multipli."
420
 
421
+ #: inc/php/settings.php:139
422
  msgid "Meta Tags for Static Home Page only"
423
  msgstr "Tag meta solo per la pagina home statica"
424
 
425
+ #: inc/php/settings.php:141
426
  msgid ""
427
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your "
428
  "website."
430
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
431
  "statica del tuo sito web."
432
 
433
+ #: inc/php/settings.php:144
434
  msgid "Home Description"
435
  msgstr "Descrizione home"
436
 
437
+ #: inc/php/settings.php:146 inc/php/settings.php:168
438
  msgid ""
439
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars "
440
  "for the home description."
442
  "Inserisci una breve descrizione del tuo sito web (150-250 caratteri). La maggior parte dei motori di ricerca usa "
443
  "un massimo di 160 caratteri per la descrizione della home."
444
 
445
+ #: inc/php/settings.php:150
446
  msgid "Home Keyword(s)"
447
  msgstr "Parole chiave home"
448
 
449
+ #: inc/php/settings.php:152
450
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
451
  msgstr ""
452
  "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina home statica del tuo sito web."
453
 
454
+ #: inc/php/settings.php:161
455
  msgid "Meta Tags for Default Home Page and Blog Page only"
456
  msgstr "Tag meta solo per pagina home predefinita e pagina blog"
457
 
458
+ #: inc/php/settings.php:163
459
  msgid ""
460
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and "
461
  "Blog Page of your website."
463
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
464
  "predefinita e alla pagina blog del tuo sito web."
465
 
466
+ #: inc/php/settings.php:166
467
  msgid "Blog Description"
468
  msgstr "Descrizione blog"
469
 
470
+ #: inc/php/settings.php:172
471
  msgid "Blog Keyword(s)"
472
  msgstr "Parole chiave blog"
473
 
474
+ #: inc/php/settings.php:174
475
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
476
  msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
477
 
478
+ #: inc/php/settings.php:183
479
  msgid "Meta Tags for all website (Global)"
480
  msgstr "Tag meta per tutto il sito (globale)"
481
 
482
+ #: inc/php/settings.php:185
483
  msgid ""
484
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
485
  "website."
486
  msgstr ""
487
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Author, Copyright e Keywords ovunque sul tuo sito."
488
 
489
+ #: inc/php/settings.php:193
490
  msgid "Designer"
491
  msgstr "Designer"
492
 
493
+ #: inc/php/settings.php:198
494
  msgid "Contact"
495
  msgstr "Contatti"
496
 
497
+ #: inc/php/settings.php:202
498
  msgid "Copyright"
499
  msgstr "Copyright"
500
 
501
+ #: inc/php/settings.php:206
502
  msgid "Keyword(s)"
503
  msgstr "Parole chiave"
504
 
505
+ #: inc/php/settings.php:208
506
  msgid "Enter a comma-delimited list of global keywords for your website."
507
  msgstr "Inserisci una lista delimitata da virgole di parole chiave globali per il tuo sito web."
508
 
509
+ #: inc/php/settings.php:217
510
  msgid "WooCommerce & Google Shopping"
511
  msgstr "WooCommerce & Google Shopping"
512
 
513
+ #: inc/php/settings.php:219
514
  msgid ""
515
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
516
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars and "
520
  "le pagine prodotto WooCommerce del tuo sito web. Ecco il codice per una maglietta da donna al prezzo di 16 "
521
  "dollari e 80 centesimi."
522
 
523
+ #: inc/php/settings.php:229
524
  msgid ""
525
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/structured-"
526
  "data/testing-tool\" target=\"_blank\">here</a>."
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-05-23 08:33+0300\n"
5
- "PO-Revision-Date: 2017-05-23 08:33+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -59,12 +59,12 @@ msgstr "Применение"
59
  msgid "F.A.Q."
60
  msgstr "F.A.Q."
61
 
62
- #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
63
  msgid "Author"
64
  msgstr "Автор"
65
 
66
- #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28
67
- #: inc/php/settings.php:238
68
  msgid "Support"
69
  msgstr "Поддержка"
70
 
@@ -302,7 +302,11 @@ msgstr "О плагине"
302
  msgid "This plugin allows you to easily add Meta Tags to your website."
303
  msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
304
 
305
- #: inc/php/settings.php:30 inc/php/settings.php:240
 
 
 
 
306
  msgid ""
307
  "I'm an independent developer, without a regular income, so every little "
308
  "contribution helps cover my costs and lets me spend more time building "
@@ -312,27 +316,27 @@ msgstr ""
312
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
313
  "создание программ для людей как вы."
314
 
315
- #: inc/php/settings.php:31 inc/php/settings.php:241
316
  msgid "Donate with PayPal"
317
  msgstr ""
318
 
319
- #: inc/php/settings.php:32 inc/php/settings.php:242
320
  msgid "Thanks for your support!"
321
  msgstr "Спасибо за вашу поддержку!"
322
 
323
- #: inc/php/settings.php:37
324
  msgid "Help"
325
  msgstr "Помощь"
326
 
327
- #: inc/php/settings.php:39
328
  msgid "Got something to say? Need help?"
329
  msgstr "Есть что сказать? Нужна помощь?"
330
 
331
- #: inc/php/settings.php:62
332
  msgid "Web Master Tools"
333
  msgstr "Веб-мастер инструменты"
334
 
335
- #: inc/php/settings.php:64
336
  msgid ""
337
  "Webmaster Tools require you to verify your domain. This makes sure that you "
338
  "are the correct owner of your blog or store before they provide their "
@@ -340,7 +344,7 @@ msgid ""
340
  "your domain is already verified, you can just forget about these."
341
  msgstr ""
342
 
343
- #: inc/php/settings.php:69
344
  msgid ""
345
  "Enter your meta key “content” value from your verification code to verify "
346
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
@@ -350,7 +354,7 @@ msgstr ""
350
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"google-site-"
351
  "verification\" content=“<b>1234567890</b>” /&gt;"
352
 
353
- #: inc/php/settings.php:74
354
  msgid ""
355
  "Enter your meta key “content” value from your verification code to verify "
356
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
@@ -360,7 +364,7 @@ msgstr ""
360
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"msvalidate.01\" "
361
  "content=“<b>1234567890</b>” /&gt;"
362
 
363
- #: inc/php/settings.php:79
364
  msgid ""
365
  "Enter your meta key “content” value from your verification code to verify "
366
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
@@ -370,16 +374,16 @@ msgstr ""
370
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"yandex-verification\" "
371
  "content=“<b>1234567890</b>” /&gt;"
372
 
373
- #: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160
374
- #: inc/php/settings.php:182 inc/php/settings.php:216
375
  msgid "Save Changes"
376
  msgstr "Сохранить изменения"
377
 
378
- #: inc/php/settings.php:87
379
  msgid "Domain Verification"
380
  msgstr "Подтверждение домена"
381
 
382
- #: inc/php/settings.php:89
383
  msgid ""
384
  "Third-party services like Alexa, Pinterest and Google-Plus require you to "
385
  "verify your domain. This makes sure that you are the correct owner of your "
@@ -388,7 +392,7 @@ msgid ""
388
  "can just forget about these."
389
  msgstr ""
390
 
391
- #: inc/php/settings.php:94
392
  msgid ""
393
  "Enter your meta key “content” value from your verification code to verify "
394
  "your website. <br>Example: &lt;meta name=\"p:domain_verify\" "
@@ -398,7 +402,7 @@ msgstr ""
398
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"p:domain_verify\" "
399
  "content=“<b>1234567890</b>” /&gt;"
400
 
401
- #: inc/php/settings.php:99
402
  msgid ""
403
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
404
  "https://plus.google.com/+ArthurGareginyan/"
@@ -406,17 +410,17 @@ msgstr ""
406
  "Введите полный URL к профилю в Google+. <br>Пример: https://plus.google.com/"
407
  "+ArthurGareginyan/"
408
 
409
- #: inc/php/settings.php:104
410
  msgid ""
411
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
412
  "https://www.facebook.com/arthur.gareginyan"
413
  msgstr ""
414
 
415
- #: inc/php/settings.php:109
416
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
417
  msgstr "Введите имя пользователя в Twitter. <br>Пример: @AGareginyan"
418
 
419
- #: inc/php/settings.php:114
420
  msgid ""
421
  "Enter your meta key “content” value from your verification code to verify "
422
  "your website. <br>Example: &lt;meta name=\"alexaVerifyID\" "
@@ -426,7 +430,7 @@ msgstr ""
426
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"alexaVerifyID\" "
427
  "content=“<b>1234567890</b>” /&gt;"
428
 
429
- #: inc/php/settings.php:119
430
  msgid ""
431
  "Enter your meta key “content” value from your verification code to verify "
432
  "your website. <br>Example: &lt;meta name=\"norton-safeweb-site-verification"
@@ -436,7 +440,7 @@ msgstr ""
436
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"norton-safeweb-site-"
437
  "verification\" content=“<b>1234567890</b>” /&gt;"
438
 
439
- #: inc/php/settings.php:124
440
  msgid ""
441
  "Enter your meta key “content” value from your verification code to verify "
442
  "your website. <br>Example: &lt;meta name=\"wot-verification\" "
@@ -446,7 +450,7 @@ msgstr ""
446
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"wot-verification\" "
447
  "content=“<b>1234567890</b>” /&gt;"
448
 
449
- #: inc/php/settings.php:129
450
  msgid ""
451
  "Enter your meta key “content” value from your verification code to verify "
452
  "your website. <br>Example: &lt;meta name=\"specificfeeds-verification-code\" "
@@ -456,11 +460,11 @@ msgstr ""
456
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"specificfeeds-"
457
  "verification-code\" content=“<b>1234567890</b>” /&gt;"
458
 
459
- #: inc/php/settings.php:132
460
  msgid "Custom Meta Tags"
461
  msgstr "Пользовательские мета-теги"
462
 
463
- #: inc/php/settings.php:134
464
  msgid ""
465
  "If you can't find a field to enter your required meta tag then you can add "
466
  "it here. In this field you can add multiple meta tags."
@@ -468,11 +472,11 @@ msgstr ""
468
  "Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-"
469
  "тег сюда. В это поле вы можете добавить несколько мета-тегов."
470
 
471
- #: inc/php/settings.php:143
472
  msgid "Meta Tags for Static Home Page only"
473
  msgstr "Мета-теги только для Static Home Page"
474
 
475
- #: inc/php/settings.php:145
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."
@@ -481,11 +485,11 @@ msgstr ""
481
  "таких как Description и Keywords только на Static Home Page страницу вашего "
482
  "вебсайта."
483
 
484
- #: inc/php/settings.php:148
485
  msgid "Home Description"
486
  msgstr "Описание главной страницы"
487
 
488
- #: inc/php/settings.php:150 inc/php/settings.php:172
489
  msgid ""
490
  "Enter a short description of your website (150-250 characters). Most search "
491
  "engines use a maximum of 160 chars for the home description."
@@ -494,11 +498,11 @@ msgstr ""
494
  "поисковых систем используют максимум 160 символов для описания домашней "
495
  "страницы."
496
 
497
- #: inc/php/settings.php:154
498
  msgid "Home Keyword(s)"
499
  msgstr "Ключевые слова главной страницы"
500
 
501
- #: inc/php/settings.php:156
502
  msgid ""
503
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
504
  "website."
@@ -506,11 +510,11 @@ msgstr ""
506
  "Введите, разделенный запятыми, список ключевых слов для только Static Home "
507
  "Page вашего веб-сайта."
508
 
509
- #: inc/php/settings.php:165
510
  msgid "Meta Tags for Default Home Page and Blog Page only"
511
  msgstr "Мета-теги для Default Home Page и только Blog Page"
512
 
513
- #: inc/php/settings.php:167
514
  msgid ""
515
  "You can use the options below to add meta tags such as Description and "
516
  "Keywords only in Default Home Page and Blog Page of your website."
@@ -519,26 +523,26 @@ msgstr ""
519
  "таких как Description и Keywords только на Default Home Page и Blog Page "
520
  "страницы вашего вебсайта."
521
 
522
- #: inc/php/settings.php:170
523
  msgid "Blog Description"
524
  msgstr "Описание блога"
525
 
526
- #: inc/php/settings.php:176
527
  msgid "Blog Keyword(s)"
528
  msgstr "Ключевые слова блога"
529
 
530
- #: inc/php/settings.php:178
531
  msgid ""
532
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
533
  msgstr ""
534
  "Введите, разделенный запятыми, список ключевых слов для только Blog Page "
535
  "вашего веб-сайта."
536
 
537
- #: inc/php/settings.php:187
538
  msgid "Meta Tags for all website (Global)"
539
  msgstr "Мета-теги для всего веб-сайта (Глобальные)"
540
 
541
- #: inc/php/settings.php:189
542
  msgid ""
543
  "You can use the options below to add meta tags such as Author, Copyright and "
544
  "Keywords in everywhere on your website."
@@ -546,33 +550,33 @@ msgstr ""
546
  "Вы можете использовать ниже-расположенные опции для добавления мета тегов "
547
  "таких как Author, Copyright и Keywords на каждую страницу вашего вебсайта."
548
 
549
- #: inc/php/settings.php:197
550
  msgid "Designer"
551
  msgstr "Дизайнер"
552
 
553
- #: inc/php/settings.php:202
554
  msgid "Contact"
555
  msgstr "Контакты"
556
 
557
- #: inc/php/settings.php:206
558
  msgid "Copyright"
559
  msgstr "Copyright"
560
 
561
- #: inc/php/settings.php:210
562
  msgid "Keyword(s)"
563
  msgstr "Ключевые слова"
564
 
565
- #: inc/php/settings.php:212
566
  msgid "Enter a comma-delimited list of global keywords for your website."
567
  msgstr ""
568
  "Введите, разделенный запятыми, список глобальных ключевых слов для вашего "
569
  "веб-сайта."
570
 
571
- #: inc/php/settings.php:221
572
  msgid "WooCommerce & Google Shopping"
573
  msgstr "WooCommerce и Google Shopping"
574
 
575
- #: inc/php/settings.php:223
576
  msgid ""
577
  "This plugin automatically adds the necessary Google Shopping (Merchant "
578
  "Center) structured data on all WooCommerce product pages on your website. "
@@ -584,7 +588,7 @@ msgstr ""
584
  "разметка для женской футболки которая продаётся за 16 долларов и 80 центов "
585
  "США."
586
 
587
- #: inc/php/settings.php:233
588
  msgid ""
589
  "Check these data generated on the pages of your website you can <a href="
590
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
+ "POT-Creation-Date: 2017-06-04 13:30+0300\n"
5
+ "PO-Revision-Date: 2017-06-04 13:37+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
59
  msgid "F.A.Q."
60
  msgstr "F.A.Q."
61
 
62
+ #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:188
63
  msgid "Author"
64
  msgstr "Автор"
65
 
66
+ #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:29
67
+ #: inc/php/settings.php:234
68
  msgid "Support"
69
  msgstr "Поддержка"
70
 
302
  msgid "This plugin allows you to easily add Meta Tags to your website."
303
  msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
304
 
305
+ #: inc/php/settings.php:24
306
+ msgid "Version"
307
+ msgstr "Версия"
308
+
309
+ #: inc/php/settings.php:31 inc/php/settings.php:236
310
  msgid ""
311
  "I'm an independent developer, without a regular income, so every little "
312
  "contribution helps cover my costs and lets me spend more time building "
316
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
317
  "создание программ для людей как вы."
318
 
319
+ #: inc/php/settings.php:32 inc/php/settings.php:237
320
  msgid "Donate with PayPal"
321
  msgstr ""
322
 
323
+ #: inc/php/settings.php:33 inc/php/settings.php:238
324
  msgid "Thanks for your support!"
325
  msgstr "Спасибо за вашу поддержку!"
326
 
327
+ #: inc/php/settings.php:38
328
  msgid "Help"
329
  msgstr "Помощь"
330
 
331
+ #: inc/php/settings.php:40
332
  msgid "Got something to say? Need help?"
333
  msgstr "Есть что сказать? Нужна помощь?"
334
 
335
+ #: inc/php/settings.php:58
336
  msgid "Web Master Tools"
337
  msgstr "Веб-мастер инструменты"
338
 
339
+ #: inc/php/settings.php:60
340
  msgid ""
341
  "Webmaster Tools require you to verify your domain. This makes sure that you "
342
  "are the correct owner of your blog or store before they provide their "
344
  "your domain is already verified, you can just forget about these."
345
  msgstr ""
346
 
347
+ #: inc/php/settings.php:65
348
  msgid ""
349
  "Enter your meta key “content” value from your verification code to verify "
350
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
354
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"google-site-"
355
  "verification\" content=“<b>1234567890</b>” /&gt;"
356
 
357
+ #: inc/php/settings.php:70
358
  msgid ""
359
  "Enter your meta key “content” value from your verification code to verify "
360
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
364
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"msvalidate.01\" "
365
  "content=“<b>1234567890</b>” /&gt;"
366
 
367
+ #: inc/php/settings.php:75
368
  msgid ""
369
  "Enter your meta key “content” value from your verification code to verify "
370
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
374
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"yandex-verification\" "
375
  "content=“<b>1234567890</b>” /&gt;"
376
 
377
+ #: inc/php/settings.php:78 inc/php/settings.php:134 inc/php/settings.php:156
378
+ #: inc/php/settings.php:178 inc/php/settings.php:212
379
  msgid "Save Changes"
380
  msgstr "Сохранить изменения"
381
 
382
+ #: inc/php/settings.php:83
383
  msgid "Domain Verification"
384
  msgstr "Подтверждение домена"
385
 
386
+ #: inc/php/settings.php:85
387
  msgid ""
388
  "Third-party services like Alexa, Pinterest and Google-Plus require you to "
389
  "verify your domain. This makes sure that you are the correct owner of your "
392
  "can just forget about these."
393
  msgstr ""
394
 
395
+ #: inc/php/settings.php:90
396
  msgid ""
397
  "Enter your meta key “content” value from your verification code to verify "
398
  "your website. <br>Example: &lt;meta name=\"p:domain_verify\" "
402
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"p:domain_verify\" "
403
  "content=“<b>1234567890</b>” /&gt;"
404
 
405
+ #: inc/php/settings.php:95
406
  msgid ""
407
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: "
408
  "https://plus.google.com/+ArthurGareginyan/"
410
  "Введите полный URL к профилю в Google+. <br>Пример: https://plus.google.com/"
411
  "+ArthurGareginyan/"
412
 
413
+ #: inc/php/settings.php:100
414
  msgid ""
415
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: "
416
  "https://www.facebook.com/arthur.gareginyan"
417
  msgstr ""
418
 
419
+ #: inc/php/settings.php:105
420
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
421
  msgstr "Введите имя пользователя в Twitter. <br>Пример: @AGareginyan"
422
 
423
+ #: inc/php/settings.php:110
424
  msgid ""
425
  "Enter your meta key “content” value from your verification code to verify "
426
  "your website. <br>Example: &lt;meta name=\"alexaVerifyID\" "
430
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"alexaVerifyID\" "
431
  "content=“<b>1234567890</b>” /&gt;"
432
 
433
+ #: inc/php/settings.php:115
434
  msgid ""
435
  "Enter your meta key “content” value from your verification code to verify "
436
  "your website. <br>Example: &lt;meta name=\"norton-safeweb-site-verification"
440
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"norton-safeweb-site-"
441
  "verification\" content=“<b>1234567890</b>” /&gt;"
442
 
443
+ #: inc/php/settings.php:120
444
  msgid ""
445
  "Enter your meta key “content” value from your verification code to verify "
446
  "your website. <br>Example: &lt;meta name=\"wot-verification\" "
450
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"wot-verification\" "
451
  "content=“<b>1234567890</b>” /&gt;"
452
 
453
+ #: inc/php/settings.php:125
454
  msgid ""
455
  "Enter your meta key “content” value from your verification code to verify "
456
  "your website. <br>Example: &lt;meta name=\"specificfeeds-verification-code\" "
460
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"specificfeeds-"
461
  "verification-code\" content=“<b>1234567890</b>” /&gt;"
462
 
463
+ #: inc/php/settings.php:128
464
  msgid "Custom Meta Tags"
465
  msgstr "Пользовательские мета-теги"
466
 
467
+ #: inc/php/settings.php:130
468
  msgid ""
469
  "If you can't find a field to enter your required meta tag then you can add "
470
  "it here. In this field you can add multiple meta tags."
472
  "Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-"
473
  "тег сюда. В это поле вы можете добавить несколько мета-тегов."
474
 
475
+ #: inc/php/settings.php:139
476
  msgid "Meta Tags for Static Home Page only"
477
  msgstr "Мета-теги только для Static Home Page"
478
 
479
+ #: inc/php/settings.php:141
480
  msgid ""
481
  "You can use the options below to add meta tags such as Description and "
482
  "Keywords only in Static Home Page of your website."
485
  "таких как Description и Keywords только на Static Home Page страницу вашего "
486
  "вебсайта."
487
 
488
+ #: inc/php/settings.php:144
489
  msgid "Home Description"
490
  msgstr "Описание главной страницы"
491
 
492
+ #: inc/php/settings.php:146 inc/php/settings.php:168
493
  msgid ""
494
  "Enter a short description of your website (150-250 characters). Most search "
495
  "engines use a maximum of 160 chars for the home description."
498
  "поисковых систем используют максимум 160 символов для описания домашней "
499
  "страницы."
500
 
501
+ #: inc/php/settings.php:150
502
  msgid "Home Keyword(s)"
503
  msgstr "Ключевые слова главной страницы"
504
 
505
+ #: inc/php/settings.php:152
506
  msgid ""
507
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
508
  "website."
510
  "Введите, разделенный запятыми, список ключевых слов для только Static Home "
511
  "Page вашего веб-сайта."
512
 
513
+ #: inc/php/settings.php:161
514
  msgid "Meta Tags for Default Home Page and Blog Page only"
515
  msgstr "Мета-теги для Default Home Page и только Blog Page"
516
 
517
+ #: inc/php/settings.php:163
518
  msgid ""
519
  "You can use the options below to add meta tags such as Description and "
520
  "Keywords only in Default Home Page and Blog Page of your website."
523
  "таких как Description и Keywords только на Default Home Page и Blog Page "
524
  "страницы вашего вебсайта."
525
 
526
+ #: inc/php/settings.php:166
527
  msgid "Blog Description"
528
  msgstr "Описание блога"
529
 
530
+ #: inc/php/settings.php:172
531
  msgid "Blog Keyword(s)"
532
  msgstr "Ключевые слова блога"
533
 
534
+ #: inc/php/settings.php:174
535
  msgid ""
536
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
537
  msgstr ""
538
  "Введите, разделенный запятыми, список ключевых слов для только Blog Page "
539
  "вашего веб-сайта."
540
 
541
+ #: inc/php/settings.php:183
542
  msgid "Meta Tags for all website (Global)"
543
  msgstr "Мета-теги для всего веб-сайта (Глобальные)"
544
 
545
+ #: inc/php/settings.php:185
546
  msgid ""
547
  "You can use the options below to add meta tags such as Author, Copyright and "
548
  "Keywords in everywhere on your website."
550
  "Вы можете использовать ниже-расположенные опции для добавления мета тегов "
551
  "таких как Author, Copyright и Keywords на каждую страницу вашего вебсайта."
552
 
553
+ #: inc/php/settings.php:193
554
  msgid "Designer"
555
  msgstr "Дизайнер"
556
 
557
+ #: inc/php/settings.php:198
558
  msgid "Contact"
559
  msgstr "Контакты"
560
 
561
+ #: inc/php/settings.php:202
562
  msgid "Copyright"
563
  msgstr "Copyright"
564
 
565
+ #: inc/php/settings.php:206
566
  msgid "Keyword(s)"
567
  msgstr "Ключевые слова"
568
 
569
+ #: inc/php/settings.php:208
570
  msgid "Enter a comma-delimited list of global keywords for your website."
571
  msgstr ""
572
  "Введите, разделенный запятыми, список глобальных ключевых слов для вашего "
573
  "веб-сайта."
574
 
575
+ #: inc/php/settings.php:217
576
  msgid "WooCommerce & Google Shopping"
577
  msgstr "WooCommerce и Google Shopping"
578
 
579
+ #: inc/php/settings.php:219
580
  msgid ""
581
  "This plugin automatically adds the necessary Google Shopping (Merchant "
582
  "Center) structured data on all WooCommerce product pages on your website. "
588
  "разметка для женской футболки которая продаётся за 16 долларов и 80 центов "
589
  "США."
590
 
591
+ #: inc/php/settings.php:229
592
  msgid ""
593
  "Check these data generated on the pages of your website you can <a href="
594
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
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-05-23 08:32+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -58,11 +58,11 @@ msgstr ""
58
  msgid "F.A.Q."
59
  msgstr ""
60
 
61
- #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
62
  msgid "Author"
63
  msgstr ""
64
 
65
- #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28 inc/php/settings.php:238
66
  msgid "Support"
67
  msgstr ""
68
 
@@ -272,67 +272,71 @@ msgstr ""
272
  msgid "This plugin allows you to easily add Meta Tags to your website."
273
  msgstr ""
274
 
275
- #: inc/php/settings.php:30 inc/php/settings.php:240
 
 
 
 
276
  msgid ""
277
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
278
  "costs and lets me spend more time building things for people like you to enjoy."
279
  msgstr ""
280
 
281
- #: inc/php/settings.php:31 inc/php/settings.php:241
282
  msgid "Donate with PayPal"
283
  msgstr ""
284
 
285
- #: inc/php/settings.php:32 inc/php/settings.php:242
286
  msgid "Thanks for your support!"
287
  msgstr ""
288
 
289
- #: inc/php/settings.php:37
290
  msgid "Help"
291
  msgstr ""
292
 
293
- #: inc/php/settings.php:39
294
  msgid "Got something to say? Need help?"
295
  msgstr ""
296
 
297
- #: inc/php/settings.php:62
298
  msgid "Web Master Tools"
299
  msgstr ""
300
 
301
- #: inc/php/settings.php:64
302
  msgid ""
303
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner "
304
  "of your blog or store before they provide their services to you. You can use the options below to "
305
  "verify your domain. If your domain is already verified, you can just forget about these."
306
  msgstr ""
307
 
308
- #: inc/php/settings.php:69
309
  msgid ""
310
  "Enter your meta key “content” value from your verification code to verify your website. "
311
  "<br>Example: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
312
  msgstr ""
313
 
314
- #: inc/php/settings.php:74
315
  msgid ""
316
  "Enter your meta key “content” value from your verification code to verify your website. "
317
  "<br>Example: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
318
  msgstr ""
319
 
320
- #: inc/php/settings.php:79
321
  msgid ""
322
  "Enter your meta key “content” value from your verification code to verify your website. "
323
  "<br>Example: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
324
  msgstr ""
325
 
326
- #: inc/php/settings.php:82 inc/php/settings.php:138 inc/php/settings.php:160 inc/php/settings.php:182
327
- #: inc/php/settings.php:216
328
  msgid "Save Changes"
329
  msgstr ""
330
 
331
- #: inc/php/settings.php:87
332
  msgid "Domain Verification"
333
  msgstr ""
334
 
335
- #: inc/php/settings.php:89
336
  msgid ""
337
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This "
338
  "makes sure that you are the correct owner of your blog or store before they provide their services "
@@ -340,154 +344,154 @@ msgid ""
340
  "you can just forget about these."
341
  msgstr ""
342
 
343
- #: inc/php/settings.php:94
344
  msgid ""
345
  "Enter your meta key “content” value from your verification code to verify your website. "
346
  "<br>Example: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
347
  msgstr ""
348
 
349
- #: inc/php/settings.php:99
350
  msgid ""
351
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
352
  "+ArthurGareginyan/"
353
  msgstr ""
354
 
355
- #: inc/php/settings.php:104
356
  msgid ""
357
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook."
358
  "com/arthur.gareginyan"
359
  msgstr ""
360
 
361
- #: inc/php/settings.php:109
362
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
363
  msgstr ""
364
 
365
- #: inc/php/settings.php:114
366
  msgid ""
367
  "Enter your meta key “content” value from your verification code to verify your website. "
368
  "<br>Example: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
369
  msgstr ""
370
 
371
- #: inc/php/settings.php:119
372
  msgid ""
373
  "Enter your meta key “content” value from your verification code to verify your website. "
374
  "<br>Example: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
375
  msgstr ""
376
 
377
- #: inc/php/settings.php:124
378
  msgid ""
379
  "Enter your meta key “content” value from your verification code to verify your website. "
380
  "<br>Example: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
381
  msgstr ""
382
 
383
- #: inc/php/settings.php:129
384
  msgid ""
385
  "Enter your meta key “content” value from your verification code to verify your website. "
386
  "<br>Example: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
387
  msgstr ""
388
 
389
- #: inc/php/settings.php:132
390
  msgid "Custom Meta Tags"
391
  msgstr ""
392
 
393
- #: inc/php/settings.php:134
394
  msgid ""
395
  "If you can't find a field to enter your required meta tag then you can add it here. In this field "
396
  "you can add multiple meta tags."
397
  msgstr ""
398
 
399
- #: inc/php/settings.php:143
400
  msgid "Meta Tags for Static Home Page only"
401
  msgstr ""
402
 
403
- #: inc/php/settings.php:145
404
  msgid ""
405
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home "
406
  "Page of your website."
407
  msgstr ""
408
 
409
- #: inc/php/settings.php:148
410
  msgid "Home Description"
411
  msgstr ""
412
 
413
- #: inc/php/settings.php:150 inc/php/settings.php:172
414
  msgid ""
415
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum "
416
  "of 160 chars for the home description."
417
  msgstr ""
418
 
419
- #: inc/php/settings.php:154
420
  msgid "Home Keyword(s)"
421
  msgstr ""
422
 
423
- #: inc/php/settings.php:156
424
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
425
  msgstr ""
426
 
427
- #: inc/php/settings.php:165
428
  msgid "Meta Tags for Default Home Page and Blog Page only"
429
  msgstr ""
430
 
431
- #: inc/php/settings.php:167
432
  msgid ""
433
  "You can use the options below to add meta tags such as Description and Keywords only in Default "
434
  "Home Page and Blog Page of your website."
435
  msgstr ""
436
 
437
- #: inc/php/settings.php:170
438
  msgid "Blog Description"
439
  msgstr ""
440
 
441
- #: inc/php/settings.php:176
442
  msgid "Blog Keyword(s)"
443
  msgstr ""
444
 
445
- #: inc/php/settings.php:178
446
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
447
  msgstr ""
448
 
449
- #: inc/php/settings.php:187
450
  msgid "Meta Tags for all website (Global)"
451
  msgstr ""
452
 
453
- #: inc/php/settings.php:189
454
  msgid ""
455
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere "
456
  "on your website."
457
  msgstr ""
458
 
459
- #: inc/php/settings.php:197
460
  msgid "Designer"
461
  msgstr ""
462
 
463
- #: inc/php/settings.php:202
464
  msgid "Contact"
465
  msgstr ""
466
 
467
- #: inc/php/settings.php:206
468
  msgid "Copyright"
469
  msgstr ""
470
 
471
- #: inc/php/settings.php:210
472
  msgid "Keyword(s)"
473
  msgstr ""
474
 
475
- #: inc/php/settings.php:212
476
  msgid "Enter a comma-delimited list of global keywords for your website."
477
  msgstr ""
478
 
479
- #: inc/php/settings.php:221
480
  msgid "WooCommerce & Google Shopping"
481
  msgstr ""
482
 
483
- #: inc/php/settings.php:223
484
  msgid ""
485
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on "
486
  "all WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells "
487
  "for 16 dollars and 80 cents of US."
488
  msgstr ""
489
 
490
- #: inc/php/settings.php:233
491
  msgid ""
492
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
493
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2017-06-04 13:29+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
58
  msgid "F.A.Q."
59
  msgstr ""
60
 
61
+ #: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:188
62
  msgid "Author"
63
  msgstr ""
64
 
65
+ #: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:29 inc/php/settings.php:234
66
  msgid "Support"
67
  msgstr ""
68
 
272
  msgid "This plugin allows you to easily add Meta Tags to your website."
273
  msgstr ""
274
 
275
+ #: inc/php/settings.php:24
276
+ msgid "Version"
277
+ msgstr ""
278
+
279
+ #: inc/php/settings.php:31 inc/php/settings.php:236
280
  msgid ""
281
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
282
  "costs and lets me spend more time building things for people like you to enjoy."
283
  msgstr ""
284
 
285
+ #: inc/php/settings.php:32 inc/php/settings.php:237
286
  msgid "Donate with PayPal"
287
  msgstr ""
288
 
289
+ #: inc/php/settings.php:33 inc/php/settings.php:238
290
  msgid "Thanks for your support!"
291
  msgstr ""
292
 
293
+ #: inc/php/settings.php:38
294
  msgid "Help"
295
  msgstr ""
296
 
297
+ #: inc/php/settings.php:40
298
  msgid "Got something to say? Need help?"
299
  msgstr ""
300
 
301
+ #: inc/php/settings.php:58
302
  msgid "Web Master Tools"
303
  msgstr ""
304
 
305
+ #: inc/php/settings.php:60
306
  msgid ""
307
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner "
308
  "of your blog or store before they provide their services to you. You can use the options below to "
309
  "verify your domain. If your domain is already verified, you can just forget about these."
310
  msgstr ""
311
 
312
+ #: inc/php/settings.php:65
313
  msgid ""
314
  "Enter your meta key “content” value from your verification code to verify your website. "
315
  "<br>Example: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
316
  msgstr ""
317
 
318
+ #: inc/php/settings.php:70
319
  msgid ""
320
  "Enter your meta key “content” value from your verification code to verify your website. "
321
  "<br>Example: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
322
  msgstr ""
323
 
324
+ #: inc/php/settings.php:75
325
  msgid ""
326
  "Enter your meta key “content” value from your verification code to verify your website. "
327
  "<br>Example: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
328
  msgstr ""
329
 
330
+ #: inc/php/settings.php:78 inc/php/settings.php:134 inc/php/settings.php:156 inc/php/settings.php:178
331
+ #: inc/php/settings.php:212
332
  msgid "Save Changes"
333
  msgstr ""
334
 
335
+ #: inc/php/settings.php:83
336
  msgid "Domain Verification"
337
  msgstr ""
338
 
339
+ #: inc/php/settings.php:85
340
  msgid ""
341
  "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This "
342
  "makes sure that you are the correct owner of your blog or store before they provide their services "
344
  "you can just forget about these."
345
  msgstr ""
346
 
347
+ #: inc/php/settings.php:90
348
  msgid ""
349
  "Enter your meta key “content” value from your verification code to verify your website. "
350
  "<br>Example: &lt;meta name=\"p:domain_verify\" content=“<b>1234567890</b>” /&gt;"
351
  msgstr ""
352
 
353
+ #: inc/php/settings.php:95
354
  msgid ""
355
  "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/"
356
  "+ArthurGareginyan/"
357
  msgstr ""
358
 
359
+ #: inc/php/settings.php:100
360
  msgid ""
361
  "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook."
362
  "com/arthur.gareginyan"
363
  msgstr ""
364
 
365
+ #: inc/php/settings.php:105
366
  msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
367
  msgstr ""
368
 
369
+ #: inc/php/settings.php:110
370
  msgid ""
371
  "Enter your meta key “content” value from your verification code to verify your website. "
372
  "<br>Example: &lt;meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” /&gt;"
373
  msgstr ""
374
 
375
+ #: inc/php/settings.php:115
376
  msgid ""
377
  "Enter your meta key “content” value from your verification code to verify your website. "
378
  "<br>Example: &lt;meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” /&gt;"
379
  msgstr ""
380
 
381
+ #: inc/php/settings.php:120
382
  msgid ""
383
  "Enter your meta key “content” value from your verification code to verify your website. "
384
  "<br>Example: &lt;meta name=\"wot-verification\" content=“<b>1234567890</b>” /&gt;"
385
  msgstr ""
386
 
387
+ #: inc/php/settings.php:125
388
  msgid ""
389
  "Enter your meta key “content” value from your verification code to verify your website. "
390
  "<br>Example: &lt;meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” /&gt;"
391
  msgstr ""
392
 
393
+ #: inc/php/settings.php:128
394
  msgid "Custom Meta Tags"
395
  msgstr ""
396
 
397
+ #: inc/php/settings.php:130
398
  msgid ""
399
  "If you can't find a field to enter your required meta tag then you can add it here. In this field "
400
  "you can add multiple meta tags."
401
  msgstr ""
402
 
403
+ #: inc/php/settings.php:139
404
  msgid "Meta Tags for Static Home Page only"
405
  msgstr ""
406
 
407
+ #: inc/php/settings.php:141
408
  msgid ""
409
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home "
410
  "Page of your website."
411
  msgstr ""
412
 
413
+ #: inc/php/settings.php:144
414
  msgid "Home Description"
415
  msgstr ""
416
 
417
+ #: inc/php/settings.php:146 inc/php/settings.php:168
418
  msgid ""
419
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum "
420
  "of 160 chars for the home description."
421
  msgstr ""
422
 
423
+ #: inc/php/settings.php:150
424
  msgid "Home Keyword(s)"
425
  msgstr ""
426
 
427
+ #: inc/php/settings.php:152
428
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
429
  msgstr ""
430
 
431
+ #: inc/php/settings.php:161
432
  msgid "Meta Tags for Default Home Page and Blog Page only"
433
  msgstr ""
434
 
435
+ #: inc/php/settings.php:163
436
  msgid ""
437
  "You can use the options below to add meta tags such as Description and Keywords only in Default "
438
  "Home Page and Blog Page of your website."
439
  msgstr ""
440
 
441
+ #: inc/php/settings.php:166
442
  msgid "Blog Description"
443
  msgstr ""
444
 
445
+ #: inc/php/settings.php:172
446
  msgid "Blog Keyword(s)"
447
  msgstr ""
448
 
449
+ #: inc/php/settings.php:174
450
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
451
  msgstr ""
452
 
453
+ #: inc/php/settings.php:183
454
  msgid "Meta Tags for all website (Global)"
455
  msgstr ""
456
 
457
+ #: inc/php/settings.php:185
458
  msgid ""
459
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere "
460
  "on your website."
461
  msgstr ""
462
 
463
+ #: inc/php/settings.php:193
464
  msgid "Designer"
465
  msgstr ""
466
 
467
+ #: inc/php/settings.php:198
468
  msgid "Contact"
469
  msgstr ""
470
 
471
+ #: inc/php/settings.php:202
472
  msgid "Copyright"
473
  msgstr ""
474
 
475
+ #: inc/php/settings.php:206
476
  msgid "Keyword(s)"
477
  msgstr ""
478
 
479
+ #: inc/php/settings.php:208
480
  msgid "Enter a comma-delimited list of global keywords for your website."
481
  msgstr ""
482
 
483
+ #: inc/php/settings.php:217
484
  msgid "WooCommerce & Google Shopping"
485
  msgstr ""
486
 
487
+ #: inc/php/settings.php:219
488
  msgid ""
489
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on "
490
  "all WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells "
491
  "for 16 dollars and 80 cents of US."
492
  msgstr ""
493
 
494
+ #: inc/php/settings.php:229
495
  msgid ""
496
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
497
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
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.2
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -84,9 +84,9 @@ If you would like to add a translation to this plugin then please head to our [T
84
  == Installation ==
85
  Install "All Meta Tags" just as you would any other WordPress Plugin.
86
 
87
- Automatically via WordPress Admin area:
88
 
89
- 1. Log into Admin area of your WordPress website.
90
  2. Go to "`Plugins`" -> "`Add New`".
91
  3. Find this plugin and click install.
92
  4. Activate this plugin through the "`Plugins`" tab.
@@ -96,7 +96,7 @@ Manually via FTP access:
96
  1. Download a copy (ZIP file) of this plugin from WordPress.org.
97
  2. Unzip the ZIP file.
98
  3. Upload the unzipped catalog to your website's plugin directory (`/wp-content/plugins/`).
99
- 4. Log into Admin area of your WordPress website.
100
  5. Activate this plugin through the "`Plugins`" tab.
101
 
102
  After installation, a "`All Meta Tags`" menu item will appear in the "`Settings`" section. Click on this in order to view plugin's administration page.
@@ -187,6 +187,13 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
187
 
188
  == Changelog ==
189
 
 
 
 
 
 
 
 
190
  = 4.2 =
191
  * Compatibility with PHP version 5.2 improved.
192
  * PHP shorthands improved.
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.3
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
84
  == Installation ==
85
  Install "All Meta Tags" just as you would any other WordPress Plugin.
86
 
87
+ Automatically via WordPress Admin Panel:
88
 
89
+ 1. Log into Admin Panel of your WordPress website.
90
  2. Go to "`Plugins`" -> "`Add New`".
91
  3. Find this plugin and click install.
92
  4. Activate this plugin through the "`Plugins`" tab.
96
  1. Download a copy (ZIP file) of this plugin from WordPress.org.
97
  2. Unzip the ZIP file.
98
  3. Upload the unzipped catalog to your website's plugin directory (`/wp-content/plugins/`).
99
+ 4. Log into Admin Panel of your WordPress website.
100
  5. Activate this plugin through the "`Plugins`" tab.
101
 
102
  After installation, a "`All Meta Tags`" menu item will appear in the "`Settings`" section. Click on this in order to view plugin's administration page.
187
 
188
  == Changelog ==
189
 
190
+ = 4.3 =
191
+ * To the plugin settings page added information about the plugin version number.
192
+ * The "Tested up to:" comment changed to 4.8 after full testing process.
193
+ * The "version.php" file renamed to "versioning.php".
194
+ * The "versioning.php" file updated to new version.
195
+ * The "_plugin_version_number" function renamed to the "_versioning".
196
+
197
  = 4.2 =
198
  * Compatibility with PHP version 5.2 improved.
199
  * PHP shorthands improved.