All Meta Tags - Version 4.4

Version Description

  • On the plugin settings page, text of buttons are corrected.
  • On the plugin settings page, the information about the plugin version number moved to header section.
  • Some mention of constants replaced with variables for easier access.
  • Content of the "Usage" tab updated.
  • Content of the "FAQ" tab updated.
  • Added load of the jQuery library on the plugin settings page.
Download this release

Release Info

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

Code changes from version 4.3 to 4.4

all-meta-tags.php CHANGED
@@ -5,12 +5,12 @@
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/
12
  *
13
- * Copyright 2015-2017 Arthur Gareginyan (email : arthurgareginyan@gmail.com)
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
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.4
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
12
  *
13
+ * Copyright 2015-2017 Arthur Gareginyan ( website : http://www.arthurgareginyan.com )
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
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.3
9
  */
10
 
11
 
@@ -52,16 +52,7 @@ h2 span {
52
  display: block ;
53
  margin-top: 15px;
54
  font-size: 16px;
55
- text-shadow: 0 -1px 0 #fff,
56
- 0 1px 0 #2e2e2e,
57
- 0 2px 0 #2a2a2a,
58
- 0 3px 0 #262626,
59
- 0 4px 0 #222,
60
- 0 5px 0 #1e1e1e,
61
- 0 6px 0 #1a1a1a,
62
- 0 7px 0 #161616,
63
- 0 8px 0 #121212,
64
- 0 22px 30px rgba(0, 0, 0, 0.9);
65
  line-height: 20px !important;
66
  }
67
  h2 span a,
@@ -74,6 +65,13 @@ h2 span a:hover {
74
  -webkit-transition: all 0.2s ease-in-out;
75
  transition: all 0.2s ease-in-out;
76
  }
 
 
 
 
 
 
 
77
 
78
  /* Titles and Descriptions of sections
79
  -------------------------------------------------------------- */
@@ -100,6 +98,9 @@ h3.title {
100
  margin-right: 20px;
101
  border-radius: 15px;
102
  }
 
 
 
103
  .hello-message .modal-body p {
104
  font-size: 16px;
105
  }
@@ -142,10 +143,6 @@ h3.title {
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
  -------------------------------------------------------------- */
5
  * @uthor Arthur Gareginyan
6
  * @link http://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
+ * @since 4.4
9
  */
10
 
11
 
52
  display: block ;
53
  margin-top: 15px;
54
  font-size: 16px;
55
+ text-shadow: none;
 
 
 
 
 
 
 
 
 
56
  line-height: 20px !important;
57
  }
58
  h2 span a,
65
  -webkit-transition: all 0.2s ease-in-out;
66
  transition: all 0.2s ease-in-out;
67
  }
68
+ h2 .version {
69
+ position: absolute;
70
+ right: 40px;
71
+ color: #a6a6a6;
72
+ text-shadow: none;
73
+ letter-spacing: .1em;
74
+ }
75
 
76
  /* Titles and Descriptions of sections
77
  -------------------------------------------------------------- */
98
  margin-right: 20px;
99
  border-radius: 15px;
100
  }
101
+ .hello-message .modal-body .emoji {
102
+ float: none;
103
+ }
104
  .hello-message .modal-body p {
105
  font-size: 16px;
106
  }
143
  #side-sortables .paypal {
144
  font-size: 18px;
145
  }
 
 
 
 
146
 
147
  /* Support - addition section
148
  -------------------------------------------------------------- */
inc/js/admin.js CHANGED
@@ -1,5 +1,5 @@
1
  /*
2
- * Plugin JavaScript and JQuery code for the admin pages of website
3
  *
4
  * @package All Meta Tags
5
  * @uthor Arthur Gareginyan
1
  /*
2
+ * Plugin JavaScript and jQuery code for the admin pages of website
3
  *
4
  * @package All Meta Tags
5
  * @uthor Arthur Gareginyan
inc/php/enqueue.php CHANGED
@@ -10,26 +10,34 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Load scripts and style sheet for settings page
12
  *
13
- * @since 4.1
14
  */
15
  function allmetatags_load_scripts_admin( $hook ) {
16
 
 
 
 
 
 
17
  // Return if the page is not a settings page of this plugin
18
- $settings_page = 'settings_page_' . ALLMT_SLUG;
19
  if ( $settings_page != $hook ) {
20
  return;
21
  }
22
 
 
 
 
23
  // Style sheet
24
- wp_enqueue_style( ALLMT_PREFIX . '-admin-css', ALLMT_URL . 'inc/css/admin.css' );
25
 
26
  // JavaScript
27
- wp_enqueue_script( ALLMT_PREFIX . '-admin-js', ALLMT_URL . 'inc/js/admin.js', array(), false, true );
28
 
29
  // Bootstrap library
30
- wp_enqueue_style( ALLMT_PREFIX . '-bootstrap-css', ALLMT_URL . 'inc/lib/bootstrap/bootstrap.css' );
31
- wp_enqueue_style( ALLMT_PREFIX . '-bootstrap-theme-css', ALLMT_URL . 'inc/lib/bootstrap/bootstrap-theme.css' );
32
- wp_enqueue_script( ALLMT_PREFIX . '-bootstrap-js', ALLMT_URL . 'inc/lib/bootstrap/bootstrap.js' );
33
 
34
  }
35
  add_action( 'admin_enqueue_scripts', ALLMT_PREFIX . '_load_scripts_admin' );
10
  /**
11
  * Load scripts and style sheet for settings page
12
  *
13
+ * @since 4.4
14
  */
15
  function allmetatags_load_scripts_admin( $hook ) {
16
 
17
+ // Put value of constants to variables for easier access
18
+ $slug = ALLMT_SLUG;
19
+ $prefix = ALLMT_PREFIX;
20
+ $url = ALLMT_URL;
21
+
22
  // Return if the page is not a settings page of this plugin
23
+ $settings_page = 'settings_page_' . $slug;
24
  if ( $settings_page != $hook ) {
25
  return;
26
  }
27
 
28
+ // Load jQuery library
29
+ wp_enqueue_script( 'jquery' );
30
+
31
  // Style sheet
32
+ wp_enqueue_style( $prefix . '-admin-css', $url . 'inc/css/admin.css' );
33
 
34
  // JavaScript
35
+ wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), false, true );
36
 
37
  // Bootstrap library
38
+ wp_enqueue_style( $prefix . '-bootstrap-css', $url . 'inc/lib/bootstrap/bootstrap.css' );
39
+ wp_enqueue_style( $prefix . '-bootstrap-theme-css', $url . 'inc/lib/bootstrap/bootstrap-theme.css' );
40
+ wp_enqueue_script( $prefix . '-bootstrap-js', $url . 'inc/lib/bootstrap/bootstrap.js' );
41
 
42
  }
43
  add_action( 'admin_enqueue_scripts', ALLMT_PREFIX . '_load_scripts_admin' );
inc/php/messages.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Hello message - Bootstrap Modal
12
  *
13
- * @since 4.1
14
  */
