Version Description
- Added new constants: "SLUG", "_PREFIX", "_SETTINGS" and "NAME".
- Value of the "_VERSION" constant replaced with information from the plugin header data.
- All references to the plugin name, slug, prefix are replaced with constants.
- The "allmetatags_field" function improved.
- The "name" attribute removed from the "
- Code formatting improved.
- F.A.Q. section updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | All Meta Tags |
Version | 4.1 |
Comparing to | |
See all releases |
Code changes from version 4.0.1 to 4.1
- all-meta-tags.php +13 -9
- inc/php/core.php +18 -16
- inc/php/enqueue.php +11 -10
- inc/php/functional.php +60 -61
- inc/php/messages.php +6 -6
- inc/php/page.php +13 -11
- inc/php/settings.php +7 -7
- inc/php/uninstall.php +4 -4
- inc/php/version.php +6 -6
- languages/all-meta-tags-es_ES.mo +0 -0
- languages/all-meta-tags-es_ES.po +57 -45
- languages/all-meta-tags-es_MX.mo +0 -0
- languages/all-meta-tags-es_MX.po +59 -45
- languages/all-meta-tags-it_IT.mo +0 -0
- languages/all-meta-tags-it_IT.po +56 -45
- languages/all-meta-tags-ru_RU.mo +0 -0
- languages/all-meta-tags-ru_RU.po +59 -45
- languages/all-meta-tags.pot +57 -44
- readme.txt +17 -1
all-meta-tags.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom Meta Tags to WordPress website's header.
|
6 |
* Author: Arthur Gareginyan
|
7 |
* Author URI: http://www.arthurgareginyan.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
@@ -50,19 +50,23 @@
|
|
50 |
*
|
51 |
* @since 0.1
|
52 |
*/
|
53 |
-
defined('ABSPATH') or die("Restricted access!");
|
54 |
|
55 |
/**
|
56 |
* Define global constants
|
57 |
*
|
58 |
-
* @since
|
59 |
*/
|
60 |
-
defined('ALLMT_DIR') or define('ALLMT_DIR', dirname(plugin_basename(__FILE__)));
|
61 |
-
defined('ALLMT_BASE') or define('ALLMT_BASE', plugin_basename(__FILE__));
|
62 |
-
defined('ALLMT_URL') or define('ALLMT_URL', plugin_dir_url(__FILE__));
|
63 |
-
defined('ALLMT_PATH') or define('ALLMT_PATH', plugin_dir_path(__FILE__));
|
64 |
-
defined('ALLMT_TEXT') or define('ALLMT_TEXT', 'all-meta-tags');
|
65 |
-
defined('
|
|
|
|
|
|
|
|
|
66 |
|
67 |
/**
|
68 |
* Load the plugin modules
|
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.1
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
50 |
*
|
51 |
* @since 0.1
|
52 |
*/
|
53 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
54 |
|
55 |
/**
|
56 |
* Define global constants
|
57 |
*
|
58 |
+
* @since 4.1
|
59 |
*/
|
60 |
+
defined( 'ALLMT_DIR' ) or define( 'ALLMT_DIR', dirname( plugin_basename( __FILE__ ) ) );
|
61 |
+
defined( 'ALLMT_BASE' ) or define( 'ALLMT_BASE', plugin_basename( __FILE__ ) );
|
62 |
+
defined( 'ALLMT_URL' ) or define( 'ALLMT_URL', plugin_dir_url( __FILE__ ) );
|
63 |
+
defined( 'ALLMT_PATH' ) or define( 'ALLMT_PATH', plugin_dir_path( __FILE__ ) );
|
64 |
+
defined( 'ALLMT_TEXT' ) or define( 'ALLMT_TEXT', 'all-meta-tags' );
|
65 |
+
defined( 'ALLMT_SLUG' ) or define( 'ALLMT_SLUG', 'all-meta-tags' );
|
66 |
+
defined( 'ALLMT_PREFIX' ) or define( 'ALLMT_PREFIX', 'allmetatags' );
|
67 |
+
defined( 'ALLMT_SETTINGS' ) or define( 'ALLMT_SETTINGS', 'allmetatags' );
|
68 |
+
defined( 'ALLMT_NAME' ) or define( 'ALLMT_NAME', 'All Meta Tags' );
|
69 |
+
defined( 'ALLMT_VERSION' ) or define( 'ALLMT_VERSION', get_file_data( __FILE__, array( 'Version' ) ) );
|
70 |
|
71 |
/**
|
72 |
* Load the plugin modules
|
inc/php/core.php
CHANGED
@@ -5,17 +5,17 @@
|
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
-
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
10 |
/**
|
11 |
* Register text domain
|
12 |
*
|
13 |
-
* @since
|
14 |
*/
|
15 |
function allmetatags_textdomain() {
|
16 |
load_plugin_textdomain( ALLMT_TEXT, false, ALLMT_DIR . '/languages/' );
|
17 |
}
|
18 |
-
add_action( 'init', '
|
19 |
|
20 |
/**
|
21 |
* Print direct link to plugin admin page
|
@@ -23,25 +23,25 @@ add_action( 'init', 'allmetatags_textdomain' );
|
|
23 |
* Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
|
24 |
* and inserts a link to the plugin admin page
|
25 |
*
|
26 |
-
* @since
|
27 |
* @param array $links Array of links generated by WP in Plugin Admin page.
|
28 |
* @return array Array of links to be output on Plugin Admin page.
|
29 |
*/
|
30 |
function allmetatags_settings_link( $links ) {
|
31 |
-
$page = '<a href="' . admin_url( 'options-general.php?page=
|
32 |
array_unshift( $links, $page );
|
33 |
return $links;
|
34 |
}
|
35 |
-
add_filter( 'plugin_action_links_'.ALLMT_BASE, '
|
36 |
|
37 |
/**
|
38 |
* Print additional links to plugin meta row
|
39 |
*
|
40 |
-
* @since 4.
|
41 |
*/
|
42 |
function allmetatags_plugin_row_meta( $links, $file ) {
|
43 |
|
44 |
-
if ( strpos( $file, '
|
45 |
|
46 |
$new_links = array(
|
47 |
'donate' => '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank"><span class="dashicons dashicons-heart"></span> ' . __( 'Donate', ALLMT_TEXT ) . '</a>'
|
@@ -51,25 +51,27 @@ function allmetatags_plugin_row_meta( $links, $file ) {
|
|
51 |
|
52 |
return $links;
|
53 |
}
|
54 |
-
add_filter( 'plugin_row_meta', '
|
55 |
|
56 |
/**
|
57 |
* Register plugin's submenu in the "Settings" Admin Menu
|
58 |
*
|
59 |
-
* @since 4.
|
60 |
*/
|
61 |
function allmetatags_register_submenu_page() {
|
62 |
-
|
|
|
|
|
63 |
}
|
64 |
-
add_action( 'admin_menu', '
|
65 |
|
66 |
/**
|
67 |
* Register settings
|
68 |
*
|
69 |
-
* @since 4.
|
70 |
*/
|
71 |
function allmetatags_register_settings() {
|
72 |
-
register_setting( '
|
73 |
-
register_setting( '
|
74 |
}
|
75 |
-
add_action( 'admin_init', '
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
* Register text domain
|
12 |
*
|
13 |
+
* @since 4.1
|
14 |
*/
|
15 |
function allmetatags_textdomain() {
|
16 |
load_plugin_textdomain( ALLMT_TEXT, false, ALLMT_DIR . '/languages/' );
|
17 |
}
|
18 |
+
add_action( 'init', ALLMT_PREFIX . '_textdomain' );
|
19 |
|
20 |
/**
|
21 |
* Print direct link to plugin admin page
|
23 |
* Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
|
24 |
* and inserts a link to the plugin admin page
|
25 |
*
|
26 |
+
* @since 4.1
|
27 |
* @param array $links Array of links generated by WP in Plugin Admin page.
|
28 |
* @return array Array of links to be output on Plugin Admin page.
|
29 |
*/
|
30 |
function allmetatags_settings_link( $links ) {
|
31 |
+
$page = '<a href="' . admin_url( 'options-general.php?page=' . ALLMT_SLUG . '.php' ) .'">' . __( 'Settings', ALLMT_TEXT ) . '</a>';
|
32 |
array_unshift( $links, $page );
|
33 |
return $links;
|
34 |
}
|
35 |
+
add_filter( 'plugin_action_links_' . ALLMT_BASE, ALLMT_PREFIX . '_settings_link' );
|
36 |
|
37 |
/**
|
38 |
* Print additional links to plugin meta row
|
39 |
*
|
40 |
+
* @since 4.1
|
41 |
*/
|
42 |
function allmetatags_plugin_row_meta( $links, $file ) {
|
43 |
|
44 |
+
if ( strpos( $file, ALLMT_SLUG . '.php' ) !== false ) {
|
45 |
|
46 |
$new_links = array(
|
47 |
'donate' => '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank"><span class="dashicons dashicons-heart"></span> ' . __( 'Donate', ALLMT_TEXT ) . '</a>'
|
51 |
|
52 |
return $links;
|
53 |
}
|
54 |
+
add_filter( 'plugin_row_meta', ALLMT_PREFIX . '_plugin_row_meta', 10, 2 );
|
55 |
|
56 |
/**
|
57 |
* Register plugin's submenu in the "Settings" Admin Menu
|
58 |
*
|
59 |
+
* @since 4.1
|
60 |
*/
|
61 |
function allmetatags_register_submenu_page() {
|
62 |
+
$menu_title = ALLMT_NAME;
|
63 |
+
$capability = 'manage_options';
|
64 |
+
add_options_page( ALLMT_NAME, $menu_title, $capability, ALLMT_SLUG, ALLMT_PREFIX . '_render_submenu_page' );
|
65 |
}
|
66 |
+
add_action( 'admin_menu', ALLMT_PREFIX . '_register_submenu_page' );
|
67 |
|
68 |
/**
|
69 |
* Register settings
|
70 |
*
|
71 |
+
* @since 4.1
|
72 |
*/
|
73 |
function allmetatags_register_settings() {
|
74 |
+
register_setting( ALLMT_SETTINGS . '_settings_group', ALLMT_SETTINGS . '_settings' );
|
75 |
+
register_setting( ALLMT_SETTINGS . '_settings_group', ALLMT_SETTINGS . '_service_info' );
|
76 |
}
|
77 |
+
add_action( 'admin_init', ALLMT_PREFIX . '_register_settings' );
|
inc/php/enqueue.php
CHANGED
@@ -5,30 +5,31 @@
|
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
-
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
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 |
-
|
|
|
19 |
return;
|
20 |
}
|
21 |
|
22 |
// Style sheet
|
23 |
-
wp_enqueue_style( '
|
24 |
|
25 |
// JavaScript
|
26 |
-
wp_enqueue_script( '
|
27 |
|
28 |
// Bootstrap library
|
29 |
-
wp_enqueue_style( '
|
30 |
-
wp_enqueue_style( '
|
31 |
-
wp_enqueue_script( '
|
32 |
|
33 |
}
|
34 |
-
add_action( 'admin_enqueue_scripts', '
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
* Load scripts and style sheet for settings page
|
12 |
*
|
13 |
+
* @since 4.1
|
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_' . ALLMT_SLUG;
|
19 |
+
if ( $settings_page != $hook ) {
|
20 |
return;
|
21 |
}
|
22 |
|
23 |
// Style sheet
|
24 |
+
wp_enqueue_style( ALLMT_PREFIX . '-admin-css', ALLMT_URL . 'inc/css/admin.css' );
|
25 |
|
26 |
// JavaScript
|
27 |
+
wp_enqueue_script( ALLMT_PREFIX . '-admin-js', ALLMT_URL . 'inc/js/admin.js', array(), false, true );
|
28 |
|
29 |
// Bootstrap library
|
30 |
+
wp_enqueue_style( ALLMT_PREFIX . '-bootstrap-css', ALLMT_URL . 'inc/lib/bootstrap/bootstrap.css' );
|
31 |
+
wp_enqueue_style( ALLMT_PREFIX . '-bootstrap-theme-css', ALLMT_URL . 'inc/lib/bootstrap/bootstrap-theme.css' );
|
32 |
+
wp_enqueue_script( ALLMT_PREFIX . '-bootstrap-js', ALLMT_URL . 'inc/lib/bootstrap/bootstrap.js' );
|
33 |
|
34 |
}
|
35 |
+
add_action( 'admin_enqueue_scripts', ALLMT_PREFIX . '_load_scripts_admin' );
|
inc/php/functional.php
CHANGED
@@ -5,49 +5,38 @@
|
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
-
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
10 |
/**
|
11 |
-
* Render fields
|
12 |
*
|
13 |
-
* @since
|
14 |
*/
|
15 |
-
function allmetatags_field($name, $label, $placeholder, $help=null, $link=null, $textarea=null) {
|
16 |
|
17 |
-
//
|
18 |
-
$options = get_option( '
|
19 |
|
20 |
-
if ( !empty($options[$name]) )
|
21 |
$value = esc_attr( $options[$name] );
|
22 |
-
else
|
23 |
$value = "";
|
24 |
-
|
25 |
|
26 |
// Generate the table
|
27 |
-
if ( !empty($link) )
|
28 |
$link_out = "<a href='$link' target='_blank'>$label</a>";
|
29 |
-
else
|
30 |
$link_out = "$label";
|
31 |
-
|
32 |
-
|
33 |
-
if ( !empty($textarea) ) :
|
34 |
-
$field_out = "<textarea cols='50' rows='3' name='allmetatags_settings[$name]' placeholder='$placeholder'>$value</textarea>";
|
35 |
-
else :
|
36 |
-
$field_out = "<input type='text' name='allmetatags_settings[$name]' size='50' value='$value' placeholder='$placeholder'>";
|
37 |
-
endif;
|
38 |
|
39 |
-
if ( !empty($
|
40 |
-
$
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
</td>
|
45 |
-
</tr>";
|
46 |
-
else :
|
47 |
-
$help_out = "";
|
48 |
-
endif;
|
49 |
|
50 |
-
// Put table to the
|
51 |
$out = "<tr>
|
52 |
<th scope='row'>
|
53 |
$link_out
|
@@ -55,23 +44,33 @@ function allmetatags_field($name, $label, $placeholder, $help=null, $link=null,
|
|
55 |
<td>
|
56 |
$field_out
|
57 |
</td>
|
58 |
-
</tr>
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
|
61 |
// Print the generated table
|
62 |
-
echo $out;
|
63 |
}
|
64 |
|
65 |
/**
|
66 |
* Generate the Meta Tags
|
67 |
*
|
68 |
-
* @since
|
69 |
*/
|
70 |
function allmetatags_add_meta_tags() {
|
71 |
|
72 |
-
// Read options from BD
|
73 |
-
$options = get_option( '
|
74 |
|
|
|
75 |
$google = esc_textarea( $options['google'] );
|
76 |
$bing = esc_textarea( $options['bing'] );
|
77 |
$yandex = esc_textarea( $options['yandex'] );
|
@@ -101,87 +100,87 @@ function allmetatags_add_meta_tags() {
|
|
101 |
$metatags_arr[] = "";
|
102 |
|
103 |
// Web Master Tools
|
104 |
-
if (!empty($google)) {
|
105 |
$metatags_arr[] = "<meta name='google-site-verification' content='$google' />";
|
106 |
}
|
107 |
-
if (!empty($yandex)) {
|
108 |
$metatags_arr[] = "<meta name='yandex-verification' content='$yandex' />";
|
109 |
}
|
110 |
-
if (!empty($bing)) {
|
111 |
$metatags_arr[] = "<meta name='msvalidate.01' content='$bing' />";
|
112 |
}
|
113 |
|
114 |
// Website Verification Services
|
115 |
-
if (!empty($pinterest)) {
|
116 |
$metatags_arr[] = "<meta name='p:domain_verify' content='$pinterest' />";
|
117 |
}
|
118 |
-
if (!empty($google_author)) {
|
119 |
$metatags_arr[] = "<link rel='author' href='$google_author'>";
|
120 |
}
|
121 |
-
if (!empty($facebook)) {
|
122 |
$metatags_arr[] = "<meta name='article:publisher' content='$facebook' />";
|
123 |
}
|
124 |
-
if (!empty($twitter)) {
|
125 |
$metatags_arr[] = "<meta name='twitter:site' content='$twitter' />";
|
126 |
$metatags_arr[] = "<meta name='twitter:creator' content='$twitter' />";
|
127 |
}
|
128 |
-
if (!empty($alexa)) {
|
129 |
$metatags_arr[] = "<meta name='alexaVerifyID' content='$alexa' />";
|
130 |
}
|
131 |
-
if (!empty($norton)) {
|
132 |
$metatags_arr[] = "<meta name='norton-safeweb-site-verification' content='$norton' />";
|
133 |
}
|
134 |
-
if (!empty($wot)) {
|
135 |
$metatags_arr[] = "<meta name='wot-verification' content='$wot' />";
|
136 |
}
|
137 |
-
if (!empty($specificfeeds)) {
|
138 |
$metatags_arr[] = "<meta name='specificfeeds-verification-code' content='$specificfeeds' />";
|
139 |
}
|
140 |
-
if (!empty($custom_meta)) {
|
141 |
$metatags_arr[] = $custom_meta;
|
142 |
}
|
143 |
|
144 |
// Meta Tags for specific pages
|
145 |
if ( is_front_page() && is_home() ) {
|
146 |
// Default Home Page
|
147 |
-
if (!empty($home_description)) {
|
148 |
$metatags_arr[] = "<meta name='description' content='$blog_description' />";
|
149 |
}
|
150 |
-
if (!empty($home_keywords)) {
|
151 |
$metatags_arr[] = "<meta name='keywords' content='$blog_keywords' />";
|
152 |
}
|
153 |
} elseif ( is_front_page() ) {
|
154 |
// Static Home Page
|
155 |
-
if (!empty($home_description)) {
|
156 |
$metatags_arr[] = "<meta name='description' content='$home_description' />";
|
157 |
}
|
158 |
-
if (!empty($home_keywords)) {
|
159 |
$metatags_arr[] = "<meta name='keywords' content='$home_keywords' />";
|
160 |
}
|
161 |
} elseif ( is_home() ) {
|
162 |
// Blog Page
|
163 |
-
if (!empty($home_description)) {
|
164 |
$metatags_arr[] = "<meta name='description' content='$blog_description' />";
|
165 |
}
|
166 |
-
if (!empty($home_keywords)) {
|
167 |
$metatags_arr[] = "<meta name='keywords' content='$blog_keywords' />";
|
168 |
}
|
169 |
}
|
170 |
|
171 |
// Meta Tags for all website
|
172 |
-
if (!empty($author)) {
|
173 |
$metatags_arr[] = "<meta name='author' content='$author' />";
|
174 |
}
|
175 |
-
if (!empty($designer)) {
|
176 |
$metatags_arr[] = "<meta name='designer' content='$designer' />";
|
177 |
}
|
178 |
-
if (!empty($contact)) {
|
179 |
$metatags_arr[] = "<meta name='contact' content='$contact' />";
|
180 |
}
|
181 |
-
if (!empty($copyright)) {
|
182 |
$metatags_arr[] = "<meta name='copyright' content='$copyright' />";
|
183 |
}
|
184 |
-
if (!empty($keywords)) {
|
185 |
$metatags_arr[] = "<meta name='keywords' content='$keywords' />";
|
186 |
}
|
187 |
|
@@ -193,7 +192,7 @@ function allmetatags_add_meta_tags() {
|
|
193 |
$name = get_the_title();
|
194 |
$description = get_the_excerpt();
|
195 |
$image = simplexml_load_string(get_the_post_thumbnail());
|
196 |
-
if ( !empty($image) ) {
|
197 |
$imagesrc = $image->attributes()->src;
|
198 |
} else {
|
199 |
$imagesrc = "";
|
@@ -228,7 +227,7 @@ function allmetatags_add_meta_tags() {
|
|
228 |
/**
|
229 |
* Include the Meta Tags in head area
|
230 |
*
|
231 |
-
* @since 1
|
232 |
*/
|
233 |
function allmetatags_add_metadata_head() {
|
234 |
echo PHP_EOL,
|
@@ -236,4 +235,4 @@ function allmetatags_add_metadata_head() {
|
|
236 |
PHP_EOL,
|
237 |
PHP_EOL;
|
238 |
}
|
239 |
-
add_action( 'wp_head', '
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
+
* Render fields for saving settings data to BD
|
12 |
*
|
13 |
+
* @since 4.1
|
14 |
*/
|
15 |
+
function allmetatags_field( $name, $label, $placeholder, $help=null, $link=null, $textarea=null ) {
|
16 |
|
17 |
+
// Read options from BD
|
18 |
+
$options = get_option( ALLMT_SETTINGS . '_settings' );
|
19 |
|
20 |
+
if ( !empty( $options[$name] ) ) {
|
21 |
$value = esc_attr( $options[$name] );
|
22 |
+
} else {
|
23 |
$value = "";
|
24 |
+
}
|
25 |
|
26 |
// Generate the table
|
27 |
+
if ( !empty( $link ) ) {
|
28 |
$link_out = "<a href='$link' target='_blank'>$label</a>";
|
29 |
+
} else {
|
30 |
$link_out = "$label";
|
31 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
+
if ( !empty( $textarea ) ) {
|
34 |
+
$field_out = "<textarea cols='50' rows='3' name='" . ALLMT_SETTINGS . "_settings[$name]' placeholder='$placeholder'>$value</textarea>";
|
35 |
+
} else {
|
36 |
+
$field_out = "<input type='text' name='" . ALLMT_SETTINGS . "_settings[$name]' size='50' value='$value' placeholder='$placeholder'>";
|
37 |
+
}
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
+
// Put table to the variables $out and $help_out
|
40 |
$out = "<tr>
|
41 |
<th scope='row'>
|
42 |
$link_out
|
44 |
<td>
|
45 |
$field_out
|
46 |
</td>
|
47 |
+
</tr>";
|
48 |
+
if ( !empty( $help ) ) {
|
49 |
+
$help_out = "<tr>
|
50 |
+
<td></td>
|
51 |
+
<td class='help-text'>
|
52 |
+
$help
|
53 |
+
</td>
|
54 |
+
</tr>";
|
55 |
+
} else {
|
56 |
+
$help_out = "";
|
57 |
+
}
|
58 |
|
59 |
// Print the generated table
|
60 |
+
echo $out . $help_out;
|
61 |
}
|
62 |
|
63 |
/**
|
64 |
* Generate the Meta Tags
|
65 |
*
|
66 |
+
* @since 4.1
|
67 |
*/
|
68 |
function allmetatags_add_meta_tags() {
|
69 |
|
70 |
+
// Read options from BD
|
71 |
+
$options = get_option( ALLMT_SETTINGS . '_settings' );
|
72 |
|
73 |
+
// Sanitiz data and declare variables
|
74 |
$google = esc_textarea( $options['google'] );
|
75 |
$bing = esc_textarea( $options['bing'] );
|
76 |
$yandex = esc_textarea( $options['yandex'] );
|
100 |
$metatags_arr[] = "";
|
101 |
|
102 |
// Web Master Tools
|
103 |
+
if ( !empty( $google ) ) {
|
104 |
$metatags_arr[] = "<meta name='google-site-verification' content='$google' />";
|
105 |
}
|
106 |
+
if ( !empty( $yandex ) ) {
|
107 |
$metatags_arr[] = "<meta name='yandex-verification' content='$yandex' />";
|
108 |
}
|
109 |
+
if ( !empty( $bing ) ) {
|
110 |
$metatags_arr[] = "<meta name='msvalidate.01' content='$bing' />";
|
111 |
}
|
112 |
|
113 |
// Website Verification Services
|
114 |
+
if ( !empty( $pinterest ) ) {
|
115 |
$metatags_arr[] = "<meta name='p:domain_verify' content='$pinterest' />";
|
116 |
}
|
117 |
+
if ( !empty( $google_author ) ) {
|
118 |
$metatags_arr[] = "<link rel='author' href='$google_author'>";
|
119 |
}
|
120 |
+
if ( !empty( $facebook ) ) {
|
121 |
$metatags_arr[] = "<meta name='article:publisher' content='$facebook' />";
|
122 |
}
|
123 |
+
if ( !empty( $twitter ) ) {
|
124 |
$metatags_arr[] = "<meta name='twitter:site' content='$twitter' />";
|
125 |
$metatags_arr[] = "<meta name='twitter:creator' content='$twitter' />";
|
126 |
}
|
127 |
+
if ( !empty( $alexa ) ) {
|
128 |
$metatags_arr[] = "<meta name='alexaVerifyID' content='$alexa' />";
|
129 |
}
|
130 |
+
if ( !empty( $norton ) ) {
|
131 |
$metatags_arr[] = "<meta name='norton-safeweb-site-verification' content='$norton' />";
|
132 |
}
|
133 |
+
if ( !empty( $wot ) ) {
|
134 |
$metatags_arr[] = "<meta name='wot-verification' content='$wot' />";
|
135 |
}
|
136 |
+
if ( !empty( $specificfeeds ) ) {
|
137 |
$metatags_arr[] = "<meta name='specificfeeds-verification-code' content='$specificfeeds' />";
|
138 |
}
|
139 |
+
if ( !empty( $custom_meta ) ) {
|
140 |
$metatags_arr[] = $custom_meta;
|
141 |
}
|
142 |
|
143 |
// Meta Tags for specific pages
|
144 |
if ( is_front_page() && is_home() ) {
|
145 |
// Default Home Page
|
146 |
+
if ( !empty( $home_description ) ) {
|
147 |
$metatags_arr[] = "<meta name='description' content='$blog_description' />";
|
148 |
}
|
149 |
+
if ( !empty( $home_keywords ) ) {
|
150 |
$metatags_arr[] = "<meta name='keywords' content='$blog_keywords' />";
|
151 |
}
|
152 |
} elseif ( is_front_page() ) {
|
153 |
// Static Home Page
|
154 |
+
if ( !empty( $home_description ) ) {
|
155 |
$metatags_arr[] = "<meta name='description' content='$home_description' />";
|
156 |
}
|
157 |
+
if ( !empty( $home_keywords ) ) {
|
158 |
$metatags_arr[] = "<meta name='keywords' content='$home_keywords' />";
|
159 |
}
|
160 |
} elseif ( is_home() ) {
|
161 |
// Blog Page
|
162 |
+
if ( !empty( $home_description ) ) {
|
163 |
$metatags_arr[] = "<meta name='description' content='$blog_description' />";
|
164 |
}
|
165 |
+
if ( !empty( $home_keywords ) ) {
|
166 |
$metatags_arr[] = "<meta name='keywords' content='$blog_keywords' />";
|
167 |
}
|
168 |
}
|
169 |
|
170 |
// Meta Tags for all website
|
171 |
+
if ( !empty( $author ) ) {
|
172 |
$metatags_arr[] = "<meta name='author' content='$author' />";
|
173 |
}
|
174 |
+
if ( !empty( $designer ) ) {
|
175 |
$metatags_arr[] = "<meta name='designer' content='$designer' />";
|
176 |
}
|
177 |
+
if ( !empty( $contact ) ) {
|
178 |
$metatags_arr[] = "<meta name='contact' content='$contact' />";
|
179 |
}
|
180 |
+
if ( !empty( $copyright ) ) {
|
181 |
$metatags_arr[] = "<meta name='copyright' content='$copyright' />";
|
182 |
}
|
183 |
+
if ( !empty( $keywords ) ) {
|
184 |
$metatags_arr[] = "<meta name='keywords' content='$keywords' />";
|
185 |
}
|
186 |
|
192 |
$name = get_the_title();
|
193 |
$description = get_the_excerpt();
|
194 |
$image = simplexml_load_string(get_the_post_thumbnail());
|
195 |
+
if ( !empty( $image ) ) {
|
196 |
$imagesrc = $image->attributes()->src;
|
197 |
} else {
|
198 |
$imagesrc = "";
|
227 |
/**
|
228 |
* Include the Meta Tags in head area
|
229 |
*
|
230 |
+
* @since 4.1
|
231 |
*/
|
232 |
function allmetatags_add_metadata_head() {
|
233 |
echo PHP_EOL,
|
235 |
PHP_EOL,
|
236 |
PHP_EOL;
|
237 |
}
|
238 |
+
add_action( 'wp_head', ALLMT_PREFIX . '_add_metadata_head', 0 );
|
inc/php/messages.php
CHANGED
@@ -5,18 +5,18 @@
|
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
-
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
10 |
/**
|
11 |
* Hello message - Bootstrap Modal
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
function allmetatags_hello_message() {
|
16 |
|
17 |
-
$options = get_option( '
|
18 |
|
19 |
-
if ( !empty($options) ) {
|
20 |
return;
|
21 |
}
|
22 |
|
@@ -48,11 +48,11 @@ function allmetatags_hello_message() {
|
|
48 |
/**
|
49 |
* Error message (When the old version of plugin installed) - Bootstrap Modal
|
50 |
*
|
51 |
-
* @since 4.
|
52 |
*/
|
53 |
function allmetatags_error_message() {
|
54 |
|
55 |
-
$info = get_option( '
|
56 |
$old_version = isset( $info['old_version'] ) && !empty( $info['old_version'] ) ? $info['old_version'] : '0';
|
57 |
|
58 |
if ( $old_version != '1' ) {
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
* Hello message - Bootstrap Modal
|
12 |
*
|
13 |
+
* @since 4.1
|
14 |
*/
|
15 |
function allmetatags_hello_message() {
|
16 |
|
17 |
+
$options = get_option( ALLMT_SETTINGS . '_settings' );
|
18 |
|
19 |
+
if ( !empty( $options ) ) {
|
20 |
return;
|
21 |
}
|
22 |
|
48 |
/**
|
49 |
* Error message (When the old version of plugin installed) - Bootstrap Modal
|
50 |
*
|
51 |
+
* @since 4.1
|
52 |
*/
|
53 |
function allmetatags_error_message() {
|
54 |
|
55 |
+
$info = get_option( ALLMT_SETTINGS . '_service_info' );
|
56 |
$old_version = isset( $info['old_version'] ) && !empty( $info['old_version'] ) ? $info['old_version'] : '0';
|
57 |
|
58 |
if ( $old_version != '1' ) {
|
inc/php/page.php
CHANGED
@@ -5,12 +5,12 @@
|
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
-
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
function allmetatags_render_submenu_page() {
|
16 |
|
@@ -22,7 +22,7 @@ function allmetatags_render_submenu_page() {
|
|
22 |
?>
|
23 |
<div class="wrap">
|
24 |
<h2>
|
25 |
-
<?php
|
26 |
<span>
|
27 |
<?php printf(
|
28 |
__( 'by %s Arthur Gareginyan %s', ALLMT_TEXT ),
|
@@ -46,7 +46,6 @@ function allmetatags_render_submenu_page() {
|
|
46 |
</ul>
|
47 |
<!-- END-TABS NAVIGATION MENU -->
|
48 |
|
49 |
-
|
50 |
<!-- TAB 1 -->
|
51 |
<div class="tab-page fade active in" id="tab-core">
|
52 |
|
@@ -80,7 +79,7 @@ function allmetatags_render_submenu_page() {
|
|
80 |
|
81 |
<div class="panel-group" id="collapse-group">
|
82 |
<?php
|
83 |
-
$loopvalue = '
|
84 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
85 |
echo '<div class="panel panel-default">
|
86 |
<div class="panel-heading">
|
@@ -140,24 +139,27 @@ function allmetatags_render_submenu_page() {
|
|
140 |
<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.', ALLMT_TEXT ); ?><br><br>
|
141 |
<?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.', ALLMT_TEXT ); ?></div>
|
142 |
|
143 |
-
<div class="question-11 question-red"><?php _e( '
|
144 |
-
<div class="answer-11"><?php
|
|
|
|
|
|
|
145 |
__( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.', ALLMT_TEXT ),
|
146 |
'<a href="https://github.com/ArthurGareginyan/all-meta-tags" target="_blank">',
|
147 |
'</a>'
|
148 |
);
|
149 |
?></div>
|
150 |
|
151 |
-
<div class="question-
|
152 |
-
<div class="answer-
|
153 |
__( 'Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!', ALLMT_TEXT ),
|
154 |
'<a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">',
|
155 |
'</a>'
|
156 |
);
|
157 |
?></div>
|
158 |
|
159 |
-
<div class="question-
|
160 |
-
<div class="answer-
|
161 |
__( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', ALLMT_TEXT ),
|
162 |
'<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
|
163 |
'</a>'
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
* Render Settings Page
|
12 |
*
|
13 |
+
* @since 4.1
|
14 |
*/
|
15 |
function allmetatags_render_submenu_page() {
|
16 |
|
22 |
?>
|
23 |
<div class="wrap">
|
24 |
<h2>
|
25 |
+
<?php echo ALLMT_NAME; ?>
|
26 |
<span>
|
27 |
<?php printf(
|
28 |
__( 'by %s Arthur Gareginyan %s', ALLMT_TEXT ),
|
46 |
</ul>
|
47 |
<!-- END-TABS NAVIGATION MENU -->
|
48 |
|
|
|
49 |
<!-- TAB 1 -->
|
50 |
<div class="tab-page fade active in" id="tab-core">
|
51 |
|
79 |
|
80 |
<div class="panel-group" id="collapse-group">
|
81 |
<?php
|
82 |
+
$loopvalue = '14';
|
83 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
84 |
echo '<div class="panel panel-default">
|
85 |
<div class="panel-heading">
|
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.', ALLMT_TEXT ); ?><br><br>
|
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.', ALLMT_TEXT ); ?></div>
|
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?', ALLMT_TEXT ); ?></div>
|
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.', ALLMT_TEXT ); ?></div>
|
144 |
+
|
145 |
+
<div class="question-12 question-red"><?php _e( 'Where to report bug if found?', ALLMT_TEXT ); ?></div>
|
146 |
+
<div class="answer-12"><?php printf(
|
147 |
__( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.', ALLMT_TEXT ),
|
148 |
'<a href="https://github.com/ArthurGareginyan/all-meta-tags" target="_blank">',
|
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?', ALLMT_TEXT ); ?></div>
|
154 |
+
<div class="answer-13"><?php printf(
|
155 |
__( 'Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!', ALLMT_TEXT ),
|
156 |
'<a href="mailto:arthurgareginyan@gmail.com?subject=All Meta Tags">',
|
157 |
'</a>'
|
158 |
);
|
159 |
?></div>
|
160 |
|
161 |
+
<div class="question-14"><?php _e( 'I love this plugin! Can I help somehow?', ALLMT_TEXT ); ?></div>
|
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!', ALLMT_TEXT ),
|
164 |
'<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
|
165 |
'</a>'
|
inc/php/settings.php
CHANGED
@@ -5,12 +5,12 @@
|
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
-
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
10 |
/**
|
11 |
* Render Settings Tab
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
?>
|
16 |
<!-- SIDEBAR -->
|
@@ -37,7 +37,7 @@ defined('ABSPATH') or die("Restricted access!");
|
|
37 |
<h3 class="title"><?php _e( 'Help', ALLMT_TEXT ); ?></h3>
|
38 |
<div class="inside">
|
39 |
<p><?php _e( 'Got something to say? Need help?', ALLMT_TEXT ); ?></p>
|
40 |
-
<p><a href="mailto:arthurgareginyan@gmail.com?subject
|
41 |
</div>
|
42 |
</div>
|
43 |
|
@@ -50,12 +50,12 @@ defined('ABSPATH') or die("Restricted access!");
|
|
50 |
<div id="post-body-content" class="has-sidebar-content">
|
51 |
<div class="meta-box-sortabless">
|
52 |
|
53 |
-
<form
|
54 |
-
<?php settings_fields( '
|
55 |
|
56 |
<?php
|
57 |
// Get options from the BD
|
58 |
-
$options = get_option( '
|
59 |
?>
|
60 |
|
61 |
<div class="postbox" id="WebMasterTools">
|
@@ -234,7 +234,7 @@ defined('ABSPATH') or die("Restricted access!");
|
|
234 |
</div>
|
235 |
</div>
|
236 |
|
237 |
-
<div id="support-addition"
|
238 |
<h3 class="title"><?php _e( 'Support', ALLMT_TEXT ); ?></h3>
|
239 |
<div class="inside">
|
240 |
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', ALLMT_TEXT ); ?></p>
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
* Render Settings Tab
|
12 |
*
|
13 |
+
* @since 4.1
|
14 |
*/
|
15 |
?>
|
16 |
<!-- SIDEBAR -->
|
37 |
<h3 class="title"><?php _e( 'Help', ALLMT_TEXT ); ?></h3>
|
38 |
<div class="inside">
|
39 |
<p><?php _e( 'Got something to say? Need help?', ALLMT_TEXT ); ?></p>
|
40 |
+
<p><a href="mailto:arthurgareginyan@gmail.com?subject=<?php echo ALLMT_NAME; ?>">arthurgareginyan@gmail.com</a></p>
|
41 |
</div>
|
42 |
</div>
|
43 |
|
50 |
<div id="post-body-content" class="has-sidebar-content">
|
51 |
<div class="meta-box-sortabless">
|
52 |
|
53 |
+
<form action="options.php" method="post" enctype="multipart/form-data">
|
54 |
+
<?php settings_fields( ALLMT_SETTINGS . '_settings_group' ); ?>
|
55 |
|
56 |
<?php
|
57 |
// Get options from the BD
|
58 |
+
$options = get_option( ALLMT_SETTINGS . '_settings' );
|
59 |
?>
|
60 |
|
61 |
<div class="postbox" id="WebMasterTools">
|
234 |
</div>
|
235 |
</div>
|
236 |
|
237 |
+
<div class="postbox" id="support-addition">
|
238 |
<h3 class="title"><?php _e( 'Support', ALLMT_TEXT ); ?></h3>
|
239 |
<div class="inside">
|
240 |
<p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', ALLMT_TEXT ); ?></p>
|
inc/php/uninstall.php
CHANGED
@@ -5,14 +5,14 @@
|
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
-
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
10 |
/**
|
11 |
* Delete options on uninstall
|
12 |
*
|
13 |
-
* @since
|
14 |
*/
|
15 |
function allmetatags_uninstall() {
|
16 |
-
delete_option( '
|
17 |
}
|
18 |
-
register_uninstall_hook( __FILE__, '
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
* Delete options on uninstall
|
12 |
*
|
13 |
+
* @since 4.1
|
14 |
*/
|
15 |
function allmetatags_uninstall() {
|
16 |
+
delete_option( ALLMT_SETTINGS . '_settings' );
|
17 |
}
|
18 |
+
register_uninstall_hook( __FILE__, ALLMT_PREFIX . '_uninstall' );
|
inc/php/version.php
CHANGED
@@ -5,12 +5,12 @@
|
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
-
defined('ABSPATH') or die("Restricted access!");
|
9 |
|
10 |
/**
|
11 |
* Function for managing information about the version number of the plugin
|
12 |
*
|
13 |
-
* @since 4.
|
14 |
*/
|
15 |
function allmetatags_plugin_version_number() {
|
16 |
|
@@ -19,7 +19,7 @@ function allmetatags_plugin_version_number() {
|
|
19 |
// - Make the "$info" array if the plugin service information in the database is not exist
|
20 |
// - Get the current plugin version number from the database
|
21 |
// - Get the new plugin version number from the global constant
|
22 |
-
$info = get_option( '
|
23 |
if ( !is_array( $info ) ) {
|
24 |
$info = array();
|
25 |
}
|
@@ -39,7 +39,7 @@ function allmetatags_plugin_version_number() {
|
|
39 |
if ( $info['old_version'] == '1' ) {
|
40 |
|
41 |
$info['old_version'] = '0';
|
42 |
-
update_option( '
|
43 |
|
44 |
}
|
45 |
|
@@ -54,7 +54,7 @@ function allmetatags_plugin_version_number() {
|
|
54 |
|
55 |
$info['version'] = $new_number;
|
56 |
$info['old_version'] = '0';
|
57 |
-
update_option( '
|
58 |
|
59 |
return;
|
60 |
}
|
@@ -65,7 +65,7 @@ function allmetatags_plugin_version_number() {
|
|
65 |
if ( $new_number < $current_number ) {
|
66 |
|
67 |
$info['old_version'] = '1';
|
68 |
-
update_option( '
|
69 |
|
70 |
return;
|
71 |
}
|
5 |
*
|
6 |
* @since 0.1
|
7 |
*/
|
8 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
9 |
|
10 |
/**
|
11 |
* Function for managing information about the version number of the plugin
|
12 |
*
|
13 |
+
* @since 4.1
|
14 |
*/
|
15 |
function allmetatags_plugin_version_number() {
|
16 |
|
19 |
// - Make the "$info" array if the plugin service information in the database is not exist
|
20 |
// - Get the current plugin version number from the database
|
21 |
// - Get the new plugin version number from the global constant
|
22 |
+
$info = get_option( ALLMT_SETTINGS . '_service_info' );
|
23 |
if ( !is_array( $info ) ) {
|
24 |
$info = array();
|
25 |
}
|
39 |
if ( $info['old_version'] == '1' ) {
|
40 |
|
41 |
$info['old_version'] = '0';
|
42 |
+
update_option( ALLMT_SETTINGS . '_service_info', $info );
|
43 |
|
44 |
}
|
45 |
|
54 |
|
55 |
$info['version'] = $new_number;
|
56 |
$info['old_version'] = '0';
|
57 |
+
update_option( ALLMT_SETTINGS . '_service_info', $info );
|
58 |
|
59 |
return;
|
60 |
}
|
65 |
if ( $new_number < $current_number ) {
|
66 |
|
67 |
$info['old_version'] = '1';
|
68 |
+
update_option( ALLMT_SETTINGS . '_service_info', $info );
|
69 |
|
70 |
return;
|
71 |
}
|
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-05-
|
7 |
-
"PO-Revision-Date: 2017-05-
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
@@ -29,11 +29,6 @@ msgstr "Ajustes"
|
|
29 |
msgid "Donate"
|
30 |
msgstr "Hacer una donación"
|
31 |
|
32 |
-
#. Plugin Name of the plugin/theme
|
33 |
-
#: inc/php/core.php:62 inc/php/page.php:25
|
34 |
-
msgid "All Meta Tags"
|
35 |
-
msgstr "Todas las meta etiquetas"
|
36 |
-
|
37 |
#: inc/php/messages.php:30
|
38 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
39 |
msgstr ""
|
@@ -56,7 +51,7 @@ msgstr ""
|
|
56 |
msgid "by %s Arthur Gareginyan %s"
|
57 |
msgstr "por %s Arthur Gareginyan %s"
|
58 |
|
59 |
-
#: inc/php/page.php:41 inc/php/page.php:
|
60 |
msgid "Usage"
|
61 |
msgstr "Uso"
|
62 |
|
@@ -64,11 +59,11 @@ msgstr "Uso"
|
|
64 |
msgid "F.A.Q."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: inc/php/page.php:43 inc/php/page.php:
|
68 |
msgid "Author"
|
69 |
msgstr "Autor"
|
70 |
|
71 |
-
#: inc/php/page.php:44 inc/php/page.php:
|
72 |
msgid "Support"
|
73 |
msgstr "Soporte"
|
74 |
|
@@ -76,51 +71,51 @@ msgstr "Soporte"
|
|
76 |
msgid "Family"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/php/page.php:
|
80 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/php/page.php:
|
84 |
msgid "Go to the \"Settings\" tab."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: inc/php/page.php:
|
88 |
msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/page.php:
|
92 |
msgid "Enjoy the improved SEO of your website."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: inc/php/page.php:
|
96 |
msgid "It's that simple!"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/php/page.php:
|
100 |
msgid "Note!"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: inc/php/page.php:
|
104 |
msgid "If you want more options then tell me and I will be happy to add it."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: inc/php/page.php:
|
108 |
msgid "Frequently Asked Questions"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: inc/php/page.php:
|
112 |
msgid "Will this plugin work on my WordPress.COM website?"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/php/page.php:
|
116 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: inc/php/page.php:
|
120 |
msgid "Can I use this plugin on my language?"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/page.php:
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"Yes. But If your language is not available then you can make one. This plugin is ready for translation. "
|
@@ -129,39 +124,39 @@ msgid ""
|
|
129 |
"(<code>*.po, *.mo</code>) to me at the %s and I will include the translation within the next plugin update."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/php/page.php:
|
133 |
msgid "How does it work?"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/page.php:
|
137 |
msgid ""
|
138 |
"On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save "
|
139 |
"Changes\" button. Enjoy the improved SEO of your website. It's that simple!"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "How much of description I can enter in the text field?"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid ""
|
148 |
"I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
|
149 |
"description."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/php/page.php:
|
153 |
msgid "How much of keywords I can enter in the text field?"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/php/page.php:
|
157 |
msgid "I don't limit the number of characters."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: inc/php/page.php:
|
161 |
msgid "I can't get verify my website. What am I doing wrong?"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: inc/php/page.php:
|
165 |
msgid ""
|
166 |
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is "
|
167 |
"confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the "
|
@@ -169,43 +164,43 @@ msgid ""
|
|
169 |
"paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: inc/php/page.php:
|
173 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/page.php:
|
177 |
msgid ""
|
178 |
"To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
|
179 |
"plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: inc/php/page.php:
|
183 |
msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: inc/php/page.php:
|
187 |
msgid "Does this plugin requires any modification of the theme?"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: inc/php/page.php:
|
191 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: inc/php/page.php:
|
195 |
msgid "Does this require any knowledge of HTML or CSS?"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: inc/php/page.php:
|
199 |
msgid ""
|
200 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
|
201 |
"settings page."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
msgid "It's not working. What could be wrong?"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/page.php:
|
209 |
msgid ""
|
210 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a web "
|
211 |
"browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to "
|
@@ -213,37 +208,50 @@ msgid ""
|
|
213 |
"may solve the problem."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
msgid ""
|
218 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's "
|
219 |
"support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much "
|
220 |
"information as possible, including a link to your website where the problem can be seen."
|
221 |
msgstr ""
|
222 |
|
|
|
|
|
|
|
|
|
|
|
223 |
#: inc/php/page.php:143
|
224 |
-
msgid "
|
|
|
|
|
|
|
|
|
225 |
msgstr ""
|
226 |
|
227 |
#: inc/php/page.php:145
|
|
|
|
|
|
|
|
|
228 |
#, php-format
|
229 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/php/page.php:
|
237 |
#, php-format
|
238 |
msgid ""
|
239 |
"Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: inc/php/page.php:
|
243 |
msgid "I love this plugin! Can I help somehow?"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/php/page.php:
|
247 |
#, php-format
|
248 |
msgid ""
|
249 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and "
|
@@ -528,6 +536,10 @@ msgstr ""
|
|
528 |
"Puedes revisar los datos generados para las páginas de tu sitio web <a href=\"https://search.google.com/"
|
529 |
"structured-data/testing-tool\" target=\"_blank\">aquí</a>."
|
530 |
|
|
|
|
|
|
|
|
|
531 |
#. Plugin URI of the plugin/theme
|
532 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
533 |
msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - All Meta Tags - Development (trunk)\n"
|
6 |
+
"POT-Creation-Date: 2017-05-23 08:33+0300\n"
|
7 |
+
"PO-Revision-Date: 2017-05-23 08:33+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: es\n"
|
29 |
msgid "Donate"
|
30 |
msgstr "Hacer una donación"
|
31 |
|
|
|
|
|
|
|
|
|
|
|
32 |
#: inc/php/messages.php:30
|
33 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
34 |
msgstr ""
|
51 |
msgid "by %s Arthur Gareginyan %s"
|
52 |
msgstr "por %s Arthur Gareginyan %s"
|
53 |
|
54 |
+
#: inc/php/page.php:41 inc/php/page.php:60
|
55 |
msgid "Usage"
|
56 |
msgstr "Uso"
|
57 |
|
59 |
msgid "F.A.Q."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
|
63 |
msgid "Author"
|
64 |
msgstr "Autor"
|
65 |
|
66 |
+
#: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28 inc/php/settings.php:238
|
67 |
msgid "Support"
|
68 |
msgstr "Soporte"
|
69 |
|
71 |
msgid "Family"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/php/page.php:62
|
75 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: inc/php/page.php:64
|
79 |
msgid "Go to the \"Settings\" tab."
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: inc/php/page.php:65
|
83 |
msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/php/page.php:66
|
87 |
msgid "Enjoy the improved SEO of your website."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/php/page.php:66
|
91 |
msgid "It's that simple!"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/php/page.php:68
|
95 |
msgid "Note!"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/page.php:68
|
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:77
|
103 |
msgid "Frequently Asked Questions"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: inc/php/page.php:99
|
107 |
msgid "Will this plugin work on my WordPress.COM website?"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/php/page.php:100
|
111 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/php/page.php:102
|
115 |
msgid "Can I use this plugin on my language?"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:104
|
119 |
#, php-format
|
120 |
msgid ""
|
121 |
"Yes. But If your language is not available then you can make one. This plugin is ready for translation. "
|
124 |
"(<code>*.po, *.mo</code>) to me at the %s and I will include the translation within the next plugin update."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: inc/php/page.php:109
|
128 |
msgid "How does it work?"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: inc/php/page.php:110
|
132 |
msgid ""
|
133 |
"On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save "
|
134 |
"Changes\" button. Enjoy the improved SEO of your website. It's that simple!"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: inc/php/page.php:112
|
138 |
msgid "How much of description I can enter in the text field?"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: inc/php/page.php:113
|
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:115
|
148 |
msgid "How much of keywords I can enter in the text field?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: inc/php/page.php:116
|
152 |
msgid "I don't limit the number of characters."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/php/page.php:118
|
156 |
msgid "I can't get verify my website. What am I doing wrong?"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/php/page.php:119
|
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 |
"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:121
|
168 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: inc/php/page.php:122
|
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:130
|
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:132
|
182 |
msgid "Does this plugin requires any modification of the theme?"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: inc/php/page.php:133
|
186 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: inc/php/page.php:135
|
190 |
msgid "Does this require any knowledge of HTML or CSS?"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: inc/php/page.php:136
|
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:138
|
200 |
msgid "It's not working. What could be wrong?"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: inc/php/page.php:139
|
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 |
"may solve the problem."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: inc/php/page.php:140
|
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:142
|
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:143
|
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 "
|
227 |
+
"some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login "
|
228 |
+
"to the website, this too can help."
|
229 |
msgstr ""
|
230 |
|
231 |
#: inc/php/page.php:145
|
232 |
+
msgid "Where to report bug if found?"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: inc/php/page.php:147
|
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:153
|
241 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/php/page.php:155
|
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:161
|
251 |
msgid "I love this plugin! Can I help somehow?"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/php/page.php:163
|
255 |
#, php-format
|
256 |
msgid ""
|
257 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and "
|
536 |
"Puedes revisar los datos generados para las páginas de tu sitio web <a href=\"https://search.google.com/"
|
537 |
"structured-data/testing-tool\" target=\"_blank\">aquí</a>."
|
538 |
|
539 |
+
#. Plugin Name of the plugin/theme
|
540 |
+
msgid "All Meta Tags"
|
541 |
+
msgstr "Todas las meta etiquetas"
|
542 |
+
|
543 |
#. Plugin URI of the plugin/theme
|
544 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
545 |
msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
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-05-
|
6 |
-
"PO-Revision-Date: 2017-05-
|
7 |
"Last-Translator: Sergio <srg2010@yahoo.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_MX\n"
|
@@ -32,11 +32,6 @@ msgstr "Ajustes"
|
|
32 |
msgid "Donate"
|
33 |
msgstr "Donar"
|
34 |
|
35 |
-
#. Plugin Name of the plugin/theme
|
36 |
-
#: inc/php/core.php:62 inc/php/page.php:25
|
37 |
-
msgid "All Meta Tags"
|
38 |
-
msgstr "Todos los Meta Tags"
|
39 |
-
|
40 |
#: inc/php/messages.php:30
|
41 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
42 |
msgstr ""
|
@@ -59,7 +54,7 @@ msgstr ""
|
|
59 |
msgid "by %s Arthur Gareginyan %s"
|
60 |
msgstr "por %s Arthur Gareginyan %s"
|
61 |
|
62 |
-
#: inc/php/page.php:41 inc/php/page.php:
|
63 |
msgid "Usage"
|
64 |
msgstr "Uso"
|
65 |
|
@@ -67,11 +62,11 @@ msgstr "Uso"
|
|
67 |
msgid "F.A.Q."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: inc/php/page.php:43 inc/php/page.php:
|
71 |
msgid "Author"
|
72 |
msgstr "Autor"
|
73 |
|
74 |
-
#: inc/php/page.php:44 inc/php/page.php:
|
75 |
#: inc/php/settings.php:238
|
76 |
msgid "Support"
|
77 |
msgstr "Soporte"
|
@@ -80,55 +75,55 @@ msgstr "Soporte"
|
|
80 |
msgid "Family"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/php/page.php:
|
84 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: inc/php/page.php:
|
88 |
msgid "Go to the \"Settings\" tab."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/page.php:
|
92 |
msgid ""
|
93 |
"Fill in the required fields, select the desired settings and click the "
|
94 |
"\"Save Changes\" button."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Enjoy the improved SEO of your website."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "It's that simple!"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
msgid "Note!"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: inc/php/page.php:
|
110 |
msgid "If you want more options then tell me and I will be happy to add it."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/php/page.php:
|
114 |
msgid "Frequently Asked Questions"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: inc/php/page.php:
|
118 |
msgid "Will this plugin work on my WordPress.COM website?"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: inc/php/page.php:
|
122 |
msgid ""
|
123 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
124 |
"websites."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: inc/php/page.php:
|
128 |
msgid "Can I use this plugin on my language?"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: inc/php/page.php:
|
132 |
#, php-format
|
133 |
msgid ""
|
134 |
"Yes. But If your language is not available then you can make one. This "
|
@@ -139,40 +134,40 @@ msgid ""
|
|
139 |
"include the translation within the next plugin update."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "How does it work?"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid ""
|
148 |
"On the \"Settings\" tab, fill in the required fields, select the desired "
|
149 |
"settings and click the \"Save Changes\" button. Enjoy the improved SEO of "
|
150 |
"your website. It's that simple!"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: inc/php/page.php:
|
154 |
msgid "How much of description I can enter in the text field?"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: inc/php/page.php:
|
158 |
msgid ""
|
159 |
"I don't limit the number of characters, but most search engines use a "
|
160 |
"maximum of 160 chars for the home description."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "How much of keywords I can enter in the text field?"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "I don't limit the number of characters."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
msgid "I can't get verify my website. What am I doing wrong?"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
msgid ""
|
177 |
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
|
178 |
"SpecificFeeds) gives you is confusing as you only have to paste in the "
|
@@ -182,47 +177,47 @@ msgid ""
|
|
182 |
"“Success” message appear within a few seconds."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: inc/php/page.php:
|
186 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/page.php:
|
190 |
msgid ""
|
191 |
"To make these plugins compatible you need to stick to one simple rule: do "
|
192 |
"not fill the same field in both plugins at once. Otherwise both plugins "
|
193 |
"fulfill their work and you will get a duplicate actions, for example:"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
msgid ""
|
198 |
"In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/page.php:
|
202 |
msgid "Does this plugin requires any modification of the theme?"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/page.php:
|
206 |
msgid ""
|
207 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
208 |
"settings page."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
msgid "Does this require any knowledge of HTML or CSS?"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
msgid ""
|
217 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or "
|
218 |
"CSS, using an easy-to-use plugin settings page."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/page.php:
|
222 |
msgid "It's not working. What could be wrong?"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/page.php:
|
226 |
msgid ""
|
227 |
"As with every plugin, it's possible that things don't work. The most common "
|
228 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
@@ -231,7 +226,7 @@ msgid ""
|
|
231 |
"browser's cache may solve the problem."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: inc/php/page.php:
|
235 |
msgid ""
|
236 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
237 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
@@ -239,31 +234,46 @@ msgid ""
|
|
239 |
"possible, including a link to your website where the problem can be seen."
|
240 |
msgstr ""
|
241 |
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
#: inc/php/page.php:143
|
243 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
244 |
msgstr ""
|
245 |
|
246 |
#: inc/php/page.php:145
|
|
|
|
|
|
|
|
|
247 |
#, php-format
|
248 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: inc/php/page.php:
|
252 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: inc/php/page.php:
|
256 |
#, php-format
|
257 |
msgid ""
|
258 |
"Any suggestions are very welcome! Please send me an email to %s "
|
259 |
"arthurgareginyan@gmail.com %s. Thank you!"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
msgid "I love this plugin! Can I help somehow?"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
#, php-format
|
268 |
msgid ""
|
269 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
@@ -534,6 +544,10 @@ msgid ""
|
|
534 |
"\">here</a>."
|
535 |
msgstr ""
|
536 |
|
|
|
|
|
|
|
|
|
537 |
#. Plugin URI of the plugin/theme
|
538 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
539 |
msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-05-23 08:33+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-05-23 08:33+0300\n"
|
7 |
"Last-Translator: Sergio <srg2010@yahoo.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_MX\n"
|
32 |
msgid "Donate"
|
33 |
msgstr "Donar"
|
34 |
|
|
|
|
|
|
|
|
|
|
|
35 |
#: inc/php/messages.php:30
|
36 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
37 |
msgstr ""
|
54 |
msgid "by %s Arthur Gareginyan %s"
|
55 |
msgstr "por %s Arthur Gareginyan %s"
|
56 |
|
57 |
+
#: inc/php/page.php:41 inc/php/page.php:60
|
58 |
msgid "Usage"
|
59 |
msgstr "Uso"
|
60 |
|
62 |
msgid "F.A.Q."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
|
66 |
msgid "Author"
|
67 |
msgstr "Autor"
|
68 |
|
69 |
+
#: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28
|
70 |
#: inc/php/settings.php:238
|
71 |
msgid "Support"
|
72 |
msgstr "Soporte"
|
75 |
msgid "Family"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: inc/php/page.php:62
|
79 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: inc/php/page.php:64
|
83 |
msgid "Go to the \"Settings\" tab."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/php/page.php:65
|
87 |
msgid ""
|
88 |
"Fill in the required fields, select the desired settings and click the "
|
89 |
"\"Save Changes\" button."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: inc/php/page.php:66
|
93 |
msgid "Enjoy the improved SEO of your website."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: inc/php/page.php:66
|
97 |
msgid "It's that simple!"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: inc/php/page.php:68
|
101 |
msgid "Note!"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: inc/php/page.php:68
|
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:77
|
109 |
msgid "Frequently Asked Questions"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: inc/php/page.php:99
|
113 |
msgid "Will this plugin work on my WordPress.COM website?"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: inc/php/page.php:100
|
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:102
|
123 |
msgid "Can I use this plugin on my language?"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: inc/php/page.php:104
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
"Yes. But If your language is not available then you can make one. This "
|
134 |
"include the translation within the next plugin update."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: inc/php/page.php:109
|
138 |
msgid "How does it work?"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: inc/php/page.php:110
|
142 |
msgid ""
|
143 |
"On the \"Settings\" tab, fill in the required fields, select the desired "
|
144 |
"settings and click the \"Save Changes\" button. Enjoy the improved SEO of "
|
145 |
"your website. It's that simple!"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: inc/php/page.php:112
|
149 |
msgid "How much of description I can enter in the text field?"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: inc/php/page.php:113
|
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:115
|
159 |
msgid "How much of keywords I can enter in the text field?"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: inc/php/page.php:116
|
163 |
msgid "I don't limit the number of characters."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: inc/php/page.php:118
|
167 |
msgid "I can't get verify my website. What am I doing wrong?"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: inc/php/page.php:119
|
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 |
"“Success” message appear within a few seconds."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/page.php:121
|
181 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/page.php:122
|
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:130
|
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:132
|
197 |
msgid "Does this plugin requires any modification of the theme?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/page.php:133
|
201 |
msgid ""
|
202 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
203 |
"settings page."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: inc/php/page.php:135
|
207 |
msgid "Does this require any knowledge of HTML or CSS?"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: inc/php/page.php:136
|
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:138
|
217 |
msgid "It's not working. What could be wrong?"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/php/page.php:139
|
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 |
"browser's cache may solve the problem."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: inc/php/page.php:140
|
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 |
"possible, including a link to your website where the problem can be seen."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: inc/php/page.php:142
|
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:143
|
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 "
|
247 |
+
"clear your website's cache (may be you using a caching plugin, or some web "
|
248 |
+
"service such as the CloudFlare) and then the cache of your web browser. Also "
|
249 |
+
"please try to re-login to the website, this too can help."
|
250 |
msgstr ""
|
251 |
|
252 |
#: inc/php/page.php:145
|
253 |
+
msgid "Where to report bug if found?"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: inc/php/page.php:147
|
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:153
|
262 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: inc/php/page.php:155
|
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:161
|
273 |
msgid "I love this plugin! Can I help somehow?"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: inc/php/page.php:163
|
277 |
#, php-format
|
278 |
msgid ""
|
279 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
544 |
"\">here</a>."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#. Plugin Name of the plugin/theme
|
548 |
+
msgid "All Meta Tags"
|
549 |
+
msgstr "Todos los Meta Tags"
|
550 |
+
|
551 |
#. Plugin URI of the plugin/theme
|
552 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
553 |
msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
languages/all-meta-tags-it_IT.mo
CHANGED
Binary file
|
languages/all-meta-tags-it_IT.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - All Meta Tags - Stable (latest release)\n"
|
6 |
-
"POT-Creation-Date: 2017-05-
|
7 |
-
"PO-Revision-Date: 2017-05-
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: it\n"
|
@@ -29,11 +29,6 @@ msgstr "Impostazioni"
|
|
29 |
msgid "Donate"
|
30 |
msgstr "Dona"
|
31 |
|
32 |
-
#. Plugin Name of the plugin/theme
|
33 |
-
#: inc/php/core.php:62 inc/php/page.php:25
|
34 |
-
msgid "All Meta Tags"
|
35 |
-
msgstr "All Meta Tags"
|
36 |
-
|
37 |
#: inc/php/messages.php:30
|
38 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
39 |
msgstr ""
|
@@ -56,7 +51,7 @@ msgstr ""
|
|
56 |
msgid "by %s Arthur Gareginyan %s"
|
57 |
msgstr "di %s Arthur Gareginyan %s"
|
58 |
|
59 |
-
#: inc/php/page.php:41 inc/php/page.php:
|
60 |
msgid "Usage"
|
61 |
msgstr ""
|
62 |
|
@@ -64,11 +59,11 @@ msgstr ""
|
|
64 |
msgid "F.A.Q."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: inc/php/page.php:43 inc/php/page.php:
|
68 |
msgid "Author"
|
69 |
msgstr "Autore"
|
70 |
|
71 |
-
#: inc/php/page.php:44 inc/php/page.php:
|
72 |
msgid "Support"
|
73 |
msgstr ""
|
74 |
|
@@ -76,51 +71,51 @@ msgstr ""
|
|
76 |
msgid "Family"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/php/page.php:
|
80 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/php/page.php:
|
84 |
msgid "Go to the \"Settings\" tab."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: inc/php/page.php:
|
88 |
msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/page.php:
|
92 |
msgid "Enjoy the improved SEO of your website."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: inc/php/page.php:
|
96 |
msgid "It's that simple!"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/php/page.php:
|
100 |
msgid "Note!"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: inc/php/page.php:
|
104 |
msgid "If you want more options then tell me and I will be happy to add it."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: inc/php/page.php:
|
108 |
msgid "Frequently Asked Questions"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: inc/php/page.php:
|
112 |
msgid "Will this plugin work on my WordPress.COM website?"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/php/page.php:
|
116 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: inc/php/page.php:
|
120 |
msgid "Can I use this plugin on my language?"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/page.php:
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"Yes. But If your language is not available then you can make one. This plugin is ready for translation. "
|
@@ -129,39 +124,39 @@ msgid ""
|
|
129 |
"mo</code>) to me at the %s and I will include the translation within the next plugin update."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/php/page.php:
|
133 |
msgid "How does it work?"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/page.php:
|
137 |
msgid ""
|
138 |
"On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save Changes\" "
|
139 |
"button. Enjoy the improved SEO of your website. It's that simple!"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/php/page.php:
|
143 |
msgid "How much of description I can enter in the text field?"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: inc/php/page.php:
|
147 |
msgid ""
|
148 |
"I don't limit the number of characters, but most search engines use a maximum of 160 chars for the home "
|
149 |
"description."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/php/page.php:
|
153 |
msgid "How much of keywords I can enter in the text field?"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/php/page.php:
|
157 |
msgid "I don't limit the number of characters."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: inc/php/page.php:
|
161 |
msgid "I can't get verify my website. What am I doing wrong?"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: inc/php/page.php:
|
165 |
msgid ""
|
166 |
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing "
|
167 |
"as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag "
|
@@ -169,79 +164,91 @@ msgid ""
|
|
169 |
"the relevant field and you will see “Success” message appear within a few seconds."
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: inc/php/page.php:
|
173 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/page.php:
|
177 |
msgid ""
|
178 |
"To make these plugins compatible you need to stick to one simple rule: do not fill the same field in both "
|
179 |
"plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: inc/php/page.php:
|
183 |
msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: inc/php/page.php:
|
187 |
msgid "Does this plugin requires any modification of the theme?"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: inc/php/page.php:
|
191 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: inc/php/page.php:
|
195 |
msgid "Does this require any knowledge of HTML or CSS?"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: inc/php/page.php:
|
199 |
msgid ""
|
200 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
|
201 |
"settings page."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
msgid "It's not working. What could be wrong?"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/page.php:
|
209 |
msgid ""
|
210 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's "
|
211 |
"cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth "
|
212 |
"usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
msgid ""
|
217 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support "
|
218 |
"forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information "
|
219 |
"as possible, including a link to your website where the problem can be seen."
|
220 |
msgstr ""
|
221 |
|
|
|
|
|
|
|
|
|
222 |
#: inc/php/page.php:143
|
223 |
-
msgid "
|
|
|
|
|
|
|
|
|
224 |
msgstr ""
|
225 |
|
226 |
#: inc/php/page.php:145
|
|
|
|
|
|
|
|
|
227 |
#, php-format
|
228 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: inc/php/page.php:
|
236 |
#, php-format
|
237 |
msgid "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
msgid "I love this plugin! Can I help somehow?"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
#, php-format
|
246 |
msgid ""
|
247 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank "
|
@@ -517,6 +524,10 @@ msgstr ""
|
|
517 |
"Puoi controllare <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">qui</a> "
|
518 |
"tali dati generati sulle pagine del tuo sito web."
|
519 |
|
|
|
|
|
|
|
|
|
520 |
#. Plugin URI of the plugin/theme
|
521 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
522 |
msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Plugins - All Meta Tags - Stable (latest release)\n"
|
6 |
+
"POT-Creation-Date: 2017-05-23 08:33+0300\n"
|
7 |
+
"PO-Revision-Date: 2017-05-23 08:33+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: it\n"
|
29 |
msgid "Donate"
|
30 |
msgstr "Dona"
|
31 |
|
|
|
|
|
|
|
|
|
|
|
32 |
#: inc/php/messages.php:30
|
33 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
34 |
msgstr ""
|
51 |
msgid "by %s Arthur Gareginyan %s"
|
52 |
msgstr "di %s Arthur Gareginyan %s"
|
53 |
|
54 |
+
#: inc/php/page.php:41 inc/php/page.php:60
|
55 |
msgid "Usage"
|
56 |
msgstr ""
|
57 |
|
59 |
msgid "F.A.Q."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
|
63 |
msgid "Author"
|
64 |
msgstr "Autore"
|
65 |
|
66 |
+
#: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28 inc/php/settings.php:238
|
67 |
msgid "Support"
|
68 |
msgstr ""
|
69 |
|
71 |
msgid "Family"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/php/page.php:62
|
75 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: inc/php/page.php:64
|
79 |
msgid "Go to the \"Settings\" tab."
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: inc/php/page.php:65
|
83 |
msgid "Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/php/page.php:66
|
87 |
msgid "Enjoy the improved SEO of your website."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/php/page.php:66
|
91 |
msgid "It's that simple!"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/php/page.php:68
|
95 |
msgid "Note!"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/page.php:68
|
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:77
|
103 |
msgid "Frequently Asked Questions"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: inc/php/page.php:99
|
107 |
msgid "Will this plugin work on my WordPress.COM website?"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/php/page.php:100
|
111 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/php/page.php:102
|
115 |
msgid "Can I use this plugin on my language?"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:104
|
119 |
#, php-format
|
120 |
msgid ""
|
121 |
"Yes. But If your language is not available then you can make one. This plugin is ready for translation. "
|
124 |
"mo</code>) to me at the %s and I will include the translation within the next plugin update."
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: inc/php/page.php:109
|
128 |
msgid "How does it work?"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: inc/php/page.php:110
|
132 |
msgid ""
|
133 |
"On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save Changes\" "
|
134 |
"button. Enjoy the improved SEO of your website. It's that simple!"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: inc/php/page.php:112
|
138 |
msgid "How much of description I can enter in the text field?"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: inc/php/page.php:113
|
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:115
|
148 |
msgid "How much of keywords I can enter in the text field?"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: inc/php/page.php:116
|
152 |
msgid "I don't limit the number of characters."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/php/page.php:118
|
156 |
msgid "I can't get verify my website. What am I doing wrong?"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/php/page.php:119
|
160 |
msgid ""
|
161 |
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing "
|
162 |
"as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag "
|
164 |
"the relevant field and you will see “Success” message appear within a few seconds."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: inc/php/page.php:121
|
168 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: inc/php/page.php:122
|
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:130
|
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:132
|
182 |
msgid "Does this plugin requires any modification of the theme?"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: inc/php/page.php:133
|
186 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: inc/php/page.php:135
|
190 |
msgid "Does this require any knowledge of HTML or CSS?"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: inc/php/page.php:136
|
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:138
|
200 |
msgid "It's not working. What could be wrong?"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: inc/php/page.php:139
|
204 |
msgid ""
|
205 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's "
|
206 |
"cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth "
|
207 |
"usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: inc/php/page.php:140
|
211 |
msgid ""
|
212 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support "
|
213 |
"forum on WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information "
|
214 |
"as possible, including a link to your website where the problem can be seen."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: inc/php/page.php:142
|
218 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
#: inc/php/page.php:143
|
222 |
+
msgid ""
|
223 |
+
"This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It "
|
224 |
+
"could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some "
|
225 |
+
"web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the "
|
226 |
+
"website, this too can help."
|
227 |
msgstr ""
|
228 |
|
229 |
#: inc/php/page.php:145
|
230 |
+
msgid "Where to report bug if found?"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: inc/php/page.php:147
|
234 |
#, php-format
|
235 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: inc/php/page.php:153
|
239 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/php/page.php:155
|
243 |
#, php-format
|
244 |
msgid "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: inc/php/page.php:161
|
248 |
msgid "I love this plugin! Can I help somehow?"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: inc/php/page.php:163
|
252 |
#, php-format
|
253 |
msgid ""
|
254 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank "
|
524 |
"Puoi controllare <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">qui</a> "
|
525 |
"tali dati generati sulle pagine del tuo sito web."
|
526 |
|
527 |
+
#. Plugin Name of the plugin/theme
|
528 |
+
msgid "All Meta Tags"
|
529 |
+
msgstr "All Meta Tags"
|
530 |
+
|
531 |
#. Plugin URI of the plugin/theme
|
532 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
533 |
msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
languages/all-meta-tags-ru_RU.mo
CHANGED
Binary file
|
languages/all-meta-tags-ru_RU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
-
"POT-Creation-Date: 2017-05-
|
5 |
-
"PO-Revision-Date: 2017-05-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
@@ -29,11 +29,6 @@ msgstr "Настройки"
|
|
29 |
msgid "Donate"
|
30 |
msgstr "Поддержать разработку"
|
31 |
|
32 |
-
#. Plugin Name of the plugin/theme
|
33 |
-
#: inc/php/core.php:62 inc/php/page.php:25
|
34 |
-
msgid "All Meta Tags"
|
35 |
-
msgstr "All Meta Tags"
|
36 |
-
|
37 |
#: inc/php/messages.php:30
|
38 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
39 |
msgstr "Привет! Я Артур, автор этого плагина."
|
@@ -56,7 +51,7 @@ msgstr "Пожалуйста, обновите плагин до последн
|
|
56 |
msgid "by %s Arthur Gareginyan %s"
|
57 |
msgstr "от %s Артура Гарегинян %s"
|
58 |
|
59 |
-
#: inc/php/page.php:41 inc/php/page.php:
|
60 |
msgid "Usage"
|
61 |
msgstr "Применение"
|
62 |
|
@@ -64,11 +59,11 @@ msgstr "Применение"
|
|
64 |
msgid "F.A.Q."
|
65 |
msgstr "F.A.Q."
|
66 |
|
67 |
-
#: inc/php/page.php:43 inc/php/page.php:
|
68 |
msgid "Author"
|
69 |
msgstr "Автор"
|
70 |
|
71 |
-
#: inc/php/page.php:44 inc/php/page.php:
|
72 |
#: inc/php/settings.php:238
|
73 |
msgid "Support"
|
74 |
msgstr "Поддержка"
|
@@ -77,17 +72,17 @@ msgstr "Поддержка"
|
|
77 |
msgid "Family"
|
78 |
msgstr "Семья"
|
79 |
|
80 |
-
#: inc/php/page.php:
|
81 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
82 |
msgstr ""
|
83 |
"Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие "
|
84 |
"действия:"
|
85 |
|
86 |
-
#: inc/php/page.php:
|
87 |
msgid "Go to the \"Settings\" tab."
|
88 |
msgstr "Перейдите на вкладку «Настройки»."
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid ""
|
92 |
"Fill in the required fields, select the desired settings and click the "
|
93 |
"\"Save Changes\" button."
|
@@ -95,33 +90,33 @@ msgstr ""
|
|
95 |
"Заполните необходимые поля, выберите нужные настройки и нажмите кнопку "
|
96 |
"«Сохранить изменения»."
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid "Enjoy the improved SEO of your website."
|
100 |
msgstr "Наслаждайтесь улучшенным SEO вашего веб-сайта."
|
101 |
|
102 |
-
#: inc/php/page.php:
|
103 |
msgid "It's that simple!"
|
104 |
msgstr "Вот так просто!"
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
msgid "Note!"
|
108 |
msgstr "Примечание!"
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "If you want more options then tell me and I will be happy to add it."
|
112 |
msgstr ""
|
113 |
"Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
114 |
"добавить их."
|
115 |
|
116 |
-
#: inc/php/page.php:
|
117 |
msgid "Frequently Asked Questions"
|
118 |
msgstr "Частые Вопросы"
|
119 |
|
120 |
-
#: inc/php/page.php:
|
121 |
msgid "Will this plugin work on my WordPress.COM website?"
|
122 |
msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
|
123 |
|
124 |
-
#: inc/php/page.php:
|
125 |
msgid ""
|
126 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
127 |
"websites."
|
@@ -129,11 +124,11 @@ msgstr ""
|
|
129 |
"К сожалению, этот плагин доступен для использования только на самостоятельно "
|
130 |
"размещённых веб-сайтах (WordPress.ORG)."
|
131 |
|
132 |
-
#: inc/php/page.php:
|
133 |
msgid "Can I use this plugin on my language?"
|
134 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
135 |
|
136 |
-
#: inc/php/page.php:
|
137 |
#, php-format
|
138 |
msgid ""
|
139 |
"Yes. But If your language is not available then you can make one. This "
|
@@ -144,11 +139,11 @@ msgid ""
|
|
144 |
"include the translation within the next plugin update."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: inc/php/page.php:
|
148 |
msgid "How does it work?"
|
149 |
msgstr "Как оно работает?"
|
150 |
|
151 |
-
#: inc/php/page.php:
|
152 |
msgid ""
|
153 |
"On the \"Settings\" tab, fill in the required fields, select the desired "
|
154 |
"settings and click the \"Save Changes\" button. Enjoy the improved SEO of "
|
@@ -158,29 +153,29 @@ msgstr ""
|
|
158 |
"и нажмите кнопку «Сохранить изменения». Наслаждайтесь улучшенным SEO вашего "
|
159 |
"веб-сайта. Это так просто!"
|
160 |
|
161 |
-
#: inc/php/page.php:
|
162 |
msgid "How much of description I can enter in the text field?"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: inc/php/page.php:
|
166 |
msgid ""
|
167 |
"I don't limit the number of characters, but most search engines use a "
|
168 |
"maximum of 160 chars for the home description."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
msgid "How much of keywords I can enter in the text field?"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
msgid "I don't limit the number of characters."
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
msgid "I can't get verify my website. What am I doing wrong?"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
msgid ""
|
185 |
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
|
186 |
"SpecificFeeds) gives you is confusing as you only have to paste in the "
|
@@ -190,27 +185,27 @@ msgid ""
|
|
190 |
"“Success” message appear within a few seconds."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/page.php:
|
194 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/page.php:
|
198 |
msgid ""
|
199 |
"To make these plugins compatible you need to stick to one simple rule: do "
|
200 |
"not fill the same field in both plugins at once. Otherwise both plugins "
|
201 |
"fulfill their work and you will get a duplicate actions, for example:"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
msgid ""
|
206 |
"In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/page.php:
|
210 |
msgid "Does this plugin requires any modification of the theme?"
|
211 |
msgstr "Этот плагин требует изменения темы?"
|
212 |
|
213 |
-
#: inc/php/page.php:
|
214 |
msgid ""
|
215 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
216 |
"settings page."
|
@@ -218,11 +213,11 @@ msgstr ""
|
|
218 |
"Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
|
219 |
"плагина."
|
220 |
|
221 |
-
#: inc/php/page.php:
|
222 |
msgid "Does this require any knowledge of HTML or CSS?"
|
223 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
224 |
|
225 |
-
#: inc/php/page.php:
|
226 |
msgid ""
|
227 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or "
|
228 |
"CSS, using an easy-to-use plugin settings page."
|
@@ -230,11 +225,11 @@ msgstr ""
|
|
230 |
"Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
|
231 |
"помощью простой в использовании страницы настройки плагина."
|
232 |
|
233 |
-
#: inc/php/page.php:
|
234 |
msgid "It's not working. What could be wrong?"
|
235 |
msgstr "Оно не работает. Что может быть не так?"
|
236 |
|
237 |
-
#: inc/php/page.php:
|
238 |
msgid ""
|
239 |
"As with every plugin, it's possible that things don't work. The most common "
|
240 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
@@ -243,7 +238,7 @@ msgid ""
|
|
243 |
"browser's cache may solve the problem."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/php/page.php:
|
247 |
msgid ""
|
248 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
249 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
@@ -251,33 +246,48 @@ msgid ""
|
|
251 |
"possible, including a link to your website where the problem can be seen."
|
252 |
msgstr ""
|
253 |
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
#: inc/php/page.php:143
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
msgid "Where to report bug if found?"
|
256 |
msgstr "Где можно сообщить об ошибке?"
|
257 |
|
258 |
-
#: inc/php/page.php:
|
259 |
#, php-format
|
260 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
261 |
msgstr ""
|
262 |
"Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
266 |
msgstr ""
|
267 |
"Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
268 |
|
269 |
-
#: inc/php/page.php:
|
270 |
#, php-format
|
271 |
msgid ""
|
272 |
"Any suggestions are very welcome! Please send me an email to %s "
|
273 |
"arthurgareginyan@gmail.com %s. Thank you!"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
msgid "I love this plugin! Can I help somehow?"
|
278 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
279 |
|
280 |
-
#: inc/php/page.php:
|
281 |
#, php-format
|
282 |
msgid ""
|
283 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
@@ -584,6 +594,10 @@ msgstr ""
|
|
584 |
"<a href=\"https://search.google.com/structured-data/testing-tool\" target="
|
585 |
"\"_blank\">здесь</a>."
|
586 |
|
|
|
|
|
|
|
|
|
587 |
#. Plugin URI of the plugin/theme
|
588 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
589 |
msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: All Meta Tags\n"
|
4 |
+
"POT-Creation-Date: 2017-05-23 08:33+0300\n"
|
5 |
+
"PO-Revision-Date: 2017-05-23 08:33+0300\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
29 |
msgid "Donate"
|
30 |
msgstr "Поддержать разработку"
|
31 |
|
|
|
|
|
|
|
|
|
|
|
32 |
#: inc/php/messages.php:30
|
33 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
34 |
msgstr "Привет! Я Артур, автор этого плагина."
|
51 |
msgid "by %s Arthur Gareginyan %s"
|
52 |
msgstr "от %s Артура Гарегинян %s"
|
53 |
|
54 |
+
#: inc/php/page.php:41 inc/php/page.php:60
|
55 |
msgid "Usage"
|
56 |
msgstr "Применение"
|
57 |
|
59 |
msgid "F.A.Q."
|
60 |
msgstr "F.A.Q."
|
61 |
|
62 |
+
#: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
|
63 |
msgid "Author"
|
64 |
msgstr "Автор"
|
65 |
|
66 |
+
#: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28
|
67 |
#: inc/php/settings.php:238
|
68 |
msgid "Support"
|
69 |
msgstr "Поддержка"
|
72 |
msgid "Family"
|
73 |
msgstr "Семья"
|
74 |
|
75 |
+
#: inc/php/page.php:62
|
76 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
77 |
msgstr ""
|
78 |
"Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие "
|
79 |
"действия:"
|
80 |
|
81 |
+
#: inc/php/page.php:64
|
82 |
msgid "Go to the \"Settings\" tab."
|
83 |
msgstr "Перейдите на вкладку «Настройки»."
|
84 |
|
85 |
+
#: inc/php/page.php:65
|
86 |
msgid ""
|
87 |
"Fill in the required fields, select the desired settings and click the "
|
88 |
"\"Save Changes\" button."
|
90 |
"Заполните необходимые поля, выберите нужные настройки и нажмите кнопку "
|
91 |
"«Сохранить изменения»."
|
92 |
|
93 |
+
#: inc/php/page.php:66
|
94 |
msgid "Enjoy the improved SEO of your website."
|
95 |
msgstr "Наслаждайтесь улучшенным SEO вашего веб-сайта."
|
96 |
|
97 |
+
#: inc/php/page.php:66
|
98 |
msgid "It's that simple!"
|
99 |
msgstr "Вот так просто!"
|
100 |
|
101 |
+
#: inc/php/page.php:68
|
102 |
msgid "Note!"
|
103 |
msgstr "Примечание!"
|
104 |
|
105 |
+
#: inc/php/page.php:68
|
106 |
msgid "If you want more options then tell me and I will be happy to add it."
|
107 |
msgstr ""
|
108 |
"Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
|
109 |
"добавить их."
|
110 |
|
111 |
+
#: inc/php/page.php:77
|
112 |
msgid "Frequently Asked Questions"
|
113 |
msgstr "Частые Вопросы"
|
114 |
|
115 |
+
#: inc/php/page.php:99
|
116 |
msgid "Will this plugin work on my WordPress.COM website?"
|
117 |
msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
|
118 |
|
119 |
+
#: inc/php/page.php:100
|
120 |
msgid ""
|
121 |
"Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
|
122 |
"websites."
|
124 |
"К сожалению, этот плагин доступен для использования только на самостоятельно "
|
125 |
"размещённых веб-сайтах (WordPress.ORG)."
|
126 |
|
127 |
+
#: inc/php/page.php:102
|
128 |
msgid "Can I use this plugin on my language?"
|
129 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
130 |
|
131 |
+
#: inc/php/page.php:104
|
132 |
#, php-format
|
133 |
msgid ""
|
134 |
"Yes. But If your language is not available then you can make one. This "
|
139 |
"include the translation within the next plugin update."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/php/page.php:109
|
143 |
msgid "How does it work?"
|
144 |
msgstr "Как оно работает?"
|
145 |
|
146 |
+
#: inc/php/page.php:110
|
147 |
msgid ""
|
148 |
"On the \"Settings\" tab, fill in the required fields, select the desired "
|
149 |
"settings and click the \"Save Changes\" button. Enjoy the improved SEO of "
|
153 |
"и нажмите кнопку «Сохранить изменения». Наслаждайтесь улучшенным SEO вашего "
|
154 |
"веб-сайта. Это так просто!"
|
155 |
|
156 |
+
#: inc/php/page.php:112
|
157 |
msgid "How much of description I can enter in the text field?"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: inc/php/page.php:113
|
161 |
msgid ""
|
162 |
"I don't limit the number of characters, but most search engines use a "
|
163 |
"maximum of 160 chars for the home description."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: inc/php/page.php:115
|
167 |
msgid "How much of keywords I can enter in the text field?"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: inc/php/page.php:116
|
171 |
msgid "I don't limit the number of characters."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: inc/php/page.php:118
|
175 |
msgid "I can't get verify my website. What am I doing wrong?"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: inc/php/page.php:119
|
179 |
msgid ""
|
180 |
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, "
|
181 |
"SpecificFeeds) gives you is confusing as you only have to paste in the "
|
185 |
"“Success” message appear within a few seconds."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/page.php:121
|
189 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/page.php:122
|
193 |
msgid ""
|
194 |
"To make these plugins compatible you need to stick to one simple rule: do "
|
195 |
"not fill the same field in both plugins at once. Otherwise both plugins "
|
196 |
"fulfill their work and you will get a duplicate actions, for example:"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: inc/php/page.php:130
|
200 |
msgid ""
|
201 |
"In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/page.php:132
|
205 |
msgid "Does this plugin requires any modification of the theme?"
|
206 |
msgstr "Этот плагин требует изменения темы?"
|
207 |
|
208 |
+
#: inc/php/page.php:133
|
209 |
msgid ""
|
210 |
"Absolutely not. This plugin is configurable entirely from the plugin "
|
211 |
"settings page."
|
213 |
"Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
|
214 |
"плагина."
|
215 |
|
216 |
+
#: inc/php/page.php:135
|
217 |
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
219 |
|
220 |
+
#: inc/php/page.php:136
|
221 |
msgid ""
|
222 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or "
|
223 |
"CSS, using an easy-to-use plugin settings page."
|
225 |
"Абсолютно нет. Этот плагин можно настроить без знания HTML или CSS, с "
|
226 |
"помощью простой в использовании страницы настройки плагина."
|
227 |
|
228 |
+
#: inc/php/page.php:138
|
229 |
msgid "It's not working. What could be wrong?"
|
230 |
msgstr "Оно не работает. Что может быть не так?"
|
231 |
|
232 |
+
#: inc/php/page.php:139
|
233 |
msgid ""
|
234 |
"As with every plugin, it's possible that things don't work. The most common "
|
235 |
"reason for this is a web browser's cache. Every web browser stores a cache "
|
238 |
"browser's cache may solve the problem."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: inc/php/page.php:140
|
242 |
msgid ""
|
243 |
"It's impossible to tell what could be wrong exactly, but if you post a "
|
244 |
"support request in the plugin's support forum on WordPress.org, I'd be happy "
|
246 |
"possible, including a link to your website where the problem can be seen."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: inc/php/page.php:142
|
250 |
+
msgid ""
|
251 |
+
"The last WordPress update is preventing me from editing my website that is "
|
252 |
+
"using this plugin. Why is this?"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
#: inc/php/page.php:143
|
256 |
+
msgid ""
|
257 |
+
"This plugin can not cause such problem. More likely, the problem are related "
|
258 |
+
"to the settings of the website. It could just be a cache, so please try to "
|
259 |
+
"clear your website's cache (may be you using a caching plugin, or some web "
|
260 |
+
"service such as the CloudFlare) and then the cache of your web browser. Also "
|
261 |
+
"please try to re-login to the website, this too can help."
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: inc/php/page.php:145
|
265 |
msgid "Where to report bug if found?"
|
266 |
msgstr "Где можно сообщить об ошибке?"
|
267 |
|
268 |
+
#: inc/php/page.php:147
|
269 |
#, php-format
|
270 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
271 |
msgstr ""
|
272 |
"Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
|
273 |
|
274 |
+
#: inc/php/page.php:153
|
275 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
276 |
msgstr ""
|
277 |
"Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
278 |
|
279 |
+
#: inc/php/page.php:155
|
280 |
#, php-format
|
281 |
msgid ""
|
282 |
"Any suggestions are very welcome! Please send me an email to %s "
|
283 |
"arthurgareginyan@gmail.com %s. Thank you!"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/page.php:161
|
287 |
msgid "I love this plugin! Can I help somehow?"
|
288 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
289 |
|
290 |
+
#: inc/php/page.php:163
|
291 |
#, php-format
|
292 |
msgid ""
|
293 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, "
|
594 |
"<a href=\"https://search.google.com/structured-data/testing-tool\" target="
|
595 |
"\"_blank\">здесь</a>."
|
596 |
|
597 |
+
#. Plugin Name of the plugin/theme
|
598 |
+
msgid "All Meta Tags"
|
599 |
+
msgstr "All Meta Tags"
|
600 |
+
|
601 |
#. Plugin URI of the plugin/theme
|
602 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
603 |
msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
languages/all-meta-tags.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2017-05-
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -28,11 +28,6 @@ msgstr ""
|
|
28 |
msgid "Donate"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#. Plugin Name of the plugin/theme
|
32 |
-
#: inc/php/core.php:62 inc/php/page.php:25
|
33 |
-
msgid "All Meta Tags"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
#: inc/php/messages.php:30
|
37 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
38 |
msgstr ""
|
@@ -55,7 +50,7 @@ msgstr ""
|
|
55 |
msgid "by %s Arthur Gareginyan %s"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: inc/php/page.php:41 inc/php/page.php:
|
59 |
msgid "Usage"
|
60 |
msgstr ""
|
61 |
|
@@ -63,11 +58,11 @@ msgstr ""
|
|
63 |
msgid "F.A.Q."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: inc/php/page.php:43 inc/php/page.php:
|
67 |
msgid "Author"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: inc/php/page.php:44 inc/php/page.php:
|
71 |
msgid "Support"
|
72 |
msgstr ""
|
73 |
|
@@ -75,52 +70,52 @@ msgstr ""
|
|
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 |
"Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/page.php:
|
92 |
msgid "Enjoy the improved SEO of your website."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: inc/php/page.php:
|
96 |
msgid "It's that simple!"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/php/page.php:
|
100 |
msgid "Note!"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: inc/php/page.php:
|
104 |
msgid "If you want more options then tell me and I will be happy to add it."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: inc/php/page.php:
|
108 |
msgid "Frequently Asked Questions"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: inc/php/page.php:
|
112 |
msgid "Will this plugin work on my WordPress.COM website?"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/php/page.php:
|
116 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: inc/php/page.php:
|
120 |
msgid "Can I use this plugin on my language?"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/page.php:
|
124 |
#, php-format
|
125 |
msgid ""
|
126 |
"Yes. But If your language is not available then you can make one. This plugin is ready for "
|
@@ -130,39 +125,39 @@ msgid ""
|
|
130 |
"translation within the next plugin update."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: inc/php/page.php:
|
134 |
msgid "How does it work?"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: inc/php/page.php:
|
138 |
msgid ""
|
139 |
"On the \"Settings\" tab, fill in the required fields, select the desired settings and click the "
|
140 |
"\"Save Changes\" button. Enjoy the improved SEO of your website. It's that simple!"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: inc/php/page.php:
|
144 |
msgid "How much of description I can enter in the text field?"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: inc/php/page.php:
|
148 |
msgid ""
|
149 |
"I don't limit the number of characters, but most search engines use a maximum of 160 chars for the "
|
150 |
"home description."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: inc/php/page.php:
|
154 |
msgid "How much of keywords I can enter in the text field?"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: inc/php/page.php:
|
158 |
msgid "I don't limit the number of characters."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: inc/php/page.php:
|
162 |
msgid "I can't get verify my website. What am I doing wrong?"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: inc/php/page.php:
|
166 |
msgid ""
|
167 |
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you "
|
168 |
"is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) "
|
@@ -171,44 +166,44 @@ msgid ""
|
|
171 |
"a few seconds."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: inc/php/page.php:
|
175 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: inc/php/page.php:
|
179 |
msgid ""
|
180 |
"To make these plugins compatible you need to stick to one simple rule: do not fill the same field "
|
181 |
"in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate "
|
182 |
"actions, for example:"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: inc/php/page.php:
|
186 |
msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/page.php:
|
190 |
msgid "Does this plugin requires any modification of the theme?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/page.php:
|
194 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/page.php:
|
198 |
msgid "Does this require any knowledge of HTML or CSS?"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/page.php:
|
202 |
msgid ""
|
203 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-"
|
204 |
"use plugin settings page."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: inc/php/page.php:
|
208 |
msgid "It's not working. What could be wrong?"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
msgid ""
|
213 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a "
|
214 |
"web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
|
@@ -216,7 +211,7 @@ msgid ""
|
|
216 |
"browser's cache may solve the problem."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
msgid ""
|
221 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the "
|
222 |
"plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
|
@@ -224,31 +219,45 @@ msgid ""
|
|
224 |
"seen."
|
225 |
msgstr ""
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
#: inc/php/page.php:143
|
228 |
-
msgid "
|
|
|
|
|
|
|
|
|
229 |
msgstr ""
|
230 |
|
231 |
#: inc/php/page.php:145
|
|
|
|
|
|
|
|
|
232 |
#, php-format
|
233 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/php/page.php:
|
237 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
#, php-format
|
242 |
msgid ""
|
243 |
"Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. "
|
244 |
"Thank you!"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: inc/php/page.php:
|
248 |
msgid "I love this plugin! Can I help somehow?"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: inc/php/page.php:
|
252 |
#, php-format
|
253 |
msgid ""
|
254 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
|
@@ -484,6 +493,10 @@ msgid ""
|
|
484 |
"structured-data/testing-tool\" target=\"_blank\">here</a>."
|
485 |
msgstr ""
|
486 |
|
|
|
|
|
|
|
|
|
487 |
#. Plugin URI of the plugin/theme
|
488 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
489 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2017-05-23 08:32+0300\n"
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
28 |
msgid "Donate"
|
29 |
msgstr ""
|
30 |
|
|
|
|
|
|
|
|
|
|
|
31 |
#: inc/php/messages.php:30
|
32 |
msgid "Hello. I'm Arthur, the author of this plugin."
|
33 |
msgstr ""
|
50 |
msgid "by %s Arthur Gareginyan %s"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: inc/php/page.php:41 inc/php/page.php:60
|
54 |
msgid "Usage"
|
55 |
msgstr ""
|
56 |
|
58 |
msgid "F.A.Q."
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: inc/php/page.php:43 inc/php/page.php:177 inc/php/settings.php:192
|
62 |
msgid "Author"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: inc/php/page.php:44 inc/php/page.php:186 inc/php/settings.php:28 inc/php/settings.php:238
|
66 |
msgid "Support"
|
67 |
msgstr ""
|
68 |
|
70 |
msgid "Family"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: inc/php/page.php:62
|
74 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: inc/php/page.php:64
|
78 |
msgid "Go to the \"Settings\" tab."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: inc/php/page.php:65
|
82 |
msgid ""
|
83 |
"Fill in the required fields, select the desired settings and click the \"Save Changes\" button."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/php/page.php:66
|
87 |
msgid "Enjoy the improved SEO of your website."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/php/page.php:66
|
91 |
msgid "It's that simple!"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/php/page.php:68
|
95 |
msgid "Note!"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/page.php:68
|
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:77
|
103 |
msgid "Frequently Asked Questions"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: inc/php/page.php:99
|
107 |
msgid "Will this plugin work on my WordPress.COM website?"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/php/page.php:100
|
111 |
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/php/page.php:102
|
115 |
msgid "Can I use this plugin on my language?"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:104
|
119 |
#, php-format
|
120 |
msgid ""
|
121 |
"Yes. But If your language is not available then you can make one. This plugin is ready for "
|
125 |
"translation within the next plugin update."
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/php/page.php:109
|
129 |
msgid "How does it work?"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/php/page.php:110
|
133 |
msgid ""
|
134 |
"On the \"Settings\" tab, fill in the required fields, select the desired settings and click the "
|
135 |
"\"Save Changes\" button. Enjoy the improved SEO of your website. It's that simple!"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/page.php:112
|
139 |
msgid "How much of description I can enter in the text field?"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/php/page.php:113
|
143 |
msgid ""
|
144 |
"I don't limit the number of characters, but most search engines use a maximum of 160 chars for the "
|
145 |
"home description."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: inc/php/page.php:115
|
149 |
msgid "How much of keywords I can enter in the text field?"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: inc/php/page.php:116
|
153 |
msgid "I don't limit the number of characters."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: inc/php/page.php:118
|
157 |
msgid "I can't get verify my website. What am I doing wrong?"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: inc/php/page.php:119
|
161 |
msgid ""
|
162 |
"The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you "
|
163 |
"is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) "
|
166 |
"a few seconds."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: inc/php/page.php:121
|
170 |
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: inc/php/page.php:122
|
174 |
msgid ""
|
175 |
"To make these plugins compatible you need to stick to one simple rule: do not fill the same field "
|
176 |
"in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate "
|
177 |
"actions, for example:"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/page.php:130
|
181 |
msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/page.php:132
|
185 |
msgid "Does this plugin requires any modification of the theme?"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/page.php:133
|
189 |
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/page.php:135
|
193 |
msgid "Does this require any knowledge of HTML or CSS?"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/page.php:136
|
197 |
msgid ""
|
198 |
"Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-"
|
199 |
"use plugin settings page."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: inc/php/page.php:138
|
203 |
msgid "It's not working. What could be wrong?"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: inc/php/page.php:139
|
207 |
msgid ""
|
208 |
"As with every plugin, it's possible that things don't work. The most common reason for this is a "
|
209 |
"web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
|
211 |
"browser's cache may solve the problem."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: inc/php/page.php:140
|
215 |
msgid ""
|
216 |
"It's impossible to tell what could be wrong exactly, but if you post a support request in the "
|
217 |
"plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
|
219 |
"seen."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: inc/php/page.php:142
|
223 |
+
msgid ""
|
224 |
+
"The last WordPress update is preventing me from editing my website that is using this plugin. Why "
|
225 |
+
"is this?"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
#: inc/php/page.php:143
|
229 |
+
msgid ""
|
230 |
+
"This plugin can not cause such problem. More likely, the problem are related to the settings of the "
|
231 |
+
"website. It could just be a cache, so please try to clear your website's cache (may be you using a "
|
232 |
+
"caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. "
|
233 |
+
"Also please try to re-login to the website, this too can help."
|
234 |
msgstr ""
|
235 |
|
236 |
#: inc/php/page.php:145
|
237 |
+
msgid "Where to report bug if found?"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: inc/php/page.php:147
|
241 |
#, php-format
|
242 |
msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: inc/php/page.php:153
|
246 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: inc/php/page.php:155
|
250 |
#, php-format
|
251 |
msgid ""
|
252 |
"Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. "
|
253 |
"Thank you!"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: inc/php/page.php:161
|
257 |
msgid "I love this plugin! Can I help somehow?"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: inc/php/page.php:163
|
261 |
#, php-format
|
262 |
msgid ""
|
263 |
"Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
|
493 |
"structured-data/testing-tool\" target=\"_blank\">here</a>."
|
494 |
msgstr ""
|
495 |
|
496 |
+
#. Plugin Name of the plugin/theme
|
497 |
+
msgid "All Meta Tags"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
#. Plugin URI of the plugin/theme
|
501 |
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
502 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: meta, tag,tags, custom, simple, plugin, twitter, facebook, g+, google, goo
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -146,6 +146,9 @@ A. Absolutely not. This plugin can be configured with no knowledge of HTML or CS
|
|
146 |
A. 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.
|
147 |
|
148 |
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.
|
|
|
|
|
|
|
149 |
|
150 |
= Q. Where to report bug if found? =
|
151 |
A. Please visit the [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags) and report.
|
@@ -184,6 +187,15 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
184 |
|
185 |
== Changelog ==
|
186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
= 4.0.1 =
|
188 |
* Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
|
189 |
|
@@ -317,11 +329,15 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
317 |
|
318 |
|
319 |
== Upgrade Notice ==
|
|
|
320 |
= 4.0 =
|
321 |
Please update to new release!
|
|
|
322 |
= 3.0 =
|
323 |
Please update to new release!
|
|
|
324 |
= 2.0 =
|
325 |
Please update to new release!
|
|
|
326 |
= 1.0 =
|
327 |
Please update to first stable release!
|
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
|
7 |
+
Stable tag: 4.1
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
146 |
A. 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.
|
147 |
|
148 |
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.
|
149 |
+
|
150 |
+
= Q. The last WordPress update is preventing me from editing my website that is using this plugin. Why is this? =
|
151 |
+
A. 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.
|
152 |
|
153 |
= Q. Where to report bug if found? =
|
154 |
A. Please visit the [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/all-meta-tags) and report.
|
187 |
|
188 |
== Changelog ==
|
189 |
|
190 |
+
= 4.1 =
|
191 |
+
* Added new constants: "_SLUG", "_PREFIX", "_SETTINGS" and "_NAME".
|
192 |
+
* Value of the "_VERSION" constant replaced with information from the plugin header data.
|
193 |
+
* All references to the plugin name, slug, prefix are replaced with constants.
|
194 |
+
* The "allmetatags_field" function improved.
|
195 |
+
* The "name" attribute removed from the "<form>" tag.
|
196 |
+
* Code formatting improved.
|
197 |
+
* F.A.Q. section updated.
|
198 |
+
|
199 |
= 4.0.1 =
|
200 |
* Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
|
201 |
|
329 |
|
330 |
|
331 |
== Upgrade Notice ==
|
332 |
+
|
333 |
= 4.0 =
|
334 |
Please update to new release!
|
335 |
+
|
336 |
= 3.0 =
|
337 |
Please update to new release!
|
338 |
+
|
339 |
= 2.0 =
|
340 |
Please update to new release!
|
341 |
+
|
342 |
= 1.0 =
|
343 |
Please update to first stable release!
|