Version Description
- 18.08.2015 =
- Update : We updated all functionality for wordpress 4.2.4.
- Update : BWS plugins section was updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 3.0.0 |
Comparing to | |
See all releases |
Code changes from version 2.9.9 to 3.0.0
- bws_menu/bws_functions.php +12 -2
- bws_menu/bws_menu.php +36 -20
- bws_menu/css/general_style.css +3 -2
- bws_menu/css/general_style_wp_before_3.8.css +3 -2
- bws_menu/icons/bws-smtp.png +0 -0
- bws_menu/icons/email-queue.png +0 -0
- bws_menu/icons/job-board.png +0 -0
- bws_menu/icons/profile-extra-fields.png +0 -0
- css/style.css +0 -0
- google-sitemap-plugin.php +22 -16
- languages/sitemap-ru_RU.mo +0 -0
- languages/sitemap-ru_RU.po +151 -198
- languages/sitemap-uk.mo +0 -0
- languages/sitemap-uk.po +149 -193
- readme.txt +9 -2
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- sitemap.xsl +0 -0
bws_menu/bws_functions.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* General functions for BestWebSoft plugins
|
4 |
-
* Version: 1.1.
|
5 |
*/
|
6 |
if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
7 |
function bws_add_general_menu( $base ) {
|
@@ -243,7 +243,17 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
243 |
$url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
|
244 |
$uploadDir = wp_upload_dir();
|
245 |
$zip_name = explode( '/', $bws_license_plugin );
|
246 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
if ( ! $received_content ) {
|
248 |
$result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
|
249 |
} else {
|
1 |
<?php
|
2 |
/*
|
3 |
* General functions for BestWebSoft plugins
|
4 |
+
* Version: 1.1.1
|
5 |
*/
|
6 |
if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
7 |
function bws_add_general_menu( $base ) {
|
243 |
$url = 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/downloads/?bws_first_download=' . $bws_license_plugin . '&bws_license_key=' . $bws_license_key . '&download_from=5';
|
244 |
$uploadDir = wp_upload_dir();
|
245 |
$zip_name = explode( '/', $bws_license_plugin );
|
246 |
+
|
247 |
+
if ( !function_exists( 'curl_init' ) ) {
|
248 |
+
$received_content = file_get_contents( $url );
|
249 |
+
} else {
|
250 |
+
$ch = curl_init();
|
251 |
+
curl_setopt( $ch, CURLOPT_URL, $url );
|
252 |
+
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
|
253 |
+
$received_content = curl_exec( $ch );
|
254 |
+
curl_close( $ch );
|
255 |
+
}
|
256 |
+
|
257 |
if ( ! $received_content ) {
|
258 |
$result['error'] = __( "Failed to download the zip archive. Please, upload the plugin manually", 'bestwebsoft' );
|
259 |
} else {
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.6.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -89,12 +89,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
89 |
'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
|
90 |
),
|
91 |
'adsense-plugin/adsense-plugin.php'=> array(
|
92 |
-
'name' => 'Google AdSense
|
93 |
'description' => 'Allows Google AdSense implementation to your website.',
|
94 |
'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
95 |
'download' => 'http://bestwebsoft.com/products/google-adsense/download/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
96 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins',
|
97 |
-
'settings' => 'admin.php?page=adsense-plugin.php'
|
|
|
|
|
|
|
98 |
),
|
99 |
'custom-search-plugin/custom-search-plugin.php'=> array(
|
100 |
'name' => 'Custom Search',
|
@@ -116,7 +119,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
116 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
117 |
),
|
118 |
'google-sitemap-plugin/google-sitemap-plugin.php'=> array(
|
119 |
-
'name' => 'Google Sitemap
|
120 |
'description' => 'Allows you to add sitemap file to Google Webmaster Tools.',
|
121 |
'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
122 |
'download' => 'http://bestwebsoft.com/products/google-sitemap/download/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -146,7 +149,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
146 |
'settings' => 'admin.php?page=custom_fields_search.php'
|
147 |
),
|
148 |
'google-one/google-plus-one.php' => array(
|
149 |
-
'name' => 'Google +1
|
150 |
'description' => 'Allows you to see how many times your page has been liked on Google Search Engine as well as who has liked the article.',
|
151 |
'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
152 |
'download' => 'http://bestwebsoft.com/products/google-plus-one/download/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -165,7 +168,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
165 |
'settings' => 'admin.php?page=related-posts-plugin.php'
|
166 |
),
|
167 |
'contact-form-to-db/contact_form_to_db.php' => array(
|
168 |
-
'name' => 'Contact Form
|
169 |
'description' => 'Allows you to manage the messages that have been sent from your site.',
|
170 |
'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
171 |
'download' => 'http://bestwebsoft.com/products/contact-form-to-db/download/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -195,7 +198,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
195 |
'settings' => 'admin.php?page=donate.php'
|
196 |
),
|
197 |
'post-to-csv/post-to-csv.php' => array(
|
198 |
-
'name' => 'Post
|
199 |
'description' => 'The plugin allows to export posts of any types to a csv file.',
|
200 |
'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
201 |
'download' => 'http://bestwebsoft.com/products/post-to-csv/download/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -203,7 +206,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
203 |
'settings' => 'admin.php?page=post-to-csv.php'
|
204 |
),
|
205 |
'google-shortlink/google-shortlink.php' => array(
|
206 |
-
'name' => 'Google Shortlink
|
207 |
'description' => 'Allows you to get short links from goo.gl servise without leaving your site.',
|
208 |
'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
209 |
'download' => 'http://bestwebsoft.com/products/google-shortlink/download/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -222,7 +225,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
222 |
'pro_settings' => 'admin.php?page=htaccess-pro.php'
|
223 |
),
|
224 |
'google-captcha/google-captcha.php' => array(
|
225 |
-
'name' => 'Google Captcha (reCAPTCHA)
|
226 |
'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
|
227 |
'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
228 |
'download' => 'http://bestwebsoft.com/products/google-captcha/download/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -263,7 +266,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
263 |
'pro_settings' => ''
|
264 |
),
|
265 |
'bws-google-maps/bws-google-maps.php' => array(
|
266 |
-
'name' => 'Google Maps
|
267 |
'description' => 'Easy to set up and insert Google Maps to your website.',
|
268 |
'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
269 |
'download' => 'http://bestwebsoft.com/products/bws-google-maps/download/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -274,7 +277,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
274 |
'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
|
275 |
),
|
276 |
'bws-google-analytics/bws-google-analytics.php' => array(
|
277 |
-
'name' => 'Google Analytics
|
278 |
'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
|
279 |
'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
280 |
'download' => 'http://bestwebsoft.com/products/bws-google-analytics/download/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -285,7 +288,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
285 |
'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
|
286 |
),
|
287 |
'db-manager/db-manager.php' => array(
|
288 |
-
'name' => 'DB
|
289 |
'description' => 'Allows you to download the latest version of PhpMyadmin and Dumper and manage your site.',
|
290 |
'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
291 |
'download' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -323,7 +326,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
323 |
'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
|
324 |
),
|
325 |
'job-board/job-board.php' => array(
|
326 |
-
'name' => 'Job
|
327 |
'description' => 'Allows to create a job-board page on your site.',
|
328 |
'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
329 |
'download' => 'http://bestwebsoft.com/products/job-board/download/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -336,10 +339,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
336 |
'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
337 |
'download' => 'http://bestwebsoft.com/products/multilanguage/download/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
338 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Multilanguage+BestWebSoft&plugin-search-input=Search+Plugins',
|
339 |
-
'settings' => 'admin.php?page=mltlngg_settings'
|
|
|
|
|
|
|
340 |
),
|
341 |
'bws-popular-posts/bws-popular-posts.php' => array(
|
342 |
-
'name' => 'Popular Posts
|
343 |
'description' => 'This plugin will help you can display the most popular posts on your blog in the widget.',
|
344 |
'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
345 |
'download' => 'http://bestwebsoft.com/products/popular-posts/download/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -347,7 +353,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
347 |
'settings' => 'admin.php?page=popular-posts.php'
|
348 |
),
|
349 |
'bws-testimonials/bws-testimonials.php' => array(
|
350 |
-
'name' => 'Testimonials
|
351 |
'description' => 'Allows creating and displaying a Testimonial on your website.',
|
352 |
'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
353 |
'download' => 'http://bestwebsoft.com/products/testimonials/download/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -355,7 +361,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
355 |
'settings' => 'admin.php?page=testimonials.php'
|
356 |
),
|
357 |
'bws-featured-posts/bws-featured-posts.php' => array(
|
358 |
-
'name' => 'Featured Posts
|
359 |
'description' => 'Displays featured posts randomly on any website page.',
|
360 |
'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
361 |
'download' => 'http://bestwebsoft.com/products/featured-posts/download/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -379,7 +385,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
379 |
'settings' => 'admin.php?page=re-attacher.php'
|
380 |
),
|
381 |
'bws-smtp/bws-smtp.php' => array(
|
382 |
-
'name' => 'SMTP
|
383 |
'description' => 'This plugin introduces an easy way to configure sending email messages via SMTP.',
|
384 |
'link' => 'http://bestwebsoft.com/products/bws-smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
385 |
'download' => 'http://bestwebsoft.com/products/bws-smtp/download/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -433,7 +439,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
433 |
'settings' => 'admin.php?page=pagination.php'
|
434 |
),
|
435 |
'visitors-online/visitors-online.php' => array(
|
436 |
-
'name' => 'Visitors
|
437 |
'description' => 'See how many users, guests and bots are online at the website.',
|
438 |
'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
439 |
'download' => 'http://bestwebsoft.com/products/visitors-online/download/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
@@ -442,7 +448,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
442 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
443 |
'purchase' => 'http://bestwebsoft.com/products/visitors-online/buy/?k=f9a746075ff8a0a6cb192cb46526afd2&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
444 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
445 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
);
|
447 |
|
448 |
$all_plugins = get_plugins();
|
@@ -970,6 +984,8 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
970 |
function bws_get_banner_array() {
|
971 |
global $bstwbsftwppdtplgns_banner_array;
|
972 |
$bstwbsftwppdtplgns_banner_array = array(
|
|
|
|
|
973 |
array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
|
974 |
array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
|
975 |
array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.6.9
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
89 |
'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
|
90 |
),
|
91 |
'adsense-plugin/adsense-plugin.php'=> array(
|
92 |
+
'name' => 'Google AdSense',
|
93 |
'description' => 'Allows Google AdSense implementation to your website.',
|
94 |
'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
95 |
'download' => 'http://bestwebsoft.com/products/google-adsense/download/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
96 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins',
|
97 |
+
'settings' => 'admin.php?page=adsense-plugin.php',
|
98 |
+
'pro_version' => 'adsense-pro/adsense-pro.php',
|
99 |
+
'purchase' => 'http://bestwebsoft.com/products/google-adsense/buy/?k=c23889b293d62aa1ad2c96513405f0e1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
100 |
+
'pro_settings' => 'admin.php?page=adsense-pro.php'
|
101 |
),
|
102 |
'custom-search-plugin/custom-search-plugin.php'=> array(
|
103 |
'name' => 'Custom Search',
|
119 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
120 |
),
|
121 |
'google-sitemap-plugin/google-sitemap-plugin.php'=> array(
|
122 |
+
'name' => 'Google Sitemap',
|
123 |
'description' => 'Allows you to add sitemap file to Google Webmaster Tools.',
|
124 |
'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
125 |
'download' => 'http://bestwebsoft.com/products/google-sitemap/download/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
149 |
'settings' => 'admin.php?page=custom_fields_search.php'
|
150 |
),
|
151 |
'google-one/google-plus-one.php' => array(
|
152 |
+
'name' => 'Google +1',
|
153 |
'description' => 'Allows you to see how many times your page has been liked on Google Search Engine as well as who has liked the article.',
|
154 |
'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
155 |
'download' => 'http://bestwebsoft.com/products/google-plus-one/download/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
168 |
'settings' => 'admin.php?page=related-posts-plugin.php'
|
169 |
),
|
170 |
'contact-form-to-db/contact_form_to_db.php' => array(
|
171 |
+
'name' => 'Contact Form to DB',
|
172 |
'description' => 'Allows you to manage the messages that have been sent from your site.',
|
173 |
'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
174 |
'download' => 'http://bestwebsoft.com/products/contact-form-to-db/download/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
198 |
'settings' => 'admin.php?page=donate.php'
|
199 |
),
|
200 |
'post-to-csv/post-to-csv.php' => array(
|
201 |
+
'name' => 'Post to CSV',
|
202 |
'description' => 'The plugin allows to export posts of any types to a csv file.',
|
203 |
'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
204 |
'download' => 'http://bestwebsoft.com/products/post-to-csv/download/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
206 |
'settings' => 'admin.php?page=post-to-csv.php'
|
207 |
),
|
208 |
'google-shortlink/google-shortlink.php' => array(
|
209 |
+
'name' => 'Google Shortlink',
|
210 |
'description' => 'Allows you to get short links from goo.gl servise without leaving your site.',
|
211 |
'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
212 |
'download' => 'http://bestwebsoft.com/products/google-shortlink/download/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
225 |
'pro_settings' => 'admin.php?page=htaccess-pro.php'
|
226 |
),
|
227 |
'google-captcha/google-captcha.php' => array(
|
228 |
+
'name' => 'Google Captcha (reCAPTCHA)',
|
229 |
'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
|
230 |
'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
231 |
'download' => 'http://bestwebsoft.com/products/google-captcha/download/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
266 |
'pro_settings' => ''
|
267 |
),
|
268 |
'bws-google-maps/bws-google-maps.php' => array(
|
269 |
+
'name' => 'Google Maps',
|
270 |
'description' => 'Easy to set up and insert Google Maps to your website.',
|
271 |
'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
272 |
'download' => 'http://bestwebsoft.com/products/bws-google-maps/download/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
277 |
'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
|
278 |
),
|
279 |
'bws-google-analytics/bws-google-analytics.php' => array(
|
280 |
+
'name' => 'Google Analytics',
|
281 |
'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
|
282 |
'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
283 |
'download' => 'http://bestwebsoft.com/products/bws-google-analytics/download/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
288 |
'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
|
289 |
),
|
290 |
'db-manager/db-manager.php' => array(
|
291 |
+
'name' => 'DB Manager',
|
292 |
'description' => 'Allows you to download the latest version of PhpMyadmin and Dumper and manage your site.',
|
293 |
'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
294 |
'download' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
326 |
'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
|
327 |
),
|
328 |
'job-board/job-board.php' => array(
|
329 |
+
'name' => 'Job Board',
|
330 |
'description' => 'Allows to create a job-board page on your site.',
|
331 |
'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
332 |
'download' => 'http://bestwebsoft.com/products/job-board/download/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
339 |
'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
340 |
'download' => 'http://bestwebsoft.com/products/multilanguage/download/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
341 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Multilanguage+BestWebSoft&plugin-search-input=Search+Plugins',
|
342 |
+
'settings' => 'admin.php?page=mltlngg_settings',
|
343 |
+
'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
|
344 |
+
'purchase' => 'http://bestwebsoft.com/products/multilanguage/buy/?k=2d1121cd9a5ced583fc29eefd51bdf57&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
345 |
+
'pro_settings' => 'admin.php?page=mltlnggpr_settings'
|
346 |
),
|
347 |
'bws-popular-posts/bws-popular-posts.php' => array(
|
348 |
+
'name' => 'Popular Posts',
|
349 |
'description' => 'This plugin will help you can display the most popular posts on your blog in the widget.',
|
350 |
'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
351 |
'download' => 'http://bestwebsoft.com/products/popular-posts/download/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
353 |
'settings' => 'admin.php?page=popular-posts.php'
|
354 |
),
|
355 |
'bws-testimonials/bws-testimonials.php' => array(
|
356 |
+
'name' => 'Testimonials',
|
357 |
'description' => 'Allows creating and displaying a Testimonial on your website.',
|
358 |
'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
359 |
'download' => 'http://bestwebsoft.com/products/testimonials/download/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
361 |
'settings' => 'admin.php?page=testimonials.php'
|
362 |
),
|
363 |
'bws-featured-posts/bws-featured-posts.php' => array(
|
364 |
+
'name' => 'Featured Posts',
|
365 |
'description' => 'Displays featured posts randomly on any website page.',
|
366 |
'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
367 |
'download' => 'http://bestwebsoft.com/products/featured-posts/download/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
385 |
'settings' => 'admin.php?page=re-attacher.php'
|
386 |
),
|
387 |
'bws-smtp/bws-smtp.php' => array(
|
388 |
+
'name' => 'SMTP',
|
389 |
'description' => 'This plugin introduces an easy way to configure sending email messages via SMTP.',
|
390 |
'link' => 'http://bestwebsoft.com/products/bws-smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
391 |
'download' => 'http://bestwebsoft.com/products/bws-smtp/download/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
439 |
'settings' => 'admin.php?page=pagination.php'
|
440 |
),
|
441 |
'visitors-online/visitors-online.php' => array(
|
442 |
+
'name' => 'Visitors Online',
|
443 |
'description' => 'See how many users, guests and bots are online at the website.',
|
444 |
'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
445 |
'download' => 'http://bestwebsoft.com/products/visitors-online/download/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
448 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
449 |
'purchase' => 'http://bestwebsoft.com/products/visitors-online/buy/?k=f9a746075ff8a0a6cb192cb46526afd2&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
450 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
451 |
+
),
|
452 |
+
'profile-extra-fields/profile-extra-fields.php' => array(
|
453 |
+
'name' => 'Profile Extra Fields',
|
454 |
+
'description' => "Add additional fields on the user's profile page",
|
455 |
+
'link' => 'http://bestwebsoft.com/products/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
456 |
+
'download' => 'http://bestwebsoft.com/products/profile-extra-fields/download/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
457 |
+
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Profile+Extra+Fields+BestWebSoft&plugin-search-input=Search+Plugins',
|
458 |
+
'settings' => 'admin.php?page=profile-extra-fields.php'
|
459 |
+
)
|
460 |
);
|
461 |
|
462 |
$all_plugins = get_plugins();
|
984 |
function bws_get_banner_array() {
|
985 |
global $bstwbsftwppdtplgns_banner_array;
|
986 |
$bstwbsftwppdtplgns_banner_array = array(
|
987 |
+
array( 'mltlngg_hide_banner_on_plugin_page', 'multilanguage/multilanguage.php', '1.1.1' ),
|
988 |
+
array( 'adsns_hide_banner_on_plugin_page', 'adsense-plugin/adsense-plugin.php', '1.36' ),
|
989 |
array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
|
990 |
array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
|
991 |
array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
|
bws_menu/css/general_style.css
CHANGED
@@ -69,6 +69,7 @@ td.bws_pro_version_tooltip {
|
|
69 |
margin: 5px 0;
|
70 |
border: 1px solid #AAAAAA;
|
71 |
max-width: 800px;
|
|
|
72 |
}
|
73 |
.bws_table_bg {
|
74 |
background: #f8e268 url("../images/pattern.png");
|
@@ -165,7 +166,7 @@ a.bws_plugin_pro_version {
|
|
165 |
float: none;
|
166 |
}
|
167 |
/* #### Mobile Phones Portrait or Landscape #### */
|
168 |
-
@media screen and (max-device-width:
|
169 |
.bws_pro_version_tooltip {
|
170 |
padding: 10px;
|
171 |
text-align: center;
|
@@ -252,7 +253,7 @@ div.bws_banner_on_plugin_page .icon {
|
|
252 |
cursor: pointer;
|
253 |
}
|
254 |
/* #### Mobile Phones Portrait or Landscape #### */
|
255 |
-
@media screen and (max-device-width:
|
256 |
.bws_banner_on_plugin_page .text,
|
257 |
.bws_banner_on_plugin_page .icon,
|
258 |
.bws_banner_on_plugin_page .button_div,
|
69 |
margin: 5px 0;
|
70 |
border: 1px solid #AAAAAA;
|
71 |
max-width: 800px;
|
72 |
+
overflow: hidden;
|
73 |
}
|
74 |
.bws_table_bg {
|
75 |
background: #f8e268 url("../images/pattern.png");
|
166 |
float: none;
|
167 |
}
|
168 |
/* #### Mobile Phones Portrait or Landscape #### */
|
169 |
+
@media screen and (max-device-width: 768px) {
|
170 |
.bws_pro_version_tooltip {
|
171 |
padding: 10px;
|
172 |
text-align: center;
|
253 |
cursor: pointer;
|
254 |
}
|
255 |
/* #### Mobile Phones Portrait or Landscape #### */
|
256 |
+
@media screen and (max-device-width: 768px) {
|
257 |
.bws_banner_on_plugin_page .text,
|
258 |
.bws_banner_on_plugin_page .icon,
|
259 |
.bws_banner_on_plugin_page .button_div,
|
bws_menu/css/general_style_wp_before_3.8.css
CHANGED
@@ -71,6 +71,7 @@ td.bws_pro_version_tooltip {
|
|
71 |
margin: 5px 0;
|
72 |
border: 1px solid #AAAAAA;
|
73 |
max-width: 800px;
|
|
|
74 |
}
|
75 |
.bws_table_bg {
|
76 |
background: #f8e268 url("../images/pattern.png");
|
@@ -167,7 +168,7 @@ a.bws_plugin_pro_version {
|
|
167 |
float: none;
|
168 |
}
|
169 |
/* #### Mobile Phones Portrait or Landscape #### */
|
170 |
-
@media screen and (max-device-width:
|
171 |
.bws_pro_version_tooltip {
|
172 |
padding: 10px;
|
173 |
text-align: center;
|
@@ -259,7 +260,7 @@ div.bws_banner_on_plugin_page .icon {
|
|
259 |
cursor: pointer;
|
260 |
}
|
261 |
/* #### Mobile Phones Portrait or Landscape #### */
|
262 |
-
@media screen and (max-device-width:
|
263 |
.bws_banner_on_plugin_page .text,
|
264 |
.bws_banner_on_plugin_page .icon,
|
265 |
.bws_banner_on_plugin_page .button_div,
|
71 |
margin: 5px 0;
|
72 |
border: 1px solid #AAAAAA;
|
73 |
max-width: 800px;
|
74 |
+
overflow: hidden;
|
75 |
}
|
76 |
.bws_table_bg {
|
77 |
background: #f8e268 url("../images/pattern.png");
|
168 |
float: none;
|
169 |
}
|
170 |
/* #### Mobile Phones Portrait or Landscape #### */
|
171 |
+
@media screen and (max-device-width: 768px) {
|
172 |
.bws_pro_version_tooltip {
|
173 |
padding: 10px;
|
174 |
text-align: center;
|
260 |
cursor: pointer;
|
261 |
}
|
262 |
/* #### Mobile Phones Portrait or Landscape #### */
|
263 |
+
@media screen and (max-device-width: 768px) {
|
264 |
.bws_banner_on_plugin_page .text,
|
265 |
.bws_banner_on_plugin_page .icon,
|
266 |
.bws_banner_on_plugin_page .button_div,
|
bws_menu/icons/bws-smtp.png
CHANGED
File without changes
|
bws_menu/icons/email-queue.png
CHANGED
File without changes
|
bws_menu/icons/job-board.png
CHANGED
File without changes
|
bws_menu/icons/profile-extra-fields.png
ADDED
Binary file
|
css/style.css
CHANGED
File without changes
|
google-sitemap-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Sitemap by BestWebSoft
|
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin to add google sitemap file in Google Webmaster Tools account.
|
6 |
Author: BestWebSoft
|
7 |
-
Version:
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -434,16 +434,20 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
434 |
</tr>
|
435 |
<tr valign="top">
|
436 |
<td colspan="2">
|
437 |
-
|
438 |
-
|
439 |
-
|
|
|
|
|
440 |
</td>
|
441 |
</tr>
|
442 |
<tr valign="top">
|
443 |
<td colspan="2">
|
444 |
-
|
445 |
-
|
446 |
-
|
|
|
|
|
447 |
</td>
|
448 |
</tr>
|
449 |
</table>
|
@@ -470,7 +474,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
470 |
</div>
|
471 |
<div class="bws_pro_version_tooltip">
|
472 |
<div class="bws_info">
|
473 |
-
<?php _e( 'Unlock premium options by upgrading to
|
474 |
<a href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'sitemap' ); ?></a>
|
475 |
</div>
|
476 |
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/buy/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro">
|
@@ -517,13 +521,15 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
517 |
<?php $gglstmp_menu_ad = __( "I want to add this site to Google Webmaster Tools", 'sitemap' );
|
518 |
$gglstmp_menu_del = __( "I want to delete this site from Google Webmaster Tools", 'sitemap' );
|
519 |
$gglstmp_menu_inf = __( "I want to get info about this site in Google Webmaster Tools", 'sitemap' ); ?>
|
520 |
-
<
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
|
|
|
|
527 |
<?php if ( isset( $_POST['gglstmp_menu'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
528 |
$gglstmp_wmt = new Google_Service_Webmasters( $gglstmp_client );
|
529 |
$gglstmp_sv = new Google_Service_SiteVerification( $gglstmp_client );
|
@@ -601,7 +607,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
601 |
</div>
|
602 |
<div class="bws_pro_version_tooltip">
|
603 |
<div class="bws_info">
|
604 |
-
<?php _e( 'Unlock premium options by upgrading to
|
605 |
<a href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'sitemap' ); ?></a>
|
606 |
</div>
|
607 |
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/buy/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro">
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin to add google sitemap file in Google Webmaster Tools account.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 3.0.0
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
434 |
</tr>
|
435 |
<tr valign="top">
|
436 |
<td colspan="2">
|
437 |
+
<fieldset>
|
438 |
+
<?php foreach ( $gglstmp_result as $key => $value ) { ?>
|
439 |
+
<label><input type="checkbox" <?php if ( in_array( $value, $gglstmp_settings['post_type'] ) ) echo 'checked="checked"'; ?> name="gglstmp_post_types[]" value="<?php echo $value; ?>"/><span style="text-transform: capitalize; padding-left: 5px;"><?php echo $value; ?></span></label><br />
|
440 |
+
<?php } ?>
|
441 |
+
</fieldset>
|
442 |
</td>
|
443 |
</tr>
|
444 |
<tr valign="top">
|
445 |
<td colspan="2">
|
446 |
+
<fieldset>
|
447 |
+
<?php foreach ( $gglstmp_result_taxonomies as $key => $value ) { ?>
|
448 |
+
<label><input type="checkbox" <?php if ( in_array( $key, $gglstmp_settings['taxonomy'] ) ) echo 'checked="checked"'; ?> name="gglstmp_taxonomies[]" value="<?php echo $key; ?>"/><span style="padding-left: 5px;"><?php echo $value; ?></span></label><br />
|
449 |
+
<?php } ?>
|
450 |
+
</fieldset>
|
451 |
</td>
|
452 |
</tr>
|
453 |
</table>
|
474 |
</div>
|
475 |
<div class="bws_pro_version_tooltip">
|
476 |
<div class="bws_info">
|
477 |
+
<?php _e( 'Unlock premium options by upgrading to PRO version.', 'sitemap' ); ?>
|
478 |
<a href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'sitemap' ); ?></a>
|
479 |
</div>
|
480 |
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/buy/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro">
|
521 |
<?php $gglstmp_menu_ad = __( "I want to add this site to Google Webmaster Tools", 'sitemap' );
|
522 |
$gglstmp_menu_del = __( "I want to delete this site from Google Webmaster Tools", 'sitemap' );
|
523 |
$gglstmp_menu_inf = __( "I want to get info about this site in Google Webmaster Tools", 'sitemap' ); ?>
|
524 |
+
<fieldset>
|
525 |
+
<label><input type='radio' name='gglstmp_menu' value="ad" /> <?php echo $gglstmp_menu_ad; ?></label><br />
|
526 |
+
<label><input type='radio' name='gglstmp_menu' value="del" /> <?php echo $gglstmp_menu_del; ?></label><br />
|
527 |
+
<label><input type='radio' name='gglstmp_menu' value="inf" /> <?php echo $gglstmp_menu_inf; ?></label><br />
|
528 |
+
<span class="gglstmp_span">
|
529 |
+
<?php _e( 'In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually', 'sitemap' ); ?>:
|
530 |
+
<a target="_blank" href="https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit"><?php _e( 'View the Instruction', 'sitemap' ); ?></a>
|
531 |
+
</span>
|
532 |
+
</fieldset>
|
533 |
<?php if ( isset( $_POST['gglstmp_menu'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
534 |
$gglstmp_wmt = new Google_Service_Webmasters( $gglstmp_client );
|
535 |
$gglstmp_sv = new Google_Service_SiteVerification( $gglstmp_client );
|
607 |
</div>
|
608 |
<div class="bws_pro_version_tooltip">
|
609 |
<div class="bws_info">
|
610 |
+
<?php _e( 'Unlock premium options by upgrading to PRO version.', 'sitemap' ); ?>
|
611 |
<a href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'sitemap' ); ?></a>
|
612 |
</div>
|
613 |
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/buy/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro">
|
languages/sitemap-ru_RU.mo
CHANGED
Binary file
|
languages/sitemap-ru_RU.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,421 +16,374 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:33
|
|
|
20 |
msgid "Google Sitemap Settings"
|
21 |
msgstr "Настройки Google Sitemap"
|
22 |
|
23 |
-
#: google-sitemap-plugin.php:
|
24 |
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
25 |
msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права."
|
26 |
|
27 |
-
#: google-sitemap-plugin.php:
|
28 |
msgid "Settings saved."
|
29 |
msgstr "Настройки сохранены."
|
30 |
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
msgid "Your Sitemap file is created in the site root directory."
|
33 |
msgstr "Файл Sitemap создан в корне основной директории."
|
34 |
|
35 |
-
#: google-sitemap-plugin.php:
|
36 |
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
37 |
msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права."
|
38 |
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
msgid "All plugin settings were restored."
|
41 |
msgstr "Настройки плагина были восстановлены."
|
42 |
|
43 |
-
#: google-sitemap-plugin.php:
|
44 |
-
#: google-sitemap-plugin.php:
|
|
|
45 |
msgid "Settings"
|
46 |
msgstr "Настройки"
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
msgid "Extra settings"
|
50 |
msgstr "Экстра настройки"
|
51 |
|
52 |
-
#: google-sitemap-plugin.php:
|
|
|
53 |
msgid "FAQ"
|
54 |
-
msgstr "
|
55 |
|
56 |
-
#: google-sitemap-plugin.php:
|
57 |
msgid "Go PRO"
|
58 |
msgstr "Перейти на PRO версию"
|
59 |
|
60 |
-
#: google-sitemap-plugin.php:
|
61 |
msgid "Warning:"
|
62 |
msgstr "Внимание:"
|
63 |
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
#, php-format
|
66 |
-
msgid ""
|
67 |
-
"
|
68 |
-
"your %s file in %s after line %s."
|
69 |
-
msgstr ""
|
70 |
-
"Чтобы иметь доступ к XML файлам подсайта, пожалуйста, добавьте следующее "
|
71 |
-
"правило %s в ваш %s файл %s после строчки %s."
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
msgid "Сheck Access"
|
75 |
msgstr "Проверить Доступ"
|
76 |
|
77 |
-
#: google-sitemap-plugin.php:
|
78 |
msgid "Notice:"
|
79 |
msgstr "Внимание:"
|
80 |
|
81 |
-
#: google-sitemap-plugin.php:
|
82 |
-
msgid ""
|
83 |
-
"
|
84 |
-
"forget to click the 'Save Changes' button."
|
85 |
-
msgstr ""
|
86 |
-
"Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, "
|
87 |
-
"не забудьте нажать кнопку \"Сохранить\"."
|
88 |
|
89 |
-
#: google-sitemap-plugin.php:
|
|
|
90 |
msgid "The Sitemap file"
|
91 |
msgstr "Файл Sitemap"
|
92 |
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
-
|
95 |
-
"already exists. If you would like to replace it with a new one, please "
|
96 |
-
"
|
97 |
-
msgstr ""
|
98 |
-
"уже существует. Если вы хотите изменить его на новый, выберите "
|
99 |
-
"соответствующее действие внизу."
|
100 |
|
101 |
-
#: google-sitemap-plugin.php:
|
|
|
102 |
msgid "Your Sitemap file"
|
103 |
msgstr "Ваш файл Sitemap"
|
104 |
|
105 |
-
#: google-sitemap-plugin.php:
|
|
|
106 |
msgid "is created in the site root directory."
|
107 |
msgstr "создана в корне основной директории."
|
108 |
|
109 |
-
#: google-sitemap-plugin.php:
|
110 |
-
|
111 |
-
"If you do not want a sitemap file to be added to Google Webmaster Tools "
|
112 |
-
"
|
113 |
-
msgstr ""
|
114 |
-
"Если вы не хотите добавить файл sitemap автоматически в Google Webmaster "
|
115 |
-
"Tools, Вы можете сделать это через"
|
116 |
|
117 |
-
#: google-sitemap-plugin.php:
|
|
|
118 |
msgid "this"
|
119 |
msgstr "эту"
|
120 |
|
121 |
-
#: google-sitemap-plugin.php:
|
122 |
-
|
123 |
-
"link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the "
|
124 |
-
"
|
125 |
-
msgstr ""
|
126 |
-
"ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить "
|
127 |
-
"обязательное поле"
|
128 |
|
129 |
-
#: google-sitemap-plugin.php:
|
130 |
msgid "I want to create a new sitemap file or update the existing one"
|
131 |
msgstr "Я хочу создать новый файл sitemap или обновить существующий"
|
132 |
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
msgid "I want to add sitemap file path in robots.txt"
|
135 |
msgstr "Я хочу добавить путь файла sitemap в robots.txt"
|
136 |
|
137 |
-
#: google-sitemap-plugin.php:
|
138 |
-
msgid ""
|
139 |
-
"
|
140 |
-
"to robots.txt"
|
141 |
-
msgstr ""
|
142 |
-
"Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить "
|
143 |
-
"sitemap в robots.txt"
|
144 |
|
145 |
-
#: google-sitemap-plugin.php:
|
146 |
msgid "I want to add sitemap file path in"
|
147 |
msgstr "Я хочу добавить путь файла sitemap в"
|
148 |
|
149 |
-
#: google-sitemap-plugin.php:
|
150 |
-
|
151 |
-
"Please choose the necessary post types and taxonomies the links to which are "
|
152 |
-
"
|
153 |
-
msgstr ""
|
154 |
-
"Пожалуйста, выберите необходимые типы постов и таксономии, ссылки на которые "
|
155 |
-
"будут добавлены в sitemap:"
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
159 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
msgid "Always"
|
163 |
msgstr "Всегда"
|
164 |
|
165 |
-
#: google-sitemap-plugin.php:
|
166 |
msgid "Hourly"
|
167 |
msgstr "Ежечасно"
|
168 |
|
169 |
-
#: google-sitemap-plugin.php:
|
170 |
msgid "Daily"
|
171 |
msgstr "Ежедневно"
|
172 |
|
173 |
-
#: google-sitemap-plugin.php:
|
174 |
msgid "Weekly"
|
175 |
msgstr "Еженедельно"
|
176 |
|
177 |
-
#: google-sitemap-plugin.php:
|
178 |
msgid "Monthly"
|
179 |
msgstr "Ежемесячно"
|
180 |
|
181 |
-
#: google-sitemap-plugin.php:
|
182 |
msgid "Yearly"
|
183 |
msgstr "Ежегодно"
|
184 |
|
185 |
-
#: google-sitemap-plugin.php:
|
186 |
msgid "Never"
|
187 |
msgstr "Никогда"
|
188 |
|
189 |
-
#: google-sitemap-plugin.php:
|
190 |
-
msgid ""
|
191 |
-
"
|
192 |
-
"search engines. The sitemap itself is generated once and will be re-"
|
193 |
-
"generated when you create or update any post or page."
|
194 |
-
msgstr ""
|
195 |
-
"Это значение используется в файле sitemap и предоставляет общую информацию "
|
196 |
-
"для поисковых систем. Sitemap создается один раз и будет перезаписана вновь "
|
197 |
-
"при создании или обновлении какой-либо страницы или поста."
|
198 |
|
199 |
-
#: google-sitemap-plugin.php:
|
200 |
-
|
|
|
201 |
msgstr "Активируйте премиум опции обновившись до PRO версии."
|
202 |
|
203 |
-
#: google-sitemap-plugin.php:
|
|
|
204 |
msgid "Learn More"
|
205 |
msgstr "Подробнее"
|
206 |
|
207 |
-
#: google-sitemap-plugin.php:
|
|
|
208 |
msgid "Go"
|
209 |
msgstr "Перейти на"
|
210 |
|
211 |
-
#: google-sitemap-plugin.php:
|
212 |
-
msgid ""
|
213 |
-
"
|
214 |
-
"automatically."
|
215 |
-
msgstr ""
|
216 |
-
"Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap в "
|
217 |
-
"Google аккаунт автоматически."
|
218 |
|
219 |
-
#: google-sitemap-plugin.php:
|
220 |
msgid "Remote work with Google Webmaster Tools"
|
221 |
msgstr "Удаленная работа с Google Webmaster Tools"
|
222 |
|
223 |
-
#: google-sitemap-plugin.php:
|
224 |
msgid "Log out from Google Webmaster Tools"
|
225 |
msgstr "Выйти из Google Webmaster Tools"
|
226 |
|
227 |
-
#: google-sitemap-plugin.php:
|
228 |
msgid "I want to add this site to Google Webmaster Tools"
|
229 |
msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
|
230 |
|
231 |
-
#: google-sitemap-plugin.php:
|
232 |
msgid "I want to delete this site from Google Webmaster Tools"
|
233 |
msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
|
234 |
|
235 |
-
#: google-sitemap-plugin.php:
|
236 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
237 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
238 |
|
239 |
-
#: google-sitemap-plugin.php:
|
240 |
-
msgid ""
|
241 |
-
"
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
#: google-sitemap-plugin.php:
|
248 |
-
#: google-sitemap-plugin.php:
|
249 |
-
#: google-sitemap-plugin.php:
|
250 |
-
#: google-sitemap-plugin.php:827
|
251 |
msgid "View the Instruction"
|
252 |
msgstr "Просмотреть Инструкцию"
|
253 |
|
254 |
-
#: google-sitemap-plugin.php:
|
255 |
-
msgid ""
|
256 |
-
"
|
257 |
-
"and a sitemap file automatically or get information about this site in "
|
258 |
-
"Google Webmaster Tools."
|
259 |
-
msgstr ""
|
260 |
-
"Пожалуйста, авторизуйтесь используя ваш Google аккаунт, чтобы иметь "
|
261 |
-
"возможность добавлять или удалять сайты и файл sitemap автоматически или "
|
262 |
-
"получать информацию из Google Webmaster Tools."
|
263 |
|
264 |
-
#: google-sitemap-plugin.php:
|
265 |
msgid "Get Authorization Code"
|
266 |
msgstr "Получить код авторизации"
|
267 |
|
268 |
-
#: google-sitemap-plugin.php:
|
269 |
msgid "Authorize"
|
270 |
msgstr "Авторизироваться"
|
271 |
|
272 |
-
#: google-sitemap-plugin.php:
|
273 |
msgid "Invalid authorization code. Please, try again."
|
274 |
msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз."
|
275 |
|
276 |
-
#: google-sitemap-plugin.php:
|
|
|
277 |
msgid "Save Changes"
|
278 |
msgstr "Сохранить изменения"
|
279 |
|
280 |
-
#: google-sitemap-plugin.php:
|
281 |
msgid "Show URL for pages"
|
282 |
msgstr "Отображать URL для страниц"
|
283 |
|
284 |
-
#: google-sitemap-plugin.php:
|
285 |
msgid "Example of site pages' tree"
|
286 |
msgstr "Пример дерева страниц сайта"
|
287 |
|
288 |
-
#: google-sitemap-plugin.php:
|
289 |
#, php-format
|
290 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
291 |
msgstr "Я хочу получить информацию об сайте %s из Google Webmaster Tools"
|
292 |
|
293 |
-
#: google-sitemap-plugin.php:
|
|
|
294 |
msgid "This site is not added to the Google Webmaster Tools."
|
295 |
msgstr "Этот сайт не добавлен в Google Webmaster Tools."
|
296 |
|
297 |
-
#: google-sitemap-plugin.php:
|
298 |
msgid "This site is added to the Google Webmaster Tools."
|
299 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
300 |
|
301 |
-
#: google-sitemap-plugin.php:
|
302 |
msgid "Site URL:"
|
303 |
msgstr "URL сайта:"
|
304 |
|
305 |
-
#: google-sitemap-plugin.php:
|
306 |
msgid "Site verification:"
|
307 |
msgstr "Верификация сайта:"
|
308 |
|
309 |
-
#: google-sitemap-plugin.php:
|
310 |
msgid "verified"
|
311 |
msgstr "верифицрован"
|
312 |
|
313 |
-
#: google-sitemap-plugin.php:
|
314 |
msgid "not verified"
|
315 |
msgstr "не верифицирован"
|
316 |
|
317 |
-
#: google-sitemap-plugin.php:
|
318 |
-
|
319 |
-
"An unexpected error occurred when verifying site in the Google Webmaster "
|
320 |
-
"Tools."
|
321 |
msgstr "Ошибка при верификации сайта в Google Webmaster Tools."
|
322 |
|
323 |
-
#: google-sitemap-plugin.php:
|
324 |
-
#: google-sitemap-plugin.php:
|
|
|
325 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
326 |
-
msgstr ""
|
327 |
-
"Сайт не может быть верифицрован. Пожалуйста, верифицируйте сайт вручную"
|
328 |
|
329 |
-
#: google-sitemap-plugin.php:
|
330 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
331 |
msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools."
|
332 |
|
333 |
-
#: google-sitemap-plugin.php:
|
334 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
335 |
msgstr "Этот файл sitemap добавлен в Google Webmaster Tools."
|
336 |
|
337 |
-
#: google-sitemap-plugin.php:
|
338 |
-
msgid ""
|
339 |
-
"
|
340 |
-
"or warnings."
|
341 |
-
msgstr ""
|
342 |
-
"Этот файл sitemap добавлен в Google Webmaster Tools, но при добавлении "
|
343 |
-
"возникли ошибки."
|
344 |
|
345 |
-
#: google-sitemap-plugin.php:
|
346 |
msgid "Please, see them in the Google Webmaster Tools."
|
347 |
msgstr "Посмотреть ошибки в Google Webmaster Tools."
|
348 |
|
349 |
-
#: google-sitemap-plugin.php:
|
350 |
msgid "Sitemap URL:"
|
351 |
msgstr "URL Sitemap:"
|
352 |
|
353 |
-
#: google-sitemap-plugin.php:
|
354 |
-
msgid ""
|
355 |
-
"
|
356 |
-
"the sitemap file manually"
|
357 |
-
msgstr ""
|
358 |
-
"При проверке обнаружена ошибка файла sitemap. Пожалуйста, проверьте файл "
|
359 |
-
"вручную"
|
360 |
|
361 |
-
#: google-sitemap-plugin.php:
|
362 |
#, php-format
|
363 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
364 |
msgstr "Я хочу удалить сайт %s из Google Webmaster Tools"
|
365 |
|
366 |
-
#: google-sitemap-plugin.php:
|
367 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
368 |
msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
|
369 |
|
370 |
-
#: google-sitemap-plugin.php:
|
371 |
#, php-format
|
372 |
msgid "I want to add site %s in Google Webmaster Tools"
|
373 |
msgstr "Я хочу добавить сайт %s в Google Webmaster Tools"
|
374 |
|
375 |
-
#: google-sitemap-plugin.php:
|
376 |
msgid "The site is added to the Google Webmaster Tools."
|
377 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
378 |
|
379 |
-
#: google-sitemap-plugin.php:
|
380 |
-
msgid ""
|
381 |
-
"When you add a site in the Google Webmaster Tools unexpected error occurred."
|
382 |
msgstr "Ошибка при добавлении сайта в Google Webmaster Tools."
|
383 |
|
384 |
-
#: google-sitemap-plugin.php:
|
385 |
msgid "The site couldn't be added. Please, add the site manually"
|
386 |
msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
|
387 |
|
388 |
-
#: google-sitemap-plugin.php:
|
389 |
msgid "Verification code has been successfully received and added to the site."
|
390 |
msgstr "Код верификации получен и добавлен на сайт."
|
391 |
|
392 |
-
#: google-sitemap-plugin.php:
|
393 |
-
msgid ""
|
394 |
-
"Verification code has been successfully received but has not been added to "
|
395 |
-
"the site."
|
396 |
msgstr "Код верификации получен, но не добавлен на сайт."
|
397 |
|
398 |
-
#: google-sitemap-plugin.php:
|
399 |
-
msgid ""
|
400 |
-
"An error has occurred when receiving the verification code site in the "
|
401 |
-
"Google Webmaster."
|
402 |
msgstr "Ошибка Google Webmaster при получении кода верификации."
|
403 |
|
404 |
-
#: google-sitemap-plugin.php:
|
405 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
406 |
msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools."
|
407 |
|
408 |
-
#: google-sitemap-plugin.php:
|
409 |
-
msgid ""
|
410 |
-
"The sitemap file has been successfully added to the Google Webmaster Tools."
|
411 |
msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools."
|
412 |
|
413 |
-
#: google-sitemap-plugin.php:
|
414 |
-
msgid ""
|
415 |
-
"When you add a sitemap file in the Google Webmaster Tools unexpected error "
|
416 |
-
"occurred."
|
417 |
msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools."
|
418 |
|
419 |
-
#: google-sitemap-plugin.php:
|
420 |
-
msgid ""
|
421 |
-
"The sitemap file couldn't be added. Please, add the sitemap file manually"
|
422 |
msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
|
423 |
|
424 |
-
#: google-sitemap-plugin.php:
|
425 |
#, php-format
|
426 |
msgid "Error 404. The sitemap file %s not found."
|
427 |
msgstr "Ошибка 404. Файл sitemap %s не найден."
|
428 |
|
429 |
-
#: google-sitemap-plugin.php:
|
430 |
msgid "The sitemap file not found."
|
431 |
msgstr "Файл sitemap не найден."
|
432 |
|
433 |
-
#: google-sitemap-plugin.php:
|
434 |
msgid "Support"
|
435 |
msgstr "Тех.поддержка"
|
436 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-18 16:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-18 16:20+0300\n"
|
7 |
+
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:33
|
20 |
+
#: google-sitemap-plugin.php:344
|
21 |
msgid "Google Sitemap Settings"
|
22 |
msgstr "Настройки Google Sitemap"
|
23 |
|
24 |
+
#: google-sitemap-plugin.php:280
|
25 |
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
26 |
msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права."
|
27 |
|
28 |
+
#: google-sitemap-plugin.php:291
|
29 |
msgid "Settings saved."
|
30 |
msgstr "Настройки сохранены."
|
31 |
|
32 |
+
#: google-sitemap-plugin.php:296
|
33 |
msgid "Your Sitemap file is created in the site root directory."
|
34 |
msgstr "Файл Sitemap создан в корне основной директории."
|
35 |
|
36 |
+
#: google-sitemap-plugin.php:331
|
37 |
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
38 |
msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права."
|
39 |
|
40 |
+
#: google-sitemap-plugin.php:340
|
41 |
msgid "All plugin settings were restored."
|
42 |
msgstr "Настройки плагина были восстановлены."
|
43 |
|
44 |
+
#: google-sitemap-plugin.php:346
|
45 |
+
#: google-sitemap-plugin.php:894
|
46 |
+
#: google-sitemap-plugin.php:907
|
47 |
msgid "Settings"
|
48 |
msgstr "Настройки"
|
49 |
|
50 |
+
#: google-sitemap-plugin.php:347
|
51 |
msgid "Extra settings"
|
52 |
msgstr "Экстра настройки"
|
53 |
|
54 |
+
#: google-sitemap-plugin.php:348
|
55 |
+
#: google-sitemap-plugin.php:908
|
56 |
msgid "FAQ"
|
57 |
+
msgstr "FAQ"
|
58 |
|
59 |
+
#: google-sitemap-plugin.php:349
|
60 |
msgid "Go PRO"
|
61 |
msgstr "Перейти на PRO версию"
|
62 |
|
63 |
+
#: google-sitemap-plugin.php:355
|
64 |
msgid "Warning:"
|
65 |
msgstr "Внимание:"
|
66 |
|
67 |
+
#: google-sitemap-plugin.php:357
|
68 |
#, php-format
|
69 |
+
msgid "To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s."
|
70 |
+
msgstr "Чтобы иметь доступ к XML файлам подсайта, пожалуйста, добавьте следующее правило %s в ваш %s файл %s после строчки %s."
|
|
|
|
|
|
|
|
|
71 |
|
72 |
+
#: google-sitemap-plugin.php:367
|
73 |
msgid "Сheck Access"
|
74 |
msgstr "Проверить Доступ"
|
75 |
|
76 |
+
#: google-sitemap-plugin.php:383
|
77 |
msgid "Notice:"
|
78 |
msgstr "Внимание:"
|
79 |
|
80 |
+
#: google-sitemap-plugin.php:383
|
81 |
+
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
82 |
+
msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
|
|
|
|
|
|
|
|
|
83 |
|
84 |
+
#: google-sitemap-plugin.php:394
|
85 |
+
#: google-sitemap-plugin.php:396
|
86 |
msgid "The Sitemap file"
|
87 |
msgstr "Файл Sitemap"
|
88 |
|
89 |
+
#: google-sitemap-plugin.php:394
|
90 |
+
#: google-sitemap-plugin.php:396
|
91 |
+
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below."
|
92 |
+
msgstr "уже существует. Если вы хотите изменить его на новый, выберите соответствующее действие внизу."
|
|
|
|
|
|
|
93 |
|
94 |
+
#: google-sitemap-plugin.php:401
|
95 |
+
#: google-sitemap-plugin.php:403
|
96 |
msgid "Your Sitemap file"
|
97 |
msgstr "Ваш файл Sitemap"
|
98 |
|
99 |
+
#: google-sitemap-plugin.php:401
|
100 |
+
#: google-sitemap-plugin.php:403
|
101 |
msgid "is created in the site root directory."
|
102 |
msgstr "создана в корне основной директории."
|
103 |
|
104 |
+
#: google-sitemap-plugin.php:408
|
105 |
+
#: google-sitemap-plugin.php:410
|
106 |
+
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
107 |
+
msgstr "Если вы не хотите добавить файл sitemap автоматически в Google Webmaster Tools, Вы можете сделать это через"
|
|
|
|
|
|
|
108 |
|
109 |
+
#: google-sitemap-plugin.php:408
|
110 |
+
#: google-sitemap-plugin.php:410
|
111 |
msgid "this"
|
112 |
msgstr "эту"
|
113 |
|
114 |
+
#: google-sitemap-plugin.php:408
|
115 |
+
#: google-sitemap-plugin.php:410
|
116 |
+
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
117 |
+
msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
|
|
|
|
|
|
|
118 |
|
119 |
+
#: google-sitemap-plugin.php:415
|
120 |
msgid "I want to create a new sitemap file or update the existing one"
|
121 |
msgstr "Я хочу создать новый файл sitemap или обновить существующий"
|
122 |
|
123 |
+
#: google-sitemap-plugin.php:421
|
124 |
msgid "I want to add sitemap file path in robots.txt"
|
125 |
msgstr "Я хочу добавить путь файла sitemap в robots.txt"
|
126 |
|
127 |
+
#: google-sitemap-plugin.php:422
|
128 |
+
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
129 |
+
msgstr "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить sitemap в robots.txt"
|
|
|
|
|
|
|
|
|
130 |
|
131 |
+
#: google-sitemap-plugin.php:428
|
132 |
msgid "I want to add sitemap file path in"
|
133 |
msgstr "Я хочу добавить путь файла sitemap в"
|
134 |
|
135 |
+
#: google-sitemap-plugin.php:433
|
136 |
+
#: google-sitemap-plugin.php:585
|
137 |
+
msgid "Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:"
|
138 |
+
msgstr "Пожалуйста, выберите необходимые типы постов и таксономии, ссылки на которые будут добавлены в sitemap:"
|
|
|
|
|
|
|
139 |
|
140 |
+
#: google-sitemap-plugin.php:459
|
141 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
142 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
143 |
|
144 |
+
#: google-sitemap-plugin.php:462
|
145 |
msgid "Always"
|
146 |
msgstr "Всегда"
|
147 |
|
148 |
+
#: google-sitemap-plugin.php:463
|
149 |
msgid "Hourly"
|
150 |
msgstr "Ежечасно"
|
151 |
|
152 |
+
#: google-sitemap-plugin.php:464
|
153 |
msgid "Daily"
|
154 |
msgstr "Ежедневно"
|
155 |
|
156 |
+
#: google-sitemap-plugin.php:465
|
157 |
msgid "Weekly"
|
158 |
msgstr "Еженедельно"
|
159 |
|
160 |
+
#: google-sitemap-plugin.php:466
|
161 |
msgid "Monthly"
|
162 |
msgstr "Ежемесячно"
|
163 |
|
164 |
+
#: google-sitemap-plugin.php:467
|
165 |
msgid "Yearly"
|
166 |
msgstr "Ежегодно"
|
167 |
|
168 |
+
#: google-sitemap-plugin.php:468
|
169 |
msgid "Never"
|
170 |
msgstr "Никогда"
|
171 |
|
172 |
+
#: google-sitemap-plugin.php:470
|
173 |
+
msgid "This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page."
|
174 |
+
msgstr "Это значение используется в файле sitemap и предоставляет общую информацию для поисковых систем. Sitemap создается один раз и будет перезаписана вновь при создании или обновлении какой-либо страницы или поста."
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
|
176 |
+
#: google-sitemap-plugin.php:477
|
177 |
+
#: google-sitemap-plugin.php:610
|
178 |
+
msgid "Unlock premium options by upgrading to PRO version."
|
179 |
msgstr "Активируйте премиум опции обновившись до PRO версии."
|
180 |
|
181 |
+
#: google-sitemap-plugin.php:478
|
182 |
+
#: google-sitemap-plugin.php:611
|
183 |
msgid "Learn More"
|
184 |
msgstr "Подробнее"
|
185 |
|
186 |
+
#: google-sitemap-plugin.php:481
|
187 |
+
#: google-sitemap-plugin.php:614
|
188 |
msgid "Go"
|
189 |
msgstr "Перейти на"
|
190 |
|
191 |
+
#: google-sitemap-plugin.php:490
|
192 |
+
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
193 |
+
msgstr "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap в Google аккаунт автоматически."
|
|
|
|
|
|
|
|
|
194 |
|
195 |
+
#: google-sitemap-plugin.php:495
|
196 |
msgid "Remote work with Google Webmaster Tools"
|
197 |
msgstr "Удаленная работа с Google Webmaster Tools"
|
198 |
|
199 |
+
#: google-sitemap-plugin.php:519
|
200 |
msgid "Log out from Google Webmaster Tools"
|
201 |
msgstr "Выйти из Google Webmaster Tools"
|
202 |
|
203 |
+
#: google-sitemap-plugin.php:521
|
204 |
msgid "I want to add this site to Google Webmaster Tools"
|
205 |
msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
|
206 |
|
207 |
+
#: google-sitemap-plugin.php:522
|
208 |
msgid "I want to delete this site from Google Webmaster Tools"
|
209 |
msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
|
210 |
|
211 |
+
#: google-sitemap-plugin.php:523
|
212 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
213 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
214 |
|
215 |
+
#: google-sitemap-plugin.php:529
|
216 |
+
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
217 |
+
msgstr "В случае ошибки при добавлении sitemap в Google автоматически с помощью этого плагина, Вы можете сделать это вручную"
|
218 |
+
|
219 |
+
#: google-sitemap-plugin.php:530
|
220 |
+
#: google-sitemap-plugin.php:689
|
221 |
+
#: google-sitemap-plugin.php:712
|
222 |
+
#: google-sitemap-plugin.php:769
|
223 |
+
#: google-sitemap-plugin.php:796
|
224 |
+
#: google-sitemap-plugin.php:816
|
225 |
+
#: google-sitemap-plugin.php:835
|
|
|
226 |
msgid "View the Instruction"
|
227 |
msgstr "Просмотреть Инструкцию"
|
228 |
|
229 |
+
#: google-sitemap-plugin.php:555
|
230 |
+
msgid "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
231 |
+
msgstr "Пожалуйста, авторизуйтесь используя ваш Google аккаунт, чтобы иметь возможность добавлять или удалять сайты и файл sitemap автоматически или получать информацию из Google Webmaster Tools."
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
|
233 |
+
#: google-sitemap-plugin.php:556
|
234 |
msgid "Get Authorization Code"
|
235 |
msgstr "Получить код авторизации"
|
236 |
|
237 |
+
#: google-sitemap-plugin.php:559
|
238 |
msgid "Authorize"
|
239 |
msgstr "Авторизироваться"
|
240 |
|
241 |
+
#: google-sitemap-plugin.php:562
|
242 |
msgid "Invalid authorization code. Please, try again."
|
243 |
msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз."
|
244 |
|
245 |
+
#: google-sitemap-plugin.php:571
|
246 |
+
#: google-sitemap-plugin.php:603
|
247 |
msgid "Save Changes"
|
248 |
msgstr "Сохранить изменения"
|
249 |
|
250 |
+
#: google-sitemap-plugin.php:592
|
251 |
msgid "Show URL for pages"
|
252 |
msgstr "Отображать URL для страниц"
|
253 |
|
254 |
+
#: google-sitemap-plugin.php:598
|
255 |
msgid "Example of site pages' tree"
|
256 |
msgstr "Пример дерева страниц сайта"
|
257 |
|
258 |
+
#: google-sitemap-plugin.php:663
|
259 |
#, php-format
|
260 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
261 |
msgstr "Я хочу получить информацию об сайте %s из Google Webmaster Tools"
|
262 |
|
263 |
+
#: google-sitemap-plugin.php:672
|
264 |
+
#: google-sitemap-plugin.php:742
|
265 |
msgid "This site is not added to the Google Webmaster Tools."
|
266 |
msgstr "Этот сайт не добавлен в Google Webmaster Tools."
|
267 |
|
268 |
+
#: google-sitemap-plugin.php:676
|
269 |
msgid "This site is added to the Google Webmaster Tools."
|
270 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
271 |
|
272 |
+
#: google-sitemap-plugin.php:677
|
273 |
msgid "Site URL:"
|
274 |
msgstr "URL сайта:"
|
275 |
|
276 |
+
#: google-sitemap-plugin.php:678
|
277 |
msgid "Site verification:"
|
278 |
msgstr "Верификация сайта:"
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:678
|
281 |
msgid "verified"
|
282 |
msgstr "верифицрован"
|
283 |
|
284 |
+
#: google-sitemap-plugin.php:678
|
285 |
msgid "not verified"
|
286 |
msgstr "не верифицирован"
|
287 |
|
288 |
+
#: google-sitemap-plugin.php:687
|
289 |
+
#: google-sitemap-plugin.php:814
|
290 |
+
msgid "An unexpected error occurred when verifying site in the Google Webmaster Tools."
|
|
|
291 |
msgstr "Ошибка при верификации сайта в Google Webmaster Tools."
|
292 |
|
293 |
+
#: google-sitemap-plugin.php:689
|
294 |
+
#: google-sitemap-plugin.php:796
|
295 |
+
#: google-sitemap-plugin.php:816
|
296 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
297 |
+
msgstr "Сайт не может быть верифицрован. Пожалуйста, верифицируйте сайт вручную"
|
|
|
298 |
|
299 |
+
#: google-sitemap-plugin.php:702
|
300 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
301 |
msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools."
|
302 |
|
303 |
+
#: google-sitemap-plugin.php:705
|
304 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
305 |
msgstr "Этот файл sitemap добавлен в Google Webmaster Tools."
|
306 |
|
307 |
+
#: google-sitemap-plugin.php:707
|
308 |
+
msgid "The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings."
|
309 |
+
msgstr "Этот файл sitemap добавлен в Google Webmaster Tools, но при добавлении возникли ошибки."
|
|
|
|
|
|
|
|
|
310 |
|
311 |
+
#: google-sitemap-plugin.php:707
|
312 |
msgid "Please, see them in the Google Webmaster Tools."
|
313 |
msgstr "Посмотреть ошибки в Google Webmaster Tools."
|
314 |
|
315 |
+
#: google-sitemap-plugin.php:710
|
316 |
msgid "Sitemap URL:"
|
317 |
msgstr "URL Sitemap:"
|
318 |
|
319 |
+
#: google-sitemap-plugin.php:712
|
320 |
+
msgid "When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually"
|
321 |
+
msgstr "При проверке обнаружена ошибка файла sitemap. Пожалуйста, проверьте файл вручную"
|
|
|
|
|
|
|
|
|
322 |
|
323 |
+
#: google-sitemap-plugin.php:724
|
324 |
#, php-format
|
325 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
326 |
msgstr "Я хочу удалить сайт %s из Google Webmaster Tools"
|
327 |
|
328 |
+
#: google-sitemap-plugin.php:737
|
329 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
330 |
msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
|
331 |
|
332 |
+
#: google-sitemap-plugin.php:756
|
333 |
#, php-format
|
334 |
msgid "I want to add site %s in Google Webmaster Tools"
|
335 |
msgstr "Я хочу добавить сайт %s в Google Webmaster Tools"
|
336 |
|
337 |
+
#: google-sitemap-plugin.php:761
|
338 |
msgid "The site is added to the Google Webmaster Tools."
|
339 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
340 |
|
341 |
+
#: google-sitemap-plugin.php:767
|
342 |
+
msgid "When you add a site in the Google Webmaster Tools unexpected error occurred."
|
|
|
343 |
msgstr "Ошибка при добавлении сайта в Google Webmaster Tools."
|
344 |
|
345 |
+
#: google-sitemap-plugin.php:769
|
346 |
msgid "The site couldn't be added. Please, add the site manually"
|
347 |
msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
|
348 |
|
349 |
+
#: google-sitemap-plugin.php:785
|
350 |
msgid "Verification code has been successfully received and added to the site."
|
351 |
msgstr "Код верификации получен и добавлен на сайт."
|
352 |
|
353 |
+
#: google-sitemap-plugin.php:787
|
354 |
+
msgid "Verification code has been successfully received but has not been added to the site."
|
|
|
|
|
355 |
msgstr "Код верификации получен, но не добавлен на сайт."
|
356 |
|
357 |
+
#: google-sitemap-plugin.php:794
|
358 |
+
msgid "An error has occurred when receiving the verification code site in the Google Webmaster."
|
|
|
|
|
359 |
msgstr "Ошибка Google Webmaster при получении кода верификации."
|
360 |
|
361 |
+
#: google-sitemap-plugin.php:808
|
362 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
363 |
msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools."
|
364 |
|
365 |
+
#: google-sitemap-plugin.php:827
|
366 |
+
msgid "The sitemap file has been successfully added to the Google Webmaster Tools."
|
|
|
367 |
msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools."
|
368 |
|
369 |
+
#: google-sitemap-plugin.php:833
|
370 |
+
msgid "When you add a sitemap file in the Google Webmaster Tools unexpected error occurred."
|
|
|
|
|
371 |
msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools."
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:835
|
374 |
+
msgid "The sitemap file couldn't be added. Please, add the sitemap file manually"
|
|
|
375 |
msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
|
376 |
|
377 |
+
#: google-sitemap-plugin.php:838
|
378 |
#, php-format
|
379 |
msgid "Error 404. The sitemap file %s not found."
|
380 |
msgstr "Ошибка 404. Файл sitemap %s не найден."
|
381 |
|
382 |
+
#: google-sitemap-plugin.php:841
|
383 |
msgid "The sitemap file not found."
|
384 |
msgstr "Файл sitemap не найден."
|
385 |
|
386 |
+
#: google-sitemap-plugin.php:909
|
387 |
msgid "Support"
|
388 |
msgstr "Тех.поддержка"
|
389 |
|
languages/sitemap-uk.mo
CHANGED
Binary file
|
languages/sitemap-uk.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,418 +16,374 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:33
|
|
|
20 |
msgid "Google Sitemap Settings"
|
21 |
msgstr "Налаштування Google Sitemap"
|
22 |
|
23 |
-
#: google-sitemap-plugin.php:
|
24 |
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
25 |
msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права."
|
26 |
|
27 |
-
#: google-sitemap-plugin.php:
|
28 |
msgid "Settings saved."
|
29 |
msgstr "Налаштування збережено."
|
30 |
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
msgid "Your Sitemap file is created in the site root directory."
|
33 |
msgstr "Файл Sitemap створено у кореневій директорії сайту."
|
34 |
|
35 |
-
#: google-sitemap-plugin.php:
|
36 |
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
37 |
msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права."
|
38 |
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
msgid "All plugin settings were restored."
|
41 |
msgstr "Налаштування плагіну були відновлені."
|
42 |
|
43 |
-
#: google-sitemap-plugin.php:
|
44 |
-
#: google-sitemap-plugin.php:
|
|
|
45 |
msgid "Settings"
|
46 |
msgstr "Налаштування"
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
msgid "Extra settings"
|
50 |
msgstr "Додаткові налаштування"
|
51 |
|
52 |
-
#: google-sitemap-plugin.php:
|
|
|
53 |
msgid "FAQ"
|
54 |
-
msgstr "
|
55 |
|
56 |
-
#: google-sitemap-plugin.php:
|
57 |
msgid "Go PRO"
|
58 |
msgstr "Перейти на PRO"
|
59 |
|
60 |
-
#: google-sitemap-plugin.php:
|
61 |
msgid "Warning:"
|
62 |
msgstr "Увага:"
|
63 |
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
#, php-format
|
66 |
-
msgid ""
|
67 |
-
"
|
68 |
-
"your %s file in %s after line %s."
|
69 |
-
msgstr ""
|
70 |
-
"Щоб мати доступ до XML файлів підсайту, будь ласка, додайте наступне правило "
|
71 |
-
"%s у ваш %s файл %s після строчки %s."
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
msgid "Сheck Access"
|
75 |
msgstr "Перевірити Доступ"
|
76 |
|
77 |
-
#: google-sitemap-plugin.php:
|
78 |
msgid "Notice:"
|
79 |
msgstr "Зауважте:"
|
80 |
|
81 |
-
#: google-sitemap-plugin.php:
|
82 |
-
msgid ""
|
83 |
-
"
|
84 |
-
"forget to click the 'Save Changes' button."
|
85 |
-
msgstr ""
|
86 |
-
"Налаштування плагіну змінено. Щоб зберегти їх, будь ласка, не забудьте "
|
87 |
-
"клікнути \"Зберегти зміни\"."
|
88 |
|
89 |
-
#: google-sitemap-plugin.php:
|
|
|
90 |
msgid "The Sitemap file"
|
91 |
msgstr "Файл Sitemap"
|
92 |
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
-
|
95 |
-
"already exists. If you would like to replace it with a new one, please "
|
96 |
-
"
|
97 |
-
msgstr ""
|
98 |
-
"вже існує. Якщо ви хочете замінити його на новий, виберіть потрібну дію "
|
99 |
-
"внизу."
|
100 |
|
101 |
-
#: google-sitemap-plugin.php:
|
|
|
102 |
msgid "Your Sitemap file"
|
103 |
msgstr "Ваш файл Sitemap"
|
104 |
|
105 |
-
#: google-sitemap-plugin.php:
|
|
|
106 |
msgid "is created in the site root directory."
|
107 |
msgstr "створений у кореневій директорії сайту."
|
108 |
|
109 |
-
#: google-sitemap-plugin.php:
|
110 |
-
|
111 |
-
"If you do not want a sitemap file to be added to Google Webmaster Tools "
|
112 |
-
"
|
113 |
-
msgstr ""
|
114 |
-
"Якщо ви не хочете додати файл sitemap до Google Webmaster Tools автоматично, "
|
115 |
-
"ви можете зробити це через"
|
116 |
|
117 |
-
#: google-sitemap-plugin.php:
|
|
|
118 |
msgid "this"
|
119 |
msgstr "це"
|
120 |
|
121 |
-
#: google-sitemap-plugin.php:
|
122 |
-
|
123 |
-
"link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the "
|
124 |
-
"
|
125 |
-
msgstr ""
|
126 |
-
"посилання. Авторизуйтеся, виберіть сайт, виберіть 'Sitemaps' та заповніть "
|
127 |
-
"потрібне поле"
|
128 |
|
129 |
-
#: google-sitemap-plugin.php:
|
130 |
msgid "I want to create a new sitemap file or update the existing one"
|
131 |
msgstr "Я хочу створити новий файл sitemap або оновити існуючий"
|
132 |
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
msgid "I want to add sitemap file path in robots.txt"
|
135 |
msgstr "Я хочу додати шлях до файлу sitemap у robots.txt"
|
136 |
|
137 |
-
#: google-sitemap-plugin.php:
|
138 |
-
msgid ""
|
139 |
-
"
|
140 |
-
"to robots.txt"
|
141 |
-
msgstr ""
|
142 |
-
"Оскільки ви використовуєте мультисайтинг, плагін не може додати файл sitemap "
|
143 |
-
"до robots.txt"
|
144 |
|
145 |
-
#: google-sitemap-plugin.php:
|
146 |
msgid "I want to add sitemap file path in"
|
147 |
msgstr "Я хочу додати шлях файлу sitemap у"
|
148 |
|
149 |
-
#: google-sitemap-plugin.php:
|
150 |
-
|
151 |
-
"Please choose the necessary post types and taxonomies the links to which are "
|
152 |
-
"
|
153 |
-
msgstr ""
|
154 |
-
"Будь ласка виберіть необхідні типи постів і таксономії, посилання на які "
|
155 |
-
"мають бути додані до файлу sitemap:"
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
159 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
msgid "Always"
|
163 |
msgstr "завжди"
|
164 |
|
165 |
-
#: google-sitemap-plugin.php:
|
166 |
msgid "Hourly"
|
167 |
msgstr "щогодини"
|
168 |
|
169 |
-
#: google-sitemap-plugin.php:
|
170 |
msgid "Daily"
|
171 |
msgstr "щодня"
|
172 |
|
173 |
-
#: google-sitemap-plugin.php:
|
174 |
msgid "Weekly"
|
175 |
msgstr "щотижня"
|
176 |
|
177 |
-
#: google-sitemap-plugin.php:
|
178 |
msgid "Monthly"
|
179 |
msgstr "щомісяця"
|
180 |
|
181 |
-
#: google-sitemap-plugin.php:
|
182 |
msgid "Yearly"
|
183 |
msgstr "щороку"
|
184 |
|
185 |
-
#: google-sitemap-plugin.php:
|
186 |
msgid "Never"
|
187 |
msgstr "ніколи"
|
188 |
|
189 |
-
#: google-sitemap-plugin.php:
|
190 |
-
msgid ""
|
191 |
-
"
|
192 |
-
"search engines. The sitemap itself is generated once and will be re-"
|
193 |
-
"generated when you create or update any post or page."
|
194 |
-
msgstr ""
|
195 |
-
"Це значення використовується у файлі sitemap та надає загальну інформацію "
|
196 |
-
"для пошукових систем. Сам файл генерується один раз і буде регенеруватись "
|
197 |
-
"при створенні або оновленні будь-якого посту чи сторінки."
|
198 |
|
199 |
-
#: google-sitemap-plugin.php:
|
200 |
-
|
|
|
201 |
msgstr "Відкрити додаткові опції, перейшовши на PRO версію."
|
202 |
|
203 |
-
#: google-sitemap-plugin.php:
|
|
|
204 |
msgid "Learn More"
|
205 |
msgstr "Дізнатись більше"
|
206 |
|
207 |
-
#: google-sitemap-plugin.php:
|
|
|
208 |
msgid "Go"
|
209 |
msgstr "Перейти"
|
210 |
|
211 |
-
#: google-sitemap-plugin.php:
|
212 |
-
msgid ""
|
213 |
-
"
|
214 |
-
"automatically."
|
215 |
-
msgstr ""
|
216 |
-
"Цей хостинг не підтримує сURL, тому ви не можете автоматично додати файл "
|
217 |
-
"sitemap."
|
218 |
|
219 |
-
#: google-sitemap-plugin.php:
|
220 |
msgid "Remote work with Google Webmaster Tools"
|
221 |
msgstr "Віддалена робота з Google Webmaster Tools"
|
222 |
|
223 |
-
#: google-sitemap-plugin.php:
|
224 |
msgid "Log out from Google Webmaster Tools"
|
225 |
msgstr "Вийти з Google Webmaster Tools"
|
226 |
|
227 |
-
#: google-sitemap-plugin.php:
|
228 |
msgid "I want to add this site to Google Webmaster Tools"
|
229 |
msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
|
230 |
|
231 |
-
#: google-sitemap-plugin.php:
|
232 |
msgid "I want to delete this site from Google Webmaster Tools"
|
233 |
msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
|
234 |
|
235 |
-
#: google-sitemap-plugin.php:
|
236 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
237 |
msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
|
238 |
|
239 |
-
#: google-sitemap-plugin.php:
|
240 |
-
msgid ""
|
241 |
-
"
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
#: google-sitemap-plugin.php:
|
248 |
-
#: google-sitemap-plugin.php:
|
249 |
-
#: google-sitemap-plugin.php:
|
250 |
-
#: google-sitemap-plugin.php:827
|
251 |
msgid "View the Instruction"
|
252 |
msgstr "Переглянути інструкцію"
|
253 |
|
254 |
-
#: google-sitemap-plugin.php:
|
255 |
-
msgid ""
|
256 |
-
"
|
257 |
-
"and a sitemap file automatically or get information about this site in "
|
258 |
-
"Google Webmaster Tools."
|
259 |
-
msgstr ""
|
260 |
-
"Будь ласка, авторизуйтесь використовуючи ваш Google акаунт, щоб мати "
|
261 |
-
"можливість додавати або видаляти сайти та файл sitemap у вашому акаунті "
|
262 |
-
"автоматично або отримувати інформацію про цей сайт з Google Webmaster Tools."
|
263 |
|
264 |
-
#: google-sitemap-plugin.php:
|
265 |
msgid "Get Authorization Code"
|
266 |
msgstr "Отримати Код Авторизації"
|
267 |
|
268 |
-
#: google-sitemap-plugin.php:
|
269 |
msgid "Authorize"
|
270 |
msgstr "Авторизуватись"
|
271 |
|
272 |
-
#: google-sitemap-plugin.php:
|
273 |
msgid "Invalid authorization code. Please, try again."
|
274 |
msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз."
|
275 |
|
276 |
-
#: google-sitemap-plugin.php:
|
|
|
277 |
msgid "Save Changes"
|
278 |
msgstr "Зберегти зміни"
|
279 |
|
280 |
-
#: google-sitemap-plugin.php:
|
281 |
msgid "Show URL for pages"
|
282 |
msgstr "Показати посилання для сторінок"
|
283 |
|
284 |
-
#: google-sitemap-plugin.php:
|
285 |
msgid "Example of site pages' tree"
|
286 |
msgstr "Приклад дерева сторінок сайту"
|
287 |
|
288 |
-
#: google-sitemap-plugin.php:
|
289 |
#, php-format
|
290 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
291 |
msgstr "Я хочу отримати інформацію про сайт %s в Google Webmaster Tools"
|
292 |
|
293 |
-
#: google-sitemap-plugin.php:
|
|
|
294 |
msgid "This site is not added to the Google Webmaster Tools."
|
295 |
msgstr "Даний сайт не додано до Google Webmaster Tools."
|
296 |
|
297 |
-
#: google-sitemap-plugin.php:
|
298 |
msgid "This site is added to the Google Webmaster Tools."
|
299 |
msgstr "Цей сайт додано до Google Webmaster Tools."
|
300 |
|
301 |
-
#: google-sitemap-plugin.php:
|
302 |
msgid "Site URL:"
|
303 |
msgstr "URL сайту:"
|
304 |
|
305 |
-
#: google-sitemap-plugin.php:
|
306 |
msgid "Site verification:"
|
307 |
msgstr "Верифікація сайту:"
|
308 |
|
309 |
-
#: google-sitemap-plugin.php:
|
310 |
msgid "verified"
|
311 |
msgstr "верифіковано"
|
312 |
|
313 |
-
#: google-sitemap-plugin.php:
|
314 |
msgid "not verified"
|
315 |
msgstr "не верифіковано"
|
316 |
|
317 |
-
#: google-sitemap-plugin.php:
|
318 |
-
|
319 |
-
"An unexpected error occurred when verifying site in the Google Webmaster "
|
320 |
-
"Tools."
|
321 |
msgstr "Помилка при перевірці сайту в Google Webmaster Tools."
|
322 |
|
323 |
-
#: google-sitemap-plugin.php:
|
324 |
-
#: google-sitemap-plugin.php:
|
|
|
325 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
326 |
msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
|
327 |
|
328 |
-
#: google-sitemap-plugin.php:
|
329 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
330 |
msgstr "Файл sitemap не додано до Google Webmaster Tools."
|
331 |
|
332 |
-
#: google-sitemap-plugin.php:
|
333 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
334 |
msgstr "Файл sitemap додано до Google Webmaster Tools."
|
335 |
|
336 |
-
#: google-sitemap-plugin.php:
|
337 |
-
msgid ""
|
338 |
-
"
|
339 |
-
"or warnings."
|
340 |
-
msgstr ""
|
341 |
-
"Файл sitemap додано до акаунту Google Webmaster Tools, але під час додавання "
|
342 |
-
"виникли помилки."
|
343 |
|
344 |
-
#: google-sitemap-plugin.php:
|
345 |
msgid "Please, see them in the Google Webmaster Tools."
|
346 |
msgstr "Перегляньте їх в Google Webmaster Tools."
|
347 |
|
348 |
-
#: google-sitemap-plugin.php:
|
349 |
msgid "Sitemap URL:"
|
350 |
msgstr "URL Sitemap:"
|
351 |
|
352 |
-
#: google-sitemap-plugin.php:
|
353 |
-
msgid ""
|
354 |
-
"When checking the sitemap file an unexpected error occurred. Please, check "
|
355 |
-
"the sitemap file manually"
|
356 |
msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
|
357 |
|
358 |
-
#: google-sitemap-plugin.php:
|
359 |
#, php-format
|
360 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
361 |
msgstr "Я хочу видалити сайт %s з Google Webmaster Tools"
|
362 |
|
363 |
-
#: google-sitemap-plugin.php:
|
364 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
365 |
msgstr "Даний сайт було видалено з Google Webmaster Tools"
|
366 |
|
367 |
-
#: google-sitemap-plugin.php:
|
368 |
#, php-format
|
369 |
msgid "I want to add site %s in Google Webmaster Tools"
|
370 |
msgstr "Я хочу додати сайт %s до Google Webmaster Tools"
|
371 |
|
372 |
-
#: google-sitemap-plugin.php:
|
373 |
msgid "The site is added to the Google Webmaster Tools."
|
374 |
msgstr "Сайт додано до Google Webmaster Tools."
|
375 |
|
376 |
-
#: google-sitemap-plugin.php:
|
377 |
-
msgid ""
|
378 |
-
"When you add a site in the Google Webmaster Tools unexpected error occurred."
|
379 |
msgstr "Помилка при додаванні сайту до Google Webmaster Tools."
|
380 |
|
381 |
-
#: google-sitemap-plugin.php:
|
382 |
msgid "The site couldn't be added. Please, add the site manually"
|
383 |
msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
|
384 |
|
385 |
-
#: google-sitemap-plugin.php:
|
386 |
msgid "Verification code has been successfully received and added to the site."
|
387 |
msgstr "Код верифікації успішно отримано та додано на сайт."
|
388 |
|
389 |
-
#: google-sitemap-plugin.php:
|
390 |
-
msgid ""
|
391 |
-
"Verification code has been successfully received but has not been added to "
|
392 |
-
"the site."
|
393 |
msgstr "Код верифікації успішно отримано, але не додано на сайт."
|
394 |
|
395 |
-
#: google-sitemap-plugin.php:
|
396 |
-
msgid ""
|
397 |
-
"An error has occurred when receiving the verification code site in the "
|
398 |
-
"Google Webmaster."
|
399 |
msgstr "Помилка при отриманні верифікаційного коду Google Webmaster."
|
400 |
|
401 |
-
#: google-sitemap-plugin.php:
|
402 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
403 |
msgstr "Сайт успішно перевірено в Google Webmaster Tools."
|
404 |
|
405 |
-
#: google-sitemap-plugin.php:
|
406 |
-
msgid ""
|
407 |
-
"The sitemap file has been successfully added to the Google Webmaster Tools."
|
408 |
msgstr "Файл sitemap успішно додано до Google Webmaster Tools."
|
409 |
|
410 |
-
#: google-sitemap-plugin.php:
|
411 |
-
msgid ""
|
412 |
-
"When you add a sitemap file in the Google Webmaster Tools unexpected error "
|
413 |
-
"occurred."
|
414 |
msgstr "Помилка при додаванні файлу sitemap до Google Webmaster Tools."
|
415 |
|
416 |
-
#: google-sitemap-plugin.php:
|
417 |
-
msgid ""
|
418 |
-
"The sitemap file couldn't be added. Please, add the sitemap file manually"
|
419 |
msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
|
420 |
|
421 |
-
#: google-sitemap-plugin.php:
|
422 |
#, php-format
|
423 |
msgid "Error 404. The sitemap file %s not found."
|
424 |
msgstr "Помилка 404. Файл sitemap %s не знайдено."
|
425 |
|
426 |
-
#: google-sitemap-plugin.php:
|
427 |
msgid "The sitemap file not found."
|
428 |
msgstr "Файл sitemap не знайдено."
|
429 |
|
430 |
-
#: google-sitemap-plugin.php:
|
431 |
msgid "Support"
|
432 |
msgstr "Підтримка"
|
433 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-18 10:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-08-18 16:20+0300\n"
|
7 |
+
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:33
|
20 |
+
#: google-sitemap-plugin.php:344
|
21 |
msgid "Google Sitemap Settings"
|
22 |
msgstr "Налаштування Google Sitemap"
|
23 |
|
24 |
+
#: google-sitemap-plugin.php:280
|
25 |
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
26 |
msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права."
|
27 |
|
28 |
+
#: google-sitemap-plugin.php:291
|
29 |
msgid "Settings saved."
|
30 |
msgstr "Налаштування збережено."
|
31 |
|
32 |
+
#: google-sitemap-plugin.php:296
|
33 |
msgid "Your Sitemap file is created in the site root directory."
|
34 |
msgstr "Файл Sitemap створено у кореневій директорії сайту."
|
35 |
|
36 |
+
#: google-sitemap-plugin.php:331
|
37 |
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
38 |
msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права."
|
39 |
|
40 |
+
#: google-sitemap-plugin.php:340
|
41 |
msgid "All plugin settings were restored."
|
42 |
msgstr "Налаштування плагіну були відновлені."
|
43 |
|
44 |
+
#: google-sitemap-plugin.php:346
|
45 |
+
#: google-sitemap-plugin.php:894
|
46 |
+
#: google-sitemap-plugin.php:907
|
47 |
msgid "Settings"
|
48 |
msgstr "Налаштування"
|
49 |
|
50 |
+
#: google-sitemap-plugin.php:347
|
51 |
msgid "Extra settings"
|
52 |
msgstr "Додаткові налаштування"
|
53 |
|
54 |
+
#: google-sitemap-plugin.php:348
|
55 |
+
#: google-sitemap-plugin.php:908
|
56 |
msgid "FAQ"
|
57 |
+
msgstr "FAQ"
|
58 |
|
59 |
+
#: google-sitemap-plugin.php:349
|
60 |
msgid "Go PRO"
|
61 |
msgstr "Перейти на PRO"
|
62 |
|
63 |
+
#: google-sitemap-plugin.php:355
|
64 |
msgid "Warning:"
|
65 |
msgstr "Увага:"
|
66 |
|
67 |
+
#: google-sitemap-plugin.php:357
|
68 |
#, php-format
|
69 |
+
msgid "To have an access to subsites XML files, please add the following rule %s to your %s file in %s after line %s."
|
70 |
+
msgstr "Щоб мати доступ до XML файлів підсайту, будь ласка, додайте наступне правило %s у ваш %s файл %s після строчки %s."
|
|
|
|
|
|
|
|
|
71 |
|
72 |
+
#: google-sitemap-plugin.php:367
|
73 |
msgid "Сheck Access"
|
74 |
msgstr "Перевірити Доступ"
|
75 |
|
76 |
+
#: google-sitemap-plugin.php:383
|
77 |
msgid "Notice:"
|
78 |
msgstr "Зауважте:"
|
79 |
|
80 |
+
#: google-sitemap-plugin.php:383
|
81 |
+
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
82 |
+
msgstr "Налаштування плагіну змінено. Щоб зберегти їх, будь ласка, не забудьте клікнути \"Зберегти зміни\"."
|
|
|
|
|
|
|
|
|
83 |
|
84 |
+
#: google-sitemap-plugin.php:394
|
85 |
+
#: google-sitemap-plugin.php:396
|
86 |
msgid "The Sitemap file"
|
87 |
msgstr "Файл Sitemap"
|
88 |
|
89 |
+
#: google-sitemap-plugin.php:394
|
90 |
+
#: google-sitemap-plugin.php:396
|
91 |
+
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below."
|
92 |
+
msgstr "вже існує. Якщо ви хочете замінити його на новий, виберіть потрібну дію внизу."
|
|
|
|
|
|
|
93 |
|
94 |
+
#: google-sitemap-plugin.php:401
|
95 |
+
#: google-sitemap-plugin.php:403
|
96 |
msgid "Your Sitemap file"
|
97 |
msgstr "Ваш файл Sitemap"
|
98 |
|
99 |
+
#: google-sitemap-plugin.php:401
|
100 |
+
#: google-sitemap-plugin.php:403
|
101 |
msgid "is created in the site root directory."
|
102 |
msgstr "створений у кореневій директорії сайту."
|
103 |
|
104 |
+
#: google-sitemap-plugin.php:408
|
105 |
+
#: google-sitemap-plugin.php:410
|
106 |
+
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
107 |
+
msgstr "Якщо ви не хочете додати файл sitemap до Google Webmaster Tools автоматично, ви можете зробити це через"
|
|
|
|
|
|
|
108 |
|
109 |
+
#: google-sitemap-plugin.php:408
|
110 |
+
#: google-sitemap-plugin.php:410
|
111 |
msgid "this"
|
112 |
msgstr "це"
|
113 |
|
114 |
+
#: google-sitemap-plugin.php:408
|
115 |
+
#: google-sitemap-plugin.php:410
|
116 |
+
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
117 |
+
msgstr "посилання. Авторизуйтеся, виберіть сайт, виберіть 'Sitemaps' та заповніть потрібне поле"
|
|
|
|
|
|
|
118 |
|
119 |
+
#: google-sitemap-plugin.php:415
|
120 |
msgid "I want to create a new sitemap file or update the existing one"
|
121 |
msgstr "Я хочу створити новий файл sitemap або оновити існуючий"
|
122 |
|
123 |
+
#: google-sitemap-plugin.php:421
|
124 |
msgid "I want to add sitemap file path in robots.txt"
|
125 |
msgstr "Я хочу додати шлях до файлу sitemap у robots.txt"
|
126 |
|
127 |
+
#: google-sitemap-plugin.php:422
|
128 |
+
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
129 |
+
msgstr "Оскільки ви використовуєте мультисайтинг, плагін не може додати файл sitemap до robots.txt"
|
|
|
|
|
|
|
|
|
130 |
|
131 |
+
#: google-sitemap-plugin.php:428
|
132 |
msgid "I want to add sitemap file path in"
|
133 |
msgstr "Я хочу додати шлях файлу sitemap у"
|
134 |
|
135 |
+
#: google-sitemap-plugin.php:433
|
136 |
+
#: google-sitemap-plugin.php:585
|
137 |
+
msgid "Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:"
|
138 |
+
msgstr "Будь ласка виберіть необхідні типи постів і таксономії, посилання на які мають бути додані до файлу sitemap:"
|
|
|
|
|
|
|
139 |
|
140 |
+
#: google-sitemap-plugin.php:459
|
141 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
142 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
143 |
|
144 |
+
#: google-sitemap-plugin.php:462
|
145 |
msgid "Always"
|
146 |
msgstr "завжди"
|
147 |
|
148 |
+
#: google-sitemap-plugin.php:463
|
149 |
msgid "Hourly"
|
150 |
msgstr "щогодини"
|
151 |
|
152 |
+
#: google-sitemap-plugin.php:464
|
153 |
msgid "Daily"
|
154 |
msgstr "щодня"
|
155 |
|
156 |
+
#: google-sitemap-plugin.php:465
|
157 |
msgid "Weekly"
|
158 |
msgstr "щотижня"
|
159 |
|
160 |
+
#: google-sitemap-plugin.php:466
|
161 |
msgid "Monthly"
|
162 |
msgstr "щомісяця"
|
163 |
|
164 |
+
#: google-sitemap-plugin.php:467
|
165 |
msgid "Yearly"
|
166 |
msgstr "щороку"
|
167 |
|
168 |
+
#: google-sitemap-plugin.php:468
|
169 |
msgid "Never"
|
170 |
msgstr "ніколи"
|
171 |
|
172 |
+
#: google-sitemap-plugin.php:470
|
173 |
+
msgid "This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page."
|
174 |
+
msgstr "Це значення використовується у файлі sitemap та надає загальну інформацію для пошукових систем. Сам файл генерується один раз і буде регенеруватись при створенні або оновленні будь-якого посту чи сторінки."
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
|
176 |
+
#: google-sitemap-plugin.php:477
|
177 |
+
#: google-sitemap-plugin.php:610
|
178 |
+
msgid "Unlock premium options by upgrading to PRO version."
|
179 |
msgstr "Відкрити додаткові опції, перейшовши на PRO версію."
|
180 |
|
181 |
+
#: google-sitemap-plugin.php:478
|
182 |
+
#: google-sitemap-plugin.php:611
|
183 |
msgid "Learn More"
|
184 |
msgstr "Дізнатись більше"
|
185 |
|
186 |
+
#: google-sitemap-plugin.php:481
|
187 |
+
#: google-sitemap-plugin.php:614
|
188 |
msgid "Go"
|
189 |
msgstr "Перейти"
|
190 |
|
191 |
+
#: google-sitemap-plugin.php:490
|
192 |
+
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
193 |
+
msgstr "Цей хостинг не підтримує сURL, тому ви не можете автоматично додати файл sitemap."
|
|
|
|
|
|
|
|
|
194 |
|
195 |
+
#: google-sitemap-plugin.php:495
|
196 |
msgid "Remote work with Google Webmaster Tools"
|
197 |
msgstr "Віддалена робота з Google Webmaster Tools"
|
198 |
|
199 |
+
#: google-sitemap-plugin.php:519
|
200 |
msgid "Log out from Google Webmaster Tools"
|
201 |
msgstr "Вийти з Google Webmaster Tools"
|
202 |
|
203 |
+
#: google-sitemap-plugin.php:521
|
204 |
msgid "I want to add this site to Google Webmaster Tools"
|
205 |
msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
|
206 |
|
207 |
+
#: google-sitemap-plugin.php:522
|
208 |
msgid "I want to delete this site from Google Webmaster Tools"
|
209 |
msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
|
210 |
|
211 |
+
#: google-sitemap-plugin.php:523
|
212 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
213 |
msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
|
214 |
|
215 |
+
#: google-sitemap-plugin.php:529
|
216 |
+
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
217 |
+
msgstr "Якщо ви не зможете автоматично додати sitemap файл в Google за допомогою цього плагіну, ви завжди зможете зробити це вручну"
|
218 |
+
|
219 |
+
#: google-sitemap-plugin.php:530
|
220 |
+
#: google-sitemap-plugin.php:689
|
221 |
+
#: google-sitemap-plugin.php:712
|
222 |
+
#: google-sitemap-plugin.php:769
|
223 |
+
#: google-sitemap-plugin.php:796
|
224 |
+
#: google-sitemap-plugin.php:816
|
225 |
+
#: google-sitemap-plugin.php:835
|
|
|
226 |
msgid "View the Instruction"
|
227 |
msgstr "Переглянути інструкцію"
|
228 |
|
229 |
+
#: google-sitemap-plugin.php:555
|
230 |
+
msgid "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
231 |
+
msgstr "Будь ласка, авторизуйтесь використовуючи ваш Google акаунт, щоб мати можливість додавати або видаляти сайти та файл sitemap у вашому акаунті автоматично або отримувати інформацію про цей сайт з Google Webmaster Tools."
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
|
233 |
+
#: google-sitemap-plugin.php:556
|
234 |
msgid "Get Authorization Code"
|
235 |
msgstr "Отримати Код Авторизації"
|
236 |
|
237 |
+
#: google-sitemap-plugin.php:559
|
238 |
msgid "Authorize"
|
239 |
msgstr "Авторизуватись"
|
240 |
|
241 |
+
#: google-sitemap-plugin.php:562
|
242 |
msgid "Invalid authorization code. Please, try again."
|
243 |
msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз."
|
244 |
|
245 |
+
#: google-sitemap-plugin.php:571
|
246 |
+
#: google-sitemap-plugin.php:603
|
247 |
msgid "Save Changes"
|
248 |
msgstr "Зберегти зміни"
|
249 |
|
250 |
+
#: google-sitemap-plugin.php:592
|
251 |
msgid "Show URL for pages"
|
252 |
msgstr "Показати посилання для сторінок"
|
253 |
|
254 |
+
#: google-sitemap-plugin.php:598
|
255 |
msgid "Example of site pages' tree"
|
256 |
msgstr "Приклад дерева сторінок сайту"
|
257 |
|
258 |
+
#: google-sitemap-plugin.php:663
|
259 |
#, php-format
|
260 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
261 |
msgstr "Я хочу отримати інформацію про сайт %s в Google Webmaster Tools"
|
262 |
|
263 |
+
#: google-sitemap-plugin.php:672
|
264 |
+
#: google-sitemap-plugin.php:742
|
265 |
msgid "This site is not added to the Google Webmaster Tools."
|
266 |
msgstr "Даний сайт не додано до Google Webmaster Tools."
|
267 |
|
268 |
+
#: google-sitemap-plugin.php:676
|
269 |
msgid "This site is added to the Google Webmaster Tools."
|
270 |
msgstr "Цей сайт додано до Google Webmaster Tools."
|
271 |
|
272 |
+
#: google-sitemap-plugin.php:677
|
273 |
msgid "Site URL:"
|
274 |
msgstr "URL сайту:"
|
275 |
|
276 |
+
#: google-sitemap-plugin.php:678
|
277 |
msgid "Site verification:"
|
278 |
msgstr "Верифікація сайту:"
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:678
|
281 |
msgid "verified"
|
282 |
msgstr "верифіковано"
|
283 |
|
284 |
+
#: google-sitemap-plugin.php:678
|
285 |
msgid "not verified"
|
286 |
msgstr "не верифіковано"
|
287 |
|
288 |
+
#: google-sitemap-plugin.php:687
|
289 |
+
#: google-sitemap-plugin.php:814
|
290 |
+
msgid "An unexpected error occurred when verifying site in the Google Webmaster Tools."
|
|
|
291 |
msgstr "Помилка при перевірці сайту в Google Webmaster Tools."
|
292 |
|
293 |
+
#: google-sitemap-plugin.php:689
|
294 |
+
#: google-sitemap-plugin.php:796
|
295 |
+
#: google-sitemap-plugin.php:816
|
296 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
297 |
msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
|
298 |
|
299 |
+
#: google-sitemap-plugin.php:702
|
300 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
301 |
msgstr "Файл sitemap не додано до Google Webmaster Tools."
|
302 |
|
303 |
+
#: google-sitemap-plugin.php:705
|
304 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
305 |
msgstr "Файл sitemap додано до Google Webmaster Tools."
|
306 |
|
307 |
+
#: google-sitemap-plugin.php:707
|
308 |
+
msgid "The sitemap file is added to the Google Webmaster Tools, but has some errors or warnings."
|
309 |
+
msgstr "Файл sitemap додано до акаунту Google Webmaster Tools, але під час додавання виникли помилки."
|
|
|
|
|
|
|
|
|
310 |
|
311 |
+
#: google-sitemap-plugin.php:707
|
312 |
msgid "Please, see them in the Google Webmaster Tools."
|
313 |
msgstr "Перегляньте їх в Google Webmaster Tools."
|
314 |
|
315 |
+
#: google-sitemap-plugin.php:710
|
316 |
msgid "Sitemap URL:"
|
317 |
msgstr "URL Sitemap:"
|
318 |
|
319 |
+
#: google-sitemap-plugin.php:712
|
320 |
+
msgid "When checking the sitemap file an unexpected error occurred. Please, check the sitemap file manually"
|
|
|
|
|
321 |
msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
|
322 |
|
323 |
+
#: google-sitemap-plugin.php:724
|
324 |
#, php-format
|
325 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
326 |
msgstr "Я хочу видалити сайт %s з Google Webmaster Tools"
|
327 |
|
328 |
+
#: google-sitemap-plugin.php:737
|
329 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
330 |
msgstr "Даний сайт було видалено з Google Webmaster Tools"
|
331 |
|
332 |
+
#: google-sitemap-plugin.php:756
|
333 |
#, php-format
|
334 |
msgid "I want to add site %s in Google Webmaster Tools"
|
335 |
msgstr "Я хочу додати сайт %s до Google Webmaster Tools"
|
336 |
|
337 |
+
#: google-sitemap-plugin.php:761
|
338 |
msgid "The site is added to the Google Webmaster Tools."
|
339 |
msgstr "Сайт додано до Google Webmaster Tools."
|
340 |
|
341 |
+
#: google-sitemap-plugin.php:767
|
342 |
+
msgid "When you add a site in the Google Webmaster Tools unexpected error occurred."
|
|
|
343 |
msgstr "Помилка при додаванні сайту до Google Webmaster Tools."
|
344 |
|
345 |
+
#: google-sitemap-plugin.php:769
|
346 |
msgid "The site couldn't be added. Please, add the site manually"
|
347 |
msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
|
348 |
|
349 |
+
#: google-sitemap-plugin.php:785
|
350 |
msgid "Verification code has been successfully received and added to the site."
|
351 |
msgstr "Код верифікації успішно отримано та додано на сайт."
|
352 |
|
353 |
+
#: google-sitemap-plugin.php:787
|
354 |
+
msgid "Verification code has been successfully received but has not been added to the site."
|
|
|
|
|
355 |
msgstr "Код верифікації успішно отримано, але не додано на сайт."
|
356 |
|
357 |
+
#: google-sitemap-plugin.php:794
|
358 |
+
msgid "An error has occurred when receiving the verification code site in the Google Webmaster."
|
|
|
|
|
359 |
msgstr "Помилка при отриманні верифікаційного коду Google Webmaster."
|
360 |
|
361 |
+
#: google-sitemap-plugin.php:808
|
362 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
363 |
msgstr "Сайт успішно перевірено в Google Webmaster Tools."
|
364 |
|
365 |
+
#: google-sitemap-plugin.php:827
|
366 |
+
msgid "The sitemap file has been successfully added to the Google Webmaster Tools."
|
|
|
367 |
msgstr "Файл sitemap успішно додано до Google Webmaster Tools."
|
368 |
|
369 |
+
#: google-sitemap-plugin.php:833
|
370 |
+
msgid "When you add a sitemap file in the Google Webmaster Tools unexpected error occurred."
|
|
|
|
|
371 |
msgstr "Помилка при додаванні файлу sitemap до Google Webmaster Tools."
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:835
|
374 |
+
msgid "The sitemap file couldn't be added. Please, add the sitemap file manually"
|
|
|
375 |
msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
|
376 |
|
377 |
+
#: google-sitemap-plugin.php:838
|
378 |
#, php-format
|
379 |
msgid "Error 404. The sitemap file %s not found."
|
380 |
msgstr "Помилка 404. Файл sitemap %s не знайдено."
|
381 |
|
382 |
+
#: google-sitemap-plugin.php:841
|
383 |
msgid "The sitemap file not found."
|
384 |
msgstr "Файл sitemap не знайдено."
|
385 |
|
386 |
+
#: google-sitemap-plugin.php:909
|
387 |
msgid "Support"
|
388 |
msgstr "Підтримка"
|
389 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add posts to sitemap, add pages to sitemap, add sitemap, add site to google webmaster tools, create a map, google, googel, googgle, gogle, gogole, google sitemap, google sitemap plugin, google webmaster tools, sitemep, sitemap, sitemaps, site mep, site map, sitemap file path, update sitemap
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 4.2.
|
7 |
-
Stable tag:
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -102,6 +102,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
102 |
|
103 |
== Changelog ==
|
104 |
|
|
|
|
|
|
|
|
|
105 |
= V2.9.9 - 10.07.2015 =
|
106 |
* Bigfix : We fixed bug with editing of file robots.txt.
|
107 |
* NEW : Ability to restore default settings.
|
@@ -241,6 +245,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
241 |
|
242 |
== Upgrade Notice ==
|
243 |
|
|
|
|
|
|
|
244 |
= V2.9.9 =
|
245 |
We fixed bug with editing of file robots.txt. Ability to restore default settings.
|
246 |
|
3 |
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: add posts to sitemap, add pages to sitemap, add sitemap, add site to google webmaster tools, create a map, google, googel, googgle, gogle, gogole, google sitemap, google sitemap plugin, google webmaster tools, sitemep, sitemap, sitemaps, site mep, site map, sitemap file path, update sitemap
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 4.2.4
|
7 |
+
Stable tag: 3.0.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
102 |
|
103 |
== Changelog ==
|
104 |
|
105 |
+
= V3.0.0 - 18.08.2015 =
|
106 |
+
* Update : We updated all functionality for wordpress 4.2.4.
|
107 |
+
* Update : BWS plugins section was updated.
|
108 |
+
|
109 |
= V2.9.9 - 10.07.2015 =
|
110 |
* Bigfix : We fixed bug with editing of file robots.txt.
|
111 |
* NEW : Ability to restore default settings.
|
245 |
|
246 |
== Upgrade Notice ==
|
247 |
|
248 |
+
= V3.0.0 =
|
249 |
+
We updated all functionality for wordpress 4.2.4. BWS plugins section was updated.
|
250 |
+
|
251 |
= V2.9.9 =
|
252 |
We fixed bug with editing of file robots.txt. Ability to restore default settings.
|
253 |
|
screenshot-1.png
CHANGED
File without changes
|
screenshot-2.png
CHANGED
File without changes
|
screenshot-3.png
CHANGED
File without changes
|
sitemap.xsl
CHANGED
File without changes
|