All Meta Tags - Version 4.27

Version Description

  • Content of the "Usage" section updated.
  • Code formatting in the "admin.js" file improved.
  • Code commenting improved.
  • The copyright date updated.
  • Translation files are updated.
Download this release

Release Info

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

Code changes from version 4.26 to 4.27

all-meta-tags.php CHANGED
@@ -5,12 +5,12 @@
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.26
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
12
  *
13
- * Copyright 2015-2018 Space X-Chimp ( website : https://www.spacexchimp.com )
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
5
  * Description: Easily and safely add your custom meta tags to 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.27
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
12
  *
13
+ * Copyright 2015-2019 Space X-Chimp ( website : https://www.spacexchimp.com )
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
inc/css/admin.css CHANGED
@@ -4,7 +4,7 @@
4
  * @package All Meta Tags
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
- * @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
4
  * @package All Meta Tags
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
inc/js/admin.js CHANGED
@@ -4,7 +4,7 @@
4
  * @package All Meta Tags
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
- * @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
@@ -24,14 +24,14 @@ jQuery(document).ready(function($) {
24
 
25
  // Add questions and answers into spoilers and color them in different colors
26
  $('.panel-group .panel').each(function(i) {
27
- $('.question-' + (i+1) ).appendTo( $('h4', this) );
28
- $('.answer-' + (i+1) ).appendTo( $('.panel-body', this) );
29
-
30
- if ( $(this).find('h4 div').hasClass('question-red') ) {
31
- $(this).addClass('panel-danger');
32
- } else {
33
- $(this).addClass('panel-info');
34
- }
35
  });
36
 
37
  });
4
  * @package All Meta Tags
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
24
 
25
  // Add questions and answers into spoilers and color them in different colors
26
  $('.panel-group .panel').each(function(i) {
27
+ $('.question-' + (i+1) ).appendTo( $('h4', this) );
28
+ $('.answer-' + (i+1) ).appendTo( $('.panel-body', this) );
29
+
30
+ if ( $(this).find('h4 div').hasClass('question-red') ) {
31
+ $(this).addClass('panel-danger');
32
+ } else {
33
+ $(this).addClass('panel-info');
34
+ }
35
  });
36
 
37
  });
