All Meta Tags - Version 3.4

Version Description

  • Added Spanish translation. (Thanks to Sergio Yeyo Troncoso for the translation)
  • Russian translation updated.
  • Added the Readme.txt file for translation contribution.
  • Added global constant for plugin text-domain.
Download this release

Release Info

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

Code changes from version 3.3 to 3.4

all-meta-tags.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily and safely add your custom Meta Tags to WordPress website's header.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
- * Version: 3.3
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
@@ -40,13 +40,14 @@ defined('ABSPATH') or die("Restricted access!");
40
  /**
41
  * Define global constants
42
  *
43
- * @since 3.1
44
  */
45
  defined('ALLMT_DIR') or define('ALLMT_DIR', dirname(plugin_basename(__FILE__)));
46
  defined('ALLMT_BASE') or define('ALLMT_BASE', plugin_basename(__FILE__));
47
  defined('ALLMT_URL') or define('ALLMT_URL', plugin_dir_url(__FILE__));
48
  defined('ALLMT_PATH') or define('ALLMT_PATH', plugin_dir_path(__FILE__));
49
- defined('ALLMT_VERSION') or define('ALLMT_VERSION', '3.3');
 
50
 
51
  /**
52
  * Register text domain
@@ -54,7 +55,7 @@ defined('ALLMT_VERSION') or define('ALLMT_VERSION', '3.3');
54
  * @since 2.0
55
  */
56
  function allmetatags_textdomain() {
57
- load_plugin_textdomain( 'all-meta-tags', false, ALLMT_DIR . '/languages/' );
58
  }
59
  add_action( 'init', 'allmetatags_textdomain' );
60
 
@@ -69,11 +70,11 @@ add_action( 'init', 'allmetatags_textdomain' );
69
  * @return array Array of links to be output on Plugin Admin page.
70
  */
71
  function allmetatags_settings_link( $links ) {
72
- $settings_page = '<a href="' . admin_url( 'options-general.php?page=all-meta-tags.php' ) .'">' . __( 'Settings', 'all-meta-tags' ) . '</a>';
73
  array_unshift( $links, $settings_page );
74
  return $links;
75
  }
76
- add_filter( "plugin_action_links_".ALLMT_BASE, 'allmetatags_settings_link' );
77
 
78
  /**
79
  * Register "All Meta Tags" submenu in "Settings" Admin Menu
@@ -81,7 +82,7 @@ add_filter( "plugin_action_links_".ALLMT_BASE, 'allmetatags_settings_link' );
81
  * @since 2.0
82
  */
83
  function allmetatags_register_submenu_page() {
84
- add_options_page( __( 'All Meta Tags', 'all-meta-tags' ), __( 'All Meta Tags', 'all-meta-tags' ), 'manage_options', basename( __FILE__ ), 'allmetatags_render_submenu_page' );
85
  }
86
  add_action( 'admin_menu', 'allmetatags_register_submenu_page' );
87
 
5
  * Description: Easily and safely add your custom Meta Tags to WordPress website's header.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
+ * Version: 3.4
9
  * License: GPL3
10
  * Text Domain: all-meta-tags
11
  * Domain Path: /languages/
40
  /**
41
  * Define global constants
42
  *
43
+ * @since 3.4
44
  */
45
  defined('ALLMT_DIR') or define('ALLMT_DIR', dirname(plugin_basename(__FILE__)));
46
  defined('ALLMT_BASE') or define('ALLMT_BASE', plugin_basename(__FILE__));
47
  defined('ALLMT_URL') or define('ALLMT_URL', plugin_dir_url(__FILE__));
48
  defined('ALLMT_PATH') or define('ALLMT_PATH', plugin_dir_path(__FILE__));
49
+ defined('ALLMT_TEXT') or define('ALLMT_TEXT', 'all-meta-tags');
50
+ defined('ALLMT_VERSION') or define('ALLMT_VERSION', '3.4');
51
 
52
  /**
53
  * Register text domain
55
  * @since 2.0
56
  */
57
  function allmetatags_textdomain() {
58
+ load_plugin_textdomain( ALLMT_TEXT, false, ALLMT_DIR . '/languages/' );
59
  }
60
  add_action( 'init', 'allmetatags_textdomain' );
61
 
70
  * @return array Array of links to be output on Plugin Admin page.
71
  */
72
  function allmetatags_settings_link( $links ) {
73
+ $settings_page = '<a href="' . admin_url( 'options-general.php?page=all-meta-tags.php' ) .'">' . __( 'Settings', ALLMT_TEXT ) . '</a>';
74
  array_unshift( $links, $settings_page );
75
  return $links;
76
  }
77
+ add_filter( 'plugin_action_links_'.ALLMT_BASE, 'allmetatags_settings_link' );
78
 
79
  /**
80
  * Register "All Meta Tags" submenu in "Settings" Admin Menu
82
  * @since 2.0
83
  */
84
  function allmetatags_register_submenu_page() {
85
+ add_options_page( __( 'All Meta Tags', ALLMT_TEXT ), __( 'All Meta Tags', ALLMT_TEXT ), 'manage_options', basename( __FILE__ ), 'allmetatags_render_submenu_page' );
86
  }
87
  add_action( 'admin_menu', 'allmetatags_register_submenu_page' );
88
 
inc/css/admin.css CHANGED
@@ -99,9 +99,9 @@ textarea,
99
  text-decoration: none;
100
  }
101
 
102
- /* <pre> tag in "WooCommerse" section
103
  -------------------------------------------------------------- */
104
- #WooCommerse pre {
105
  border: 1px solid grey;
106
  padding: 3px 5px 2px;
107
  margin: 0 10px 0 10px;
99
  text-decoration: none;
100
  }
101
 
102
+ /* <pre> tag in "WooCommerce" section
103
  -------------------------------------------------------------- */
104
+ #WooCommerce pre {
105
  border: 1px solid grey;
106
  padding: 3px 5px 2px;
107
  margin: 0 10px 0 10px;
inc/js/admin.js CHANGED
@@ -5,7 +5,7 @@
5
  * All Rights Reserved.
6
  */
7
 
