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