15
  function allmetatags_hello_message() {
16
 
@@ -29,7 +29,7 @@ function allmetatags_hello_message() {
29
  <button type="button" class="close" data-dismiss="modal">&times;</button>
30
  <p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', ALLMT_TEXT ); ?></p>
31
  <p><?php printf(
32
- __( 'Thank you for installing my plugin! I hope you will love it %s', ALLMT_TEXT ),
33
  '&#x1F603;'
34
  );
35
  ?></p>
10
  /**
11
  * Hello message - Bootstrap Modal
12
  *
13
+ * @since 4.3
14
  */
15
  function allmetatags_hello_message() {
16
 
29
  <button type="button" class="close" data-dismiss="modal">&times;</button>
30
  <p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', ALLMT_TEXT ); ?></p>
31
  <p><?php printf(
32
+ __( 'Thank you for installing my plugin! I hope you will love it! %s', ALLMT_TEXT ),
33
  '&#x1F603;'
34
  );
35
  ?></p>
inc/php/page.php CHANGED
@@ -10,10 +10,16 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Render Settings Page
12
  *
13
- * @since 4.1
14
  */
15
  function allmetatags_render_submenu_page() {
16
 
 
 
 
 
 
 
17
  // Call messages
18
  allmetatags_hello_message();
19
  allmetatags_error_message();
@@ -22,27 +28,28 @@ function allmetatags_render_submenu_page() {
22
  ?>
23
  <div class="wrap">
24
  <h2>
25
- <?php echo ALLMT_NAME; ?>
26
  <span>
27
  <?php printf(
28
- __( 'by %s Arthur Gareginyan %s', ALLMT_TEXT ),
29
  '<a href="http://www.arthurgareginyan.com" target="_blank">',
30
  '</a>'
31
  );
32
  ?>
33
  </span>
 
34
  </h2>
35
 
36
  <div id="poststuff" class="metabox-holder has-right-sidebar">
37
 
38
  <!-- TABS NAVIGATION MENU -->
39
  <ul class="tabs-nav">
40
- <li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Settings', ALLMT_TEXT ); ?></a></li>
41
- <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', ALLMT_TEXT ); ?></a></li>
42
- <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', ALLMT_TEXT ); ?></a></li>
43
- <li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', ALLMT_TEXT ); ?></a></li>
44
- <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', ALLMT_TEXT ); ?></a></li>
45
- <li><a href="#tab-family" data-toggle="tab"><?php _e( 'Family', ALLMT_TEXT ); ?></a></li>
46
  </ul>
47
  <!-- END-TABS NAVIGATION MENU -->
48
 
@@ -57,15 +64,17 @@ function allmetatags_render_submenu_page() {
57
  <!-- TAB 2 -->
58
  <div class="tab-page fade" id="tab-usage">
59
  <div class="postbox">
60
- <h3 class="title"><?php _e( 'Usage', ALLMT_TEXT ); ?></h3>
61
  <div class="inside">
62
- <p><?php _e( 'To add the meta tags to your website, simply follow these steps:', ALLMT_TEXT ); ?></p>
63
  <ol class="custom-counter">
64
- <li><?php _e( 'Go to the "Settings" tab.', ALLMT_TEXT ); ?></li>
65
- <li><?php _e( 'Fill in the required fields, select the desired settings and click the "Save Changes" button.', ALLMT_TEXT ); ?></li>
66
- <li><?php _e( 'Enjoy the improved SEO of your website.', ALLMT_TEXT ); ?> <?php _e( 'It\'s that simple!', ALLMT_TEXT ); ?></li>
 
 
67
  </ol>
68
- <p class="note"><b><?php _e( 'Note!', ALLMT_TEXT ); ?></b> <?php _e( 'If you want more options then tell me and I will be happy to add it.', ALLMT_TEXT ); ?></p>
69
  </div>
70
  </div>
71
  </div>
@@ -74,12 +83,16 @@ function allmetatags_render_submenu_page() {
74
  <!-- TAB 3 -->
75
  <div class="tab-page fade" id="tab-faq">
76
  <div class="postbox">
77
- <h3 class="title"><?php _e( 'Frequently Asked Questions', ALLMT_TEXT ); ?></h3>
78
  <div class="inside">
79
 
 
 
 
 
80
  <div class="panel-group" id="collapse-group">
81
  <?php
82
- $loopvalue = '14';
83
  for ( $i = 1; $i <= $loopvalue; $i++ ) {
84
  echo '<div class="panel panel-default">
85
  <div class="panel-heading">
@@ -96,30 +109,31 @@ function allmetatags_render_submenu_page() {
96
  ?>
97
  </div>
98
 
99
- <div class="question-1"><?php _e( 'Will this plugin work on my WordPress.COM website?', ALLMT_TEXT ); ?></div>
100
- <div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', ALLMT_TEXT ); ?></div>
101
 
102
- <div class="question-2"><?php _e( 'Can I use this plugin on my language?', ALLMT_TEXT ); ?></div>
103
  <div class="answer-2"><?php printf(
104
- __( 'Yes. But If your language is not available then you can make one. This plugin is ready for translation. The<code>.pot</code>file is included and placed in the <code>languages</code> folder. Many of plugin users would be delighted if you shared your translation with the community. Just send the translation files (<code>*.po, *.mo</code>) to me at the %s and I will include the translation within the next plugin update.', ALLMT_TEXT ),
105
- '<a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">arthurgareginyan@gmail.com</a>'
106
  );
107
- ?></div>
 
108
 
109
- <div class="question-3"><?php _e( 'How does it work?', ALLMT_TEXT ); ?></div>
110
- <div class="answer-3"><?php _e( 'On the "Settings" tab, fill in the required fields, select the desired settings and click the "Save Changes" button. Enjoy the improved SEO of your website. It\'s that simple!', ALLMT_TEXT ); ?></div>
111
 
112
- <div class="question-4"><?php _e( 'How much of description I can enter in the text field?', ALLMT_TEXT ); ?></div>
113
- <div class="answer-4"><?php _e( 'I don\'t limit the number of characters, but most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ); ?></div>
114
 
115
- <div class="question-5"><?php _e( 'How much of keywords I can enter in the text field?', ALLMT_TEXT ); ?></div>
116
- <div class="answer-5"><?php _e( 'I don\'t limit the number of characters.', ALLMT_TEXT ); ?></div>
117
 
118
- <div class="question-6 question-red"><?php _e( 'I can\'t get verify my website. What am I doing wrong?', ALLMT_TEXT ); ?></div>
119
- <div class="answer-6"><?php _e( 'The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag (<code>&lt;meta name="google-site-verification" content=“1234567890” /&gt;</code>). So just paste that into the relevant field and you will see “Success” message appear within a few seconds.', ALLMT_TEXT ); ?></div>
120
 
121
- <div class="question-7"><?php _e( 'What about compatibility with plugin "All in One SEO Pack"?', ALLMT_TEXT ); ?></div>
122
- <div class="answer-7"><?php _e( 'To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:', ALLMT_TEXT ); ?>
123
  <pre><code>&lt;head&gt;
124
  ...
125
  &lt;meta name="copyright" content="Copyright (c) 2013-2017 Arthur Gareginyan. All Rights Reserved."&gt;
@@ -127,45 +141,51 @@ function allmetatags_render_submenu_page() {
127
  &lt;meta name="copyright" content="Copyright 2017 Arthur Gareginyan. All Rights Reserved."&gt;
128
  ...
129
  &lt;/head&gt;</code></pre>
130
- <?php _e( 'In the rest, the "All Meta Tags" and "All in One SEO Pack" is compatible.', ALLMT_TEXT ); ?></div>
131
 
132
- <div class="question-8"><?php _e( 'Does this plugin requires any modification of the theme?', ALLMT_TEXT ); ?></div>
133
- <div class="answer-8"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', ALLMT_TEXT ); ?></div>
134
 
135
- <div class="question-9"><?php _e( 'Does this require any knowledge of HTML or CSS?', ALLMT_TEXT ); ?></div>
136
- <div class="answer-9"><?php _e( 'Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', ALLMT_TEXT ); ?></div>
137
 
138
- <div class="question-10 question-red"><?php _e( 'It\'s not working. What could be wrong?', ALLMT_TEXT ); ?></div>
139
- <div class="answer-10"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache.​ Clearing your browser\'s cache may solve the problem.', ALLMT_TEXT ); ?><br><br>
140
- <?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org, I\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.', ALLMT_TEXT ); ?></div>
141
 
142
- <div class="question-11 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', ALLMT_TEXT ); ?></div>
143
- <div class="answer-11"><?php _e( 'This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.', ALLMT_TEXT ); ?></div>
144
 
145
- <div class="question-12 question-red"><?php _e( 'Where to report bug if found?', ALLMT_TEXT ); ?></div>
146
  <div class="answer-12"><?php printf(
147
- __( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.', ALLMT_TEXT ),
148
- '<a href="https://github.com/ArthurGareginyan/all-meta-tags" target="_blank">',
149
  '</a>'
150
  );
151
  ?></div>
152
 
153
- <div class="question-13"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', ALLMT_TEXT ); ?></div>
154
  <div class="answer-13"><?php printf(
155
- __( 'Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!', ALLMT_TEXT ),
156
- '<a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">',
157
- '</a>'
158
  );
159
  ?></div>
160
 
161
- <div class="question-14"><?php _e( 'I love this plugin! Can I help somehow?', ALLMT_TEXT ); ?></div>
162
  <div class="answer-14"><?php printf(
163
- __( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', ALLMT_TEXT ),
164
  '<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
165
  '</a>'
166
  );
167
  ?></div>
168
 
 
 
 
 
 
 
 
169
  </div>
170
  </div>
171
  </div>
@@ -174,7 +194,7 @@ function allmetatags_render_submenu_page() {
174
  <!-- TAB 4 -->
175
  <div class="tab-page fade" id="tab-author">
176
  <div class="postbox">
177
- <h3 class="title"><?php _e( 'Author', ALLMT_TEXT ); ?></h3>
178
  <div class="inside include-tab-author"></div>
179
  </div>
180
  </div>
@@ -183,7 +203,7 @@ function allmetatags_render_submenu_page() {
183
  <!-- TAB 5 -->
184
  <div class="tab-page fade" id="tab-support">
185
  <div class="postbox">
186
- <h3 class="title"><?php _e( 'Support', ALLMT_TEXT ); ?></h3>
187
  <div class="inside include-tab-support"></div>
188
  </div>
189
  </div>
10
  /**
11
  * Render Settings Page
12
  *
13
+ * @since 4.4
14
  */
15
  function allmetatags_render_submenu_page() {
16
 
17
+ // Put value of constants to variables for easier access
18
+ $name = ALLMT_NAME;
19
+ $slug = ALLMT_SLUG;
20
+ $version = ALLMT_VERSION;
21
+ $text = ALLMT_TEXT;
22
+
23
  // Call messages
24
  allmetatags_hello_message();
25
  allmetatags_error_message();
28
  ?>
29
  <div class="wrap">
30
  <h2>
31
+ <?php echo $name; ?>
32
  <span>
33
  <?php printf(
34
+ __( 'by %s Arthur Gareginyan %s', $text ),
35
  '<a href="http://www.arthurgareginyan.com" target="_blank">',
36
  '</a>'
37
  );
38
  ?>
39
  </span>
40
+ <p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
41
  </h2>
42
 
43
  <div id="poststuff" class="metabox-holder has-right-sidebar">
44
 
45
  <!-- TABS NAVIGATION MENU -->
46
  <ul class="tabs-nav">
47
+ <li class="active"><a href="#tab-core" data-toggle="tab"><?php _e( 'Settings', $text ); ?></a></li>
48
+ <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
49
+ <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
50
+ <li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', $text ); ?></a></li>
51
+ <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
52
+ <li><a href="#tab-family" data-toggle="tab"><?php _e( 'Family', $text ); ?></a></li>
53
  </ul>
54
  <!-- END-TABS NAVIGATION MENU -->
55
 
64
  <!-- TAB 2 -->
65
  <div class="tab-page fade" id="tab-usage">
66
  <div class="postbox">
67
+ <h3 class="title"><?php _e( 'Usage', $text ); ?></h3>
68
  <div class="inside">
69
+ <p><?php _e( 'To add the meta tags to your website, simply follow these steps:', $text ); ?></p>
70
  <ol class="custom-counter">
71
+ <li><?php _e( 'Go to the "Settings" tab.', $text ); ?></li>
72
+ <li><?php _e( 'Fill in the required fields.', $text ); ?></li>
73
+ <li><?php _e( 'Select the desired settings.', $text ); ?></li>
74
+ <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
75
+ <li><?php _e( 'Enjoy the improved SEO of your website.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
76
  </ol>
77
+ <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php _e( 'If you want more options then tell me and I will be happy to add it.', $text ); ?></p>
78
  </div>
79
  </div>
80
  </div>
83
  <!-- TAB 3 -->
84
  <div class="tab-page fade" id="tab-faq">
85
  <div class="postbox">
86
+ <h3 class="title"><?php _e( 'Frequently Asked Questions', $text ); ?></h3>
87
  <div class="inside">
88
 
89
+ <p class="note">
90
+ <?php _e( 'If you have a question, please read the Frequently Asked Questions below to see if the answer is here.', $text ); ?>
91
+ </p>
92
+
93
  <div class="panel-group" id="collapse-group">
94
  <?php
95
+ $loopvalue = '15';
96
  for ( $i = 1; $i <= $loopvalue; $i++ ) {
97
  echo '<div class="panel panel-default">
98
  <div class="panel-heading">
109
  ?>
110
  </div>
111
 
112
+ <div class="question-1"><?php _e( 'Will this plugin work on my WordPress.COM website?', $text ); ?></div>
113
+ <div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', $text ); ?></div>
114
 
115
+ <div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
116
  <div class="answer-2"><?php printf(
117
+ __( 'Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the <code>languages</code> folder. Just send the PO file to me at the %s and I will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!', $text ),
118
+ '<a href="mailto:arthurgareginyan@gmail.com?subject=New translation of the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
119
  );
120
+ ?><br><br>
121
+ <?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?></div>
122
 
123
+ <div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
124
+ <div class="answer-3"><?php _e( 'On the "Settings" tab, fill in the required fields, select the desired settings and click the "Save changes" button. Enjoy the improved SEO of your website. It\'s that simple!', $text ); ?></div>
125
 
126
+ <div class="question-4"><?php _e( 'How much of description I can enter in the text field?', $text ); ?></div>
127
+ <div class="answer-4"><?php _e( 'I don\'t limit the number of characters, but most search engines use a maximum of 160 chars for the home description.', $text ); ?></div>
128
 
129
+ <div class="question-5"><?php _e( 'How much of keywords I can enter in the text field?', $text ); ?></div>
130
+ <div class="answer-5"><?php _e( 'I don\'t limit the number of characters.', $text ); ?></div>
131
 
132
+ <div class="question-6 question-red"><?php _e( 'I can\'t get verify my website. What am I doing wrong?', $text ); ?></div>
133
+ <div class="answer-6"><?php _e( 'The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag (<code>&lt;meta name="google-site-verification" content=“1234567890” /&gt;</code>). So just paste that into the relevant field and you will see “Success” message appear within a few seconds.', $text ); ?></div>
134
 
135
+ <div class="question-7"><?php _e( 'What about compatibility with plugin "All in One SEO Pack"?', $text ); ?></div>
136
+ <div class="answer-7"><?php _e( 'To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:', $text ); ?>
137
  <pre><code>&lt;head&gt;
138
  ...
139
  &lt;meta name="copyright" content="Copyright (c) 2013-2017 Arthur Gareginyan. All Rights Reserved."&gt;
141
  &lt;meta name="copyright" content="Copyright 2017 Arthur Gareginyan. All Rights Reserved."&gt;
142
  ...
143
  &lt;/head&gt;</code></pre>
144
+ <?php _e( 'In the rest, the "All Meta Tags" and "All in One SEO Pack" is compatible.', $text ); ?></div>
145
 
146
+ <div class="question-8"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
147
+ <div class="answer-8"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
148
 
149
+ <div class="question-9"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
150
+ <div class="answer-9"><?php _e( 'Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?></div>
151
 
152
+ <div class="question-10 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
153
+ <div class="answer-10"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache.​ Clearing your browser\'s cache may solve the problem.', $text ); ?><br><br>
154
+ <?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org, I\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?></div>
155
 
156
+ <div class="question-11 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
157
+ <div class="answer-11"><?php _e( 'This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.', $text ); ?></div>
158
 
159
+ <div class="question-12 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
160
  <div class="answer-12"><?php printf(
161
+ __( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.', $text ),
162
+ '<a href="https://github.com/ArthurGareginyan/' . $slug . '" target="_blank">',
163
  '</a>'
164
  );
165
  ?></div>
166
 
167
+ <div class="question-13"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
168
  <div class="answer-13"><?php printf(
169
+ __( 'Any suggestions are very welcome! Please send me an email to %s. Thank you!', $text ),
170
+ '<a href="mailto:arthurgareginyan@gmail.com?subject=Suggestions about the ' . $name . '">arthurgareginyan@gmail.com</a>'
 
171
  );
172
  ?></div>
173
 
174
+ <div class="question-14"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
175
  <div class="answer-14"><?php printf(
176
+ __( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', $text ),
177
  '<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
178
  '</a>'
179
  );
180
  ?></div>
181
 
182
+ <div class="question-15"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
183
+ <div class="answer-15"><?php printf(
184
+ __( 'You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and there is no a special support team, so I have no way to answer everyone.', $text ),
185
+ '<a href="https://wordpress.org/support/plugin/' . $slug . '/" target="_blank">here</a>'
186
+ );
187
+ ?></div>
188
+
189
  </div>
190
  </div>
191
  </div>
194
  <!-- TAB 4 -->
195
  <div class="tab-page fade" id="tab-author">
196
  <div class="postbox">
197
+ <h3 class="title"><?php _e( 'Author', $text ); ?></h3>
198
  <div class="inside include-tab-author"></div>
199
  </div>
200
  </div>
203
  <!-- TAB 5 -->
204
  <div class="tab-page fade" id="tab-support">
205
  <div class="postbox">
206
+ <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
207
  <div class="inside include-tab-support"></div>
208
  </div>
209
  </div>
inc/php/settings.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Render Settings Tab
12
  *
13
- * @since 4.3
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
@@ -18,27 +18,25 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
18
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
19
 
20
  <div id="about" class="postbox">
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
 
28
  <div id="support" class="postbox">
29
- <h3 class="title"><?php _e( 'Support', ALLMT_TEXT ); ?></h3>
30
  <div class="inside">
31
- <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', ALLMT_TEXT ); ?></p>
32
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', ALLMT_TEXT ); ?></a>
33
- <p><?php _e( 'Thanks for your support!', ALLMT_TEXT ); ?></p>
34
  </div>
35
  </div>
36
 
37
  <div id="help" class="postbox">
38
- <h3 class="title"><?php _e( 'Help', ALLMT_TEXT ); ?></h3>
39
  <div class="inside">
40
- <p><?php _e( 'Got something to say? Need help?', ALLMT_TEXT ); ?></p>
41
- <p><a href="mailto:arthurgareginyan@gmail.com?subject=<?php echo ALLMT_NAME; ?>">arthurgareginyan@gmail.com</a></p>
42
  </div>
43
  </div>
44
 
@@ -55,168 +53,178 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
55
  <?php settings_fields( ALLMT_SETTINGS . '_settings_group' ); ?>
56
 
57
  <div class="postbox" id="WebMasterTools">
58
- <h3 class="title"><?php _e( 'Web Master Tools', ALLMT_TEXT ); ?></h3>
59
  <div class="inside">
60
- <p class="note"><?php _e( 'Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', ALLMT_TEXT ); ?></p>
61
  <table class="form-table">
62
  <?php allmetatags_field('google',
63
  'Google Webmaster Tools',
64
  '1234567890',
65
- __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="google-site-verification" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
66
  'https://www.google.com/webmasters/verification/'); ?>
67
  <?php allmetatags_field('bing',
68
  'Bing Webmaster Tools',
69
  '1234567890',
70
- __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="msvalidate.01" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
71
  'http://www.bing.com/webmaster/'); ?>
72
  <?php allmetatags_field('yandex',
73
  'Yandex Webmaster Tools',
74
  '1234567890',
75
- __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="yandex-verification" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
76
  'https://webmaster.yandex.com'); ?>
77
  </table>
78
- <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
 
 
79
  </div>
80
  </div>
81
 
82
  <div class="postbox" id="DomainVerification">
83
- <h3 class="title"><?php _e( 'Domain Verification', ALLMT_TEXT ); ?></h3>
84
  <div class="inside">
85
- <p class="note"><?php _e( 'Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', ALLMT_TEXT ); ?></p>
86
  <table class="form-table">
87
  <?php allmetatags_field('pinterest',
88
  'Pinterest',
89
  '1234567890',
90
- __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="p:domain_verify" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
91
  'https://help.pinterest.com/en/articles/confirm-your-website'); ?>
92
  <?php allmetatags_field('google_author',
93
  'Google+',
94
  'https://plus.google.com/+ArthurGareginyan/',
95
- __( 'Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+ArthurGareginyan/', ALLMT_TEXT ),
96
  'https://plus.google.com/'); ?>
97
  <?php allmetatags_field('facebook',
98
  'Facebook',
99
  'https://www.facebook.com/arthur.gareginyan',
100
- __( 'Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur.gareginyan', ALLMT_TEXT ),
101
  'https://www.facebook.com/'); ?>
102
  <?php allmetatags_field('twitter',
103
  'Twitter',
104
  '@AGareginyan',
105
- __( 'Enter the Twitter username of the publisher. <br>Example: @AGareginyan', ALLMT_TEXT ),
106
  'https://twitter.com/'); ?>
107
  <?php allmetatags_field('alexa',
108
  'Alexa',
109
  '1234567890',
110
- __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="alexaVerifyID" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
111
  'http://www.alexa.com/siteowners/claim'); ?>
112
  <?php allmetatags_field('norton',
113
  'Norton Safe Web',
114
  '1234567890',
115
- __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
116
  'https://safeweb.norton.com/help/site_owners'); ?>
117
  <?php allmetatags_field('wot',
118
  'Web of Trust (WOT)',
119
  '1234567890',
120
- __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="wot-verification" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
121
  'https://www.mywot.com/wiki/Verify_your_website'); ?>
122
  <?php allmetatags_field('specificfeeds',
123
  'SpecificFeeds',
124
  '1234567890',
125
- __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="specificfeeds-verification-code" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
126
  'https://www.specificfeeds.com/rss?pub=2jcpuERsm61dbHbp2czf9A'); ?>
127
  <?php allmetatags_field('custom_meta',
128
- __( 'Custom Meta Tags', ALLMT_TEXT ),
129
  '&lt;meta name="google-site-verification" content=“1234567890” /&gt;',
130
- __( '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 multiple meta tags.', ALLMT_TEXT ),
131
  '',
132
  'textarea'); ?>
133
  </table>
134
- <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
 
 
135
  </div>
136
  </div>
137
 
138
  <div class="postbox" id="Home">
139
- <h3 class="title"><?php _e( 'Meta Tags for Static Home Page only', ALLMT_TEXT ); ?></h3>
140
  <div class="inside">
141
- <p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', ALLMT_TEXT ); ?></p>
142
  <table class="form-table">
143
  <?php allmetatags_field('home_description',
144
- __( 'Home Description', ALLMT_TEXT ),
145
  'My website is about plants, nature, the sea and everything I love',
146
- __( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ),
147
  '',
148
  'textarea'); ?>
149
  <?php allmetatags_field('home_keywords',
150
- __( 'Home Keyword(s)', ALLMT_TEXT ),
151
  'blog, awesome, handmade, books, theater',
152
- __( 'Enter a comma-delimited list of keywords for only Static Home Page of your website.', ALLMT_TEXT ),
153
  '',
154
  'textarea'); ?>
155
  </table>
156
- <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
 
 
157
  </div>
158
  </div>
159
 
160
  <div class="postbox" id="Blog">
161
- <h3 class="title"><?php _e( 'Meta Tags for Default Home Page and Blog Page only', ALLMT_TEXT ); ?></h3>
162
  <div class="inside">
163
- <p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', ALLMT_TEXT ); ?></p>
164
  <table class="form-table">
165
  <?php allmetatags_field('blog_description',
166
- __( 'Blog Description', ALLMT_TEXT ),
167
  'My blog is about plants, nature, the sea and everything I love',
168
- __( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ),
169
  '',
170
  'textarea'); ?>
171
  <?php allmetatags_field('blog_keywords',
172
- __( 'Blog Keyword(s)', ALLMT_TEXT ),
173
  'blog, awesome, handmade, books, theater',
174
- __( 'Enter a comma-delimited list of keywords for only Blog Page of your website.', ALLMT_TEXT ),
175
  '',
176
  'textarea'); ?>
177
  </table>
178
- <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
 
 
179
  </div>
180
  </div>
181
 
182
  <div class="postbox" id="Everywhere">
183
- <h3 class="title"><?php _e( 'Meta Tags for all website (Global)', ALLMT_TEXT ); ?></h3>
184
  <div class="inside">
185
- <p class="note"><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', ALLMT_TEXT ); ?></p>
186
  <table class="form-table">
187
  <?php allmetatags_field('author',
188
- __( 'Author', ALLMT_TEXT ),
189
  'Arthur Gareginyan',
190
  '',
191
  ''); ?>
192
  <?php allmetatags_field('designer',
193
- __( 'Designer', ALLMT_TEXT ),
194
  'Arthur Gareginyan',
195
  '',
196
  ''); ?>
197
  <?php allmetatags_field('contact',
198
- __( 'Contact', ALLMT_TEXT ),
199
- 'arthurgareginyan@gmail.com',
200
  ''); ?>
201
  <?php allmetatags_field('copyright',
202
- __( 'Copyright', ALLMT_TEXT ),
203
- 'Copyright (c) 2013-2016 Arthur Gareginyan. All Rights Reserved.',
204
  ''); ?>
205
  <?php allmetatags_field('keywords',
206
- __( 'Keyword(s)', ALLMT_TEXT ),
207
  'blog, awesome, handmade, books, theater',
208
- __( 'Enter a comma-delimited list of global keywords for your website.', ALLMT_TEXT ),
209
  '',
210
  'textarea'); ?>
211
  </table>
212
- <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
 
 
213
  </div>
214
  </div>
215
 
216
  <div class="postbox" id="WooCommerce">
217
- <h3 class="title"><?php _e( 'WooCommerce & Google Shopping', ALLMT_TEXT ); ?></h3>
218
  <div class="inside">
219
- <p><?php _e( 'This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website. Here is the markup for women\'s T-shirt that sells for 16 dollars and 80 cents of US.', ALLMT_TEXT ); ?></p>
220
  <pre>&lt;div itemtype=&quot;http://schema.org/Product&quot; itemscope=&quot;&quot;&gt;
221
  &lt;meta itemprop=&quot;name&quot; content=&quot;Womens T-shirt&quot;&gt;
222
  &lt;meta itemprop=&quot;description&quot; content=&quot;Constructed in cotton sweat fabric, this lovely piece...&quot;&gt;
@@ -226,16 +234,16 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
226
  &lt;meta itemprop=&quot;priceCurrency&quot; content=&quot;USD&quot;&gt;
227
  &lt;/div&gt;
228
  &lt;/div&gt;</pre>
229
- <p><?php _e( 'Check these data generated on the pages of your website you can <a href="https://search.google.com/structured-data/testing-tool" target="_blank">here</a>.', ALLMT_TEXT ); ?></p>
230
  </div>
231
  </div>
232
 
233
  <div class="postbox" id="support-addition">
234
- <h3 class="title"><?php _e( 'Support', ALLMT_TEXT ); ?></h3>
235
  <div class="inside">
236
- <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', ALLMT_TEXT ); ?></p>
237
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', ALLMT_TEXT ); ?></a>
238
- <p><?php _e( 'Thanks for your support!', ALLMT_TEXT ); ?></p>
239
  </div>
240
  </div>
241
 
10
  /**
11
  * Render Settings Tab
12
  *
13
+ * @since 4.4
14
  */
15
  ?>
16
  <!-- SIDEBAR -->
18
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
19
 
20
  <div id="about" class="postbox">
21
+ <h3 class="title"><?php _e( 'About', $text ); ?></h3>
22
  <div class="inside">
23
+ <p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', $text ); ?></p>
 
24
  </div>
25
  </div>
26
 
27
  <div id="support" class="postbox">
28
+ <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
29
  <div class="inside">
30
+ <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
31
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', $text ); ?></a>
32
+ <p><?php _e( 'Thanks for your support!', $text ); ?></p>
33
  </div>
34
  </div>
35
 
36
  <div id="help" class="postbox">
37
+ <h3 class="title"><?php _e( 'Help', $text ); ?></h3>
38
  <div class="inside">
39
+ <p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
 
40
  </div>
41
  </div>
42
 
53
  <?php settings_fields( ALLMT_SETTINGS . '_settings_group' ); ?>
54
 
55
  <div class="postbox" id="WebMasterTools">
56
+ <h3 class="title"><?php _e( 'Web Master Tools', $text ); ?></h3>
57
  <div class="inside">
58
+ <p class="note"><?php _e( 'Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', $text ); ?></p>
59
  <table class="form-table">
60
  <?php allmetatags_field('google',
61
  'Google Webmaster Tools',
62
  '1234567890',
63
+ __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="google-site-verification" content=“<b>1234567890</b>” /&gt;', $text ),
64
  'https://www.google.com/webmasters/verification/'); ?>
65
  <?php allmetatags_field('bing',
66
  'Bing Webmaster Tools',
67
  '1234567890',
68
+ __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="msvalidate.01" content=“<b>1234567890</b>” /&gt;', $text ),
69
  'http://www.bing.com/webmaster/'); ?>
70
  <?php allmetatags_field('yandex',
71
  'Yandex Webmaster Tools',
72
  '1234567890',
73
+ __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="yandex-verification" content=“<b>1234567890</b>” /&gt;', $text ),
74
  'https://webmaster.yandex.com'); ?>
75
  </table>
76
+
77
+ <?php submit_button( __( 'Save changes', $text ), 'primary', 'submit', true ); ?>
78
+
79
  </div>
80
  </div>
81
 
82
  <div class="postbox" id="DomainVerification">
83
+ <h3 class="title"><?php _e( 'Domain Verification', $text ); ?></h3>
84
  <div class="inside">
85
+ <p class="note"><?php _e( 'Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', $text ); ?></p>
86
  <table class="form-table">
87
  <?php allmetatags_field('pinterest',
88
  'Pinterest',
89
  '1234567890',
90
+ __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="p:domain_verify" content=“<b>1234567890</b>” /&gt;', $text ),
91
  'https://help.pinterest.com/en/articles/confirm-your-website'); ?>
92
  <?php allmetatags_field('google_author',
93
  'Google+',
94
  'https://plus.google.com/+ArthurGareginyan/',
95
+ __( 'Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+ArthurGareginyan/', $text ),
96
  'https://plus.google.com/'); ?>
97
  <?php allmetatags_field('facebook',
98
  'Facebook',
99
  'https://www.facebook.com/arthur.gareginyan',
100
+ __( 'Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur.gareginyan', $text ),
101
  'https://www.facebook.com/'); ?>
102
  <?php allmetatags_field('twitter',
103
  'Twitter',
104
  '@AGareginyan',
105
+ __( 'Enter the Twitter username of the publisher. <br>Example: @AGareginyan', $text ),
106
  'https://twitter.com/'); ?>
107
  <?php allmetatags_field('alexa',
108
  'Alexa',
109
  '1234567890',
110
+ __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="alexaVerifyID" content=“<b>1234567890</b>” /&gt;', $text ),
111
  'http://www.alexa.com/siteowners/claim'); ?>
112
  <?php allmetatags_field('norton',
113
  'Norton Safe Web',
114
  '1234567890',
115
+ __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” /&gt;', $text ),
116
  'https://safeweb.norton.com/help/site_owners'); ?>
117
  <?php allmetatags_field('wot',
118
  'Web of Trust (WOT)',
119
  '1234567890',
120
+ __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="wot-verification" content=“<b>1234567890</b>” /&gt;', $text ),
121
  'https://www.mywot.com/wiki/Verify_your_website'); ?>
122
  <?php allmetatags_field('specificfeeds',
123
  'SpecificFeeds',
124
  '1234567890',
125
+ __( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta name="specificfeeds-verification-code" content=“<b>1234567890</b>” /&gt;', $text ),
126
  'https://www.specificfeeds.com/rss?pub=2jcpuERsm61dbHbp2czf9A'); ?>
127
  <?php allmetatags_field('custom_meta',
128
+ __( 'Custom Meta Tags', $text ),
129
  '&lt;meta name="google-site-verification" content=“1234567890” /&gt;',
130
+ __( '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 multiple meta tags.', $text ),
131
  '',
132
  'textarea'); ?>
133
  </table>
134
+
135
+ <?php submit_button( __( 'Save changes', $text ), 'primary', 'submit', true ); ?>
136
+
137
  </div>
138
  </div>
139
 
140
  <div class="postbox" id="Home">
141
+ <h3 class="title"><?php _e( 'Meta Tags for Static Home Page only', $text ); ?></h3>
142
  <div class="inside">
143
+ <p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', $text ); ?></p>
144
  <table class="form-table">
145
  <?php allmetatags_field('home_description',
146
+ __( 'Home Description', $text ),
147
  'My website is about plants, nature, the sea and everything I love',
148
+ __( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', $text ),
149
  '',
150
  'textarea'); ?>
151
  <?php allmetatags_field('home_keywords',
152
+ __( 'Home Keyword(s)', $text ),
153
  'blog, awesome, handmade, books, theater',
154
+ __( 'Enter a comma-delimited list of keywords for only Static Home Page of your website.', $text ),
155
  '',
156
  'textarea'); ?>
157
  </table>
158
+
159
+ <?php submit_button( __( 'Save changes', $text ), 'primary', 'submit', true ); ?>
160
+
161
  </div>
162
  </div>
163
 
164
  <div class="postbox" id="Blog">
165
+ <h3 class="title"><?php _e( 'Meta Tags for Default Home Page and Blog Page only', $text ); ?></h3>
166
  <div class="inside">
167
+ <p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', $text ); ?></p>
168
  <table class="form-table">
169
  <?php allmetatags_field('blog_description',
170
+ __( 'Blog Description', $text ),
171
  'My blog is about plants, nature, the sea and everything I love',
172
+ __( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', $text ),
173
  '',
174
  'textarea'); ?>
175
  <?php allmetatags_field('blog_keywords',
176
+ __( 'Blog Keyword(s)', $text ),
177
  'blog, awesome, handmade, books, theater',
178
+ __( 'Enter a comma-delimited list of keywords for only Blog Page of your website.', $text ),
179
  '',
180
  'textarea'); ?>
181
  </table>
182
+
183
+ <?php submit_button( __( 'Save changes', $text ), 'primary', 'submit', true ); ?>
184
+
185
  </div>
186
  </div>
187
 
188
  <div class="postbox" id="Everywhere">
189
+ <h3 class="title"><?php _e( 'Meta Tags for all website (Global)', $text ); ?></h3>
190
  <div class="inside">
191
+ <p class="note"><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', $text ); ?></p>
192
  <table class="form-table">
193
  <?php allmetatags_field('author',
194
+ __( 'Author', $text ),
195
  'Arthur Gareginyan',
196
  '',
197
  ''); ?>
198
  <?php allmetatags_field('designer',
199
+ __( 'Designer', $text ),
200
  'Arthur Gareginyan',
201
  '',
202
  ''); ?>
203
  <?php allmetatags_field('contact',
204
+ __( 'Contact', $text ),
205
+ 'user@gmail.com',
206
  ''); ?>
207
  <?php allmetatags_field('copyright',
208
+ __( 'Copyright', $text ),
209
+ 'Copyright (c) 2013-2017 Arthur Gareginyan. All Rights Reserved.',
210
  ''); ?>
211
  <?php allmetatags_field('keywords',
212
+ __( 'Keyword(s)', $text ),
213
  'blog, awesome, handmade, books, theater',
214
+ __( 'Enter a comma-delimited list of global keywords for your website.', $text ),
215
  '',
216
  'textarea'); ?>
217
  </table>
218
+
219
+ <?php submit_button( __( 'Save changes', $text ), 'primary', 'submit', true ); ?>
220
+
221
  </div>
222
  </div>
223
 
224
  <div class="postbox" id="WooCommerce">
225
+ <h3 class="title"><?php _e( 'WooCommerce & Google Shopping', $text ); ?></h3>
226
  <div class="inside">
227
+ <p><?php _e( 'This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website. Here is the markup for women\'s T-shirt that sells for 16 dollars and 80 cents of US.', $text ); ?></p>
228
  <pre>&lt;div itemtype=&quot;http://schema.org/Product&quot; itemscope=&quot;&quot;&gt;
229
  &lt;meta itemprop=&quot;name&quot; content=&quot;Womens T-shirt&quot;&gt;
230
  &lt;meta itemprop=&quot;description&quot; content=&quot;Constructed in cotton sweat fabric, this lovely piece...&quot;&gt;
234
  &lt;meta itemprop=&quot;priceCurrency&quot; content=&quot;USD&quot;&gt;
235
  &lt;/div&gt;
236
  &lt;/div&gt;</pre>
237
+ <p><?php _e( 'Check these data generated on the pages of your website you can <a href="https://search.google.com/structured-data/testing-tool" target="_blank">here</a>.', $text ); ?></p>
238
  </div>
239
  </div>
240
 
241
  <div class="postbox" id="support-addition">
242
+ <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
243
  <div class="inside">
244
+ <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
245
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="additional-button paypal"><?php _e( 'Donate with PayPal', $text ); ?></a>
246
+ <p><?php _e( 'Thanks for your support!', $text ); ?></p>
247
  </div>
248
  </div>
249
 
inc/php/versioning.php CHANGED
@@ -18,6 +18,7 @@ function allmetatags_versioning() {
18
  // SETTING VARIABLES //
19
  ///////////////////////////////////////////////////////////////////
20
 
 
21
  $version_files = ALLMT_VERSION;
22
  $settings = ALLMT_SETTINGS;
23
 
18
  // SETTING VARIABLES //
19
  ///////////////////////////////////////////////////////////////////
20
 
21
+ // Put value of constants to variables for easier access
22
  $version_files = ALLMT_VERSION;
23
  $settings = ALLMT_SETTINGS;
24
 
languages/Readme.txt CHANGED
@@ -2,10 +2,12 @@
2
  CONTRIBUTING YOUR TRANSLATION
3
 
4
 
5
- This plugin is ready for translation.
6
 
7
- If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags), or use the POT file, that is included and placed in the "languages" folder, in order to create a translation files (*.po, *.mo). Just send the translation files (*.po, *.mo) to me at the arthurgareginyan@gmail.com and I will include the translation within the next plugin update.
8
 
9
- Also you can use an existing PO file that placed in the "languages" folder, in order to make corrections.
 
 
10
 
11
  Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
2
  CONTRIBUTING YOUR TRANSLATION
3
 
4
 
5
+ This plugin is ready for translation and has already been translated into several languages.
6
 
7
+ If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags).
8
 
9
+ You can also use the POT file, that is included and placed in the "languages" folder, in order to create a translation PO file. Just send the PO file to me at the arthurgareginyan@gmail.com and I will include this translation within the next plugin update.
10
+
11
+ Maybe not all existed translations are up to date. You are welcome to contribute corrections!
12
 
13
  Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
languages/all-meta-tags-es_ES.mo CHANGED
Binary file
languages/all-meta-tags-es_ES.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Development (trunk)\n"
6
- "POT-Creation-Date: 2017-06-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"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: inc/php/core.php:31 inc/php/page.php:40
25
  msgid "Settings"
26
  msgstr "Ajustes"
27
 
@@ -35,7 +35,7 @@ msgstr ""
35
 
36
  #: inc/php/messages.php:32
37
  #, php-format
38
- msgid "Thank you for installing my plugin! I hope you will love it %s"
39
  msgstr ""
40
 
41
  #: inc/php/messages.php:67
@@ -46,117 +46,138 @@ msgstr ""
46
  msgid "Please update the plugin to the latest version, and all will be fine."
47
  msgstr ""
48
 
49
- #: inc/php/page.php:28
50
  #, php-format
51
  msgid "by %s Arthur Gareginyan %s"
52
  msgstr "por %s Arthur Gareginyan %s"
53
 
54
- #: inc/php/page.php:41 inc/php/page.php:60
 
 
 
 
55
  msgid "Usage"
56
  msgstr "Uso"
57
 
58
- #: inc/php/page.php:42
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
 
70
- #: inc/php/page.php:45
71
  msgid "Family"
72
  msgstr ""
73
 
74
- #: inc/php/page.php:62
75
  msgid "To add the meta tags to your website, simply follow these steps:"
76
  msgstr ""
77
 
78
- #: inc/php/page.php:64
79
  msgid "Go to the \"Settings\" tab."
80
  msgstr ""
81
 
82
- #: inc/php/page.php:65
83
- msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
 
 
 
 
 
 
 
 
84
  msgstr ""
85
 
86
- #: inc/php/page.php:66
87
  msgid "Enjoy the improved SEO of your website."
88
  msgstr ""
89
 
90
- #: inc/php/page.php:66
91
  msgid "It's that simple!"
92
  msgstr ""
93
 
94
- #: inc/php/page.php:68
95
  msgid "Note!"
96
  msgstr ""
97
 
98
- #: inc/php/page.php:68
99
  msgid "If you want more options then tell me and I will be happy to add it."
100
  msgstr ""
101
 
102
- #: inc/php/page.php:77
103
  msgid "Frequently Asked Questions"
104
  msgstr ""
105
 
106
- #: inc/php/page.php:99
 
 
 
 
107
  msgid "Will this plugin work on my WordPress.COM website?"
108
  msgstr ""
109
 
110
- #: inc/php/page.php:100
111
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
112
  msgstr ""
113
 
114
- #: inc/php/page.php:102
115
  msgid "Can I use this plugin on my language?"
116
  msgstr ""
117
 
118
- #: inc/php/page.php:104
119
  #, php-format
120
  msgid ""
121
- "Yes. But If your language is not available then you can make one. This plugin is ready for translation. "
122
- "The<code>.pot</code>file is included and placed in the <code>languages</code> folder. Many of plugin users "
123
- "would be delighted if you shared your translation with the community. Just send the translation files "
124
- "(<code>*.po, *.mo</code>) to me at the %s and I will include the translation within the next plugin update."
 
125
  msgstr ""
126
 
127
- #: inc/php/page.php:109
 
 
 
 
128
  msgid "How does it work?"
129
  msgstr ""
130
 
131
- #: inc/php/page.php:110
132
  msgid ""
133
  "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save "
134
- "Changes\" button. Enjoy the improved SEO of your website. It's that simple!"
135
  msgstr ""
136
 
137
- #: inc/php/page.php:112
138
  msgid "How much of description I can enter in the text field?"
139
  msgstr ""
140
 
141
- #: inc/php/page.php:113
142
  msgid ""
143
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
144
  "description."
145
  msgstr ""
146
 
147
- #: inc/php/page.php:115
148
  msgid "How much of keywords I can enter in the text field?"
149
  msgstr ""
150
 
151
- #: inc/php/page.php:116
152
  msgid "I don't limit the number of characters."
153
  msgstr ""
154
 
155
- #: inc/php/page.php:118
156
  msgid "I can't get verify my website. What am I doing wrong?"
157
  msgstr ""
158
 
159
- #: inc/php/page.php:119
160
  msgid ""
161
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is "
162
  "confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the "
@@ -164,43 +185,43 @@ msgid ""
164
  "paste that into the relevant field and you will see “Success” message appear within a few seconds."
165
  msgstr ""
166
 
167
- #: inc/php/page.php:121
168
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
169
  msgstr ""
170
 
171
- #: inc/php/page.php:122
172
  msgid ""
173
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
174
  "plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
175
  msgstr ""
176
 
177
- #: inc/php/page.php:130
178
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
179
  msgstr ""
180
 
181
- #: inc/php/page.php:132
182
  msgid "Does this plugin requires any modification of the theme?"
183
  msgstr ""
184
 
185
- #: inc/php/page.php:133
186
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
187
  msgstr ""
188
 
189
- #: inc/php/page.php:135
190
  msgid "Does this require any knowledge of HTML or CSS?"
191
  msgstr ""
192
 
193
- #: inc/php/page.php:136
194
  msgid ""
195
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
196
  "settings page."
197
  msgstr ""
198
 
199
- #: inc/php/page.php:138
200
  msgid "It's not working. What could be wrong?"
201
  msgstr ""
202
 
203
- #: inc/php/page.php:139
204
  msgid ""
205
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web "
206
  "browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to "
@@ -208,19 +229,19 @@ msgid ""
208
  "may solve the problem."
209
  msgstr ""
210
 
211
- #: inc/php/page.php:140
212
  msgid ""
213
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's "
214
  "support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much "
215
  "information as possible, including a link to your website where the problem can be seen."
216
  msgstr ""
217
 
218
- #: inc/php/page.php:142
219
  msgid ""
220
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
221
  msgstr ""
222
 
223
- #: inc/php/page.php:143
224
  msgid ""
225
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. "
226
  "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or "
@@ -228,36 +249,46 @@ msgid ""
228
  "to the website, this too can help."
229
  msgstr ""
230
 
231
- #: inc/php/page.php:145
232
  msgid "Where to report bug if found?"
233
  msgstr ""
234
 
235
- #: inc/php/page.php:147
236
  #, php-format
237
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
238
  msgstr ""
239
 
240
- #: inc/php/page.php:153
241
  msgid "Where to share any ideas or suggestions to make the plugin better?"
242
  msgstr ""
243
 
244
- #: inc/php/page.php:155
245
  #, php-format
246
- msgid ""
247
- "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!"
248
  msgstr ""
249
 
250
- #: inc/php/page.php:161
251
  msgid "I love this plugin! Can I help somehow?"
252
  msgstr ""
253
 
254
- #: inc/php/page.php:163
255
  #, php-format
256
  msgid ""
257
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and "
258
  "thank you!"
259
  msgstr ""
260
 
 
 
 
 
 
 
 
 
 
 
 
261
  #: inc/php/settings.php:21
262
  msgid "About"
263
  msgstr "Acerca de"
@@ -266,11 +297,7 @@ 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: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,27 +306,27 @@ msgstr ""
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,7 +336,7 @@ msgstr ""
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,7 +344,7 @@ msgstr ""
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,7 +352,7 @@ msgstr ""
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,9 +360,9 @@ msgstr ""
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
@@ -426,11 +453,11 @@ msgstr ""
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,11 +465,11 @@ msgstr ""
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,21 +477,21 @@ msgstr ""
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,25 +499,25 @@ msgstr ""
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,31 +525,31 @@ msgstr ""
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,7 +559,7 @@ msgstr ""
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>."
@@ -561,7 +588,7 @@ msgstr "Arthur Gareginyan"
561
  msgid "http://www.arthurgareginyan.com"
562
  msgstr "http://www.arthurgareginyan.com"
563
 
564
- #~ msgid "To use, enter your custom Meta Tags, then click \"Save Changes\". It's that simple!"
565
  #~ msgstr ""
566
  #~ "Para usarlo, ingresa tus Meta Etiquetas personalizadas y haz clic en \"Guardar Cambios\". ¡Así de simple!"
567
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Development (trunk)\n"
6
+ "POT-Creation-Date: 2017-06-16 03:33+0300\n"
7
+ "PO-Revision-Date: 2017-06-16 03:33+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: inc/php/core.php:31 inc/php/page.php:47
25
  msgid "Settings"
26
  msgstr "Ajustes"
27
 
35
 
36
  #: inc/php/messages.php:32
37
  #, php-format
38
+ msgid "Thank you for installing my plugin! I hope you will love it! %s"
39
  msgstr ""
40
 
41
  #: inc/php/messages.php:67
46
  msgid "Please update the plugin to the latest version, and all will be fine."
47
  msgstr ""
48
 
49
+ #: inc/php/page.php:34
50
  #, php-format
51
  msgid "by %s Arthur Gareginyan %s"
52
  msgstr "por %s Arthur Gareginyan %s"
53
 
54
+ #: inc/php/page.php:40
55
+ msgid "Version"
56
+ msgstr ""
57
+
58
+ #: inc/php/page.php:48 inc/php/page.php:67
59
  msgid "Usage"
60
  msgstr "Uso"
61
 
62
+ #: inc/php/page.php:49
63
  msgid "F.A.Q."
64
  msgstr ""
65
 
66
+ #: inc/php/page.php:50 inc/php/page.php:197 inc/php/settings.php:194
67
  msgid "Author"
68
  msgstr "Autor"
69
 
70
+ #: inc/php/page.php:51 inc/php/page.php:206 inc/php/settings.php:28 inc/php/settings.php:242
71
  msgid "Support"
72
  msgstr "Soporte"
73
 
74
+ #: inc/php/page.php:52
75
  msgid "Family"
76
  msgstr ""
77
 
78
+ #: inc/php/page.php:69
79
  msgid "To add the meta tags to your website, simply follow these steps:"
80
  msgstr ""
81
 
82
+ #: inc/php/page.php:71
83
  msgid "Go to the \"Settings\" tab."
84
  msgstr ""
85
 
86
+ #: inc/php/page.php:72
87
+ msgid "Fill in the required fields."
88
+ msgstr ""
89
+
90
+ #: inc/php/page.php:73
91
+ msgid "Select the desired settings."
92
+ msgstr ""
93
+
94
+ #: inc/php/page.php:74
95
+ msgid "Click the \"Save changes\" button."
96
  msgstr ""
97
 
98
+ #: inc/php/page.php:75
99
  msgid "Enjoy the improved SEO of your website."
100
  msgstr ""
101
 
102
+ #: inc/php/page.php:75
103
  msgid "It's that simple!"
104
  msgstr ""
105
 
106
+ #: inc/php/page.php:77
107
  msgid "Note!"
108
  msgstr ""
109
 
110
+ #: inc/php/page.php:77
111
  msgid "If you want more options then tell me and I will be happy to add it."
112
  msgstr ""
113
 
114
+ #: inc/php/page.php:86
115
  msgid "Frequently Asked Questions"
116
  msgstr ""
117
 
118
+ #: inc/php/page.php:90
119
+ msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
120
+ msgstr ""
121
+
122
+ #: inc/php/page.php:112
123
  msgid "Will this plugin work on my WordPress.COM website?"
124
  msgstr ""
125
 
126
+ #: inc/php/page.php:113
127
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:115
131
  msgid "Can I use this plugin on my language?"
132
  msgstr ""
133
 
134
+ #: inc/php/page.php:117
135
  #, php-format
136
  msgid ""
137
+ "Yes. This plugin is ready for translation and has already been translated into several languages. But If "
138
+ "your language is not available then you can make one. The POT file is included and placed in the "
139
+ "<code>languages</code> folder. Just send the PO file to me at the %s and I will include this translation "
140
+ "within the next plugin update. Many of plugin users would be delighted if you share your translation with "
141
+ "the community. Thanks for your contribution!"
142
  msgstr ""
143
 
144
+ #: inc/php/page.php:121
145
+ msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
146
+ msgstr ""
147
+
148
+ #: inc/php/page.php:123
149
  msgid "How does it work?"
150
  msgstr ""
151
 
152
+ #: inc/php/page.php:124
153
  msgid ""
154
  "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save "
155
+ "changes\" button. Enjoy the improved SEO of your website. It's that simple!"
156
  msgstr ""
157
 
158
+ #: inc/php/page.php:126
159
  msgid "How much of description I can enter in the text field?"
160
  msgstr ""
161
 
162
+ #: inc/php/page.php:127
163
  msgid ""
164
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
165
  "description."
166
  msgstr ""
167
 
168
+ #: inc/php/page.php:129
169
  msgid "How much of keywords I can enter in the text field?"
170
  msgstr ""
171
 
172
+ #: inc/php/page.php:130
173
  msgid "I don't limit the number of characters."
174
  msgstr ""
175
 
176
+ #: inc/php/page.php:132
177
  msgid "I can't get verify my website. What am I doing wrong?"
178
  msgstr ""
179
 
180
+ #: inc/php/page.php:133
181
  msgid ""
182
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is "
183
  "confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the "
185
  "paste that into the relevant field and you will see “Success” message appear within a few seconds."
186
  msgstr ""
187
 
188
+ #: inc/php/page.php:135
189
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
190
  msgstr ""
191
 
192
+ #: inc/php/page.php:136
193
  msgid ""
194
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
195
  "plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
196
  msgstr ""
197
 
198
+ #: inc/php/page.php:144
199
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
200
  msgstr ""
201
 
202
+ #: inc/php/page.php:146
203
  msgid "Does this plugin requires any modification of the theme?"
204
  msgstr ""
205
 
206
+ #: inc/php/page.php:147
207
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
208
  msgstr ""
209
 
210
+ #: inc/php/page.php:149
211
  msgid "Does this require any knowledge of HTML or CSS?"
212
  msgstr ""
213
 
214
+ #: inc/php/page.php:150
215
  msgid ""
216
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
217
  "settings page."
218
  msgstr ""
219
 
220
+ #: inc/php/page.php:152
221
  msgid "It's not working. What could be wrong?"
222
  msgstr ""
223
 
224
+ #: inc/php/page.php:153
225
  msgid ""
226
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web "
227
  "browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to "
229
  "may solve the problem."
230
  msgstr ""
231
 
232
+ #: inc/php/page.php:154
233
  msgid ""
234
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's "
235
  "support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much "
236
  "information as possible, including a link to your website where the problem can be seen."
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:156
240
  msgid ""
241
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
242
  msgstr ""
243
 
244
+ #: inc/php/page.php:157
245
  msgid ""
246
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. "
247
  "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or "
249
  "to the website, this too can help."
250
  msgstr ""
251
 
252
+ #: inc/php/page.php:159
253
  msgid "Where to report bug if found?"
254
  msgstr ""
255
 
256
+ #: inc/php/page.php:161
257
  #, php-format
258
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
259
  msgstr ""
260
 
261
+ #: inc/php/page.php:167
262
  msgid "Where to share any ideas or suggestions to make the plugin better?"
263
  msgstr ""
264
 
265
+ #: inc/php/page.php:169
266
  #, php-format
267
+ msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:174
271
  msgid "I love this plugin! Can I help somehow?"
272
  msgstr ""
273
 
274
+ #: inc/php/page.php:176
275
  #, php-format
276
  msgid ""
277
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and "
278
  "thank you!"
279
  msgstr ""
280
 
281
+ #: inc/php/page.php:182
282
+ msgid "My question wasn't answered here."
283
+ msgstr ""
284
+
285
+ #: inc/php/page.php:184
286
+ #, php-format
287
+ msgid ""
288
+ "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, "
289
+ "and there is no a special support team, so I have no way to answer everyone."
290
+ msgstr ""
291
+
292
  #: inc/php/settings.php:21
293
  msgid "About"
294
  msgstr "Acerca de"
297
  msgid "This plugin allows you to easily add Meta Tags to your website."
298
  msgstr "Este plugin te permite añadir fácilmente Meta Etiquetas personalizadas a tu sitio web."
299
 
300
+ #: inc/php/settings.php:30 inc/php/settings.php:244
 
 
 
 
301
  msgid ""
302
  "I'm an independent developer, without a regular income, so every little contribution helps cover my costs "
303
  "and lets me spend more time building things for people like you to enjoy."
306
  "sea, me ayuda a cubrir mis gastos y me permite dedicar más tiempo para construir cosas que pueda disfrutar "
307
  "gente como tú."
308
 
309
+ #: inc/php/settings.php:31 inc/php/settings.php:245
310
  msgid "Donate with PayPal"
311
  msgstr ""
312
 
313
+ #: inc/php/settings.php:32 inc/php/settings.php:246
314
  msgid "Thanks for your support!"
315
  msgstr "¡Gracias por su colaboración!"
316
 
317
+ #: inc/php/settings.php:37
318
  msgid "Help"
319
  msgstr "Ayuda"
320
 
321
+ #: inc/php/settings.php:39
322
+ msgid "If you have a question, please read the information in the FAQ section."
323
  msgstr "¿Tienes algo que decir? ¿Necesitas ayuda?"
324
 
325
+ #: inc/php/settings.php:56
326
  msgid "Web Master Tools"
327
  msgstr "Web Master Tools"
328
 
329
+ #: inc/php/settings.php:58
330
  msgid ""
331
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your "
332
  "blog or store before they provide their services to you. You can use the options below to verify your "
336
  "antes de que ellos te brinden su servicio. Puedes usar las opciones que aparecen a continuación para "
337
  "verificar tu dominio. Si tu dominio ya está verificado, puedes obviar esto."
338
 
339
+ #: inc/php/settings.php:63
340
  msgid ""
341
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
342
  "meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
344
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
345
  "br>Ejemplo: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
346
 
347
+ #: inc/php/settings.php:68
348
  msgid ""
349
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
350
  "meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
352
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
353
  "br>Ejemplo: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
354
 
355
+ #: inc/php/settings.php:73
356
  msgid ""
357
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;"
358
  "meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
360
  "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </"
361
  "br>Ejemplo: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
362
 
363
+ #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159 inc/php/settings.php:183
364
+ #: inc/php/settings.php:219
365
+ msgid "Save changes"
366
  msgstr "Guardar los cambios"
367
 
368
  #: inc/php/settings.php:83
453
  "Si no encuentras un campo para introducir la meta etiqueta que requieres, puedes añadirla aquí. En este "
454
  "campo puedes agregar varias meta etiquetas."
455
 
456
+ #: inc/php/settings.php:141
457
  msgid "Meta Tags for Static Home Page only"
458
  msgstr "Meta etiquetas sólo para la página de inicio estática"
459
 
460
+ #: inc/php/settings.php:143
461
  msgid ""
462
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of "
463
  "your website."
465
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
466
  "sólo en la página de inicio de tu sitio web."
467
 
468
+ #: inc/php/settings.php:146
469
  msgid "Home Description"
470
  msgstr "Descripción del sitio"
471
 
472
+ #: inc/php/settings.php:148 inc/php/settings.php:172
473
  msgid ""
474
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 "
475
  "chars for the home description."
477
  "Ingresa una breve descripción de tu sitio web (Entre 150 y 250 caracteres). La mayoría de los motores de "
478
  "búsqueda usa un máximo de 160 caracteres para esta descripción."
479
 
480
+ #: inc/php/settings.php:152
481
  msgid "Home Keyword(s)"
482
  msgstr "Palabra(s) clave de la página de inicio"
483
 
484
+ #: inc/php/settings.php:154
485
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
486
  msgstr ""
487
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página estática de inicio "
488
  "de tu sitio web."
489
 
490
+ #: inc/php/settings.php:165
491
  msgid "Meta Tags for Default Home Page and Blog Page only"
492
  msgstr "Meta etiquetas sólo para la página de inicio y la del blog"
493
 
494
+ #: inc/php/settings.php:167
495
  msgid ""
496
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page "
497
  "and Blog Page of your website."
499
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave "
500
  "en la página de inicio y en la del blog de tu sitio web."
501
 
502
+ #: inc/php/settings.php:170
503
  msgid "Blog Description"
504
  msgstr "Descripción del blog"
505
 
506
+ #: inc/php/settings.php:176
507
  msgid "Blog Keyword(s)"
508
  msgstr "Palabra(s) clave del blog"
509
 
510
+ #: inc/php/settings.php:178
511
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
512
  msgstr ""
513
  "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio "
514
  "web."
515
 
516
+ #: inc/php/settings.php:189
517
  msgid "Meta Tags for all website (Global)"
518
  msgstr "Meta etiquetas para todo el sitio web (Globales)"
519
 
520
+ #: inc/php/settings.php:191
521
  msgid ""
522
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
523
  "website."
525
  "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Autor, Derechos Reservados y "
526
  "Palabras Clave en cualquier parte de tu sitio web."
527
 
528
+ #: inc/php/settings.php:199
529
  msgid "Designer"
530
  msgstr "Diseñador"
531
 
532
+ #: inc/php/settings.php:204
533
  msgid "Contact"
534
  msgstr "Contacto"
535
 
536
+ #: inc/php/settings.php:208
537
  msgid "Copyright"
538
  msgstr "Derechos reservados"
539
 
540
+ #: inc/php/settings.php:212
541
  msgid "Keyword(s)"
542
  msgstr "Palabra(s) clave"
543
 
544
+ #: inc/php/settings.php:214
545
  msgid "Enter a comma-delimited list of global keywords for your website."
546
  msgstr "Ingresa un listado, separado por comas, de las palabras clave globales para tu sitio web."
547
 
548
+ #: inc/php/settings.php:225
549
  msgid "WooCommerce & Google Shopping"
550
  msgstr "WooCommerce y Google Shopping"
551
 
552
+ #: inc/php/settings.php:227
553
  msgid ""
554
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
555
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars "
559
  "páginas de producto de tu sitio web. Aquí esta el código para una blusa de mujer que cuesta 16 dólares con "
560
  "80 centavos norteamericanos."
561
 
562
+ #: inc/php/settings.php:237
563
  msgid ""
564
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
565
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
588
  msgid "http://www.arthurgareginyan.com"
589
  msgstr "http://www.arthurgareginyan.com"
590
 
591
+ #~ msgid "To use, enter your custom Meta Tags, then click \"Save changes\". It's that simple!"
592
  #~ msgstr ""
593
  #~ "Para usarlo, ingresa tus Meta Etiquetas personalizadas y haz clic en \"Guardar Cambios\". ¡Así de simple!"
594
 
languages/all-meta-tags-es_MX.mo CHANGED
Binary file
languages/all-meta-tags-es_MX.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-06-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"
@@ -24,7 +24,7 @@ msgstr ""
24
  "X-Poedit-SearchPath-0: .\n"
25
  "X-Poedit-SearchPathExcluded-0: *.js\n"
26
 
27
- #: inc/php/core.php:31 inc/php/page.php:40
28
  msgid "Settings"
29
  msgstr "Ajustes"
30
 
@@ -38,7 +38,7 @@ msgstr ""
38
 
39
  #: inc/php/messages.php:32
40
  #, php-format
41
- msgid "Thank you for installing my plugin! I hope you will love it %s"
42
  msgstr ""
43
 
44
  #: inc/php/messages.php:67
@@ -49,125 +49,148 @@ msgstr ""
49
  msgid "Please update the plugin to the latest version, and all will be fine."
50
  msgstr ""
51
 
52
- #: inc/php/page.php:28
53
  #, php-format
54
  msgid "by %s Arthur Gareginyan %s"
55
  msgstr "por %s Arthur Gareginyan %s"
56
 
57
- #: inc/php/page.php:41 inc/php/page.php:60
 
 
 
 
58
  msgid "Usage"
59
  msgstr "Uso"
60
 
61
- #: inc/php/page.php:42
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
 
74
- #: inc/php/page.php:45
75
  msgid "Family"
76
  msgstr ""
77
 
78
- #: inc/php/page.php:62
79
  msgid "To add the meta tags to your website, simply follow these steps:"
80
  msgstr ""
81
 
82
- #: inc/php/page.php:64
83
  msgid "Go to the \"Settings\" tab."
84
  msgstr ""
85
 
86
- #: inc/php/page.php:65
87
- msgid ""
88
- "Fill in the required fields, select the desired settings and click the "
89
- "\"Save Changes\" button."
 
 
 
 
 
 
90
  msgstr ""
91
 
92
- #: inc/php/page.php:66
93
  msgid "Enjoy the improved SEO of your website."
94
  msgstr ""
95
 
96
- #: inc/php/page.php:66
97
  msgid "It's that simple!"
98
  msgstr ""
99
 
100
- #: inc/php/page.php:68
101
  msgid "Note!"
102
  msgstr ""
103
 
104
- #: inc/php/page.php:68
105
  msgid "If you want more options then tell me and I will be happy to add it."
106
  msgstr ""
107
 
108
- #: inc/php/page.php:77
109
  msgid "Frequently Asked Questions"
110
  msgstr ""
111
 
112
- #: inc/php/page.php:99
 
 
 
 
 
 
113
  msgid "Will this plugin work on my WordPress.COM website?"
114
  msgstr ""
115
 
116
- #: inc/php/page.php:100
117
  msgid ""
118
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
119
  "websites."
120
  msgstr ""
121
 
122
- #: inc/php/page.php:102
123
  msgid "Can I use this plugin on my language?"
124
  msgstr ""
125
 
126
- #: inc/php/page.php:104
127
  #, php-format
128
  msgid ""
129
- "Yes. But If your language is not available then you can make one. This "
130
- "plugin is ready for translation. The<code>.pot</code>file is included and "
131
- "placed in the <code>languages</code> folder. Many of plugin users would be "
132
- "delighted if you shared your translation with the community. Just send the "
133
- "translation files (<code>*.po, *.mo</code>) to me at the %s and I will "
134
- "include the translation within the next plugin update."
 
135
  msgstr ""
136
 
137
- #: inc/php/page.php:109
 
 
 
 
 
 
138
  msgid "How does it work?"
139
  msgstr ""
140
 
141
- #: inc/php/page.php:110
142
  msgid ""
143
  "On the \"Settings\" tab, fill in the required fields, select the desired "
144
- "settings and click the \"Save Changes\" button. Enjoy the improved SEO of "
145
  "your website. It's that simple!"
146
  msgstr ""
147
 
148
- #: inc/php/page.php:112
149
  msgid "How much of description I can enter in the text field?"
150
  msgstr ""
151
 
152
- #: inc/php/page.php:113
153
  msgid ""
154
  "I don't limit the number of characters, but most search engines use a "
155
  "maximum of 160 chars for the home description."
156
  msgstr ""
157
 
158
- #: inc/php/page.php:115
159
  msgid "How much of keywords I can enter in the text field?"
160
  msgstr ""
161
 
162
- #: inc/php/page.php:116
163
  msgid "I don't limit the number of characters."
164
  msgstr ""
165
 
166
- #: inc/php/page.php:118
167
  msgid "I can't get verify my website. What am I doing wrong?"
168
  msgstr ""
169
 
170
- #: inc/php/page.php:119
171
  msgid ""
172
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
173
  "SpecificFeeds) gives you is confusing as you only have to paste in the "
@@ -177,47 +200,47 @@ msgid ""
177
  "“Success” message appear within a few seconds."
178
  msgstr ""
179
 
180
- #: inc/php/page.php:121
181
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
182
  msgstr ""
183
 
184
- #: inc/php/page.php:122
185
  msgid ""
186
  "To make these plugins compatible you need to stick to one simple rule: do "
187
  "not fill the same field in both plugins at once. Otherwise both plugins "
188
  "fulfill their work and you will get a duplicate actions, for example:"
189
  msgstr ""
190
 
191
- #: inc/php/page.php:130
192
  msgid ""
193
  "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
194
  msgstr ""
195
 
196
- #: inc/php/page.php:132
197
  msgid "Does this plugin requires any modification of the theme?"
198
  msgstr ""
199
 
200
- #: inc/php/page.php:133
201
  msgid ""
202
  "Absolutely not. This plugin is configurable entirely from the plugin "
203
  "settings page."
204
  msgstr ""
205
 
206
- #: inc/php/page.php:135
207
  msgid "Does this require any knowledge of HTML or CSS?"
208
  msgstr ""
209
 
210
- #: inc/php/page.php:136
211
  msgid ""
212
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
213
  "CSS, using an easy-to-use plugin settings page."
214
  msgstr ""
215
 
216
- #: inc/php/page.php:138
217
  msgid "It's not working. What could be wrong?"
218
  msgstr ""
219
 
220
- #: inc/php/page.php:139
221
  msgid ""
222
  "As with every plugin, it's possible that things don't work. The most common "
223
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -226,7 +249,7 @@ msgid ""
226
  "browser's cache may solve the problem."
227
  msgstr ""
228
 
229
- #: inc/php/page.php:140
230
  msgid ""
231
  "It's impossible to tell what could be wrong exactly, but if you post a "
232
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -234,13 +257,13 @@ msgid ""
234
  "possible, including a link to your website where the problem can be seen."
235
  msgstr ""
236
 
237
- #: inc/php/page.php:142
238
  msgid ""
239
  "The last WordPress update is preventing me from editing my website that is "
240
  "using this plugin. Why is this?"
241
  msgstr ""
242
 
243
- #: inc/php/page.php:143
244
  msgid ""
245
  "This plugin can not cause such problem. More likely, the problem are related "
246
  "to the settings of the website. It could just be a cache, so please try to "
@@ -249,37 +272,48 @@ msgid ""
249
  "please try to re-login to the website, this too can help."
250
  msgstr ""
251
 
252
- #: inc/php/page.php:145
253
  msgid "Where to report bug if found?"
254
  msgstr ""
255
 
256
- #: inc/php/page.php:147
257
  #, php-format
258
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
259
  msgstr ""
260
 
261
- #: inc/php/page.php:153
262
  msgid "Where to share any ideas or suggestions to make the plugin better?"
263
  msgstr ""
264
 
265
- #: inc/php/page.php:155
266
  #, php-format
267
  msgid ""
268
- "Any suggestions are very welcome! Please send me an email to %s "
269
- "arthurgareginyan@gmail.com %s. Thank you!"
270
  msgstr ""
271
 
272
- #: inc/php/page.php:161
273
  msgid "I love this plugin! Can I help somehow?"
274
  msgstr ""
275
 
276
- #: inc/php/page.php:163
277
  #, php-format
278
  msgid ""
279
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
280
  "click on the donate button, and thank you!"
281
  msgstr ""
282
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  #: inc/php/settings.php:21
284
  msgid "About"
285
  msgstr "Acerca"
@@ -288,11 +322,7 @@ 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: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,27 +331,27 @@ msgstr ""
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,30 +364,30 @@ msgstr ""
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
@@ -439,11 +469,11 @@ msgid ""
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,31 +481,31 @@ msgstr ""
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,24 +514,24 @@ msgstr ""
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,31 +539,31 @@ msgstr ""
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,7 +571,7 @@ msgid ""
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"
@@ -572,7 +602,7 @@ msgid "http://www.arthurgareginyan.com"
572
  msgstr "http://www.arthurgareginyan.com"
573
 
574
  #~ msgid ""
575
- #~ "To use, enter your custom Meta Tags, then click \"Save Changes\". It's "
576
  #~ "that simple!"
577
  #~ msgstr ""
578
  #~ "Para usar, ingrese el nombre de su Meta Tag, luego de click en \"Salvar "
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-16 03:33+0300\n"
6
+ "PO-Revision-Date: 2017-06-16 03:33+0300\n"
7
  "Last-Translator: Sergio <srg2010@yahoo.com>\n"
8
  "Language-Team: \n"
9
  "Language: es_MX\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
  "X-Poedit-SearchPathExcluded-0: *.js\n"
26
 
27
+ #: inc/php/core.php:31 inc/php/page.php:47
28
  msgid "Settings"
29
  msgstr "Ajustes"
30
 
38
 
39
  #: inc/php/messages.php:32
40
  #, php-format
41
+ msgid "Thank you for installing my plugin! I hope you will love it! %s"
42
  msgstr ""
43
 
44
  #: inc/php/messages.php:67
49
  msgid "Please update the plugin to the latest version, and all will be fine."
50
  msgstr ""
51
 
52
+ #: inc/php/page.php:34
53
  #, php-format
54
  msgid "by %s Arthur Gareginyan %s"
55
  msgstr "por %s Arthur Gareginyan %s"
56
 
57
+ #: inc/php/page.php:40
58
+ msgid "Version"
59
+ msgstr ""
60
+
61
+ #: inc/php/page.php:48 inc/php/page.php:67
62
  msgid "Usage"
63
  msgstr "Uso"
64
 
65
+ #: inc/php/page.php:49
66
  msgid "F.A.Q."
67
  msgstr ""
68
 
69
+ #: inc/php/page.php:50 inc/php/page.php:197 inc/php/settings.php:194
70
  msgid "Author"
71
  msgstr "Autor"
72
 
73
+ #: inc/php/page.php:51 inc/php/page.php:206 inc/php/settings.php:28
74
+ #: inc/php/settings.php:242
75
  msgid "Support"
76
  msgstr "Soporte"
77
 
78
+ #: inc/php/page.php:52
79
  msgid "Family"
80
  msgstr ""
81
 
82
+ #: inc/php/page.php:69
83
  msgid "To add the meta tags to your website, simply follow these steps:"
84
  msgstr ""
85
 
86
+ #: inc/php/page.php:71
87
  msgid "Go to the \"Settings\" tab."
88
  msgstr ""
89
 
90
+ #: inc/php/page.php:72
91
+ msgid "Fill in the required fields."
92
+ msgstr ""
93
+
94
+ #: inc/php/page.php:73
95
+ msgid "Select the desired settings."
96
+ msgstr ""
97
+
98
+ #: inc/php/page.php:74
99
+ msgid "Click the \"Save changes\" button."
100
  msgstr ""
101
 
102
+ #: inc/php/page.php:75
103
  msgid "Enjoy the improved SEO of your website."
104
  msgstr ""
105
 
106
+ #: inc/php/page.php:75
107
  msgid "It's that simple!"
108
  msgstr ""
109
 
110
+ #: inc/php/page.php:77
111
  msgid "Note!"
112
  msgstr ""
113
 
114
+ #: inc/php/page.php:77
115
  msgid "If you want more options then tell me and I will be happy to add it."
116
  msgstr ""
117
 
118
+ #: inc/php/page.php:86
119
  msgid "Frequently Asked Questions"
120
  msgstr ""
121
 
122
+ #: inc/php/page.php:90
123
+ msgid ""
124
+ "If you have a question, please read the Frequently Asked Questions below to "
125
+ "see if the answer is here."
126
+ msgstr ""
127
+
128
+ #: inc/php/page.php:112
129
  msgid "Will this plugin work on my WordPress.COM website?"
130
  msgstr ""
131
 
132
+ #: inc/php/page.php:113
133
  msgid ""
134
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
135
  "websites."
136
  msgstr ""
137
 
138
+ #: inc/php/page.php:115
139
  msgid "Can I use this plugin on my language?"
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:117
143
  #, php-format
144
  msgid ""
145
+ "Yes. This plugin is ready for translation and has already been translated "
146
+ "into several languages. But If your language is not available then you can "
147
+ "make one. The POT file is included and placed in the <code>languages</code> "
148
+ "folder. Just send the PO file to me at the %s and I will include this "
149
+ "translation within the next plugin update. Many of plugin users would be "
150
+ "delighted if you share your translation with the community. Thanks for your "
151
+ "contribution!"
152
  msgstr ""
153
 
154
+ #: inc/php/page.php:121
155
+ msgid ""
156
+ "Maybe not all existed translations are up to date. You are welcome to "
157
+ "contribute corrections!"
158
+ msgstr ""
159
+
160
+ #: inc/php/page.php:123
161
  msgid "How does it work?"
162
  msgstr ""
163
 
164
+ #: inc/php/page.php:124
165
  msgid ""
166
  "On the \"Settings\" tab, fill in the required fields, select the desired "
167
+ "settings and click the \"Save changes\" button. Enjoy the improved SEO of "
168
  "your website. It's that simple!"
169
  msgstr ""
170
 
171
+ #: inc/php/page.php:126
172
  msgid "How much of description I can enter in the text field?"
173
  msgstr ""
174
 
175
+ #: inc/php/page.php:127
176
  msgid ""
177
  "I don't limit the number of characters, but most search engines use a "
178
  "maximum of 160 chars for the home description."
179
  msgstr ""
180
 
181
+ #: inc/php/page.php:129
182
  msgid "How much of keywords I can enter in the text field?"
183
  msgstr ""
184
 
185
+ #: inc/php/page.php:130
186
  msgid "I don't limit the number of characters."
187
  msgstr ""
188
 
189
+ #: inc/php/page.php:132
190
  msgid "I can't get verify my website. What am I doing wrong?"
191
  msgstr ""
192
 
193
+ #: inc/php/page.php:133
194
  msgid ""
195
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
196
  "SpecificFeeds) gives you is confusing as you only have to paste in the "
200
  "“Success” message appear within a few seconds."
201
  msgstr ""
202
 
203
+ #: inc/php/page.php:135
204
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
205
  msgstr ""
206
 
207
+ #: inc/php/page.php:136
208
  msgid ""
209
  "To make these plugins compatible you need to stick to one simple rule: do "
210
  "not fill the same field in both plugins at once. Otherwise both plugins "
211
  "fulfill their work and you will get a duplicate actions, for example:"
212
  msgstr ""
213
 
214
+ #: inc/php/page.php:144
215
  msgid ""
216
  "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
217
  msgstr ""
218
 
219
+ #: inc/php/page.php:146
220
  msgid "Does this plugin requires any modification of the theme?"
221
  msgstr ""
222
 
223
+ #: inc/php/page.php:147
224
  msgid ""
225
  "Absolutely not. This plugin is configurable entirely from the plugin "
226
  "settings page."
227
  msgstr ""
228
 
229
+ #: inc/php/page.php:149
230
  msgid "Does this require any knowledge of HTML or CSS?"
231
  msgstr ""
232
 
233
+ #: inc/php/page.php:150
234
  msgid ""
235
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
236
  "CSS, using an easy-to-use plugin settings page."
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:152
240
  msgid "It's not working. What could be wrong?"
241
  msgstr ""
242
 
243
+ #: inc/php/page.php:153
244
  msgid ""
245
  "As with every plugin, it's possible that things don't work. The most common "
246
  "reason for this is a web browser's cache. Every web browser stores a cache "
249
  "browser's cache may solve the problem."
250
  msgstr ""
251
 
252
+ #: inc/php/page.php:154
253
  msgid ""
254
  "It's impossible to tell what could be wrong exactly, but if you post a "
255
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
257
  "possible, including a link to your website where the problem can be seen."
258
  msgstr ""
259
 
260
+ #: inc/php/page.php:156
261
  msgid ""
262
  "The last WordPress update is preventing me from editing my website that is "
263
  "using this plugin. Why is this?"
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:157
267
  msgid ""
268
  "This plugin can not cause such problem. More likely, the problem are related "
269
  "to the settings of the website. It could just be a cache, so please try to "
272
  "please try to re-login to the website, this too can help."
273
  msgstr ""
274
 
275
+ #: inc/php/page.php:159
276
  msgid "Where to report bug if found?"
277
  msgstr ""
278
 
279
+ #: inc/php/page.php:161
280
  #, php-format
281
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
282
  msgstr ""
283
 
284
+ #: inc/php/page.php:167
285
  msgid "Where to share any ideas or suggestions to make the plugin better?"
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:169
289
  #, php-format
290
  msgid ""
291
+ "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
292
  msgstr ""
293
 
294
+ #: inc/php/page.php:174
295
  msgid "I love this plugin! Can I help somehow?"
296
  msgstr ""
297
 
298
+ #: inc/php/page.php:176
299
  #, php-format
300
  msgid ""
301
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
302
  "click on the donate button, and thank you!"
303
  msgstr ""
304
 
305
+ #: inc/php/page.php:182
306
+ msgid "My question wasn't answered here."
307
+ msgstr ""
308
+
309
+ #: inc/php/page.php:184
310
+ #, php-format
311
+ msgid ""
312
+ "You can ask your question on the plugin support page %s. But please keep in "
313
+ "mind that this plugin is free, and there is no a special support team, so I "
314
+ "have no way to answer everyone."
315
+ msgstr ""
316
+
317
  #: inc/php/settings.php:21
318
  msgid "About"
319
  msgstr "Acerca"
322
  msgid "This plugin allows you to easily add Meta Tags to your website."
323
  msgstr "Este plugin te permite agregar fácilmente Meta Tags a tu sitio web."
324
 
325
+ #: inc/php/settings.php:30 inc/php/settings.php:244
 
 
 
 
326
  msgid ""
327
  "I'm an independent developer, without a regular income, so every little "
328
  "contribution helps cover my costs and lets me spend more time building "
331
  "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este "
332
  "plugin aún mejor y tenerlo actualizado."
333
 
334
+ #: inc/php/settings.php:31 inc/php/settings.php:245
335
  msgid "Donate with PayPal"
336
  msgstr ""
337
 
338
+ #: inc/php/settings.php:32 inc/php/settings.php:246
339
  msgid "Thanks for your support!"
340
  msgstr "Gracias por su apoyo!"
341
 
342
+ #: inc/php/settings.php:37
343
  msgid "Help"
344
  msgstr "Ayuda"
345
 
346
+ #: inc/php/settings.php:39
347
+ msgid "If you have a question, please read the information in the FAQ section."
348
  msgstr "Tiene algo que decir? Necesitas ayuda?"
349
 
350
+ #: inc/php/settings.php:56
351
  msgid "Web Master Tools"
352
  msgstr "Herramientas para Web Master"
353
 
354
+ #: inc/php/settings.php:58
355
  msgid ""
356
  "Webmaster Tools require you to verify your domain. This makes sure that you "
357
  "are the correct owner of your blog or store before they provide their "
364
  "comprobar su dominio. Si su dominio ya está verificado, puede olvidarse de "
365
  "ellas."
366
 
367
+ #: inc/php/settings.php:63
368
  msgid ""
369
  "Enter your meta key “content” value from your verification code to verify "
370
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
371
  "content=“<b>1234567890</b>” /&gt;"
372
  msgstr ""
373
 
374
+ #: inc/php/settings.php:68
375
  msgid ""
376
  "Enter your meta key “content” value from your verification code to verify "
377
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
378
  "content=“<b>1234567890</b>” /&gt;"
379
  msgstr ""
380
 
381
+ #: inc/php/settings.php:73
382
  msgid ""
383
  "Enter your meta key “content” value from your verification code to verify "
384
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
385
  "content=“<b>1234567890</b>” /&gt;"
386
  msgstr ""
387
 
388
+ #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159
389
+ #: inc/php/settings.php:183 inc/php/settings.php:219
390
+ msgid "Save changes"
391
  msgstr "Guardar Cambios"
392
 
393
  #: inc/php/settings.php:83
469
  "it here. In this field you can add multiple meta tags."
470
  msgstr ""
471
 
472
+ #: inc/php/settings.php:141
473
  msgid "Meta Tags for Static Home Page only"
474
  msgstr "Meta Tags solo para Paginas de Inicio estática"
475
 
476
+ #: inc/php/settings.php:143
477
  msgid ""
478
  "You can use the options below to add meta tags such as Description and "
479
  "Keywords only in Static Home Page of your website."
481
  "Puede usar las opciones abajo para agregar meta tags, como Descripción y "
482
  "palabras claves solo en Paginas de Inicio estática en su sitio web."
483
 
484
+ #: inc/php/settings.php:146
485
  msgid "Home Description"
486
  msgstr ""
487
 
488
+ #: inc/php/settings.php:148 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."
492
  msgstr ""
493
 
494
+ #: inc/php/settings.php:152
495
  msgid "Home Keyword(s)"
496
  msgstr ""
497
 
498
+ #: inc/php/settings.php:154
499
  msgid ""
500
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
501
  "website."
502
  msgstr ""
503
 
504
+ #: inc/php/settings.php:165
505
  msgid "Meta Tags for Default Home Page and Blog Page only"
506
  msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
507
 
508
+ #: inc/php/settings.php:167
509
  msgid ""
510
  "You can use the options below to add meta tags such as Description and "
511
  "Keywords only in Default Home Page and Blog Page of your website."
514
  "descripción y palabras claves sólo en página principal predeterminada y Blog "
515
  "página de su sitio web."
516
 
517
+ #: inc/php/settings.php:170
518
  msgid "Blog Description"
519
  msgstr ""
520
 
521
+ #: inc/php/settings.php:176
522
  msgid "Blog Keyword(s)"
523
  msgstr ""
524
 
525
+ #: inc/php/settings.php:178
526
  msgid ""
527
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
528
  msgstr ""
529
 
530
+ #: inc/php/settings.php:189
531
  msgid "Meta Tags for all website (Global)"
532
  msgstr "Meta Tags para todo el sitio web (Global)"
533
 
534
+ #: inc/php/settings.php:191
535
  msgid ""
536
  "You can use the options below to add meta tags such as Author, Copyright and "
537
  "Keywords in everywhere on your website."
539
  "Puede usar las opciones abajo para agregar meta tags como Autor, Derecho "
540
  "autor, palabras clavs en cualquier sitio de su pagina web."
541
 
542
+ #: inc/php/settings.php:199
543
  msgid "Designer"
544
  msgstr ""
545
 
546
+ #: inc/php/settings.php:204
547
  msgid "Contact"
548
  msgstr ""
549
 
550
+ #: inc/php/settings.php:208
551
  msgid "Copyright"
552
  msgstr ""
553
 
554
+ #: inc/php/settings.php:212
555
  msgid "Keyword(s)"
556
  msgstr ""
557
 
558
+ #: inc/php/settings.php:214
559
  msgid "Enter a comma-delimited list of global keywords for your website."
560
  msgstr ""
561
 
562
+ #: inc/php/settings.php:225
563
  msgid "WooCommerce & Google Shopping"
564
  msgstr ""
565
 
566
+ #: inc/php/settings.php:227
567
  msgid ""
568
  "This plugin automatically adds the necessary Google Shopping (Merchant "
569
  "Center) structured data on all WooCommerce product pages on your website. "
571
  "cents of US."
572
  msgstr ""
573
 
574
+ #: inc/php/settings.php:237
575
  msgid ""
576
  "Check these data generated on the pages of your website you can <a href="
577
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
602
  msgstr "http://www.arthurgareginyan.com"
603
 
604
  #~ msgid ""
605
+ #~ "To use, enter your custom Meta Tags, then click \"Save changes\". It's "
606
  #~ "that simple!"
607
  #~ msgstr ""
608
  #~ "Para usar, ingrese el nombre de su Meta Tag, luego de click en \"Salvar "
languages/all-meta-tags-it_IT.mo CHANGED
Binary file
languages/all-meta-tags-it_IT.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Stable (latest release)\n"
6
- "POT-Creation-Date: 2017-06-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"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: inc/php/core.php:31 inc/php/page.php:40
25
  msgid "Settings"
26
  msgstr "Impostazioni"
27
 
@@ -35,7 +35,7 @@ msgstr ""
35
 
36
  #: inc/php/messages.php:32
37
  #, php-format
38
- msgid "Thank you for installing my plugin! I hope you will love it %s"
39
  msgstr ""
40
 
41
  #: inc/php/messages.php:67
@@ -46,117 +46,138 @@ msgstr ""
46
  msgid "Please update the plugin to the latest version, and all will be fine."
47
  msgstr ""
48
 
49
- #: inc/php/page.php:28
50
  #, php-format
51
  msgid "by %s Arthur Gareginyan %s"
52
  msgstr "di %s Arthur Gareginyan %s"
53
 
54
- #: inc/php/page.php:41 inc/php/page.php:60
 
 
 
 
55
  msgid "Usage"
56
  msgstr ""
57
 
58
- #: inc/php/page.php:42
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
 
70
- #: inc/php/page.php:45
71
  msgid "Family"
72
  msgstr ""
73
 
74
- #: inc/php/page.php:62
75
  msgid "To add the meta tags to your website, simply follow these steps:"
76
  msgstr ""
77
 
78
- #: inc/php/page.php:64
79
  msgid "Go to the \"Settings\" tab."
80
  msgstr ""
81
 
82
- #: inc/php/page.php:65
83
- msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
 
 
 
 
 
 
 
 
84
  msgstr ""
85
 
86
- #: inc/php/page.php:66
87
  msgid "Enjoy the improved SEO of your website."
88
  msgstr ""
89
 
90
- #: inc/php/page.php:66
91
  msgid "It's that simple!"
92
  msgstr ""
93
 
94
- #: inc/php/page.php:68
95
  msgid "Note!"
96
  msgstr ""
97
 
98
- #: inc/php/page.php:68
99
  msgid "If you want more options then tell me and I will be happy to add it."
100
  msgstr ""
101
 
102
- #: inc/php/page.php:77
103
  msgid "Frequently Asked Questions"
104
  msgstr ""
105
 
106
- #: inc/php/page.php:99
 
 
 
 
107
  msgid "Will this plugin work on my WordPress.COM website?"
108
  msgstr ""
109
 
110
- #: inc/php/page.php:100
111
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
112
  msgstr ""
113
 
114
- #: inc/php/page.php:102
115
  msgid "Can I use this plugin on my language?"
116
  msgstr ""
117
 
118
- #: inc/php/page.php:104
119
  #, php-format
120
  msgid ""
121
- "Yes. But If your language is not available then you can make one. This plugin is ready for translation. "
122
- "The<code>.pot</code>file is included and placed in the <code>languages</code> folder. Many of plugin users would "
123
- "be delighted if you shared your translation with the community. Just send the translation files (<code>*.po, *."
124
- "mo</code>) to me at the %s and I will include the translation within the next plugin update."
 
125
  msgstr ""
126
 
127
- #: inc/php/page.php:109
 
 
 
 
128
  msgid "How does it work?"
129
  msgstr ""
130
 
131
- #: inc/php/page.php:110
132
  msgid ""
133
- "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save Changes\" "
134
  "button. Enjoy the improved SEO of your website. It's that simple!"
135
  msgstr ""
136
 
137
- #: inc/php/page.php:112
138
  msgid "How much of description I can enter in the text field?"
139
  msgstr ""
140
 
141
- #: inc/php/page.php:113
142
  msgid ""
143
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
144
  "description."
145
  msgstr ""
146
 
147
- #: inc/php/page.php:115
148
  msgid "How much of keywords I can enter in the text field?"
149
  msgstr ""
150
 
151
- #: inc/php/page.php:116
152
  msgid "I don't limit the number of characters."
153
  msgstr ""
154
 
155
- #: inc/php/page.php:118
156
  msgid "I can't get verify my website. What am I doing wrong?"
157
  msgstr ""
158
 
159
- #: inc/php/page.php:119
160
  msgid ""
161
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing "
162
  "as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag "
@@ -164,61 +185,61 @@ msgid ""
164
  "the relevant field and you will see “Success” message appear within a few seconds."
165
  msgstr ""
166
 
167
- #: inc/php/page.php:121
168
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
169
  msgstr ""
170
 
171
- #: inc/php/page.php:122
172
  msgid ""
173
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
174
  "plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
175
  msgstr ""
176
 
177
- #: inc/php/page.php:130
178
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
179
  msgstr ""
180
 
181
- #: inc/php/page.php:132
182
  msgid "Does this plugin requires any modification of the theme?"
183
  msgstr ""
184
 
185
- #: inc/php/page.php:133
186
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
187
  msgstr ""
188
 
189
- #: inc/php/page.php:135
190
  msgid "Does this require any knowledge of HTML or CSS?"
191
  msgstr ""
192
 
193
- #: inc/php/page.php:136
194
  msgid ""
195
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
196
  "settings page."
197
  msgstr ""
198
 
199
- #: inc/php/page.php:138
200
  msgid "It's not working. What could be wrong?"
201
  msgstr ""
202
 
203
- #: inc/php/page.php:139
204
  msgid ""
205
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's "
206
  "cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth "
207
  "usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
208
  msgstr ""
209
 
210
- #: inc/php/page.php:140
211
  msgid ""
212
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support "
213
  "forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information "
214
  "as possible, including a link to your website where the problem can be seen."
215
  msgstr ""
216
 
217
- #: inc/php/page.php:142
218
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
219
  msgstr ""
220
 
221
- #: inc/php/page.php:143
222
  msgid ""
223
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It "
224
  "could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some "
@@ -226,35 +247,46 @@ msgid ""
226
  "website, this too can help."
227
  msgstr ""
228
 
229
- #: inc/php/page.php:145
230
  msgid "Where to report bug if found?"
231
  msgstr ""
232
 
233
- #: inc/php/page.php:147
234
  #, php-format
235
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
236
  msgstr ""
237
 
238
- #: inc/php/page.php:153
239
  msgid "Where to share any ideas or suggestions to make the plugin better?"
240
  msgstr ""
241
 
242
- #: inc/php/page.php:155
243
  #, php-format
244
- msgid "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!"
245
  msgstr ""
246
 
247
- #: inc/php/page.php:161
248
  msgid "I love this plugin! Can I help somehow?"
249
  msgstr ""
250
 
251
- #: inc/php/page.php:163
252
  #, php-format
253
  msgid ""
254
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank "
255
  "you!"
256
  msgstr ""
257
 
 
 
 
 
 
 
 
 
 
 
 
258
  #: inc/php/settings.php:21
259
  msgid "About"
260
  msgstr "Informazioni"
@@ -263,11 +295,7 @@ 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: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,27 +304,27 @@ msgstr ""
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,7 +334,7 @@ msgstr ""
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,7 +342,7 @@ msgstr ""
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,7 +350,7 @@ msgstr ""
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,9 +358,9 @@ msgstr ""
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
@@ -418,11 +446,11 @@ msgstr ""
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,11 +458,11 @@ msgstr ""
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,20 +470,20 @@ msgstr ""
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,54 +491,54 @@ msgstr ""
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,7 +548,7 @@ msgstr ""
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>."
@@ -548,7 +576,7 @@ msgstr "Arthur Gareginyan"
548
  msgid "http://www.arthurgareginyan.com"
549
  msgstr "http://www.arthurgareginyan.com"
550
 
551
- #~ msgid "To use, enter your custom Meta Tags, then click \"Save Changes\". It's that simple!"
552
  #~ msgstr ""
553
  #~ "Per l'utilizzo, inserisci i tuoi tag meta personalizzati, quindi fai clic su \"Salva modifiche\". Tutto qui!"
554
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - All Meta Tags - Stable (latest release)\n"
6
+ "POT-Creation-Date: 2017-06-16 03:32+0300\n"
7
+ "PO-Revision-Date: 2017-06-16 03:32+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: it\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: inc/php/core.php:31 inc/php/page.php:47
25
  msgid "Settings"
26
  msgstr "Impostazioni"
27
 
35
 
36
  #: inc/php/messages.php:32
37
  #, php-format
38
+ msgid "Thank you for installing my plugin! I hope you will love it! %s"
39
  msgstr ""
40
 
41
  #: inc/php/messages.php:67
46
  msgid "Please update the plugin to the latest version, and all will be fine."
47
  msgstr ""
48
 
49
+ #: inc/php/page.php:34
50
  #, php-format
51
  msgid "by %s Arthur Gareginyan %s"
52
  msgstr "di %s Arthur Gareginyan %s"
53
 
54
+ #: inc/php/page.php:40
55
+ msgid "Version"
56
+ msgstr ""
57
+
58
+ #: inc/php/page.php:48 inc/php/page.php:67
59
  msgid "Usage"
60
  msgstr ""
61
 
62
+ #: inc/php/page.php:49
63
  msgid "F.A.Q."
64
  msgstr ""
65
 
66
+ #: inc/php/page.php:50 inc/php/page.php:197 inc/php/settings.php:194
67
  msgid "Author"
68
  msgstr "Autore"
69
 
70
+ #: inc/php/page.php:51 inc/php/page.php:206 inc/php/settings.php:28 inc/php/settings.php:242
71
  msgid "Support"
72
  msgstr ""
73
 
74
+ #: inc/php/page.php:52
75
  msgid "Family"
76
  msgstr ""
77
 
78
+ #: inc/php/page.php:69
79
  msgid "To add the meta tags to your website, simply follow these steps:"
80
  msgstr ""
81
 
82
+ #: inc/php/page.php:71
83
  msgid "Go to the \"Settings\" tab."
84
  msgstr ""
85
 
86
+ #: inc/php/page.php:72
87
+ msgid "Fill in the required fields."
88
+ msgstr ""
89
+
90
+ #: inc/php/page.php:73
91
+ msgid "Select the desired settings."
92
+ msgstr ""
93
+
94
+ #: inc/php/page.php:74
95
+ msgid "Click the \"Save changes\" button."
96
  msgstr ""
97
 
98
+ #: inc/php/page.php:75
99
  msgid "Enjoy the improved SEO of your website."
100
  msgstr ""
101
 
102
+ #: inc/php/page.php:75
103
  msgid "It's that simple!"
104
  msgstr ""
105
 
106
+ #: inc/php/page.php:77
107
  msgid "Note!"
108
  msgstr ""
109
 
110
+ #: inc/php/page.php:77
111
  msgid "If you want more options then tell me and I will be happy to add it."
112
  msgstr ""
113
 
114
+ #: inc/php/page.php:86
115
  msgid "Frequently Asked Questions"
116
  msgstr ""
117
 
118
+ #: inc/php/page.php:90
119
+ msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
120
+ msgstr ""
121
+
122
+ #: inc/php/page.php:112
123
  msgid "Will this plugin work on my WordPress.COM website?"
124
  msgstr ""
125
 
126
+ #: inc/php/page.php:113
127
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:115
131
  msgid "Can I use this plugin on my language?"
132
  msgstr ""
133
 
134
+ #: inc/php/page.php:117
135
  #, php-format
136
  msgid ""
137
+ "Yes. This plugin is ready for translation and has already been translated into several languages. But If your "
138
+ "language is not available then you can make one. The POT file is included and placed in the <code>languages</"
139
+ "code> folder. Just send the PO file to me at the %s and I will include this translation within the next plugin "
140
+ "update. Many of plugin users would be delighted if you share your translation with the community. Thanks for "
141
+ "your contribution!"
142
  msgstr ""
143
 
144
+ #: inc/php/page.php:121
145
+ msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
146
+ msgstr ""
147
+
148
+ #: inc/php/page.php:123
149
  msgid "How does it work?"
150
  msgstr ""
151
 
152
+ #: inc/php/page.php:124
153
  msgid ""
154
+ "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save changes\" "
155
  "button. Enjoy the improved SEO of your website. It's that simple!"
156
  msgstr ""
157
 
158
+ #: inc/php/page.php:126
159
  msgid "How much of description I can enter in the text field?"
160
  msgstr ""
161
 
162
+ #: inc/php/page.php:127
163
  msgid ""
164
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
165
  "description."
166
  msgstr ""
167
 
168
+ #: inc/php/page.php:129
169
  msgid "How much of keywords I can enter in the text field?"
170
  msgstr ""
171
 
172
+ #: inc/php/page.php:130
173
  msgid "I don't limit the number of characters."
174
  msgstr ""
175
 
176
+ #: inc/php/page.php:132
177
  msgid "I can't get verify my website. What am I doing wrong?"
178
  msgstr ""
179
 
180
+ #: inc/php/page.php:133
181
  msgid ""
182
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing "
183
  "as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag "
185
  "the relevant field and you will see “Success” message appear within a few seconds."
186
  msgstr ""
187
 
188
+ #: inc/php/page.php:135
189
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
190
  msgstr ""
191
 
192
+ #: inc/php/page.php:136
193
  msgid ""
194
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
195
  "plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
196
  msgstr ""
197
 
198
+ #: inc/php/page.php:144
199
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
200
  msgstr ""
201
 
202
+ #: inc/php/page.php:146
203
  msgid "Does this plugin requires any modification of the theme?"
204
  msgstr ""
205
 
206
+ #: inc/php/page.php:147
207
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
208
  msgstr ""
209
 
210
+ #: inc/php/page.php:149
211
  msgid "Does this require any knowledge of HTML or CSS?"
212
  msgstr ""
213
 
214
+ #: inc/php/page.php:150
215
  msgid ""
216
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
217
  "settings page."
218
  msgstr ""
219
 
220
+ #: inc/php/page.php:152
221
  msgid "It's not working. What could be wrong?"
222
  msgstr ""
223
 
224
+ #: inc/php/page.php:153
225
  msgid ""
226
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's "
227
  "cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth "
228
  "usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
229
  msgstr ""
230
 
231
+ #: inc/php/page.php:154
232
  msgid ""
233
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support "
234
  "forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information "
235
  "as possible, including a link to your website where the problem can be seen."
236
  msgstr ""
237
 
238
+ #: inc/php/page.php:156
239
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
240
  msgstr ""
241
 
242
+ #: inc/php/page.php:157
243
  msgid ""
244
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It "
245
  "could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some "
247
  "website, this too can help."
248
  msgstr ""
249
 
250
+ #: inc/php/page.php:159
251
  msgid "Where to report bug if found?"
252
  msgstr ""
253
 
254
+ #: inc/php/page.php:161
255
  #, php-format
256
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
257
  msgstr ""
258
 
259
+ #: inc/php/page.php:167
260
  msgid "Where to share any ideas or suggestions to make the plugin better?"
261
  msgstr ""
262
 
263
+ #: inc/php/page.php:169
264
  #, php-format
265
+ msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
266
  msgstr ""
267
 
268
+ #: inc/php/page.php:174
269
  msgid "I love this plugin! Can I help somehow?"
270
  msgstr ""
271
 
272
+ #: inc/php/page.php:176
273
  #, php-format
274
  msgid ""
275
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank "
276
  "you!"
277
  msgstr ""
278
 
279
+ #: inc/php/page.php:182
280
+ msgid "My question wasn't answered here."
281
+ msgstr ""
282
+
283
+ #: inc/php/page.php:184
284
+ #, php-format
285
+ msgid ""
286
+ "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and "
287
+ "there is no a special support team, so I have no way to answer everyone."
288
+ msgstr ""
289
+
290
  #: inc/php/settings.php:21
291
  msgid "About"
292
  msgstr "Informazioni"
295
  msgid "This plugin allows you to easily add Meta Tags to your website."
296
  msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
297
 
298
+ #: inc/php/settings.php:30 inc/php/settings.php:244
 
 
 
 
299
  msgid ""
300
  "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and "
301
  "lets me spend more time building things for people like you to enjoy."
304
  "miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li "
305
  "apprezzano."
306
 
307
+ #: inc/php/settings.php:31 inc/php/settings.php:245
308
  msgid "Donate with PayPal"
309
  msgstr ""
310
 
311
+ #: inc/php/settings.php:32 inc/php/settings.php:246
312
  msgid "Thanks for your support!"
313
  msgstr "Grazie per il tuo supporto!"
314
 
315
+ #: inc/php/settings.php:37
316
  msgid "Help"
317
  msgstr "Aiuto"
318
 
319
+ #: inc/php/settings.php:39
320
+ msgid "If you have a question, please read the information in the FAQ section."
321
  msgstr "Hai qualcosa da dirmi? Hai bisogno di aiuto?"
322
 
323
+ #: inc/php/settings.php:56
324
  msgid "Web Master Tools"
325
  msgstr "Webmaster Tools"
326
 
327
+ #: inc/php/settings.php:58
328
  msgid ""
329
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog "
330
  "or store before they provide their services to you. You can use the options below to verify your domain. If your "
334
  "blog o negozio prima che ti forniscano i loro servizi. Puoi usare le opzioni qui sotto per verificare il tuo "
335
  "dominio. Se il tuo dominio è già verificato, puoi semplicemente ignorarle."
336
 
337
+ #: inc/php/settings.php:63
338
  msgid ""
339
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
340
  "name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
342
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
343
  "verifica.<br>Esempio: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
344
 
345
+ #: inc/php/settings.php:68
346
  msgid ""
347
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
348
  "name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
350
  "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di "
351
  "verifica.<br>Esempio: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
352
 
353
+ #: inc/php/settings.php:73
354
  msgid ""
355
  "Enter your meta key “content” value from your verification code to verify your website. <br>Example: &lt;meta "
356
  "name=\"yandex-verification\" 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=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
360
 
361
+ #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159 inc/php/settings.php:183
362
+ #: inc/php/settings.php:219
363
+ msgid "Save changes"
364
  msgstr "Salva modifiche"
365
 
366
  #: inc/php/settings.php:83
446
  "Se non riesci a trovare un campo per inserire il tuo meta tag richiesto allora puoi aggiungerlo qui. In questo "
447
  "campo puoi aggiungere tag meta multipli."
448
 
449
+ #: inc/php/settings.php:141
450
  msgid "Meta Tags for Static Home Page only"
451
  msgstr "Tag meta solo per la pagina home statica"
452
 
453
+ #: inc/php/settings.php:143
454
  msgid ""
455
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your "
456
  "website."
458
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
459
  "statica del tuo sito web."
460
 
461
+ #: inc/php/settings.php:146
462
  msgid "Home Description"
463
  msgstr "Descrizione home"
464
 
465
+ #: inc/php/settings.php:148 inc/php/settings.php:172
466
  msgid ""
467
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars "
468
  "for the home description."
470
  "Inserisci una breve descrizione del tuo sito web (150-250 caratteri). La maggior parte dei motori di ricerca usa "
471
  "un massimo di 160 caratteri per la descrizione della home."
472
 
473
+ #: inc/php/settings.php:152
474
  msgid "Home Keyword(s)"
475
  msgstr "Parole chiave home"
476
 
477
+ #: inc/php/settings.php:154
478
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
479
  msgstr ""
480
  "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina home statica del tuo sito web."
481
 
482
+ #: inc/php/settings.php:165
483
  msgid "Meta Tags for Default Home Page and Blog Page only"
484
  msgstr "Tag meta solo per pagina home predefinita e pagina blog"
485
 
486
+ #: inc/php/settings.php:167
487
  msgid ""
488
  "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and "
489
  "Blog Page of your website."
491
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home "
492
  "predefinita e alla pagina blog del tuo sito web."
493
 
494
+ #: inc/php/settings.php:170
495
  msgid "Blog Description"
496
  msgstr "Descrizione blog"
497
 
498
+ #: inc/php/settings.php:176
499
  msgid "Blog Keyword(s)"
500
  msgstr "Parole chiave blog"
501
 
502
+ #: inc/php/settings.php:178
503
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
504
  msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
505
 
506
+ #: inc/php/settings.php:189
507
  msgid "Meta Tags for all website (Global)"
508
  msgstr "Tag meta per tutto il sito (globale)"
509
 
510
+ #: inc/php/settings.php:191
511
  msgid ""
512
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your "
513
  "website."
514
  msgstr ""
515
  "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Author, Copyright e Keywords ovunque sul tuo sito."
516
 
517
+ #: inc/php/settings.php:199
518
  msgid "Designer"
519
  msgstr "Designer"
520
 
521
+ #: inc/php/settings.php:204
522
  msgid "Contact"
523
  msgstr "Contatti"
524
 
525
+ #: inc/php/settings.php:208
526
  msgid "Copyright"
527
  msgstr "Copyright"
528
 
529
+ #: inc/php/settings.php:212
530
  msgid "Keyword(s)"
531
  msgstr "Parole chiave"
532
 
533
+ #: inc/php/settings.php:214
534
  msgid "Enter a comma-delimited list of global keywords for your website."
535
  msgstr "Inserisci una lista delimitata da virgole di parole chiave globali per il tuo sito web."
536
 
537
+ #: inc/php/settings.php:225
538
  msgid "WooCommerce & Google Shopping"
539
  msgstr "WooCommerce & Google Shopping"
540
 
541
+ #: inc/php/settings.php:227
542
  msgid ""
543
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all "
544
  "WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars and "
548
  "le pagine prodotto WooCommerce del tuo sito web. Ecco il codice per una maglietta da donna al prezzo di 16 "
549
  "dollari e 80 centesimi."
550
 
551
+ #: inc/php/settings.php:237
552
  msgid ""
553
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/structured-"
554
  "data/testing-tool\" target=\"_blank\">here</a>."
576
  msgid "http://www.arthurgareginyan.com"
577
  msgstr "http://www.arthurgareginyan.com"
578
 
579
+ #~ msgid "To use, enter your custom Meta Tags, then click \"Save changes\". It's that simple!"
580
  #~ msgstr ""
581
  #~ "Per l'utilizzo, inserisci i tuoi tag meta personalizzati, quindi fai clic su \"Salva modifiche\". Tutto qui!"
582
 
languages/all-meta-tags-ru_RU.mo CHANGED
Binary file
languages/all-meta-tags-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
- "POT-Creation-Date: 2017-06-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"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: inc/php/core.php:31 inc/php/page.php:40
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
@@ -35,8 +35,8 @@ msgstr "Привет! Я Артур, автор этого плагина."
35
 
36
  #: inc/php/messages.php:32
37
  #, php-format
38
- msgid "Thank you for installing my plugin! I hope you will love it %s"
39
- msgstr "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится %s"
40
 
41
  #: inc/php/messages.php:67
42
  msgid "You have installed an old version of this plugin."
@@ -46,77 +46,91 @@ msgstr "Вы установили устаревшую версию этого
46
  msgid "Please update the plugin to the latest version, and all will be fine."
47
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
48
 
49
- #: inc/php/page.php:28
50
  #, php-format
51
  msgid "by %s Arthur Gareginyan %s"
52
  msgstr "от %s Артура Гарегинян %s"
53
 
54
- #: inc/php/page.php:41 inc/php/page.php:60
 
 
 
 
55
  msgid "Usage"
56
  msgstr "Применение"
57
 
58
- #: inc/php/page.php:42
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
 
71
- #: inc/php/page.php:45
72
  msgid "Family"
73
  msgstr "Семья"
74
 
75
- #: inc/php/page.php:62
76
  msgid "To add the meta tags to your website, simply follow these steps:"
77
  msgstr ""
78
  "Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие "
79
  "действия:"
80
 
81
- #: inc/php/page.php:64
82
  msgid "Go to the \"Settings\" tab."
83
  msgstr "Перейдите на вкладку «Настройки»."
84
 
85
- #: inc/php/page.php:65
86
- msgid ""
87
- "Fill in the required fields, select the desired settings and click the "
88
- "\"Save Changes\" button."
89
- msgstr ""
90
- "Заполните необходимые поля, выберите нужные настройки и нажмите кнопку "
91
- "«Сохранить изменения»."
92
 
93
- #: inc/php/page.php:66
 
 
 
 
94
  msgid "Enjoy the improved SEO of your website."
95
  msgstr "Наслаждайтесь улучшенным SEO вашего веб-сайта."
96
 
97
- #: inc/php/page.php:66
98
  msgid "It's that simple!"
99
  msgstr "Вот так просто!"
100
 
101
- #: inc/php/page.php:68
102
  msgid "Note!"
103
  msgstr "Примечание!"
104
 
105
- #: inc/php/page.php:68
106
  msgid "If you want more options then tell me and I will be happy to add it."
107
  msgstr ""
108
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
109
  "добавить их."
110
 
111
- #: inc/php/page.php:77
112
  msgid "Frequently Asked Questions"
113
  msgstr "Частые Вопросы"
114
 
115
- #: inc/php/page.php:99
 
 
 
 
 
 
116
  msgid "Will this plugin work on my WordPress.COM website?"
117
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
118
 
119
- #: inc/php/page.php:100
120
  msgid ""
121
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
122
  "websites."
@@ -124,58 +138,65 @@ msgstr ""
124
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
125
  "размещённых веб-сайтах (WordPress.ORG)."
126
 
127
- #: inc/php/page.php:102
128
  msgid "Can I use this plugin on my language?"
129
  msgstr "Можно ли использовать этот плагин на моём языке?"
130
 
131
- #: inc/php/page.php:104
132
  #, php-format
133
  msgid ""
134
- "Yes. But If your language is not available then you can make one. This "
135
- "plugin is ready for translation. The<code>.pot</code>file is included and "
136
- "placed in the <code>languages</code> folder. Many of plugin users would be "
137
- "delighted if you shared your translation with the community. Just send the "
138
- "translation files (<code>*.po, *.mo</code>) to me at the %s and I will "
139
- "include the translation within the next plugin update."
 
140
  msgstr ""
141
 
142
- #: inc/php/page.php:109
 
 
 
 
 
 
143
  msgid "How does it work?"
144
  msgstr "Как оно работает?"
145
 
146
- #: inc/php/page.php:110
147
  msgid ""
148
  "On the \"Settings\" tab, fill in the required fields, select the desired "
149
- "settings and click the \"Save Changes\" button. Enjoy the improved SEO of "
150
  "your website. It's that simple!"
151
  msgstr ""
152
  "На вкладке «Настройки» заполните необходимые поля, выберите нужные настройки "
153
  "и нажмите кнопку «Сохранить изменения». Наслаждайтесь улучшенным SEO вашего "
154
  "веб-сайта. Это так просто!"
155
 
156
- #: inc/php/page.php:112
157
  msgid "How much of description I can enter in the text field?"
158
  msgstr ""
159
 
160
- #: inc/php/page.php:113
161
  msgid ""
162
  "I don't limit the number of characters, but most search engines use a "
163
  "maximum of 160 chars for the home description."
164
  msgstr ""
165
 
166
- #: inc/php/page.php:115
167
  msgid "How much of keywords I can enter in the text field?"
168
  msgstr ""
169
 
170
- #: inc/php/page.php:116
171
  msgid "I don't limit the number of characters."
172
  msgstr ""
173
 
174
- #: inc/php/page.php:118
175
  msgid "I can't get verify my website. What am I doing wrong?"
176
  msgstr ""
177
 
178
- #: inc/php/page.php:119
179
  msgid ""
180
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
181
  "SpecificFeeds) gives you is confusing as you only have to paste in the "
@@ -185,27 +206,27 @@ msgid ""
185
  "“Success” message appear within a few seconds."
186
  msgstr ""
187
 
188
- #: inc/php/page.php:121
189
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
190
  msgstr ""
191
 
192
- #: inc/php/page.php:122
193
  msgid ""
194
  "To make these plugins compatible you need to stick to one simple rule: do "
195
  "not fill the same field in both plugins at once. Otherwise both plugins "
196
  "fulfill their work and you will get a duplicate actions, for example:"
197
  msgstr ""
198
 
199
- #: inc/php/page.php:130
200
  msgid ""
201
  "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
202
  msgstr ""
203
 
204
- #: inc/php/page.php:132
205
  msgid "Does this plugin requires any modification of the theme?"
206
  msgstr "Этот плагин требует изменения темы?"
207
 
208
- #: inc/php/page.php:133
209
  msgid ""
210
  "Absolutely not. This plugin is configurable entirely from the plugin "
211
  "settings page."
@@ -213,11 +234,11 @@ msgstr ""
213
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
214
  "плагина."
215
 
216
- #: inc/php/page.php:135
217
  msgid "Does this require any knowledge of HTML or CSS?"
218
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
219
 
220
- #: inc/php/page.php:136
221
  msgid ""
222
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
223
  "CSS, using an easy-to-use plugin settings page."
@@ -225,11 +246,11 @@ msgstr ""
225
  "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
226
  "помощью простой в использовании страницы настройки плагина."
227
 
228
- #: inc/php/page.php:138
229
  msgid "It's not working. What could be wrong?"
230
  msgstr "Оно не работает. Что может быть не так?"
231
 
232
- #: inc/php/page.php:139
233
  msgid ""
234
  "As with every plugin, it's possible that things don't work. The most common "
235
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -238,7 +259,7 @@ msgid ""
238
  "browser's cache may solve the problem."
239
  msgstr ""
240
 
241
- #: inc/php/page.php:140
242
  msgid ""
243
  "It's impossible to tell what could be wrong exactly, but if you post a "
244
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -246,13 +267,13 @@ msgid ""
246
  "possible, including a link to your website where the problem can be seen."
247
  msgstr ""
248
 
249
- #: inc/php/page.php:142
250
  msgid ""
251
  "The last WordPress update is preventing me from editing my website that is "
252
  "using this plugin. Why is this?"
253
  msgstr ""
254
 
255
- #: inc/php/page.php:143
256
  msgid ""
257
  "This plugin can not cause such problem. More likely, the problem are related "
258
  "to the settings of the website. It could just be a cache, so please try to "
@@ -261,39 +282,50 @@ msgid ""
261
  "please try to re-login to the website, this too can help."
262
  msgstr ""
263
 
264
- #: inc/php/page.php:145
265
  msgid "Where to report bug if found?"
266
  msgstr "Где можно сообщить об ошибке?"
267
 
268
- #: inc/php/page.php:147
269
  #, php-format
270
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
271
  msgstr ""
272
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
273
 
274
- #: inc/php/page.php:153
275
  msgid "Where to share any ideas or suggestions to make the plugin better?"
276
  msgstr ""
277
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
278
 
279
- #: inc/php/page.php:155
280
  #, php-format
281
  msgid ""
282
- "Any suggestions are very welcome! Please send me an email to %s "
283
- "arthurgareginyan@gmail.com %s. Thank you!"
284
  msgstr ""
285
 
286
- #: inc/php/page.php:161
287
  msgid "I love this plugin! Can I help somehow?"
288
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
289
 
290
- #: inc/php/page.php:163
291
  #, php-format
292
  msgid ""
293
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
294
  "click on the donate button, and thank you!"
295
  msgstr ""
296
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  #: inc/php/settings.php:21
298
  msgid "About"
299
  msgstr "О плагине"
@@ -302,11 +334,7 @@ msgstr "О плагине"
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,27 +344,27 @@ msgstr ""
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,7 +372,7 @@ msgid ""
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,7 +382,7 @@ msgstr ""
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,7 +392,7 @@ msgstr ""
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,9 +402,9 @@ msgstr ""
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
@@ -472,11 +500,11 @@ msgstr ""
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,11 +513,11 @@ msgstr ""
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,11 +526,11 @@ msgstr ""
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,11 +538,11 @@ msgstr ""
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,26 +551,26 @@ msgstr ""
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,33 +578,33 @@ msgstr ""
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,7 +616,7 @@ msgstr ""
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"
@@ -619,8 +647,22 @@ msgstr "Артур Гарегинян"
619
  msgid "http://www.arthurgareginyan.com"
620
  msgstr "http://www.arthurgareginyan.com"
621
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
622
  #~ msgid ""
623
- #~ "To use, enter your custom Meta Tags, then click \"Save Changes\". It's "
624
  #~ "that simple!"
625
  #~ msgstr ""
626
  #~ "Для использования, введите данные ваших Мета-Тегов, затем нажмите кнопку "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
+ "POT-Creation-Date: 2017-06-16 03:31+0300\n"
5
+ "PO-Revision-Date: 2017-06-16 03:32+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: inc/php/core.php:31 inc/php/page.php:47
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
35
 
36
  #: inc/php/messages.php:32
37
  #, php-format
38
+ msgid "Thank you for installing my plugin! I hope you will love it! %s"
39
+ msgstr "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится! %s"
40
 
41
  #: inc/php/messages.php:67
42
  msgid "You have installed an old version of this plugin."
46
  msgid "Please update the plugin to the latest version, and all will be fine."
47
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
48
 
49
+ #: inc/php/page.php:34
50
  #, php-format
51
  msgid "by %s Arthur Gareginyan %s"
52
  msgstr "от %s Артура Гарегинян %s"
53
 
54
+ #: inc/php/page.php:40
55
+ msgid "Version"
56
+ msgstr "Версия"
57
+
58
+ #: inc/php/page.php:48 inc/php/page.php:67
59
  msgid "Usage"
60
  msgstr "Применение"
61
 
62
+ #: inc/php/page.php:49
63
  msgid "F.A.Q."
64
  msgstr "F.A.Q."
65
 
66
+ #: inc/php/page.php:50 inc/php/page.php:197 inc/php/settings.php:194
67
  msgid "Author"
68
  msgstr "Автор"
69
 
70
+ #: inc/php/page.php:51 inc/php/page.php:206 inc/php/settings.php:28
71
+ #: inc/php/settings.php:242
72
  msgid "Support"
73
  msgstr "Поддержка"
74
 
75
+ #: inc/php/page.php:52
76
  msgid "Family"
77
  msgstr "Семья"
78
 
79
+ #: inc/php/page.php:69
80
  msgid "To add the meta tags to your website, simply follow these steps:"
81
  msgstr ""
82
  "Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие "
83
  "действия:"
84
 
85
+ #: inc/php/page.php:71
86
  msgid "Go to the \"Settings\" tab."
87
  msgstr "Перейдите на вкладку «Настройки»."
88
 
89
+ #: inc/php/page.php:72
90
+ msgid "Fill in the required fields."
91
+ msgstr "Заполните необходимые поля."
92
+
93
+ #: inc/php/page.php:73
94
+ msgid "Select the desired settings."
95
+ msgstr "Выберите нужные настройки."
96
 
97
+ #: inc/php/page.php:74
98
+ msgid "Click the \"Save changes\" button."
99
+ msgstr "Нажмите кнопку «Сохранить изменения»."
100
+
101
+ #: inc/php/page.php:75
102
  msgid "Enjoy the improved SEO of your website."
103
  msgstr "Наслаждайтесь улучшенным SEO вашего веб-сайта."
104
 
105
+ #: inc/php/page.php:75
106
  msgid "It's that simple!"
107
  msgstr "Вот так просто!"
108
 
109
+ #: inc/php/page.php:77
110
  msgid "Note!"
111
  msgstr "Примечание!"
112
 
113
+ #: inc/php/page.php:77
114
  msgid "If you want more options then tell me and I will be happy to add it."
115
  msgstr ""
116
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
117
  "добавить их."
118
 
119
+ #: inc/php/page.php:86
120
  msgid "Frequently Asked Questions"
121
  msgstr "Частые Вопросы"
122
 
123
+ #: inc/php/page.php:90
124
+ msgid ""
125
+ "If you have a question, please read the Frequently Asked Questions below to "
126
+ "see if the answer is here."
127
+ msgstr ""
128
+
129
+ #: inc/php/page.php:112
130
  msgid "Will this plugin work on my WordPress.COM website?"
131
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
132
 
133
+ #: inc/php/page.php:113
134
  msgid ""
135
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
136
  "websites."
138
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
139
  "размещённых веб-сайтах (WordPress.ORG)."
140
 
141
+ #: inc/php/page.php:115
142
  msgid "Can I use this plugin on my language?"
143
  msgstr "Можно ли использовать этот плагин на моём языке?"
144
 
145
+ #: inc/php/page.php:117
146
  #, php-format
147
  msgid ""
148
+ "Yes. This plugin is ready for translation and has already been translated "
149
+ "into several languages. But If your language is not available then you can "
150
+ "make one. The POT file is included and placed in the <code>languages</code> "
151
+ "folder. Just send the PO file to me at the %s and I will include this "
152
+ "translation within the next plugin update. Many of plugin users would be "
153
+ "delighted if you share your translation with the community. Thanks for your "
154
+ "contribution!"
155
  msgstr ""
156
 
157
+ #: inc/php/page.php:121
158
+ msgid ""
159
+ "Maybe not all existed translations are up to date. You are welcome to "
160
+ "contribute corrections!"
161
+ msgstr ""
162
+
163
+ #: inc/php/page.php:123
164
  msgid "How does it work?"
165
  msgstr "Как оно работает?"
166
 
167
+ #: inc/php/page.php:124
168
  msgid ""
169
  "On the \"Settings\" tab, fill in the required fields, select the desired "
170
+ "settings and click the \"Save changes\" button. Enjoy the improved SEO of "
171
  "your website. It's that simple!"
172
  msgstr ""
173
  "На вкладке «Настройки» заполните необходимые поля, выберите нужные настройки "
174
  "и нажмите кнопку «Сохранить изменения». Наслаждайтесь улучшенным SEO вашего "
175
  "веб-сайта. Это так просто!"
176
 
177
+ #: inc/php/page.php:126
178
  msgid "How much of description I can enter in the text field?"
179
  msgstr ""
180
 
181
+ #: inc/php/page.php:127
182
  msgid ""
183
  "I don't limit the number of characters, but most search engines use a "
184
  "maximum of 160 chars for the home description."
185
  msgstr ""
186
 
187
+ #: inc/php/page.php:129
188
  msgid "How much of keywords I can enter in the text field?"
189
  msgstr ""
190
 
191
+ #: inc/php/page.php:130
192
  msgid "I don't limit the number of characters."
193
  msgstr ""
194
 
195
+ #: inc/php/page.php:132
196
  msgid "I can't get verify my website. What am I doing wrong?"
197
  msgstr ""
198
 
199
+ #: inc/php/page.php:133
200
  msgid ""
201
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
202
  "SpecificFeeds) gives you is confusing as you only have to paste in the "
206
  "“Success” message appear within a few seconds."
207
  msgstr ""
208
 
209
+ #: inc/php/page.php:135
210
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
211
  msgstr ""
212
 
213
+ #: inc/php/page.php:136
214
  msgid ""
215
  "To make these plugins compatible you need to stick to one simple rule: do "
216
  "not fill the same field in both plugins at once. Otherwise both plugins "
217
  "fulfill their work and you will get a duplicate actions, for example:"
218
  msgstr ""
219
 
220
+ #: inc/php/page.php:144
221
  msgid ""
222
  "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
223
  msgstr ""
224
 
225
+ #: inc/php/page.php:146
226
  msgid "Does this plugin requires any modification of the theme?"
227
  msgstr "Этот плагин требует изменения темы?"
228
 
229
+ #: inc/php/page.php:147
230
  msgid ""
231
  "Absolutely not. This plugin is configurable entirely from the plugin "
232
  "settings page."
234
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
235
  "плагина."
236
 
237
+ #: inc/php/page.php:149
238
  msgid "Does this require any knowledge of HTML or CSS?"
239
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
240
 
241
+ #: inc/php/page.php:150
242
  msgid ""
243
  "Absolutely not. This plugin can be configured with no knowledge of HTML or "
244
  "CSS, using an easy-to-use plugin settings page."
246
  "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
247
  "помощью простой в использовании страницы настройки плагина."
248
 
249
+ #: inc/php/page.php:152
250
  msgid "It's not working. What could be wrong?"
251
  msgstr "Оно не работает. Что может быть не так?"
252
 
253
+ #: inc/php/page.php:153
254
  msgid ""
255
  "As with every plugin, it's possible that things don't work. The most common "
256
  "reason for this is a web browser's cache. Every web browser stores a cache "
259
  "browser's cache may solve the problem."
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:154
263
  msgid ""
264
  "It's impossible to tell what could be wrong exactly, but if you post a "
265
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
267
  "possible, including a link to your website where the problem can be seen."
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:156
271
  msgid ""
272
  "The last WordPress update is preventing me from editing my website that is "
273
  "using this plugin. Why is this?"
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:157
277
  msgid ""
278
  "This plugin can not cause such problem. More likely, the problem are related "
279
  "to the settings of the website. It could just be a cache, so please try to "
282
  "please try to re-login to the website, this too can help."
283
  msgstr ""
284
 
285
+ #: inc/php/page.php:159
286
  msgid "Where to report bug if found?"
287
  msgstr "Где можно сообщить об ошибке?"
288
 
289
+ #: inc/php/page.php:161
290
  #, php-format
291
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
292
  msgstr ""
293
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
294
 
295
+ #: inc/php/page.php:167
296
  msgid "Where to share any ideas or suggestions to make the plugin better?"
297
  msgstr ""
298
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
299
 
300
+ #: inc/php/page.php:169
301
  #, php-format
302
  msgid ""
303
+ "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:174
307
  msgid "I love this plugin! Can I help somehow?"
308
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
309
 
310
+ #: inc/php/page.php:176
311
  #, php-format
312
  msgid ""
313
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
314
  "click on the donate button, and thank you!"
315
  msgstr ""
316
 
317
+ #: inc/php/page.php:182
318
+ msgid "My question wasn't answered here."
319
+ msgstr "Моего вопроса здесь нет."
320
+
321
+ #: inc/php/page.php:184
322
+ #, php-format
323
+ msgid ""
324
+ "You can ask your question on the plugin support page %s. But please keep in "
325
+ "mind that this plugin is free, and there is no a special support team, so I "
326
+ "have no way to answer everyone."
327
+ msgstr ""
328
+
329
  #: inc/php/settings.php:21
330
  msgid "About"
331
  msgstr "О плагине"
334
  msgid "This plugin allows you to easily add Meta Tags to your website."
335
  msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
336
 
337
+ #: inc/php/settings.php:30 inc/php/settings.php:244
 
 
 
 
338
  msgid ""
339
  "I'm an independent developer, without a regular income, so every little "
340
  "contribution helps cover my costs and lets me spend more time building "
344
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
345
  "создание программ для людей как вы."
346
 
347
+ #: inc/php/settings.php:31 inc/php/settings.php:245
348
  msgid "Donate with PayPal"
349
  msgstr ""
350
 
351
+ #: inc/php/settings.php:32 inc/php/settings.php:246
352
  msgid "Thanks for your support!"
353
  msgstr "Спасибо за вашу поддержку!"
354
 
355
+ #: inc/php/settings.php:37
356
  msgid "Help"
357
  msgstr "Помощь"
358
 
359
+ #: inc/php/settings.php:39
360
+ msgid "If you have a question, please read the information in the FAQ section."
361
  msgstr "Есть что сказать? Нужна помощь?"
362
 
363
+ #: inc/php/settings.php:56
364
  msgid "Web Master Tools"
365
  msgstr "Веб-мастер инструменты"
366
 
367
+ #: inc/php/settings.php:58
368
  msgid ""
369
  "Webmaster Tools require you to verify your domain. This makes sure that you "
370
  "are the correct owner of your blog or store before they provide their "
372
  "your domain is already verified, you can just forget about these."
373
  msgstr ""
374
 
375
+ #: inc/php/settings.php:63
376
  msgid ""
377
  "Enter your meta key “content” value from your verification code to verify "
378
  "your website. <br>Example: &lt;meta name=\"google-site-verification\" "
382
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"google-site-"
383
  "verification\" content=“<b>1234567890</b>” /&gt;"
384
 
385
+ #: inc/php/settings.php:68
386
  msgid ""
387
  "Enter your meta key “content” value from your verification code to verify "
388
  "your website. <br>Example: &lt;meta name=\"msvalidate.01\" "
392
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"msvalidate.01\" "
393
  "content=“<b>1234567890</b>” /&gt;"
394
 
395
+ #: inc/php/settings.php:73
396
  msgid ""
397
  "Enter your meta key “content” value from your verification code to verify "
398
  "your website. <br>Example: &lt;meta name=\"yandex-verification\" "
402
  "проверки вашего веб-сайта. <br>Пример: &lt;meta name=\"yandex-verification\" "
403
  "content=“<b>1234567890</b>” /&gt;"
404
 
405
+ #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159
406
+ #: inc/php/settings.php:183 inc/php/settings.php:219
407
+ msgid "Save changes"
408
  msgstr "Сохранить изменения"
409
 
410
  #: inc/php/settings.php:83
500
  "Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-"
501
  "тег сюда. В это поле вы можете добавить несколько мета-тегов."
502
 
503
+ #: inc/php/settings.php:141
504
  msgid "Meta Tags for Static Home Page only"
505
  msgstr "Мета-теги только для Static Home Page"
506
 
507
+ #: inc/php/settings.php:143
508
  msgid ""
509
  "You can use the options below to add meta tags such as Description and "
510
  "Keywords only in Static Home Page of your website."
513
  "таких как Description и Keywords только на Static Home Page страницу вашего "
514
  "вебсайта."
515
 
516
+ #: inc/php/settings.php:146
517
  msgid "Home Description"
518
  msgstr "Описание главной страницы"
519
 
520
+ #: inc/php/settings.php:148 inc/php/settings.php:172
521
  msgid ""
522
  "Enter a short description of your website (150-250 characters). Most search "
523
  "engines use a maximum of 160 chars for the home description."
526
  "поисковых систем используют максимум 160 символов для описания домашней "
527
  "страницы."
528
 
529
+ #: inc/php/settings.php:152
530
  msgid "Home Keyword(s)"
531
  msgstr "Ключевые слова главной страницы"
532
 
533
+ #: inc/php/settings.php:154
534
  msgid ""
535
  "Enter a comma-delimited list of keywords for only Static Home Page of your "
536
  "website."
538
  "Введите, разделенный запятыми, список ключевых слов для только Static Home "
539
  "Page вашего веб-сайта."
540
 
541
+ #: inc/php/settings.php:165
542
  msgid "Meta Tags for Default Home Page and Blog Page only"
543
  msgstr "Мета-теги для Default Home Page и только Blog Page"
544
 
545
+ #: inc/php/settings.php:167
546
  msgid ""
547
  "You can use the options below to add meta tags such as Description and "
548
  "Keywords only in Default Home Page and Blog Page of your website."
551
  "таких как Description и Keywords только на Default Home Page и Blog Page "
552
  "страницы вашего вебсайта."
553
 
554
+ #: inc/php/settings.php:170
555
  msgid "Blog Description"
556
  msgstr "Описание блога"
557
 
558
+ #: inc/php/settings.php:176
559
  msgid "Blog Keyword(s)"
560
  msgstr "Ключевые слова блога"
561
 
562
+ #: inc/php/settings.php:178
563
  msgid ""
564
  "Enter a comma-delimited list of keywords for only Blog Page of your website."
565
  msgstr ""
566
  "Введите, разделенный запятыми, список ключевых слов для только Blog Page "
567
  "вашего веб-сайта."
568
 
569
+ #: inc/php/settings.php:189
570
  msgid "Meta Tags for all website (Global)"
571
  msgstr "Мета-теги для всего веб-сайта (Глобальные)"
572
 
573
+ #: inc/php/settings.php:191
574
  msgid ""
575
  "You can use the options below to add meta tags such as Author, Copyright and "
576
  "Keywords in everywhere on your website."
578
  "Вы можете использовать ниже-расположенные опции для добавления мета тегов "
579
  "таких как Author, Copyright и Keywords на каждую страницу вашего вебсайта."
580
 
581
+ #: inc/php/settings.php:199
582
  msgid "Designer"
583
  msgstr "Дизайнер"
584
 
585
+ #: inc/php/settings.php:204
586
  msgid "Contact"
587
  msgstr "Контакты"
588
 
589
+ #: inc/php/settings.php:208
590
  msgid "Copyright"
591
  msgstr "Copyright"
592
 
593
+ #: inc/php/settings.php:212
594
  msgid "Keyword(s)"
595
  msgstr "Ключевые слова"
596
 
597
+ #: inc/php/settings.php:214
598
  msgid "Enter a comma-delimited list of global keywords for your website."
599
  msgstr ""
600
  "Введите, разделенный запятыми, список глобальных ключевых слов для вашего "
601
  "веб-сайта."
602
 
603
+ #: inc/php/settings.php:225
604
  msgid "WooCommerce & Google Shopping"
605
  msgstr "WooCommerce и Google Shopping"
606
 
607
+ #: inc/php/settings.php:227
608
  msgid ""
609
  "This plugin automatically adds the necessary Google Shopping (Merchant "
610
  "Center) structured data on all WooCommerce product pages on your website. "
616
  "разметка для женской футболки которая продаётся за 16 долларов и 80 центов "
617
  "США."
618
 
619
+ #: inc/php/settings.php:237
620
  msgid ""
621
  "Check these data generated on the pages of your website you can <a href="
622
  "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
647
  msgid "http://www.arthurgareginyan.com"
648
  msgstr "http://www.arthurgareginyan.com"
649
 
650
+ #~ msgid "You can contact me by email %s"
651
+ #~ msgstr "Вы можете связаться со мной по электронной почте %s"
652
+
653
+ #~ msgid ""
654
+ #~ "Fill in the required fields, select the desired settings and click the "
655
+ #~ "\"Save changes\" button."
656
+ #~ msgstr ""
657
+ #~ "Заполните необходимые поля, выберите нужные настройки и нажмите кнопку "
658
+ #~ "«Сохранить изменения»."
659
+
660
+ #~ msgid "Thank you for installing my plugin! I hope you will love it %s"
661
+ #~ msgstr ""
662
+ #~ "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится %s"
663
+
664
  #~ msgid ""
665
+ #~ "To use, enter your custom Meta Tags, then click \"Save changes\". It's "
666
  #~ "that simple!"
667
  #~ msgstr ""
668
  #~ "Для использования, введите данные ваших Мета-Тегов, затем нажмите кнопку "
languages/all-meta-tags.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
- "POT-Creation-Date: 2017-06-04 13:29+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: inc/php/core.php:31 inc/php/page.php:40
24
  msgid "Settings"
25
  msgstr ""
26
 
@@ -34,7 +34,7 @@ msgstr ""
34
 
35
  #: inc/php/messages.php:32
36
  #, php-format
37
- msgid "Thank you for installing my plugin! I hope you will love it %s"
38
  msgstr ""
39
 
40
  #: inc/php/messages.php:67
@@ -45,119 +45,140 @@ msgstr ""
45
  msgid "Please update the plugin to the latest version, and all will be fine."
46
  msgstr ""
47
 
48
- #: inc/php/page.php:28
49
  #, php-format
50
  msgid "by %s Arthur Gareginyan %s"
51
  msgstr ""
52
 
53
- #: inc/php/page.php:41 inc/php/page.php:60
 
 
 
 
54
  msgid "Usage"
55
  msgstr ""
56
 
57
- #: inc/php/page.php:42
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
 
69
- #: inc/php/page.php:45
70
  msgid "Family"
71
  msgstr ""
72
 
73
- #: inc/php/page.php:62
74
  msgid "To add the meta tags to your website, simply follow these steps:"
75
  msgstr ""
76
 
77
- #: inc/php/page.php:64
78
  msgid "Go to the \"Settings\" tab."
79
  msgstr ""
80
 
81
- #: inc/php/page.php:65
82
- msgid ""
83
- "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
 
 
 
 
 
 
 
84
  msgstr ""
85
 
86
- #: inc/php/page.php:66
87
  msgid "Enjoy the improved SEO of your website."
88
  msgstr ""
89
 
90
- #: inc/php/page.php:66
91
  msgid "It's that simple!"
92
  msgstr ""
93
 
94
- #: inc/php/page.php:68
95
  msgid "Note!"
96
  msgstr ""
97
 
98
- #: inc/php/page.php:68
99
  msgid "If you want more options then tell me and I will be happy to add it."
100
  msgstr ""
101
 
102
- #: inc/php/page.php:77
103
  msgid "Frequently Asked Questions"
104
  msgstr ""
105
 
106
- #: inc/php/page.php:99
 
 
 
 
 
 
107
  msgid "Will this plugin work on my WordPress.COM website?"
108
  msgstr ""
109
 
110
- #: inc/php/page.php:100
111
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
112
  msgstr ""
113
 
114
- #: inc/php/page.php:102
115
  msgid "Can I use this plugin on my language?"
116
  msgstr ""
117
 
118
- #: inc/php/page.php:104
119
  #, php-format
120
  msgid ""
121
- "Yes. But If your language is not available then you can make one. This plugin is ready for "
122
- "translation. The<code>.pot</code>file is included and placed in the <code>languages</code> folder. "
123
- "Many of plugin users would be delighted if you shared your translation with the community. Just "
124
- "send the translation files (<code>*.po, *.mo</code>) to me at the %s and I will include the "
125
- "translation within the next plugin update."
 
 
 
 
126
  msgstr ""
127
 
128
- #: inc/php/page.php:109
129
  msgid "How does it work?"
130
  msgstr ""
131
 
132
- #: inc/php/page.php:110
133
  msgid ""
134
  "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the "
135
- "\"Save Changes\" button. Enjoy the improved SEO of your website. It's that simple!"
136
  msgstr ""
137
 
138
- #: inc/php/page.php:112
139
  msgid "How much of description I can enter in the text field?"
140
  msgstr ""
141
 
142
- #: inc/php/page.php:113
143
  msgid ""
144
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the "
145
  "home description."
146
  msgstr ""
147
 
148
- #: inc/php/page.php:115
149
  msgid "How much of keywords I can enter in the text field?"
150
  msgstr ""
151
 
152
- #: inc/php/page.php:116
153
  msgid "I don't limit the number of characters."
154
  msgstr ""
155
 
156
- #: inc/php/page.php:118
157
  msgid "I can't get verify my website. What am I doing wrong?"
158
  msgstr ""
159
 
160
- #: inc/php/page.php:119
161
  msgid ""
162
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you "
163
  "is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) "
@@ -166,44 +187,44 @@ msgid ""
166
  "a few seconds."
167
  msgstr ""
168
 
169
- #: inc/php/page.php:121
170
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
171
  msgstr ""
172
 
173
- #: inc/php/page.php:122
174
  msgid ""
175
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field "
176
  "in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate "
177
  "actions, for example:"
178
  msgstr ""
179
 
180
- #: inc/php/page.php:130
181
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
182
  msgstr ""
183
 
184
- #: inc/php/page.php:132
185
  msgid "Does this plugin requires any modification of the theme?"
186
  msgstr ""
187
 
188
- #: inc/php/page.php:133
189
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
190
  msgstr ""
191
 
192
- #: inc/php/page.php:135
193
  msgid "Does this require any knowledge of HTML or CSS?"
194
  msgstr ""
195
 
196
- #: inc/php/page.php:136
197
  msgid ""
198
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-"
199
  "use plugin settings page."
200
  msgstr ""
201
 
202
- #: inc/php/page.php:138
203
  msgid "It's not working. What could be wrong?"
204
  msgstr ""
205
 
206
- #: inc/php/page.php:139
207
  msgid ""
208
  "As with every plugin, it's possible that things don't work. The most common reason for this is a "
209
  "web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
@@ -211,7 +232,7 @@ msgid ""
211
  "browser's cache may solve the problem."
212
  msgstr ""
213
 
214
- #: inc/php/page.php:140
215
  msgid ""
216
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
217
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
@@ -219,13 +240,13 @@ msgid ""
219
  "seen."
220
  msgstr ""
221
 
222
- #: inc/php/page.php:142
223
  msgid ""
224
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why "
225
  "is this?"
226
  msgstr ""
227
 
228
- #: inc/php/page.php:143
229
  msgid ""
230
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
231
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
@@ -233,37 +254,46 @@ msgid ""
233
  "Also please try to re-login to the website, this too can help."
234
  msgstr ""
235
 
236
- #: inc/php/page.php:145
237
  msgid "Where to report bug if found?"
238
  msgstr ""
239
 
240
- #: inc/php/page.php:147
241
  #, php-format
242
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
243
  msgstr ""
244
 
245
- #: inc/php/page.php:153
246
  msgid "Where to share any ideas or suggestions to make the plugin better?"
247
  msgstr ""
248
 
249
- #: inc/php/page.php:155
250
  #, php-format
251
- msgid ""
252
- "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. "
253
- "Thank you!"
254
  msgstr ""
255
 
256
- #: inc/php/page.php:161
257
  msgid "I love this plugin! Can I help somehow?"
258
  msgstr ""
259
 
260
- #: inc/php/page.php:163
261
  #, php-format
262
  msgid ""
263
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
264
  "button, and thank you!"
265
  msgstr ""
266
 
 
 
 
 
 
 
 
 
 
 
 
267
  #: inc/php/settings.php:21
268
  msgid "About"
269
  msgstr ""
@@ -272,64 +302,60 @@ msgstr ""
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
@@ -400,98 +426,98 @@ msgid ""
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>."
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2017-06-16 03:31+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
+ #: inc/php/core.php:31 inc/php/page.php:47
24
  msgid "Settings"
25
  msgstr ""
26
 
34
 
35
  #: inc/php/messages.php:32
36
  #, php-format
37
+ msgid "Thank you for installing my plugin! I hope you will love it! %s"
38
  msgstr ""
39
 
40
  #: inc/php/messages.php:67
45
  msgid "Please update the plugin to the latest version, and all will be fine."
46
  msgstr ""
47
 
48
+ #: inc/php/page.php:34
49
  #, php-format
50
  msgid "by %s Arthur Gareginyan %s"
51
  msgstr ""
52
 
53
+ #: inc/php/page.php:40
54
+ msgid "Version"
55
+ msgstr ""
56
+
57
+ #: inc/php/page.php:48 inc/php/page.php:67
58
  msgid "Usage"
59
  msgstr ""
60
 
61
+ #: inc/php/page.php:49
62
  msgid "F.A.Q."
63
  msgstr ""
64
 
65
+ #: inc/php/page.php:50 inc/php/page.php:197 inc/php/settings.php:194
66
  msgid "Author"
67
  msgstr ""
68
 
69
+ #: inc/php/page.php:51 inc/php/page.php:206 inc/php/settings.php:28 inc/php/settings.php:242
70
  msgid "Support"
71
  msgstr ""
72
 
73
+ #: inc/php/page.php:52
74
  msgid "Family"
75
  msgstr ""
76
 
77
+ #: inc/php/page.php:69
78
  msgid "To add the meta tags to your website, simply follow these steps:"
79
  msgstr ""
80
 
81
+ #: inc/php/page.php:71
82
  msgid "Go to the \"Settings\" tab."
83
  msgstr ""
84
 
85
+ #: inc/php/page.php:72
86
+ msgid "Fill in the required fields."
87
+ msgstr ""
88
+
89
+ #: inc/php/page.php:73
90
+ msgid "Select the desired settings."
91
+ msgstr ""
92
+
93
+ #: inc/php/page.php:74
94
+ msgid "Click the \"Save changes\" button."
95
  msgstr ""
96
 
97
+ #: inc/php/page.php:75
98
  msgid "Enjoy the improved SEO of your website."
99
  msgstr ""
100
 
101
+ #: inc/php/page.php:75
102
  msgid "It's that simple!"
103
  msgstr ""
104
 
105
+ #: inc/php/page.php:77
106
  msgid "Note!"
107
  msgstr ""
108
 
109
+ #: inc/php/page.php:77
110
  msgid "If you want more options then tell me and I will be happy to add it."
111
  msgstr ""
112
 
113
+ #: inc/php/page.php:86
114
  msgid "Frequently Asked Questions"
115
  msgstr ""
116
 
117
+ #: inc/php/page.php:90
118
+ msgid ""
119
+ "If you have a question, please read the Frequently Asked Questions below to see if the answer is "
120
+ "here."
121
+ msgstr ""
122
+
123
+ #: inc/php/page.php:112
124
  msgid "Will this plugin work on my WordPress.COM website?"
125
  msgstr ""
126
 
127
+ #: inc/php/page.php:113
128
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
129
  msgstr ""
130
 
131
+ #: inc/php/page.php:115
132
  msgid "Can I use this plugin on my language?"
133
  msgstr ""
134
 
135
+ #: inc/php/page.php:117
136
  #, php-format
137
  msgid ""
138
+ "Yes. This plugin is ready for translation and has already been translated into several languages. "
139
+ "But If your language is not available then you can make one. The POT file is included and placed in "
140
+ "the <code>languages</code> folder. Just send the PO file to me at the %s and I will include this "
141
+ "translation within the next plugin update. Many of plugin users would be delighted if you share "
142
+ "your translation with the community. Thanks for your contribution!"
143
+ msgstr ""
144
+
145
+ #: inc/php/page.php:121
146
+ msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
147
  msgstr ""
148
 
149
+ #: inc/php/page.php:123
150
  msgid "How does it work?"
151
  msgstr ""
152
 
153
+ #: inc/php/page.php:124
154
  msgid ""
155
  "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the "
156
+ "\"Save changes\" button. Enjoy the improved SEO of your website. It's that simple!"
157
  msgstr ""
158
 
159
+ #: inc/php/page.php:126
160
  msgid "How much of description I can enter in the text field?"
161
  msgstr ""
162
 
163
+ #: inc/php/page.php:127
164
  msgid ""
165
  "I don't limit the number of characters, but most search engines use a maximum of 160 chars for the "
166
  "home description."
167
  msgstr ""
168
 
169
+ #: inc/php/page.php:129
170
  msgid "How much of keywords I can enter in the text field?"
171
  msgstr ""
172
 
173
+ #: inc/php/page.php:130
174
  msgid "I don't limit the number of characters."
175
  msgstr ""
176
 
177
+ #: inc/php/page.php:132
178
  msgid "I can't get verify my website. What am I doing wrong?"
179
  msgstr ""
180
 
181
+ #: inc/php/page.php:133
182
  msgid ""
183
  "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you "
184
  "is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) "
187
  "a few seconds."
188
  msgstr ""
189
 
190
+ #: inc/php/page.php:135
191
  msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
192
  msgstr ""
193
 
194
+ #: inc/php/page.php:136
195
  msgid ""
196
  "To make these plugins compatible you need to stick to one simple rule: do not fill the same field "
197
  "in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate "
198
  "actions, for example:"
199
  msgstr ""
200
 
201
+ #: inc/php/page.php:144
202
  msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
203
  msgstr ""
204
 
205
+ #: inc/php/page.php:146
206
  msgid "Does this plugin requires any modification of the theme?"
207
  msgstr ""
208
 
209
+ #: inc/php/page.php:147
210
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
211
  msgstr ""
212
 
213
+ #: inc/php/page.php:149
214
  msgid "Does this require any knowledge of HTML or CSS?"
215
  msgstr ""
216
 
217
+ #: inc/php/page.php:150
218
  msgid ""
219
  "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-"
220
  "use plugin settings page."
221
  msgstr ""
222
 
223
+ #: inc/php/page.php:152
224
  msgid "It's not working. What could be wrong?"
225
  msgstr ""
226
 
227
+ #: inc/php/page.php:153
228
  msgid ""
229
  "As with every plugin, it's possible that things don't work. The most common reason for this is a "
230
  "web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
232
  "browser's cache may solve the problem."
233
  msgstr ""
234
 
235
+ #: inc/php/page.php:154
236
  msgid ""
237
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
238
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
240
  "seen."
241
  msgstr ""
242
 
243
+ #: inc/php/page.php:156
244
  msgid ""
245
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why "
246
  "is this?"
247
  msgstr ""
248
 
249
+ #: inc/php/page.php:157
250
  msgid ""
251
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
252
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
254
  "Also please try to re-login to the website, this too can help."
255
  msgstr ""
256
 
257
+ #: inc/php/page.php:159
258
  msgid "Where to report bug if found?"
259
  msgstr ""
260
 
261
+ #: inc/php/page.php:161
262
  #, php-format
263
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:167
267
  msgid "Where to share any ideas or suggestions to make the plugin better?"
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:169
271
  #, php-format
272
+ msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
 
273
  msgstr ""
274
 
275
+ #: inc/php/page.php:174
276
  msgid "I love this plugin! Can I help somehow?"
277
  msgstr ""
278
 
279
+ #: inc/php/page.php:176
280
  #, php-format
281
  msgid ""
282
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
283
  "button, and thank you!"
284
  msgstr ""
285
 
286
+ #: inc/php/page.php:182
287
+ msgid "My question wasn't answered here."
288
+ msgstr ""
289
+
290
+ #: inc/php/page.php:184
291
+ #, php-format
292
+ msgid ""
293
+ "You can ask your question on the plugin support page %s. But please keep in mind that this plugin "
294
+ "is free, and there is no a special support team, so I have no way to answer everyone."
295
+ msgstr ""
296
+
297
  #: inc/php/settings.php:21
298
  msgid "About"
299
  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:244
 
 
 
 
306
  msgid ""
307
  "I'm an independent developer, without a regular income, so every little contribution helps cover my "
308
  "costs and lets me spend more time building things for people like you to enjoy."
309
  msgstr ""
310
 
311
+ #: inc/php/settings.php:31 inc/php/settings.php:245
312
  msgid "Donate with PayPal"
313
  msgstr ""
314
 
315
+ #: inc/php/settings.php:32 inc/php/settings.php:246
316
  msgid "Thanks for your support!"
317
  msgstr ""
318
 
319
+ #: inc/php/settings.php:37
320
  msgid "Help"
321
  msgstr ""
322
 
323
+ #: inc/php/settings.php:39
324
+ msgid "If you have a question, please read the information in the FAQ section."
325
  msgstr ""
326
 
327
+ #: inc/php/settings.php:56
328
  msgid "Web Master Tools"
329
  msgstr ""
330
 
331
+ #: inc/php/settings.php:58
332
  msgid ""
333
  "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner "
334
  "of your blog or store before they provide their services to you. You can use the options below to "
335
  "verify your domain. If your domain is already verified, you can just forget about these."
336
  msgstr ""
337
 
338
+ #: inc/php/settings.php:63
339
  msgid ""
340
  "Enter your meta key “content” value from your verification code to verify your website. "
341
  "<br>Example: &lt;meta name=\"google-site-verification\" content=“<b>1234567890</b>” /&gt;"
342
  msgstr ""
343
 
344
+ #: inc/php/settings.php:68
345
  msgid ""
346
  "Enter your meta key “content” value from your verification code to verify your website. "
347
  "<br>Example: &lt;meta name=\"msvalidate.01\" content=“<b>1234567890</b>” /&gt;"
348
  msgstr ""
349
 
350
+ #: inc/php/settings.php:73
351
  msgid ""
352
  "Enter your meta key “content” value from your verification code to verify your website. "
353
  "<br>Example: &lt;meta name=\"yandex-verification\" content=“<b>1234567890</b>” /&gt;"
354
  msgstr ""
355
 
356
+ #: inc/php/settings.php:77 inc/php/settings.php:135 inc/php/settings.php:159 inc/php/settings.php:183
357
+ #: inc/php/settings.php:219
358
+ msgid "Save changes"
359
  msgstr ""
360
 
361
  #: inc/php/settings.php:83
426
  "you can add multiple meta tags."
427
  msgstr ""
428
 
429
+ #: inc/php/settings.php:141
430
  msgid "Meta Tags for Static Home Page only"
431
  msgstr ""
432
 
433
+ #: inc/php/settings.php:143
434
  msgid ""
435
  "You can use the options below to add meta tags such as Description and Keywords only in Static Home "
436
  "Page of your website."
437
  msgstr ""
438
 
439
+ #: inc/php/settings.php:146
440
  msgid "Home Description"
441
  msgstr ""
442
 
443
+ #: inc/php/settings.php:148 inc/php/settings.php:172
444
  msgid ""
445
  "Enter a short description of your website (150-250 characters). Most search engines use a maximum "
446
  "of 160 chars for the home description."
447
  msgstr ""
448
 
449
+ #: inc/php/settings.php:152
450
  msgid "Home Keyword(s)"
451
  msgstr ""
452
 
453
+ #: inc/php/settings.php:154
454
  msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
455
  msgstr ""
456
 
457
+ #: inc/php/settings.php:165
458
  msgid "Meta Tags for Default Home Page and Blog Page only"
459
  msgstr ""
460
 
461
+ #: inc/php/settings.php:167
462
  msgid ""
463
  "You can use the options below to add meta tags such as Description and Keywords only in Default "
464
  "Home Page and Blog Page of your website."
465
  msgstr ""
466
 
467
+ #: inc/php/settings.php:170
468
  msgid "Blog Description"
469
  msgstr ""
470
 
471
+ #: inc/php/settings.php:176
472
  msgid "Blog Keyword(s)"
473
  msgstr ""
474
 
475
+ #: inc/php/settings.php:178
476
  msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
477
  msgstr ""
478
 
479
+ #: inc/php/settings.php:189
480
  msgid "Meta Tags for all website (Global)"
481
  msgstr ""
482
 
483
+ #: inc/php/settings.php:191
484
  msgid ""
485
  "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere "
486
  "on your website."
487
  msgstr ""
488
 
489
+ #: inc/php/settings.php:199
490
  msgid "Designer"
491
  msgstr ""
492
 
493
+ #: inc/php/settings.php:204
494
  msgid "Contact"
495
  msgstr ""
496
 
497
+ #: inc/php/settings.php:208
498
  msgid "Copyright"
499
  msgstr ""
500
 
501
+ #: inc/php/settings.php:212
502
  msgid "Keyword(s)"
503
  msgstr ""
504
 
505
+ #: inc/php/settings.php:214
506
  msgid "Enter a comma-delimited list of global keywords for your website."
507
  msgstr ""
508
 
509
+ #: inc/php/settings.php:225
510
  msgid "WooCommerce & Google Shopping"
511
  msgstr ""
512
 
513
+ #: inc/php/settings.php:227
514
  msgid ""
515
  "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on "
516
  "all WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells "
517
  "for 16 dollars and 80 cents of US."
518
  msgstr ""
519
 
520
+ #: inc/php/settings.php:237
521
  msgid ""
522
  "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/"
523
  "structured-data/testing-tool\" target=\"_blank\">here</a>."
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.3
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -64,13 +64,17 @@ If you want more options then tell me and I will be happy to add it.
64
 
65
  = Translation =
66
 
 
 
67
  * English (default)
68
  * Russian
69
  * Spanish - Mexico (translation by Sergio Yeyo Troncoso)
70
  * Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
71
  * Italian (translation by Stefano Tombolini)
72
 
73
- If you would like to add a translation to this plugin then please head to our [Translating WordPress](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags) page.
 
 
74
 
75
  >**Contribution**
76
  >
@@ -99,9 +103,9 @@ Manually via FTP access:
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.
103
 
104
- [More help installing Plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
105
 
106
 
107
  == Frequently Asked Questions ==
@@ -109,10 +113,10 @@ After installation, a "`All Meta Tags`" menu item will appear in the "`Settings
109
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
110
 
111
  = Q. Can I use this plugin on my language? =
112
- A. Yes. But If your language is not available then you can make one. This plugin is ready for translation. The `.pot` file is included and placed in the "`languages`" folder. Many of plugin users would be delighted if you shared your translation with the community. Just send the translation files (`*.po, *.mo`) to me at the arthurgareginyan@gmail.com and I will include the translation within the next plugin update.
113
 
114
  = Q. How does it work? =
115
- A. Simply go to the plugin settings page, fill in the required fields, select the desired settings and click the "Save Changes" button. Enjoy the improved SEO of your website. It's that simple!
116
  You can find the plugin settings page at "`WP Admin Panel`" -> "`Settings`" -> "`All Meta Tags`".
117
 
118
  = Q. How much of description I can enter in the text field? =
@@ -187,6 +191,14 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
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.
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.4
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
64
 
65
  = Translation =
66
 
67
+ This plugin is ready for translation and has already been translated into several languages.
68
+
69
  * English (default)
70
  * Russian
71
  * Spanish - Mexico (translation by Sergio Yeyo Troncoso)
72
  * Spanish (translation by [Ramiro Garcés](http://www.ramirogarces.com.ve/))
73
  * Italian (translation by Stefano Tombolini)
74
 
75
+ Maybe not all existed translations are up to date. You are welcome to contribute corrections!
76
+
77
+ If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags).
78
 
79
  >**Contribution**
80
  >
103
  4. Log into Admin Panel of your WordPress website.
104
  5. Activate this plugin through the "`Plugins`" tab.
105
 
106
+ After installation and activation, the "`All Meta Tags`" menu item will appear in the "`Settings`" section of Admin Panel. Click on it in order to view the plugin settings page.
107
 
108
+ [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
109
 
110
 
111
  == Frequently Asked Questions ==
113
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
114
 
115
  = Q. Can I use this plugin on my language? =
116
+ A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just send the PO file to me at the arthurgareginyan@gmail.com and I will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
117
 
118
  = Q. How does it work? =
119
+ A. Simply go to the plugin settings page, fill in the required fields, select the desired settings and click the "Save changes" button. Enjoy the improved SEO of your website. It's that simple!
120
  You can find the plugin settings page at "`WP Admin Panel`" -> "`Settings`" -> "`All Meta Tags`".
121
 
122
  = Q. How much of description I can enter in the text field? =
191
 
192
  == Changelog ==
193
 
194
+ = 4.4 =
195
+ * On the plugin settings page, text of buttons are corrected.
196
+ * On the plugin settings page, the information about the plugin version number moved to header section.
197
+ * Some mention of constants replaced with variables for easier access.
198
+ * Content of the "Usage" tab updated.
199
+ * Content of the "FAQ" tab updated.
200
+ * Added load of the jQuery library on the plugin settings page.
201
+
202
  = 4.3 =
203
  * To the plugin settings page added information about the plugin version number.
204
  * The "Tested up to:" comment changed to 4.8 after full testing process.