Version Description
- Some changes in design of settings page.
- Constants variables added.
- Text domain changed to "all-meta-tags".
- Added compatibility with the translate.wordpress.org.
- All images are moved to the directory "images".
- Image "btn_donateCC_LG.gif" is now located in the "images" directory.
- Plugin URI changed to GitHub repository.
- Added my personal ad about freelance.
- Removed custom "Saved" message.
- .pot file updated.
- Russian translation updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | All Meta Tags |
Version | 2.0 |
Comparing to | |
See all releases |
Code changes from version 1.5 to 2.0
- all-meta-tags.php +28 -18
- inc/images/author.png +0 -0
- inc/images/btn_donateCC_LG.gif +0 -0
- inc/images/thanks.png +0 -0
- inc/settings_page.php +54 -57
- inc/style.css +16 -4
- inc/thanks.png +0 -0
- languages/all-meta-tags-ru_RU.mo +0 -0
- languages/{allmetatags-ru_RU.po → all-meta-tags-ru_RU.po} +73 -43
- languages/{allmetatags.pot → all-meta-tags.pot} +48 -33
- languages/allmetatags-ru_RU.mo +0 -0
- readme.txt +79 -72
all-meta-tags.php
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: All Meta Tags
|
4 |
-
* Plugin URI:
|
5 |
* Description: Easily and safely add your custom Meta Tags to WordPress website's header.
|
6 |
-
* Author: Arthur
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
-
* Version:
|
9 |
* License: GPL3
|
10 |
-
* Text Domain:
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
-
* Copyright 2015
|
14 |
*
|
15 |
* This file is part of "All Meta Tags".
|
16 |
*
|
@@ -31,16 +31,28 @@
|
|
31 |
|
32 |
/**
|
33 |
* Prevent Direct Access
|
|
|
|
|
34 |
*/
|
35 |
defined('ABSPATH') or die("Restricted access!");
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
/**
|
38 |
* Register text domain
|
39 |
*
|
40 |
-
* @since 0
|
41 |
*/
|
42 |
function allmetatags_textdomain() {
|
43 |
-
load_plugin_textdomain( '
|
44 |
}
|
45 |
add_action( 'init', 'allmetatags_textdomain' );
|
46 |
|
@@ -50,39 +62,38 @@ add_action( 'init', 'allmetatags_textdomain' );
|
|
50 |
* Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
|
51 |
* and inserts a link to the All Meta Tags admin page
|
52 |
*
|
53 |
-
* @since 0
|
54 |
* @param array $links Array of links generated by WP in Plugin Admin page.
|
55 |
* @return array Array of links to be output on Plugin Admin page.
|
56 |
*/
|
57 |
function allmetatags_settings_link( $links ) {
|
58 |
-
$settings_page = '<a href="' . admin_url( 'options-general.php?page=all-meta-tags.php' ) .'">' . __( 'Settings', '
|
59 |
array_unshift( $links, $settings_page );
|
60 |
return $links;
|
61 |
}
|
62 |
-
|
63 |
-
add_filter( "plugin_action_links_$plugin", 'allmetatags_settings_link' );
|
64 |
|
65 |
/**
|
66 |
* Register "All Meta Tags" submenu in "Settings" Admin Menu
|
67 |
*
|
68 |
-
* @since 0
|
69 |
*/
|
70 |
function allmetatags_register_submenu_page() {
|
71 |
-
add_options_page( __( 'All Meta Tags', '
|
72 |
}
|
73 |
add_action( 'admin_menu', 'allmetatags_register_submenu_page' );
|
74 |
|
75 |
/**
|
76 |
* Attach Settings Page
|
77 |
*
|
78 |
-
* @since 0
|
79 |
*/
|
80 |
-
require_once(
|
81 |
|
82 |
/**
|
83 |
* Enqueue style sheet for setting's page
|
84 |
*
|
85 |
-
* @since 0
|
86 |
*/
|
87 |
function allmetatags_enqueue_scripts($hook) {
|
88 |
|
@@ -91,7 +102,7 @@ function allmetatags_enqueue_scripts($hook) {
|
|
91 |
return;
|
92 |
}
|
93 |
|
94 |
-
wp_enqueue_style('styles',
|
95 |
}
|
96 |
add_action('admin_enqueue_scripts', 'allmetatags_enqueue_scripts');
|
97 |
|
@@ -308,5 +319,4 @@ function allmetatags_uninstall() {
|
|
308 |
}
|
309 |
register_uninstall_hook( __FILE__, 'allmetatags_uninstall' );
|
310 |
|
311 |
-
/* That's all folks! */
|
312 |
?>
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: All Meta Tags
|
4 |
+
* Plugin URI: https://github.com/ArthurGareginyan/all-meta-tags
|
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: 2.0
|
9 |
* License: GPL3
|
10 |
+
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
+
* Copyright 2015-2016 Arthur Gareginyan (email : arthurgareginyan@gmail.com)
|
14 |
*
|
15 |
* This file is part of "All Meta Tags".
|
16 |
*
|
31 |
|
32 |
/**
|
33 |
* Prevent Direct Access
|
34 |
+
*
|
35 |
+
* @since 0.1
|
36 |
*/
|
37 |
defined('ABSPATH') or die("Restricted access!");
|
38 |
|
39 |
+
/**
|
40 |
+
* Plugin constants
|
41 |
+
*
|
42 |
+
* @since 2.0
|
43 |
+
*/
|
44 |
+
defined('ALLMT_DIR') or define('ALLMT_DIR', dirname(plugin_basename(__FILE__)));
|
45 |
+
defined('ALLMT_BASE') or define('ALLMT_BASE', plugin_basename(__FILE__));
|
46 |
+
defined('ALLMT_URL') or define('ALLMT_URL', plugin_dir_url(__FILE__));
|
47 |
+
defined('ALLMT_PATH') or define('ALLMT_PATH', plugin_dir_path(__FILE__));
|
48 |
+
|
49 |
/**
|
50 |
* Register text domain
|
51 |
*
|
52 |
+
* @since 2.0
|
53 |
*/
|
54 |
function allmetatags_textdomain() {
|
55 |
+
load_plugin_textdomain( 'all-meta-tags', false, ALLMT_DIR . '/languages/' );
|
56 |
}
|
57 |
add_action( 'init', 'allmetatags_textdomain' );
|
58 |
|
62 |
* Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
|
63 |
* and inserts a link to the All Meta Tags admin page
|
64 |
*
|
65 |
+
* @since 2.0
|
66 |
* @param array $links Array of links generated by WP in Plugin Admin page.
|
67 |
* @return array Array of links to be output on Plugin Admin page.
|
68 |
*/
|
69 |
function allmetatags_settings_link( $links ) {
|
70 |
+
$settings_page = '<a href="' . admin_url( 'options-general.php?page=all-meta-tags.php' ) .'">' . __( 'Settings', 'all-meta-tags' ) . '</a>';
|
71 |
array_unshift( $links, $settings_page );
|
72 |
return $links;
|
73 |
}
|
74 |
+
add_filter( "plugin_action_links_".ALLMT_BASE, 'allmetatags_settings_link' );
|
|
|
75 |
|
76 |
/**
|
77 |
* Register "All Meta Tags" submenu in "Settings" Admin Menu
|
78 |
*
|
79 |
+
* @since 2.0
|
80 |
*/
|
81 |
function allmetatags_register_submenu_page() {
|
82 |
+
add_options_page( __( 'All Meta Tags', 'all-meta-tags' ), __( 'All Meta Tags', 'all-meta-tags' ), 'manage_options', basename( __FILE__ ), 'allmetatags_render_submenu_page' );
|
83 |
}
|
84 |
add_action( 'admin_menu', 'allmetatags_register_submenu_page' );
|
85 |
|
86 |
/**
|
87 |
* Attach Settings Page
|
88 |
*
|
89 |
+
* @since 2.0
|
90 |
*/
|
91 |
+
require_once( ALLMT_PATH . 'inc/settings_page.php' );
|
92 |
|
93 |
/**
|
94 |
* Enqueue style sheet for setting's page
|
95 |
*
|
96 |
+
* @since 2.0
|
97 |
*/
|
98 |
function allmetatags_enqueue_scripts($hook) {
|
99 |
|
102 |
return;
|
103 |
}
|
104 |
|
105 |
+
wp_enqueue_style('styles', ALLMT_URL . 'inc/style.css');
|
106 |
}
|
107 |
add_action('admin_enqueue_scripts', 'allmetatags_enqueue_scripts');
|
108 |
|
319 |
}
|
320 |
register_uninstall_hook( __FILE__, 'allmetatags_uninstall' );
|
321 |
|
|
|
322 |
?>
|
inc/images/author.png
ADDED
Binary file
|
inc/images/btn_donateCC_LG.gif
ADDED
Binary file
|
inc/images/thanks.png
ADDED
Binary file
|
inc/settings_page.php
CHANGED
@@ -2,38 +2,29 @@
|
|
2 |
|
3 |
/**
|
4 |
* Prevent Direct Access
|
|
|
|
|
5 |
*/
|
6 |
defined('ABSPATH') or die("Restricted access!");
|
7 |
|
8 |
/**
|
9 |
* Render Settings Page
|
10 |
*
|
11 |
-
* @since
|
12 |
*/
|
13 |
function allmetatags_render_submenu_page() {
|
14 |
|
15 |
// Declare variables
|
16 |
$options = get_option( 'allmetatags_settings' );
|
17 |
|
18 |
-
// Settings update message
|
19 |
-
if ( isset( $_GET['settings-updated'] ) ) :
|
20 |
-
?>
|
21 |
-
<div id="message" class="updated">
|
22 |
-
<p>
|
23 |
-
<?php _e( 'Your Meta Tags was sucessfully updated.', 'allmetatags' ); ?>
|
24 |
-
</p>
|
25 |
-
</div>
|
26 |
-
<?php
|
27 |
-
endif;
|
28 |
-
|
29 |
// Page
|
30 |
?>
|
31 |
<div class="wrap">
|
32 |
<h2>
|
33 |
-
<?php _e( 'All Meta Tags', '
|
34 |
<br/>
|
35 |
<span>
|
36 |
-
<?php _e( 'by <a href="http://www.arthurgareginyan.com" target="_blank">Arthur "Berserkr" Gareginyan</a>', '
|
37 |
<span/>
|
38 |
</h2>
|
39 |
|
@@ -44,42 +35,50 @@ function allmetatags_render_submenu_page() {
|
|
44 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
45 |
|
46 |
<div id="about" class="postbox">
|
47 |
-
<h3 class="title"><?php _e( 'About', '
|
48 |
<div class="inside">
|
49 |
-
<p
|
50 |
-
<img src="<?php echo plugins_url('thanks.png', __FILE__); ?>">
|
51 |
-
</p>
|
52 |
-
<p>
|
53 |
-
<?php _e( 'This plugin allows you to easily add Meta Tags to your website.', 'allmetatags' ) ?>
|
54 |
-
</p>
|
55 |
-
<p>
|
56 |
-
<?php _e( 'To use, enter your custom Meta Tags, then click "Save Changes". It\'s that simple!', 'allmetatags' ) ?>
|
57 |
-
</p>
|
58 |
</div>
|
59 |
</div>
|
60 |
|
61 |
-
<div id="
|
62 |
-
<h3 class="title"><?php _e( '
|
63 |
<div class="inside">
|
64 |
-
<p
|
65 |
-
<div class="aligncenter">
|
66 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
|
67 |
-
<img src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Make a donation">
|
68 |
-
</a>
|
69 |
-
</div>
|
70 |
-
<p class="donate"><?php _e( 'Thanks for your support!', 'allmetatags' ) ?></p>
|
71 |
</div>
|
72 |
</div>
|
73 |
|
74 |
<div id="help" class="postbox">
|
75 |
-
<h3 class="title"><?php _e( 'Help', '
|
76 |
<div class="inside">
|
77 |
-
<
|
78 |
-
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
</div>
|
81 |
</div>
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
</div>
|
84 |
</div>
|
85 |
<!-- END-SIDEBAR -->
|
@@ -93,9 +92,9 @@ function allmetatags_render_submenu_page() {
|
|
93 |
<?php settings_fields( 'allmetatags_settings_group' ); ?>
|
94 |
|
95 |
<div class="postbox" id="WebMasterTools">
|
96 |
-
<h3 class="title"><?php _e( 'Web Master Tools', '
|
97 |
<div class="inside">
|
98 |
-
<p><?php _e( 'Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', '
|
99 |
<table class="form-table">
|
100 |
<?php allmetatags_field('google',
|
101 |
'Google Webmaster Tools',
|
@@ -113,14 +112,14 @@ function allmetatags_render_submenu_page() {
|
|
113 |
'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="yandex-verification" content=“<b>1234567890</b>” />',
|
114 |
'https://webmaster.yandex.com');?>
|
115 |
</table>
|
116 |
-
<?php submit_button( __( 'Save Changes', '
|
117 |
</div>
|
118 |
</div>
|
119 |
|
120 |
<div class="postbox" id="DomainVerification">
|
121 |
-
<h3 class="title"><?php _e( 'Domain Verification', '
|
122 |
<div class="inside">
|
123 |
-
<p><?php _e( 'Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', '
|
124 |
<table class="form-table">
|
125 |
<?php allmetatags_field('pinterest',
|
126 |
'Pinterest',
|
@@ -158,14 +157,14 @@ function allmetatags_render_submenu_page() {
|
|
158 |
'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="wot-verification" content=“<b>1234567890</b>” />',
|
159 |
'https://www.mywot.com/wiki/Verify_your_website');?>
|
160 |
</table>
|
161 |
-
<?php submit_button( __( 'Save Changes', '
|
162 |
</div>
|
163 |
</div>
|
164 |
|
165 |
<div class="postbox" id="Home">
|
166 |
-
<h3 class="title"><?php _e( 'Meta Tags for Static Home Page only', '
|
167 |
<div class="inside">
|
168 |
-
<p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', '
|
169 |
<table class="form-table">
|
170 |
<?php allmetatags_field('home_description',
|
171 |
'Home Description',
|
@@ -180,14 +179,14 @@ function allmetatags_render_submenu_page() {
|
|
180 |
'',
|
181 |
'textarea');?>
|
182 |
</table>
|
183 |
-
<?php submit_button( __( 'Save Changes', '
|
184 |
</div>
|
185 |
</div>
|
186 |
|
187 |
<div class="postbox" id="Blog">
|
188 |
-
<h3 class="title"><?php _e( 'Meta Tags for Default Home Page and Blog Page only', '
|
189 |
<div class="inside">
|
190 |
-
<p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', '
|
191 |
<table class="form-table">
|
192 |
<?php allmetatags_field('blog_description',
|
193 |
'Blog Description',
|
@@ -202,14 +201,14 @@ function allmetatags_render_submenu_page() {
|
|
202 |
'',
|
203 |
'textarea');?>
|
204 |
</table>
|
205 |
-
<?php submit_button( __( 'Save Changes', '
|
206 |
</div>
|
207 |
</div>
|
208 |
|
209 |
<div class="postbox" id="Everywhere">
|
210 |
-
<h3 class="title"><?php _e( 'Meta Tags for all website (Global)', '
|
211 |
<div class="inside">
|
212 |
-
<p><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', '
|
213 |
<table class="form-table">
|
214 |
<?php allmetatags_field('author',
|
215 |
'Author',
|
@@ -236,16 +235,14 @@ function allmetatags_render_submenu_page() {
|
|
236 |
'',
|
237 |
'textarea');?>
|
238 |
</table>
|
239 |
-
<?php submit_button( __( 'Save Changes', '
|
240 |
</div>
|
241 |
</div>
|
242 |
-
|
243 |
-
</div>
|
244 |
</div>
|
245 |
</div>
|
246 |
-
|
247 |
-
|
248 |
-
</form>
|
249 |
|
250 |
</div>
|
251 |
|
2 |
|
3 |
/**
|
4 |
* Prevent Direct Access
|
5 |
+
*
|
6 |
+
* @since 0.1
|
7 |
*/
|
8 |
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
+
* @since 2.0
|
14 |
*/
|
15 |
function allmetatags_render_submenu_page() {
|
16 |
|
17 |
// Declare variables
|
18 |
$options = get_option( 'allmetatags_settings' );
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
// Page
|
21 |
?>
|
22 |
<div class="wrap">
|
23 |
<h2>
|
24 |
+
<?php _e( 'All Meta Tags', 'all-meta-tags' ); ?>
|
25 |
<br/>
|
26 |
<span>
|
27 |
+
<?php _e( 'by <a href="http://www.arthurgareginyan.com" target="_blank">Arthur "Berserkr" Gareginyan</a>', 'all-meta-tags' ); ?>
|
28 |
<span/>
|
29 |
</h2>
|
30 |
|
35 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
36 |
|
37 |
<div id="about" class="postbox">
|
38 |
+
<h3 class="title"><?php _e( 'About', 'all-meta-tags' ) ?></a></h3>
|
39 |
<div class="inside">
|
40 |
+
<p><?php _e( 'This plugin allows you to easily add Meta Tags to your website.', 'all-meta-tags' ) ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
</div>
|
42 |
</div>
|
43 |
|
44 |
+
<div id="using" class="postbox">
|
45 |
+
<h3 class="title"><?php _e( 'Using', 'all-meta-tags' ) ?></a></h3>
|
46 |
<div class="inside">
|
47 |
+
<p><?php _e( 'To use, enter your custom Meta Tags, then click "Save Changes". It\'s that simple!', 'all-meta-tags' ) ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
</div>
|
49 |
</div>
|
50 |
|
51 |
<div id="help" class="postbox">
|
52 |
+
<h3 class="title"><?php _e( 'Help', 'all-meta-tags' ); ?></h3>
|
53 |
<div class="inside">
|
54 |
+
<p><?php _e( 'If you want more options then tell me and I will be happy to add it.', 'all-meta-tags' ); ?></p>
|
55 |
+
<p><a href="mailto:arthurgareginyan@gmail.com">arthurgareginyan@gmail.com</a></p>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
|
59 |
+
<div id="donate" class="postbox">
|
60 |
+
<h3 class="title"><?php _e( 'Donate', 'all-meta-tags' ) ?></h3>
|
61 |
+
<div class="inside">
|
62 |
+
<img src="<?php echo plugins_url('images/thanks.png', __FILE__); ?>">
|
63 |
+
<p><?php _e( 'If you like this plugin and find it useful, help me to make this plugin even better and keep it up-to-date.', 'all-meta-tags' ) ?></p>
|
64 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
|
65 |
+
<img src="<?php echo plugins_url('images/btn_donateCC_LG.gif', __FILE__); ?>" alt="Make a donation">
|
66 |
+
</a>
|
67 |
+
<p><?php _e( 'Thanks for your support!', 'all-meta-tags' ) ?></p>
|
68 |
</div>
|
69 |
</div>
|
70 |
|
71 |
+
<div id="freelance" class="postbox">
|
72 |
+
<h3 class="title"><?php _e( 'Freelance', 'all-meta-tags' ) ?></h3>
|
73 |
+
<div class="inside">
|
74 |
+
<img src="<?php echo plugins_url('images/author.png', __FILE__); ?>">
|
75 |
+
<p><?php _e( 'Hello, my name is Arthur and I\'m a freelance web designer and developer.', 'all-meta-tags' ) ?></p>
|
76 |
+
<p><?php _e( 'Share your thoughts with me. You may have a brilliant idea in your mind and I can make it happen, so let’s get started!', 'all-meta-tags' ) ?></p>
|
77 |
+
<p><a href="http://www.arthurgareginyan.com/" target="_blank">www.arthurgareginyan.com</a></p>
|
78 |
+
</div>
|
79 |
+
</div>
|
80 |
+
|
81 |
+
|
82 |
</div>
|
83 |
</div>
|
84 |
<!-- END-SIDEBAR -->
|
92 |
<?php settings_fields( 'allmetatags_settings_group' ); ?>
|
93 |
|
94 |
<div class="postbox" id="WebMasterTools">
|
95 |
+
<h3 class="title"><?php _e( 'Web Master Tools', 'all-meta-tags' ) ?></h3>
|
96 |
<div class="inside">
|
97 |
+
<p><?php _e( 'Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', 'all-meta-tags' ) ?></p>
|
98 |
<table class="form-table">
|
99 |
<?php allmetatags_field('google',
|
100 |
'Google Webmaster Tools',
|
112 |
'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="yandex-verification" content=“<b>1234567890</b>” />',
|
113 |
'https://webmaster.yandex.com');?>
|
114 |
</table>
|
115 |
+
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
116 |
</div>
|
117 |
</div>
|
118 |
|
119 |
<div class="postbox" id="DomainVerification">
|
120 |
+
<h3 class="title"><?php _e( 'Domain Verification', 'all-meta-tags' ) ?></h3>
|
121 |
<div class="inside">
|
122 |
+
<p><?php _e( 'Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these.', 'all-meta-tags' ) ?></p>
|
123 |
<table class="form-table">
|
124 |
<?php allmetatags_field('pinterest',
|
125 |
'Pinterest',
|
157 |
'Enter your meta key “content” value from your verification code to verify your website. </br>Example: <meta name="wot-verification" content=“<b>1234567890</b>” />',
|
158 |
'https://www.mywot.com/wiki/Verify_your_website');?>
|
159 |
</table>
|
160 |
+
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
161 |
</div>
|
162 |
</div>
|
163 |
|
164 |
<div class="postbox" id="Home">
|
165 |
+
<h3 class="title"><?php _e( 'Meta Tags for Static Home Page only', 'all-meta-tags' ) ?></h3>
|
166 |
<div class="inside">
|
167 |
+
<p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', 'all-meta-tags' ) ?></p>
|
168 |
<table class="form-table">
|
169 |
<?php allmetatags_field('home_description',
|
170 |
'Home Description',
|
179 |
'',
|
180 |
'textarea');?>
|
181 |
</table>
|
182 |
+
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
183 |
</div>
|
184 |
</div>
|
185 |
|
186 |
<div class="postbox" id="Blog">
|
187 |
+
<h3 class="title"><?php _e( 'Meta Tags for Default Home Page and Blog Page only', 'all-meta-tags' ) ?></h3>
|
188 |
<div class="inside">
|
189 |
+
<p><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', 'all-meta-tags' ) ?></p>
|
190 |
<table class="form-table">
|
191 |
<?php allmetatags_field('blog_description',
|
192 |
'Blog Description',
|
201 |
'',
|
202 |
'textarea');?>
|
203 |
</table>
|
204 |
+
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
205 |
</div>
|
206 |
</div>
|
207 |
|
208 |
<div class="postbox" id="Everywhere">
|
209 |
+
<h3 class="title"><?php _e( 'Meta Tags for all website (Global)', 'all-meta-tags' ) ?></h3>
|
210 |
<div class="inside">
|
211 |
+
<p><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', 'all-meta-tags' ) ?></p>
|
212 |
<table class="form-table">
|
213 |
<?php allmetatags_field('author',
|
214 |
'Author',
|
235 |
'',
|
236 |
'textarea');?>
|
237 |
</table>
|
238 |
+
<?php submit_button( __( 'Save Changes', 'all-meta-tags' ), 'primary', 'submit', true ); ?>
|
239 |
</div>
|
240 |
</div>
|
241 |
+
</form>
|
|
|
242 |
</div>
|
243 |
</div>
|
244 |
+
</div>
|
245 |
+
<!-- END-FORM -->
|
|
|
246 |
|
247 |
</div>
|
248 |
|
inc/style.css
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/*
|
2 |
* All Meta Tags
|
3 |
* Style sheet for plugin's page
|
4 |
-
* @since
|
5 |
* @agareginyan
|
6 |
*/
|
7 |
|
@@ -60,10 +60,22 @@ td.help-text {
|
|
60 |
position: relative;
|
61 |
}
|
62 |
|
63 |
-
|
64 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
}
|
66 |
|
67 |
-
|
68 |
text-align: center;
|
69 |
}
|
1 |
/*
|
2 |
* All Meta Tags
|
3 |
* Style sheet for plugin's page
|
4 |
+
* @since 2.0
|
5 |
* @agareginyan
|
6 |
*/
|
7 |
|
60 |
position: relative;
|
61 |
}
|
62 |
|
63 |
+
#about {
|
64 |
+
text-align: center;
|
65 |
+
}
|
66 |
+
|
67 |
+
#using {
|
68 |
+
text-align: center;
|
69 |
+
}
|
70 |
+
|
71 |
+
#help {
|
72 |
+
text-align: center;
|
73 |
+
}
|
74 |
+
|
75 |
+
#donate {
|
76 |
+
text-align: center;
|
77 |
}
|
78 |
|
79 |
+
#freelance {
|
80 |
text-align: center;
|
81 |
}
|
inc/thanks.png
DELETED
Binary file
|
languages/all-meta-tags-ru_RU.mo
ADDED
Binary file
|
languages/{allmetatags-ru_RU.po → all-meta-tags-ru_RU.po}
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
@@ -21,20 +21,16 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
-
#: all-meta-tags.php:
|
25 |
msgid "Settings"
|
26 |
msgstr "Настройки"
|
27 |
|
28 |
#. Plugin Name of the plugin/theme
|
29 |
-
#: all-meta-tags.php:
|
30 |
msgid "All Meta Tags"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: inc/settings_page.php:
|
34 |
-
msgid "Your Meta Tags was sucessfully updated."
|
35 |
-
msgstr "Ваши Мета-Теги были успешно обновлены."
|
36 |
-
|
37 |
-
#: inc/settings_page.php:36
|
38 |
msgid ""
|
39 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
40 |
"\"Berserkr\" Gareginyan</a>"
|
@@ -42,15 +38,19 @@ msgstr ""
|
|
42 |
"от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
|
43 |
"\"Berserkr\" Гарегинян</a>"
|
44 |
|
45 |
-
#: inc/settings_page.php:
|
46 |
msgid "About"
|
47 |
-
msgstr ""
|
48 |
|
49 |
-
#: inc/settings_page.php:
|
50 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
51 |
msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
|
52 |
|
53 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
54 |
msgid ""
|
55 |
"To use, enter your custom Meta Tags, then click \"Save Changes\". It's that "
|
56 |
"simple!"
|
@@ -58,35 +58,54 @@ msgstr ""
|
|
58 |
"Для использования, введите данные ваших Мета-Тегов, затем нажмите кнопку "
|
59 |
"“Сохранить изменения”. Это так просто!"
|
60 |
|
61 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
msgid "Donate"
|
63 |
msgstr "Пожертвование"
|
64 |
|
65 |
-
#: inc/settings_page.php:
|
66 |
msgid ""
|
67 |
"If you like this plugin and find it useful, help me to make this plugin even "
|
68 |
"better and keep it up-to-date."
|
69 |
msgstr ""
|
|
|
|
|
70 |
|
71 |
-
#: inc/settings_page.php:
|
72 |
msgid "Thanks for your support!"
|
73 |
msgstr "Спасибо за вашу поддержку!"
|
74 |
|
|
|
|
|
|
|
|
|
75 |
#: inc/settings_page.php:75
|
76 |
-
msgid "
|
77 |
-
|
|
|
78 |
|
79 |
-
#: inc/settings_page.php:
|
80 |
-
msgid "
|
|
|
|
|
81 |
msgstr ""
|
82 |
-
"
|
83 |
-
"
|
84 |
|
85 |
-
#: inc/settings_page.php:
|
86 |
msgid "Web Master Tools"
|
87 |
msgstr "Веб-мастер инструменты"
|
88 |
|
89 |
-
#: inc/settings_page.php:
|
90 |
msgid ""
|
91 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
92 |
"are the correct owner of your blog or store before they provide their "
|
@@ -94,17 +113,17 @@ msgid ""
|
|
94 |
"your domain is already verified, you can just forget about these."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: inc/settings_page.php:
|
98 |
-
#: inc/settings_page.php:
|
99 |
-
#: inc/settings_page.php:
|
100 |
msgid "Save Changes"
|
101 |
msgstr "Сохранить изменения"
|
102 |
|
103 |
-
#: inc/settings_page.php:
|
104 |
msgid "Domain Verification"
|
105 |
msgstr "Проверка домена"
|
106 |
|
107 |
-
#: inc/settings_page.php:
|
108 |
msgid ""
|
109 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
110 |
"verify your domain. This makes sure that you are the correct owner of your "
|
@@ -113,49 +132,60 @@ msgid ""
|
|
113 |
"can just forget about these."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: inc/settings_page.php:
|
117 |
msgid "Meta Tags for Static Home Page only"
|
118 |
-
msgstr ""
|
119 |
|
120 |
-
#: inc/settings_page.php:
|
121 |
msgid ""
|
122 |
"You can use the options below to add meta tags such as Description and "
|
123 |
"Keywords only in Static Home Page of your website."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/settings_page.php:
|
127 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
128 |
-
msgstr ""
|
129 |
|
130 |
-
#: inc/settings_page.php:
|
131 |
msgid ""
|
132 |
"You can use the options below to add meta tags such as Description and "
|
133 |
"Keywords only in Default Home Page and Blog Page of your website."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/settings_page.php:
|
137 |
msgid "Meta Tags for all website (Global)"
|
138 |
-
msgstr ""
|
139 |
|
140 |
-
#: inc/settings_page.php:
|
141 |
msgid ""
|
142 |
"You can use the options below to add meta tags such as Author, Copyright and "
|
143 |
"Keywords in everywhere on your website."
|
144 |
msgstr ""
|
145 |
|
146 |
#. Plugin URI of the plugin/theme
|
147 |
-
msgid "
|
148 |
msgstr ""
|
149 |
|
150 |
#. Description of the plugin/theme
|
151 |
msgid ""
|
152 |
-
"
|
153 |
-
msgstr "
|
154 |
|
155 |
#. Author of the plugin/theme
|
156 |
-
msgid "Arthur
|
157 |
-
msgstr "Артур
|
158 |
|
159 |
#. Author URI of the plugin/theme
|
160 |
msgid "http://www.arthurgareginyan.com"
|
161 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
+
"POT-Creation-Date: 2016-04-09 13:50+0300\n"
|
5 |
+
"PO-Revision-Date: 2016-04-09 13:50+0300\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
+
#: all-meta-tags.php:70
|
25 |
msgid "Settings"
|
26 |
msgstr "Настройки"
|
27 |
|
28 |
#. Plugin Name of the plugin/theme
|
29 |
+
#: all-meta-tags.php:82 inc/settings_page.php:24
|
30 |
msgid "All Meta Tags"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: inc/settings_page.php:27
|
|
|
|
|
|
|
|
|
34 |
msgid ""
|
35 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
36 |
"\"Berserkr\" Gareginyan</a>"
|
38 |
"от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
|
39 |
"\"Berserkr\" Гарегинян</a>"
|
40 |
|
41 |
+
#: inc/settings_page.php:38
|
42 |
msgid "About"
|
43 |
+
msgstr "О платине"
|
44 |
|
45 |
+
#: inc/settings_page.php:40
|
46 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
47 |
msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
|
48 |
|
49 |
+
#: inc/settings_page.php:45
|
50 |
+
msgid "Using"
|
51 |
+
msgstr "Использование:"
|
52 |
+
|
53 |
+
#: inc/settings_page.php:47
|
54 |
msgid ""
|
55 |
"To use, enter your custom Meta Tags, then click \"Save Changes\". It's that "
|
56 |
"simple!"
|
58 |
"Для использования, введите данные ваших Мета-Тегов, затем нажмите кнопку "
|
59 |
"“Сохранить изменения”. Это так просто!"
|
60 |
|
61 |
+
#: inc/settings_page.php:52
|
62 |
+
msgid "Help"
|
63 |
+
msgstr "Помощь"
|
64 |
+
|
65 |
+
#: inc/settings_page.php:54
|
66 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
67 |
+
msgstr ""
|
68 |
+
"Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
69 |
+
"добавить их."
|
70 |
+
|
71 |
+
#: inc/settings_page.php:60
|
72 |
msgid "Donate"
|
73 |
msgstr "Пожертвование"
|
74 |
|
75 |
+
#: inc/settings_page.php:63
|
76 |
msgid ""
|
77 |
"If you like this plugin and find it useful, help me to make this plugin even "
|
78 |
"better and keep it up-to-date."
|
79 |
msgstr ""
|
80 |
+
"Если вам нравится этот плагин и вы находите его полезным, то помогите мне "
|
81 |
+
"сделать его ещё лучше."
|
82 |
|
83 |
+
#: inc/settings_page.php:67
|
84 |
msgid "Thanks for your support!"
|
85 |
msgstr "Спасибо за вашу поддержку!"
|
86 |
|
87 |
+
#: inc/settings_page.php:72
|
88 |
+
msgid "Freelance"
|
89 |
+
msgstr "Фриланс"
|
90 |
+
|
91 |
#: inc/settings_page.php:75
|
92 |
+
msgid ""
|
93 |
+
"Hello, my name is Arthur and I'm a freelance web designer and developer."
|
94 |
+
msgstr "Привет, меня зовут Артур и Я внештатный веб-дизайнер и разработчик."
|
95 |
|
96 |
+
#: inc/settings_page.php:76
|
97 |
+
msgid ""
|
98 |
+
"Share your thoughts with me. You may have a brilliant idea in your mind and "
|
99 |
+
"I can make it happen, so let’s get started!"
|
100 |
msgstr ""
|
101 |
+
"Поделитесь со мной своими мыслями. У вас может быть блестящая идея в уме, а "
|
102 |
+
"я могу сделать её явью, так что давайте начнём!"
|
103 |
|
104 |
+
#: inc/settings_page.php:95
|
105 |
msgid "Web Master Tools"
|
106 |
msgstr "Веб-мастер инструменты"
|
107 |
|
108 |
+
#: inc/settings_page.php:97
|
109 |
msgid ""
|
110 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
111 |
"are the correct owner of your blog or store before they provide their "
|
113 |
"your domain is already verified, you can just forget about these."
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: inc/settings_page.php:115 inc/settings_page.php:160
|
117 |
+
#: inc/settings_page.php:182 inc/settings_page.php:204
|
118 |
+
#: inc/settings_page.php:238
|
119 |
msgid "Save Changes"
|
120 |
msgstr "Сохранить изменения"
|
121 |
|
122 |
+
#: inc/settings_page.php:120
|
123 |
msgid "Domain Verification"
|
124 |
msgstr "Проверка домена"
|
125 |
|
126 |
+
#: inc/settings_page.php:122
|
127 |
msgid ""
|
128 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
129 |
"verify your domain. This makes sure that you are the correct owner of your "
|
132 |
"can just forget about these."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: inc/settings_page.php:165
|
136 |
msgid "Meta Tags for Static Home Page only"
|
137 |
+
msgstr "Мета-теги только для Static Home Page"
|
138 |
|
139 |
+
#: inc/settings_page.php:167
|
140 |
msgid ""
|
141 |
"You can use the options below to add meta tags such as Description and "
|
142 |
"Keywords only in Static Home Page of your website."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: inc/settings_page.php:187
|
146 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
147 |
+
msgstr "Мета-теги для Default Home Page и только Blog Page"
|
148 |
|
149 |
+
#: inc/settings_page.php:189
|
150 |
msgid ""
|
151 |
"You can use the options below to add meta tags such as Description and "
|
152 |
"Keywords only in Default Home Page and Blog Page of your website."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/settings_page.php:209
|
156 |
msgid "Meta Tags for all website (Global)"
|
157 |
+
msgstr "Мета-теги для всего веб-сайта (Глобальные)"
|
158 |
|
159 |
+
#: inc/settings_page.php:211
|
160 |
msgid ""
|
161 |
"You can use the options below to add meta tags such as Author, Copyright and "
|
162 |
"Keywords in everywhere on your website."
|
163 |
msgstr ""
|
164 |
|
165 |
#. Plugin URI of the plugin/theme
|
166 |
+
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
167 |
msgstr ""
|
168 |
|
169 |
#. Description of the plugin/theme
|
170 |
msgid ""
|
171 |
+
"Easily and safely add your custom Meta Tags to WordPress website's header."
|
172 |
+
msgstr ""
|
173 |
|
174 |
#. Author of the plugin/theme
|
175 |
+
msgid "Arthur Gareginyan"
|
176 |
+
msgstr "Артур Гарегинян"
|
177 |
|
178 |
#. Author URI of the plugin/theme
|
179 |
msgid "http://www.arthurgareginyan.com"
|
180 |
msgstr ""
|
181 |
+
|
182 |
+
#~ msgid "Arthur \"Berserkr\" Gareginyan"
|
183 |
+
#~ msgstr "Артур “Берсерк” Гарегинян"
|
184 |
+
|
185 |
+
#~ msgid "Your Meta Tags was sucessfully updated."
|
186 |
+
#~ msgstr "Ваши Мета-Теги были успешно обновлены."
|
187 |
+
|
188 |
+
#~ msgid ""
|
189 |
+
#~ "EASILY and SAFELY add your custom Meta Tags to WordPress website's header."
|
190 |
+
#~ msgstr ""
|
191 |
+
#~ "ЛЕГКО и НАДЁЖНО добавляйте ваши Мета-Теги в шапку WordPress веб-сайта."
|
languages/{allmetatags.pot → all-meta-tags.pot}
RENAMED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2016-
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -20,66 +20,81 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: all-meta-tags.php:
|
24 |
msgid "Settings"
|
25 |
msgstr ""
|
26 |
|
27 |
#. Plugin Name of the plugin/theme
|
28 |
-
#: all-meta-tags.php:
|
29 |
msgid "All Meta Tags"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: inc/settings_page.php:
|
33 |
-
msgid "Your Meta Tags was sucessfully updated."
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: inc/settings_page.php:36
|
37 |
msgid ""
|
38 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
39 |
"\"Berserkr\" Gareginyan</a>"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: inc/settings_page.php:
|
43 |
msgid "About"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: inc/settings_page.php:
|
47 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
51 |
msgid ""
|
52 |
"To use, enter your custom Meta Tags, then click \"Save Changes\". It's that "
|
53 |
"simple!"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: inc/settings_page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
msgid "Donate"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: inc/settings_page.php:
|
61 |
msgid ""
|
62 |
"If you like this plugin and find it useful, help me to make this plugin "
|
63 |
"even better and keep it up-to-date."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: inc/settings_page.php:
|
67 |
msgid "Thanks for your support!"
|
68 |
msgstr ""
|
69 |
|
|
|
|
|
|
|
|
|
70 |
#: inc/settings_page.php:75
|
71 |
-
msgid "
|
|
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: inc/settings_page.php:
|
75 |
-
msgid "
|
|
|
|
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: inc/settings_page.php:
|
79 |
msgid "Web Master Tools"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: inc/settings_page.php:
|
83 |
msgid ""
|
84 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
85 |
"are the correct owner of your blog or store before they provide their "
|
@@ -87,17 +102,17 @@ msgid ""
|
|
87 |
"your domain is already verified, you can just forget about these."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: inc/settings_page.php:
|
91 |
-
#: inc/settings_page.php:
|
92 |
-
#: inc/settings_page.php:
|
93 |
msgid "Save Changes"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: inc/settings_page.php:
|
97 |
msgid "Domain Verification"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: inc/settings_page.php:
|
101 |
msgid ""
|
102 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
103 |
"verify your domain. This makes sure that you are the correct owner of your "
|
@@ -106,47 +121,47 @@ msgid ""
|
|
106 |
"you can just forget about these."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: inc/settings_page.php:
|
110 |
msgid "Meta Tags for Static Home Page only"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/settings_page.php:
|
114 |
msgid ""
|
115 |
"You can use the options below to add meta tags such as Description and "
|
116 |
"Keywords only in Static Home Page of your website."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: inc/settings_page.php:
|
120 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/settings_page.php:
|
124 |
msgid ""
|
125 |
"You can use the options below to add meta tags such as Description and "
|
126 |
"Keywords only in Default Home Page and Blog Page of your website."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: inc/settings_page.php:
|
130 |
msgid "Meta Tags for all website (Global)"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: inc/settings_page.php:
|
134 |
msgid ""
|
135 |
"You can use the options below to add meta tags such as Author, Copyright "
|
136 |
"and Keywords in everywhere on your website."
|
137 |
msgstr ""
|
138 |
|
139 |
#. Plugin URI of the plugin/theme
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
#. Description of the plugin/theme
|
144 |
msgid ""
|
145 |
-
"
|
146 |
msgstr ""
|
147 |
|
148 |
#. Author of the plugin/theme
|
149 |
-
msgid "Arthur
|
150 |
msgstr ""
|
151 |
|
152 |
#. Author URI of the plugin/theme
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2016-04-09 13:50+0300\n"
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: all-meta-tags.php:70
|
24 |
msgid "Settings"
|
25 |
msgstr ""
|
26 |
|
27 |
#. Plugin Name of the plugin/theme
|
28 |
+
#: all-meta-tags.php:82 inc/settings_page.php:24
|
29 |
msgid "All Meta Tags"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: inc/settings_page.php:27
|
|
|
|
|
|
|
|
|
33 |
msgid ""
|
34 |
"by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
|
35 |
"\"Berserkr\" Gareginyan</a>"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: inc/settings_page.php:38
|
39 |
msgid "About"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: inc/settings_page.php:40
|
43 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: inc/settings_page.php:45
|
47 |
+
msgid "Using"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: inc/settings_page.php:47
|
51 |
msgid ""
|
52 |
"To use, enter your custom Meta Tags, then click \"Save Changes\". It's that "
|
53 |
"simple!"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: inc/settings_page.php:52
|
57 |
+
msgid "Help"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: inc/settings_page.php:54
|
61 |
+
msgid "If you want more options then tell me and I will be happy to add it."
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: inc/settings_page.php:60
|
65 |
msgid "Donate"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: inc/settings_page.php:63
|
69 |
msgid ""
|
70 |
"If you like this plugin and find it useful, help me to make this plugin "
|
71 |
"even better and keep it up-to-date."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/settings_page.php:67
|
75 |
msgid "Thanks for your support!"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: inc/settings_page.php:72
|
79 |
+
msgid "Freelance"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
#: inc/settings_page.php:75
|
83 |
+
msgid ""
|
84 |
+
"Hello, my name is Arthur and I'm a freelance web designer and developer."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: inc/settings_page.php:76
|
88 |
+
msgid ""
|
89 |
+
"Share your thoughts with me. You may have a brilliant idea in your mind and "
|
90 |
+
"I can make it happen, so let’s get started!"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/settings_page.php:95
|
94 |
msgid "Web Master Tools"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/settings_page.php:97
|
98 |
msgid ""
|
99 |
"Webmaster Tools require you to verify your domain. This makes sure that you "
|
100 |
"are the correct owner of your blog or store before they provide their "
|
102 |
"your domain is already verified, you can just forget about these."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/settings_page.php:115 inc/settings_page.php:160
|
106 |
+
#: inc/settings_page.php:182 inc/settings_page.php:204
|
107 |
+
#: inc/settings_page.php:238
|
108 |
msgid "Save Changes"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: inc/settings_page.php:120
|
112 |
msgid "Domain Verification"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: inc/settings_page.php:122
|
116 |
msgid ""
|
117 |
"Third-party services like Alexa, Pinterest and Google-Plus require you to "
|
118 |
"verify your domain. This makes sure that you are the correct owner of your "
|
121 |
"you can just forget about these."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: inc/settings_page.php:165
|
125 |
msgid "Meta Tags for Static Home Page only"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/settings_page.php:167
|
129 |
msgid ""
|
130 |
"You can use the options below to add meta tags such as Description and "
|
131 |
"Keywords only in Static Home Page of your website."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: inc/settings_page.php:187
|
135 |
msgid "Meta Tags for Default Home Page and Blog Page only"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/settings_page.php:189
|
139 |
msgid ""
|
140 |
"You can use the options below to add meta tags such as Description and "
|
141 |
"Keywords only in Default Home Page and Blog Page of your website."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: inc/settings_page.php:209
|
145 |
msgid "Meta Tags for all website (Global)"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: inc/settings_page.php:211
|
149 |
msgid ""
|
150 |
"You can use the options below to add meta tags such as Author, Copyright "
|
151 |
"and Keywords in everywhere on your website."
|
152 |
msgstr ""
|
153 |
|
154 |
#. Plugin URI of the plugin/theme
|
155 |
+
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
156 |
msgstr ""
|
157 |
|
158 |
#. Description of the plugin/theme
|
159 |
msgid ""
|
160 |
+
"Easily and safely add your custom Meta Tags to WordPress website's header."
|
161 |
msgstr ""
|
162 |
|
163 |
#. Author of the plugin/theme
|
164 |
+
msgid "Arthur Gareginyan"
|
165 |
msgstr ""
|
166 |
|
167 |
#. Author URI of the plugin/theme
|
languages/allmetatags-ru_RU.mo
DELETED
Binary file
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Arthur Gareginyan
|
|
3 |
Tags: meta, tag,tags, custom, simple, plugin, twitter, facebook, g+, google, google+, google plus, meta, search engine optimization, seo, social, alexa, alexa rank, pinterest, norton safe web, webmaster, webmaster tool, webmaster tools, web master tools, web master tools, bing, yandex, bing webmaster, yandex webmaster, google webmaster, web tools, open graph, publisher profile, publisher, author, authors, description, keyword, keywords, copyright, designer, admin, meta tag, pinterest, pinterest meta tag, pinterest website verification, pinterest verification, pinterest verify, plugin, verification, verify, webmaster plugin, wot, web of trust,
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag:
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -19,45 +19,45 @@ Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ r
|
|
19 |
|
20 |
Also you can use this plugin to add required meta tags such as Author, Designer, Contact, Copyright and Keywords in everywhere on your website (It adds the required meta tags to the header of all pages on your website) or the meta Description and Keywords only for Static Home Page or the meta Description and Keywords only for Blog Page.
|
21 |
|
22 |
-
|
23 |
= Features =
|
24 |
|
25 |
**Current features:**
|
26 |
|
27 |
-
* Google+ publisher link
|
28 |
-
* Facebook publisher meta tag
|
29 |
-
* Twitter publisher meta tag
|
30 |
-
* Pinterest verification meta tag
|
31 |
-
* Alexa verification meta tag
|
32 |
-
* Norton Safe Web verification meta tag
|
33 |
-
* Google Web Master Tools verification meta tag
|
34 |
-
* Bing Web Master Tools verification meta tag
|
35 |
-
* Yandex Web Master Tools verification meta tag
|
36 |
-
* Web of Trust (WOT) verification meta tag
|
37 |
-
* Meta tag with name="author"
|
38 |
-
* Meta tag with name="designer"
|
39 |
-
* Meta tag with name="contact"
|
40 |
-
* Meta tag with name="copyright"
|
41 |
-
* Meta tag with name="description" (Global, only for Static Home Page and only for Blog Page)
|
42 |
-
* Meta tag with name="keywords" (Global, only for Static Home Page and only for Blog Page)
|
43 |
-
* Ready for translation (.pot file included)
|
44 |
-
*
|
45 |
-
|
46 |
|
47 |
**Coming soon:**
|
48 |
|
49 |
-
* Google Analytics verification meta tag
|
50 |
-
* SpecificFeeds.com verification meta tag
|
51 |
-
* Meta tag with name="creator"
|
52 |
-
* Meta tag with name="publisher"
|
53 |
-
* Meta tag with name="language"
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
|
|
|
|
61 |
|
62 |
== Installation ==
|
63 |
Install "All Meta Tags" just as you would any other WordPress Plugin.
|
@@ -83,7 +83,7 @@ After installation, a "`All Meta Tags`" menu item will appear in the "`Settings
|
|
83 |
|
84 |
|
85 |
== Frequently Asked Questions ==
|
86 |
-
= Q. Will this Plugin work on my WordPress.
|
87 |
A. Sorry, this plugin is available for use only on self-hosted (WordPress.org) websites.
|
88 |
|
89 |
= Q. Can I use this plugin on my language? =
|
@@ -97,21 +97,42 @@ On the plugin page you find the fields where you can enter your `ID` (meta key "
|
|
97 |
A. I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description.
|
98 |
|
99 |
= Q. How much of keywords I can enter in the text field? =
|
100 |
-
A. I don't limit the number of characters.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
= Q. Where to report bug if found? =
|
103 |
A. Please visit [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags) and report.
|
104 |
|
105 |
= Q. Where to share any ideas or suggestions to make the plugin better? =
|
106 |
-
A. Please
|
|
|
|
|
|
|
107 |
|
108 |
|
109 |
== Screenshots ==
|
110 |
-
1. Plugin’s page.
|
111 |
-
|
112 |
-
3. Plugin’s page. Section "Meta Tags for Static Home Page only".
|
113 |
-
4. Plugin’s page. Section "Meta Tags for Default Home Page and Blog Page only".
|
114 |
-
5. Plugin’s page. Section "Meta Tags for all website (Global)".
|
115 |
|
116 |
== Other Notes ==
|
117 |
|
@@ -119,26 +140,27 @@ A. Please visit [Dedicated Plugin Page](http://mycyberuniverse.com/my_programs/w
|
|
119 |
|
120 |
**License**
|
121 |
|
122 |
-
This plugin is licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html)
|
123 |
-
and is distributed free of charge.
|
124 |
Commercial licensing (e.g. for projects that can’t use an open-source license) is available upon request.
|
125 |
|
126 |
-
**Support**
|
127 |
-
|
128 |
-
* Did you enjoy this plugin? Please [donate to support ongoing development](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS). Your contribution would be greatly appreciated.
|
129 |
-
* Do you have any ideas or suggestions to make the plugin better? I can’t wait to hear them! Please share! [Dedicated Plugin Page](http://mycyberuniverse.com/my_programs/wp-plugin-all-meta-tags.html)
|
130 |
-
|
131 |
-
**Please Vote and Enjoy**
|
132 |
-
|
133 |
-
* Your votes really make a difference! Thanks.
|
134 |
-
|
135 |
**Links**
|
136 |
|
137 |
* [Developer Website](http://www.arthurgareginyan.com)
|
138 |
-
* [Dedicated Plugin Page](http://mycyberuniverse.com/my_programs/wp-plugin-all-meta-tags.html)
|
139 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
|
140 |
|
141 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
= 1.5 =
|
143 |
* Authors URI changed.
|
144 |
* Localization improved.
|
@@ -165,24 +187,9 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
165 |
|
166 |
|
167 |
== Upgrade Notice ==
|
168 |
-
=
|
169 |
-
|
170 |
-
* Localization improved.
|
171 |
-
* .pot file updated.
|
172 |
-
* Russian translation updated.
|
173 |
-
* thanks.png replaced.
|
174 |
-
= 1.4 =
|
175 |
-
* Removed more unused do_action() from settings_page.php file.
|
176 |
-
= 1.3 =
|
177 |
-
* Added new section with meta tags for Default Home Page and Blog Page.
|
178 |
-
* Home Page section renamed to Static Home Page.
|
179 |
-
= 1.2 =
|
180 |
-
* Added the option for "Web of Trust" (WOT) verification.
|
181 |
-
= 1.1 =
|
182 |
-
* Fixed the issue due to which error message is shown in the top of the website when the plugin for the first time installed.
|
183 |
= 1.0 =
|
184 |
Please update to first stable release!
|
185 |
-
* Added ready for translation (.pot file included).
|
186 |
-
* Added russian translation.
|
187 |
= 0.2 =
|
188 |
-
Please update to beta version.
|
3 |
Tags: meta, tag,tags, custom, simple, plugin, twitter, facebook, g+, google, google+, google plus, meta, search engine optimization, seo, social, alexa, alexa rank, pinterest, norton safe web, webmaster, webmaster tool, webmaster tools, web master tools, web master tools, bing, yandex, bing webmaster, yandex webmaster, google webmaster, web tools, open graph, publisher profile, publisher, author, authors, description, keyword, keywords, copyright, designer, admin, meta tag, pinterest, pinterest meta tag, pinterest website verification, pinterest verification, pinterest verify, plugin, verification, verify, webmaster plugin, wot, web of trust,
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 2.0
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
19 |
|
20 |
Also you can use this plugin to add required meta tags such as Author, Designer, Contact, Copyright and Keywords in everywhere on your website (It adds the required meta tags to the header of all pages on your website) or the meta Description and Keywords only for Static Home Page or the meta Description and Keywords only for Blog Page.
|
21 |
|
|
|
22 |
= Features =
|
23 |
|
24 |
**Current features:**
|
25 |
|
26 |
+
* Google+ publisher link
|
27 |
+
* Facebook publisher meta tag
|
28 |
+
* Twitter publisher meta tag
|
29 |
+
* Pinterest verification meta tag
|
30 |
+
* Alexa verification meta tag
|
31 |
+
* Norton Safe Web verification meta tag
|
32 |
+
* Google Web Master Tools verification meta tag
|
33 |
+
* Bing Web Master Tools verification meta tag
|
34 |
+
* Yandex Web Master Tools verification meta tag
|
35 |
+
* Web of Trust (WOT) verification meta tag
|
36 |
+
* Meta tag with name="author"
|
37 |
+
* Meta tag with name="designer"
|
38 |
+
* Meta tag with name="contact"
|
39 |
+
* Meta tag with name="copyright"
|
40 |
+
* Meta tag with name="description" (Global, only for Static Home Page and only for Blog Page)
|
41 |
+
* Meta tag with name="keywords" (Global, only for Static Home Page and only for Blog Page)
|
42 |
+
* Ready for translation (.pot file included)
|
43 |
+
* Russian translation
|
|
|
44 |
|
45 |
**Coming soon:**
|
46 |
|
47 |
+
* Google Analytics verification meta tag
|
48 |
+
* SpecificFeeds.com verification meta tag
|
49 |
+
* Meta tag with name="creator"
|
50 |
+
* Meta tag with name="publisher"
|
51 |
+
* Meta tag with name="language"
|
52 |
+
|
53 |
+
>**Contribution**
|
54 |
+
>
|
55 |
+
>Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to:
|
56 |
+
>
|
57 |
+
>* Please [donate](http://www.arthurgareginyan.com/donate.html) to support ongoing development. Your contribution would be greatly appreciated.
|
58 |
+
>* Please take the time to [rate and review](https://wordpress.org/support/view/plugin-reviews/all-meta-tags?rate=5#postform) this plugin.
|
59 |
+
>* Please [share with me](mailto:arthurgareginyan@gmail.com) if you have any ideas or suggestions to make this plugin better.
|
60 |
+
|
61 |
|
62 |
== Installation ==
|
63 |
Install "All Meta Tags" just as you would any other WordPress Plugin.
|
83 |
|
84 |
|
85 |
== Frequently Asked Questions ==
|
86 |
+
= Q. Will this Plugin work on my WordPress.COM website? =
|
87 |
A. Sorry, this plugin is available for use only on self-hosted (WordPress.org) websites.
|
88 |
|
89 |
= Q. Can I use this plugin on my language? =
|
97 |
A. I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description.
|
98 |
|
99 |
= Q. How much of keywords I can enter in the text field? =
|
100 |
+
A. I don't limit the number of characters.
|
101 |
+
|
102 |
+
= Q. What about compatibility with plugin "All in One SEO Pack" ? =
|
103 |
+
A. To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:
|
104 |
+
`<head>
|
105 |
+
...
|
106 |
+
<meta name="copyright" content="Copyright (c) 2013-2015 Arthur Gareginyan. All Rights Reserved.">
|
107 |
+
...
|
108 |
+
<meta name="copyright" content="Copyright 2015 Arthur Gareginyan. All Rights Reserved.">
|
109 |
+
...
|
110 |
+
</head>`
|
111 |
+
|
112 |
+
In the rest, the "All Meta Tags" and "All in One SEO Pack" is compatible.
|
113 |
+
|
114 |
+
= Q. Does this plugin require modification to the theme? =
|
115 |
+
A. Absolutely not. This plugin is added/configured entirely from the website's Admin section.
|
116 |
+
|
117 |
+
= Q. Does this require any knowledge of HTML or CSS? =
|
118 |
+
A. Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using a simple WordPress settings page.
|
119 |
+
|
120 |
+
= Q. It's not working. What could be wrong? =
|
121 |
+
A. As with every plugin, it's possible that things don't work. The most common reason for this is that the plugin has a conflict with another plugin you're using. 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.
|
122 |
|
123 |
= Q. Where to report bug if found? =
|
124 |
A. Please visit [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags) and report.
|
125 |
|
126 |
= Q. Where to share any ideas or suggestions to make the plugin better? =
|
127 |
+
A. Please send me email [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com).
|
128 |
+
|
129 |
+
= Q. I love this plugin! Can I help somehow? =
|
130 |
+
A. Yes, any financial contributions are welcome! Just visit my website and click on the donate link, and thank you! [My website](http://www.arthurgareginyan.com/donate.html)
|
131 |
|
132 |
|
133 |
== Screenshots ==
|
134 |
+
1. Plugin’s page.
|
135 |
+
|
|
|
|
|
|
|
136 |
|
137 |
== Other Notes ==
|
138 |
|
140 |
|
141 |
**License**
|
142 |
|
143 |
+
This plugin is licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html) and is distributed free of charge.
|
|
|
144 |
Commercial licensing (e.g. for projects that can’t use an open-source license) is available upon request.
|
145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
**Links**
|
147 |
|
148 |
* [Developer Website](http://www.arthurgareginyan.com)
|
|
|
149 |
* [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags)
|
150 |
|
151 |
== Changelog ==
|
152 |
+
= 2.0 =
|
153 |
+
* Some changes in design of settings page.
|
154 |
+
* Constants variables added.
|
155 |
+
* Text domain changed to "all-meta-tags".
|
156 |
+
* Added compatibility with the translate.wordpress.org.
|
157 |
+
* All images are moved to the directory "images".
|
158 |
+
* Image "btn_donateCC_LG.gif" is now located in the "images" directory.
|
159 |
+
* Plugin URI changed to GitHub repository.
|
160 |
+
* Added my personal ad about freelance.
|
161 |
+
* Removed custom "Saved" message.
|
162 |
+
* .pot file updated.
|
163 |
+
* Russian translation updated.
|
164 |
= 1.5 =
|
165 |
* Authors URI changed.
|
166 |
* Localization improved.
|
187 |
|
188 |
|
189 |
== Upgrade Notice ==
|
190 |
+
= 2.0 =
|
191 |
+
Please update to new release!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
= 1.0 =
|
193 |
Please update to first stable release!
|
|
|
|
|
194 |
= 0.2 =
|
195 |
+
Please update to beta version.
|