Version Description
- Added field for custom meta tags. (Thanks to Juliano Dias for the suggestion)
- Ready for translation improved.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | All Meta Tags |
Version | 3.2 |
Comparing to | |
See all releases |
Code changes from version 3.1 to 3.2
- all-meta-tags.php +8 -4
- inc/php/settings_page.php +50 -44
- languages/all-meta-tags-ru_RU.mo +0 -0
- languages/all-meta-tags-ru_RU.po +160 -28
- languages/all-meta-tags.pot +160 -27
- readme.txt +6 -2
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.
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
@@ -126,7 +126,7 @@ add_action( 'admin_init', 'allmetatags_register_settings' );
|
|
126 |
/**
|
127 |
* Render fields
|
128 |
*
|
129 |
-
* @since
|
130 |
*/
|
131 |
function allmetatags_field($name, $label, $placeholder, $help=null, $link=null, $textarea=null) {
|
132 |
|
@@ -134,7 +134,7 @@ function allmetatags_field($name, $label, $placeholder, $help=null, $link=null,
|
|
134 |
$options = get_option( 'allmetatags_settings' );
|
135 |
|
136 |
if ( !empty($options[$name]) ) :
|
137 |
-
$value =
|
138 |
else :
|
139 |
$value = "";
|
140 |
endif;
|
@@ -181,7 +181,7 @@ function allmetatags_field($name, $label, $placeholder, $help=null, $link=null,
|
|
181 |
/**
|
182 |
* Generate the Meta Tags
|
183 |
*
|
184 |
-
* @since
|
185 |
*/
|
186 |
function allmetatags_add_meta_tags() {
|
187 |
|
@@ -199,6 +199,7 @@ function allmetatags_add_meta_tags() {
|
|
199 |
$twitter = esc_textarea( $options['twitter'] );
|
200 |
$norton = esc_textarea( $options['norton'] );
|
201 |
$wot = esc_textarea( $options['wot'] );
|
|
|
202 |
|
203 |
$home_description = esc_textarea( $options['home_description'] );
|
204 |
$home_keywords = esc_textarea( $options['home_keywords'] );
|
@@ -248,6 +249,9 @@ function allmetatags_add_meta_tags() {
|
|
248 |
if (!empty($wot)) {
|
249 |
$metatags_arr[] = "<meta name='wot-verification' content='$wot' />";
|
250 |
}
|
|
|
|
|
|
|
251 |
|
252 |
// Meta Tags for specific pages
|
253 |
if ( is_front_page() && is_home() ) {
|
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.2
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
126 |
/**
|
127 |
* Render fields
|
128 |
*
|
129 |
+
* @since 3.2
|
130 |
*/
|
131 |
function allmetatags_field($name, $label, $placeholder, $help=null, $link=null, $textarea=null) {
|
132 |
|
134 |
$options = get_option( 'allmetatags_settings' );
|
135 |
|
136 |
if ( !empty($options[$name]) ) :
|
137 |
+
$value = esc_attr( $options[$name] );
|
138 |
else :
|
139 |
$value = "";
|
140 |
endif;
|
181 |
/**
|
182 |
* Generate the Meta Tags
|
183 |
*
|
184 |
+
* @since 3.2
|
185 |
*/
|
186 |
function allmetatags_add_meta_tags() {
|
187 |
|
199 |
$twitter = esc_textarea( $options['twitter'] );
|
200 |
$norton = esc_textarea( $options['norton'] );
|
201 |
$wot = esc_textarea( $options['wot'] );
|
202 |
+
$custom_meta = $options['custom_meta'];
|
203 |
|
204 |
$home_description = esc_textarea( $options['home_description'] );
|
205 |
$home_keywords = esc_textarea( $options['home_keywords'] );
|
249 |
if (!empty($wot)) {
|
250 |
$metatags_arr[] = "<meta name='wot-verification' content='$wot' />";
|
251 |
}
|
252 |
+
if (!empty($custom_meta)) {
|
253 |
+
$metatags_arr[] = $custom_meta;
|
254 |
+
}
|
255 |
|
256 |
// Meta Tags for specific pages
|
257 |
if ( is_front_page() && is_home() ) {
|
inc/php/settings_page.php
CHANGED
@@ -10,7 +10,7 @@ defined('ABSPATH') or die("Restricted access!");
|
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
-
* @since 3.
|
14 |
*/
|
15 |
function allmetatags_render_submenu_page() {
|
16 |
|
@@ -95,18 +95,18 @@ function allmetatags_render_submenu_page() {
|
|
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: <meta name="google-site-verification" content=“<b>1234567890</b>” />',
|
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: <meta name="msvalidate.01" content=“<b>1234567890</b>” />',
|
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: <meta name="yandex-verification" content=“<b>1234567890</b>” />',
|
109 |
-
'https://webmaster.yandex.com')
|
110 |
</table>
|
111 |
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
112 |
</div>
|
@@ -120,38 +120,44 @@ function allmetatags_render_submenu_page() {
|
|
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: <meta name="p:domain_verify" content=“<b>1234567890</b>” />',
|
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/',
|
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',
|
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',
|
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: <meta name="alexaVerifyID" content=“<b>1234567890</b>” />',
|
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: <meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” />',
|
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: <meta name="wot-verification" content=“<b>1234567890</b>” />',
|
154 |
-
'https://www.mywot.com/wiki/Verify_your_website')
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
</table>
|
156 |
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
157 |
</div>
|
@@ -163,17 +169,17 @@ function allmetatags_render_submenu_page() {
|
|
163 |
<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>
|
164 |
<table class="form-table">
|
165 |
<?php allmetatags_field('home_description',
|
166 |
-
'Home Description',
|
167 |
'My website is about plants, nature, the sea and everything I love',
|
168 |
-
'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.',
|
169 |
'',
|
170 |
-
'textarea')
|
171 |
<?php allmetatags_field('home_keywords',
|
172 |
-
'Home Keyword(s)',
|
173 |
'blog, awesome, handmade, books, theater',
|
174 |
-
'Enter a comma-delimited list of keywords for only Static Home Page of your website.',
|
175 |
'',
|
176 |
-
'textarea')
|
177 |
</table>
|
178 |
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
179 |
</div>
|
@@ -185,17 +191,17 @@ function allmetatags_render_submenu_page() {
|
|
185 |
<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>
|
186 |
<table class="form-table">
|
187 |
<?php allmetatags_field('blog_description',
|
188 |
-
'Blog Description',
|
189 |
'My blog is about plants, nature, the sea and everything I love',
|
190 |
-
'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.',
|
191 |
'',
|
192 |
-
'textarea')
|
193 |
<?php allmetatags_field('blog_keywords',
|
194 |
-
'Blog Keyword(s)',
|
195 |
'blog, awesome, handmade, books, theater',
|
196 |
-
'Enter a comma-delimited list of keywords for only Blog Page of your website.',
|
197 |
'',
|
198 |
-
'textarea')
|
199 |
</table>
|
200 |
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
201 |
</div>
|
@@ -207,29 +213,29 @@ function allmetatags_render_submenu_page() {
|
|
207 |
<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>
|
208 |
<table class="form-table">
|
209 |
<?php allmetatags_field('author',
|
210 |
-
'Author',
|
211 |
'Arthur Gareginyan',
|
212 |
'',
|
213 |
-
'')
|
214 |
<?php allmetatags_field('designer',
|
215 |
-
'Designer',
|
216 |
'Arthur Gareginyan',
|
217 |
'',
|
218 |
-
'')
|
219 |
<?php allmetatags_field('contact',
|
220 |
-
'Contact',
|
221 |
'arthurgareginyan@gmail.com',
|
222 |
-
'')
|
223 |
<?php allmetatags_field('copyright',
|
224 |
-
'Copyright',
|
225 |
'Copyright (c) 2013-2016 Arthur Gareginyan. All Rights Reserved.',
|
226 |
-
'')
|
227 |
<?php allmetatags_field('keywords',
|
228 |
-
'Keyword(s)',
|
229 |
'blog, awesome, handmade, books, theater',
|
230 |
-
'Enter a comma-delimited list of global keywords for your website.',
|
231 |
'',
|
232 |
-
'textarea')
|
233 |
</table>
|
234 |
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
235 |
</div>
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
+
* @since 3.2
|
14 |
*/
|
15 |
function allmetatags_render_submenu_page() {
|
16 |
|
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: <meta name="google-site-verification" content=“<b>1234567890</b>” />', '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: <meta name="msvalidate.01" content=“<b>1234567890</b>” />', '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: <meta name="yandex-verification" content=“<b>1234567890</b>” />', 'all-meta-tags' ),
|
109 |
+
'https://webmaster.yandex.com'); ?>
|
110 |
</table>
|
111 |
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
112 |
</div>
|
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: <meta name="p:domain_verify" content=“<b>1234567890</b>” />', '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: <meta name="alexaVerifyID" content=“<b>1234567890</b>” />', '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: <meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” />', '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: <meta name="wot-verification" content=“<b>1234567890</b>” />', '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 |
+
'<meta name="google-site-verification" content=“1234567890” />',
|
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>
|
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>
|
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>
|
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>
|
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-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
@@ -21,16 +21,16 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
-
#: all-meta-tags.php:
|
25 |
msgid "Settings"
|
26 |
msgstr "Настройки"
|
27 |
|
28 |
#. Plugin Name of the plugin/theme
|
29 |
-
#: all-meta-tags.php:
|
30 |
msgid "All Meta Tags"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: inc/settings_page.php:27
|
34 |
msgid ""
|
35 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
36 |
"Gareginyan</a>"
|
@@ -38,19 +38,19 @@ msgstr ""
|
|
38 |
"от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
|
39 |
"Гарегинян</a>"
|
40 |
|
41 |
-
#: inc/settings_page.php:38
|
42 |
msgid "About"
|
43 |
msgstr "О платине"
|
44 |
|
45 |
-
#: inc/settings_page.php:40
|
46 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
47 |
msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
|
48 |
|
49 |
-
#: inc/settings_page.php:45
|
50 |
msgid "Using"
|
51 |
msgstr "Использование:"
|
52 |
|
53 |
-
#: inc/settings_page.php:47
|
54 |
msgid ""
|
55 |
"To use, enter your custom Meta Tags, then click \"Save Changes\". It's that "
|
56 |
"simple!"
|
@@ -58,19 +58,19 @@ msgstr ""
|
|
58 |
"Для использования, введите данные ваших Мета-Тегов, затем нажмите кнопку "
|
59 |
"“Сохранить изменения”. Это так просто!"
|
60 |
|
61 |
-
#: inc/settings_page.php:52
|
62 |
msgid "Help"
|
63 |
msgstr "Помощь"
|
64 |
|
65 |
-
#: inc/settings_page.php:54
|
66 |
msgid "Got something to say? Need help?"
|
67 |
msgstr "Есть что сказать? Нужна помощь?"
|
68 |
|
69 |
-
#: inc/settings_page.php:60
|
70 |
msgid "Donate"
|
71 |
msgstr "Пожертвование"
|
72 |
|
73 |
-
#: inc/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."
|
@@ -78,19 +78,19 @@ msgstr ""
|
|
78 |
"Если вам нравится этот плагин и вы находите его полезным, то пожалуйста "
|
79 |
"помогите мне сделать его ещё лучше."
|
80 |
|
81 |
-
#: inc/settings_page.php:66
|
82 |
msgid "Thanks for your support!"
|
83 |
msgstr "Спасибо за вашу поддержку!"
|
84 |
|
85 |
-
#: inc/settings_page.php:71
|
86 |
msgid "Advertisement"
|
87 |
msgstr "Реклама"
|
88 |
|
89 |
-
#: inc/settings_page.php:91
|
90 |
msgid "Web Master Tools"
|
91 |
msgstr "Веб-мастер инструменты"
|
92 |
|
93 |
-
#: inc/settings_page.php:93
|
94 |
msgid ""
|
95 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
96 |
"are the correct owner of your blog or store before they provide their "
|
@@ -98,17 +98,38 @@ msgid ""
|
|
98 |
"your domain is already verified, you can just forget about these."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/
|
102 |
-
|
103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
msgid "Save Changes"
|
105 |
msgstr "Сохранить изменения"
|
106 |
|
107 |
-
#: inc/settings_page.php:116
|
108 |
msgid "Domain Verification"
|
109 |
msgstr "Проверка домена"
|
110 |
|
111 |
-
#: inc/settings_page.php:118
|
112 |
msgid ""
|
113 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
114 |
"verify your domain. This makes sure that you are the correct owner of your "
|
@@ -117,36 +138,147 @@ msgid ""
|
|
117 |
"can just forget about these."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
msgid "Meta Tags for Static Home Page only"
|
122 |
msgstr "Мета-теги только для Static Home Page"
|
123 |
|
124 |
-
#: inc/settings_page.php:
|
125 |
msgid ""
|
126 |
"You can use the options below to add meta tags such as Description and "
|
127 |
"Keywords only in Static Home Page of your website."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
132 |
msgstr "Мета-теги для Default Home Page и только Blog Page"
|
133 |
|
134 |
-
#: inc/settings_page.php:
|
135 |
msgid ""
|
136 |
"You can use the options below to add meta tags such as Description and "
|
137 |
"Keywords only in Default Home Page and Blog Page of your website."
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
msgid "Meta Tags for all website (Global)"
|
142 |
msgstr "Мета-теги для всего веб-сайта (Глобальные)"
|
143 |
|
144 |
-
#: inc/settings_page.php:
|
145 |
msgid ""
|
146 |
"You can use the options below to add meta tags such as Author, Copyright and "
|
147 |
"Keywords in everywhere on your website."
|
148 |
msgstr ""
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
#. Plugin URI of the plugin/theme
|
151 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
152 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
+
"POT-Creation-Date: 2016-09-04 14:30+0300\n"
|
5 |
+
"PO-Revision-Date: 2016-09-04 14: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: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 |
|
33 |
+
#: inc/php/settings_page.php:27
|
34 |
msgid ""
|
35 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
36 |
"Gareginyan</a>"
|
38 |
"от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
|
39 |
"Гарегинян</a>"
|
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."
|
47 |
msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
|
48 |
|
49 |
+
#: inc/php/settings_page.php:45
|
50 |
msgid "Using"
|
51 |
msgstr "Использование:"
|
52 |
|
53 |
+
#: inc/php/settings_page.php:47
|
54 |
msgid ""
|
55 |
"To use, enter your custom Meta Tags, then click \"Save Changes\". It's that "
|
56 |
"simple!"
|
58 |
"Для использования, введите данные ваших Мета-Тегов, затем нажмите кнопку "
|
59 |
"“Сохранить изменения”. Это так просто!"
|
60 |
|
61 |
+
#: inc/php/settings_page.php:52
|
62 |
msgid "Help"
|
63 |
msgstr "Помощь"
|
64 |
|
65 |
+
#: inc/php/settings_page.php:54
|
66 |
msgid "Got something to say? Need help?"
|
67 |
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."
|
78 |
"Если вам нравится этот плагин и вы находите его полезным, то пожалуйста "
|
79 |
"помогите мне сделать его ещё лучше."
|
80 |
|
81 |
+
#: inc/php/settings_page.php:66
|
82 |
msgid "Thanks for your support!"
|
83 |
msgstr "Спасибо за вашу поддержку!"
|
84 |
|
85 |
+
#: inc/php/settings_page.php:71
|
86 |
msgid "Advertisement"
|
87 |
msgstr "Реклама"
|
88 |
|
89 |
+
#: inc/php/settings_page.php:91
|
90 |
msgid "Web Master Tools"
|
91 |
msgstr "Веб-мастер инструменты"
|
92 |
|
93 |
+
#: inc/php/settings_page.php:93
|
94 |
msgid ""
|
95 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
96 |
"are the correct owner of your blog or store before they provide their "
|
98 |
"your domain is already verified, you can just forget about these."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: inc/php/settings_page.php:98
|
102 |
+
msgid ""
|
103 |
+
"Enter your meta key “content” value from your verification code to verify "
|
104 |
+
"your website. </br>Example: <meta name=\"google-site-verification\" "
|
105 |
+
"content=“<b>1234567890</b>” />"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: inc/php/settings_page.php:103
|
109 |
+
msgid ""
|
110 |
+
"Enter your meta key “content” value from your verification code to verify "
|
111 |
+
"your website. </br>Example: <meta name=\"msvalidate.01\" "
|
112 |
+
"content=“<b>1234567890</b>” />"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: inc/php/settings_page.php:108
|
116 |
+
msgid ""
|
117 |
+
"Enter your meta key “content” value from your verification code to verify "
|
118 |
+
"your website. </br>Example: <meta name=\"yandex-verification\" "
|
119 |
+
"content=“<b>1234567890</b>” />"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: inc/php/settings_page.php:111 inc/php/settings_page.php:162
|
123 |
+
#: inc/php/settings_page.php:184 inc/php/settings_page.php:206
|
124 |
+
#: inc/php/settings_page.php:240
|
125 |
msgid "Save Changes"
|
126 |
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 ""
|
134 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
135 |
"verify your domain. This makes sure that you are the correct owner of your "
|
138 |
"can just forget about these."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: inc/php/settings_page.php:123
|
142 |
+
msgid ""
|
143 |
+
"Enter your meta key “content” value from your verification code to verify "
|
144 |
+
"your website. </br>Example: <meta name=\"p:domain_verify\" "
|
145 |
+
"content=“<b>1234567890</b>” />"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: inc/php/settings_page.php:128
|
149 |
+
msgid ""
|
150 |
+
"Enter an absolute URL to the Google+ profile of the publisher. </br>Example: "
|
151 |
+
"https://plus.google.com/+ArthurGareginyan/"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: inc/php/settings_page.php:133
|
155 |
+
msgid ""
|
156 |
+
"Enter an absolute URL to the Facebook profile of the publisher. </"
|
157 |
+
"br>Example: https://www.facebook.com/arthur.gareginyan"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/settings_page.php:138
|
161 |
+
msgid "Enter the Twitter username of the publisher. </br>Example: @AGareginyan"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/php/settings_page.php:143
|
165 |
+
msgid ""
|
166 |
+
"Enter your meta key “content” value from your verification code to verify "
|
167 |
+
"your website. </br>Example: <meta name=\"alexaVerifyID\" "
|
168 |
+
"content=“<b>1234567890</b>” />"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: inc/php/settings_page.php:148
|
172 |
+
msgid ""
|
173 |
+
"Enter your meta key “content” value from your verification code to verify "
|
174 |
+
"your website. </br>Example: <meta name=\"norton-safeweb-site-verification"
|
175 |
+
"\" content=“<b>1234567890</b>” />"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: inc/php/settings_page.php:153
|
179 |
+
msgid ""
|
180 |
+
"Enter your meta key “content” value from your verification code to verify "
|
181 |
+
"your website. </br>Example: <meta name=\"wot-verification\" "
|
182 |
+
"content=“<b>1234567890</b>” />"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: inc/php/settings_page.php:156
|
186 |
+
msgid "Custom Meta Tags"
|
187 |
+
msgstr "Пользовательские мета-теги"
|
188 |
+
|
189 |
+
#: inc/php/settings_page.php:158
|
190 |
+
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"
|
197 |
msgstr "Мета-теги только для Static Home Page"
|
198 |
|
199 |
+
#: inc/php/settings_page.php:169
|
200 |
msgid ""
|
201 |
"You can use the options below to add meta tags such as Description and "
|
202 |
"Keywords only in Static Home Page of your website."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: inc/php/settings_page.php:172
|
206 |
+
msgid "Home Description"
|
207 |
+
msgstr "Описание главной страницы"
|
208 |
+
|
209 |
+
#: inc/php/settings_page.php:174 inc/php/settings_page.php:196
|
210 |
+
msgid ""
|
211 |
+
"Enter a short description of your website (150-250 characters). Most search "
|
212 |
+
"engines use a maximum of 160 chars for the home description."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: inc/php/settings_page.php:178
|
216 |
+
msgid "Home Keyword(s)"
|
217 |
+
msgstr "Ключевые слова главной страницы"
|
218 |
+
|
219 |
+
#: inc/php/settings_page.php:180
|
220 |
+
msgid ""
|
221 |
+
"Enter a comma-delimited list of keywords for only Static Home Page of your "
|
222 |
+
"website."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: inc/php/settings_page.php:189
|
226 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
227 |
msgstr "Мета-теги для Default Home Page и только Blog Page"
|
228 |
|
229 |
+
#: inc/php/settings_page.php:191
|
230 |
msgid ""
|
231 |
"You can use the options below to add meta tags such as Description and "
|
232 |
"Keywords only in Default Home Page and Blog Page of your website."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: inc/php/settings_page.php:194
|
236 |
+
msgid "Blog Description"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: inc/php/settings_page.php:200
|
240 |
+
msgid "Blog Keyword(s)"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: inc/php/settings_page.php:202
|
244 |
+
msgid ""
|
245 |
+
"Enter a comma-delimited list of keywords for only Blog Page of your website."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: inc/php/settings_page.php:211
|
249 |
msgid "Meta Tags for all website (Global)"
|
250 |
msgstr "Мета-теги для всего веб-сайта (Глобальные)"
|
251 |
|
252 |
+
#: inc/php/settings_page.php:213
|
253 |
msgid ""
|
254 |
"You can use the options below to add meta tags such as Author, Copyright and "
|
255 |
"Keywords in everywhere on your website."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/php/settings_page.php:216
|
259 |
+
msgid "Author"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: inc/php/settings_page.php:221
|
263 |
+
msgid "Designer"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: inc/php/settings_page.php:226
|
267 |
+
msgid "Contact"
|
268 |
+
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)"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: inc/php/settings_page.php:236
|
279 |
+
msgid "Enter a comma-delimited list of global keywords for your website."
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
#. Plugin URI of the plugin/theme
|
283 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
284 |
msgstr ""
|
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-
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -20,70 +20,70 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: all-meta-tags.php:
|
24 |
msgid "Settings"
|
25 |
msgstr ""
|
26 |
|
27 |
#. Plugin Name of the plugin/theme
|
28 |
-
#: all-meta-tags.php:
|
29 |
msgid "All Meta Tags"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: inc/settings_page.php:27
|
33 |
msgid ""
|
34 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
35 |
"Gareginyan</a>"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: inc/settings_page.php:38
|
39 |
msgid "About"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: inc/settings_page.php:40
|
43 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: inc/settings_page.php:45
|
47 |
msgid "Using"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: inc/settings_page.php:47
|
51 |
msgid ""
|
52 |
"To use, enter your custom Meta Tags, then click \"Save Changes\". It's that "
|
53 |
"simple!"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: inc/settings_page.php:52
|
57 |
msgid "Help"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: inc/settings_page.php:54
|
61 |
msgid "Got something to say? Need help?"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: inc/settings_page.php:60
|
65 |
msgid "Donate"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: inc/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/settings_page.php:66
|
75 |
msgid "Thanks for your support!"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: inc/settings_page.php:71
|
79 |
msgid "Advertisement"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: inc/settings_page.php:91
|
83 |
msgid "Web Master Tools"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: inc/settings_page.php:93
|
87 |
msgid ""
|
88 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
89 |
"are the correct owner of your blog or store before they provide their "
|
@@ -91,17 +91,38 @@ msgid ""
|
|
91 |
"your domain is already verified, you can just forget about these."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: inc/
|
95 |
-
|
96 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
msgid "Save Changes"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: inc/settings_page.php:116
|
101 |
msgid "Domain Verification"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: inc/settings_page.php:118
|
105 |
msgid ""
|
106 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
107 |
"verify your domain. This makes sure that you are the correct owner of your "
|
@@ -110,36 +131,148 @@ msgid ""
|
|
110 |
"you can just forget about these."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
msgid "Meta Tags for Static Home Page only"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: inc/settings_page.php:
|
118 |
msgid ""
|
119 |
"You can use the options below to add meta tags such as Description and "
|
120 |
"Keywords only in Static Home Page of your website."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: inc/settings_page.php:
|
128 |
msgid ""
|
129 |
"You can use the options below to add meta tags such as Description and "
|
130 |
"Keywords only in Default Home Page and Blog Page of your website."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid "Meta Tags for all website (Global)"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: inc/settings_page.php:
|
138 |
msgid ""
|
139 |
"You can use the options below to add meta tags such as Author, Copyright "
|
140 |
"and Keywords in everywhere on your website."
|
141 |
msgstr ""
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
#. Plugin URI of the plugin/theme
|
144 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
145 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2016-09-04 14: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: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 |
|
32 |
+
#: inc/php/settings_page.php:27
|
33 |
msgid ""
|
34 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
35 |
"Gareginyan</a>"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: inc/php/settings_page.php:38
|
39 |
msgid "About"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: inc/php/settings_page.php:40
|
43 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: inc/php/settings_page.php:45
|
47 |
msgid "Using"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: inc/php/settings_page.php:47
|
51 |
msgid ""
|
52 |
"To use, enter your custom Meta Tags, then click \"Save Changes\". It's that "
|
53 |
"simple!"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: inc/php/settings_page.php:52
|
57 |
msgid "Help"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: inc/php/settings_page.php:54
|
61 |
msgid "Got something to say? Need help?"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: inc/php/settings_page.php:60
|
65 |
msgid "Donate"
|
66 |
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
|
75 |
msgid "Thanks for your support!"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: inc/php/settings_page.php:71
|
79 |
msgid "Advertisement"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: inc/php/settings_page.php:91
|
83 |
msgid "Web Master Tools"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/php/settings_page.php:93
|
87 |
msgid ""
|
88 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
89 |
"are the correct owner of your blog or store before they provide their "
|
91 |
"your domain is already verified, you can just forget about these."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/php/settings_page.php:98
|
95 |
+
msgid ""
|
96 |
+
"Enter your meta key “content” value from your verification code to verify "
|
97 |
+
"your website. </br>Example: <meta name=\"google-site-verification\" "
|
98 |
+
"content=“<b>1234567890</b>” />"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: inc/php/settings_page.php:103
|
102 |
+
msgid ""
|
103 |
+
"Enter your meta key “content” value from your verification code to verify "
|
104 |
+
"your website. </br>Example: <meta name=\"msvalidate.01\" "
|
105 |
+
"content=“<b>1234567890</b>” />"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: inc/php/settings_page.php:108
|
109 |
+
msgid ""
|
110 |
+
"Enter your meta key “content” value from your verification code to verify "
|
111 |
+
"your website. </br>Example: <meta name=\"yandex-verification\" "
|
112 |
+
"content=“<b>1234567890</b>” />"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: inc/php/settings_page.php:111 inc/php/settings_page.php:162
|
116 |
+
#: inc/php/settings_page.php:184 inc/php/settings_page.php:206
|
117 |
+
#: inc/php/settings_page.php:240
|
118 |
msgid "Save Changes"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: inc/php/settings_page.php:116
|
122 |
msgid "Domain Verification"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: inc/php/settings_page.php:118
|
126 |
msgid ""
|
127 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
128 |
"verify your domain. This makes sure that you are the correct owner of your "
|
131 |
"you can just forget about these."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: inc/php/settings_page.php:123
|
135 |
+
msgid ""
|
136 |
+
"Enter your meta key “content” value from your verification code to verify "
|
137 |
+
"your website. </br>Example: <meta name=\"p:domain_verify\" "
|
138 |
+
"content=“<b>1234567890</b>” />"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: inc/php/settings_page.php:128
|
142 |
+
msgid ""
|
143 |
+
"Enter an absolute URL to the Google+ profile of the publisher. </"
|
144 |
+
"br>Example: https://plus.google.com/+ArthurGareginyan/"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: inc/php/settings_page.php:133
|
148 |
+
msgid ""
|
149 |
+
"Enter an absolute URL to the Facebook profile of the publisher. </"
|
150 |
+
"br>Example: https://www.facebook.com/arthur.gareginyan"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: inc/php/settings_page.php:138
|
154 |
+
msgid ""
|
155 |
+
"Enter the Twitter username of the publisher. </br>Example: @AGareginyan"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: inc/php/settings_page.php:143
|
159 |
+
msgid ""
|
160 |
+
"Enter your meta key “content” value from your verification code to verify "
|
161 |
+
"your website. </br>Example: <meta name=\"alexaVerifyID\" "
|
162 |
+
"content=“<b>1234567890</b>” />"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: inc/php/settings_page.php:148
|
166 |
+
msgid ""
|
167 |
+
"Enter your meta key “content” value from your verification code to verify "
|
168 |
+
"your website. </br>Example: <meta name=\"norton-safeweb-site-verification"
|
169 |
+
"\" content=“<b>1234567890</b>” />"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: inc/php/settings_page.php:153
|
173 |
+
msgid ""
|
174 |
+
"Enter your meta key “content” value from your verification code to verify "
|
175 |
+
"your website. </br>Example: <meta name=\"wot-verification\" "
|
176 |
+
"content=“<b>1234567890</b>” />"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: inc/php/settings_page.php:156
|
180 |
+
msgid "Custom Meta Tags"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: inc/php/settings_page.php:158
|
184 |
+
msgid ""
|
185 |
+
"If you can't find a field to enter your required meta tag then you can add "
|
186 |
+
"it here. In this field you can add multiple meta tags."
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: inc/php/settings_page.php:167
|
190 |
msgid "Meta Tags for Static Home Page only"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: inc/php/settings_page.php:169
|
194 |
msgid ""
|
195 |
"You can use the options below to add meta tags such as Description and "
|
196 |
"Keywords only in Static Home Page of your website."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: inc/php/settings_page.php:172
|
200 |
+
msgid "Home Description"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: inc/php/settings_page.php:174 inc/php/settings_page.php:196
|
204 |
+
msgid ""
|
205 |
+
"Enter a short description of your website (150-250 characters). Most search "
|
206 |
+
"engines use a maximum of 160 chars for the home description."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: inc/php/settings_page.php:178
|
210 |
+
msgid "Home Keyword(s)"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: inc/php/settings_page.php:180
|
214 |
+
msgid ""
|
215 |
+
"Enter a comma-delimited list of keywords for only Static Home Page of your "
|
216 |
+
"website."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: inc/php/settings_page.php:189
|
220 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: inc/php/settings_page.php:191
|
224 |
msgid ""
|
225 |
"You can use the options below to add meta tags such as Description and "
|
226 |
"Keywords only in Default Home Page and Blog Page of your website."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: inc/php/settings_page.php:194
|
230 |
+
msgid "Blog Description"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: inc/php/settings_page.php:200
|
234 |
+
msgid "Blog Keyword(s)"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: inc/php/settings_page.php:202
|
238 |
+
msgid ""
|
239 |
+
"Enter a comma-delimited list of keywords for only Blog Page of your website."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: inc/php/settings_page.php:211
|
243 |
msgid "Meta Tags for all website (Global)"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/php/settings_page.php:213
|
247 |
msgid ""
|
248 |
"You can use the options below to add meta tags such as Author, Copyright "
|
249 |
"and Keywords in everywhere on your website."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/settings_page.php:216
|
253 |
+
msgid "Author"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: inc/php/settings_page.php:221
|
257 |
+
msgid "Designer"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: inc/php/settings_page.php:226
|
261 |
+
msgid "Contact"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: inc/php/settings_page.php:230
|
265 |
+
msgid "Copyright"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: inc/php/settings_page.php:234
|
269 |
+
msgid "Keyword(s)"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: inc/php/settings_page.php:236
|
273 |
+
msgid "Enter a comma-delimited list of global keywords for your website."
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
#. Plugin URI of the plugin/theme
|
277 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
278 |
msgstr ""
|
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.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -32,7 +32,8 @@ Also you can use this plugin to add required meta tags such as Author, Designer,
|
|
32 |
* Google Web Master Tools verification meta tag
|
33 |
* Bing Web Master Tools verification meta tag
|
34 |
* Yandex Web Master Tools verification meta tag
|
35 |
-
* Web of Trust (WOT) verification meta tag
|
|
|
36 |
* Meta tag with name="author"
|
37 |
* Meta tag with name="designer"
|
38 |
* Meta tag with name="contact"
|
@@ -155,6 +156,9 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
155 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
|
156 |
|
157 |
== Changelog ==
|
|
|
|
|
|
|
158 |
= 3.1 =
|
159 |
* Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
|
160 |
* Added constant for storing the plugin version number.
|
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.2
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
32 |
* Google Web Master Tools verification meta tag
|
33 |
* Bing Web Master Tools verification meta tag
|
34 |
* Yandex Web Master Tools verification meta tag
|
35 |
+
* Web of Trust (WOT) verification meta tag
|
36 |
+
* Custom meta tags
|
37 |
* Meta tag with name="author"
|
38 |
* Meta tag with name="designer"
|
39 |
* Meta tag with name="contact"
|
156 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
|
157 |
|
158 |
== Changelog ==
|
159 |
+
= 3.2 =
|
160 |
+
* Added field for custom meta tags. (Thanks to Juliano Dias for the suggestion)
|
161 |
+
* Ready for translation improved.
|
162 |
= 3.1 =
|
163 |
* Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
|
164 |
* Added constant for storing the plugin version number.
|