inc/js/codemirror-settings.js CHANGED
@@ -4,7 +4,7 @@
4
  * @package All Meta Tags
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
- * @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
4
  * @package All Meta Tags
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
inc/php/controls.php CHANGED
@@ -32,7 +32,7 @@ function spacexchimp_p004_control_help( $help=null ) {
32
  */
33
  function spacexchimp_p004_control_field( $name, $label, $placeholder, $help=null, $link=null ) {
34
 
35
- // Read options from database and declare variables
36
  $options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
37
  $value = !empty( $options[$name] ) ? esc_attr( $options[$name] ) : '';
38
  $label_link = !empty( $link ) ? "<a href='$link' target='_blank'>$label</a>" : "$label";
@@ -66,7 +66,7 @@ function spacexchimp_p004_control_field( $name, $label, $placeholder, $help=null
66
  */
67
  function spacexchimp_p004_control_textarea( $name, $label, $placeholder, $help=null ) {
68
 
69
- // Read options from database and declare variables
70
  $options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
71
  $value = !empty( $options[$name] ) ? esc_attr( $options[$name] ) : '';
72
 
32
  */
33
  function spacexchimp_p004_control_field( $name, $label, $placeholder, $help=null, $link=null ) {
34
 
35
+ // Retrieve options from database and declare variables
36
  $options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
37
  $value = !empty( $options[$name] ) ? esc_attr( $options[$name] ) : '';
38
  $label_link = !empty( $link ) ? "<a href='$link' target='_blank'>$label</a>" : "$label";
66
  */
67
  function spacexchimp_p004_control_textarea( $name, $label, $placeholder, $help=null ) {
68
 
69
+ // Retrieve options from database and declare variables
70
  $options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
71
  $value = !empty( $options[$name] ) ? esc_attr( $options[$name] ) : '';
72
 
inc/php/functional.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  */
11
  function spacexchimp_p004_prepare() {
12
 
13
- // Read options from database
14
  $options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
15
 
16
  // Sanitiz data and declare variables
10
  */
11
  function spacexchimp_p004_prepare() {
12
 
13
+ // Retrieve options from database
14
  $options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
15
 
16
  // Sanitiz data and declare variables
inc/php/page.php CHANGED
@@ -69,12 +69,12 @@ function spacexchimp_p004_render_submenu_page() {
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
- );
77
- ?>
78
  </p>
79
  </div>
80
  </div>
@@ -140,9 +140,9 @@ function spacexchimp_p004_render_submenu_page() {
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;
144
  ...
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>
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"><?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
+ );
77
+ ?>
78
  </p>
79
  </div>
80
  </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-2019 Space X-Chimp. All Rights Reserved."&gt;
144
  ...
145
+ &lt;meta name="copyright" content="Copyright 2019 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>
inc/php/settings.php CHANGED
@@ -179,7 +179,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
179
  );
180
  spacexchimp_p004_control_field( 'copyright',
181
  __( 'Copyright', $text ),
182
- 'Copyright (c) 2013-2018 Space X-Chimp. All Rights Reserved.',
183
  ''
184
  );
185
  spacexchimp_p004_control_textarea( 'keywords',
179
  );
180
  spacexchimp_p004_control_field( 'copyright',
181
  __( 'Copyright', $text ),
182
+ 'Copyright (c) 2013-2019 Space X-Chimp. All Rights Reserved.',
183
  ''
184
  );
185
  spacexchimp_p004_control_textarea( 'keywords',
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-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,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.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -102,10 +102,6 @@ msgstr ""
102
  msgid "It's that simple!"
103
  msgstr "Es ist ganz einfach!"
104
 
105
- #: inc/php/page.php:72
106
- msgid "Note!"
107
- msgstr "Achtung!"
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."
@@ -509,6 +505,9 @@ msgstr "Space X-Chimp"
509
  msgid "https://www.spacexchimp.com"
510
  msgstr "https://www.spacexchimp.com"
511
 
 
 
 
512
  #~ msgid "Select the desired settings."
513
  #~ msgstr "Wählen Sie die gewünschten Einstellungen aus."
514
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2019-01-11 20:29+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:29+0200\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.2\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
102
  msgid "It's that simple!"
103
  msgstr "Es ist ganz einfach!"
104
 
 
 
 
 
105
  #: inc/php/page.php:73
106
  #, php-format
107
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
505
  msgid "https://www.spacexchimp.com"
506
  msgstr "https://www.spacexchimp.com"
507
 
508
+ #~ msgid "Note!"
509
+ #~ msgstr "Achtung!"
510
+
511
  #~ msgid "Select the desired settings."
512
  #~ msgstr "Wählen Sie die gewünschten Einstellungen aus."
513
 
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-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,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.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -102,10 +102,6 @@ msgstr ""
102
  msgid "It's that simple!"
103
  msgstr "¡Es así de simple!"
104
 
105
- #: inc/php/page.php:72
106
- msgid "Note!"
107
- msgstr "¡Nota!"
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."
@@ -509,6 +505,9 @@ msgstr "Space X-Chimp"
509
  msgid "https://www.spacexchimp.com"
510
  msgstr "https://www.spacexchimp.com"
511
 
 
 
 
512
  #~ msgid "Select the desired settings."
513
  #~ msgstr "Seleccione la configuración deseada."
514
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2019-01-11 20:29+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:30+0200\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.2\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
102
  msgid "It's that simple!"
103
  msgstr "¡Es así de simple!"
104
 
 
 
 
 
105
  #: inc/php/page.php:73
106
  #, php-format
107
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
505
  msgid "https://www.spacexchimp.com"
506
  msgstr "https://www.spacexchimp.com"
507
 
508
+ #~ msgid "Note!"
509
+ #~ msgstr "¡Nota!"
510
+
511
  #~ msgid "Select the desired settings."
512
  #~ msgstr "Seleccione la configuración deseada."
513
 
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-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,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.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"
@@ -103,10 +103,6 @@ msgstr ""
103
  msgid "It's that simple!"
104
  msgstr ""
105
 
106
- #: inc/php/page.php:72
107
- msgid "Note!"
108
- msgstr ""
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."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2019-01-11 20:30+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:30+0200\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.2\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"
103
  msgid "It's that simple!"
104
  msgstr ""
105
 
 
 
 
 
106
  #: inc/php/page.php:73
107
  #, php-format
108
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
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-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,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.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -102,10 +102,6 @@ msgstr ""
102
  msgid "It's that simple!"
103
  msgstr ""
104
 
105
- #: inc/php/page.php:72
106
- msgid "Note!"
107
- msgstr ""
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."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2019-01-11 20:30+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:30+0200\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.2\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
102
  msgid "It's that simple!"
103
  msgstr ""
104
 
 
 
 
 
105
  #: inc/php/page.php:73
106
  #, php-format
107
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
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-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,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.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -102,10 +102,6 @@ msgstr ""
102
  msgid "It's that simple!"
103
  msgstr "Zo eenvoudig is het!"
104
 
105
- #: inc/php/page.php:72
106
- msgid "Note!"
107
- msgstr "Opmerking!"
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."
@@ -509,6 +505,9 @@ msgstr "Space X-Chimp"
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
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2019-01-11 20:30+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:30+0200\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.2\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
102
  msgid "It's that simple!"
103
  msgstr "Zo eenvoudig is het!"
104
 
 
 
 
 
105
  #: inc/php/page.php:73
106
  #, php-format
107
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
505
  msgid "https://www.spacexchimp.com"
506
  msgstr "https://www.spacexchimp.com"
507
 
508
+ #~ msgid "Note!"
509
+ #~ msgstr "Opmerking!"
510
+
511
  #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
512
  #~ msgstr "Hallo! Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s."
513
 
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-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,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.1.1\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -102,10 +102,6 @@ msgstr "Наслаждайтесь улучшенным SEO вашего веб-
102
  msgid "It's that simple!"
103
  msgstr "Вот так просто!"
104
 
105
- #: inc/php/page.php:72
106
- msgid "Note!"
107
- msgstr "Примечание!"
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."
@@ -509,6 +505,9 @@ msgstr "Space X-Chimp"
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
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2019-01-11 20:30+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:30+0200\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.2\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: all-meta-tags.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
102
  msgid "It's that simple!"
103
  msgstr "Вот так просто!"
104
 
 
 
 
 
105
  #: inc/php/page.php:73
106
  #, php-format
107
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
505
  msgid "https://www.spacexchimp.com"
506
  msgstr "https://www.spacexchimp.com"
507
 
508
+ #~ msgid "Note!"
509
+ #~ msgstr "Примечание!"
510
+
511
  #~ msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
512
  #~ msgstr "В остальном «All Meta Tags» и «All in One SEO Pack» совместимы."
513
 
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-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"
@@ -100,10 +100,6 @@ msgstr ""
100
  msgid "It's that simple!"
101
  msgstr ""
102
 
103
- #: inc/php/page.php:72
104
- msgid "Note!"
105
- msgstr ""
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."
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2019-01-11 20:30+0200\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.2\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: all-meta-tags.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
100
  msgid "It's that simple!"
101
  msgstr ""
102
 
 
 
 
 
103
  #: inc/php/page.php:73
104
  #, php-format
105
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Arthur Gareginyan
3
  Tags: meta, tag, tags, custom, simple, plugin, twitter, facebook, google, google plus, meta, search engine optimization, seo, social, alexa, alexa rank, pinterest, norton safe web, webmaster, webmaster tool, webmaster tools, web master tools, web master tools, bing, yandex, bing webmaster, yandex webmaster, google webmaster, web tools, open graph, publisher profile, publisher, author, authors, description, keyword, keywords, copyright, designer, admin, meta tag, pinterest, pinterest meta tag, pinterest website verification, pinterest verification, pinterest verify, plugin, verification, verify, webmaster plugin, wot, web of trust, specificfeeds, specific feeds, feed, rss feed, google shopping, google merchant center, structured data, woocommerce, schemas
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.26
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -148,9 +148,9 @@ A. As far as we know, the "All Meta Tags" plugin is compatible with the "All in
148
 
149
  `<head>
150
  ...
151
- <meta name="copyright" content="Copyright (c) 2013-2018 Space X-Chimp. All Rights Reserved.">
152
  ...
153
- <meta name="copyright" content="Copyright 2018 Space X-Chimp. All Rights Reserved.">
154
  ...
155
  </head>`
156
 
@@ -217,6 +217,13 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
217
 
218
  == Changelog ==
219
 
 
 
 
 
 
 
 
220
  = 4.26 =
221
  * Improvement: Design of the plugin settings page is improved.
222
 
3
  Tags: meta, tag, tags, custom, simple, plugin, twitter, facebook, google, google plus, meta, search engine optimization, seo, social, alexa, alexa rank, pinterest, norton safe web, webmaster, webmaster tool, webmaster tools, web master tools, web master tools, bing, yandex, bing webmaster, yandex webmaster, google webmaster, web tools, open graph, publisher profile, publisher, author, authors, description, keyword, keywords, copyright, designer, admin, meta tag, pinterest, pinterest meta tag, pinterest website verification, pinterest verification, pinterest verify, plugin, verification, verify, webmaster plugin, wot, web of trust, specificfeeds, specific feeds, feed, rss feed, google shopping, google merchant center, structured data, woocommerce, schemas
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
+ Tested up to: 5.0
7
+ Stable tag: 4.27
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
148
 
149
  `<head>
150
  ...
151
+ <meta name="copyright" content="Copyright (c) 2013-2019 Space X-Chimp. All Rights Reserved.">
152
  ...
153
+ <meta name="copyright" content="Copyright 2019 Space X-Chimp. All Rights Reserved.">
154
  ...
155
  </head>`
156
 
217
 
218
  == Changelog ==
219
 
220
+ = 4.27 =
221
+ * Content of the "Usage" section updated.
222
+ * Code formatting in the "admin.js" file improved.
223
+ * Code commenting improved.
224
+ * The copyright date updated.
225
+ * Translation files are updated.
226
+
227
  = 4.26 =
228
  * Improvement: Design of the plugin settings page is improved.
229