8
-
9
  jQuery(document).ready(function($) {
10
 
11
  "use strict";
@@ -13,7 +13,7 @@ jQuery(document).ready(function($) {
13
  // Remove the "successful" message after 3 seconds
14
  if (".updated") {
15
  setTimeout(function() {
16
- $(".updated").fadeOut();
17
  }, 3000);
18
  }
19
 
5
  * All Rights Reserved.
6
  */
7
 
8
+
9
  jQuery(document).ready(function($) {
10
 
11
  "use strict";
13
  // Remove the "successful" message after 3 seconds
14
  if (".updated") {
15
  setTimeout(function() {
16
+ $(".updated").fadeOut();
17
  }, 3000);
18
  }
19
 
inc/php/settings_page.php CHANGED
@@ -21,10 +21,10 @@ function allmetatags_render_submenu_page() {
21
  ?>
22
  <div class="wrap">
23
  <h2>
24
- <?php _e( 'All Meta Tags', 'all-meta-tags' ); ?>
25
  <br/>
26
  <span>
27
- <?php _e( 'by <a href="http://www.arthurgareginyan.com" target="_blank">Arthur Gareginyan</a>', 'all-meta-tags' ); ?>
28
  <span/>
29
  </h2>
30
 
@@ -35,40 +35,40 @@ function allmetatags_render_submenu_page() {
35
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
36
 
37
  <div id="about" class="postbox">
38
- <h3 class="title"><?php _e( 'About', 'all-meta-tags' ); ?></a></h3>
39
  <div class="inside">
40
- <p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', 'all-meta-tags' ); ?></p>
41
  </div>
42
  </div>
43
 
44
  <div id="using" class="postbox">
45
- <h3 class="title"><?php _e( 'Using', 'all-meta-tags' ); ?></a></h3>
46
  <div class="inside">
47
- <p><?php _e( 'To use, enter your custom Meta Tags, then click "Save Changes". It\'s that simple!', 'all-meta-tags' ); ?></p>
48
  </div>
49
  </div>
50
 
51
  <div id="help" class="postbox">
52
- <h3 class="title"><?php _e( 'Help', 'all-meta-tags' ); ?></h3>
53
  <div class="inside">
54
- <p><?php _e( 'Got something to say? Need help?', 'all-meta-tags' ); ?></p>
55
  <p><a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">arthurgareginyan@gmail.com</a></p>
56
  </div>
57
  </div>
58
 
59
  <div id="donate" class="postbox">
60
- <h3 class="title"><?php _e( 'Donate', 'all-meta-tags' ); ?></h3>
61
  <div class="inside">
62
- <p><?php _e( 'If you like this plugin and find it useful, please help me to make this plugin even better and keep it up-to-date.', 'all-meta-tags' ); ?></p>
63
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
64
  <img src="<?php echo plugins_url('../img/btn_donateCC_LG.gif', __FILE__); ?>" alt="Make a donation">
65
  </a>
66
- <p><?php _e( 'Thanks for your support!', 'all-meta-tags' ); ?></p>
67
  </div>
68
  </div>
69
 
70
  <div id="advertisement" class="postbox">
71
- <h3 class="title"><?php _e( 'Advertisement', 'all-meta-tags' ); ?></h3>
72
  <div class="inside">
73
  <a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=36439_5_1_21" target="_blank" rel="nofollow"><img style="border:0px" src="http://www.elegantthemes.com/affiliates/media/banners/divi_250x250.jpg" width="250" height="250" alt="Divi WordPress Theme"></a>
74
  </div>
@@ -88,163 +88,163 @@ function allmetatags_render_submenu_page() {
88
  <?php settings_fields( 'allmetatags_settings_group' ); ?>
89
 
90
  <div class="postbox" id="WebMasterTools">
91
- <h3 class="title"><?php _e( 'Web Master Tools', 'all-meta-tags' ); ?></h3>
92
  <div class="inside">
93
- <p><?php _e( 'Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', 'all-meta-tags' ); ?></p>
94
  <table class="form-table">
95
  <?php allmetatags_field('google',
96
  'Google Webmaster Tools',
97
  '1234567890',
98
- __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="google-site-verification" content=“<b>1234567890</b>” /&gt;', 'all-meta-tags' ),
99
  'https://www.google.com/webmasters/verification/'); ?>
100
  <?php allmetatags_field('bing',
101
  'Bing Webmaster Tools',
102
  '1234567890',
103
- __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="msvalidate.01" content=“<b>1234567890</b>” /&gt;', 'all-meta-tags' ),
104
  'http://www.bing.com/webmaster/'); ?>
105
  <?php allmetatags_field('yandex',
106
  'Yandex Webmaster Tools',
107
  '1234567890',
108
- __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="yandex-verification" content=“<b>1234567890</b>” /&gt;', 'all-meta-tags' ),
109
  'https://webmaster.yandex.com'); ?>
110
  </table>
111
- <?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
112
  </div>
113
  </div>
114
 
115
  <div class="postbox" id="DomainVerification">
116
- <h3 class="title"><?php _e( 'Domain Verification', 'all-meta-tags' ); ?></h3>
117
  <div class="inside">
118
- <p><?php _e( 'Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', 'all-meta-tags' ); ?></p>
119
  <table class="form-table">
120
  <?php allmetatags_field('pinterest',
121
  'Pinterest',
122
  '1234567890',
123
- __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="p:domain_verify" content=“<b>1234567890</b>” /&gt;', 'all-meta-tags' ),
124
  'https://help.pinterest.com/en/articles/confirm-your-website'); ?>
125
  <?php allmetatags_field('google_author',
126
  'Google+',
127
  'https://plus.google.com/+ArthurGareginyan/',
128
- __( 'Enter an absolute URL to the Google+ profile of the publisher. </br>Example: https://plus.google.com/+ArthurGareginyan/', 'all-meta-tags' ),
129
  'https://plus.google.com/'); ?>
130
  <?php allmetatags_field('facebook',
131
  'Facebook',
132
  'https://www.facebook.com/arthur.gareginyan',
133
- __( 'Enter an absolute URL to the Facebook profile of the publisher. </br>Example: https://www.facebook.com/arthur.gareginyan', 'all-meta-tags' ),
134
  'https://www.facebook.com/'); ?>
135
  <?php allmetatags_field('twitter',
136
  'Twitter',
137
  '@AGareginyan',
138
- __( 'Enter the Twitter username of the publisher. </br>Example: @AGareginyan', 'all-meta-tags' ),
139
  'https://twitter.com/'); ?>
140
  <?php allmetatags_field('alexa',
141
  'Alexa',
142
  '1234567890',
143
- __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="alexaVerifyID" content=“<b>1234567890</b>” /&gt;', 'all-meta-tags' ),
144
  'http://www.alexa.com/siteowners/claim'); ?>
145
  <?php allmetatags_field('norton',
146
  'Norton Safe Web',
147
  '1234567890',
148
- __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” /&gt;', 'all-meta-tags' ),
149
  'https://safeweb.norton.com/help/site_owners'); ?>
150
  <?php allmetatags_field('wot',
151
  'Web of Trust (WOT)',
152
  '1234567890',
153
- __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="wot-verification" content=“<b>1234567890</b>” /&gt;', 'all-meta-tags' ),
154
  'https://www.mywot.com/wiki/Verify_your_website'); ?>
155
  <?php allmetatags_field('custom_meta',
156
- __( 'Custom Meta Tags', 'all-meta-tags' ),
157
  '&lt;meta name="google-site-verification" content=“1234567890” /&gt;',
158
- __( 'If you can\'t find a field to enter your required meta tag then you can add it here. In this field you can add multiple meta tags.', 'all-meta-tags' ),
159
  '',
160
  'textarea'); ?>
161
  </table>
162
- <?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
163
  </div>
164
  </div>
165
 
166
  <div class="postbox" id="Home">
167
- <h3 class="title"><?php _e( 'Meta Tags for Static Home Page only', 'all-meta-tags' ); ?></h3>
168
  <div class="inside">
169
- <p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', 'all-meta-tags' ); ?></p>
170
  <table class="form-table">
171
  <?php allmetatags_field('home_description',
172
- __( 'Home Description', 'all-meta-tags' ),
173
  'My website is about plants, nature, the sea and everything I love',
174
- __( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', 'all-meta-tags' ),
175
  '',
176
  'textarea'); ?>
177
  <?php allmetatags_field('home_keywords',
178
- __( 'Home Keyword(s)', 'all-meta-tags' ),
179
  'blog, awesome, handmade, books, theater',
180
- __( 'Enter a comma-delimited list of keywords for only Static Home Page of your website.', 'all-meta-tags' ),
181
  '',
182
  'textarea'); ?>
183
  </table>
184
- <?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
185
  </div>
186
  </div>
187
 
188
  <div class="postbox" id="Blog">
189
- <h3 class="title"><?php _e( 'Meta Tags for Default Home Page and Blog Page only', 'all-meta-tags' ); ?></h3>
190
  <div class="inside">
191
- <p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', 'all-meta-tags' ); ?></p>
192
  <table class="form-table">
193
  <?php allmetatags_field('blog_description',
194
- __( 'Blog Description', 'all-meta-tags' ),
195
  'My blog is about plants, nature, the sea and everything I love',
196
- __( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', 'all-meta-tags' ),
197
  '',
198
  'textarea'); ?>
199
  <?php allmetatags_field('blog_keywords',
200
- __( 'Blog Keyword(s)', 'all-meta-tags' ),
201
  'blog, awesome, handmade, books, theater',
202
- __( 'Enter a comma-delimited list of keywords for only Blog Page of your website.', 'all-meta-tags' ),
203
  '',
204
  'textarea'); ?>
205
  </table>
206
- <?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
207
  </div>
208
  </div>
209
 
210
  <div class="postbox" id="Everywhere">
211
- <h3 class="title"><?php _e( 'Meta Tags for all website (Global)', 'all-meta-tags' ); ?></h3>
212
  <div class="inside">
213
- <p><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', 'all-meta-tags' ); ?></p>
214
  <table class="form-table">
215
  <?php allmetatags_field('author',
216
- __( 'Author', 'all-meta-tags' ),
217
  'Arthur Gareginyan',
218
  '',
219
  ''); ?>
220
  <?php allmetatags_field('designer',
221
- __( 'Designer', 'all-meta-tags' ),
222
  'Arthur Gareginyan',
223
  '',
224
  ''); ?>
225
  <?php allmetatags_field('contact',
226
- __( 'Contact', 'all-meta-tags' ),
227
  'arthurgareginyan@gmail.com',
228
  ''); ?>
229
  <?php allmetatags_field('copyright',
230
- __( 'Copyright', 'all-meta-tags' ),
231
  'Copyright (c) 2013-2016 Arthur Gareginyan. All Rights Reserved.',
232
  ''); ?>
233
  <?php allmetatags_field('keywords',
234
- __( 'Keyword(s)', 'all-meta-tags' ),
235
  'blog, awesome, handmade, books, theater',
236
- __( 'Enter a comma-delimited list of global keywords for your website.', 'all-meta-tags' ),
237
  '',
238
  'textarea'); ?>
239
  </table>
240
- <?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
241
  </div>
242
  </div>
243
 
244
- <div class="postbox" id="WooCommerse">
245
- <h3 class="title"><?php _e( 'WooCommerse & Google Shopping', 'all-meta-tags' ); ?></h3>
246
  <div class="inside">
247
- <p><?php _e( 'This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website. Here is the markup for women\'s T-shirt that sells for 16 dollars and 80 cents of US.', 'all-meta-tags' ); ?></p>
248
  <pre>&lt;div itemtype=&quot;http://schema.org/Product&quot; itemscope=&quot;&quot;&gt;
249
  &lt;meta itemprop=&quot;name&quot; content=&quot;Womens T-shirt&quot;&gt;
250
  &lt;meta itemprop=&quot;description&quot; content=&quot;Constructed in cotton sweat fabric, this lovely piece...&quot;&gt;
@@ -254,7 +254,7 @@ function allmetatags_render_submenu_page() {
254
  &lt;meta itemprop=&quot;priceCurrency&quot; content=&quot;USD&quot;&gt;
255
  &lt;/div&gt;
256
  &lt;/div&gt;</pre>
257
- <p><?php _e( 'Check these data generated on the pages of your website you can <a href="https://search.google.com/structured-data/testing-tool" target="_blank">here</a>.', 'all-meta-tags' ); ?></p>
258
  </div>
259
  </div>
260
 
21
  ?>
22
  <div class="wrap">
23
  <h2>
24
+ <?php _e( 'All Meta Tags', ALLMT_TEXT ); ?>
25
  <br/>
26
  <span>
27
+ <?php _e( 'by <a href="http://www.arthurgareginyan.com" target="_blank">Arthur Gareginyan</a>', ALLMT_TEXT ); ?>
28
  <span/>
29
  </h2>
30
 
35
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
36
 
37
  <div id="about" class="postbox">
38
+ <h3 class="title"><?php _e( 'About', ALLMT_TEXT ); ?></a></h3>
39
  <div class="inside">
40
+ <p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', ALLMT_TEXT ); ?></p>
41
  </div>
42
  </div>
43
 
44
  <div id="using" class="postbox">
45
+ <h3 class="title"><?php _e( 'Using', ALLMT_TEXT ); ?></a></h3>
46
  <div class="inside">
47
+ <p><?php _e( 'To use, enter your custom Meta Tags, then click "Save Changes". It\'s that simple!', ALLMT_TEXT ); ?></p>
48
  </div>
49
  </div>
50
 
51
  <div id="help" class="postbox">
52
+ <h3 class="title"><?php _e( 'Help', ALLMT_TEXT ); ?></h3>
53
  <div class="inside">
54
+ <p><?php _e( 'Got something to say? Need help?', ALLMT_TEXT ); ?></p>
55
  <p><a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">arthurgareginyan@gmail.com</a></p>
56
  </div>
57
  </div>
58
 
59
  <div id="donate" class="postbox">
60
+ <h3 class="title"><?php _e( 'Donate', ALLMT_TEXT ); ?></h3>
61
  <div class="inside">
62
+ <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', ALLMT_TEXT ); ?></p>
63
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
64
  <img src="<?php echo plugins_url('../img/btn_donateCC_LG.gif', __FILE__); ?>" alt="Make a donation">
65
  </a>
66
+ <p><?php _e( 'Thanks for your support!', ALLMT_TEXT ); ?></p>
67
  </div>
68
  </div>
69
 
70
  <div id="advertisement" class="postbox">
71
+ <h3 class="title"><?php _e( 'Advertisement', ALLMT_TEXT ); ?></h3>
72
  <div class="inside">
73
  <a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=36439_5_1_21" target="_blank" rel="nofollow"><img style="border:0px" src="http://www.elegantthemes.com/affiliates/media/banners/divi_250x250.jpg" width="250" height="250" alt="Divi WordPress Theme"></a>
74
  </div>
88
  <?php settings_fields( 'allmetatags_settings_group' ); ?>
89
 
90
  <div class="postbox" id="WebMasterTools">
91
+ <h3 class="title"><?php _e( 'Web Master Tools', ALLMT_TEXT ); ?></h3>
92
  <div class="inside">
93
+ <p><?php _e( 'Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', ALLMT_TEXT ); ?></p>
94
  <table class="form-table">
95
  <?php allmetatags_field('google',
96
  'Google Webmaster Tools',
97
  '1234567890',
98
+ __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="google-site-verification" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
99
  'https://www.google.com/webmasters/verification/'); ?>
100
  <?php allmetatags_field('bing',
101
  'Bing Webmaster Tools',
102
  '1234567890',
103
+ __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="msvalidate.01" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
104
  'http://www.bing.com/webmaster/'); ?>
105
  <?php allmetatags_field('yandex',
106
  'Yandex Webmaster Tools',
107
  '1234567890',
108
+ __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="yandex-verification" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
109
  'https://webmaster.yandex.com'); ?>
110
  </table>
111
+ <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
112
  </div>
113
  </div>
114
 
115
  <div class="postbox" id="DomainVerification">
116
+ <h3 class="title"><?php _e( 'Domain Verification', ALLMT_TEXT ); ?></h3>
117
  <div class="inside">
118
+ <p><?php _e( 'Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', ALLMT_TEXT ); ?></p>
119
  <table class="form-table">
120
  <?php allmetatags_field('pinterest',
121
  'Pinterest',
122
  '1234567890',
123
+ __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="p:domain_verify" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
124
  'https://help.pinterest.com/en/articles/confirm-your-website'); ?>
125
  <?php allmetatags_field('google_author',
126
  'Google+',
127
  'https://plus.google.com/+ArthurGareginyan/',
128
+ __( 'Enter an absolute URL to the Google+ profile of the publisher. </br>Example: https://plus.google.com/+ArthurGareginyan/', ALLMT_TEXT ),
129
  'https://plus.google.com/'); ?>
130
  <?php allmetatags_field('facebook',
131
  'Facebook',
132
  'https://www.facebook.com/arthur.gareginyan',
133
+ __( 'Enter an absolute URL to the Facebook profile of the publisher. </br>Example: https://www.facebook.com/arthur.gareginyan', ALLMT_TEXT ),
134
  'https://www.facebook.com/'); ?>
135
  <?php allmetatags_field('twitter',
136
  'Twitter',
137
  '@AGareginyan',
138
+ __( 'Enter the Twitter username of the publisher. </br>Example: @AGareginyan', ALLMT_TEXT ),
139
  'https://twitter.com/'); ?>
140
  <?php allmetatags_field('alexa',
141
  'Alexa',
142
  '1234567890',
143
+ __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="alexaVerifyID" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
144
  'http://www.alexa.com/siteowners/claim'); ?>
145
  <?php allmetatags_field('norton',
146
  'Norton Safe Web',
147
  '1234567890',
148
+ __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
149
  'https://safeweb.norton.com/help/site_owners'); ?>
150
  <?php allmetatags_field('wot',
151
  'Web of Trust (WOT)',
152
  '1234567890',
153
+ __( 'Enter your meta key “content” value from your verification code to verify your website. </br>Example: &lt;meta name="wot-verification" content=“<b>1234567890</b>” /&gt;', ALLMT_TEXT ),
154
  'https://www.mywot.com/wiki/Verify_your_website'); ?>
155
  <?php allmetatags_field('custom_meta',
156
+ __( 'Custom Meta Tags', ALLMT_TEXT ),
157
  '&lt;meta name="google-site-verification" content=“1234567890” /&gt;',
158
+ __( 'If you can\'t find a field to enter your required meta tag then you can add it here. In this field you can add multiple meta tags.', ALLMT_TEXT ),
159
  '',
160
  'textarea'); ?>
161
  </table>
162
+ <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
163
  </div>
164
  </div>
165
 
166
  <div class="postbox" id="Home">
167
+ <h3 class="title"><?php _e( 'Meta Tags for Static Home Page only', ALLMT_TEXT ); ?></h3>
168
  <div class="inside">
169
+ <p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', ALLMT_TEXT ); ?></p>
170
  <table class="form-table">
171
  <?php allmetatags_field('home_description',
172
+ __( 'Home Description', ALLMT_TEXT ),
173
  'My website is about plants, nature, the sea and everything I love',
174
+ __( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ),
175
  '',
176
  'textarea'); ?>
177
  <?php allmetatags_field('home_keywords',
178
+ __( 'Home Keyword(s)', ALLMT_TEXT ),
179
  'blog, awesome, handmade, books, theater',
180
+ __( 'Enter a comma-delimited list of keywords for only Static Home Page of your website.', ALLMT_TEXT ),
181
  '',
182
  'textarea'); ?>
183
  </table>
184
+ <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
185
  </div>
186
  </div>
187
 
188
  <div class="postbox" id="Blog">
189
+ <h3 class="title"><?php _e( 'Meta Tags for Default Home Page and Blog Page only', ALLMT_TEXT ); ?></h3>
190
  <div class="inside">
191
+ <p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', ALLMT_TEXT ); ?></p>
192
  <table class="form-table">
193
  <?php allmetatags_field('blog_description',
194
+ __( 'Blog Description', ALLMT_TEXT ),
195
  'My blog is about plants, nature, the sea and everything I love',
196
+ __( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', ALLMT_TEXT ),
197
  '',
198
  'textarea'); ?>
199
  <?php allmetatags_field('blog_keywords',
200
+ __( 'Blog Keyword(s)', ALLMT_TEXT ),
201
  'blog, awesome, handmade, books, theater',
202
+ __( 'Enter a comma-delimited list of keywords for only Blog Page of your website.', ALLMT_TEXT ),
203
  '',
204
  'textarea'); ?>
205
  </table>
206
+ <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
207
  </div>
208
  </div>
209
 
210
  <div class="postbox" id="Everywhere">
211
+ <h3 class="title"><?php _e( 'Meta Tags for all website (Global)', ALLMT_TEXT ); ?></h3>
212
  <div class="inside">
213
+ <p><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', ALLMT_TEXT ); ?></p>
214
  <table class="form-table">
215
  <?php allmetatags_field('author',
216
+ __( 'Author', ALLMT_TEXT ),
217
  'Arthur Gareginyan',
218
  '',
219
  ''); ?>
220
  <?php allmetatags_field('designer',
221
+ __( 'Designer', ALLMT_TEXT ),
222
  'Arthur Gareginyan',
223
  '',
224
  ''); ?>
225
  <?php allmetatags_field('contact',
226
+ __( 'Contact', ALLMT_TEXT ),
227
  'arthurgareginyan@gmail.com',
228
  ''); ?>
229
  <?php allmetatags_field('copyright',
230
+ __( 'Copyright', ALLMT_TEXT ),
231
  'Copyright (c) 2013-2016 Arthur Gareginyan. All Rights Reserved.',
232
  ''); ?>
233
  <?php allmetatags_field('keywords',
234
+ __( 'Keyword(s)', ALLMT_TEXT ),
235
  'blog, awesome, handmade, books, theater',
236
+ __( 'Enter a comma-delimited list of global keywords for your website.', ALLMT_TEXT ),
237
  '',
238
  'textarea'); ?>
239
  </table>
240
+ <?php submit_button( __( 'Save Changes', ALLMT_TEXT ), 'primary', 'submit', true ); ?>
241
  </div>
242
  </div>
243
 
244
+ <div class="postbox" id="WooCommerce">
245
+ <h3 class="title"><?php _e( 'WooCommerce & Google Shopping', ALLMT_TEXT ); ?></h3>
246
  <div class="inside">
247
+ <p><?php _e( 'This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website. Here is the markup for women\'s T-shirt that sells for 16 dollars and 80 cents of US.', ALLMT_TEXT ); ?></p>
248
  <pre>&lt;div itemtype=&quot;http://schema.org/Product&quot; itemscope=&quot;&quot;&gt;
249
  &lt;meta itemprop=&quot;name&quot; content=&quot;Womens T-shirt&quot;&gt;
250
  &lt;meta itemprop=&quot;description&quot; content=&quot;Constructed in cotton sweat fabric, this lovely piece...&quot;&gt;
254
  &lt;meta itemprop=&quot;priceCurrency&quot; content=&quot;USD&quot;&gt;
255
  &lt;/div&gt;
256
  &lt;/div&gt;</pre>
257
+ <p><?php _e( 'Check these data generated on the pages of your website you can <a href="https://search.google.com/structured-data/testing-tool" target="_blank">here</a>.', ALLMT_TEXT ); ?></p>
258
  </div>
259
  </div>
260
 
languages/Readme.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+
2
+ CONTRIBUTING YOUR TRANSLATION
3
+
4
+ If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags).
5
+
6
+ Thanks for your contribution!
languages/all-meta-tags-es_MX.mo ADDED
Binary file
languages/all-meta-tags-es_MX.po ADDED
@@ -0,0 +1,346 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: All Meta Tags\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-10-16 12:15+0300\n"
6
+ "PO-Revision-Date: 2016-10-16 12:17+0300\n"
7
+ "Last-Translator: Sergio <srg2010@yahoo.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: es_MX\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Poedit 1.8.4\n"
16
+ "X-Poedit-Basepath: ..\n"
17
+ "X-Poedit-WPHeader: all-meta-tags.php\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
+ "X-Loco-Target-Locale: es_MX\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
26
+
27
+ #: all-meta-tags.php:73
28
+ msgid "Settings"
29
+ msgstr "Ajustes"
30
+
31
+ #. Plugin Name of the plugin/theme
32
+ #: all-meta-tags.php:85 inc/php/settings_page.php:24
33
+ msgid "All Meta Tags"
34
+ msgstr "Todos los Meta Tags"
35
+
36
+ #: inc/php/settings_page.php:27
37
+ msgid ""
38
+ "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
39
+ "Gareginyan</a>"
40
+ msgstr ""
41
+ "por <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
42
+ "Gareginyan</a>"
43
+
44
+ #: inc/php/settings_page.php:38
45
+ msgid "About"
46
+ msgstr "Acerca"
47
+
48
+ #: inc/php/settings_page.php:40
49
+ msgid "This plugin allows you to easily add Meta Tags to your website."
50
+ msgstr "Este plugin te permite agregar fácilmente Meta Tags a tu sitio web."
51
+
52
+ #: inc/php/settings_page.php:45
53
+ msgid "Using"
54
+ msgstr "Usando"
55
+
56
+ #: inc/php/settings_page.php:47
57
+ msgid ""
58
+ "To use, enter your custom Meta Tags, then click \"Save Changes\". It's that "
59
+ "simple!"
60
+ msgstr ""
61
+ "Para usar, ingrese el nombre de su Meta Tag, luego de click en \"Salvar "
62
+ "Cambios\". Es así de simple."
63
+
64
+ #: inc/php/settings_page.php:52
65
+ msgid "Help"
66
+ msgstr "Ayuda"
67
+
68
+ #: inc/php/settings_page.php:54
69
+ msgid "Got something to say? Need help?"
70
+ msgstr "Tiene algo que decir? Necesitas ayuda?"
71
+
72
+ #: inc/php/settings_page.php:60
73
+ msgid "Donate"
74
+ msgstr "Donar"
75
+
76
+ #: inc/php/settings_page.php:62
77
+ msgid ""
78
+ "I'm an independent developer, without a regular income, so every little "
79
+ "contribution helps cover my costs and lets me spend more time building "
80
+ "things for people like you to enjoy."
81
+ msgstr ""
82
+ "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este "
83
+ "plugin aún mejor y tenerlo actualizado."
84
+
85
+ #: inc/php/settings_page.php:66
86
+ msgid "Thanks for your support!"
87
+ msgstr "Gracias por su apoyo!"
88
+
89
+ #: inc/php/settings_page.php:71
90
+ msgid "Advertisement"
91
+ msgstr "Publicidad"
92
+
93
+ #: inc/php/settings_page.php:91
94
+ msgid "Web Master Tools"
95
+ msgstr "Herramientas para Web Master"
96
+
97
+ #: inc/php/settings_page.php:93
98
+ msgid ""
99
+ "Webmaster Tools require you to verify your domain. This makes sure that you "
100
+ "are the correct owner of your blog or store before they provide their "
101
+ "services to you. You can use the options below to verify your domain. If "
102
+ "your domain is already verified, you can just forget about these."
103
+ msgstr ""
104
+ "Herramientas para webmasters requieren que verifique su dominio. Esto se "
105
+ "asegura de que usted es el correcto propietario de su blog o tienda antes de "
106
+ "que prestan sus servicios a usted. Puede utilizar las opciones de abajo para "
107
+ "comprobar su dominio. Si su dominio ya está verificado, puede olvidarse de "
108
+ "ellas."
109
+
110
+ #: inc/php/settings_page.php:98
111
+ msgid ""
112
+ "Enter your meta key “content” value from your verification code to verify "
113
+ "your website. </br>Example: &lt;meta name=\"google-site-verification\" "
114
+ "content=“<b>1234567890</b>” /&gt;"
115
+ msgstr ""
116
+
117
+ #: inc/php/settings_page.php:103
118
+ msgid ""
119
+ "Enter your meta key “content” value from your verification code to verify "
120
+ "your website. </br>Example: &lt;meta name=\"msvalidate.01\" "
121
+ "content=“<b>1234567890</b>” /&gt;"
122
+ msgstr ""
123
+
124
+ #: inc/php/settings_page.php:108
125
+ msgid ""
126
+ "Enter your meta key “content” value from your verification code to verify "
127
+ "your website. </br>Example: &lt;meta name=\"yandex-verification\" "
128
+ "content=“<b>1234567890</b>” /&gt;"
129
+ msgstr ""
130
+
131
+ #: inc/php/settings_page.php:111 inc/php/settings_page.php:162
132
+ #: inc/php/settings_page.php:184 inc/php/settings_page.php:206
133
+ #: inc/php/settings_page.php:240
134
+ msgid "Save Changes"
135
+ msgstr "Guardar Cambios"
136
+
137
+ #: inc/php/settings_page.php:116
138
+ msgid "Domain Verification"
139
+ msgstr "Verificar Dominio"
140
+
141
+ #: inc/php/settings_page.php:118
142
+ msgid ""
143
+ "Third-party services like Alexa, Pinterest and Google-Plus require you to "
144
+ "verify your domain. This makes sure that you are the correct owner of your "
145
+ "blog or store before they provide their services to you. You can use the "
146
+ "options below to verify your domain. If your domain is already verified, you "
147
+ "can just forget about these."
148
+ msgstr ""
149
+ "Servicios de terceros como Alexa, Pinterest y Google-Plus requieren que "
150
+ "verifique su dominio. Esto se asegura de que usted es el correcto "
151
+ "propietario de su blog o tienda antes de que prestan sus servicios a usted. "
152
+ "Puede utilizar las opciones de abajo para comprobar su dominio. Si su "
153
+ "dominio ya está verificado, puede olvidarse de ellas."
154
+
155
+ #: inc/php/settings_page.php:123
156
+ msgid ""
157
+ "Enter your meta key “content” value from your verification code to verify "
158
+ "your website. </br>Example: &lt;meta name=\"p:domain_verify\" "
159
+ "content=“<b>1234567890</b>” /&gt;"
160
+ msgstr ""
161
+
162
+ #: inc/php/settings_page.php:128
163
+ msgid ""
164
+ "Enter an absolute URL to the Google+ profile of the publisher. </br>Example: "
165
+ "https://plus.google.com/+ArthurGareginyan/"
166
+ msgstr ""
167
+
168
+ #: inc/php/settings_page.php:133
169
+ msgid ""
170
+ "Enter an absolute URL to the Facebook profile of the publisher. </"
171
+ "br>Example: https://www.facebook.com/arthur.gareginyan"
172
+ msgstr ""
173
+
174
+ #: inc/php/settings_page.php:138
175
+ msgid "Enter the Twitter username of the publisher. </br>Example: @AGareginyan"
176
+ msgstr ""
177
+
178
+ #: inc/php/settings_page.php:143
179
+ msgid ""
180
+ "Enter your meta key “content” value from your verification code to verify "
181
+ "your website. </br>Example: &lt;meta name=\"alexaVerifyID\" "
182
+ "content=“<b>1234567890</b>” /&gt;"
183
+ msgstr ""
184
+
185
+ #: inc/php/settings_page.php:148
186
+ msgid ""
187
+ "Enter your meta key “content” value from your verification code to verify "
188
+ "your website. </br>Example: &lt;meta name=\"norton-safeweb-site-verification"
189
+ "\" content=“<b>1234567890</b>” /&gt;"
190
+ msgstr ""
191
+
192
+ #: inc/php/settings_page.php:153
193
+ msgid ""
194
+ "Enter your meta key “content” value from your verification code to verify "
195
+ "your website. </br>Example: &lt;meta name=\"wot-verification\" "
196
+ "content=“<b>1234567890</b>” /&gt;"
197
+ msgstr ""
198
+
199
+ #: inc/php/settings_page.php:156
200
+ msgid "Custom Meta Tags"
201
+ msgstr ""
202
+
203
+ #: inc/php/settings_page.php:158
204
+ msgid ""
205
+ "If you can't find a field to enter your required meta tag then you can add "
206
+ "it here. In this field you can add multiple meta tags."
207
+ msgstr ""
208
+
209
+ #: inc/php/settings_page.php:167
210
+ msgid "Meta Tags for Static Home Page only"
211
+ msgstr "Meta Tags solo para Paginas de Inicio estática"
212
+
213
+ #: inc/php/settings_page.php:169
214
+ msgid ""
215
+ "You can use the options below to add meta tags such as Description and "
216
+ "Keywords only in Static Home Page of your website."
217
+ msgstr ""
218
+ "Puede usar las opciones abajo para agregar meta tags, como Descripción y "
219
+ "palabras claves solo en Paginas de Inicio estática en su sitio web."
220
+
221
+ #: inc/php/settings_page.php:172
222
+ msgid "Home Description"
223
+ msgstr ""
224
+
225
+ #: inc/php/settings_page.php:174 inc/php/settings_page.php:196
226
+ msgid ""
227
+ "Enter a short description of your website (150-250 characters). Most search "
228
+ "engines use a maximum of 160 chars for the home description."
229
+ msgstr ""
230
+
231
+ #: inc/php/settings_page.php:178
232
+ msgid "Home Keyword(s)"
233
+ msgstr ""
234
+
235
+ #: inc/php/settings_page.php:180
236
+ msgid ""
237
+ "Enter a comma-delimited list of keywords for only Static Home Page of your "
238
+ "website."
239
+ msgstr ""
240
+
241
+ #: inc/php/settings_page.php:189
242
+ msgid "Meta Tags for Default Home Page and Blog Page only"
243
+ msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
244
+
245
+ #: inc/php/settings_page.php:191
246
+ msgid ""
247
+ "You can use the options below to add meta tags such as Description and "
248
+ "Keywords only in Default Home Page and Blog Page of your website."
249
+ msgstr ""
250
+ "Puede utilizar las opciones de abajo para agregar meta tags, tales como "
251
+ "descripción y palabras claves sólo en página principal predeterminada y Blog "
252
+ "página de su sitio web."
253
+
254
+ #: inc/php/settings_page.php:194
255
+ msgid "Blog Description"
256
+ msgstr ""
257
+
258
+ #: inc/php/settings_page.php:200
259
+ msgid "Blog Keyword(s)"
260
+ msgstr ""
261
+
262
+ #: inc/php/settings_page.php:202
263
+ msgid ""
264
+ "Enter a comma-delimited list of keywords for only Blog Page of your website."
265
+ msgstr ""
266
+
267
+ #: inc/php/settings_page.php:211
268
+ msgid "Meta Tags for all website (Global)"
269
+ msgstr "Meta Tags para todo el sitio web (Global)"
270
+
271
+ #: inc/php/settings_page.php:213
272
+ msgid ""
273
+ "You can use the options below to add meta tags such as Author, Copyright and "
274
+ "Keywords in everywhere on your website."
275
+ msgstr ""
276
+ "Puede usar las opciones abajo para agregar meta tags como Autor, Derecho "
277
+ "autor, palabras clavs en cualquier sitio de su pagina web."
278
+
279
+ #: inc/php/settings_page.php:216
280
+ msgid "Author"
281
+ msgstr ""
282
+
283
+ #: inc/php/settings_page.php:221
284
+ msgid "Designer"
285
+ msgstr ""
286
+
287
+ #: inc/php/settings_page.php:226
288
+ msgid "Contact"
289
+ msgstr ""
290
+
291
+ #: inc/php/settings_page.php:230
292
+ msgid "Copyright"
293
+ msgstr ""
294
+
295
+ #: inc/php/settings_page.php:234
296
+ msgid "Keyword(s)"
297
+ msgstr ""
298
+
299
+ #: inc/php/settings_page.php:236
300
+ msgid "Enter a comma-delimited list of global keywords for your website."
301
+ msgstr ""
302
+
303
+ #: inc/php/settings_page.php:245
304
+ msgid "WooCommerce & Google Shopping"
305
+ msgstr ""
306
+
307
+ #: inc/php/settings_page.php:247
308
+ msgid ""
309
+ "This plugin automatically adds the necessary Google Shopping (Merchant "
310
+ "Center) structured data on all WooCommerce product pages on your website. "
311
+ "Here is the markup for women's T-shirt that sells for 16 dollars and 80 "
312
+ "cents of US."
313
+ msgstr ""
314
+
315
+ #: inc/php/settings_page.php:257
316
+ msgid ""
317
+ "Check these data generated on the pages of your website you can <a href="
318
+ "\"https://search.google.com/structured-data/testing-tool\" target=\"_blank"
319
+ "\">here</a>."
320
+ msgstr ""
321
+
322
+ #. Plugin URI of the plugin/theme
323
+ msgid "https://github.com/ArthurGareginyan/all-meta-tags"
324
+ msgstr ""
325
+
326
+ #. Description of the plugin/theme
327
+ msgid ""
328
+ "Easily and safely add your custom Meta Tags to WordPress website's header."
329
+ msgstr ""
330
+ "La forma más fácil y segura para agregar Meta Tags a la cabecera de tu sitio "
331
+ "WordPress."
332
+
333
+ #. Author of the plugin/theme
334
+ msgid "Arthur Gareginyan"
335
+ msgstr ""
336
+
337
+ #. Author URI of the plugin/theme
338
+ msgid "http://www.arthurgareginyan.com"
339
+ msgstr ""
340
+
341
+ #~ msgid ""
342
+ #~ "If you like this plugin and find it useful, please help me to make this "
343
+ #~ "plugin even better and keep it up-to-date."
344
+ #~ msgstr ""
345
+ #~ "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer "
346
+ #~ "este plugin aún mejor y tenerlo actualizado."
languages/all-meta-tags-ru_RU.mo CHANGED
Binary file
languages/all-meta-tags-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
- "POT-Creation-Date: 2016-09-06 10:52+0300\n"
5
- "PO-Revision-Date: 2016-09-06 10:54+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -21,12 +21,12 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: all-meta-tags.php:72
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
28
  #. Plugin Name of the plugin/theme
29
- #: all-meta-tags.php:84 inc/php/settings_page.php:24
30
  msgid "All Meta Tags"
31
  msgstr ""
32
 
@@ -40,7 +40,7 @@ msgstr ""
40
 
41
  #: inc/php/settings_page.php:38
42
  msgid "About"
43
- msgstr "О платине"
44
 
45
  #: inc/php/settings_page.php:40
46
  msgid "This plugin allows you to easily add Meta Tags to your website."
@@ -48,7 +48,7 @@ msgstr "Этот плагин позволяет легко добавлять
48
 
49
  #: inc/php/settings_page.php:45
50
  msgid "Using"
51
- msgstr "Использование:"
52
 
53
  #: inc/php/settings_page.php:47
54
  msgid ""
@@ -68,15 +68,17 @@ msgstr "Есть что сказать? Нужна помощь?"
68
 
69
  #: inc/php/settings_page.php:60
70
  msgid "Donate"
71
- msgstr "Пожертвование"
72
 
73
  #: inc/php/settings_page.php:62
74
  msgid ""
75
- "If you like this plugin and find it useful, please help me to make this "
76
- "plugin even better and keep it up-to-date."
 
77
  msgstr ""
78
- "Если вам нравится этот плагин и вы находите его полезным, то пожалуйста "
79
- "помогите мне сделать его ещё лучше."
 
80
 
81
  #: inc/php/settings_page.php:66
82
  msgid "Thanks for your support!"
@@ -127,7 +129,7 @@ msgstr "Сохранить изменения"
127
 
128
  #: inc/php/settings_page.php:116
129
  msgid "Domain Verification"
130
- msgstr "Проверка домена"
131
 
132
  #: inc/php/settings_page.php:118
133
  msgid ""
@@ -191,6 +193,8 @@ msgid ""
191
  "If you can't find a field to enter your required meta tag then you can add "
192
  "it here. In this field you can add multiple meta tags."
193
  msgstr ""
 
 
194
 
195
  #: inc/php/settings_page.php:167
196
  msgid "Meta Tags for Static Home Page only"
@@ -269,7 +273,7 @@ msgstr "Контакты"
269
 
270
  #: inc/php/settings_page.php:230
271
  msgid "Copyright"
272
- msgstr "Правообладатель"
273
 
274
  #: inc/php/settings_page.php:234
275
  msgid "Keyword(s)"
@@ -278,10 +282,12 @@ msgstr "Ключевые слова"
278
  #: inc/php/settings_page.php:236
279
  msgid "Enter a comma-delimited list of global keywords for your website."
280
  msgstr ""
 
 
281
 
282
  #: inc/php/settings_page.php:245
283
- msgid "WooCommerse & Google Shopping"
284
- msgstr "WooCommerse и Google Shopping"
285
 
286
  #: inc/php/settings_page.php:247
287
  msgid ""
@@ -322,6 +328,16 @@ msgstr "Артур Гарегинян"
322
  msgid "http://www.arthurgareginyan.com"
323
  msgstr ""
324
 
 
 
 
 
 
 
 
 
 
 
325
  #~ msgid "Advertising"
326
  #~ msgstr "Реклама"
327
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: All Meta Tags\n"
4
+ "POT-Creation-Date: 2016-10-10 01:30+0300\n"
5
+ "PO-Revision-Date: 2016-10-10 01:30+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: all-meta-tags.php:73
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
28
  #. Plugin Name of the plugin/theme
29
+ #: all-meta-tags.php:85 inc/php/settings_page.php:24
30
  msgid "All Meta Tags"
31
  msgstr ""
32
 
40
 
41
  #: inc/php/settings_page.php:38
42
  msgid "About"
43
+ msgstr "О плагине"
44
 
45
  #: inc/php/settings_page.php:40
46
  msgid "This plugin allows you to easily add Meta Tags to your website."
48
 
49
  #: inc/php/settings_page.php:45
50
  msgid "Using"
51
+ msgstr "Как пользоваться"
52
 
53
  #: inc/php/settings_page.php:47
54
  msgid ""
68
 
69
  #: inc/php/settings_page.php:60
70
  msgid "Donate"
71
+ msgstr "Поддержать разработку"
72
 
73
  #: inc/php/settings_page.php:62
74
  msgid ""
75
+ "I'm an independent developer, without a regular income, so every little "
76
+ "contribution helps cover my costs and lets me spend more time building "
77
+ "things for people like you to enjoy."
78
  msgstr ""
79
+ "Я независимый разработчик, без регулярного дохода, так что каждый маленький "
80
+ "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
81
+ "создание программ для людей как вы."
82
 
83
  #: inc/php/settings_page.php:66
84
  msgid "Thanks for your support!"
129
 
130
  #: inc/php/settings_page.php:116
131
  msgid "Domain Verification"
132
+ msgstr "Подтверждение домена"
133
 
134
  #: inc/php/settings_page.php:118
135
  msgid ""
193
  "If you can't find a field to enter your required meta tag then you can add "
194
  "it here. In this field you can add multiple meta tags."
195
  msgstr ""
196
+ "Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-"
197
+ "тег сюда. В это поле вы можете добавить несколько мета-тегов."
198
 
199
  #: inc/php/settings_page.php:167
200
  msgid "Meta Tags for Static Home Page only"
273
 
274
  #: inc/php/settings_page.php:230
275
  msgid "Copyright"
276
+ msgstr "Copyright"
277
 
278
  #: inc/php/settings_page.php:234
279
  msgid "Keyword(s)"
282
  #: inc/php/settings_page.php:236
283
  msgid "Enter a comma-delimited list of global keywords for your website."
284
  msgstr ""
285
+ "Введите, разделенный запятыми, список глобальных ключевых слов для вашего "
286
+ "веб-сайта."
287
 
288
  #: inc/php/settings_page.php:245
289
+ msgid "WooCommerce & Google Shopping"
290
+ msgstr "WooCommerce и Google Shopping"
291
 
292
  #: inc/php/settings_page.php:247
293
  msgid ""
328
  msgid "http://www.arthurgareginyan.com"
329
  msgstr ""
330
 
331
+ #~ msgid "WooCommerse & Google Shopping"
332
+ #~ msgstr "WooCommerse и Google Shopping"
333
+
334
+ #~ msgid ""
335
+ #~ "If you like this plugin and find it useful, please help me to make this "
336
+ #~ "plugin even better and keep it up-to-date."
337
+ #~ msgstr ""
338
+ #~ "Если вам нравится этот плагин и вы находите его полезным, то пожалуйста "
339
+ #~ "помогите мне сделать его ещё лучше."
340
+
341
  #~ msgid "Advertising"
342
  #~ msgstr "Реклама"
343
 
languages/all-meta-tags.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
- "POT-Creation-Date: 2016-09-06 10:52+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -20,12 +20,12 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: all-meta-tags.php:72
24
  msgid "Settings"
25
  msgstr ""
26
 
27
  #. Plugin Name of the plugin/theme
28
- #: all-meta-tags.php:84 inc/php/settings_page.php:24
29
  msgid "All Meta Tags"
30
  msgstr ""
31
 
@@ -67,8 +67,9 @@ msgstr ""
67
 
68
  #: inc/php/settings_page.php:62
69
  msgid ""
70
- "If you like this plugin and find it useful, please help me to make this "
71
- "plugin even better and keep it up-to-date."
 
72
  msgstr ""
73
 
74
  #: inc/php/settings_page.php:66
@@ -274,7 +275,7 @@ msgid "Enter a comma-delimited list of global keywords for your website."
274
  msgstr ""
275
 
276
  #: inc/php/settings_page.php:245
277
- msgid "WooCommerse & Google Shopping"
278
  msgstr ""
279
 
280
  #: inc/php/settings_page.php:247
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: All Meta Tags\n"
6
+ "POT-Creation-Date: 2016-10-10 01:30+0300\n"
7
  "PO-Revision-Date: 2015-10-28 13:57+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
+ #: all-meta-tags.php:73
24
  msgid "Settings"
25
  msgstr ""
26
 
27
  #. Plugin Name of the plugin/theme
28
+ #: all-meta-tags.php:85 inc/php/settings_page.php:24
29
  msgid "All Meta Tags"
30
  msgstr ""
31
 
67
 
68
  #: inc/php/settings_page.php:62
69
  msgid ""
70
+ "I'm an independent developer, without a regular income, so every little "
71
+ "contribution helps cover my costs and lets me spend more time building "
72
+ "things for people like you to enjoy."
73
  msgstr ""
74
 
75
  #: inc/php/settings_page.php:66
275
  msgstr ""
276
 
277
  #: inc/php/settings_page.php:245
278
+ msgid "WooCommerce & Google Shopping"
279
  msgstr ""
280
 
281
  #: inc/php/settings_page.php:247
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: meta, tag,tags, custom, simple, plugin, twitter, facebook, g+, google, goo
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.6
7
- Stable tag: 3.3
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -57,6 +57,7 @@ Please keep in mind that not all translations are up to date. You are welcome to
57
 
58
  * English (default)
59
  * Russian
 
60
 
61
  >**Contribution**
62
  >
@@ -72,17 +73,17 @@ Install "All Meta Tags" just as you would any other WordPress Plugin.
72
 
73
  Automatically via WordPress:
74
 
75
- 1. Log into WordPress Dashboard of your website.
76
- 2. Go to "`Plugins`" —> "`add new plugins`".
77
  3. Find this plugin and click install.
78
  4. Activate this plugin through the "`Plugins`" tab.
79
 
80
  Manual via FTP:
81
 
82
- 1. Download a copy (zip file) of this plugin from WordPress.org.
83
- 2. Unzip the zip file.
84
- 3. Upload the unzipped directory to your website's plugin directory (`/wp-content/plugins/`).
85
- 4. Log into WordPress Dashboard of your website.
86
  5. Activate this plugin through the "`Plugins`" tab.
87
 
88
  After installation, a "`All Meta Tags`" menu item will appear in the "`Settings`" section. Click on this in order to view plugin's administration page.
@@ -91,7 +92,7 @@ After installation, a "`All Meta Tags`" menu item will appear in the "`Settings
91
 
92
 
93
  == Frequently Asked Questions ==
94
- = Q. Will this Plugin work on my WordPress.COM website? =
95
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.org) websites.
96
 
97
  = Q. Can I use this plugin on my language? =
@@ -157,6 +158,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
157
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
158
 
159
  == Changelog ==
 
 
 
 
 
160
  = 3.3 =
161
  * Added an option for automatic adding the Google Shopping structured data on all WooCommerce product pages. (Thanks to Juliano Dias for the suggestion and help)
162
  * Russian translation updated.
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.6
7
+ Stable tag: 3.4
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
57
 
58
  * English (default)
59
  * Russian
60
+ * Spanish (translation by Sergio Yeyo Troncoso)
61
 
62
  >**Contribution**
63
  >
73
 
74
  Automatically via WordPress:
75
 
76
+ 1. Log into Dashboard of your WordPress website.
77
+ 2. Go to "`Plugins`" —> "`Add New`".
78
  3. Find this plugin and click install.
79
  4. Activate this plugin through the "`Plugins`" tab.
80
 
81
  Manual via FTP:
82
 
83
+ 1. Download a copy (ZIP file) of this plugin from WordPress.org.
84
+ 2. Unzip the ZIP file.
85
+ 3. Upload the unzipped catalog to your website's plugin directory (`/wp-content/plugins/`).
86
+ 4. Log into Dashboard of your WordPress website.
87
  5. Activate this plugin through the "`Plugins`" tab.
88
 
89
  After installation, a "`All Meta Tags`" menu item will appear in the "`Settings`" section. Click on this in order to view plugin's administration page.
92
 
93
 
94
  == Frequently Asked Questions ==
95
+ = Q. Will this plugin work on my WordPress.COM website? =
96
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.org) websites.
97
 
98
  = Q. Can I use this plugin on my language? =
158
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
159
 
160
  == Changelog ==
161
+ = 3.4 =
162
+ * Added Spanish translation. (Thanks to Sergio Yeyo Troncoso for the translation)
163
+ * Russian translation updated.
164
+ * Added the Readme.txt file for translation contribution.
165
+ * Added global constant for plugin text-domain.
166
  = 3.3 =
167
  * Added an option for automatic adding the Google Shopping structured data on all WooCommerce product pages. (Thanks to Juliano Dias for the suggestion and help)
168
  * Russian translation updated.