All Meta Tags - Version 4.24

Version Description

  • The "add_meta_tags" function renamed to "prepare".
  • The "add_metadata_head" function renamed to "exec".
  • Content of the "Settings" section updated.
  • Content of the "Usage Instructions" section updated.
  • Content of the "F.A.Q." section updated.
  • CSS code, which is located in the file "admin.css" and is related to the "FAQ" section, is improved.
  • Code commenting improved.
  • Translation files are updated.
Download this release

Release Info

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

Code changes from version 4.23 to 4.24

all-meta-tags.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily and safely add your custom meta tags to the WordPress website's head section. This is a must have tool for authors and website's owners.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
- * Version: 4.23
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
5
  * Description: Easily and safely add your custom meta tags to the WordPress website's head section. This is a must have tool for authors and website's owners.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
+ * Version: 4.24
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
inc/css/admin.css CHANGED
@@ -335,6 +335,7 @@ h2 .version {
335
  }
336
  .panel-body {
337
  display: inline-block;
 
338
  font-family: Verdana, Geneva, sans-serif;
339
  font-size: 13px;
340
  }
335
  }
336
  .panel-body {
337
  display: inline-block;
338
+ width: 100%;
339
  font-family: Verdana, Geneva, sans-serif;
340
  font-size: 13px;
341
  }
inc/php/controls.php CHANGED
@@ -6,7 +6,7 @@
6
  defined( 'ABSPATH' ) or die( "Restricted access!" );
7
 
8
  /**
9
- * Generator of the help text under controls
10
  */
