Version Description
- 25.04.2018 =
- Update : Compatibility with the Multilanguage plugin has been improved. Ability to add alternate language pages using Multilanguage plugin has been added.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 3.1.5 |
Comparing to | |
See all releases |
Code changes from version 3.1.4 to 3.1.5
- google-sitemap-plugin.php +71 -23
- includes/class-gglstmp-settings.php +33 -5
- includes/deprecated.php +0 -24
- languages/google-sitemap-plugin-cs_CZ.mo +0 -0
- languages/google-sitemap-plugin-cs_CZ.po +105 -95
- languages/google-sitemap-plugin-es_ES.mo +0 -0
- languages/google-sitemap-plugin-es_ES.po +108 -98
- languages/google-sitemap-plugin-ru_RU.mo +0 -0
- languages/google-sitemap-plugin-ru_RU.po +110 -98
- languages/google-sitemap-plugin-uk.mo +0 -0
- languages/google-sitemap-plugin-uk.po +110 -98
- readme.txt +10 -2
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
google-sitemap-plugin.php
CHANGED
@@ -6,7 +6,7 @@ Description: Generate and add XML sitemap to WordPress website. Help search engi
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-sitemap-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 3.1.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -28,8 +28,6 @@ License: GPLv2 or later
|
|
28 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
29 |
*/
|
30 |
|
31 |
-
require_once( dirname( __FILE__ ) . '/includes/deprecated.php' );
|
32 |
-
|
33 |
if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
|
34 |
function gglstmp_admin_menu() {
|
35 |
global $gglstmp_options, $wp_version, $submenu, $gglstmp_plugin_info;
|
@@ -111,7 +109,7 @@ if ( ! function_exists( 'gglstmp_init' ) ) {
|
|
111 |
/* Get options from the database */
|
112 |
gglstmp_register_settings();
|
113 |
|
114 |
-
if (
|
115 |
add_filter( 'robots_txt', 'gglstmp_robots_add_sitemap', 10, 2 );
|
116 |
}
|
117 |
|
@@ -198,10 +196,6 @@ if ( ! function_exists( 'gglstmp_register_settings' ) ) {
|
|
198 |
if ( ! isset( $gglstmp_options['plugin_option_version'] ) || version_compare( str_replace( 'pro-', '', $gglstmp_options['plugin_option_version'] ), '3.1.0', '<' ) ) {
|
199 |
unset( $gglstmp_options['sitemap'] );
|
200 |
gglstmp_activate();
|
201 |
-
/* Remove sitemap line from robots if exists */
|
202 |
-
if ( function_exists( 'gglstmp_clean_robots' ) ) {
|
203 |
-
gglstmp_clean_robots();
|
204 |
-
}
|
205 |
}
|
206 |
|
207 |
$gglstmp_options['plugin_option_version'] = $gglstmp_plugin_info["Version"];
|
@@ -229,7 +223,8 @@ if ( ! function_exists( 'gglstmp_get_options_default' ) ) {
|
|
229 |
'taxonomy' => array(),
|
230 |
'limit' => 50000,
|
231 |
'sitemap_cron_delay' => 600, /* delay in seconds to next cron */
|
232 |
-
'sitemaps' => array()
|
|
|
233 |
);
|
234 |
return $options_default;
|
235 |
}
|
@@ -322,7 +317,7 @@ if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
|
|
322 |
}
|
323 |
}
|
324 |
|
325 |
-
$post_status = apply_filters('gglstmp_post_status', array( 'publish' ) );
|
326 |
|
327 |
$excluded_posts = $wpdb->get_col( "
|
328 |
SELECT
|
@@ -479,7 +474,7 @@ if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
|
|
479 |
|
480 |
if ( $is_multisite ) {
|
481 |
/* removing main index file */
|
482 |
-
$existing_files = gglstmp_get_sitemap_files(0);
|
483 |
array_map( "unlink", $existing_files );
|
484 |
|
485 |
if ( count( $elements ) > $gglstmp_options['limit'] ) {
|
@@ -509,6 +504,7 @@ if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
|
|
509 |
/**
|
510 |
* @since 3.1.0
|
511 |
* Function creates xml sitemap file with the provided list of elements.
|
|
|
512 |
* Filename is generated in the following way:
|
513 |
* On a single site:
|
514 |
* a) $part_num isn't set: "sitemap.xml"
|
@@ -522,7 +518,7 @@ if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
|
|
522 |
*/
|
523 |
if ( ! function_exists( 'gglstmp_create_sitemap' ) ) {
|
524 |
function gglstmp_create_sitemap( $elements, $part_num = 0 ) {
|
525 |
-
global $blog_id;
|
526 |
|
527 |
$xml = new DomDocument( '1.0', 'utf-8' );
|
528 |
$home_url = site_url( '/' );
|
@@ -532,16 +528,68 @@ if ( ! function_exists( 'gglstmp_create_sitemap' ) ) {
|
|
532 |
$xml->appendChild( $xslt );
|
533 |
$urlset = $xml->appendChild( $xml->createElementNS( 'http://www.sitemaps.org/schemas/sitemap/0.9','urlset' ) );
|
534 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
535 |
foreach ( $elements as $element ) {
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
545 |
}
|
546 |
|
547 |
$xml->formatOutput = true;
|
@@ -899,7 +947,7 @@ if ( ! function_exists( 'gglstmp_get_site_info' ) ) {
|
|
899 |
<td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
|
900 |
|
901 |
$return .= '<tr><th>' . __( 'Verification Status', 'google-sitemap-plugin' ) . '</th>';
|
902 |
-
if ( $wmt_sites_array[ $home_url ]
|
903 |
$return .= '<td>' . __( 'Verified', 'google-sitemap-plugin' ) . '</td></tr>';
|
904 |
} else {
|
905 |
$return .= '<td>' . __( 'Not verified', 'google-sitemap-plugin' ) . '</td></tr>';
|
@@ -1130,7 +1178,7 @@ if ( ! function_exists( 'gglstmp_add_site' ) ) {
|
|
1130 |
) {
|
1131 |
$sitemap_url = $gglstmp_options['sitemaps'][ $sitemap_filename ]['loc'];
|
1132 |
$check_result = gglstmp_check_sitemap( $sitemap_url );
|
1133 |
-
if ( ! is_wp_error( $check_result ) && $check_result['code']
|
1134 |
try {
|
1135 |
$webmasters->sitemaps->submit( $home_url, $sitemap_url );
|
1136 |
$return .= '<td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-sitemap-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 3.1.5
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
28 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
29 |
*/
|
30 |
|
|
|
|
|
31 |
if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
|
32 |
function gglstmp_admin_menu() {
|
33 |
global $gglstmp_options, $wp_version, $submenu, $gglstmp_plugin_info;
|
109 |
/* Get options from the database */
|
110 |
gglstmp_register_settings();
|
111 |
|
112 |
+
if ( ! empty( get_option( 'gglstmp_robots' ) ) ) {
|
113 |
add_filter( 'robots_txt', 'gglstmp_robots_add_sitemap', 10, 2 );
|
114 |
}
|
115 |
|
196 |
if ( ! isset( $gglstmp_options['plugin_option_version'] ) || version_compare( str_replace( 'pro-', '', $gglstmp_options['plugin_option_version'] ), '3.1.0', '<' ) ) {
|
197 |
unset( $gglstmp_options['sitemap'] );
|
198 |
gglstmp_activate();
|
|
|
|
|
|
|
|
|
199 |
}
|
200 |
|
201 |
$gglstmp_options['plugin_option_version'] = $gglstmp_plugin_info["Version"];
|
223 |
'taxonomy' => array(),
|
224 |
'limit' => 50000,
|
225 |
'sitemap_cron_delay' => 600, /* delay in seconds to next cron */
|
226 |
+
'sitemaps' => array(),
|
227 |
+
'alternate_language' => 0,
|
228 |
);
|
229 |
return $options_default;
|
230 |
}
|
317 |
}
|
318 |
}
|
319 |
|
320 |
+
$post_status = apply_filters( 'gglstmp_post_status', array( 'publish' ) );
|
321 |
|
322 |
$excluded_posts = $wpdb->get_col( "
|
323 |
SELECT
|
474 |
|
475 |
if ( $is_multisite ) {
|
476 |
/* removing main index file */
|
477 |
+
$existing_files = gglstmp_get_sitemap_files( 0 );
|
478 |
array_map( "unlink", $existing_files );
|
479 |
|
480 |
if ( count( $elements ) > $gglstmp_options['limit'] ) {
|
504 |
/**
|
505 |
* @since 3.1.0
|
506 |
* Function creates xml sitemap file with the provided list of elements.
|
507 |
+
* Global variables are used and function mltlngg_get_lang_link() is called from the plugin Multilanguage.
|
508 |
* Filename is generated in the following way:
|
509 |
* On a single site:
|
510 |
* a) $part_num isn't set: "sitemap.xml"
|
518 |
*/
|
519 |
if ( ! function_exists( 'gglstmp_create_sitemap' ) ) {
|
520 |
function gglstmp_create_sitemap( $elements, $part_num = 0 ) {
|
521 |
+
global $blog_id, $mltlngg_languages, $mltlngg_enabled_languages, $gglstmp_options;
|
522 |
|
523 |
$xml = new DomDocument( '1.0', 'utf-8' );
|
524 |
$home_url = site_url( '/' );
|
528 |
$xml->appendChild( $xslt );
|
529 |
$urlset = $xml->appendChild( $xml->createElementNS( 'http://www.sitemaps.org/schemas/sitemap/0.9','urlset' ) );
|
530 |
|
531 |
+
/* Used to check compatibility and work with the plugin Multilanguage*/
|
532 |
+
$compatibility = false;
|
533 |
+
if( ! empty( $gglstmp_options['alternate_language'] ) && count( $mltlngg_enabled_languages ) > 1 ) {
|
534 |
+
$compatibility = true;
|
535 |
+
}
|
536 |
+
|
537 |
+
/* Create an array with active languages and add a value for hreflang */
|
538 |
+
$enabled_languages = array();
|
539 |
+
if ( $compatibility ) {
|
540 |
+
$urlset->setAttributeNS( 'http://www.w3.org/2000/xmlns/', 'xmlns:xhtml', 'http://www.w3.org/1999/xhtml' );
|
541 |
+
|
542 |
+
foreach ( $mltlngg_enabled_languages as $language ) {
|
543 |
+
foreach ( $mltlngg_languages as $item ) {
|
544 |
+
if ( $language['name'] == $item[2] ) {
|
545 |
+
$language['lang'] = $item[0];
|
546 |
+
$enabled_languages[$item[2]] = $language;
|
547 |
+
}
|
548 |
+
}
|
549 |
+
}
|
550 |
+
|
551 |
+
if ( function_exists( 'mltlngg_get_lang_link' ) ) {
|
552 |
+
$lang_link = 'mltlngg_get_lang_link';
|
553 |
+
}
|
554 |
+
$args_links = array();
|
555 |
+
}
|
556 |
+
|
557 |
foreach ( $elements as $element ) {
|
558 |
+
if ( $compatibility ) {
|
559 |
+
foreach ( $enabled_languages as $language ) {
|
560 |
+
$args_links["lang"] = $language["locale"];
|
561 |
+
$args_links["url"] = $element["url"];
|
562 |
+
|
563 |
+
$url = $urlset->appendChild( $xml->createElement( 'url' ) );
|
564 |
+
$loc = $url->appendChild( $xml->createElement( 'loc' ) );
|
565 |
+
$loc->appendChild( $xml->createTextNode( $lang_link( $args_links ) ) );
|
566 |
+
|
567 |
+
foreach ( $enabled_languages as $language ) {
|
568 |
+
$args_links["lang"] = $language["locale"];
|
569 |
+
$link = $url->appendChild( $xml->createElement( 'xhtml:link' ) );
|
570 |
+
$link->setAttribute( "rel", "alternate" );
|
571 |
+
$link->setAttribute( "hreflang", $language['lang'] );
|
572 |
+
$link->setAttribute( "href", $lang_link( $args_links ) );
|
573 |
+
}
|
574 |
+
|
575 |
+
$lastmod = $url->appendChild( $xml->createElement( 'lastmod' ) );
|
576 |
+
$lastmod->appendChild( $xml->createTextNode( $element['date'] ) );
|
577 |
+
$changefreq = $url->appendChild( $xml->createElement( 'changefreq' ) );
|
578 |
+
$changefreq->appendChild( $xml->createTextNode( $element['frequency'] ) );
|
579 |
+
$priority = $url->appendChild( $xml->createElement( 'priority' ) );
|
580 |
+
$priority->appendChild( $xml->createTextNode( $element['priority'] ) );
|
581 |
+
}
|
582 |
+
} else {
|
583 |
+
$url = $urlset->appendChild( $xml->createElement( 'url' ) );
|
584 |
+
$loc = $url->appendChild( $xml->createElement( 'loc' ) );
|
585 |
+
$loc->appendChild( $xml->createTextNode( $element['url'] ) );
|
586 |
+
$lastmod = $url->appendChild( $xml->createElement( 'lastmod' ) );
|
587 |
+
$lastmod->appendChild( $xml->createTextNode( $element['date'] ) );
|
588 |
+
$changefreq = $url->appendChild( $xml->createElement( 'changefreq' ) );
|
589 |
+
$changefreq->appendChild( $xml->createTextNode( $element['frequency'] ) );
|
590 |
+
$priority = $url->appendChild( $xml->createElement( 'priority' ) );
|
591 |
+
$priority->appendChild( $xml->createTextNode( $element['priority'] ) );
|
592 |
+
}
|
593 |
}
|
594 |
|
595 |
$xml->formatOutput = true;
|
947 |
<td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
|
948 |
|
949 |
$return .= '<tr><th>' . __( 'Verification Status', 'google-sitemap-plugin' ) . '</th>';
|
950 |
+
if ( 'siteOwner' == $wmt_sites_array[ $home_url ] ) {
|
951 |
$return .= '<td>' . __( 'Verified', 'google-sitemap-plugin' ) . '</td></tr>';
|
952 |
} else {
|
953 |
$return .= '<td>' . __( 'Not verified', 'google-sitemap-plugin' ) . '</td></tr>';
|
1178 |
) {
|
1179 |
$sitemap_url = $gglstmp_options['sitemaps'][ $sitemap_filename ]['loc'];
|
1180 |
$check_result = gglstmp_check_sitemap( $sitemap_url );
|
1181 |
+
if ( ! is_wp_error( $check_result ) && 200 == $check_result['code'] ) {
|
1182 |
try {
|
1183 |
$webmasters->sitemaps->submit( $home_url, $sitemap_url );
|
1184 |
$return .= '<td class="gglstmp_success">' . __( 'Added', 'google-sitemap-plugin' ) . '</td></tr>';
|
includes/class-gglstmp-settings.php
CHANGED
@@ -51,7 +51,7 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
51 |
$all_plugins = get_plugins();
|
52 |
$this->htaccess = gglstmp_plugin_status( array( 'htaccess/htaccess.php', 'htaccess-pro/htaccess-pro.php' ), $all_plugins, false );
|
53 |
$this->htaccess_options = false;
|
54 |
-
if ( $this->htaccess['status']
|
55 |
global $htccss_options;
|
56 |
register_htccss_settings();
|
57 |
$this->htaccess_options = &$htccss_options;
|
@@ -114,7 +114,7 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
114 |
} else {
|
115 |
|
116 |
if ( $this->htaccess_active && $this->htaccess_options && function_exists( 'htccss_generate_htaccess' ) ) {
|
117 |
-
$gglstmp_allow_xml = ( isset( $_POST['gglstmp_allow_xml'] ) &&
|
118 |
if ( $gglstmp_allow_xml != $this->htaccess_options['allow_xml'] ) {
|
119 |
$this->htaccess_options['allow_xml'] = $gglstmp_allow_xml;
|
120 |
update_site_option( 'htccss_options', $this->htaccess_options );
|
@@ -139,7 +139,13 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
139 |
$this->options['limit'] = ( absint( $_POST['gglstmp_limit'] ) >= 1000 && absint( $_POST['gglstmp_limit'] ) <= 50000 ) ? absint( $_POST['gglstmp_limit'] ) : 50000;
|
140 |
}
|
141 |
|
|
|
|
|
|
|
|
|
142 |
$this->robots = isset( $_POST['gglstmp_checkbox'] ) ? 1 : 0;
|
|
|
|
|
143 |
update_option( 'gglstmp_robots', $this->robots );
|
144 |
update_option( 'gglstmp_options', $this->options );
|
145 |
|
@@ -158,7 +164,13 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
158 |
*/
|
159 |
public function tab_settings() { ?>
|
160 |
<h3 class="bws_tab_label"><?php _e( 'Google Sitemap Settings', 'google-sitemap-plugin' ); ?></h3>
|
161 |
-
<?php $this->help_phrase();
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
<hr>
|
163 |
<table class="form-table gglstmp_settings_form">
|
164 |
<tr>
|
@@ -199,11 +211,10 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
199 |
$attr_disabled = 'disabled="disabled"';
|
200 |
$htaccess_plugin_notice = '<a href="' . network_admin_url( '/plugins.php' ) . '">' . __( 'Activate', 'google-sitemap-plugin' ) . '</a>';
|
201 |
} elseif ( 'not_installed' == $this->htaccess['status'] ) {
|
202 |
-
global $wp_version;
|
203 |
$attr_disabled = 'disabled="disabled"';
|
204 |
$htaccess_plugin_notice = '<a href="https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=bc745b0c9d4b19ba95ae2c861418e0df&pn=106&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '">' . __( 'Install Now', 'google-sitemap-plugin' ) . '</a>';
|
205 |
}
|
206 |
-
if (
|
207 |
$attr_checked = 'checked="checked"';
|
208 |
} ?>
|
209 |
<tr id="gglstmp_allow_xml_block">
|
@@ -279,6 +290,23 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
|
|
279 |
</div>
|
280 |
</td>
|
281 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
</table>
|
283 |
<?php }
|
284 |
|
51 |
$all_plugins = get_plugins();
|
52 |
$this->htaccess = gglstmp_plugin_status( array( 'htaccess/htaccess.php', 'htaccess-pro/htaccess-pro.php' ), $all_plugins, false );
|
53 |
$this->htaccess_options = false;
|
54 |
+
if ( 'actived' == $this->htaccess['status'] ) {
|
55 |
global $htccss_options;
|
56 |
register_htccss_settings();
|
57 |
$this->htaccess_options = &$htccss_options;
|
114 |
} else {
|
115 |
|
116 |
if ( $this->htaccess_active && $this->htaccess_options && function_exists( 'htccss_generate_htaccess' ) ) {
|
117 |
+
$gglstmp_allow_xml = ( isset( $_POST['gglstmp_allow_xml'] ) && ! empty( $_POST['gglstmp_allow_xml'] ) ) ? 1 : 0;
|
118 |
if ( $gglstmp_allow_xml != $this->htaccess_options['allow_xml'] ) {
|
119 |
$this->htaccess_options['allow_xml'] = $gglstmp_allow_xml;
|
120 |
update_site_option( 'htccss_options', $this->htaccess_options );
|
139 |
$this->options['limit'] = ( absint( $_POST['gglstmp_limit'] ) >= 1000 && absint( $_POST['gglstmp_limit'] ) <= 50000 ) ? absint( $_POST['gglstmp_limit'] ) : 50000;
|
140 |
}
|
141 |
|
142 |
+
if ( ( empty( $this->options['alternate_language'] ) && isset( $_POST['gglstmp_alternate_language'] ) ) || ( ! empty( $this->options['alternate_language'] ) && ! isset( $_POST['gglstmp_alternate_language'] ) ) ) {
|
143 |
+
$sitemapcreate = true;
|
144 |
+
}
|
145 |
+
|
146 |
$this->robots = isset( $_POST['gglstmp_checkbox'] ) ? 1 : 0;
|
147 |
+
$this->options['alternate_language'] = isset( $_POST['gglstmp_alternate_language'] ) ? 1 : 0;
|
148 |
+
|
149 |
update_option( 'gglstmp_robots', $this->robots );
|
150 |
update_option( 'gglstmp_options', $this->options );
|
151 |
|
164 |
*/
|
165 |
public function tab_settings() { ?>
|
166 |
<h3 class="bws_tab_label"><?php _e( 'Google Sitemap Settings', 'google-sitemap-plugin' ); ?></h3>
|
167 |
+
<?php $this->help_phrase();
|
168 |
+
global $wp_version;
|
169 |
+
if ( ! $this->all_plugins ) {
|
170 |
+
if ( ! function_exists( 'get_plugins' ) )
|
171 |
+
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
172 |
+
$this->all_plugins = get_plugins();
|
173 |
+
} ?>
|
174 |
<hr>
|
175 |
<table class="form-table gglstmp_settings_form">
|
176 |
<tr>
|
211 |
$attr_disabled = 'disabled="disabled"';
|
212 |
$htaccess_plugin_notice = '<a href="' . network_admin_url( '/plugins.php' ) . '">' . __( 'Activate', 'google-sitemap-plugin' ) . '</a>';
|
213 |
} elseif ( 'not_installed' == $this->htaccess['status'] ) {
|
|
|
214 |
$attr_disabled = 'disabled="disabled"';
|
215 |
$htaccess_plugin_notice = '<a href="https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=bc745b0c9d4b19ba95ae2c861418e0df&pn=106&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '">' . __( 'Install Now', 'google-sitemap-plugin' ) . '</a>';
|
216 |
}
|
217 |
+
if ( ! empty( $this->htaccess_options['allow_xml'] ) && empty( $attr_disabled ) ) {
|
218 |
$attr_checked = 'checked="checked"';
|
219 |
} ?>
|
220 |
<tr id="gglstmp_allow_xml_block">
|
290 |
</div>
|
291 |
</td>
|
292 |
</tr>
|
293 |
+
<tr>
|
294 |
+
<th><?php _e( 'Alternate Language Pages', 'google-sitemap-plugin' ); ?></th>
|
295 |
+
<td>
|
296 |
+
<?php $disabled = $link = '';
|
297 |
+
if ( array_key_exists( 'multilanguage/multilanguage.php', $this->all_plugins ) || array_key_exists( 'multilanguage-pro/multilanguage-pro.php', $this->all_plugins ) ) {
|
298 |
+
if ( ! is_plugin_active( 'multilanguage/multilanguage.php' ) && ! is_plugin_active( 'multilanguage-pro/multilanguage-pro.php' ) ) {
|
299 |
+
$disabled = ' disabled="disabled"';
|
300 |
+
$link = '<a href="' . admin_url( 'plugins.php' ) . '">' . __( 'Activate', 'google-sitemap-plugin' ) . '</a>';
|
301 |
+
}
|
302 |
+
} else {
|
303 |
+
$disabled = ' disabled="disabled"';
|
304 |
+
$link = '<a href="https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=84702fda886c65861801c52644d1ee11&pn=83&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version . '" target="_blank">' . __( 'Install Now', 'google-sitemap-plugin' ) . '</a>';
|
305 |
+
} ?>
|
306 |
+
<input type="checkbox" name="gglstmp_alternate_language" value="1" <?php echo $disabled; checked( $this->options['alternate_language'] ) ?> />
|
307 |
+
<span class="bws_info"> <?php _e( "Enable to add alternate language pages using Multilanguage plugin.", 'google-sitemap-plugin' ); ?> <?php echo $link; ?></span>
|
308 |
+
</td>
|
309 |
+
</tr>
|
310 |
</table>
|
311 |
<?php }
|
312 |
|
includes/deprecated.php
DELETED
@@ -1,24 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Includes deprecated functions
|
4 |
-
*/
|
5 |
-
|
6 |
-
/**
|
7 |
-
* Remove sitemap directive from robots.txt when removing plugin
|
8 |
-
* @deprecated since 3.1.0
|
9 |
-
* @todo remove after 28.01.2018
|
10 |
-
*/
|
11 |
-
if ( ! function_exists( 'gglstmp_clean_robots' ) ) {
|
12 |
-
function gglstmp_clean_robots() {
|
13 |
-
$robots_path = ABSPATH . "robots.txt";
|
14 |
-
if ( file_exists( $robots_path ) ) {
|
15 |
-
if ( ! is_writable( $robots_path ) )
|
16 |
-
@chmod( $robots_path, 0755 );
|
17 |
-
if ( is_writable( $robots_path ) ) {
|
18 |
-
$content = file_get_contents( $robots_path );
|
19 |
-
$content = preg_replace( "~\nSitemap: *\.xml~", '', $content );
|
20 |
-
file_put_contents( $robots_path, $content );
|
21 |
-
}
|
22 |
-
}
|
23 |
-
}
|
24 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/google-sitemap-plugin-cs_CZ.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-cs_CZ.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap - BWS\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
@@ -17,163 +17,163 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-sitemap-plugin.php:
|
21 |
-
#: includes/class-gglstmp-settings.php:
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Nastavení Google Sitemap"
|
24 |
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
-
#: google-sitemap-plugin.php:
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Nastavení"
|
30 |
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
msgid "Custom Links"
|
34 |
msgstr "Uživatelské odkazy"
|
35 |
|
36 |
-
#: google-sitemap-plugin.php:
|
37 |
msgid "Upgrade to Pro"
|
38 |
msgstr "Aktualizovat na Pro"
|
39 |
|
40 |
-
#: google-sitemap-plugin.php:
|
41 |
msgid "Post categories"
|
42 |
msgstr "Rubriky příspěvků"
|
43 |
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
msgid "Post tags"
|
46 |
msgstr "Štítky příspěvků"
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
msgid "Please enable JavaScript in your browser."
|
50 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
51 |
|
52 |
-
#: google-sitemap-plugin.php:
|
53 |
msgid "Add New"
|
54 |
msgstr "Přidat nový"
|
55 |
|
56 |
-
#: google-sitemap-plugin.php:
|
57 |
-
#: google-sitemap-plugin.php:
|
58 |
msgid "Website"
|
59 |
msgstr "Webová stránka"
|
60 |
|
61 |
-
#: google-sitemap-plugin.php:
|
62 |
-
#: google-sitemap-plugin.php:
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
msgid "Status"
|
65 |
msgstr "Stav"
|
66 |
|
67 |
-
#: google-sitemap-plugin.php:
|
68 |
-
#: google-sitemap-plugin.php:
|
69 |
msgid "Not added"
|
70 |
msgstr "Nepřidáno"
|
71 |
|
72 |
-
#: google-sitemap-plugin.php:
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
msgid "Added"
|
75 |
msgstr "Přidáno"
|
76 |
|
77 |
-
#: google-sitemap-plugin.php:
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
msgid "Verification Status"
|
80 |
msgstr "Stav ověření"
|
81 |
|
82 |
-
#: google-sitemap-plugin.php:
|
83 |
msgid "Verified"
|
84 |
msgstr "Ověřeno"
|
85 |
|
86 |
-
#: google-sitemap-plugin.php:
|
87 |
msgid "Not verified"
|
88 |
msgstr "Nevěřeno"
|
89 |
|
90 |
-
#: google-sitemap-plugin.php:
|
91 |
msgid "Sitemap Status"
|
92 |
msgstr "Stav sitemap.xml"
|
93 |
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
msgid "Added with errors."
|
96 |
msgstr "Přidáno s chybami."
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
msgid "View errors in Google Webmaster Tools"
|
100 |
msgstr "Zobrazit chyby v Google Webmaster Tools"
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
msgid "Sitemap URL"
|
104 |
msgstr "URL sitemap.xml"
|
105 |
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
-
#: google-sitemap-plugin.php:
|
109 |
-
#: google-sitemap-plugin.php:
|
110 |
-
#: includes/class-gglstmp-settings.php:
|
111 |
msgid "Error"
|
112 |
msgstr "Chyba"
|
113 |
|
114 |
-
#: google-sitemap-plugin.php:
|
115 |
msgid "Please check the sitemap file manually."
|
116 |
msgstr "Zkontrolujte soubor sitemap.xml manuálně."
|
117 |
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
-
#: google-sitemap-plugin.php:
|
121 |
-
#: includes/class-gglstmp-settings.php:
|
122 |
msgid "Learn More"
|
123 |
msgstr "Více informací"
|
124 |
|
125 |
-
#: google-sitemap-plugin.php:
|
126 |
-
#: google-sitemap-plugin.php:
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
msgid "Unexpected error"
|
129 |
msgstr "Neočekávaná chyba"
|
130 |
|
131 |
-
#: google-sitemap-plugin.php:
|
132 |
-
#: google-sitemap-plugin.php:
|
133 |
msgid "Manual verification required."
|
134 |
msgstr "Je vyžadováno ruční ověření."
|
135 |
|
136 |
-
#: google-sitemap-plugin.php:
|
137 |
msgid "Deleted"
|
138 |
msgstr "Odstraněno"
|
139 |
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
-
#: google-sitemap-plugin.php:
|
142 |
msgid "Verification Code"
|
143 |
msgstr "Ověřovací kód"
|
144 |
|
145 |
-
#: google-sitemap-plugin.php:
|
146 |
msgid "Received and added to the site"
|
147 |
msgstr "Přijato a přidáno na web"
|
148 |
|
149 |
-
#: google-sitemap-plugin.php:
|
150 |
msgid "Received, but has not been added to the site"
|
151 |
msgstr "Přijato avšak nepřidáno na web"
|
152 |
|
153 |
-
#: google-sitemap-plugin.php:
|
154 |
msgid "Please add the sitemap file manually."
|
155 |
msgstr "Přidejte soubor sitemap.xml manuálně."
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "Error 404"
|
159 |
msgstr "Chyba 404"
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
#, php-format
|
163 |
msgid "The sitemap file %s not found."
|
164 |
msgstr "Soubor sitemap.xml %s nebyl nalezen."
|
165 |
|
166 |
-
#: google-sitemap-plugin.php:
|
167 |
msgid "The sitemap file not found."
|
168 |
msgstr "Soubor sitemap.xml nebyl nalezen."
|
169 |
|
170 |
-
#: google-sitemap-plugin.php:
|
171 |
msgid "FAQ"
|
172 |
msgstr ""
|
173 |
"Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
|
174 |
"acronym>"
|
175 |
|
176 |
-
#: google-sitemap-plugin.php:
|
177 |
msgid "Support"
|
178 |
msgstr "Podpora"
|
179 |
|
@@ -189,52 +189,54 @@ msgstr "Různé"
|
|
189 |
msgid "License Key"
|
190 |
msgstr "Licenční klíč"
|
191 |
|
192 |
-
#: includes/class-gglstmp-settings.php:
|
193 |
msgid "Settings saved."
|
194 |
msgstr "Nastavení uloženo."
|
195 |
|
196 |
-
#: includes/class-gglstmp-settings.php:
|
197 |
msgid ""
|
198 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
199 |
"file:"
|
200 |
msgstr "Také přidejte následující kód na začátek souboru \".htaccess\":"
|
201 |
|
202 |
-
#: includes/class-gglstmp-settings.php:
|
203 |
msgid "This option will be applied to all websites in the network."
|
204 |
msgstr "Tato volba bude použita pro všechny weby v síti."
|
205 |
|
206 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
207 |
msgid "Activate"
|
208 |
msgstr "Aktivovat"
|
209 |
|
210 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
211 |
msgid "Install Now"
|
212 |
msgstr "Instalovat nyní"
|
213 |
|
214 |
-
#: includes/class-gglstmp-settings.php:
|
215 |
#, php-format
|
216 |
msgid "%s Plugin"
|
217 |
msgstr "%s Plugin"
|
218 |
|
219 |
-
#: includes/class-gglstmp-settings.php:
|
220 |
#, php-format
|
221 |
msgid "Enable to allow XML files access using %s plugin."
|
222 |
msgstr "Povolte přístup ke XML souborům pomocí %s pluginu."
|
223 |
|
224 |
-
#: includes/class-gglstmp-settings.php:
|
225 |
msgid "The following string will be added to your .htaccess file"
|
226 |
msgstr "Následující řetězec bude přidán do vašeho .htaccess souboru"
|
227 |
|
228 |
-
#: includes/class-gglstmp-settings.php:
|
229 |
-
#: includes/class-gglstmp-settings.php:
|
230 |
msgid "Close"
|
231 |
msgstr "Zavřít"
|
232 |
|
233 |
-
#: includes/class-gglstmp-settings.php:
|
234 |
msgid "URLs Limit"
|
235 |
msgstr "Limit URL adres"
|
236 |
|
237 |
-
#: includes/class-gglstmp-settings.php:
|
238 |
msgid ""
|
239 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
240 |
"than 50 MB uncompressed."
|
@@ -242,21 +244,21 @@ msgstr ""
|
|
242 |
"Soubor sitemap.xml nesmí obsahovat více než 50 000 URL adres a v "
|
243 |
"nekomprimované podobě nesmí být větší než 50 MB."
|
244 |
|
245 |
-
#: includes/class-gglstmp-settings.php:
|
246 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
247 |
msgstr ""
|
248 |
"Snižte limit, pokud váš soubor sitemap.xml překročí limit velikosti souboru."
|
249 |
|
250 |
-
#: includes/class-gglstmp-settings.php:
|
251 |
msgid ""
|
252 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
253 |
msgstr "Po dosažení limitu bude soubor sitemap.xml rozdělen na více souborů."
|
254 |
|
255 |
-
#: includes/class-gglstmp-settings.php:
|
256 |
msgid "Google Webmaster Tools"
|
257 |
msgstr "Google Webmaster Tools"
|
258 |
|
259 |
-
#: includes/class-gglstmp-settings.php:
|
260 |
msgid ""
|
261 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
262 |
"automatically."
|
@@ -264,27 +266,27 @@ msgstr ""
|
|
264 |
"Váš hosting nepodporuje cURL, takže nemůžete přidat soubor sitemap.xml (do "
|
265 |
"Google?) automaticky."
|
266 |
|
267 |
-
#: includes/class-gglstmp-settings.php:
|
268 |
msgid "Logout from Google Webmaster Tools"
|
269 |
msgstr "Odhlásit se z Google Webmaster Tools"
|
270 |
|
271 |
-
#: includes/class-gglstmp-settings.php:
|
272 |
msgid "Manage Website with Google Webmaster Tools"
|
273 |
msgstr "Spravovat web s Google Webmaster Tools"
|
274 |
|
275 |
-
#: includes/class-gglstmp-settings.php:
|
276 |
msgid "Add"
|
277 |
msgstr "Přidat"
|
278 |
|
279 |
-
#: includes/class-gglstmp-settings.php:
|
280 |
msgid "Delete"
|
281 |
msgstr "Smazat"
|
282 |
|
283 |
-
#: includes/class-gglstmp-settings.php:
|
284 |
msgid "Get Info"
|
285 |
msgstr "Získat informace"
|
286 |
|
287 |
-
#: includes/class-gglstmp-settings.php:
|
288 |
msgid ""
|
289 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
290 |
"account."
|
@@ -292,64 +294,72 @@ msgstr ""
|
|
292 |
"Přidat, odstranit nebo zobrazit informace o tomto webu pomocí účtu Google "
|
293 |
"Webmaster Tools."
|
294 |
|
295 |
-
#: includes/class-gglstmp-settings.php:
|
296 |
msgid "Get Authorization Code"
|
297 |
msgstr "Získat autorizační kód"
|
298 |
|
299 |
-
#: includes/class-gglstmp-settings.php:
|
300 |
msgid "Authorize"
|
301 |
msgstr "Schválit"
|
302 |
|
303 |
-
#: includes/class-gglstmp-settings.php:
|
304 |
msgid "Invalid authorization code. Please try again."
|
305 |
msgstr "Neplatný autorizační kód. Zkuste to znovu."
|
306 |
|
307 |
-
#: includes/class-gglstmp-settings.php:
|
308 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
309 |
msgstr "Můžete také přidat soubor sitemap.xml na Google Webmaster Tools ručně."
|
310 |
|
311 |
-
#: includes/class-gglstmp-settings.php:
|
312 |
msgid "Read the instruction"
|
313 |
msgstr "Přečíst si instrukce"
|
314 |
|
315 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
msgid "Post category"
|
317 |
msgstr "Kategorie příspěvku"
|
318 |
|
319 |
-
#: includes/class-gglstmp-settings.php:
|
320 |
msgid "Post tag"
|
321 |
msgstr "Štítek příspěvku"
|
322 |
|
323 |
-
#: includes/class-gglstmp-settings.php:
|
324 |
msgid "Sitemap Structure"
|
325 |
msgstr "Struktura sitemap.xml"
|
326 |
|
327 |
-
#: includes/class-gglstmp-settings.php:
|
328 |
msgid "Post Types"
|
329 |
msgstr "Typy příspěvků"
|
330 |
|
331 |
-
#: includes/class-gglstmp-settings.php:
|
332 |
msgid "Enable to add post type links to the sitemap."
|
333 |
msgstr "Do souboru sitemap.xml přidat typy příspěvků."
|
334 |
|
335 |
-
#: includes/class-gglstmp-settings.php:
|
336 |
msgid "Taxonomies"
|
337 |
msgstr "Taxonomie"
|
338 |
|
339 |
-
#: includes/class-gglstmp-settings.php:
|
340 |
msgid "Enable to taxonomy links to the sitemap."
|
341 |
msgstr "Do souboru sitemap.xml přidat taxonomie."
|
342 |
|
343 |
-
#: includes/class-gglstmp-settings.php:
|
344 |
#, php-format
|
345 |
msgid "%s is in the site root directory."
|
346 |
msgstr "%s je v kořenovém adresáři webu."
|
347 |
|
348 |
-
#: includes/class-gglstmp-settings.php:
|
349 |
msgid "The Sitemap file"
|
350 |
msgstr "Soubor sitemap.xml"
|
351 |
|
352 |
-
#: includes/class-gglstmp-settings.php:
|
353 |
#, php-format
|
354 |
msgid ""
|
355 |
"Can't access XML files. Try to add the following rule %s to your %s file "
|
@@ -361,11 +371,11 @@ msgstr ""
|
|
361 |
"adresáři vašeho webu. Vyhledejte následující řádek %s a kód vložte hned za "
|
362 |
"ním."
|
363 |
|
364 |
-
#: includes/class-gglstmp-settings.php:
|
365 |
msgid "Note"
|
366 |
msgstr "Poznámka"
|
367 |
|
368 |
-
#: includes/class-gglstmp-settings.php:
|
369 |
msgid ""
|
370 |
"Another plugin is providing Google Client functionality and may interrupt "
|
371 |
"proper plugin work."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap - BWS\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-03-26 17:37+0300\n"
|
6 |
+
"PO-Revision-Date: 2018-03-26 17:37+0300\n"
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-sitemap-plugin.php:36 google-sitemap-plugin.php:46
|
21 |
+
#: includes/class-gglstmp-settings.php:166
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Nastavení Google Sitemap"
|
24 |
|
25 |
+
#: google-sitemap-plugin.php:47 google-sitemap-plugin.php:883
|
26 |
+
#: google-sitemap-plugin.php:1279 google-sitemap-plugin.php:1292
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Nastavení"
|
30 |
|
31 |
+
#: google-sitemap-plugin.php:55 google-sitemap-plugin.php:56
|
32 |
+
#: google-sitemap-plugin.php:888
|
33 |
msgid "Custom Links"
|
34 |
msgstr "Uživatelské odkazy"
|
35 |
|
36 |
+
#: google-sitemap-plugin.php:74 includes/pro_banners.php:27
|
37 |
msgid "Upgrade to Pro"
|
38 |
msgstr "Aktualizovat na Pro"
|
39 |
|
40 |
+
#: google-sitemap-plugin.php:354
|
41 |
msgid "Post categories"
|
42 |
msgstr "Rubriky příspěvků"
|
43 |
|
44 |
+
#: google-sitemap-plugin.php:355
|
45 |
msgid "Post tags"
|
46 |
msgstr "Štítky příspěvků"
|
47 |
|
48 |
+
#: google-sitemap-plugin.php:884
|
49 |
msgid "Please enable JavaScript in your browser."
|
50 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
51 |
|
52 |
+
#: google-sitemap-plugin.php:889
|
53 |
msgid "Add New"
|
54 |
msgstr "Přidat nový"
|
55 |
|
56 |
+
#: google-sitemap-plugin.php:931 google-sitemap-plugin.php:1017
|
57 |
+
#: google-sitemap-plugin.php:1068
|
58 |
msgid "Website"
|
59 |
msgstr "Webová stránka"
|
60 |
|
61 |
+
#: google-sitemap-plugin.php:942 google-sitemap-plugin.php:946
|
62 |
+
#: google-sitemap-plugin.php:1033 google-sitemap-plugin.php:1049
|
63 |
+
#: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1086
|
64 |
msgid "Status"
|
65 |
msgstr "Stav"
|
66 |
|
67 |
+
#: google-sitemap-plugin.php:943 google-sitemap-plugin.php:975
|
68 |
+
#: google-sitemap-plugin.php:1050
|
69 |
msgid "Not added"
|
70 |
msgstr "Nepřidáno"
|
71 |
|
72 |
+
#: google-sitemap-plugin.php:947 google-sitemap-plugin.php:978
|
73 |
+
#: google-sitemap-plugin.php:1073 google-sitemap-plugin.php:1184
|
74 |
msgid "Added"
|
75 |
msgstr "Přidáno"
|
76 |
|
77 |
+
#: google-sitemap-plugin.php:949 google-sitemap-plugin.php:1129
|
78 |
+
#: google-sitemap-plugin.php:1141 google-sitemap-plugin.php:1155
|
79 |
msgid "Verification Status"
|
80 |
msgstr "Stav ověření"
|
81 |
|
82 |
+
#: google-sitemap-plugin.php:951 google-sitemap-plugin.php:1142
|
83 |
msgid "Verified"
|
84 |
msgstr "Ověřeno"
|
85 |
|
86 |
+
#: google-sitemap-plugin.php:953
|
87 |
msgid "Not verified"
|
88 |
msgstr "Nevěřeno"
|
89 |
|
90 |
+
#: google-sitemap-plugin.php:962 google-sitemap-plugin.php:1163
|
91 |
msgid "Sitemap Status"
|
92 |
msgstr "Stav sitemap.xml"
|
93 |
|
94 |
+
#: google-sitemap-plugin.php:980
|
95 |
msgid "Added with errors."
|
96 |
msgstr "Přidáno s chybami."
|
97 |
|
98 |
+
#: google-sitemap-plugin.php:980
|
99 |
msgid "View errors in Google Webmaster Tools"
|
100 |
msgstr "Zobrazit chyby v Google Webmaster Tools"
|
101 |
|
102 |
+
#: google-sitemap-plugin.php:983
|
103 |
msgid "Sitemap URL"
|
104 |
msgstr "URL sitemap.xml"
|
105 |
|
106 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1002
|
107 |
+
#: google-sitemap-plugin.php:1052 google-sitemap-plugin.php:1088
|
108 |
+
#: google-sitemap-plugin.php:1126 google-sitemap-plugin.php:1157
|
109 |
+
#: google-sitemap-plugin.php:1197 google-sitemap-plugin.php:1217
|
110 |
+
#: includes/class-gglstmp-settings.php:429
|
111 |
msgid "Error"
|
112 |
msgstr "Chyba"
|
113 |
|
114 |
+
#: google-sitemap-plugin.php:986
|
115 |
msgid "Please check the sitemap file manually."
|
116 |
msgstr "Zkontrolujte soubor sitemap.xml manuálně."
|
117 |
|
118 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1004
|
119 |
+
#: google-sitemap-plugin.php:1091 google-sitemap-plugin.php:1130
|
120 |
+
#: google-sitemap-plugin.php:1160 google-sitemap-plugin.php:1200
|
121 |
+
#: includes/class-gglstmp-settings.php:247 includes/pro_banners.php:47
|
122 |
msgid "Learn More"
|
123 |
msgstr "Více informací"
|
124 |
|
125 |
+
#: google-sitemap-plugin.php:991 google-sitemap-plugin.php:1040
|
126 |
+
#: google-sitemap-plugin.php:1076 google-sitemap-plugin.php:1114
|
127 |
+
#: google-sitemap-plugin.php:1145 google-sitemap-plugin.php:1187
|
128 |
msgid "Unexpected error"
|
129 |
msgstr "Neočekávaná chyba"
|
130 |
|
131 |
+
#: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1091
|
132 |
+
#: google-sitemap-plugin.php:1160
|
133 |
msgid "Manual verification required."
|
134 |
msgstr "Je vyžadováno ruční ověření."
|
135 |
|
136 |
+
#: google-sitemap-plugin.php:1034
|
137 |
msgid "Deleted"
|
138 |
msgstr "Odstraněno"
|
139 |
|
140 |
+
#: google-sitemap-plugin.php:1106 google-sitemap-plugin.php:1109
|
141 |
+
#: google-sitemap-plugin.php:1125
|
142 |
msgid "Verification Code"
|
143 |
msgstr "Ověřovací kód"
|
144 |
|
145 |
+
#: google-sitemap-plugin.php:1107
|
146 |
msgid "Received and added to the site"
|
147 |
msgstr "Přijato a přidáno na web"
|
148 |
|
149 |
+
#: google-sitemap-plugin.php:1110
|
150 |
msgid "Received, but has not been added to the site"
|
151 |
msgstr "Přijato avšak nepřidáno na web"
|
152 |
|
153 |
+
#: google-sitemap-plugin.php:1200
|
154 |
msgid "Please add the sitemap file manually."
|
155 |
msgstr "Přidejte soubor sitemap.xml manuálně."
|
156 |
|
157 |
+
#: google-sitemap-plugin.php:1205
|
158 |
msgid "Error 404"
|
159 |
msgstr "Chyba 404"
|
160 |
|
161 |
+
#: google-sitemap-plugin.php:1207
|
162 |
#, php-format
|
163 |
msgid "The sitemap file %s not found."
|
164 |
msgstr "Soubor sitemap.xml %s nebyl nalezen."
|
165 |
|
166 |
+
#: google-sitemap-plugin.php:1217
|
167 |
msgid "The sitemap file not found."
|
168 |
msgstr "Soubor sitemap.xml nebyl nalezen."
|
169 |
|
170 |
+
#: google-sitemap-plugin.php:1294
|
171 |
msgid "FAQ"
|
172 |
msgstr ""
|
173 |
"Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
|
174 |
"acronym>"
|
175 |
|
176 |
+
#: google-sitemap-plugin.php:1295
|
177 |
msgid "Support"
|
178 |
msgstr "Podpora"
|
179 |
|
189 |
msgid "License Key"
|
190 |
msgstr "Licenční klíč"
|
191 |
|
192 |
+
#: includes/class-gglstmp-settings.php:156
|
193 |
msgid "Settings saved."
|
194 |
msgstr "Nastavení uloženo."
|
195 |
|
196 |
+
#: includes/class-gglstmp-settings.php:195
|
197 |
msgid ""
|
198 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
199 |
"file:"
|
200 |
msgstr "Také přidejte následující kód na začátek souboru \".htaccess\":"
|
201 |
|
202 |
+
#: includes/class-gglstmp-settings.php:209
|
203 |
msgid "This option will be applied to all websites in the network."
|
204 |
msgstr "Tato volba bude použita pro všechny weby v síti."
|
205 |
|
206 |
+
#: includes/class-gglstmp-settings.php:212
|
207 |
+
#: includes/class-gglstmp-settings.php:300
|
208 |
msgid "Activate"
|
209 |
msgstr "Aktivovat"
|
210 |
|
211 |
+
#: includes/class-gglstmp-settings.php:215
|
212 |
+
#: includes/class-gglstmp-settings.php:304
|
213 |
msgid "Install Now"
|
214 |
msgstr "Instalovat nyní"
|
215 |
|
216 |
+
#: includes/class-gglstmp-settings.php:221
|
217 |
#, php-format
|
218 |
msgid "%s Plugin"
|
219 |
msgstr "%s Plugin"
|
220 |
|
221 |
+
#: includes/class-gglstmp-settings.php:223
|
222 |
#, php-format
|
223 |
msgid "Enable to allow XML files access using %s plugin."
|
224 |
msgstr "Povolte přístup ke XML souborům pomocí %s pluginu."
|
225 |
|
226 |
+
#: includes/class-gglstmp-settings.php:224
|
227 |
msgid "The following string will be added to your .htaccess file"
|
228 |
msgstr "Následující řetězec bude přidán do vašeho .htaccess souboru"
|
229 |
|
230 |
+
#: includes/class-gglstmp-settings.php:232
|
231 |
+
#: includes/class-gglstmp-settings.php:354 includes/pro_banners.php:21
|
232 |
msgid "Close"
|
233 |
msgstr "Zavřít"
|
234 |
|
235 |
+
#: includes/class-gglstmp-settings.php:243
|
236 |
msgid "URLs Limit"
|
237 |
msgstr "Limit URL adres"
|
238 |
|
239 |
+
#: includes/class-gglstmp-settings.php:247
|
240 |
msgid ""
|
241 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
242 |
"than 50 MB uncompressed."
|
244 |
"Soubor sitemap.xml nesmí obsahovat více než 50 000 URL adres a v "
|
245 |
"nekomprimované podobě nesmí být větší než 50 MB."
|
246 |
|
247 |
+
#: includes/class-gglstmp-settings.php:248
|
248 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
249 |
msgstr ""
|
250 |
"Snižte limit, pokud váš soubor sitemap.xml překročí limit velikosti souboru."
|
251 |
|
252 |
+
#: includes/class-gglstmp-settings.php:249
|
253 |
msgid ""
|
254 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
255 |
msgstr "Po dosažení limitu bude soubor sitemap.xml rozdělen na více souborů."
|
256 |
|
257 |
+
#: includes/class-gglstmp-settings.php:254
|
258 |
msgid "Google Webmaster Tools"
|
259 |
msgstr "Google Webmaster Tools"
|
260 |
|
261 |
+
#: includes/class-gglstmp-settings.php:257
|
262 |
msgid ""
|
263 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
264 |
"automatically."
|
266 |
"Váš hosting nepodporuje cURL, takže nemůžete přidat soubor sitemap.xml (do "
|
267 |
"Google?) automaticky."
|
268 |
|
269 |
+
#: includes/class-gglstmp-settings.php:260
|
270 |
msgid "Logout from Google Webmaster Tools"
|
271 |
msgstr "Odhlásit se z Google Webmaster Tools"
|
272 |
|
273 |
+
#: includes/class-gglstmp-settings.php:264
|
274 |
msgid "Manage Website with Google Webmaster Tools"
|
275 |
msgstr "Spravovat web s Google Webmaster Tools"
|
276 |
|
277 |
+
#: includes/class-gglstmp-settings.php:266
|
278 |
msgid "Add"
|
279 |
msgstr "Přidat"
|
280 |
|
281 |
+
#: includes/class-gglstmp-settings.php:267 includes/pro_banners.php:138
|
282 |
msgid "Delete"
|
283 |
msgstr "Smazat"
|
284 |
|
285 |
+
#: includes/class-gglstmp-settings.php:268
|
286 |
msgid "Get Info"
|
287 |
msgstr "Získat informace"
|
288 |
|
289 |
+
#: includes/class-gglstmp-settings.php:270
|
290 |
msgid ""
|
291 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
292 |
"account."
|
294 |
"Přidat, odstranit nebo zobrazit informace o tomto webu pomocí účtu Google "
|
295 |
"Webmaster Tools."
|
296 |
|
297 |
+
#: includes/class-gglstmp-settings.php:278
|
298 |
msgid "Get Authorization Code"
|
299 |
msgstr "Získat autorizační kód"
|
300 |
|
301 |
+
#: includes/class-gglstmp-settings.php:281
|
302 |
msgid "Authorize"
|
303 |
msgstr "Schválit"
|
304 |
|
305 |
+
#: includes/class-gglstmp-settings.php:284
|
306 |
msgid "Invalid authorization code. Please try again."
|
307 |
msgstr "Neplatný autorizační kód. Zkuste to znovu."
|
308 |
|
309 |
+
#: includes/class-gglstmp-settings.php:289
|
310 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
311 |
msgstr "Můžete také přidat soubor sitemap.xml na Google Webmaster Tools ručně."
|
312 |
|
313 |
+
#: includes/class-gglstmp-settings.php:289
|
314 |
msgid "Read the instruction"
|
315 |
msgstr "Přečíst si instrukce"
|
316 |
|
317 |
+
#: includes/class-gglstmp-settings.php:294
|
318 |
+
msgid "Alternate Language Pages"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: includes/class-gglstmp-settings.php:307
|
322 |
+
msgid "Enable to add alternate language pages using Multilanguage plugin."
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: includes/class-gglstmp-settings.php:321
|
326 |
msgid "Post category"
|
327 |
msgstr "Kategorie příspěvku"
|
328 |
|
329 |
+
#: includes/class-gglstmp-settings.php:322
|
330 |
msgid "Post tag"
|
331 |
msgstr "Štítek příspěvku"
|
332 |
|
333 |
+
#: includes/class-gglstmp-settings.php:324
|
334 |
msgid "Sitemap Structure"
|
335 |
msgstr "Struktura sitemap.xml"
|
336 |
|
337 |
+
#: includes/class-gglstmp-settings.php:329
|
338 |
msgid "Post Types"
|
339 |
msgstr "Typy příspěvků"
|
340 |
|
341 |
+
#: includes/class-gglstmp-settings.php:336
|
342 |
msgid "Enable to add post type links to the sitemap."
|
343 |
msgstr "Do souboru sitemap.xml přidat typy příspěvků."
|
344 |
|
345 |
+
#: includes/class-gglstmp-settings.php:340
|
346 |
msgid "Taxonomies"
|
347 |
msgstr "Taxonomie"
|
348 |
|
349 |
+
#: includes/class-gglstmp-settings.php:347
|
350 |
msgid "Enable to taxonomy links to the sitemap."
|
351 |
msgstr "Do souboru sitemap.xml přidat taxonomie."
|
352 |
|
353 |
+
#: includes/class-gglstmp-settings.php:403
|
354 |
#, php-format
|
355 |
msgid "%s is in the site root directory."
|
356 |
msgstr "%s je v kořenovém adresáři webu."
|
357 |
|
358 |
+
#: includes/class-gglstmp-settings.php:404
|
359 |
msgid "The Sitemap file"
|
360 |
msgstr "Soubor sitemap.xml"
|
361 |
|
362 |
+
#: includes/class-gglstmp-settings.php:430
|
363 |
#, php-format
|
364 |
msgid ""
|
365 |
"Can't access XML files. Try to add the following rule %s to your %s file "
|
371 |
"adresáři vašeho webu. Vyhledejte následující řádek %s a kód vložte hned za "
|
372 |
"ním."
|
373 |
|
374 |
+
#: includes/class-gglstmp-settings.php:446
|
375 |
msgid "Note"
|
376 |
msgstr "Poznámka"
|
377 |
|
378 |
+
#: includes/class-gglstmp-settings.php:446
|
379 |
msgid ""
|
380 |
"Another plugin is providing Google Client functionality and may interrupt "
|
381 |
"proper plugin work."
|
languages/google-sitemap-plugin-es_ES.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <wp@bestwebsoft.com>\n"
|
9 |
"Language: es_ES\n"
|
@@ -17,161 +17,161 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-sitemap-plugin.php:
|
21 |
-
#: includes/class-gglstmp-settings.php:
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Ajustes de Google Sitemap"
|
24 |
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
-
#: google-sitemap-plugin.php:
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Configuración"
|
30 |
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
msgid "Custom Links"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: google-sitemap-plugin.php:
|
37 |
msgid "Upgrade to Pro"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: google-sitemap-plugin.php:
|
41 |
msgid "Post categories"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
msgid "Post tags"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
msgid "Please enable JavaScript in your browser."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: google-sitemap-plugin.php:
|
53 |
msgid "Add New"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: google-sitemap-plugin.php:
|
57 |
-
#: google-sitemap-plugin.php:
|
58 |
msgid "Website"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: google-sitemap-plugin.php:
|
62 |
-
#: google-sitemap-plugin.php:
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
msgid "Status"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: google-sitemap-plugin.php:
|
68 |
-
#: google-sitemap-plugin.php:
|
69 |
msgid "Not added"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: google-sitemap-plugin.php:
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
msgid "Added"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: google-sitemap-plugin.php:
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
msgid "Verification Status"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: google-sitemap-plugin.php:
|
83 |
msgid "Verified"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: google-sitemap-plugin.php:
|
87 |
msgid "Not verified"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: google-sitemap-plugin.php:
|
91 |
msgid "Sitemap Status"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
msgid "Added with errors."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
msgid "View errors in Google Webmaster Tools"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
msgid "Sitemap URL"
|
104 |
msgstr "Sitemap URL"
|
105 |
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
-
#: google-sitemap-plugin.php:
|
109 |
-
#: google-sitemap-plugin.php:
|
110 |
-
#: includes/class-gglstmp-settings.php:
|
111 |
msgid "Error"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: google-sitemap-plugin.php:
|
115 |
msgid "Please check the sitemap file manually."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
-
#: google-sitemap-plugin.php:
|
121 |
-
#: includes/class-gglstmp-settings.php:
|
122 |
msgid "Learn More"
|
123 |
msgstr "Aprende más"
|
124 |
|
125 |
-
#: google-sitemap-plugin.php:
|
126 |
-
#: google-sitemap-plugin.php:
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
msgid "Unexpected error"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: google-sitemap-plugin.php:
|
132 |
-
#: google-sitemap-plugin.php:
|
133 |
msgid "Manual verification required."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: google-sitemap-plugin.php:
|
137 |
msgid "Deleted"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
-
#: google-sitemap-plugin.php:
|
142 |
msgid "Verification Code"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: google-sitemap-plugin.php:
|
146 |
msgid "Received and added to the site"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: google-sitemap-plugin.php:
|
150 |
msgid "Received, but has not been added to the site"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: google-sitemap-plugin.php:
|
154 |
msgid "Please add the sitemap file manually."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "Error 404"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
#, php-format
|
163 |
msgid "The sitemap file %s not found."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: google-sitemap-plugin.php:
|
167 |
msgid "The sitemap file not found."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: google-sitemap-plugin.php:
|
171 |
msgid "FAQ"
|
172 |
msgstr "FAQ"
|
173 |
|
174 |
-
#: google-sitemap-plugin.php:
|
175 |
msgid "Support"
|
176 |
msgstr "Soporte"
|
177 |
|
@@ -187,178 +187,188 @@ msgstr ""
|
|
187 |
msgid "License Key"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/class-gglstmp-settings.php:
|
191 |
msgid "Settings saved."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/class-gglstmp-settings.php:
|
195 |
#, fuzzy, php-format
|
196 |
msgctxt "%robots.txt file link%"
|
197 |
msgid "Enable to add a sitemap file path to the %s file."
|
198 |
msgstr "añadir sitemap archivo de la ruta en"
|
199 |
|
200 |
-
#: includes/class-gglstmp-settings.php:
|
201 |
#, php-format
|
202 |
msgctxt "%reading settings page link%"
|
203 |
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/class-gglstmp-settings.php:
|
207 |
#, fuzzy
|
208 |
msgctxt "...on the reading settings page."
|
209 |
msgid "Reading Settings page"
|
210 |
msgstr "страницу настроек"
|
211 |
|
212 |
-
#: includes/class-gglstmp-settings.php:
|
213 |
msgid ""
|
214 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
215 |
"file:"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/class-gglstmp-settings.php:
|
219 |
msgid "This option will be applied to all websites in the network."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
223 |
msgid "Activate"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
227 |
msgid "Install Now"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: includes/class-gglstmp-settings.php:
|
231 |
#, php-format
|
232 |
msgid "%s Plugin"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/class-gglstmp-settings.php:
|
236 |
#, php-format
|
237 |
msgid "Enable to allow XML files access using %s plugin."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/class-gglstmp-settings.php:
|
241 |
msgid "The following string will be added to your .htaccess file"
|
242 |
msgstr "La siguiente cuerda se añadirá al su archivo .htaccess"
|
243 |
|
244 |
-
#: includes/class-gglstmp-settings.php:
|
245 |
-
#: includes/class-gglstmp-settings.php:
|
246 |
msgid "Close"
|
247 |
msgstr "Cerrar"
|
248 |
|
249 |
-
#: includes/class-gglstmp-settings.php:
|
250 |
msgid "URLs Limit"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/class-gglstmp-settings.php:
|
254 |
msgid ""
|
255 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
256 |
"than 50 MB uncompressed."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/class-gglstmp-settings.php:
|
260 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/class-gglstmp-settings.php:
|
264 |
msgid ""
|
265 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: includes/class-gglstmp-settings.php:
|
269 |
msgid "Google Webmaster Tools"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: includes/class-gglstmp-settings.php:
|
273 |
msgid ""
|
274 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
275 |
"automatically."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/class-gglstmp-settings.php:
|
279 |
msgid "Logout from Google Webmaster Tools"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/class-gglstmp-settings.php:
|
283 |
msgid "Manage Website with Google Webmaster Tools"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/class-gglstmp-settings.php:
|
287 |
msgid "Add"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/class-gglstmp-settings.php:
|
291 |
msgid "Delete"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/class-gglstmp-settings.php:
|
295 |
msgid "Get Info"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/class-gglstmp-settings.php:
|
299 |
msgid ""
|
300 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
301 |
"account."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/class-gglstmp-settings.php:
|
305 |
msgid "Get Authorization Code"
|
306 |
msgstr "Obtener el código de autorización"
|
307 |
|
308 |
-
#: includes/class-gglstmp-settings.php:
|
309 |
msgid "Authorize"
|
310 |
msgstr "Autorizar"
|
311 |
|
312 |
-
#: includes/class-gglstmp-settings.php:
|
313 |
msgid "Invalid authorization code. Please try again."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: includes/class-gglstmp-settings.php:
|
317 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: includes/class-gglstmp-settings.php:
|
321 |
msgid "Read the instruction"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
msgid "Post category"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: includes/class-gglstmp-settings.php:
|
329 |
msgid "Post tag"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: includes/class-gglstmp-settings.php:
|
333 |
msgid "Sitemap Structure"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: includes/class-gglstmp-settings.php:
|
337 |
msgid "Post Types"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: includes/class-gglstmp-settings.php:
|
341 |
msgid "Enable to add post type links to the sitemap."
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: includes/class-gglstmp-settings.php:
|
345 |
msgid "Taxonomies"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: includes/class-gglstmp-settings.php:
|
349 |
msgid "Enable to taxonomy links to the sitemap."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: includes/class-gglstmp-settings.php:
|
353 |
#, php-format
|
354 |
msgid "%s is in the site root directory."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: includes/class-gglstmp-settings.php:
|
358 |
msgid "The Sitemap file"
|
359 |
msgstr "El archivo de Sitemap"
|
360 |
|
361 |
-
#: includes/class-gglstmp-settings.php:
|
362 |
#, php-format
|
363 |
msgid ""
|
364 |
"Can't access XML files. Try to add the following rule %s to your %s file "
|
@@ -366,11 +376,11 @@ msgid ""
|
|
366 |
"following line %s and paste the code just after it."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: includes/class-gglstmp-settings.php:
|
370 |
msgid "Note"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: includes/class-gglstmp-settings.php:
|
374 |
msgid ""
|
375 |
"Another plugin is providing Google Client functionality and may interrupt "
|
376 |
"proper plugin work."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-03-26 17:37+0300\n"
|
6 |
+
"PO-Revision-Date: 2018-03-26 17:37+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <wp@bestwebsoft.com>\n"
|
9 |
"Language: es_ES\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-sitemap-plugin.php:36 google-sitemap-plugin.php:46
|
21 |
+
#: includes/class-gglstmp-settings.php:166
|
22 |
msgid "Google Sitemap Settings"
|
23 |
msgstr "Ajustes de Google Sitemap"
|
24 |
|
25 |
+
#: google-sitemap-plugin.php:47 google-sitemap-plugin.php:883
|
26 |
+
#: google-sitemap-plugin.php:1279 google-sitemap-plugin.php:1292
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Configuración"
|
30 |
|
31 |
+
#: google-sitemap-plugin.php:55 google-sitemap-plugin.php:56
|
32 |
+
#: google-sitemap-plugin.php:888
|
33 |
msgid "Custom Links"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: google-sitemap-plugin.php:74 includes/pro_banners.php:27
|
37 |
msgid "Upgrade to Pro"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: google-sitemap-plugin.php:354
|
41 |
msgid "Post categories"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: google-sitemap-plugin.php:355
|
45 |
msgid "Post tags"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: google-sitemap-plugin.php:884
|
49 |
msgid "Please enable JavaScript in your browser."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: google-sitemap-plugin.php:889
|
53 |
msgid "Add New"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: google-sitemap-plugin.php:931 google-sitemap-plugin.php:1017
|
57 |
+
#: google-sitemap-plugin.php:1068
|
58 |
msgid "Website"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: google-sitemap-plugin.php:942 google-sitemap-plugin.php:946
|
62 |
+
#: google-sitemap-plugin.php:1033 google-sitemap-plugin.php:1049
|
63 |
+
#: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1086
|
64 |
msgid "Status"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: google-sitemap-plugin.php:943 google-sitemap-plugin.php:975
|
68 |
+
#: google-sitemap-plugin.php:1050
|
69 |
msgid "Not added"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: google-sitemap-plugin.php:947 google-sitemap-plugin.php:978
|
73 |
+
#: google-sitemap-plugin.php:1073 google-sitemap-plugin.php:1184
|
74 |
msgid "Added"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: google-sitemap-plugin.php:949 google-sitemap-plugin.php:1129
|
78 |
+
#: google-sitemap-plugin.php:1141 google-sitemap-plugin.php:1155
|
79 |
msgid "Verification Status"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: google-sitemap-plugin.php:951 google-sitemap-plugin.php:1142
|
83 |
msgid "Verified"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: google-sitemap-plugin.php:953
|
87 |
msgid "Not verified"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: google-sitemap-plugin.php:962 google-sitemap-plugin.php:1163
|
91 |
msgid "Sitemap Status"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: google-sitemap-plugin.php:980
|
95 |
msgid "Added with errors."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: google-sitemap-plugin.php:980
|
99 |
msgid "View errors in Google Webmaster Tools"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: google-sitemap-plugin.php:983
|
103 |
msgid "Sitemap URL"
|
104 |
msgstr "Sitemap URL"
|
105 |
|
106 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1002
|
107 |
+
#: google-sitemap-plugin.php:1052 google-sitemap-plugin.php:1088
|
108 |
+
#: google-sitemap-plugin.php:1126 google-sitemap-plugin.php:1157
|
109 |
+
#: google-sitemap-plugin.php:1197 google-sitemap-plugin.php:1217
|
110 |
+
#: includes/class-gglstmp-settings.php:429
|
111 |
msgid "Error"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: google-sitemap-plugin.php:986
|
115 |
msgid "Please check the sitemap file manually."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1004
|
119 |
+
#: google-sitemap-plugin.php:1091 google-sitemap-plugin.php:1130
|
120 |
+
#: google-sitemap-plugin.php:1160 google-sitemap-plugin.php:1200
|
121 |
+
#: includes/class-gglstmp-settings.php:247 includes/pro_banners.php:47
|
122 |
msgid "Learn More"
|
123 |
msgstr "Aprende más"
|
124 |
|
125 |
+
#: google-sitemap-plugin.php:991 google-sitemap-plugin.php:1040
|
126 |
+
#: google-sitemap-plugin.php:1076 google-sitemap-plugin.php:1114
|
127 |
+
#: google-sitemap-plugin.php:1145 google-sitemap-plugin.php:1187
|
128 |
msgid "Unexpected error"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1091
|
132 |
+
#: google-sitemap-plugin.php:1160
|
133 |
msgid "Manual verification required."
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: google-sitemap-plugin.php:1034
|
137 |
msgid "Deleted"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: google-sitemap-plugin.php:1106 google-sitemap-plugin.php:1109
|
141 |
+
#: google-sitemap-plugin.php:1125
|
142 |
msgid "Verification Code"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: google-sitemap-plugin.php:1107
|
146 |
msgid "Received and added to the site"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: google-sitemap-plugin.php:1110
|
150 |
msgid "Received, but has not been added to the site"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: google-sitemap-plugin.php:1200
|
154 |
msgid "Please add the sitemap file manually."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: google-sitemap-plugin.php:1205
|
158 |
msgid "Error 404"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: google-sitemap-plugin.php:1207
|
162 |
#, php-format
|
163 |
msgid "The sitemap file %s not found."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: google-sitemap-plugin.php:1217
|
167 |
msgid "The sitemap file not found."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: google-sitemap-plugin.php:1294
|
171 |
msgid "FAQ"
|
172 |
msgstr "FAQ"
|
173 |
|
174 |
+
#: google-sitemap-plugin.php:1295
|
175 |
msgid "Support"
|
176 |
msgstr "Soporte"
|
177 |
|
187 |
msgid "License Key"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: includes/class-gglstmp-settings.php:156
|
191 |
msgid "Settings saved."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: includes/class-gglstmp-settings.php:182
|
195 |
#, fuzzy, php-format
|
196 |
msgctxt "%robots.txt file link%"
|
197 |
msgid "Enable to add a sitemap file path to the %s file."
|
198 |
msgstr "añadir sitemap archivo de la ruta en"
|
199 |
|
200 |
+
#: includes/class-gglstmp-settings.php:187
|
201 |
#, php-format
|
202 |
msgctxt "%reading settings page link%"
|
203 |
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/class-gglstmp-settings.php:191
|
207 |
#, fuzzy
|
208 |
msgctxt "...on the reading settings page."
|
209 |
msgid "Reading Settings page"
|
210 |
msgstr "страницу настроек"
|
211 |
|
212 |
+
#: includes/class-gglstmp-settings.php:195
|
213 |
msgid ""
|
214 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
215 |
"file:"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/class-gglstmp-settings.php:209
|
219 |
msgid "This option will be applied to all websites in the network."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/class-gglstmp-settings.php:212
|
223 |
+
#: includes/class-gglstmp-settings.php:300
|
224 |
msgid "Activate"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: includes/class-gglstmp-settings.php:215
|
228 |
+
#: includes/class-gglstmp-settings.php:304
|
229 |
msgid "Install Now"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/class-gglstmp-settings.php:221
|
233 |
#, php-format
|
234 |
msgid "%s Plugin"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/class-gglstmp-settings.php:223
|
238 |
#, php-format
|
239 |
msgid "Enable to allow XML files access using %s plugin."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: includes/class-gglstmp-settings.php:224
|
243 |
msgid "The following string will be added to your .htaccess file"
|
244 |
msgstr "La siguiente cuerda se añadirá al su archivo .htaccess"
|
245 |
|
246 |
+
#: includes/class-gglstmp-settings.php:232
|
247 |
+
#: includes/class-gglstmp-settings.php:354 includes/pro_banners.php:21
|
248 |
msgid "Close"
|
249 |
msgstr "Cerrar"
|
250 |
|
251 |
+
#: includes/class-gglstmp-settings.php:243
|
252 |
msgid "URLs Limit"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/class-gglstmp-settings.php:247
|
256 |
msgid ""
|
257 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
258 |
"than 50 MB uncompressed."
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/class-gglstmp-settings.php:248
|
262 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/class-gglstmp-settings.php:249
|
266 |
msgid ""
|
267 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/class-gglstmp-settings.php:254
|
271 |
msgid "Google Webmaster Tools"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/class-gglstmp-settings.php:257
|
275 |
msgid ""
|
276 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
277 |
"automatically."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: includes/class-gglstmp-settings.php:260
|
281 |
msgid "Logout from Google Webmaster Tools"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: includes/class-gglstmp-settings.php:264
|
285 |
msgid "Manage Website with Google Webmaster Tools"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: includes/class-gglstmp-settings.php:266
|
289 |
msgid "Add"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: includes/class-gglstmp-settings.php:267 includes/pro_banners.php:138
|
293 |
msgid "Delete"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/class-gglstmp-settings.php:268
|
297 |
msgid "Get Info"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/class-gglstmp-settings.php:270
|
301 |
msgid ""
|
302 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
303 |
"account."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/class-gglstmp-settings.php:278
|
307 |
msgid "Get Authorization Code"
|
308 |
msgstr "Obtener el código de autorización"
|
309 |
|
310 |
+
#: includes/class-gglstmp-settings.php:281
|
311 |
msgid "Authorize"
|
312 |
msgstr "Autorizar"
|
313 |
|
314 |
+
#: includes/class-gglstmp-settings.php:284
|
315 |
msgid "Invalid authorization code. Please try again."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: includes/class-gglstmp-settings.php:289
|
319 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: includes/class-gglstmp-settings.php:289
|
323 |
msgid "Read the instruction"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: includes/class-gglstmp-settings.php:294
|
327 |
+
msgid "Alternate Language Pages"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: includes/class-gglstmp-settings.php:307
|
331 |
+
msgid "Enable to add alternate language pages using Multilanguage plugin."
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: includes/class-gglstmp-settings.php:321
|
335 |
msgid "Post category"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: includes/class-gglstmp-settings.php:322
|
339 |
msgid "Post tag"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: includes/class-gglstmp-settings.php:324
|
343 |
msgid "Sitemap Structure"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: includes/class-gglstmp-settings.php:329
|
347 |
msgid "Post Types"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: includes/class-gglstmp-settings.php:336
|
351 |
msgid "Enable to add post type links to the sitemap."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/class-gglstmp-settings.php:340
|
355 |
msgid "Taxonomies"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/class-gglstmp-settings.php:347
|
359 |
msgid "Enable to taxonomy links to the sitemap."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: includes/class-gglstmp-settings.php:403
|
363 |
#, php-format
|
364 |
msgid "%s is in the site root directory."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/class-gglstmp-settings.php:404
|
368 |
msgid "The Sitemap file"
|
369 |
msgstr "El archivo de Sitemap"
|
370 |
|
371 |
+
#: includes/class-gglstmp-settings.php:430
|
372 |
#, php-format
|
373 |
msgid ""
|
374 |
"Can't access XML files. Try to add the following rule %s to your %s file "
|
376 |
"following line %s and paste the code just after it."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: includes/class-gglstmp-settings.php:446
|
380 |
msgid "Note"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: includes/class-gglstmp-settings.php:446
|
384 |
msgid ""
|
385 |
"Another plugin is providing Google Client functionality and may interrupt "
|
386 |
"proper plugin work."
|
languages/google-sitemap-plugin-ru_RU.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -18,161 +18,161 @@ msgstr ""
|
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-sitemap-plugin.php:
|
22 |
-
#: includes/class-gglstmp-settings.php:
|
23 |
msgid "Google Sitemap Settings"
|
24 |
msgstr "Настройки Google Sitemap"
|
25 |
|
26 |
-
#: google-sitemap-plugin.php:
|
27 |
-
#: google-sitemap-plugin.php:
|
28 |
#: includes/class-gglstmp-settings.php:27
|
29 |
msgid "Settings"
|
30 |
msgstr "Настройки"
|
31 |
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
msgid "Custom Links"
|
35 |
msgstr "Пользовательские ссылки"
|
36 |
|
37 |
-
#: google-sitemap-plugin.php:
|
38 |
msgid "Upgrade to Pro"
|
39 |
msgstr "Обновить до Pro"
|
40 |
|
41 |
-
#: google-sitemap-plugin.php:
|
42 |
msgid "Post categories"
|
43 |
msgstr "Рубрики записей"
|
44 |
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
msgid "Post tags"
|
47 |
msgstr "Метки записей"
|
48 |
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
msgid "Please enable JavaScript in your browser."
|
51 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
52 |
|
53 |
-
#: google-sitemap-plugin.php:
|
54 |
msgid "Add New"
|
55 |
msgstr "Добавить ссылку"
|
56 |
|
57 |
-
#: google-sitemap-plugin.php:
|
58 |
-
#: google-sitemap-plugin.php:
|
59 |
msgid "Website"
|
60 |
msgstr "Сайт"
|
61 |
|
62 |
-
#: google-sitemap-plugin.php:
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
msgid "Status"
|
66 |
msgstr "Статус"
|
67 |
|
68 |
-
#: google-sitemap-plugin.php:
|
69 |
-
#: google-sitemap-plugin.php:
|
70 |
msgid "Not added"
|
71 |
msgstr "Не добавлено"
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
-
#: google-sitemap-plugin.php:
|
75 |
msgid "Added"
|
76 |
msgstr "Добавлено"
|
77 |
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
-
#: google-sitemap-plugin.php:
|
80 |
msgid "Verification Status"
|
81 |
msgstr "Статус проверки"
|
82 |
|
83 |
-
#: google-sitemap-plugin.php:
|
84 |
msgid "Verified"
|
85 |
msgstr "Проверено"
|
86 |
|
87 |
-
#: google-sitemap-plugin.php:
|
88 |
msgid "Not verified"
|
89 |
msgstr "Не проверено"
|
90 |
|
91 |
-
#: google-sitemap-plugin.php:
|
92 |
msgid "Sitemap Status"
|
93 |
msgstr "Статус Sitemap"
|
94 |
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
msgid "Added with errors."
|
97 |
msgstr "Добавлено с ошибками."
|
98 |
|
99 |
-
#: google-sitemap-plugin.php:
|
100 |
msgid "View errors in Google Webmaster Tools"
|
101 |
msgstr "Просмотреть ошибки в Google Webmaster Tools"
|
102 |
|
103 |
-
#: google-sitemap-plugin.php:
|
104 |
msgid "Sitemap URL"
|
105 |
msgstr "Sitemap URL"
|
106 |
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
-
#: google-sitemap-plugin.php:
|
109 |
-
#: google-sitemap-plugin.php:
|
110 |
-
#: google-sitemap-plugin.php:
|
111 |
-
#: includes/class-gglstmp-settings.php:
|
112 |
msgid "Error"
|
113 |
msgstr "Ошибка"
|
114 |
|
115 |
-
#: google-sitemap-plugin.php:
|
116 |
msgid "Please check the sitemap file manually."
|
117 |
msgstr "Пожалуйста, проверьте файл Sitemap вручную."
|
118 |
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
-
#: google-sitemap-plugin.php:
|
121 |
-
#: google-sitemap-plugin.php:
|
122 |
-
#: includes/class-gglstmp-settings.php:
|
123 |
msgid "Learn More"
|
124 |
msgstr "Подробнее"
|
125 |
|
126 |
-
#: google-sitemap-plugin.php:
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
msgid "Unexpected error"
|
130 |
msgstr "Неожиданная ошибка"
|
131 |
|
132 |
-
#: google-sitemap-plugin.php:
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
msgid "Manual verification required."
|
135 |
msgstr "Требуется ручная проверка."
|
136 |
|
137 |
-
#: google-sitemap-plugin.php:
|
138 |
msgid "Deleted"
|
139 |
msgstr "Удален"
|
140 |
|
141 |
-
#: google-sitemap-plugin.php:
|
142 |
-
#: google-sitemap-plugin.php:
|
143 |
msgid "Verification Code"
|
144 |
msgstr "Код подтверждения"
|
145 |
|
146 |
-
#: google-sitemap-plugin.php:
|
147 |
msgid "Received and added to the site"
|
148 |
msgstr "Получен и добавлен на сайт"
|
149 |
|
150 |
-
#: google-sitemap-plugin.php:
|
151 |
msgid "Received, but has not been added to the site"
|
152 |
msgstr "Получен, но не добавлен на сайт"
|
153 |
|
154 |
-
#: google-sitemap-plugin.php:
|
155 |
msgid "Please add the sitemap file manually."
|
156 |
msgstr "Пожалуйста, добавьте файл Sitemap вручную."
|
157 |
|
158 |
-
#: google-sitemap-plugin.php:
|
159 |
msgid "Error 404"
|
160 |
msgstr "Ошибка 404"
|
161 |
|
162 |
-
#: google-sitemap-plugin.php:
|
163 |
#, php-format
|
164 |
msgid "The sitemap file %s not found."
|
165 |
msgstr "Файл sitemap %s не найден."
|
166 |
|
167 |
-
#: google-sitemap-plugin.php:
|
168 |
msgid "The sitemap file not found."
|
169 |
msgstr "Файл sitemap не найден."
|
170 |
|
171 |
-
#: google-sitemap-plugin.php:
|
172 |
msgid "FAQ"
|
173 |
msgstr "FAQ"
|
174 |
|
175 |
-
#: google-sitemap-plugin.php:
|
176 |
msgid "Support"
|
177 |
msgstr "Тех.поддержка"
|
178 |
|
@@ -188,28 +188,28 @@ msgstr "Разное"
|
|
188 |
msgid "License Key"
|
189 |
msgstr "Лицензионный ключ"
|
190 |
|
191 |
-
#: includes/class-gglstmp-settings.php:
|
192 |
msgid "Settings saved."
|
193 |
msgstr "Настройки сохранены."
|
194 |
|
195 |
-
#: includes/class-gglstmp-settings.php:
|
196 |
#, php-format
|
197 |
msgctxt "%robots.txt file link%"
|
198 |
msgid "Enable to add a sitemap file path to the %s file."
|
199 |
msgstr "Включите, чтобы добавить путь файла Sitemap в файл %s."
|
200 |
|
201 |
-
#: includes/class-gglstmp-settings.php:
|
202 |
#, php-format
|
203 |
msgctxt "%reading settings page link%"
|
204 |
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
205 |
msgstr "Опция \"Видимость для поисковых систем\" дожна быть не отмечена на %s."
|
206 |
|
207 |
-
#: includes/class-gglstmp-settings.php:
|
208 |
msgctxt "...on the reading settings page."
|
209 |
msgid "Reading Settings page"
|
210 |
msgstr "странице настроек чтения"
|
211 |
|
212 |
-
#: includes/class-gglstmp-settings.php:
|
213 |
msgid ""
|
214 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
215 |
"file:"
|
@@ -217,42 +217,44 @@ msgstr ""
|
|
217 |
"Так же, пожалуйста, добавьте следующий код в начало вашего файла \".htaccess"
|
218 |
"\":"
|
219 |
|
220 |
-
#: includes/class-gglstmp-settings.php:
|
221 |
msgid "This option will be applied to all websites in the network."
|
222 |
msgstr "Эта опция будет применена ко всем сайтам в сети."
|
223 |
|
224 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
225 |
msgid "Activate"
|
226 |
msgstr "Активировать"
|
227 |
|
228 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
229 |
msgid "Install Now"
|
230 |
msgstr "Установить Сейчас"
|
231 |
|
232 |
-
#: includes/class-gglstmp-settings.php:
|
233 |
#, php-format
|
234 |
msgid "%s Plugin"
|
235 |
msgstr "%s плагин"
|
236 |
|
237 |
-
#: includes/class-gglstmp-settings.php:
|
238 |
#, php-format
|
239 |
msgid "Enable to allow XML files access using %s plugin."
|
240 |
msgstr "Включите, чтобы разрешить доступ к файлам XML с помощью плагина %s."
|
241 |
|
242 |
-
#: includes/class-gglstmp-settings.php:
|
243 |
msgid "The following string will be added to your .htaccess file"
|
244 |
msgstr "В ваш .htaccess файл будет добавлена следующая строка"
|
245 |
|
246 |
-
#: includes/class-gglstmp-settings.php:
|
247 |
-
#: includes/class-gglstmp-settings.php:
|
248 |
msgid "Close"
|
249 |
msgstr "Закрыть"
|
250 |
|
251 |
-
#: includes/class-gglstmp-settings.php:
|
252 |
msgid "URLs Limit"
|
253 |
msgstr "Лимит ссылок"
|
254 |
|
255 |
-
#: includes/class-gglstmp-settings.php:
|
256 |
msgid ""
|
257 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
258 |
"than 50 MB uncompressed."
|
@@ -260,22 +262,22 @@ msgstr ""
|
|
260 |
"Файл sitemap не может содержать более 50000 ссылок и не должен превышать "
|
261 |
"50MB в несжатом состоянии."
|
262 |
|
263 |
-
#: includes/class-gglstmp-settings.php:
|
264 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
265 |
msgstr ""
|
266 |
"Уменьшите значение если размер файла sitemap превышает допустимое значение."
|
267 |
|
268 |
-
#: includes/class-gglstmp-settings.php:
|
269 |
msgid ""
|
270 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
271 |
msgstr ""
|
272 |
"Файл sitemap будет разбит на несколько частей при достижении лимита ссылок."
|
273 |
|
274 |
-
#: includes/class-gglstmp-settings.php:
|
275 |
msgid "Google Webmaster Tools"
|
276 |
msgstr "Google Webmaster Tools"
|
277 |
|
278 |
-
#: includes/class-gglstmp-settings.php:
|
279 |
msgid ""
|
280 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
281 |
"automatically."
|
@@ -283,27 +285,27 @@ msgstr ""
|
|
283 |
"Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap "
|
284 |
"автоматически."
|
285 |
|
286 |
-
#: includes/class-gglstmp-settings.php:
|
287 |
msgid "Logout from Google Webmaster Tools"
|
288 |
msgstr "Выйти из Google Webmaster Tools"
|
289 |
|
290 |
-
#: includes/class-gglstmp-settings.php:
|
291 |
msgid "Manage Website with Google Webmaster Tools"
|
292 |
msgstr "Управляйте веб-сайтом с помощью Google Webmaster Tools"
|
293 |
|
294 |
-
#: includes/class-gglstmp-settings.php:
|
295 |
msgid "Add"
|
296 |
msgstr "Добавить"
|
297 |
|
298 |
-
#: includes/class-gglstmp-settings.php:
|
299 |
msgid "Delete"
|
300 |
msgstr "Удалить"
|
301 |
|
302 |
-
#: includes/class-gglstmp-settings.php:
|
303 |
msgid "Get Info"
|
304 |
msgstr "Получить информацию"
|
305 |
|
306 |
-
#: includes/class-gglstmp-settings.php:
|
307 |
msgid ""
|
308 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
309 |
"account."
|
@@ -311,64 +313,74 @@ msgstr ""
|
|
311 |
"Добавьте, удалите или получите информацию об этом сайте с помощью своей "
|
312 |
"учетной записи Google Webmaster Tools."
|
313 |
|
314 |
-
#: includes/class-gglstmp-settings.php:
|
315 |
msgid "Get Authorization Code"
|
316 |
msgstr "Получить код авторизации"
|
317 |
|
318 |
-
#: includes/class-gglstmp-settings.php:
|
319 |
msgid "Authorize"
|
320 |
msgstr "Авторизироваться"
|
321 |
|
322 |
-
#: includes/class-gglstmp-settings.php:
|
323 |
msgid "Invalid authorization code. Please try again."
|
324 |
msgstr "Недействительный код авторизации. Пожалуйста, попробуйте еще раз."
|
325 |
|
326 |
-
#: includes/class-gglstmp-settings.php:
|
327 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
328 |
msgstr "Вы также можете вручную добавить sitemap в Google Webmaster Tools."
|
329 |
|
330 |
-
#: includes/class-gglstmp-settings.php:
|
331 |
msgid "Read the instruction"
|
332 |
msgstr "Читать инструкцию"
|
333 |
|
334 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
msgid "Post category"
|
336 |
msgstr "Рубрика записей"
|
337 |
|
338 |
-
#: includes/class-gglstmp-settings.php:
|
339 |
msgid "Post tag"
|
340 |
msgstr "Метка записей"
|
341 |
|
342 |
-
#: includes/class-gglstmp-settings.php:
|
343 |
msgid "Sitemap Structure"
|
344 |
msgstr "Структура Sitemap"
|
345 |
|
346 |
-
#: includes/class-gglstmp-settings.php:
|
347 |
msgid "Post Types"
|
348 |
msgstr "Типы записей"
|
349 |
|
350 |
-
#: includes/class-gglstmp-settings.php:
|
351 |
msgid "Enable to add post type links to the sitemap."
|
352 |
msgstr "Включите, чтобы добавить ссылки типов записей в sitemap."
|
353 |
|
354 |
-
#: includes/class-gglstmp-settings.php:
|
355 |
msgid "Taxonomies"
|
356 |
msgstr "Таксономии"
|
357 |
|
358 |
-
#: includes/class-gglstmp-settings.php:
|
359 |
msgid "Enable to taxonomy links to the sitemap."
|
360 |
msgstr "Включите, чтобы добавить ссылки таксономий в sitemap."
|
361 |
|
362 |
-
#: includes/class-gglstmp-settings.php:
|
363 |
#, php-format
|
364 |
msgid "%s is in the site root directory."
|
365 |
msgstr "%s находится в корневом каталоге сайта."
|
366 |
|
367 |
-
#: includes/class-gglstmp-settings.php:
|
368 |
msgid "The Sitemap file"
|
369 |
msgstr "Файл Sitemap"
|
370 |
|
371 |
-
#: includes/class-gglstmp-settings.php:
|
372 |
#, php-format
|
373 |
msgid ""
|
374 |
"Can't access XML files. Try to add the following rule %s to your %s file "
|
@@ -380,11 +392,11 @@ msgstr ""
|
|
380 |
"корневом каталоге сайта. Найдите следующую строку %s и вставь этот код после "
|
381 |
"нее."
|
382 |
|
383 |
-
#: includes/class-gglstmp-settings.php:
|
384 |
msgid "Note"
|
385 |
msgstr "Примечание"
|
386 |
|
387 |
-
#: includes/class-gglstmp-settings.php:
|
388 |
msgid ""
|
389 |
"Another plugin is providing Google Client functionality and may interrupt "
|
390 |
"proper plugin work."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-03-26 17:36+0300\n"
|
6 |
+
"PO-Revision-Date: 2018-03-26 17:36+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-sitemap-plugin.php:36 google-sitemap-plugin.php:46
|
22 |
+
#: includes/class-gglstmp-settings.php:166
|
23 |
msgid "Google Sitemap Settings"
|
24 |
msgstr "Настройки Google Sitemap"
|
25 |
|
26 |
+
#: google-sitemap-plugin.php:47 google-sitemap-plugin.php:883
|
27 |
+
#: google-sitemap-plugin.php:1279 google-sitemap-plugin.php:1292
|
28 |
#: includes/class-gglstmp-settings.php:27
|
29 |
msgid "Settings"
|
30 |
msgstr "Настройки"
|
31 |
|
32 |
+
#: google-sitemap-plugin.php:55 google-sitemap-plugin.php:56
|
33 |
+
#: google-sitemap-plugin.php:888
|
34 |
msgid "Custom Links"
|
35 |
msgstr "Пользовательские ссылки"
|
36 |
|
37 |
+
#: google-sitemap-plugin.php:74 includes/pro_banners.php:27
|
38 |
msgid "Upgrade to Pro"
|
39 |
msgstr "Обновить до Pro"
|
40 |
|
41 |
+
#: google-sitemap-plugin.php:354
|
42 |
msgid "Post categories"
|
43 |
msgstr "Рубрики записей"
|
44 |
|
45 |
+
#: google-sitemap-plugin.php:355
|
46 |
msgid "Post tags"
|
47 |
msgstr "Метки записей"
|
48 |
|
49 |
+
#: google-sitemap-plugin.php:884
|
50 |
msgid "Please enable JavaScript in your browser."
|
51 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
52 |
|
53 |
+
#: google-sitemap-plugin.php:889
|
54 |
msgid "Add New"
|
55 |
msgstr "Добавить ссылку"
|
56 |
|
57 |
+
#: google-sitemap-plugin.php:931 google-sitemap-plugin.php:1017
|
58 |
+
#: google-sitemap-plugin.php:1068
|
59 |
msgid "Website"
|
60 |
msgstr "Сайт"
|
61 |
|
62 |
+
#: google-sitemap-plugin.php:942 google-sitemap-plugin.php:946
|
63 |
+
#: google-sitemap-plugin.php:1033 google-sitemap-plugin.php:1049
|
64 |
+
#: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1086
|
65 |
msgid "Status"
|
66 |
msgstr "Статус"
|
67 |
|
68 |
+
#: google-sitemap-plugin.php:943 google-sitemap-plugin.php:975
|
69 |
+
#: google-sitemap-plugin.php:1050
|
70 |
msgid "Not added"
|
71 |
msgstr "Не добавлено"
|
72 |
|
73 |
+
#: google-sitemap-plugin.php:947 google-sitemap-plugin.php:978
|
74 |
+
#: google-sitemap-plugin.php:1073 google-sitemap-plugin.php:1184
|
75 |
msgid "Added"
|
76 |
msgstr "Добавлено"
|
77 |
|
78 |
+
#: google-sitemap-plugin.php:949 google-sitemap-plugin.php:1129
|
79 |
+
#: google-sitemap-plugin.php:1141 google-sitemap-plugin.php:1155
|
80 |
msgid "Verification Status"
|
81 |
msgstr "Статус проверки"
|
82 |
|
83 |
+
#: google-sitemap-plugin.php:951 google-sitemap-plugin.php:1142
|
84 |
msgid "Verified"
|
85 |
msgstr "Проверено"
|
86 |
|
87 |
+
#: google-sitemap-plugin.php:953
|
88 |
msgid "Not verified"
|
89 |
msgstr "Не проверено"
|
90 |
|
91 |
+
#: google-sitemap-plugin.php:962 google-sitemap-plugin.php:1163
|
92 |
msgid "Sitemap Status"
|
93 |
msgstr "Статус Sitemap"
|
94 |
|
95 |
+
#: google-sitemap-plugin.php:980
|
96 |
msgid "Added with errors."
|
97 |
msgstr "Добавлено с ошибками."
|
98 |
|
99 |
+
#: google-sitemap-plugin.php:980
|
100 |
msgid "View errors in Google Webmaster Tools"
|
101 |
msgstr "Просмотреть ошибки в Google Webmaster Tools"
|
102 |
|
103 |
+
#: google-sitemap-plugin.php:983
|
104 |
msgid "Sitemap URL"
|
105 |
msgstr "Sitemap URL"
|
106 |
|
107 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1002
|
108 |
+
#: google-sitemap-plugin.php:1052 google-sitemap-plugin.php:1088
|
109 |
+
#: google-sitemap-plugin.php:1126 google-sitemap-plugin.php:1157
|
110 |
+
#: google-sitemap-plugin.php:1197 google-sitemap-plugin.php:1217
|
111 |
+
#: includes/class-gglstmp-settings.php:429
|
112 |
msgid "Error"
|
113 |
msgstr "Ошибка"
|
114 |
|
115 |
+
#: google-sitemap-plugin.php:986
|
116 |
msgid "Please check the sitemap file manually."
|
117 |
msgstr "Пожалуйста, проверьте файл Sitemap вручную."
|
118 |
|
119 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1004
|
120 |
+
#: google-sitemap-plugin.php:1091 google-sitemap-plugin.php:1130
|
121 |
+
#: google-sitemap-plugin.php:1160 google-sitemap-plugin.php:1200
|
122 |
+
#: includes/class-gglstmp-settings.php:247 includes/pro_banners.php:47
|
123 |
msgid "Learn More"
|
124 |
msgstr "Подробнее"
|
125 |
|
126 |
+
#: google-sitemap-plugin.php:991 google-sitemap-plugin.php:1040
|
127 |
+
#: google-sitemap-plugin.php:1076 google-sitemap-plugin.php:1114
|
128 |
+
#: google-sitemap-plugin.php:1145 google-sitemap-plugin.php:1187
|
129 |
msgid "Unexpected error"
|
130 |
msgstr "Неожиданная ошибка"
|
131 |
|
132 |
+
#: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1091
|
133 |
+
#: google-sitemap-plugin.php:1160
|
134 |
msgid "Manual verification required."
|
135 |
msgstr "Требуется ручная проверка."
|
136 |
|
137 |
+
#: google-sitemap-plugin.php:1034
|
138 |
msgid "Deleted"
|
139 |
msgstr "Удален"
|
140 |
|
141 |
+
#: google-sitemap-plugin.php:1106 google-sitemap-plugin.php:1109
|
142 |
+
#: google-sitemap-plugin.php:1125
|
143 |
msgid "Verification Code"
|
144 |
msgstr "Код подтверждения"
|
145 |
|
146 |
+
#: google-sitemap-plugin.php:1107
|
147 |
msgid "Received and added to the site"
|
148 |
msgstr "Получен и добавлен на сайт"
|
149 |
|
150 |
+
#: google-sitemap-plugin.php:1110
|
151 |
msgid "Received, but has not been added to the site"
|
152 |
msgstr "Получен, но не добавлен на сайт"
|
153 |
|
154 |
+
#: google-sitemap-plugin.php:1200
|
155 |
msgid "Please add the sitemap file manually."
|
156 |
msgstr "Пожалуйста, добавьте файл Sitemap вручную."
|
157 |
|
158 |
+
#: google-sitemap-plugin.php:1205
|
159 |
msgid "Error 404"
|
160 |
msgstr "Ошибка 404"
|
161 |
|
162 |
+
#: google-sitemap-plugin.php:1207
|
163 |
#, php-format
|
164 |
msgid "The sitemap file %s not found."
|
165 |
msgstr "Файл sitemap %s не найден."
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:1217
|
168 |
msgid "The sitemap file not found."
|
169 |
msgstr "Файл sitemap не найден."
|
170 |
|
171 |
+
#: google-sitemap-plugin.php:1294
|
172 |
msgid "FAQ"
|
173 |
msgstr "FAQ"
|
174 |
|
175 |
+
#: google-sitemap-plugin.php:1295
|
176 |
msgid "Support"
|
177 |
msgstr "Тех.поддержка"
|
178 |
|
188 |
msgid "License Key"
|
189 |
msgstr "Лицензионный ключ"
|
190 |
|
191 |
+
#: includes/class-gglstmp-settings.php:156
|
192 |
msgid "Settings saved."
|
193 |
msgstr "Настройки сохранены."
|
194 |
|
195 |
+
#: includes/class-gglstmp-settings.php:182
|
196 |
#, php-format
|
197 |
msgctxt "%robots.txt file link%"
|
198 |
msgid "Enable to add a sitemap file path to the %s file."
|
199 |
msgstr "Включите, чтобы добавить путь файла Sitemap в файл %s."
|
200 |
|
201 |
+
#: includes/class-gglstmp-settings.php:187
|
202 |
#, php-format
|
203 |
msgctxt "%reading settings page link%"
|
204 |
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
205 |
msgstr "Опция \"Видимость для поисковых систем\" дожна быть не отмечена на %s."
|
206 |
|
207 |
+
#: includes/class-gglstmp-settings.php:191
|
208 |
msgctxt "...on the reading settings page."
|
209 |
msgid "Reading Settings page"
|
210 |
msgstr "странице настроек чтения"
|
211 |
|
212 |
+
#: includes/class-gglstmp-settings.php:195
|
213 |
msgid ""
|
214 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
215 |
"file:"
|
217 |
"Так же, пожалуйста, добавьте следующий код в начало вашего файла \".htaccess"
|
218 |
"\":"
|
219 |
|
220 |
+
#: includes/class-gglstmp-settings.php:209
|
221 |
msgid "This option will be applied to all websites in the network."
|
222 |
msgstr "Эта опция будет применена ко всем сайтам в сети."
|
223 |
|
224 |
+
#: includes/class-gglstmp-settings.php:212
|
225 |
+
#: includes/class-gglstmp-settings.php:300
|
226 |
msgid "Activate"
|
227 |
msgstr "Активировать"
|
228 |
|
229 |
+
#: includes/class-gglstmp-settings.php:215
|
230 |
+
#: includes/class-gglstmp-settings.php:304
|
231 |
msgid "Install Now"
|
232 |
msgstr "Установить Сейчас"
|
233 |
|
234 |
+
#: includes/class-gglstmp-settings.php:221
|
235 |
#, php-format
|
236 |
msgid "%s Plugin"
|
237 |
msgstr "%s плагин"
|
238 |
|
239 |
+
#: includes/class-gglstmp-settings.php:223
|
240 |
#, php-format
|
241 |
msgid "Enable to allow XML files access using %s plugin."
|
242 |
msgstr "Включите, чтобы разрешить доступ к файлам XML с помощью плагина %s."
|
243 |
|
244 |
+
#: includes/class-gglstmp-settings.php:224
|
245 |
msgid "The following string will be added to your .htaccess file"
|
246 |
msgstr "В ваш .htaccess файл будет добавлена следующая строка"
|
247 |
|
248 |
+
#: includes/class-gglstmp-settings.php:232
|
249 |
+
#: includes/class-gglstmp-settings.php:354 includes/pro_banners.php:21
|
250 |
msgid "Close"
|
251 |
msgstr "Закрыть"
|
252 |
|
253 |
+
#: includes/class-gglstmp-settings.php:243
|
254 |
msgid "URLs Limit"
|
255 |
msgstr "Лимит ссылок"
|
256 |
|
257 |
+
#: includes/class-gglstmp-settings.php:247
|
258 |
msgid ""
|
259 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
260 |
"than 50 MB uncompressed."
|
262 |
"Файл sitemap не может содержать более 50000 ссылок и не должен превышать "
|
263 |
"50MB в несжатом состоянии."
|
264 |
|
265 |
+
#: includes/class-gglstmp-settings.php:248
|
266 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
267 |
msgstr ""
|
268 |
"Уменьшите значение если размер файла sitemap превышает допустимое значение."
|
269 |
|
270 |
+
#: includes/class-gglstmp-settings.php:249
|
271 |
msgid ""
|
272 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
273 |
msgstr ""
|
274 |
"Файл sitemap будет разбит на несколько частей при достижении лимита ссылок."
|
275 |
|
276 |
+
#: includes/class-gglstmp-settings.php:254
|
277 |
msgid "Google Webmaster Tools"
|
278 |
msgstr "Google Webmaster Tools"
|
279 |
|
280 |
+
#: includes/class-gglstmp-settings.php:257
|
281 |
msgid ""
|
282 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
283 |
"automatically."
|
285 |
"Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap "
|
286 |
"автоматически."
|
287 |
|
288 |
+
#: includes/class-gglstmp-settings.php:260
|
289 |
msgid "Logout from Google Webmaster Tools"
|
290 |
msgstr "Выйти из Google Webmaster Tools"
|
291 |
|
292 |
+
#: includes/class-gglstmp-settings.php:264
|
293 |
msgid "Manage Website with Google Webmaster Tools"
|
294 |
msgstr "Управляйте веб-сайтом с помощью Google Webmaster Tools"
|
295 |
|
296 |
+
#: includes/class-gglstmp-settings.php:266
|
297 |
msgid "Add"
|
298 |
msgstr "Добавить"
|
299 |
|
300 |
+
#: includes/class-gglstmp-settings.php:267 includes/pro_banners.php:138
|
301 |
msgid "Delete"
|
302 |
msgstr "Удалить"
|
303 |
|
304 |
+
#: includes/class-gglstmp-settings.php:268
|
305 |
msgid "Get Info"
|
306 |
msgstr "Получить информацию"
|
307 |
|
308 |
+
#: includes/class-gglstmp-settings.php:270
|
309 |
msgid ""
|
310 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
311 |
"account."
|
313 |
"Добавьте, удалите или получите информацию об этом сайте с помощью своей "
|
314 |
"учетной записи Google Webmaster Tools."
|
315 |
|
316 |
+
#: includes/class-gglstmp-settings.php:278
|
317 |
msgid "Get Authorization Code"
|
318 |
msgstr "Получить код авторизации"
|
319 |
|
320 |
+
#: includes/class-gglstmp-settings.php:281
|
321 |
msgid "Authorize"
|
322 |
msgstr "Авторизироваться"
|
323 |
|
324 |
+
#: includes/class-gglstmp-settings.php:284
|
325 |
msgid "Invalid authorization code. Please try again."
|
326 |
msgstr "Недействительный код авторизации. Пожалуйста, попробуйте еще раз."
|
327 |
|
328 |
+
#: includes/class-gglstmp-settings.php:289
|
329 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
330 |
msgstr "Вы также можете вручную добавить sitemap в Google Webmaster Tools."
|
331 |
|
332 |
+
#: includes/class-gglstmp-settings.php:289
|
333 |
msgid "Read the instruction"
|
334 |
msgstr "Читать инструкцию"
|
335 |
|
336 |
+
#: includes/class-gglstmp-settings.php:294
|
337 |
+
msgid "Alternate Language Pages"
|
338 |
+
msgstr "Страницы альтернативных языков"
|
339 |
+
|
340 |
+
#: includes/class-gglstmp-settings.php:307
|
341 |
+
msgid "Enable to add alternate language pages using Multilanguage plugin."
|
342 |
+
msgstr ""
|
343 |
+
"Включите, чтобы добавить страницы альтернативных языков используя плагин "
|
344 |
+
"Multilanguage."
|
345 |
+
|
346 |
+
#: includes/class-gglstmp-settings.php:321
|
347 |
msgid "Post category"
|
348 |
msgstr "Рубрика записей"
|
349 |
|
350 |
+
#: includes/class-gglstmp-settings.php:322
|
351 |
msgid "Post tag"
|
352 |
msgstr "Метка записей"
|
353 |
|
354 |
+
#: includes/class-gglstmp-settings.php:324
|
355 |
msgid "Sitemap Structure"
|
356 |
msgstr "Структура Sitemap"
|
357 |
|
358 |
+
#: includes/class-gglstmp-settings.php:329
|
359 |
msgid "Post Types"
|
360 |
msgstr "Типы записей"
|
361 |
|
362 |
+
#: includes/class-gglstmp-settings.php:336
|
363 |
msgid "Enable to add post type links to the sitemap."
|
364 |
msgstr "Включите, чтобы добавить ссылки типов записей в sitemap."
|
365 |
|
366 |
+
#: includes/class-gglstmp-settings.php:340
|
367 |
msgid "Taxonomies"
|
368 |
msgstr "Таксономии"
|
369 |
|
370 |
+
#: includes/class-gglstmp-settings.php:347
|
371 |
msgid "Enable to taxonomy links to the sitemap."
|
372 |
msgstr "Включите, чтобы добавить ссылки таксономий в sitemap."
|
373 |
|
374 |
+
#: includes/class-gglstmp-settings.php:403
|
375 |
#, php-format
|
376 |
msgid "%s is in the site root directory."
|
377 |
msgstr "%s находится в корневом каталоге сайта."
|
378 |
|
379 |
+
#: includes/class-gglstmp-settings.php:404
|
380 |
msgid "The Sitemap file"
|
381 |
msgstr "Файл Sitemap"
|
382 |
|
383 |
+
#: includes/class-gglstmp-settings.php:430
|
384 |
#, php-format
|
385 |
msgid ""
|
386 |
"Can't access XML files. Try to add the following rule %s to your %s file "
|
392 |
"корневом каталоге сайта. Найдите следующую строку %s и вставь этот код после "
|
393 |
"нее."
|
394 |
|
395 |
+
#: includes/class-gglstmp-settings.php:446
|
396 |
msgid "Note"
|
397 |
msgstr "Примечание"
|
398 |
|
399 |
+
#: includes/class-gglstmp-settings.php:446
|
400 |
msgid ""
|
401 |
"Another plugin is providing Google Client functionality and may interrupt "
|
402 |
"proper plugin work."
|
languages/google-sitemap-plugin-uk.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: uk\n"
|
@@ -18,161 +18,161 @@ msgstr ""
|
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: google-sitemap-plugin.php:
|
22 |
-
#: includes/class-gglstmp-settings.php:
|
23 |
msgid "Google Sitemap Settings"
|
24 |
msgstr "Налаштування Google Sitemap"
|
25 |
|
26 |
-
#: google-sitemap-plugin.php:
|
27 |
-
#: google-sitemap-plugin.php:
|
28 |
#: includes/class-gglstmp-settings.php:27
|
29 |
msgid "Settings"
|
30 |
msgstr "Налаштування"
|
31 |
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
msgid "Custom Links"
|
35 |
msgstr "Користувацькі посилання"
|
36 |
|
37 |
-
#: google-sitemap-plugin.php:
|
38 |
msgid "Upgrade to Pro"
|
39 |
msgstr "Оновитися на Pro"
|
40 |
|
41 |
-
#: google-sitemap-plugin.php:
|
42 |
msgid "Post categories"
|
43 |
msgstr "Категорії записів"
|
44 |
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
msgid "Post tags"
|
47 |
msgstr "Позначки записів"
|
48 |
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
msgid "Please enable JavaScript in your browser."
|
51 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
52 |
|
53 |
-
#: google-sitemap-plugin.php:
|
54 |
msgid "Add New"
|
55 |
msgstr "Додати посилання"
|
56 |
|
57 |
-
#: google-sitemap-plugin.php:
|
58 |
-
#: google-sitemap-plugin.php:
|
59 |
msgid "Website"
|
60 |
msgstr "Сайт"
|
61 |
|
62 |
-
#: google-sitemap-plugin.php:
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
msgid "Status"
|
66 |
msgstr "Статус"
|
67 |
|
68 |
-
#: google-sitemap-plugin.php:
|
69 |
-
#: google-sitemap-plugin.php:
|
70 |
msgid "Not added"
|
71 |
msgstr "Не додано"
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
-
#: google-sitemap-plugin.php:
|
75 |
msgid "Added"
|
76 |
msgstr "Додано"
|
77 |
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
-
#: google-sitemap-plugin.php:
|
80 |
msgid "Verification Status"
|
81 |
msgstr "Статус перевірки"
|
82 |
|
83 |
-
#: google-sitemap-plugin.php:
|
84 |
msgid "Verified"
|
85 |
msgstr "Перевірено"
|
86 |
|
87 |
-
#: google-sitemap-plugin.php:
|
88 |
msgid "Not verified"
|
89 |
msgstr "Не перевірено"
|
90 |
|
91 |
-
#: google-sitemap-plugin.php:
|
92 |
msgid "Sitemap Status"
|
93 |
msgstr "Статус Sitemap"
|
94 |
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
msgid "Added with errors."
|
97 |
msgstr "Додано з помилками."
|
98 |
|
99 |
-
#: google-sitemap-plugin.php:
|
100 |
msgid "View errors in Google Webmaster Tools"
|
101 |
msgstr "Подивитися помилки у Google Webmaster Tools"
|
102 |
|
103 |
-
#: google-sitemap-plugin.php:
|
104 |
msgid "Sitemap URL"
|
105 |
msgstr "Sitemap URL"
|
106 |
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
-
#: google-sitemap-plugin.php:
|
109 |
-
#: google-sitemap-plugin.php:
|
110 |
-
#: google-sitemap-plugin.php:
|
111 |
-
#: includes/class-gglstmp-settings.php:
|
112 |
msgid "Error"
|
113 |
msgstr "Помилка"
|
114 |
|
115 |
-
#: google-sitemap-plugin.php:
|
116 |
msgid "Please check the sitemap file manually."
|
117 |
msgstr "Будь ласка, перевірте файл sitemap вручну."
|
118 |
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
-
#: google-sitemap-plugin.php:
|
121 |
-
#: google-sitemap-plugin.php:
|
122 |
-
#: includes/class-gglstmp-settings.php:
|
123 |
msgid "Learn More"
|
124 |
msgstr "Дізнатись більше"
|
125 |
|
126 |
-
#: google-sitemap-plugin.php:
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
msgid "Unexpected error"
|
130 |
msgstr "Неочікуванна помилка"
|
131 |
|
132 |
-
#: google-sitemap-plugin.php:
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
msgid "Manual verification required."
|
135 |
msgstr "Потрібна ручна перевірка."
|
136 |
|
137 |
-
#: google-sitemap-plugin.php:
|
138 |
msgid "Deleted"
|
139 |
msgstr "Видалено"
|
140 |
|
141 |
-
#: google-sitemap-plugin.php:
|
142 |
-
#: google-sitemap-plugin.php:
|
143 |
msgid "Verification Code"
|
144 |
msgstr "Код підтвердження"
|
145 |
|
146 |
-
#: google-sitemap-plugin.php:
|
147 |
msgid "Received and added to the site"
|
148 |
msgstr "Отриман і додан на сайт"
|
149 |
|
150 |
-
#: google-sitemap-plugin.php:
|
151 |
msgid "Received, but has not been added to the site"
|
152 |
msgstr "Отриман, але не додан на сайт"
|
153 |
|
154 |
-
#: google-sitemap-plugin.php:
|
155 |
msgid "Please add the sitemap file manually."
|
156 |
msgstr "Будь ласка, додайте файл Sitemap вручну."
|
157 |
|
158 |
-
#: google-sitemap-plugin.php:
|
159 |
msgid "Error 404"
|
160 |
msgstr "Помилка 404"
|
161 |
|
162 |
-
#: google-sitemap-plugin.php:
|
163 |
#, php-format
|
164 |
msgid "The sitemap file %s not found."
|
165 |
msgstr "Файл sitemap %s не знайдено."
|
166 |
|
167 |
-
#: google-sitemap-plugin.php:
|
168 |
msgid "The sitemap file not found."
|
169 |
msgstr "Файл sitemap не знайдено."
|
170 |
|
171 |
-
#: google-sitemap-plugin.php:
|
172 |
msgid "FAQ"
|
173 |
msgstr "FAQ"
|
174 |
|
175 |
-
#: google-sitemap-plugin.php:
|
176 |
msgid "Support"
|
177 |
msgstr "Підтримка"
|
178 |
|
@@ -188,29 +188,29 @@ msgstr "Різне"
|
|
188 |
msgid "License Key"
|
189 |
msgstr "Ліцензійний ключ"
|
190 |
|
191 |
-
#: includes/class-gglstmp-settings.php:
|
192 |
msgid "Settings saved."
|
193 |
msgstr "Налаштування збережено."
|
194 |
|
195 |
-
#: includes/class-gglstmp-settings.php:
|
196 |
#, php-format
|
197 |
msgctxt "%robots.txt file link%"
|
198 |
msgid "Enable to add a sitemap file path to the %s file."
|
199 |
msgstr "Увімкніть, щоб додати шлях до файлу Sitemap в файл %s."
|
200 |
|
201 |
-
#: includes/class-gglstmp-settings.php:
|
202 |
#, php-format
|
203 |
msgctxt "%reading settings page link%"
|
204 |
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
205 |
msgstr ""
|
206 |
"Опція \"Видимість для пошукових систем\" повинна бути не відзначена на %s."
|
207 |
|
208 |
-
#: includes/class-gglstmp-settings.php:
|
209 |
msgctxt "...on the reading settings page."
|
210 |
msgid "Reading Settings page"
|
211 |
msgstr "сторінці налаштувань читання"
|
212 |
|
213 |
-
#: includes/class-gglstmp-settings.php:
|
214 |
msgid ""
|
215 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
216 |
"file:"
|
@@ -218,42 +218,44 @@ msgstr ""
|
|
218 |
"Також, будь ласка, додайте наступний код у початок вашого файлу \".htaccess"
|
219 |
"\":"
|
220 |
|
221 |
-
#: includes/class-gglstmp-settings.php:
|
222 |
msgid "This option will be applied to all websites in the network."
|
223 |
msgstr "Ця опція буде застосована до всіх сайтів в мережі."
|
224 |
|
225 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
226 |
msgid "Activate"
|
227 |
msgstr "Активувати"
|
228 |
|
229 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
230 |
msgid "Install Now"
|
231 |
msgstr "Встановити зараз"
|
232 |
|
233 |
-
#: includes/class-gglstmp-settings.php:
|
234 |
#, php-format
|
235 |
msgid "%s Plugin"
|
236 |
msgstr "%s плагін"
|
237 |
|
238 |
-
#: includes/class-gglstmp-settings.php:
|
239 |
#, php-format
|
240 |
msgid "Enable to allow XML files access using %s plugin."
|
241 |
msgstr "Увімкніть, щоб дозволити доступ до файлів XML за допомогою плагіна %s."
|
242 |
|
243 |
-
#: includes/class-gglstmp-settings.php:
|
244 |
msgid "The following string will be added to your .htaccess file"
|
245 |
msgstr "До вашого .htaccess файл буде додано наступну строку"
|
246 |
|
247 |
-
#: includes/class-gglstmp-settings.php:
|
248 |
-
#: includes/class-gglstmp-settings.php:
|
249 |
msgid "Close"
|
250 |
msgstr "Закрити"
|
251 |
|
252 |
-
#: includes/class-gglstmp-settings.php:
|
253 |
msgid "URLs Limit"
|
254 |
msgstr "Ліміт посилань"
|
255 |
|
256 |
-
#: includes/class-gglstmp-settings.php:
|
257 |
msgid ""
|
258 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
259 |
"than 50 MB uncompressed."
|
@@ -261,22 +263,22 @@ msgstr ""
|
|
261 |
"Файл sitemap не може містити більш 50000 посилань і не повинен перевищувати "
|
262 |
"50MB в нестислому стані."
|
263 |
|
264 |
-
#: includes/class-gglstmp-settings.php:
|
265 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
266 |
msgstr ""
|
267 |
"Зменшіть значення якщо розмір файлу sitemap перевищує допустиме значення."
|
268 |
|
269 |
-
#: includes/class-gglstmp-settings.php:
|
270 |
msgid ""
|
271 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
272 |
msgstr ""
|
273 |
"Файл sitemap буде розбитий на кілька частин при досягненні ліміту посилань."
|
274 |
|
275 |
-
#: includes/class-gglstmp-settings.php:
|
276 |
msgid "Google Webmaster Tools"
|
277 |
msgstr "Google Webmaster Tools"
|
278 |
|
279 |
-
#: includes/class-gglstmp-settings.php:
|
280 |
msgid ""
|
281 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
282 |
"automatically."
|
@@ -284,27 +286,27 @@ msgstr ""
|
|
284 |
"Ваш хостінг не підтримує сURL, отже ви не можете додати файл Sitemap "
|
285 |
"автоматично."
|
286 |
|
287 |
-
#: includes/class-gglstmp-settings.php:
|
288 |
msgid "Logout from Google Webmaster Tools"
|
289 |
msgstr "Вийти з Google Webmaster Tools"
|
290 |
|
291 |
-
#: includes/class-gglstmp-settings.php:
|
292 |
msgid "Manage Website with Google Webmaster Tools"
|
293 |
msgstr "Керуйте веб-сайтом за допомогою Google Webmaster Tools"
|
294 |
|
295 |
-
#: includes/class-gglstmp-settings.php:
|
296 |
msgid "Add"
|
297 |
msgstr "Додати"
|
298 |
|
299 |
-
#: includes/class-gglstmp-settings.php:
|
300 |
msgid "Delete"
|
301 |
msgstr "Видалити"
|
302 |
|
303 |
-
#: includes/class-gglstmp-settings.php:
|
304 |
msgid "Get Info"
|
305 |
msgstr "Отримати інформацію"
|
306 |
|
307 |
-
#: includes/class-gglstmp-settings.php:
|
308 |
msgid ""
|
309 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
310 |
"account."
|
@@ -312,64 +314,74 @@ msgstr ""
|
|
312 |
"Додайте, видаліть або отримайте інформацію про цей сайт за допомогою свого "
|
313 |
"облікового запису Google Webmaster Tools."
|
314 |
|
315 |
-
#: includes/class-gglstmp-settings.php:
|
316 |
msgid "Get Authorization Code"
|
317 |
msgstr "Отримати код авторизації"
|
318 |
|
319 |
-
#: includes/class-gglstmp-settings.php:
|
320 |
msgid "Authorize"
|
321 |
msgstr "Авторизуватись"
|
322 |
|
323 |
-
#: includes/class-gglstmp-settings.php:
|
324 |
msgid "Invalid authorization code. Please try again."
|
325 |
msgstr "Невірний код авторизації. Будь ласка спробуйте ще раз."
|
326 |
|
327 |
-
#: includes/class-gglstmp-settings.php:
|
328 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
329 |
msgstr "Ви також можете додати sitemap в Google Webmaster Tools вручну."
|
330 |
|
331 |
-
#: includes/class-gglstmp-settings.php:
|
332 |
msgid "Read the instruction"
|
333 |
msgstr "Читати інструкцію"
|
334 |
|
335 |
-
#: includes/class-gglstmp-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
msgid "Post category"
|
337 |
msgstr "Категорія записів"
|
338 |
|
339 |
-
#: includes/class-gglstmp-settings.php:
|
340 |
msgid "Post tag"
|
341 |
msgstr "Позначка записів"
|
342 |
|
343 |
-
#: includes/class-gglstmp-settings.php:
|
344 |
msgid "Sitemap Structure"
|
345 |
msgstr "Структура Sitemap"
|
346 |
|
347 |
-
#: includes/class-gglstmp-settings.php:
|
348 |
msgid "Post Types"
|
349 |
msgstr "Типи записів"
|
350 |
|
351 |
-
#: includes/class-gglstmp-settings.php:
|
352 |
msgid "Enable to add post type links to the sitemap."
|
353 |
msgstr "Увімкніть, щоб додати посилання типів записів в sitemap."
|
354 |
|
355 |
-
#: includes/class-gglstmp-settings.php:
|
356 |
msgid "Taxonomies"
|
357 |
msgstr "Таксономії"
|
358 |
|
359 |
-
#: includes/class-gglstmp-settings.php:
|
360 |
msgid "Enable to taxonomy links to the sitemap."
|
361 |
msgstr "Увімкніть, щоб додати посилання таксономій в sitemap."
|
362 |
|
363 |
-
#: includes/class-gglstmp-settings.php:
|
364 |
#, php-format
|
365 |
msgid "%s is in the site root directory."
|
366 |
msgstr "%s знаходиться в кореневому каталозі сайту."
|
367 |
|
368 |
-
#: includes/class-gglstmp-settings.php:
|
369 |
msgid "The Sitemap file"
|
370 |
msgstr "Файл Sitemap"
|
371 |
|
372 |
-
#: includes/class-gglstmp-settings.php:
|
373 |
#, php-format
|
374 |
msgid ""
|
375 |
"Can't access XML files. Try to add the following rule %s to your %s file "
|
@@ -381,11 +393,11 @@ msgstr ""
|
|
381 |
"кореневому каталозi сайту. Знайдiть наступну строку %s та додайте цей код "
|
382 |
"пiсля неї."
|
383 |
|
384 |
-
#: includes/class-gglstmp-settings.php:
|
385 |
msgid "Note"
|
386 |
msgstr "Примітка"
|
387 |
|
388 |
-
#: includes/class-gglstmp-settings.php:
|
389 |
msgid ""
|
390 |
"Another plugin is providing Google Client functionality and may interrupt "
|
391 |
"proper plugin work."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-03-26 17:33+0300\n"
|
6 |
+
"PO-Revision-Date: 2018-03-26 17:35+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: uk\n"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: google-sitemap-plugin.php:36 google-sitemap-plugin.php:46
|
22 |
+
#: includes/class-gglstmp-settings.php:166
|
23 |
msgid "Google Sitemap Settings"
|
24 |
msgstr "Налаштування Google Sitemap"
|
25 |
|
26 |
+
#: google-sitemap-plugin.php:47 google-sitemap-plugin.php:883
|
27 |
+
#: google-sitemap-plugin.php:1279 google-sitemap-plugin.php:1292
|
28 |
#: includes/class-gglstmp-settings.php:27
|
29 |
msgid "Settings"
|
30 |
msgstr "Налаштування"
|
31 |
|
32 |
+
#: google-sitemap-plugin.php:55 google-sitemap-plugin.php:56
|
33 |
+
#: google-sitemap-plugin.php:888
|
34 |
msgid "Custom Links"
|
35 |
msgstr "Користувацькі посилання"
|
36 |
|
37 |
+
#: google-sitemap-plugin.php:74 includes/pro_banners.php:27
|
38 |
msgid "Upgrade to Pro"
|
39 |
msgstr "Оновитися на Pro"
|
40 |
|
41 |
+
#: google-sitemap-plugin.php:354
|
42 |
msgid "Post categories"
|
43 |
msgstr "Категорії записів"
|
44 |
|
45 |
+
#: google-sitemap-plugin.php:355
|
46 |
msgid "Post tags"
|
47 |
msgstr "Позначки записів"
|
48 |
|
49 |
+
#: google-sitemap-plugin.php:884
|
50 |
msgid "Please enable JavaScript in your browser."
|
51 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
52 |
|
53 |
+
#: google-sitemap-plugin.php:889
|
54 |
msgid "Add New"
|
55 |
msgstr "Додати посилання"
|
56 |
|
57 |
+
#: google-sitemap-plugin.php:931 google-sitemap-plugin.php:1017
|
58 |
+
#: google-sitemap-plugin.php:1068
|
59 |
msgid "Website"
|
60 |
msgstr "Сайт"
|
61 |
|
62 |
+
#: google-sitemap-plugin.php:942 google-sitemap-plugin.php:946
|
63 |
+
#: google-sitemap-plugin.php:1033 google-sitemap-plugin.php:1049
|
64 |
+
#: google-sitemap-plugin.php:1072 google-sitemap-plugin.php:1086
|
65 |
msgid "Status"
|
66 |
msgstr "Статус"
|
67 |
|
68 |
+
#: google-sitemap-plugin.php:943 google-sitemap-plugin.php:975
|
69 |
+
#: google-sitemap-plugin.php:1050
|
70 |
msgid "Not added"
|
71 |
msgstr "Не додано"
|
72 |
|
73 |
+
#: google-sitemap-plugin.php:947 google-sitemap-plugin.php:978
|
74 |
+
#: google-sitemap-plugin.php:1073 google-sitemap-plugin.php:1184
|
75 |
msgid "Added"
|
76 |
msgstr "Додано"
|
77 |
|
78 |
+
#: google-sitemap-plugin.php:949 google-sitemap-plugin.php:1129
|
79 |
+
#: google-sitemap-plugin.php:1141 google-sitemap-plugin.php:1155
|
80 |
msgid "Verification Status"
|
81 |
msgstr "Статус перевірки"
|
82 |
|
83 |
+
#: google-sitemap-plugin.php:951 google-sitemap-plugin.php:1142
|
84 |
msgid "Verified"
|
85 |
msgstr "Перевірено"
|
86 |
|
87 |
+
#: google-sitemap-plugin.php:953
|
88 |
msgid "Not verified"
|
89 |
msgstr "Не перевірено"
|
90 |
|
91 |
+
#: google-sitemap-plugin.php:962 google-sitemap-plugin.php:1163
|
92 |
msgid "Sitemap Status"
|
93 |
msgstr "Статус Sitemap"
|
94 |
|
95 |
+
#: google-sitemap-plugin.php:980
|
96 |
msgid "Added with errors."
|
97 |
msgstr "Додано з помилками."
|
98 |
|
99 |
+
#: google-sitemap-plugin.php:980
|
100 |
msgid "View errors in Google Webmaster Tools"
|
101 |
msgstr "Подивитися помилки у Google Webmaster Tools"
|
102 |
|
103 |
+
#: google-sitemap-plugin.php:983
|
104 |
msgid "Sitemap URL"
|
105 |
msgstr "Sitemap URL"
|
106 |
|
107 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1002
|
108 |
+
#: google-sitemap-plugin.php:1052 google-sitemap-plugin.php:1088
|
109 |
+
#: google-sitemap-plugin.php:1126 google-sitemap-plugin.php:1157
|
110 |
+
#: google-sitemap-plugin.php:1197 google-sitemap-plugin.php:1217
|
111 |
+
#: includes/class-gglstmp-settings.php:429
|
112 |
msgid "Error"
|
113 |
msgstr "Помилка"
|
114 |
|
115 |
+
#: google-sitemap-plugin.php:986
|
116 |
msgid "Please check the sitemap file manually."
|
117 |
msgstr "Будь ласка, перевірте файл sitemap вручну."
|
118 |
|
119 |
+
#: google-sitemap-plugin.php:986 google-sitemap-plugin.php:1004
|
120 |
+
#: google-sitemap-plugin.php:1091 google-sitemap-plugin.php:1130
|
121 |
+
#: google-sitemap-plugin.php:1160 google-sitemap-plugin.php:1200
|
122 |
+
#: includes/class-gglstmp-settings.php:247 includes/pro_banners.php:47
|
123 |
msgid "Learn More"
|
124 |
msgstr "Дізнатись більше"
|
125 |
|
126 |
+
#: google-sitemap-plugin.php:991 google-sitemap-plugin.php:1040
|
127 |
+
#: google-sitemap-plugin.php:1076 google-sitemap-plugin.php:1114
|
128 |
+
#: google-sitemap-plugin.php:1145 google-sitemap-plugin.php:1187
|
129 |
msgid "Unexpected error"
|
130 |
msgstr "Неочікуванна помилка"
|
131 |
|
132 |
+
#: google-sitemap-plugin.php:1004 google-sitemap-plugin.php:1091
|
133 |
+
#: google-sitemap-plugin.php:1160
|
134 |
msgid "Manual verification required."
|
135 |
msgstr "Потрібна ручна перевірка."
|
136 |
|
137 |
+
#: google-sitemap-plugin.php:1034
|
138 |
msgid "Deleted"
|
139 |
msgstr "Видалено"
|
140 |
|
141 |
+
#: google-sitemap-plugin.php:1106 google-sitemap-plugin.php:1109
|
142 |
+
#: google-sitemap-plugin.php:1125
|
143 |
msgid "Verification Code"
|
144 |
msgstr "Код підтвердження"
|
145 |
|
146 |
+
#: google-sitemap-plugin.php:1107
|
147 |
msgid "Received and added to the site"
|
148 |
msgstr "Отриман і додан на сайт"
|
149 |
|
150 |
+
#: google-sitemap-plugin.php:1110
|
151 |
msgid "Received, but has not been added to the site"
|
152 |
msgstr "Отриман, але не додан на сайт"
|
153 |
|
154 |
+
#: google-sitemap-plugin.php:1200
|
155 |
msgid "Please add the sitemap file manually."
|
156 |
msgstr "Будь ласка, додайте файл Sitemap вручну."
|
157 |
|
158 |
+
#: google-sitemap-plugin.php:1205
|
159 |
msgid "Error 404"
|
160 |
msgstr "Помилка 404"
|
161 |
|
162 |
+
#: google-sitemap-plugin.php:1207
|
163 |
#, php-format
|
164 |
msgid "The sitemap file %s not found."
|
165 |
msgstr "Файл sitemap %s не знайдено."
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:1217
|
168 |
msgid "The sitemap file not found."
|
169 |
msgstr "Файл sitemap не знайдено."
|
170 |
|
171 |
+
#: google-sitemap-plugin.php:1294
|
172 |
msgid "FAQ"
|
173 |
msgstr "FAQ"
|
174 |
|
175 |
+
#: google-sitemap-plugin.php:1295
|
176 |
msgid "Support"
|
177 |
msgstr "Підтримка"
|
178 |
|
188 |
msgid "License Key"
|
189 |
msgstr "Ліцензійний ключ"
|
190 |
|
191 |
+
#: includes/class-gglstmp-settings.php:156
|
192 |
msgid "Settings saved."
|
193 |
msgstr "Налаштування збережено."
|
194 |
|
195 |
+
#: includes/class-gglstmp-settings.php:182
|
196 |
#, php-format
|
197 |
msgctxt "%robots.txt file link%"
|
198 |
msgid "Enable to add a sitemap file path to the %s file."
|
199 |
msgstr "Увімкніть, щоб додати шлях до файлу Sitemap в файл %s."
|
200 |
|
201 |
+
#: includes/class-gglstmp-settings.php:187
|
202 |
#, php-format
|
203 |
msgctxt "%reading settings page link%"
|
204 |
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
205 |
msgstr ""
|
206 |
"Опція \"Видимість для пошукових систем\" повинна бути не відзначена на %s."
|
207 |
|
208 |
+
#: includes/class-gglstmp-settings.php:191
|
209 |
msgctxt "...on the reading settings page."
|
210 |
msgid "Reading Settings page"
|
211 |
msgstr "сторінці налаштувань читання"
|
212 |
|
213 |
+
#: includes/class-gglstmp-settings.php:195
|
214 |
msgid ""
|
215 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
216 |
"file:"
|
218 |
"Також, будь ласка, додайте наступний код у початок вашого файлу \".htaccess"
|
219 |
"\":"
|
220 |
|
221 |
+
#: includes/class-gglstmp-settings.php:209
|
222 |
msgid "This option will be applied to all websites in the network."
|
223 |
msgstr "Ця опція буде застосована до всіх сайтів в мережі."
|
224 |
|
225 |
+
#: includes/class-gglstmp-settings.php:212
|
226 |
+
#: includes/class-gglstmp-settings.php:300
|
227 |
msgid "Activate"
|
228 |
msgstr "Активувати"
|
229 |
|
230 |
+
#: includes/class-gglstmp-settings.php:215
|
231 |
+
#: includes/class-gglstmp-settings.php:304
|
232 |
msgid "Install Now"
|
233 |
msgstr "Встановити зараз"
|
234 |
|
235 |
+
#: includes/class-gglstmp-settings.php:221
|
236 |
#, php-format
|
237 |
msgid "%s Plugin"
|
238 |
msgstr "%s плагін"
|
239 |
|
240 |
+
#: includes/class-gglstmp-settings.php:223
|
241 |
#, php-format
|
242 |
msgid "Enable to allow XML files access using %s plugin."
|
243 |
msgstr "Увімкніть, щоб дозволити доступ до файлів XML за допомогою плагіна %s."
|
244 |
|
245 |
+
#: includes/class-gglstmp-settings.php:224
|
246 |
msgid "The following string will be added to your .htaccess file"
|
247 |
msgstr "До вашого .htaccess файл буде додано наступну строку"
|
248 |
|
249 |
+
#: includes/class-gglstmp-settings.php:232
|
250 |
+
#: includes/class-gglstmp-settings.php:354 includes/pro_banners.php:21
|
251 |
msgid "Close"
|
252 |
msgstr "Закрити"
|
253 |
|
254 |
+
#: includes/class-gglstmp-settings.php:243
|
255 |
msgid "URLs Limit"
|
256 |
msgstr "Ліміт посилань"
|
257 |
|
258 |
+
#: includes/class-gglstmp-settings.php:247
|
259 |
msgid ""
|
260 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
261 |
"than 50 MB uncompressed."
|
263 |
"Файл sitemap не може містити більш 50000 посилань і не повинен перевищувати "
|
264 |
"50MB в нестислому стані."
|
265 |
|
266 |
+
#: includes/class-gglstmp-settings.php:248
|
267 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
268 |
msgstr ""
|
269 |
"Зменшіть значення якщо розмір файлу sitemap перевищує допустиме значення."
|
270 |
|
271 |
+
#: includes/class-gglstmp-settings.php:249
|
272 |
msgid ""
|
273 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
274 |
msgstr ""
|
275 |
"Файл sitemap буде розбитий на кілька частин при досягненні ліміту посилань."
|
276 |
|
277 |
+
#: includes/class-gglstmp-settings.php:254
|
278 |
msgid "Google Webmaster Tools"
|
279 |
msgstr "Google Webmaster Tools"
|
280 |
|
281 |
+
#: includes/class-gglstmp-settings.php:257
|
282 |
msgid ""
|
283 |
"This hosting does not support сURL, so you cannot add a sitemap file "
|
284 |
"automatically."
|
286 |
"Ваш хостінг не підтримує сURL, отже ви не можете додати файл Sitemap "
|
287 |
"автоматично."
|
288 |
|
289 |
+
#: includes/class-gglstmp-settings.php:260
|
290 |
msgid "Logout from Google Webmaster Tools"
|
291 |
msgstr "Вийти з Google Webmaster Tools"
|
292 |
|
293 |
+
#: includes/class-gglstmp-settings.php:264
|
294 |
msgid "Manage Website with Google Webmaster Tools"
|
295 |
msgstr "Керуйте веб-сайтом за допомогою Google Webmaster Tools"
|
296 |
|
297 |
+
#: includes/class-gglstmp-settings.php:266
|
298 |
msgid "Add"
|
299 |
msgstr "Додати"
|
300 |
|
301 |
+
#: includes/class-gglstmp-settings.php:267 includes/pro_banners.php:138
|
302 |
msgid "Delete"
|
303 |
msgstr "Видалити"
|
304 |
|
305 |
+
#: includes/class-gglstmp-settings.php:268
|
306 |
msgid "Get Info"
|
307 |
msgstr "Отримати інформацію"
|
308 |
|
309 |
+
#: includes/class-gglstmp-settings.php:270
|
310 |
msgid ""
|
311 |
"Add, delete or get info about this website using your Google Webmaster Tools "
|
312 |
"account."
|
314 |
"Додайте, видаліть або отримайте інформацію про цей сайт за допомогою свого "
|
315 |
"облікового запису Google Webmaster Tools."
|
316 |
|
317 |
+
#: includes/class-gglstmp-settings.php:278
|
318 |
msgid "Get Authorization Code"
|
319 |
msgstr "Отримати код авторизації"
|
320 |
|
321 |
+
#: includes/class-gglstmp-settings.php:281
|
322 |
msgid "Authorize"
|
323 |
msgstr "Авторизуватись"
|
324 |
|
325 |
+
#: includes/class-gglstmp-settings.php:284
|
326 |
msgid "Invalid authorization code. Please try again."
|
327 |
msgstr "Невірний код авторизації. Будь ласка спробуйте ще раз."
|
328 |
|
329 |
+
#: includes/class-gglstmp-settings.php:289
|
330 |
msgid "You can also add your sitemap to Google Webmaster Tools manually."
|
331 |
msgstr "Ви також можете додати sitemap в Google Webmaster Tools вручну."
|
332 |
|
333 |
+
#: includes/class-gglstmp-settings.php:289
|
334 |
msgid "Read the instruction"
|
335 |
msgstr "Читати інструкцію"
|
336 |
|
337 |
+
#: includes/class-gglstmp-settings.php:294
|
338 |
+
msgid "Alternate Language Pages"
|
339 |
+
msgstr "Сторінки альтернативних мов"
|
340 |
+
|
341 |
+
#: includes/class-gglstmp-settings.php:307
|
342 |
+
msgid "Enable to add alternate language pages using Multilanguage plugin."
|
343 |
+
msgstr ""
|
344 |
+
"Увімкніть, щоб додати сторінки альтернативних мов використовуючи плагін "
|
345 |
+
"Multilanguage."
|
346 |
+
|
347 |
+
#: includes/class-gglstmp-settings.php:321
|
348 |
msgid "Post category"
|
349 |
msgstr "Категорія записів"
|
350 |
|
351 |
+
#: includes/class-gglstmp-settings.php:322
|
352 |
msgid "Post tag"
|
353 |
msgstr "Позначка записів"
|
354 |
|
355 |
+
#: includes/class-gglstmp-settings.php:324
|
356 |
msgid "Sitemap Structure"
|
357 |
msgstr "Структура Sitemap"
|
358 |
|
359 |
+
#: includes/class-gglstmp-settings.php:329
|
360 |
msgid "Post Types"
|
361 |
msgstr "Типи записів"
|
362 |
|
363 |
+
#: includes/class-gglstmp-settings.php:336
|
364 |
msgid "Enable to add post type links to the sitemap."
|
365 |
msgstr "Увімкніть, щоб додати посилання типів записів в sitemap."
|
366 |
|
367 |
+
#: includes/class-gglstmp-settings.php:340
|
368 |
msgid "Taxonomies"
|
369 |
msgstr "Таксономії"
|
370 |
|
371 |
+
#: includes/class-gglstmp-settings.php:347
|
372 |
msgid "Enable to taxonomy links to the sitemap."
|
373 |
msgstr "Увімкніть, щоб додати посилання таксономій в sitemap."
|
374 |
|
375 |
+
#: includes/class-gglstmp-settings.php:403
|
376 |
#, php-format
|
377 |
msgid "%s is in the site root directory."
|
378 |
msgstr "%s знаходиться в кореневому каталозі сайту."
|
379 |
|
380 |
+
#: includes/class-gglstmp-settings.php:404
|
381 |
msgid "The Sitemap file"
|
382 |
msgstr "Файл Sitemap"
|
383 |
|
384 |
+
#: includes/class-gglstmp-settings.php:430
|
385 |
#, php-format
|
386 |
msgid ""
|
387 |
"Can't access XML files. Try to add the following rule %s to your %s file "
|
393 |
"кореневому каталозi сайту. Знайдiть наступну строку %s та додайте цей код "
|
394 |
"пiсля неї."
|
395 |
|
396 |
+
#: includes/class-gglstmp-settings.php:446
|
397 |
msgid "Note"
|
398 |
msgstr "Примітка"
|
399 |
|
400 |
+
#: includes/class-gglstmp-settings.php:446
|
401 |
msgid ""
|
402 |
"Another plugin is providing Google Client functionality and may interrupt "
|
403 |
"proper plugin work."
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -39,6 +39,7 @@ https://www.youtube.com/watch?v=CgYXKRXpj_0
|
|
39 |
* Delete website
|
40 |
* Get website info
|
41 |
* Compatible with latest WordPress version
|
|
|
42 |
* Incredibly simple settings for fast setup without modifying code
|
43 |
* Detailed step-by-step documentation and videos
|
44 |
|
@@ -83,6 +84,7 @@ Some of these translations are not complete. We are constantly adding new featur
|
|
83 |
|
84 |
* [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=4b7b8eac2b35e12eaa2d51359f49cfb2) - Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.
|
85 |
* [Htaccess](https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=6f8794059b2a6618808fa7ac6401ba6e) - Protect WordPress website - allow and deny access for certain IP addresses, hostnames, etc.
|
|
|
86 |
|
87 |
== Installation ==
|
88 |
|
@@ -145,6 +147,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
145 |
|
146 |
== Changelog ==
|
147 |
|
|
|
|
|
|
|
148 |
= V3.1.4 - 20.02.2018 =
|
149 |
* Bugfix : The bug with SQL request into the database has been fixed.
|
150 |
|
@@ -340,6 +345,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
340 |
|
341 |
== Upgrade Notice ==
|
342 |
|
|
|
|
|
|
|
343 |
= V3.1.4 =
|
344 |
* Bugs fixed.
|
345 |
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 4.9.5
|
7 |
+
Stable tag: 3.1.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
39 |
* Delete website
|
40 |
* Get website info
|
41 |
* Compatible with latest WordPress version
|
42 |
+
* Add alternate language pages using [Multilanguage](http://bestwebsoft.com/products/multilanguage/?k=9f9a6f0b1b0b0a093b99ad9ddb4d8759) plugin [NEW]
|
43 |
* Incredibly simple settings for fast setup without modifying code
|
44 |
* Detailed step-by-step documentation and videos
|
45 |
|
84 |
|
85 |
* [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=4b7b8eac2b35e12eaa2d51359f49cfb2) - Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.
|
86 |
* [Htaccess](https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=6f8794059b2a6618808fa7ac6401ba6e) - Protect WordPress website - allow and deny access for certain IP addresses, hostnames, etc.
|
87 |
+
* [Multilanguage](http://bestwebsoft.com/products/multilanguage/?k=9f9a6f0b1b0b0a093b99ad9ddb4d8759) - Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.
|
88 |
|
89 |
== Installation ==
|
90 |
|
147 |
|
148 |
== Changelog ==
|
149 |
|
150 |
+
= V3.1.5 - 25.04.2018 =
|
151 |
+
* Update : Compatibility with the Multilanguage plugin has been improved. Ability to add alternate language pages using Multilanguage plugin has been added.
|
152 |
+
|
153 |
= V3.1.4 - 20.02.2018 =
|
154 |
* Bugfix : The bug with SQL request into the database has been fixed.
|
155 |
|
345 |
|
346 |
== Upgrade Notice ==
|
347 |
|
348 |
+
= V3.1.5 =
|
349 |
+
* The compatibility with new Multilanguage plugin version updated.
|
350 |
+
|
351 |
= V3.1.4 =
|
352 |
* Bugs fixed.
|
353 |
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|