11
  function spacexchimp_p004_control_help( $help=null ) {
12
 
@@ -28,7 +28,7 @@ function spacexchimp_p004_control_help( $help=null ) {
28
  }
29
 
30
  /**
31
- * Generator of the fields for saving settings data to database
32
  */
33
  function spacexchimp_p004_control_field( $name, $label, $placeholder, $help=null, $link=null ) {
34
 
@@ -62,7 +62,7 @@ function spacexchimp_p004_control_field( $name, $label, $placeholder, $help=null
62
  }
63
 
64
  /**
65
- * Generator of the textarea fields for saving settings data to database
66
  */
67
  function spacexchimp_p004_control_textarea( $name, $label, $placeholder, $help=null ) {
68
 
6
  defined( 'ABSPATH' ) or die( "Restricted access!" );
7
 
8
  /**
9
+ * Generator of the help text under options
10
  */
11
  function spacexchimp_p004_control_help( $help=null ) {
12
 
28
  }
29
 
30
  /**
31
+ * Generator of the field option for saving plugin settings to database
32
  */
33
  function spacexchimp_p004_control_field( $name, $label, $placeholder, $help=null, $link=null ) {
34
 
62
  }
63
 
64
  /**
65
+ * Generator of the textarea option for saving plugin settings to database
66
  */
67
  function spacexchimp_p004_control_textarea( $name, $label, $placeholder, $help=null ) {
68
 
inc/php/functional.php CHANGED
@@ -8,7 +8,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
8
  /**
9
  * Generate the Meta Tags
10
  */
11
- function spacexchimp_p004_add_meta_tags() {
12
 
13
  // Read options from database
14
  $options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
@@ -110,7 +110,7 @@ function spacexchimp_p004_add_meta_tags() {
110
  }
111
  }
112
 
113
- // Meta Tags for all website
114
  if ( !empty( $author ) ) {
115
  $metatags_arr[] = "<meta name='author' content='$author' />";
116
  }
@@ -170,12 +170,16 @@ function spacexchimp_p004_add_meta_tags() {
170
  }
171
 
172
  /**
173
- * Include the Meta Tags in head area
174
  */
175
- function spacexchimp_p004_add_metadata_head() {
176
  echo PHP_EOL,
177
- implode(PHP_EOL, spacexchimp_p004_add_meta_tags()),
178
  PHP_EOL,
179
  PHP_EOL;
180
  }
181
- add_action( 'wp_head', 'spacexchimp_p004_add_metadata_head', 0 );
 
 
 
 
8
  /**
9
  * Generate the Meta Tags
10
  */
11
+ function spacexchimp_p004_prepare() {
12
 
13
  // Read options from database
14
  $options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
110
  }
111
  }
112
 
113
+ // Meta Tags for the entire website
114
  if ( !empty( $author ) ) {
115
  $metatags_arr[] = "<meta name='author' content='$author' />";
116
  }
170
  }
171
 
172
  /**
173
+ * Process the Meta Tags
174
  */
175
+ function spacexchimp_p004_exec() {
176
  echo PHP_EOL,
177
+ implode(PHP_EOL, spacexchimp_p004_prepare()),
178
  PHP_EOL,
179
  PHP_EOL;
180
  }
181
+
182
+ /**
183
+ * Inject the Meta Tags into the website's frontend
184
+ */
185
+ add_action( 'wp_head', 'spacexchimp_p004_exec', 0 );
inc/php/page.php CHANGED
@@ -64,13 +64,13 @@ function spacexchimp_p004_render_submenu_page() {
64
  <div class="inside">
65
  <p><?php _e( 'To add the meta tags to your website, simply follow these steps:', $text ); ?></p>
66
  <ol class="custom-counter">
67
- <li><?php _e( 'Go to the "Settings" tab.', $text ); ?></li>
68
  <li><?php _e( 'Fill in the required fields.', $text ); ?></li>
69
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
70
  <li><?php _e( 'Enjoy the improved SEO of your website.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
71
  </ol>
72
  <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
73
- __( 'If you want more options then %s tell us %s and we will be happy to add it.', $text ),
74
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
75
  '</a>'
76
  );
@@ -93,7 +93,7 @@ function spacexchimp_p004_render_submenu_page() {
93
 
94
  <div class="panel-group" id="collapse-group">
95
  <?php
96
- $loopvalue = '15';
97
  for ( $i = 1; $i <= $loopvalue; $i++ ) {
98
  echo '<div class="panel panel-default">
99
  <div class="panel-heading">
@@ -136,8 +136,8 @@ function spacexchimp_p004_render_submenu_page() {
136
  <div class="question-6 question-red"><?php _e( 'I can\'t get verify my website. What am I doing wrong?', $text ); ?></div>
137
  <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>
138
 
139
- <div class="question-7"><?php _e( 'What about compatibility with plugin "All in One SEO Pack"?', $text ); ?></div>
140
- <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 ); ?>
141
  <pre><code>&lt;head&gt;
142
  ...
143
  &lt;meta name="copyright" content="Copyright (c) 2013-2018 Space X-Chimp. All Rights Reserved."&gt;
@@ -145,47 +145,51 @@ function spacexchimp_p004_render_submenu_page() {
145
  &lt;meta name="copyright" content="Copyright 2018 Space X-Chimp. All Rights Reserved."&gt;
146
  ...
147
  &lt;/head&gt;</code></pre>
148
- <?php _e( 'In the rest, the "All Meta Tags" and "All in One SEO Pack" is compatible.', $text ); ?></div>
149
 
150
- <div class="question-8"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
151
- <div class="answer-8"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
 
152
 
153
- <div class="question-9"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
154
- <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>
155
 
156
- <div class="question-10 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
157
- <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>
 
 
 
158
  <?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, we\'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>
159
 
160
- <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>
161
- <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>
162
 
163
- <div class="question-12 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
164
- <div class="answer-12"><?php printf(
165
  __( 'Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!', $text ),
166
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
167
  '</a>'
168
  );
169
  ?></div>
170
 
171
- <div class="question-13"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
172
- <div class="answer-13"><?php printf(
173
  __( 'Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!', $text ),
174
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
175
  '</a>'
176
  );
177
  ?></div>
178
 
179
- <div class="question-14"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
180
- <div class="answer-14"><?php printf(
181
  __( 'Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!', $text ),
182
  '<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
183
  '</a>'
184
  );
185
  ?></div>
186
 
187
- <div class="question-15"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
188
- <div class="answer-15"><?php printf(
189
  __( 'You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone.', $text ),
190
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
191
  '</a>'
64
  <div class="inside">
65
  <p><?php _e( 'To add the meta tags to your website, simply follow these steps:', $text ); ?></p>
66
  <ol class="custom-counter">
67
+ <li><?php _e( 'Go to the "Settings" tab on this page.', $text ); ?></li>
68
  <li><?php _e( 'Fill in the required fields.', $text ); ?></li>
69
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
70
  <li><?php _e( 'Enjoy the improved SEO of your website.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
71
  </ol>
72
  <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
73
+ __( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
74
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
75
  '</a>'
76
  );
93
 
94
  <div class="panel-group" id="collapse-group">
95
  <?php
96
+ $loopvalue = '16';
97
  for ( $i = 1; $i <= $loopvalue; $i++ ) {
98
  echo '<div class="panel panel-default">
99
  <div class="panel-heading">
136
  <div class="question-6 question-red"><?php _e( 'I can\'t get verify my website. What am I doing wrong?', $text ); ?></div>
137
  <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>
138
 
139
+ <div class="question-7"><?php _e( 'What about compatibility with the plugin "All in One SEO Pack"?', $text ); ?></div>
140
+ <div class="answer-7"><?php _e( 'As far as we know, the "All Meta Tags" plugin is compatible with the "All in One SEO Pack" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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 ); ?>
141
  <pre><code>&lt;head&gt;
142
  ...
143
  &lt;meta name="copyright" content="Copyright (c) 2013-2018 Space X-Chimp. All Rights Reserved."&gt;
145
  &lt;meta name="copyright" content="Copyright 2018 Space X-Chimp. All Rights Reserved."&gt;
146
  ...
147
  &lt;/head&gt;</code></pre>
148
+ <?php _e( 'If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue.', $text ); ?></div>
149
 
150
+ <div class="question-8"><?php _e( 'What about compatibility with the plugin "Yoast SEO"?', $text ); ?></div>
151
+ <div class="answer-8"><?php _e( 'As far as we know, the "All Meta Tags" plugin is compatible with the "Yoast SEO" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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.', $text ); ?><br><br>
152
+ <?php _e( 'If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue.', $text ); ?></div>
153
 
154
+ <div class="question-9"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
155
+ <div class="answer-9"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
156
 
157
+ <div class="question-10"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
158
+ <div class="answer-10"><?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>
159
+
160
+ <div class="question-11 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
161
+ <div class="answer-11"><?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>
162
  <?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, we\'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>
163
 
164
+ <div class="question-12 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>
165
+ <div class="answer-12"><?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>
166
 
167
+ <div class="question-13 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
168
+ <div class="answer-13"><?php printf(
169
  __( 'Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!', $text ),
170
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
171
  '</a>'
172
  );
173
  ?></div>
174
 
175
+ <div class="question-14"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
176
+ <div class="answer-14"><?php printf(
177
  __( 'Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!', $text ),
178
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
179
  '</a>'
180
  );
181
  ?></div>
182
 
183
+ <div class="question-15"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
184
+ <div class="answer-15"><?php printf(
185
  __( 'Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!', $text ),
186
  '<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
187
  '</a>'
188
  );
189
  ?></div>
190
 
191
+ <div class="question-16"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
192
+ <div class="answer-16"><?php printf(
193
  __( 'You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone.', $text ),
194
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
195
  '</a>'
inc/php/settings.php CHANGED
@@ -157,7 +157,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
157
  </div>
158
 
159
  <div class="postbox" id="everywhere">
160
- <h3 class="title"><?php _e( 'Meta Tags for all website (Global)', $text ); ?></h3>
161
  <div class="inside">
162
  <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>
163
  <table class="form-table">
157
  </div>
158
 
159
  <div class="postbox" id="everywhere">
160
+ <h3 class="title"><?php _e( 'Meta Tags for the entire website (Global)', $text ); ?></h3>
161
  <div class="inside">
162
  <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>
163
  <table class="form-table">
languages/all-meta-tags-de_DE.mo CHANGED
Binary file
languages/all-meta-tags-de_DE.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
- "POT-Creation-Date: 2018-08-07 01:35+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:35+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Generator: Poedit 2.0.6\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -30,7 +30,7 @@ msgstr "Spende"
30
 
31
  #: inc/php/core.php:52
32
  msgid "Meta Tags Inserter"
33
- msgstr ""
34
 
35
  #: inc/php/messages.php:26
36
  msgid "Hello. We are the team of Space X-Chimp."
@@ -83,7 +83,7 @@ msgid "To add the meta tags to your website, simply follow these steps:"
83
  msgstr ""
84
 
85
  #: inc/php/page.php:67
86
- msgid "Go to the \"Settings\" tab."
87
  msgstr "Gehen Sie zum Tab \"Einstellungen\"."
88
 
89
  #: inc/php/page.php:68
@@ -108,7 +108,7 @@ msgstr "Achtung!"
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
- msgid "If you want more options then %s tell us %s and we will be happy to add it."
112
  msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
113
 
114
  #: inc/php/page.php:87
@@ -181,115 +181,123 @@ msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT
181
  msgstr ""
182
 
183
  #: inc/php/page.php:139
184
- msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
185
  msgstr ""
186
 
187
  #: inc/php/page.php:140
188
- msgid "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:"
189
  msgstr ""
190
 
191
- #: inc/php/page.php:148
192
- msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
193
  msgstr ""
194
 
195
  #: inc/php/page.php:150
 
 
 
 
 
 
 
 
196
  msgid "Does this plugin requires any modification of the theme?"
197
  msgstr "Benötigt das Plugin Veränderungen am Theme?"
198
 
199
- #: inc/php/page.php:151
200
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
201
  msgstr "Absolut nicht. Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
202
 
203
- #: inc/php/page.php:153
204
  msgid "Does this require any knowledge of HTML or CSS?"
205
  msgstr "Brauche ich HTML oder CCS Kenntnisse?"
206
 
207
- #: inc/php/page.php:154
208
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
209
  msgstr "Absolut nicht. Dieses Plugin kann ohne Kenntnisse von HTML oder CSS konfiguriert werden."
210
 
211
- #: inc/php/page.php:156
212
  msgid "It's not working. What could be wrong?"
213
  msgstr "Es funktioniert nicht. Was könnte falsch sein?"
214
 
215
- #: inc/php/page.php:157
216
  msgid "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."
217
  msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der häufigste Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren. Das nennt man den Browser Cache. Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
218
 
219
- #: inc/php/page.php:158
220
  msgid "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, we'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."
221
  msgstr ""
222
 
223
- #: inc/php/page.php:160
224
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
225
  msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
226
 
227
- #: inc/php/page.php:161
228
  msgid "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."
229
  msgstr "Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen. Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers. Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
230
 
231
- #: inc/php/page.php:163
232
  msgid "Where to report bug if found?"
233
  msgstr "Wo kann ich eine Fehler melden?"
234
 
235
- #: inc/php/page.php:165
236
  #, php-format
237
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
238
  msgstr ""
239
 
240
- #: inc/php/page.php:171
241
  msgid "Where to share any ideas or suggestions to make the plugin better?"
242
  msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
243
 
244
- #: inc/php/page.php:173
245
  #, php-format
246
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
247
  msgstr ""
248
 
249
- #: inc/php/page.php:179
250
  msgid "I love this plugin! Can I help somehow?"
251
  msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
252
 
253
- #: inc/php/page.php:181
254
  #, php-format
255
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
256
  msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
257
 
258
- #: inc/php/page.php:187
259
  msgid "My question wasn't answered here."
260
  msgstr "Meine Fragen wurden nicht beantwortet."
261
 
262
- #: inc/php/page.php:189
263
  #, php-format
264
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
265
  msgstr ""
266
 
267
- #: inc/php/page.php:203
268
  msgid "Support Us"
269
  msgstr "Unterstütze uns"
270
 
271
- #: inc/php/page.php:211 inc/php/settings.php:226 inc/php/sidebar.php:46
272
  msgid "Donate with PayPal"
273
  msgstr "Spende mit PayPal"
274
 
275
- #: inc/php/page.php:216
276
  #, php-format
277
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
278
  msgstr ""
279
 
280
- #: inc/php/page.php:224
281
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
282
  msgstr ""
283
 
284
- #: inc/php/page.php:225
285
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
286
  msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
287
 
288
- #: inc/php/page.php:226
289
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
290
  msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
291
 
292
- #: inc/php/page.php:227
293
  msgid "Thank you for your support!"
294
  msgstr "Danke für Ihre Unterstützung!"
295
 
@@ -410,7 +418,7 @@ msgid "Enter a comma-delimited list of keywords for only Blog Page of your websi
410
  msgstr ""
411
 
412
  #: inc/php/settings.php:160
413
- msgid "Meta Tags for all website (Global)"
414
  msgstr ""
415
 
416
  #: inc/php/settings.php:162
@@ -483,7 +491,7 @@ msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
483
 
484
  #. Plugin Name of the plugin/theme
485
  msgid "All Meta Tags"
486
- msgstr ""
487
 
488
  #. Plugin URI of the plugin/theme
489
  msgid "https://github.com/ArthurGareginyan/all-meta-tags"
@@ -504,8 +512,5 @@ msgstr "https://www.spacexchimp.com"
504
  #~ msgid "Select the desired settings."
505
  #~ msgstr "Wählen Sie die gewünschten Einstellungen aus."
506
 
507
- #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
508
- #~ msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
509
-
510
- #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
511
- #~ msgstr "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, dass Sie auch von meinen Projekten bereichert werden."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2018-10-09 09:36+0300\n"
7
+ "PO-Revision-Date: 2018-10-09 09:36+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Generator: Poedit 2.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
30
 
31
  #: inc/php/core.php:52
32
  msgid "Meta Tags Inserter"
33
+ msgstr "Meta Tags Inserter"
34
 
35
  #: inc/php/messages.php:26
36
  msgid "Hello. We are the team of Space X-Chimp."
83
  msgstr ""
84
 
85
  #: inc/php/page.php:67
86
+ msgid "Go to the \"Settings\" tab on this page."
87
  msgstr "Gehen Sie zum Tab \"Einstellungen\"."
88
 
89
  #: inc/php/page.php:68
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
+ msgid "If you want more options, then %s let us know %s and we will be happy to add them."
112
  msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
113
 
114
  #: inc/php/page.php:87
181
  msgstr ""
182
 
183
  #: inc/php/page.php:139
184
+ msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
185
  msgstr ""
186
 
187
  #: inc/php/page.php:140
188
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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:"
189
  msgstr ""
190
 
191
+ #: inc/php/page.php:148 inc/php/page.php:152
192
+ msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue."
193
  msgstr ""
194
 
195
  #: inc/php/page.php:150
196
+ msgid "What about compatibility with the plugin \"Yoast SEO\"?"
197
+ msgstr ""
198
+
199
+ #: inc/php/page.php:151
200
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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."
201
+ msgstr ""
202
+
203
+ #: inc/php/page.php:154
204
  msgid "Does this plugin requires any modification of the theme?"
205
  msgstr "Benötigt das Plugin Veränderungen am Theme?"
206
 
207
+ #: inc/php/page.php:155
208
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
209
  msgstr "Absolut nicht. Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
210
 
211
+ #: inc/php/page.php:157
212
  msgid "Does this require any knowledge of HTML or CSS?"
213
  msgstr "Brauche ich HTML oder CCS Kenntnisse?"
214
 
215
+ #: inc/php/page.php:158
216
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
217
  msgstr "Absolut nicht. Dieses Plugin kann ohne Kenntnisse von HTML oder CSS konfiguriert werden."
218
 
219
+ #: inc/php/page.php:160
220
  msgid "It's not working. What could be wrong?"
221
  msgstr "Es funktioniert nicht. Was könnte falsch sein?"
222
 
223
+ #: inc/php/page.php:161
224
  msgid "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."
225
  msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der häufigste Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren. Das nennt man den Browser Cache. Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
226
 
227
+ #: inc/php/page.php:162
228
  msgid "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, we'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."
229
  msgstr ""
230
 
231
+ #: inc/php/page.php:164
232
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
233
  msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
234
 
235
+ #: inc/php/page.php:165
236
  msgid "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."
237
  msgstr "Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen. Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers. Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
238
 
239
+ #: inc/php/page.php:167
240
  msgid "Where to report bug if found?"
241
  msgstr "Wo kann ich eine Fehler melden?"
242
 
243
+ #: inc/php/page.php:169
244
  #, php-format
245
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
246
  msgstr ""
247
 
248
+ #: inc/php/page.php:175
249
  msgid "Where to share any ideas or suggestions to make the plugin better?"
250
  msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
251
 
252
+ #: inc/php/page.php:177
253
  #, php-format
254
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
255
  msgstr ""
256
 
257
+ #: inc/php/page.php:183
258
  msgid "I love this plugin! Can I help somehow?"
259
  msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
260
 
261
+ #: inc/php/page.php:185
262
  #, php-format
263
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
264
  msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
265
 
266
+ #: inc/php/page.php:191
267
  msgid "My question wasn't answered here."
268
  msgstr "Meine Fragen wurden nicht beantwortet."
269
 
270
+ #: inc/php/page.php:193
271
  #, php-format
272
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
273
  msgstr ""
274
 
275
+ #: inc/php/page.php:207
276
  msgid "Support Us"
277
  msgstr "Unterstütze uns"
278
 
279
+ #: inc/php/page.php:215 inc/php/settings.php:226 inc/php/sidebar.php:46
280
  msgid "Donate with PayPal"
281
  msgstr "Spende mit PayPal"
282
 
283
+ #: inc/php/page.php:220
284
  #, php-format
285
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:228
289
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
290
  msgstr ""
291
 
292
+ #: inc/php/page.php:229
293
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
294
  msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
295
 
296
+ #: inc/php/page.php:230
297
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
298
  msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
299
 
300
+ #: inc/php/page.php:231
301
  msgid "Thank you for your support!"
302
  msgstr "Danke für Ihre Unterstützung!"
303
 
418
  msgstr ""
419
 
420
  #: inc/php/settings.php:160
421
+ msgid "Meta Tags for the entire website (Global)"
422
  msgstr ""
423
 
424
  #: inc/php/settings.php:162
491
 
492
  #. Plugin Name of the plugin/theme
493
  msgid "All Meta Tags"
494
+ msgstr "All Meta Tags"
495
 
496
  #. Plugin URI of the plugin/theme
497
  msgid "https://github.com/ArthurGareginyan/all-meta-tags"
512
  #~ msgid "Select the desired settings."
513
  #~ msgstr "Wählen Sie die gewünschten Einstellungen aus."
514
 
515
+ #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
516
+ #~ msgstr "Hallo! Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s."
 
 
 
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: All Meta Tags\n"
6
- "POT-Creation-Date: 2018-08-07 01:35+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:35+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Generator: Poedit 2.0.6\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -83,7 +83,7 @@ msgid "To add the meta tags to your website, simply follow these steps:"
83
  msgstr ""
84
 
85
  #: inc/php/page.php:67
86
- msgid "Go to the \"Settings\" tab."
87
  msgstr "Debes ir a la pestaña “Ajustes”."
88
 
89
  #: inc/php/page.php:68
@@ -108,7 +108,7 @@ msgstr "¡Nota!"
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
- msgid "If you want more options then %s tell us %s and we will be happy to add it."
112
  msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
113
 
114
  #: inc/php/page.php:87
@@ -181,115 +181,123 @@ msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT
181
  msgstr ""
182
 
183
  #: inc/php/page.php:139
184
- msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
185
  msgstr ""
186
 
187
  #: inc/php/page.php:140
188
- msgid "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:"
189
  msgstr ""
190
 
191
- #: inc/php/page.php:148
192
- msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
193
  msgstr ""
194
 
195
  #: inc/php/page.php:150
 
 
 
 
 
 
 
 
196
  msgid "Does this plugin requires any modification of the theme?"
197
  msgstr "¿Este complemento requiere alguna modificación del tema?"
198
 
199
- #: inc/php/page.php:151
200
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
201
  msgstr "Absolutamente NO. Este complemento se puede configurar completamente desde su página de configuración."
202
 
203
- #: inc/php/page.php:153
204
  msgid "Does this require any knowledge of HTML or CSS?"
205
  msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
206
 
207
- #: inc/php/page.php:154
208
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
209
  msgstr "Absolutamente no. Este complemento se puede configurar sin conocimientos de HTML o CSS, utilizando su página de configuración la cual es fácil de usar."
210
 
211
- #: inc/php/page.php:156
212
  msgid "It's not working. What could be wrong?"
213
  msgstr "No funciona. ¿Qué podría estar mal?"
214
 
215
- #: inc/php/page.php:157
216
  msgid "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."
217
  msgstr "Como con todos los complementos, es posible que las cosas no funcionen. La razón más común para esto es la caché de un navegador web. Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor. Esto se denomina caché del navegador. Limpiar la caché del navegador puede resolver el problema."
218
 
219
- #: inc/php/page.php:158
220
  msgid "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, we'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."
221
  msgstr "Es imposible decir exactamente lo que podría estar mal, pero si publicas una solicitud de soporte en el foro de soporte del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte. Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
222
 
223
- #: inc/php/page.php:160
224
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
225
  msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
226
 
227
- #: inc/php/page.php:161
228
  msgid "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."
229
  msgstr "Este complemento no puede causar este problema. Lo más probable es que el problema esté relacionado con la configuración del sitio web. Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web. También intenta volver a conectarte al sitio web, esto también puede ayudar."
230
 
231
- #: inc/php/page.php:163
232
  msgid "Where to report bug if found?"
233
  msgstr "¿Dónde informar el error si se encuentra?"
234
 
235
- #: inc/php/page.php:165
236
  #, php-format
237
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
238
  msgstr ""
239
 
240
- #: inc/php/page.php:171
241
  msgid "Where to share any ideas or suggestions to make the plugin better?"
242
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
243
 
244
- #: inc/php/page.php:173
245
  #, php-format
246
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
247
  msgstr ""
248
 
249
- #: inc/php/page.php:179
250
  msgid "I love this plugin! Can I help somehow?"
251
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
252
 
253
- #: inc/php/page.php:181
254
  #, php-format
255
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
256
  msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
257
 
258
- #: inc/php/page.php:187
259
  msgid "My question wasn't answered here."
260
  msgstr "Mi pregunta no fue contestada aquí."
261
 
262
- #: inc/php/page.php:189
263
  #, php-format
264
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
265
  msgstr "Puede hacer tu pregunta en %s la página de soporte del complementos %s. Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tengo forma de responder a todos."
266
 
267
- #: inc/php/page.php:203
268
  msgid "Support Us"
269
  msgstr "¡Apoyanos!"
270
 
271
- #: inc/php/page.php:211 inc/php/settings.php:226 inc/php/sidebar.php:46
272
  msgid "Donate with PayPal"
273
  msgstr "Donar con PayPal"
274
 
275
- #: inc/php/page.php:216
276
  #, php-format
277
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
278
  msgstr ""
279
 
280
- #: inc/php/page.php:224
281
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
282
  msgstr ""
283
 
284
- #: inc/php/page.php:225
285
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
286
  msgstr "Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución me ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que la gente como tú lo disfrute."
287
 
288
- #: inc/php/page.php:226
289
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
290
  msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
291
 
292
- #: inc/php/page.php:227
293
  msgid "Thank you for your support!"
294
  msgstr "¡Gracias por tu apoyo!"
295
 
@@ -410,7 +418,7 @@ msgid "Enter a comma-delimited list of keywords for only Blog Page of your websi
410
  msgstr "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio web."
411
 
412
  #: inc/php/settings.php:160
413
- msgid "Meta Tags for all website (Global)"
414
  msgstr "Meta etiquetas para todo el sitio web (Globales)"
415
 
416
  #: inc/php/settings.php:162
@@ -507,8 +515,5 @@ msgstr "https://www.spacexchimp.com"
507
  #~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
508
  #~ msgstr "Añade de forma fácil y segura tus Meta Tags personalizadas en la cabecera de tu sitio web hecho en WordPress."
509
 
510
- #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
511
- #~ msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
512
-
513
- #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
514
- #~ msgstr "Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que tú también te enriquezcas con mis proyectos."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2018-10-09 09:36+0300\n"
7
+ "PO-Revision-Date: 2018-10-09 09:36+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Generator: Poedit 2.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
83
  msgstr ""
84
 
85
  #: inc/php/page.php:67
86
+ msgid "Go to the \"Settings\" tab on this page."
87
  msgstr "Debes ir a la pestaña “Ajustes”."
88
 
89
  #: inc/php/page.php:68
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
+ msgid "If you want more options, then %s let us know %s and we will be happy to add them."
112
  msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
113
 
114
  #: inc/php/page.php:87
181
  msgstr ""
182
 
183
  #: inc/php/page.php:139
184
+ msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
185
  msgstr ""
186
 
187
  #: inc/php/page.php:140
188
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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:"
189
  msgstr ""
190
 
191
+ #: inc/php/page.php:148 inc/php/page.php:152
192
+ msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue."
193
  msgstr ""
194
 
195
  #: inc/php/page.php:150
196
+ msgid "What about compatibility with the plugin \"Yoast SEO\"?"
197
+ msgstr ""
198
+
199
+ #: inc/php/page.php:151
200
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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."
201
+ msgstr ""
202
+
203
+ #: inc/php/page.php:154
204
  msgid "Does this plugin requires any modification of the theme?"
205
  msgstr "¿Este complemento requiere alguna modificación del tema?"
206
 
207
+ #: inc/php/page.php:155
208
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
209
  msgstr "Absolutamente NO. Este complemento se puede configurar completamente desde su página de configuración."
210
 
211
+ #: inc/php/page.php:157
212
  msgid "Does this require any knowledge of HTML or CSS?"
213
  msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
214
 
215
+ #: inc/php/page.php:158
216
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
217
  msgstr "Absolutamente no. Este complemento se puede configurar sin conocimientos de HTML o CSS, utilizando su página de configuración la cual es fácil de usar."
218
 
219
+ #: inc/php/page.php:160
220
  msgid "It's not working. What could be wrong?"
221
  msgstr "No funciona. ¿Qué podría estar mal?"
222
 
223
+ #: inc/php/page.php:161
224
  msgid "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."
225
  msgstr "Como con todos los complementos, es posible que las cosas no funcionen. La razón más común para esto es la caché de un navegador web. Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor. Esto se denomina caché del navegador. Limpiar la caché del navegador puede resolver el problema."
226
 
227
+ #: inc/php/page.php:162
228
  msgid "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, we'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."
229
  msgstr "Es imposible decir exactamente lo que podría estar mal, pero si publicas una solicitud de soporte en el foro de soporte del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte. Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
230
 
231
+ #: inc/php/page.php:164
232
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
233
  msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
234
 
235
+ #: inc/php/page.php:165
236
  msgid "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."
237
  msgstr "Este complemento no puede causar este problema. Lo más probable es que el problema esté relacionado con la configuración del sitio web. Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web. También intenta volver a conectarte al sitio web, esto también puede ayudar."
238
 
239
+ #: inc/php/page.php:167
240
  msgid "Where to report bug if found?"
241
  msgstr "¿Dónde informar el error si se encuentra?"
242
 
243
+ #: inc/php/page.php:169
244
  #, php-format
245
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
246
  msgstr ""
247
 
248
+ #: inc/php/page.php:175
249
  msgid "Where to share any ideas or suggestions to make the plugin better?"
250
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
251
 
252
+ #: inc/php/page.php:177
253
  #, php-format
254
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
255
  msgstr ""
256
 
257
+ #: inc/php/page.php:183
258
  msgid "I love this plugin! Can I help somehow?"
259
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
260
 
261
+ #: inc/php/page.php:185
262
  #, php-format
263
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
264
  msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
265
 
266
+ #: inc/php/page.php:191
267
  msgid "My question wasn't answered here."
268
  msgstr "Mi pregunta no fue contestada aquí."
269
 
270
+ #: inc/php/page.php:193
271
  #, php-format
272
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
273
  msgstr "Puede hacer tu pregunta en %s la página de soporte del complementos %s. Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tengo forma de responder a todos."
274
 
275
+ #: inc/php/page.php:207
276
  msgid "Support Us"
277
  msgstr "¡Apoyanos!"
278
 
279
+ #: inc/php/page.php:215 inc/php/settings.php:226 inc/php/sidebar.php:46
280
  msgid "Donate with PayPal"
281
  msgstr "Donar con PayPal"
282
 
283
+ #: inc/php/page.php:220
284
  #, php-format
285
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:228
289
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
290
  msgstr ""
291
 
292
+ #: inc/php/page.php:229
293
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
294
  msgstr "Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución me ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que la gente como tú lo disfrute."
295
 
296
+ #: inc/php/page.php:230
297
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
298
  msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
299
 
300
+ #: inc/php/page.php:231
301
  msgid "Thank you for your support!"
302
  msgstr "¡Gracias por tu apoyo!"
303
 
418
  msgstr "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio web."
419
 
420
  #: inc/php/settings.php:160
421
+ msgid "Meta Tags for the entire website (Global)"
422
  msgstr "Meta etiquetas para todo el sitio web (Globales)"
423
 
424
  #: inc/php/settings.php:162
515
  #~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
516
  #~ msgstr "Añade de forma fácil y segura tus Meta Tags personalizadas en la cabecera de tu sitio web hecho en WordPress."
517
 
518
+ #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
519
+ #~ msgstr "¡Hola! Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s."
 
 
 
languages/all-meta-tags-es_MX.mo CHANGED
Binary file
languages/all-meta-tags-es_MX.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
- "POT-Creation-Date: 2018-08-07 01:35+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:35+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish (Mexico)\n"
10
  "Language: es_MX\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 2.0.6\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-WPHeader: all-meta-tags.php\n"
19
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
@@ -84,7 +84,7 @@ msgid "To add the meta tags to your website, simply follow these steps:"
84
  msgstr ""
85
 
86
  #: inc/php/page.php:67
87
- msgid "Go to the \"Settings\" tab."
88
  msgstr ""
89
 
90
  #: inc/php/page.php:68
@@ -109,7 +109,7 @@ msgstr ""
109
 
110
  #: inc/php/page.php:73
111
  #, php-format
112
- msgid "If you want more options then %s tell us %s and we will be happy to add it."
113
  msgstr ""
114
 
115
  #: inc/php/page.php:87
@@ -182,115 +182,123 @@ msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT
182
  msgstr ""
183
 
184
  #: inc/php/page.php:139
185
- msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
186
  msgstr ""
187
 
188
  #: inc/php/page.php:140
189
- msgid "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:"
190
  msgstr ""
191
 
192
- #: inc/php/page.php:148
193
- msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
194
  msgstr ""
195
 
196
  #: inc/php/page.php:150
197
- msgid "Does this plugin requires any modification of the theme?"
198
  msgstr ""
199
 
200
  #: inc/php/page.php:151
 
 
 
 
 
 
 
 
201
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
202
  msgstr ""
203
 
204
- #: inc/php/page.php:153
205
  msgid "Does this require any knowledge of HTML or CSS?"
206
  msgstr ""
207
 
208
- #: inc/php/page.php:154
209
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
210
  msgstr ""
211
 
212
- #: inc/php/page.php:156
213
  msgid "It's not working. What could be wrong?"
214
  msgstr ""
215
 
216
- #: inc/php/page.php:157
217
  msgid "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."
218
  msgstr ""
219
 
220
- #: inc/php/page.php:158
221
  msgid "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, we'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."
222
  msgstr ""
223
 
224
- #: inc/php/page.php:160
225
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
226
  msgstr ""
227
 
228
- #: inc/php/page.php:161
229
  msgid "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."
230
  msgstr ""
231
 
232
- #: inc/php/page.php:163
233
  msgid "Where to report bug if found?"
234
  msgstr ""
235
 
236
- #: inc/php/page.php:165
237
  #, php-format
238
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
239
  msgstr ""
240
 
241
- #: inc/php/page.php:171
242
  msgid "Where to share any ideas or suggestions to make the plugin better?"
243
  msgstr ""
244
 
245
- #: inc/php/page.php:173
246
  #, php-format
247
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
248
  msgstr ""
249
 
250
- #: inc/php/page.php:179
251
  msgid "I love this plugin! Can I help somehow?"
252
  msgstr ""
253
 
254
- #: inc/php/page.php:181
255
  #, php-format
256
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
257
  msgstr ""
258
 
259
- #: inc/php/page.php:187
260
  msgid "My question wasn't answered here."
261
  msgstr ""
262
 
263
- #: inc/php/page.php:189
264
  #, php-format
265
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
266
  msgstr ""
267
 
268
- #: inc/php/page.php:203
269
  msgid "Support Us"
270
  msgstr ""
271
 
272
- #: inc/php/page.php:211 inc/php/settings.php:226 inc/php/sidebar.php:46
273
  msgid "Donate with PayPal"
274
  msgstr ""
275
 
276
- #: inc/php/page.php:216
277
  #, php-format
278
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
279
  msgstr ""
280
 
281
- #: inc/php/page.php:224
282
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
283
  msgstr ""
284
 
285
- #: inc/php/page.php:225
286
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
287
  msgstr ""
288
 
289
- #: inc/php/page.php:226
290
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
291
  msgstr ""
292
 
293
- #: inc/php/page.php:227
294
  msgid "Thank you for your support!"
295
  msgstr ""
296
 
@@ -411,7 +419,7 @@ msgid "Enter a comma-delimited list of keywords for only Blog Page of your websi
411
  msgstr ""
412
 
413
  #: inc/php/settings.php:160
414
- msgid "Meta Tags for all website (Global)"
415
  msgstr "Meta Tags para todo el sitio web (Global)"
416
 
417
  #: inc/php/settings.php:162
@@ -480,7 +488,7 @@ msgstr "Ayuda"
480
 
481
  #: inc/php/sidebar.php:34
482
  msgid "If you have a question, please read the information in the FAQ section."
483
- msgstr "Tiene algo que decir? Necesitas ayuda?"
484
 
485
  #. Plugin Name of the plugin/theme
486
  msgid "All Meta Tags"
@@ -505,5 +513,5 @@ msgstr "https://www.spacexchimp.com"
505
  #~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
506
  #~ msgstr "La forma más fácil y segura para agregar Meta Tags a la cabecera de tu sitio WordPress."
507
 
508
- #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
509
- #~ msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2018-10-09 09:36+0300\n"
7
+ "PO-Revision-Date: 2018-10-09 09:36+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish (Mexico)\n"
10
  "Language: es_MX\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.1.1\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-WPHeader: all-meta-tags.php\n"
19
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
84
  msgstr ""
85
 
86
  #: inc/php/page.php:67
87
+ msgid "Go to the \"Settings\" tab on this page."
88
  msgstr ""
89
 
90
  #: inc/php/page.php:68
109
 
110
  #: inc/php/page.php:73
111
  #, php-format
112
+ msgid "If you want more options, then %s let us know %s and we will be happy to add them."
113
  msgstr ""
114
 
115
  #: inc/php/page.php:87
182
  msgstr ""
183
 
184
  #: inc/php/page.php:139
185
+ msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
186
  msgstr ""
187
 
188
  #: inc/php/page.php:140
189
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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:"
190
  msgstr ""
191
 
192
+ #: inc/php/page.php:148 inc/php/page.php:152
193
+ msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue."
194
  msgstr ""
195
 
196
  #: inc/php/page.php:150
197
+ msgid "What about compatibility with the plugin \"Yoast SEO\"?"
198
  msgstr ""
199
 
200
  #: inc/php/page.php:151
201
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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."
202
+ msgstr ""
203
+
204
+ #: inc/php/page.php:154
205
+ msgid "Does this plugin requires any modification of the theme?"
206
+ msgstr ""
207
+
208
+ #: inc/php/page.php:155
209
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
210
  msgstr ""
211
 
212
+ #: inc/php/page.php:157
213
  msgid "Does this require any knowledge of HTML or CSS?"
214
  msgstr ""
215
 
216
+ #: inc/php/page.php:158
217
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
218
  msgstr ""
219
 
220
+ #: inc/php/page.php:160
221
  msgid "It's not working. What could be wrong?"
222
  msgstr ""
223
 
224
+ #: inc/php/page.php:161
225
  msgid "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."
226
  msgstr ""
227
 
228
+ #: inc/php/page.php:162
229
  msgid "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, we'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."
230
  msgstr ""
231
 
232
+ #: inc/php/page.php:164
233
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
234
  msgstr ""
235
 
236
+ #: inc/php/page.php:165
237
  msgid "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."
238
  msgstr ""
239
 
240
+ #: inc/php/page.php:167
241
  msgid "Where to report bug if found?"
242
  msgstr ""
243
 
244
+ #: inc/php/page.php:169
245
  #, php-format
246
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
247
  msgstr ""
248
 
249
+ #: inc/php/page.php:175
250
  msgid "Where to share any ideas or suggestions to make the plugin better?"
251
  msgstr ""
252
 
253
+ #: inc/php/page.php:177
254
  #, php-format
255
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
256
  msgstr ""
257
 
258
+ #: inc/php/page.php:183
259
  msgid "I love this plugin! Can I help somehow?"
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:185
263
  #, php-format
264
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
265
  msgstr ""
266
 
267
+ #: inc/php/page.php:191
268
  msgid "My question wasn't answered here."
269
  msgstr ""
270
 
271
+ #: inc/php/page.php:193
272
  #, php-format
273
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:207
277
  msgid "Support Us"
278
  msgstr ""
279
 
280
+ #: inc/php/page.php:215 inc/php/settings.php:226 inc/php/sidebar.php:46
281
  msgid "Donate with PayPal"
282
  msgstr ""
283
 
284
+ #: inc/php/page.php:220
285
  #, php-format
286
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
287
  msgstr ""
288
 
289
+ #: inc/php/page.php:228
290
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
291
  msgstr ""
292
 
293
+ #: inc/php/page.php:229
294
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
295
  msgstr ""
296
 
297
+ #: inc/php/page.php:230
298
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
299
  msgstr ""
300
 
301
+ #: inc/php/page.php:231
302
  msgid "Thank you for your support!"
303
  msgstr ""
304
 
419
  msgstr ""
420
 
421
  #: inc/php/settings.php:160
422
+ msgid "Meta Tags for the entire website (Global)"
423
  msgstr "Meta Tags para todo el sitio web (Global)"
424
 
425
  #: inc/php/settings.php:162
488
 
489
  #: inc/php/sidebar.php:34
490
  msgid "If you have a question, please read the information in the FAQ section."
491
+ msgstr ""
492
 
493
  #. Plugin Name of the plugin/theme
494
  msgid "All Meta Tags"
513
  #~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
514
  #~ msgstr "La forma más fácil y segura para agregar Meta Tags a la cabecera de tu sitio WordPress."
515
 
516
+ #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
517
+ #~ msgstr "¡Hola! Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s."
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: All Meta Tags\n"
6
- "POT-Creation-Date: 2018-08-07 01:35+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:35+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Italian\n"
10
  "Language: it_IT\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Generator: Poedit 2.0.6\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -83,7 +83,7 @@ msgid "To add the meta tags to your website, simply follow these steps:"
83
  msgstr ""
84
 
85
  #: inc/php/page.php:67
86
- msgid "Go to the \"Settings\" tab."
87
  msgstr ""
88
 
89
  #: inc/php/page.php:68
@@ -108,7 +108,7 @@ msgstr ""
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
- msgid "If you want more options then %s tell us %s and we will be happy to add it."
112
  msgstr ""
113
 
114
  #: inc/php/page.php:87
@@ -181,115 +181,123 @@ msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT
181
  msgstr ""
182
 
183
  #: inc/php/page.php:139
184
- msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
185
  msgstr ""
186
 
187
  #: inc/php/page.php:140
188
- msgid "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:"
189
  msgstr ""
190
 
191
- #: inc/php/page.php:148
192
- msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
193
  msgstr ""
194
 
195
  #: inc/php/page.php:150
196
- msgid "Does this plugin requires any modification of the theme?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:151
 
 
 
 
 
 
 
 
200
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
201
  msgstr ""
202
 
203
- #: inc/php/page.php:153
204
  msgid "Does this require any knowledge of HTML or CSS?"
205
  msgstr ""
206
 
207
- #: inc/php/page.php:154
208
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
209
  msgstr ""
210
 
211
- #: inc/php/page.php:156
212
  msgid "It's not working. What could be wrong?"
213
  msgstr ""
214
 
215
- #: inc/php/page.php:157
216
  msgid "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."
217
  msgstr ""
218
 
219
- #: inc/php/page.php:158
220
  msgid "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, we'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."
221
  msgstr ""
222
 
223
- #: inc/php/page.php:160
224
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
225
  msgstr ""
226
 
227
- #: inc/php/page.php:161
228
  msgid "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."
229
  msgstr ""
230
 
231
- #: inc/php/page.php:163
232
  msgid "Where to report bug if found?"
233
  msgstr ""
234
 
235
- #: inc/php/page.php:165
236
  #, php-format
237
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
238
  msgstr ""
239
 
240
- #: inc/php/page.php:171
241
  msgid "Where to share any ideas or suggestions to make the plugin better?"
242
  msgstr ""
243
 
244
- #: inc/php/page.php:173
245
  #, php-format
246
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
247
  msgstr ""
248
 
249
- #: inc/php/page.php:179
250
  msgid "I love this plugin! Can I help somehow?"
251
  msgstr ""
252
 
253
- #: inc/php/page.php:181
254
  #, php-format
255
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
256
  msgstr ""
257
 
258
- #: inc/php/page.php:187
259
  msgid "My question wasn't answered here."
260
  msgstr ""
261
 
262
- #: inc/php/page.php:189
263
  #, php-format
264
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
265
  msgstr ""
266
 
267
- #: inc/php/page.php:203
268
  msgid "Support Us"
269
  msgstr ""
270
 
271
- #: inc/php/page.php:211 inc/php/settings.php:226 inc/php/sidebar.php:46
272
  msgid "Donate with PayPal"
273
  msgstr ""
274
 
275
- #: inc/php/page.php:216
276
  #, php-format
277
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
278
  msgstr ""
279
 
280
- #: inc/php/page.php:224
281
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
282
  msgstr ""
283
 
284
- #: inc/php/page.php:225
285
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
286
  msgstr ""
287
 
288
- #: inc/php/page.php:226
289
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
290
  msgstr ""
291
 
292
- #: inc/php/page.php:227
293
  msgid "Thank you for your support!"
294
  msgstr ""
295
 
@@ -410,7 +418,7 @@ msgid "Enter a comma-delimited list of keywords for only Blog Page of your websi
410
  msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
411
 
412
  #: inc/php/settings.php:160
413
- msgid "Meta Tags for all website (Global)"
414
  msgstr "Tag meta per tutto il sito (globale)"
415
 
416
  #: inc/php/settings.php:162
@@ -479,7 +487,7 @@ msgstr "Aiuto"
479
 
480
  #: inc/php/sidebar.php:34
481
  msgid "If you have a question, please read the information in the FAQ section."
482
- msgstr "Hai qualcosa da dirmi? Hai bisogno di aiuto?"
483
 
484
  #. Plugin Name of the plugin/theme
485
  msgid "All Meta Tags"
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2018-10-09 09:35+0300\n"
7
+ "PO-Revision-Date: 2018-10-09 09:36+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Italian\n"
10
  "Language: it_IT\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Generator: Poedit 2.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
83
  msgstr ""
84
 
85
  #: inc/php/page.php:67
86
+ msgid "Go to the \"Settings\" tab on this page."
87
  msgstr ""
88
 
89
  #: inc/php/page.php:68
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
+ msgid "If you want more options, then %s let us know %s and we will be happy to add them."
112
  msgstr ""
113
 
114
  #: inc/php/page.php:87
181
  msgstr ""
182
 
183
  #: inc/php/page.php:139
184
+ msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
185
  msgstr ""
186
 
187
  #: inc/php/page.php:140
188
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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:"
189
  msgstr ""
190
 
191
+ #: inc/php/page.php:148 inc/php/page.php:152
192
+ msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue."
193
  msgstr ""
194
 
195
  #: inc/php/page.php:150
196
+ msgid "What about compatibility with the plugin \"Yoast SEO\"?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:151
200
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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."
201
+ msgstr ""
202
+
203
+ #: inc/php/page.php:154
204
+ msgid "Does this plugin requires any modification of the theme?"
205
+ msgstr ""
206
+
207
+ #: inc/php/page.php:155
208
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
209
  msgstr ""
210
 
211
+ #: inc/php/page.php:157
212
  msgid "Does this require any knowledge of HTML or CSS?"
213
  msgstr ""
214
 
215
+ #: inc/php/page.php:158
216
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
217
  msgstr ""
218
 
219
+ #: inc/php/page.php:160
220
  msgid "It's not working. What could be wrong?"
221
  msgstr ""
222
 
223
+ #: inc/php/page.php:161
224
  msgid "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."
225
  msgstr ""
226
 
227
+ #: inc/php/page.php:162
228
  msgid "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, we'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."
229
  msgstr ""
230
 
231
+ #: inc/php/page.php:164
232
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
233
  msgstr ""
234
 
235
+ #: inc/php/page.php:165
236
  msgid "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."
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:167
240
  msgid "Where to report bug if found?"
241
  msgstr ""
242
 
243
+ #: inc/php/page.php:169
244
  #, php-format
245
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
246
  msgstr ""
247
 
248
+ #: inc/php/page.php:175
249
  msgid "Where to share any ideas or suggestions to make the plugin better?"
250
  msgstr ""
251
 
252
+ #: inc/php/page.php:177
253
  #, php-format
254
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
255
  msgstr ""
256
 
257
+ #: inc/php/page.php:183
258
  msgid "I love this plugin! Can I help somehow?"
259
  msgstr ""
260
 
261
+ #: inc/php/page.php:185
262
  #, php-format
263
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:191
267
  msgid "My question wasn't answered here."
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:193
271
  #, php-format
272
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
273
  msgstr ""
274
 
275
+ #: inc/php/page.php:207
276
  msgid "Support Us"
277
  msgstr ""
278
 
279
+ #: inc/php/page.php:215 inc/php/settings.php:226 inc/php/sidebar.php:46
280
  msgid "Donate with PayPal"
281
  msgstr ""
282
 
283
+ #: inc/php/page.php:220
284
  #, php-format
285
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:228
289
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
290
  msgstr ""
291
 
292
+ #: inc/php/page.php:229
293
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
294
  msgstr ""
295
 
296
+ #: inc/php/page.php:230
297
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
298
  msgstr ""
299
 
300
+ #: inc/php/page.php:231
301
  msgid "Thank you for your support!"
302
  msgstr ""
303
 
418
  msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
419
 
420
  #: inc/php/settings.php:160
421
+ msgid "Meta Tags for the entire website (Global)"
422
  msgstr "Tag meta per tutto il sito (globale)"
423
 
424
  #: inc/php/settings.php:162
487
 
488
  #: inc/php/sidebar.php:34
489
  msgid "If you have a question, please read the information in the FAQ section."
490
+ msgstr ""
491
 
492
  #. Plugin Name of the plugin/theme
493
  msgid "All Meta Tags"
languages/all-meta-tags-nl_NL.mo CHANGED
Binary file
languages/all-meta-tags-nl_NL.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
- "POT-Creation-Date: 2018-08-07 01:35+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:35+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Generator: Poedit 2.0.6\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -30,7 +30,7 @@ msgstr "Doe een gift"
30
 
31
  #: inc/php/core.php:52
32
  msgid "Meta Tags Inserter"
33
- msgstr ""
34
 
35
  #: inc/php/messages.php:26
36
  msgid "Hello. We are the team of Space X-Chimp."
@@ -83,7 +83,7 @@ msgid "To add the meta tags to your website, simply follow these steps:"
83
  msgstr ""
84
 
85
  #: inc/php/page.php:67
86
- msgid "Go to the \"Settings\" tab."
87
  msgstr ""
88
 
89
  #: inc/php/page.php:68
@@ -108,7 +108,7 @@ msgstr "Opmerking!"
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
- msgid "If you want more options then %s tell us %s and we will be happy to add it."
112
  msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
113
 
114
  #: inc/php/page.php:87
@@ -181,115 +181,123 @@ msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT
181
  msgstr ""
182
 
183
  #: inc/php/page.php:139
184
- msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
185
  msgstr ""
186
 
187
  #: inc/php/page.php:140
188
- msgid "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:"
189
  msgstr ""
190
 
191
- #: inc/php/page.php:148
192
- msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
193
  msgstr ""
194
 
195
  #: inc/php/page.php:150
 
 
 
 
 
 
 
 
196
  msgid "Does this plugin requires any modification of the theme?"
197
  msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
198
 
199
- #: inc/php/page.php:151
200
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
201
  msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
202
 
203
- #: inc/php/page.php:153
204
  msgid "Does this require any knowledge of HTML or CSS?"
205
  msgstr "Vereist dit enige kennis van HTML of CSS?"
206
 
207
- #: inc/php/page.php:154
208
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
209
  msgstr ""
210
 
211
- #: inc/php/page.php:156
212
  msgid "It's not working. What could be wrong?"
213
  msgstr "Het werkt niet. Wat kan er fout zijn?"
214
 
215
- #: inc/php/page.php:157
216
  msgid "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."
217
  msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
218
 
219
- #: inc/php/page.php:158
220
  msgid "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, we'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."
221
  msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
222
 
223
- #: inc/php/page.php:160
224
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
225
  msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
226
 
227
- #: inc/php/page.php:161
228
  msgid "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."
229
  msgstr "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
230
 
231
- #: inc/php/page.php:163
232
  msgid "Where to report bug if found?"
233
  msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
234
 
235
- #: inc/php/page.php:165
236
  #, php-format
237
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
238
  msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
239
 
240
- #: inc/php/page.php:171
241
  msgid "Where to share any ideas or suggestions to make the plugin better?"
242
  msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
243
 
244
- #: inc/php/page.php:173
245
  #, php-format
246
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
247
  msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
248
 
249
- #: inc/php/page.php:179
250
  msgid "I love this plugin! Can I help somehow?"
251
  msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
252
 
253
- #: inc/php/page.php:181
254
  #, php-format
255
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
256
  msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
257
 
258
- #: inc/php/page.php:187
259
  msgid "My question wasn't answered here."
260
  msgstr "Mij vraag is hier niet beantwoord."
261
 
262
- #: inc/php/page.php:189
263
  #, php-format
264
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
265
  msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
266
 
267
- #: inc/php/page.php:203
268
  msgid "Support Us"
269
  msgstr "Ondersteun ons"
270
 
271
- #: inc/php/page.php:211 inc/php/settings.php:226 inc/php/sidebar.php:46
272
  msgid "Donate with PayPal"
273
  msgstr "Doneer via PayPal"
274
 
275
- #: inc/php/page.php:216
276
  #, php-format
277
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
278
  msgstr ""
279
 
280
- #: inc/php/page.php:224
281
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
282
  msgstr ""
283
 
284
- #: inc/php/page.php:225
285
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
286
  msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
287
 
288
- #: inc/php/page.php:226
289
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
290
  msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
291
 
292
- #: inc/php/page.php:227
293
  msgid "Thank you for your support!"
294
  msgstr "Bedankt voor je ondersteuning!"
295
 
@@ -410,7 +418,7 @@ msgid "Enter a comma-delimited list of keywords for only Blog Page of your websi
410
  msgstr ""
411
 
412
  #: inc/php/settings.php:160
413
- msgid "Meta Tags for all website (Global)"
414
  msgstr ""
415
 
416
  #: inc/php/settings.php:162
@@ -501,8 +509,8 @@ msgstr "Space X-Chimp"
501
  msgid "https://www.spacexchimp.com"
502
  msgstr "https://www.spacexchimp.com"
503
 
504
- #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
505
- #~ msgstr "Hallo! Mijn naam is %s Arthur Gareginyan %s en ik ben de oprichter van %s Space X-Chimp %s."
506
 
507
  #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
508
  #~ msgstr "Het is mijn bedoeling om projecten te maken die van deze wereld een betere plek maken. Ik ben echt gepassioneerd over mijn werk, ik vind het leuk wat ik doe en hoop dat je ook verrijkt zult worden door mijn projecten."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2018-10-09 09:35+0300\n"
7
+ "PO-Revision-Date: 2018-10-09 09:35+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Generator: Poedit 2.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
30
 
31
  #: inc/php/core.php:52
32
  msgid "Meta Tags Inserter"
33
+ msgstr "Meta Tags Inserter"
34
 
35
  #: inc/php/messages.php:26
36
  msgid "Hello. We are the team of Space X-Chimp."
83
  msgstr ""
84
 
85
  #: inc/php/page.php:67
86
+ msgid "Go to the \"Settings\" tab on this page."
87
  msgstr ""
88
 
89
  #: inc/php/page.php:68
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
+ msgid "If you want more options, then %s let us know %s and we will be happy to add them."
112
  msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
113
 
114
  #: inc/php/page.php:87
181
  msgstr ""
182
 
183
  #: inc/php/page.php:139
184
+ msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
185
  msgstr ""
186
 
187
  #: inc/php/page.php:140
188
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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:"
189
  msgstr ""
190
 
191
+ #: inc/php/page.php:148 inc/php/page.php:152
192
+ msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue."
193
  msgstr ""
194
 
195
  #: inc/php/page.php:150
196
+ msgid "What about compatibility with the plugin \"Yoast SEO\"?"
197
+ msgstr ""
198
+
199
+ #: inc/php/page.php:151
200
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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."
201
+ msgstr ""
202
+
203
+ #: inc/php/page.php:154
204
  msgid "Does this plugin requires any modification of the theme?"
205
  msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
206
 
207
+ #: inc/php/page.php:155
208
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
209
  msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
210
 
211
+ #: inc/php/page.php:157
212
  msgid "Does this require any knowledge of HTML or CSS?"
213
  msgstr "Vereist dit enige kennis van HTML of CSS?"
214
 
215
+ #: inc/php/page.php:158
216
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
217
  msgstr ""
218
 
219
+ #: inc/php/page.php:160
220
  msgid "It's not working. What could be wrong?"
221
  msgstr "Het werkt niet. Wat kan er fout zijn?"
222
 
223
+ #: inc/php/page.php:161
224
  msgid "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."
225
  msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
226
 
227
+ #: inc/php/page.php:162
228
  msgid "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, we'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."
229
  msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
230
 
231
+ #: inc/php/page.php:164
232
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
233
  msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
234
 
235
+ #: inc/php/page.php:165
236
  msgid "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."
237
  msgstr "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
238
 
239
+ #: inc/php/page.php:167
240
  msgid "Where to report bug if found?"
241
  msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
242
 
243
+ #: inc/php/page.php:169
244
  #, php-format
245
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
246
  msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
247
 
248
+ #: inc/php/page.php:175
249
  msgid "Where to share any ideas or suggestions to make the plugin better?"
250
  msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
251
 
252
+ #: inc/php/page.php:177
253
  #, php-format
254
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
255
  msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
256
 
257
+ #: inc/php/page.php:183
258
  msgid "I love this plugin! Can I help somehow?"
259
  msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
260
 
261
+ #: inc/php/page.php:185
262
  #, php-format
263
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
264
  msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
265
 
266
+ #: inc/php/page.php:191
267
  msgid "My question wasn't answered here."
268
  msgstr "Mij vraag is hier niet beantwoord."
269
 
270
+ #: inc/php/page.php:193
271
  #, php-format
272
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
273
  msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
274
 
275
+ #: inc/php/page.php:207
276
  msgid "Support Us"
277
  msgstr "Ondersteun ons"
278
 
279
+ #: inc/php/page.php:215 inc/php/settings.php:226 inc/php/sidebar.php:46
280
  msgid "Donate with PayPal"
281
  msgstr "Doneer via PayPal"
282
 
283
+ #: inc/php/page.php:220
284
  #, php-format
285
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:228
289
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
290
  msgstr ""
291
 
292
+ #: inc/php/page.php:229
293
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
294
  msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
295
 
296
+ #: inc/php/page.php:230
297
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
298
  msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
299
 
300
+ #: inc/php/page.php:231
301
  msgid "Thank you for your support!"
302
  msgstr "Bedankt voor je ondersteuning!"
303
 
418
  msgstr ""
419
 
420
  #: inc/php/settings.php:160
421
+ msgid "Meta Tags for the entire website (Global)"
422
  msgstr ""
423
 
424
  #: inc/php/settings.php:162
509
  msgid "https://www.spacexchimp.com"
510
  msgstr "https://www.spacexchimp.com"
511
 
512
+ #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
513
+ #~ msgstr "Hallo! Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s."
514
 
515
  #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
516
  #~ msgstr "Het is mijn bedoeling om projecten te maken die van deze wereld een betere plek maken. Ik ben echt gepassioneerd over mijn werk, ik vind het leuk wat ik doe en hoop dat je ook verrijkt zult worden door mijn projecten."
languages/all-meta-tags-ru_RU.mo CHANGED
Binary file
languages/all-meta-tags-ru_RU.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
- "POT-Creation-Date: 2018-08-07 01:35+0300\n"
7
- "PO-Revision-Date: 2018-08-07 01:35+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
15
- "X-Generator: Poedit 2.0.6\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -83,7 +83,7 @@ msgid "To add the meta tags to your website, simply follow these steps:"
83
  msgstr "Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие действия:"
84
 
85
  #: inc/php/page.php:67
86
- msgid "Go to the \"Settings\" tab."
87
  msgstr "Перейдите на вкладку «Настройки»."
88
 
89
  #: inc/php/page.php:68
@@ -108,7 +108,7 @@ msgstr "Примечание!"
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
- msgid "If you want more options then %s tell us %s and we will be happy to add it."
112
  msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
113
 
114
  #: inc/php/page.php:87
@@ -181,115 +181,123 @@ msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT
181
  msgstr "Код тега, который даёт тебе Google (или Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) может запутать, поскольку вам нужно вставить только серийный ключ - число/буквы (<code>1234567890</code>) а не весь тэг (<code>&lt;meta name=\"google-site-verification\" content=“1234567890” /&gt;</code>). Так что просто вставьте серийный ключ в соответствующее поле, и вы увидите сообщение «Success» в течение нескольких секунд."
182
 
183
  #: inc/php/page.php:139
184
- msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
185
- msgstr "Как насчет совместимости с плагином \"All in One SEO Pack\"?"
186
 
187
  #: inc/php/page.php:140
188
- msgid "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:"
189
  msgstr "Чтобы эти плагины были совместимы, вам нужно придерживаться одного простого правила: не заполняйте одно и то же поле в обоих плагинах одновременно. В противном случае оба плагина выполняют свою работу, и вы получите дубликаты действий, например:"
190
 
191
- #: inc/php/page.php:148
192
- msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
193
- msgstr "В остальном «All Meta Tags» и «All in One SEO Pack» совместимы."
194
 
195
  #: inc/php/page.php:150
 
 
 
 
 
 
 
 
196
  msgid "Does this plugin requires any modification of the theme?"
197
  msgstr "Этот плагин требует изменения темы?"
198
 
199
- #: inc/php/page.php:151
200
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
201
  msgstr "Абсолютно нет. Этот плагин настраивается полностью на странице настроек плагина."
202
 
203
- #: inc/php/page.php:153
204
  msgid "Does this require any knowledge of HTML or CSS?"
205
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
206
 
207
- #: inc/php/page.php:154
208
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
209
  msgstr "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
210
 
211
- #: inc/php/page.php:156
212
  msgid "It's not working. What could be wrong?"
213
  msgstr "Оно не работает. Что может быть не так?"
214
 
215
- #: inc/php/page.php:157
216
  msgid "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."
217
  msgstr "Как и в случае с любым другим плагином, что-то может не работать. Наиболее распространенной причиной этого является кеш веб-браузера. Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер. Это называется кешем браузера. Очистка кеша браузера может решить проблему."
218
 
219
- #: inc/php/page.php:158
220
  msgid "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, we'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."
221
  msgstr "Невозможно точно сказать, что может быть неправильно, но если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
222
 
223
- #: inc/php/page.php:160
224
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
225
  msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
226
 
227
- #: inc/php/page.php:161
228
  msgid "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."
229
  msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
230
 
231
- #: inc/php/page.php:163
232
  msgid "Where to report bug if found?"
233
  msgstr "Где можно сообщить об ошибке?"
234
 
235
- #: inc/php/page.php:165
236
  #, php-format
237
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
238
  msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
239
 
240
- #: inc/php/page.php:171
241
  msgid "Where to share any ideas or suggestions to make the plugin better?"
242
  msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
243
 
244
- #: inc/php/page.php:173
245
  #, php-format
246
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
247
  msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
248
 
249
- #: inc/php/page.php:179
250
  msgid "I love this plugin! Can I help somehow?"
251
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
252
 
253
- #: inc/php/page.php:181
254
  #, php-format
255
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
256
  msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
257
 
258
- #: inc/php/page.php:187
259
  msgid "My question wasn't answered here."
260
  msgstr "Моего вопроса здесь нет."
261
 
262
- #: inc/php/page.php:189
263
  #, php-format
264
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
265
  msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
266
 
267
- #: inc/php/page.php:203
268
  msgid "Support Us"
269
  msgstr "Поддержать нас"
270
 
271
- #: inc/php/page.php:211 inc/php/settings.php:226 inc/php/sidebar.php:46
272
  msgid "Donate with PayPal"
273
  msgstr "Пожертвовать через Pay Pal"
274
 
275
- #: inc/php/page.php:216
276
  #, php-format
277
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
278
  msgstr ""
279
 
280
- #: inc/php/page.php:224
281
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
282
  msgstr ""
283
 
284
- #: inc/php/page.php:225
285
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
286
  msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать. Но мы независимые разработчики, без регулярного дохода, поэтому каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей для таких замечательных людей, как вы."
287
 
288
- #: inc/php/page.php:226
289
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
290
  msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
291
 
292
- #: inc/php/page.php:227
293
  msgid "Thank you for your support!"
294
  msgstr "Спасибо за вашу поддержку!"
295
 
@@ -410,7 +418,7 @@ msgid "Enter a comma-delimited list of keywords for only Blog Page of your websi
410
  msgstr "Введите, разделенный запятыми, список ключевых слов для только Blog Page вашего веб-сайта."
411
 
412
  #: inc/php/settings.php:160
413
- msgid "Meta Tags for all website (Global)"
414
  msgstr "Мета-теги для всего веб-сайта (Глобальные)"
415
 
416
  #: inc/php/settings.php:162
@@ -463,7 +471,7 @@ msgstr "Спасибо за вашу поддержку!"
463
 
464
  #: inc/php/sidebar.php:16
465
  msgid "We are «Space X-Chimp»"
466
- msgstr ""
467
 
468
  #: inc/php/sidebar.php:25
469
  msgid "About"
@@ -501,6 +509,9 @@ msgstr "Space X-Chimp"
501
  msgid "https://www.spacexchimp.com"
502
  msgstr "https://www.spacexchimp.com"
503
 
 
 
 
504
  #~ msgid "Select the desired settings."
505
  #~ msgstr "Выберите нужные настройки."
506
 
@@ -510,8 +521,5 @@ msgstr "https://www.spacexchimp.com"
510
  #~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
511
  #~ msgstr "Легко и безопасно добавлять свои собственные метатеги в заголовок веб-сайта WordPress."
512
 
513
- #~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
514
- #~ msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
515
-
516
- #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
517
- #~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2018-10-09 09:30+0300\n"
7
+ "PO-Revision-Date: 2018-10-09 09:35+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
15
+ "X-Generator: Poedit 2.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
83
  msgstr "Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие действия:"
84
 
85
  #: inc/php/page.php:67
86
+ msgid "Go to the \"Settings\" tab on this page."
87
  msgstr "Перейдите на вкладку «Настройки»."
88
 
89
  #: inc/php/page.php:68
108
 
109
  #: inc/php/page.php:73
110
  #, php-format
111
+ msgid "If you want more options, then %s let us know %s and we will be happy to add them."
112
  msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
113
 
114
  #: inc/php/page.php:87
181
  msgstr "Код тега, который даёт тебе Google (или Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) может запутать, поскольку вам нужно вставить только серийный ключ - число/буквы (<code>1234567890</code>) а не весь тэг (<code>&lt;meta name=\"google-site-verification\" content=“1234567890” /&gt;</code>). Так что просто вставьте серийный ключ в соответствующее поле, и вы увидите сообщение «Success» в течение нескольких секунд."
182
 
183
  #: inc/php/page.php:139
184
+ msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
185
+ msgstr "Что насчет совместимости с плагином \"All in One SEO Pack\"?"
186
 
187
  #: inc/php/page.php:140
188
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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:"
189
  msgstr "Чтобы эти плагины были совместимы, вам нужно придерживаться одного простого правила: не заполняйте одно и то же поле в обоих плагинах одновременно. В противном случае оба плагина выполняют свою работу, и вы получите дубликаты действий, например:"
190
 
191
+ #: inc/php/page.php:148 inc/php/page.php:152
192
+ msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue."
193
+ msgstr ""
194
 
195
  #: inc/php/page.php:150
196
+ msgid "What about compatibility with the plugin \"Yoast SEO\"?"
197
+ msgstr "Что насчет совместимости с плагином \"All in One SEO Pack\"?"
198
+
199
+ #: inc/php/page.php:151
200
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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."
201
+ msgstr "Насколько нам известно, плагин “All Meta Tags” совместим с плагином “Yoast SEO”. Но чтобы убедиться в том, что эти плагины не конфликтуют друг с другом, вам нужно следовать одному простому правилу: не заполняйте одно и то же поле в обоих плагинах одновременно. В противном случае оба плагина выполнят свою работу, и вы получите дублирование действий."
202
+
203
+ #: inc/php/page.php:154
204
  msgid "Does this plugin requires any modification of the theme?"
205
  msgstr "Этот плагин требует изменения темы?"
206
 
207
+ #: inc/php/page.php:155
208
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
209
  msgstr "Абсолютно нет. Этот плагин настраивается полностью на странице настроек плагина."
210
 
211
+ #: inc/php/page.php:157
212
  msgid "Does this require any knowledge of HTML or CSS?"
213
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
214
 
215
+ #: inc/php/page.php:158
216
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
217
  msgstr "Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
218
 
219
+ #: inc/php/page.php:160
220
  msgid "It's not working. What could be wrong?"
221
  msgstr "Оно не работает. Что может быть не так?"
222
 
223
+ #: inc/php/page.php:161
224
  msgid "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."
225
  msgstr "Как и в случае с любым другим плагином, что-то может не работать. Наиболее распространенной причиной этого является кеш веб-браузера. Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер. Это называется кешем браузера. Очистка кеша браузера может решить проблему."
226
 
227
+ #: inc/php/page.php:162
228
  msgid "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, we'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."
229
  msgstr "Невозможно точно сказать, что может быть неправильно, но если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
230
 
231
+ #: inc/php/page.php:164
232
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
233
  msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
234
 
235
+ #: inc/php/page.php:165
236
  msgid "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."
237
  msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
238
 
239
+ #: inc/php/page.php:167
240
  msgid "Where to report bug if found?"
241
  msgstr "Где можно сообщить об ошибке?"
242
 
243
+ #: inc/php/page.php:169
244
  #, php-format
245
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
246
  msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
247
 
248
+ #: inc/php/page.php:175
249
  msgid "Where to share any ideas or suggestions to make the plugin better?"
250
  msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
251
 
252
+ #: inc/php/page.php:177
253
  #, php-format
254
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
255
  msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
256
 
257
+ #: inc/php/page.php:183
258
  msgid "I love this plugin! Can I help somehow?"
259
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
260
 
261
+ #: inc/php/page.php:185
262
  #, php-format
263
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
264
  msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
265
 
266
+ #: inc/php/page.php:191
267
  msgid "My question wasn't answered here."
268
  msgstr "Моего вопроса здесь нет."
269
 
270
+ #: inc/php/page.php:193
271
  #, php-format
272
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
273
  msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
274
 
275
+ #: inc/php/page.php:207
276
  msgid "Support Us"
277
  msgstr "Поддержать нас"
278
 
279
+ #: inc/php/page.php:215 inc/php/settings.php:226 inc/php/sidebar.php:46
280
  msgid "Donate with PayPal"
281
  msgstr "Пожертвовать через Pay Pal"
282
 
283
+ #: inc/php/page.php:220
284
  #, php-format
285
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:228
289
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
290
  msgstr ""
291
 
292
+ #: inc/php/page.php:229
293
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
294
  msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать. Но мы независимые разработчики, без регулярного дохода, поэтому каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей для таких замечательных людей, как вы."
295
 
296
+ #: inc/php/page.php:230
297
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
298
  msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
299
 
300
+ #: inc/php/page.php:231
301
  msgid "Thank you for your support!"
302
  msgstr "Спасибо за вашу поддержку!"
303
 
418
  msgstr "Введите, разделенный запятыми, список ключевых слов для только Blog Page вашего веб-сайта."
419
 
420
  #: inc/php/settings.php:160
421
+ msgid "Meta Tags for the entire website (Global)"
422
  msgstr "Мета-теги для всего веб-сайта (Глобальные)"
423
 
424
  #: inc/php/settings.php:162
471
 
472
  #: inc/php/sidebar.php:16
473
  msgid "We are «Space X-Chimp»"
474
+ msgstr "Мы «Space X-Chimp»"
475
 
476
  #: inc/php/sidebar.php:25
477
  msgid "About"
509
  msgid "https://www.spacexchimp.com"
510
  msgstr "https://www.spacexchimp.com"
511
 
512
+ #~ msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
513
+ #~ msgstr "В остальном «All Meta Tags» и «All in One SEO Pack» совместимы."
514
+
515
  #~ msgid "Select the desired settings."
516
  #~ msgstr "Выберите нужные настройки."
517
 
521
  #~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
522
  #~ msgstr "Легко и безопасно добавлять свои собственные метатеги в заголовок веб-сайта WordPress."
523
 
524
+ #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
525
+ #~ msgstr "Привет! Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s."
 
 
 
languages/all-meta-tags.pot CHANGED
@@ -3,14 +3,14 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
- "POT-Creation-Date: 2018-08-07 01:35+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.0.6\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: all-meta-tags.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -81,7 +81,7 @@ msgid "To add the meta tags to your website, simply follow these steps:"
81
  msgstr ""
82
 
83
  #: inc/php/page.php:67
84
- msgid "Go to the \"Settings\" tab."
85
  msgstr ""
86
 
87
  #: inc/php/page.php:68
@@ -106,7 +106,7 @@ msgstr ""
106
 
107
  #: inc/php/page.php:73
108
  #, php-format
109
- msgid "If you want more options then %s tell us %s and we will be happy to add it."
110
  msgstr ""
111
 
112
  #: inc/php/page.php:87
@@ -179,115 +179,123 @@ msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT
179
  msgstr ""
180
 
181
  #: inc/php/page.php:139
182
- msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
183
  msgstr ""
184
 
185
  #: inc/php/page.php:140
186
- msgid "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:"
187
  msgstr ""
188
 
189
- #: inc/php/page.php:148
190
- msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
191
  msgstr ""
192
 
193
  #: inc/php/page.php:150
194
- msgid "Does this plugin requires any modification of the theme?"
195
  msgstr ""
196
 
197
  #: inc/php/page.php:151
 
 
 
 
 
 
 
 
198
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
199
  msgstr ""
200
 
201
- #: inc/php/page.php:153
202
  msgid "Does this require any knowledge of HTML or CSS?"
203
  msgstr ""
204
 
205
- #: inc/php/page.php:154
206
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
207
  msgstr ""
208
 
209
- #: inc/php/page.php:156
210
  msgid "It's not working. What could be wrong?"
211
  msgstr ""
212
 
213
- #: inc/php/page.php:157
214
  msgid "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."
215
  msgstr ""
216
 
217
- #: inc/php/page.php:158
218
  msgid "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, we'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."
219
  msgstr ""
220
 
221
- #: inc/php/page.php:160
222
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
223
  msgstr ""
224
 
225
- #: inc/php/page.php:161
226
  msgid "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."
227
  msgstr ""
228
 
229
- #: inc/php/page.php:163
230
  msgid "Where to report bug if found?"
231
  msgstr ""
232
 
233
- #: inc/php/page.php:165
234
  #, php-format
235
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
236
  msgstr ""
237
 
238
- #: inc/php/page.php:171
239
  msgid "Where to share any ideas or suggestions to make the plugin better?"
240
  msgstr ""
241
 
242
- #: inc/php/page.php:173
243
  #, php-format
244
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
245
  msgstr ""
246
 
247
- #: inc/php/page.php:179
248
  msgid "I love this plugin! Can I help somehow?"
249
  msgstr ""
250
 
251
- #: inc/php/page.php:181
252
  #, php-format
253
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
254
  msgstr ""
255
 
256
- #: inc/php/page.php:187
257
  msgid "My question wasn't answered here."
258
  msgstr ""
259
 
260
- #: inc/php/page.php:189
261
  #, php-format
262
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
263
  msgstr ""
264
 
265
- #: inc/php/page.php:203
266
  msgid "Support Us"
267
  msgstr ""
268
 
269
- #: inc/php/page.php:211 inc/php/settings.php:226 inc/php/sidebar.php:46
270
  msgid "Donate with PayPal"
271
  msgstr ""
272
 
273
- #: inc/php/page.php:216
274
  #, php-format
275
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
276
  msgstr ""
277
 
278
- #: inc/php/page.php:224
279
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
280
  msgstr ""
281
 
282
- #: inc/php/page.php:225
283
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
284
  msgstr ""
285
 
286
- #: inc/php/page.php:226
287
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
288
  msgstr ""
289
 
290
- #: inc/php/page.php:227
291
  msgid "Thank you for your support!"
292
  msgstr ""
293
 
@@ -408,7 +416,7 @@ msgid "Enter a comma-delimited list of keywords for only Blog Page of your websi
408
  msgstr ""
409
 
410
  #: inc/php/settings.php:160
411
- msgid "Meta Tags for all website (Global)"
412
  msgstr ""
413
 
414
  #: inc/php/settings.php:162
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2018-10-09 09:36+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.1.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: all-meta-tags.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
81
  msgstr ""
82
 
83
  #: inc/php/page.php:67
84
+ msgid "Go to the \"Settings\" tab on this page."
85
  msgstr ""
86
 
87
  #: inc/php/page.php:68
106
 
107
  #: inc/php/page.php:73
108
  #, php-format
109
+ msgid "If you want more options, then %s let us know %s and we will be happy to add them."
110
  msgstr ""
111
 
112
  #: inc/php/page.php:87
179
  msgstr ""
180
 
181
  #: inc/php/page.php:139
182
+ msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
183
  msgstr ""
184
 
185
  #: inc/php/page.php:140
186
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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:"
187
  msgstr ""
188
 
189
+ #: inc/php/page.php:148 inc/php/page.php:152
190
+ msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue."
191
  msgstr ""
192
 
193
  #: inc/php/page.php:150
194
+ msgid "What about compatibility with the plugin \"Yoast SEO\"?"
195
  msgstr ""
196
 
197
  #: inc/php/page.php:151
198
+ msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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."
199
+ msgstr ""
200
+
201
+ #: inc/php/page.php:154
202
+ msgid "Does this plugin requires any modification of the theme?"
203
+ msgstr ""
204
+
205
+ #: inc/php/page.php:155
206
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
207
  msgstr ""
208
 
209
+ #: inc/php/page.php:157
210
  msgid "Does this require any knowledge of HTML or CSS?"
211
  msgstr ""
212
 
213
+ #: inc/php/page.php:158
214
  msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
215
  msgstr ""
216
 
217
+ #: inc/php/page.php:160
218
  msgid "It's not working. What could be wrong?"
219
  msgstr ""
220
 
221
+ #: inc/php/page.php:161
222
  msgid "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."
223
  msgstr ""
224
 
225
+ #: inc/php/page.php:162
226
  msgid "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, we'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."
227
  msgstr ""
228
 
229
+ #: inc/php/page.php:164
230
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
231
  msgstr ""
232
 
233
+ #: inc/php/page.php:165
234
  msgid "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."
235
  msgstr ""
236
 
237
+ #: inc/php/page.php:167
238
  msgid "Where to report bug if found?"
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:169
242
  #, php-format
243
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
244
  msgstr ""
245
 
246
+ #: inc/php/page.php:175
247
  msgid "Where to share any ideas or suggestions to make the plugin better?"
248
  msgstr ""
249
 
250
+ #: inc/php/page.php:177
251
  #, php-format
252
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
253
  msgstr ""
254
 
255
+ #: inc/php/page.php:183
256
  msgid "I love this plugin! Can I help somehow?"
257
  msgstr ""
258
 
259
+ #: inc/php/page.php:185
260
  #, php-format
261
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
262
  msgstr ""
263
 
264
+ #: inc/php/page.php:191
265
  msgid "My question wasn't answered here."
266
  msgstr ""
267
 
268
+ #: inc/php/page.php:193
269
  #, php-format
270
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
271
  msgstr ""
272
 
273
+ #: inc/php/page.php:207
274
  msgid "Support Us"
275
  msgstr ""
276
 
277
+ #: inc/php/page.php:215 inc/php/settings.php:226 inc/php/sidebar.php:46
278
  msgid "Donate with PayPal"
279
  msgstr ""
280
 
281
+ #: inc/php/page.php:220
282
  #, php-format
283
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
284
  msgstr ""
285
 
286
+ #: inc/php/page.php:228
287
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
288
  msgstr ""
289
 
290
+ #: inc/php/page.php:229
291
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
292
  msgstr ""
293
 
294
+ #: inc/php/page.php:230
295
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
296
  msgstr ""
297
 
298
+ #: inc/php/page.php:231
299
  msgid "Thank you for your support!"
300
  msgstr ""
301
 
416
  msgstr ""
417
 
418
  #: inc/php/settings.php:160
419
+ msgid "Meta Tags for the entire website (Global)"
420
  msgstr ""
421
 
422
  #: inc/php/settings.php:162
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: meta, tag, tags, custom, simple, plugin, twitter, facebook, google, google
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
- Stable tag: 4.23
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -13,9 +13,9 @@ Easily and safely add your custom meta tags to the WordPress website's head sect
13
 
14
  == Description ==
15
 
16
- An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily and safely add your custom meta tags to the head section of your website.
17
 
18
- This is a must have tool for authors and website's owners. Its purpose is to provide a familiar experience to WordPress users. There is no need for any more editing of the files of your theme or plugins for to add meta tags. You can add they on plugins settings page. Just add your ID (the meta key "content" value from your verification code) or/and the URL to the social media profile of the publisher in the field on the plugin page and this plugin will do the rest for you. It adds required meta tags to the head section of your website automatically, without changing any of your themes file and without slowing down your website. This is really useful in case of updating theme or plugins, because your meta tags would never be overwritten. Your meta tags will keep on working, no matter how many times you upgrade or switch your theme and plugins.
19
 
20
  The plugin works completely independently of the theme, so you can use it with any theme. The meta tags added via this plugin will be entirely unaffected if you edit the contents of the theme’s files, or even completely change the theme. This is really useful in case of updating theme or plugins, because your custom meta tags would never be overwritten. Your custom meta tags will keep on working, no matter how many times you upgrade or switch your theme and plugins.
21
 
@@ -23,7 +23,7 @@ Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ r
23
 
24
  Also you can use this plugin to add required meta tags such as Author, Designer, Contact, Copyright and Keywords in everywhere on your website (It adds the required meta tags to the header of all pages on your website) or the meta Description and Keywords only for Static Home Page or the meta Description and Keywords only for Blog Page.
25
 
26
- If you want more options, let us know and we will be happy to add them.
27
 
28
  **Features**
29
 
@@ -144,7 +144,7 @@ A. We don't limit the number of characters.
144
  A. 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 (`1234567890`) and not the whole tag (`<meta name="google-site-verification" content=“1234567890” />`). So just paste that into the relevant field and you will see “Success” message appear within a few seconds.
145
 
146
  = Q. What about compatibility with the "All in One SEO Pack" plugin ? =
147
- A. 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:
148
 
149
  `<head>
150
  ...
@@ -154,7 +154,12 @@ A. To make these plugins compatible you need to stick to one simple rule: do not
154
  ...
155
  </head>`
156
 
157
- In the rest, the "All Meta Tags" and "All in One SEO Pack" is compatible.
 
 
 
 
 
158
 
159
  = Q. Does this plugin requires any modification of the theme? =
160
  A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Area of your WordPress website.
@@ -200,16 +205,28 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
200
 
201
  * The icon of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
202
  * The banner of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
 
203
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
204
 
205
  **Links**
206
 
207
  * [Developer website](https://www.spacexchimp.com)
208
  * [Dedicated plugin page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
 
209
 
210
 
211
  == Changelog ==
212
 
 
 
 
 
 
 
 
 
 
 
213
  = 4.23 =
214
  * Some texts are updated.
215
  * Translation files are updated.
@@ -323,7 +340,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
323
  * Code commenting improved.
324
  * Load of the additional remote CSS file removed from the admin.js file.
325
  * Changed the sorting of enqueueing of scripts.
326
- * The ''Family' page tab renamed to 'Store'.
327
  * Added ad banner of my store website.
328
 
329
  = 4.4.1 =
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
+ Stable tag: 4.24
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
13
 
14
  == Description ==
15
 
16
+ An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
17
 
18
+ This is a must have tool for authors and website's owners. Its purpose is to provide a familiar experience to WordPress users. There is no need for any more editing of the files of your theme or plugins for to add custom meta tags. Just add your ID (the meta key "content" value from your verification code) or/and the URL to the social media profile of the publisher in the field on the plugin page and this plugin will do the rest for you. It will automatically add required meta tags to the head section of your website, without changing any of your theme files and without slowing down your website. This is really useful in case of updating theme or plugins, because your meta tags would never be overwritten. Your meta tags will keep on working, no matter how many times you upgrade or switch your theme and plugins.
19
 
20
  The plugin works completely independently of the theme, so you can use it with any theme. The meta tags added via this plugin will be entirely unaffected if you edit the contents of the theme’s files, or even completely change the theme. This is really useful in case of updating theme or plugins, because your custom meta tags would never be overwritten. Your custom meta tags will keep on working, no matter how many times you upgrade or switch your theme and plugins.
21
 
23
 
24
  Also you can use this plugin to add required meta tags such as Author, Designer, Contact, Copyright and Keywords in everywhere on your website (It adds the required meta tags to the header of all pages on your website) or the meta Description and Keywords only for Static Home Page or the meta Description and Keywords only for Blog Page.
25
 
26
+ If you want more options, then let us know and we will be happy to add them.
27
 
28
  **Features**
29
 
144
  A. 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 (`1234567890`) and not the whole tag (`<meta name="google-site-verification" content=“1234567890” />`). So just paste that into the relevant field and you will see “Success” message appear within a few seconds.
145
 
146
  = Q. What about compatibility with the "All in One SEO Pack" plugin ? =
147
+ A. As far as we know, the "All Meta Tags" plugin is compatible with the "All in One SEO Pack" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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:
148
 
149
  `<head>
150
  ...
154
  ...
155
  </head>`
156
 
157
+ If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue.
158
+
159
+ = Q. What about compatibility with the "Yoast SEO" plugin ? =
160
+ A. As far as we know, the "All Meta Tags" plugin is compatible with the "Yoast SEO" plugin. But to make sure that these plugins do not conflict with each other, you need to follow 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.
161
+
162
+ If you find a conflict between the plugins, please let us know and we will definitely release an update of the plugin to fix the issue.
163
 
164
  = Q. Does this plugin requires any modification of the theme? =
165
  A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Area of your WordPress website.
205
 
206
  * The icon of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
207
  * The banner of plugin is a copyrighted image created by the [Space X-Chimp](https://www.spacexchimp.com) team. (C) All rights reserved.
208
+ * [CodeMirror](https://codemirror.net/) is an open-source project shared under the [MIT license](https://codemirror.net/LICENSE).
209
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
210
 
211
  **Links**
212
 
213
  * [Developer website](https://www.spacexchimp.com)
214
  * [Dedicated plugin page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
215
+ * [Dedicated plugin page on WordPress.org](https://wordpress.org/plugins/all-meta-tags/)
216
 
217
 
218
  == Changelog ==
219
 
220
+ = 4.24 =
221
+ * The "_add_meta_tags" function renamed to "_prepare".
222
+ * The "_add_metadata_head" function renamed to "_exec".
223
+ * Content of the "Settings" section updated.
224
+ * Content of the "Usage Instructions" section updated.
225
+ * Content of the "F.A.Q." section updated.
226
+ * CSS code, which is located in the file "admin.css" and is related to the "FAQ" section, is improved.
227
+ * Code commenting improved.
228
+ * Translation files are updated.
229
+
230
  = 4.23 =
231
  * Some texts are updated.
232
  * Translation files are updated.
340
  * Code commenting improved.
341
  * Load of the additional remote CSS file removed from the admin.js file.
342
  * Changed the sorting of enqueueing of scripts.
343
+ * The 'Family' page tab renamed to 'Store'.
344
  * Added ad banner of my store website.
345
 
346
  = 4.4.1 =