Version Description
- 11.04.2014 =
- Update : We updated all functionality for wordpress 3.8.2.
- Budfix : Bug related on the sitemap link in the robots.txt was fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 2.8.9 |
Comparing to | |
See all releases |
Code changes from version 2.8.8 to 2.8.9
- bws_menu/bws_menu.php +49 -4
- bws_menu/css/general_style.css +246 -0
- bws_menu/css/general_style_wp_before_3.8.css +252 -0
- bws_menu/css/style.css +1 -1
- bws_menu/icons/bws-google-analytics.png +0 -0
- bws_menu/icons/bws-google-maps.png +0 -0
- bws_menu/icons/contact-form-multi.png +0 -0
- bws_menu/icons/subscriber.png +0 -0
- {images → bws_menu/images}/icon_16.png +0 -0
- {images → bws_menu/images}/icon_16_b.png +0 -0
- {images → bws_menu/images}/icon_16_c.png +0 -0
- {images → bws_menu/images}/icon_16_single.png +0 -0
- {images → bws_menu/images}/icon_36.png +0 -0
- {images → bws_menu/images}/icon_36_b.png +0 -0
- bws_menu/images/pattern.png +0 -0
- bws_menu/images/pattern_bg.png +0 -0
- css/style.css +0 -124
- css/style_wp_before_3.8.css +0 -129
- google-sitemap-plugin.php +107 -87
- languages/sitemap-ru_RU.mo +0 -0
- languages/sitemap-ru_RU.po +136 -118
- languages/sitemap-uk.mo +0 -0
- languages/sitemap-uk.po +127 -116
- readme.txt +10 -3
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- sitemap.xsl +0 -0
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.2
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
@@ -199,6 +199,39 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
199 |
'download' => 'http://bestwebsoft.com/plugin/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
200 |
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Sender+Bestwebsoft&plugin-search-input=Search+Plugins',
|
201 |
'settings' => 'admin.php?page=sndr_settings'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
)
|
203 |
);
|
204 |
$bws_plugins_pro = array(
|
@@ -271,6 +304,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
271 |
'link' => 'http://bestwebsoft.com/plugin/pdf-print-pro/?k=fd43a0e659ddc170a9060027cbfdcc3a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
272 |
'purchase' => 'http://bestwebsoft.com/plugin/pdf-print-pro?k=fd43a0e659ddc170a9060027cbfdcc3a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
|
273 |
'settings' => 'admin.php?page=pdf-print-pro.php'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
)
|
275 |
);
|
276 |
|
@@ -796,7 +836,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
796 |
<?php } ?>
|
797 |
</div>
|
798 |
<?php }
|
799 |
-
}
|
800 |
|
801 |
if ( ! function_exists ( 'bws_plugin_init' ) ) {
|
802 |
function bws_plugin_init() {
|
@@ -808,9 +848,14 @@ if ( ! function_exists ( 'bws_plugin_init' ) ) {
|
|
808 |
if ( ! function_exists ( 'bws_admin_head' ) ) {
|
809 |
function bws_admin_head() {
|
810 |
global $wp_version;
|
|
|
|
|
|
|
|
|
|
|
811 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
812 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
813 |
-
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
814 |
if ( $wp_version >= '3.8' )
|
815 |
wp_enqueue_script( 'theme-install' );
|
816 |
elseif ( $wp_version >= '3.4' )
|
@@ -819,6 +864,6 @@ if ( ! function_exists ( 'bws_admin_head' ) ) {
|
|
819 |
}
|
820 |
}
|
821 |
|
822 |
-
add_action( '
|
823 |
add_action( 'admin_enqueue_scripts', 'bws_admin_head' );
|
824 |
?>
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.2.6
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
199 |
'download' => 'http://bestwebsoft.com/plugin/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
200 |
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Sender+Bestwebsoft&plugin-search-input=Search+Plugins',
|
201 |
'settings' => 'admin.php?page=sndr_settings'
|
202 |
+
),
|
203 |
+
'subscriber/subscriber.php' => array(
|
204 |
+
'name' => 'Subscriber',
|
205 |
+
'description' => 'This plugin allows you to subscribe users for newsletters from your website.',
|
206 |
+
'link' => 'http://bestwebsoft.com/plugin/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
207 |
+
'download' => 'http://bestwebsoft.com/plugin/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
208 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Subscriber+Bestwebsoft&plugin-search-input=Search+Plugins',
|
209 |
+
'settings' => 'admin.php?page=sbscrbr_settings_page'
|
210 |
+
),
|
211 |
+
'contact-form-multi/contact-form-multi.php' => array(
|
212 |
+
'name' => 'Contact Form Multi',
|
213 |
+
'description' => 'This plugin allows you to subscribe users for newsletters from your website.',
|
214 |
+
'link' => 'http://bestwebsoft.com/plugin/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
215 |
+
'download' => 'http://bestwebsoft.com/plugin/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
216 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Contact+Form+Multi+Bestwebsoft&plugin-search-input=Search+Plugins',
|
217 |
+
'settings' => ''
|
218 |
+
),
|
219 |
+
'bws-google-maps/bws-google-maps.php' => array(
|
220 |
+
'name' => 'BestWebSoft Google Maps',
|
221 |
+
'description' => 'Easy to set up and insert Google Maps to your website.',
|
222 |
+
'link' => 'http://bestwebsoft.com/plugin/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
223 |
+
'download' => 'http://bestwebsoft.com/plugin/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
224 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=BestWebSoft+Google+Maps&plugin-search-input=Search+Plugins',
|
225 |
+
'settings' => 'admin.php?page=bws-google-maps.php',
|
226 |
+
'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php'
|
227 |
+
),
|
228 |
+
'bws-google-analytics/bws-google-analytics.php' => array(
|
229 |
+
'name' => 'BestWebSoft Google Analytics',
|
230 |
+
'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
|
231 |
+
'link' => 'http://bestwebsoft.com/plugin/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
232 |
+
'download' => 'http://bestwebsoft.com/plugin/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
|
233 |
+
'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=BestWebSoft+Google+Analytics&plugin-search-input=Search+Plugins',
|
234 |
+
'settings' => 'admin.php?page=bws-google-analytics.php'
|
235 |
)
|
236 |
);
|
237 |
$bws_plugins_pro = array(
|
304 |
'link' => 'http://bestwebsoft.com/plugin/pdf-print-pro/?k=fd43a0e659ddc170a9060027cbfdcc3a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
305 |
'purchase' => 'http://bestwebsoft.com/plugin/pdf-print-pro?k=fd43a0e659ddc170a9060027cbfdcc3a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
|
306 |
'settings' => 'admin.php?page=pdf-print-pro.php'
|
307 |
+
),
|
308 |
+
'bws-google-maps-pro/bws-google-maps-pro.php' => array(
|
309 |
+
'name' => 'BestWebSoft Google Maps Pro',
|
310 |
+
'description' => 'Easy to set up and insert Google Maps to your website.',
|
311 |
+
'link' => 'http://bestwebsoft.com/plugin/bws-google-maps-pro/?k=117c3f9fc17f2c83ef430a8a9dc06f56&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
312 |
+
'purchase' => 'http://bestwebsoft.com/plugin/bws-google-maps-pro/?k=117c3f9fc17f2c83ef430a8a9dc06f56&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
|
313 |
+
'settings' => 'admin.php?page=bws-google-maps-pro.php'
|
314 |
)
|
315 |
);
|
316 |
|
836 |
<?php } ?>
|
837 |
</div>
|
838 |
<?php }
|
839 |
+
}
|
840 |
|
841 |
if ( ! function_exists ( 'bws_plugin_init' ) ) {
|
842 |
function bws_plugin_init() {
|
848 |
if ( ! function_exists ( 'bws_admin_head' ) ) {
|
849 |
function bws_admin_head() {
|
850 |
global $wp_version;
|
851 |
+
if ( $wp_version < 3.8 )
|
852 |
+
wp_enqueue_style( 'bws-admin-stylesheet', plugins_url( 'css/general_style_wp_before_3.8.css', __FILE__ ) );
|
853 |
+
else
|
854 |
+
wp_enqueue_style( 'bws-admin-stylesheet', plugins_url( 'css/general_style.css', __FILE__ ) );
|
855 |
+
|
856 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
857 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
858 |
+
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
859 |
if ( $wp_version >= '3.8' )
|
860 |
wp_enqueue_script( 'theme-install' );
|
861 |
elseif ( $wp_version >= '3.4' )
|
864 |
}
|
865 |
}
|
866 |
|
867 |
+
add_action( 'admin_init', 'bws_plugin_init' );
|
868 |
add_action( 'admin_enqueue_scripts', 'bws_admin_head' );
|
869 |
?>
|
bws_menu/css/general_style.css
ADDED
@@ -0,0 +1,246 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image,
|
2 |
+
.admin-color-classic #adminmenu #toplevel_page_bws_plugins div.wp-menu-image,
|
3 |
+
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,
|
4 |
+
#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
|
5 |
+
background: url("../images/icon_16_single.png") no-repeat scroll center center transparent;
|
6 |
+
}
|
7 |
+
#adminmenu #toplevel_page_bws_plugins.wp-not-current-submenu div.wp-menu-image {
|
8 |
+
opacity: 0.7;
|
9 |
+
}
|
10 |
+
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
11 |
+
display: none;
|
12 |
+
}
|
13 |
+
/*
|
14 |
+
* styles for rate-support div on the settings page
|
15 |
+
*/
|
16 |
+
.bws-plugin-reviews {
|
17 |
+
background: none repeat scroll 0 0 #BEE1F1;
|
18 |
+
border: 1px solid #70A8C2;
|
19 |
+
border-radius: 3px;
|
20 |
+
max-width: 700px;
|
21 |
+
}
|
22 |
+
.bws-plugin-reviews-rate {
|
23 |
+
padding: 10px;
|
24 |
+
border-bottom: 1px dashed #70A8C2;
|
25 |
+
}
|
26 |
+
.bws-plugin-reviews-support {
|
27 |
+
padding: 10px;
|
28 |
+
}
|
29 |
+
/*
|
30 |
+
* styles for Go PRO tab
|
31 |
+
*/
|
32 |
+
.bws_go_pro_tab {
|
33 |
+
background-color: #2A95C5;
|
34 |
+
border-color: #11688F;
|
35 |
+
color: #FFFFFF;
|
36 |
+
font-weight: normal;
|
37 |
+
text-shadow: none;
|
38 |
+
}
|
39 |
+
.bws_go_pro_tab:hover {
|
40 |
+
background-color: #2080AB;
|
41 |
+
color: #FFFFFF;
|
42 |
+
border-color: #11688F;
|
43 |
+
}
|
44 |
+
.bws_go_pro_tab.nav-tab-active {
|
45 |
+
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
46 |
+
border-color: #CCCCCC #CCCCCC #F1F1F1;
|
47 |
+
color: #000000;
|
48 |
+
}
|
49 |
+
/*
|
50 |
+
* styles for pro_version settings and tooltip
|
51 |
+
*/
|
52 |
+
td.bws_pro_version,
|
53 |
+
tr.bws_pro_version,
|
54 |
+
.nav-tab.bws_plugin_menu_pro_version,
|
55 |
+
.nav-tab.bws_plugin_menu_pro_version:hover {
|
56 |
+
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
57 |
+
border: 1px solid #AAA;
|
58 |
+
}
|
59 |
+
td.bws_pro_version_tooltip {
|
60 |
+
border: 1px solid #AAA;
|
61 |
+
position: inherit;
|
62 |
+
}
|
63 |
+
.bws_pro_version_bloc {
|
64 |
+
position: relative;
|
65 |
+
margin: 5px 0;
|
66 |
+
border: 1px solid #AAAAAA;
|
67 |
+
max-width: 800px;
|
68 |
+
}
|
69 |
+
.bws_table_bg {
|
70 |
+
background: #f8e268 url("../images/pattern.png");
|
71 |
+
opacity: 0.11;
|
72 |
+
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
|
73 |
+
-moz-opacity: 0.11; /* Mozilla 1.6 и ниже */
|
74 |
+
width: 100%;
|
75 |
+
height: 100%;
|
76 |
+
position: absolute;
|
77 |
+
z-index: 1;
|
78 |
+
}
|
79 |
+
.bws_pro_version_table_bloc table.bws_pro_version {
|
80 |
+
background: transparent;
|
81 |
+
margin: 0;
|
82 |
+
border: none;
|
83 |
+
width: 100%;
|
84 |
+
}
|
85 |
+
table.bws_pro_version {
|
86 |
+
background: #E0E0E0;
|
87 |
+
border: 1px solid #AAA;
|
88 |
+
margin-bottom: 5px;
|
89 |
+
width: auto;
|
90 |
+
}
|
91 |
+
table.bws_pro_version tbody {
|
92 |
+
display: block;
|
93 |
+
}
|
94 |
+
table.bws_pro_version th,
|
95 |
+
table.bws_pro_version td {
|
96 |
+
padding-left: 10px;
|
97 |
+
}
|
98 |
+
.bws_pro_version_tooltip {
|
99 |
+
background: #FFF;
|
100 |
+
border-top: 1px solid #AAA;
|
101 |
+
position: relative;
|
102 |
+
z-index: 2;
|
103 |
+
padding: 10px;
|
104 |
+
font-size: 14px;
|
105 |
+
}
|
106 |
+
.bws_pro_version_tooltip .bws_button {
|
107 |
+
background: #dd5738;
|
108 |
+
border: none;
|
109 |
+
text-decoration: none;
|
110 |
+
color: #fff;
|
111 |
+
padding: 5px 17px;
|
112 |
+
border-radius: 2px;
|
113 |
+
margin: 5px 10px;
|
114 |
+
float: right;
|
115 |
+
}
|
116 |
+
.bws_pro_version_tooltip .bws_info {
|
117 |
+
float: left;
|
118 |
+
padding-top: 10px;
|
119 |
+
}
|
120 |
+
div.bws_pro_version {
|
121 |
+
padding: 5px 10px;
|
122 |
+
}
|
123 |
+
a.bws_plugin_pro_version {
|
124 |
+
display: block;
|
125 |
+
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
126 |
+
border: 1px solid #AAA;
|
127 |
+
padding: 5px;
|
128 |
+
text-decoration: none;
|
129 |
+
color: #666;
|
130 |
+
}
|
131 |
+
.bws_pro_version_single_link,
|
132 |
+
.bws_pro_version_single_link:hover {
|
133 |
+
text-decoration: none;
|
134 |
+
color: #666;
|
135 |
+
}
|
136 |
+
/* style for mini-block (ex. google map) */
|
137 |
+
.bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
|
138 |
+
width: auto;
|
139 |
+
}
|
140 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip {
|
141 |
+
padding: 10px 61px;
|
142 |
+
text-align: center;
|
143 |
+
width: 200px;
|
144 |
+
}
|
145 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
|
146 |
+
display: inline-block;
|
147 |
+
line-height: 1.5;
|
148 |
+
}
|
149 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button {
|
150 |
+
margin: 10px 10px 5px;
|
151 |
+
padding: 5px 50px;
|
152 |
+
float: none;
|
153 |
+
}
|
154 |
+
/* #### Mobile Phones Portrait or Landscape #### */
|
155 |
+
@media screen and (max-device-width: 640px) {
|
156 |
+
.bws_pro_version_tooltip {
|
157 |
+
padding: 10px;
|
158 |
+
text-align: center;
|
159 |
+
}
|
160 |
+
.bws_pro_version_tooltip .bws_info {
|
161 |
+
float: none;
|
162 |
+
text-align: center;
|
163 |
+
}
|
164 |
+
.bws_pro_version_tooltip a {
|
165 |
+
display: inline-block;
|
166 |
+
line-height: 1.5;
|
167 |
+
}
|
168 |
+
.bws_pro_version_tooltip .bws_info a {
|
169 |
+
display: block;
|
170 |
+
}
|
171 |
+
.bws_pro_version_tooltip .bws_button {
|
172 |
+
margin: 10px 10px 5px;
|
173 |
+
padding: 5px 50px;
|
174 |
+
float: none;
|
175 |
+
}
|
176 |
+
}
|
177 |
+
|
178 |
+
/*
|
179 |
+
* styles for banner
|
180 |
+
*/
|
181 |
+
.bws_banner_on_plugin_page {
|
182 |
+
border: 1px solid #d4d4d4;
|
183 |
+
margin: 12px 0;
|
184 |
+
background: #FFF;
|
185 |
+
position: relative;
|
186 |
+
overflow: hidden
|
187 |
+
}
|
188 |
+
.bws_banner_on_plugin_page .text {
|
189 |
+
color: #000;
|
190 |
+
font-size: 15px;
|
191 |
+
line-height: 26px;
|
192 |
+
margin: 18px 18px 14px;
|
193 |
+
float: left;
|
194 |
+
width: auto;
|
195 |
+
max-width: 80%;
|
196 |
+
}
|
197 |
+
.bws_banner_on_plugin_page .text span {
|
198 |
+
font-size: 12px;
|
199 |
+
opacity: 0.7;
|
200 |
+
}
|
201 |
+
.bws_banner_on_plugin_page .button {
|
202 |
+
float: left;
|
203 |
+
border: none;
|
204 |
+
font-size: 14px;
|
205 |
+
margin: 18px 0 18px 16px;
|
206 |
+
padding: 12px 0;
|
207 |
+
color: #FFF;
|
208 |
+
text-shadow: none;
|
209 |
+
font-weight: bold;
|
210 |
+
background: #0074A2;
|
211 |
+
-moz-border-radius: 3px;
|
212 |
+
border-radius: 3px;
|
213 |
+
-webkit-border-radius: 3px;
|
214 |
+
text-decoration: none;
|
215 |
+
height: 50px;
|
216 |
+
text-align: center;
|
217 |
+
text-transform: uppercase;
|
218 |
+
width: 147px;
|
219 |
+
box-shadow: none;
|
220 |
+
line-height: 26px;
|
221 |
+
}
|
222 |
+
.bws_banner_on_plugin_page .button:hover,
|
223 |
+
.bws_banner_on_plugin_page .button:focus {
|
224 |
+
background: #222;
|
225 |
+
color: #FFF;
|
226 |
+
}
|
227 |
+
.bws_banner_on_plugin_page .icon {
|
228 |
+
float: right;
|
229 |
+
margin: 12px 8px 8px 0;
|
230 |
+
}
|
231 |
+
.bws_banner_on_plugin_page .close_icon {
|
232 |
+
float: right;
|
233 |
+
margin: 8px;
|
234 |
+
cursor: pointer;
|
235 |
+
}
|
236 |
+
/* #### Mobile Phones Portrait or Landscape #### */
|
237 |
+
@media screen and (max-device-width: 640px) {
|
238 |
+
.bws_banner_on_plugin_page .text,
|
239 |
+
.bws_banner_on_plugin_page .icon,
|
240 |
+
.bws_banner_on_plugin_page .button_div,
|
241 |
+
.bws_banner_on_plugin_page .button {
|
242 |
+
float: none;
|
243 |
+
text-align: center;
|
244 |
+
max-width: 100%;
|
245 |
+
}
|
246 |
+
}
|
bws_menu/css/general_style_wp_before_3.8.css
ADDED
@@ -0,0 +1,252 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
|
2 |
+
background: url("../images/icon_16.png") no-repeat scroll center center transparent;
|
3 |
+
}
|
4 |
+
#wpadminbar li#wp-admin-bar-pdfprnt-bar-menu a:hover span.admin-bar-menu-bws-icon {
|
5 |
+
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
6 |
+
}
|
7 |
+
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,
|
8 |
+
#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
|
9 |
+
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
10 |
+
}
|
11 |
+
.wrap #icon-options-general.icon32-bws {
|
12 |
+
background: url("../images/icon_36.png") no-repeat scroll left top transparent;
|
13 |
+
}
|
14 |
+
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
15 |
+
display: none;
|
16 |
+
}
|
17 |
+
/*
|
18 |
+
* styles for rate-support div on the settings page
|
19 |
+
*/
|
20 |
+
.bws-plugin-reviews {
|
21 |
+
background: none repeat scroll 0 0 #BEE1F1;
|
22 |
+
border: 1px solid #70A8C2;
|
23 |
+
border-radius: 3px;
|
24 |
+
max-width: 700px;
|
25 |
+
}
|
26 |
+
.bws-plugin-reviews-rate {
|
27 |
+
padding: 10px;
|
28 |
+
border-bottom: 1px dashed #70A8C2;
|
29 |
+
}
|
30 |
+
.bws-plugin-reviews-support {
|
31 |
+
padding: 10px;
|
32 |
+
}
|
33 |
+
/*
|
34 |
+
* styles for Go PRO tab
|
35 |
+
*/
|
36 |
+
.bws_go_pro_tab {
|
37 |
+
background-color: #2A95C5;
|
38 |
+
border-color: #11688F;
|
39 |
+
color: #FFFFFF;
|
40 |
+
font-weight: normal !important;
|
41 |
+
text-shadow: none;
|
42 |
+
}
|
43 |
+
.bws_go_pro_tab:hover {
|
44 |
+
background-color: #2080AB;
|
45 |
+
color: #FFFFFF;
|
46 |
+
border-color: #11688F;
|
47 |
+
}
|
48 |
+
/*
|
49 |
+
* styles for pro_version settings and tooltip
|
50 |
+
*/
|
51 |
+
td.bws_pro_version,
|
52 |
+
tr.bws_pro_version,
|
53 |
+
.nav-tab.bws_plugin_menu_pro_version,
|
54 |
+
.nav-tab.bws_plugin_menu_pro_version:hover {
|
55 |
+
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
56 |
+
border: 1px solid #AAA;
|
57 |
+
}
|
58 |
+
.nav-tab.bws_plugin_menu_pro_version:hover {
|
59 |
+
color: #AAAAAA;
|
60 |
+
}
|
61 |
+
td.bws_pro_version_tooltip {
|
62 |
+
border: 1px solid #AAA;
|
63 |
+
position: inherit;
|
64 |
+
}
|
65 |
+
.bws_pro_version_bloc {
|
66 |
+
position: relative;
|
67 |
+
margin: 5px 0;
|
68 |
+
border: 1px solid #AAAAAA;
|
69 |
+
max-width: 800px;
|
70 |
+
}
|
71 |
+
.bws_table_bg {
|
72 |
+
background: #f8e268 url("../images/pattern.png");
|
73 |
+
opacity: 0.11;
|
74 |
+
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=11); /* IE 5.5+*/
|
75 |
+
-moz-opacity: 0.11; /* Mozilla 1.6 и ниже */
|
76 |
+
width: 100%;
|
77 |
+
height: 100%;
|
78 |
+
position: absolute;
|
79 |
+
z-index: 1;
|
80 |
+
}
|
81 |
+
.bws_pro_version_table_bloc table.bws_pro_version {
|
82 |
+
background: transparent;
|
83 |
+
margin: 0;
|
84 |
+
border: none;
|
85 |
+
width: 100%;
|
86 |
+
}
|
87 |
+
table.bws_pro_version {
|
88 |
+
background: #E0E0E0;
|
89 |
+
border: 1px solid #AAA;
|
90 |
+
margin-bottom: 5px;
|
91 |
+
width: auto;
|
92 |
+
}
|
93 |
+
table.bws_pro_version tbody {
|
94 |
+
display: block;
|
95 |
+
}
|
96 |
+
table.bws_pro_version th,
|
97 |
+
table.bws_pro_version td {
|
98 |
+
padding-left: 10px;
|
99 |
+
}
|
100 |
+
.bws_pro_version_tooltip {
|
101 |
+
background: #FFF;
|
102 |
+
border-top: 1px solid #AAA;
|
103 |
+
position: relative;
|
104 |
+
z-index: 2;
|
105 |
+
padding: 10px;
|
106 |
+
font-size: 14px;
|
107 |
+
}
|
108 |
+
.bws_pro_version_tooltip .bws_button {
|
109 |
+
background: #dd5738;
|
110 |
+
border: none;
|
111 |
+
text-decoration: none;
|
112 |
+
color: #fff;
|
113 |
+
padding: 5px 17px;
|
114 |
+
border-radius: 2px;
|
115 |
+
margin: 5px 10px;
|
116 |
+
float: right;
|
117 |
+
}
|
118 |
+
.bws_pro_version_tooltip .bws_info {
|
119 |
+
float: left;
|
120 |
+
padding-top: 10px;
|
121 |
+
}
|
122 |
+
div.bws_pro_version {
|
123 |
+
padding: 5px 10px;
|
124 |
+
}
|
125 |
+
a.bws_plugin_pro_version {
|
126 |
+
display: block;
|
127 |
+
background: rgba(248, 226, 104, 0.11) url("../images/pattern_bg.png");
|
128 |
+
border: 1px solid #AAA;
|
129 |
+
padding: 5px;
|
130 |
+
text-decoration: none;
|
131 |
+
color: #666;
|
132 |
+
}
|
133 |
+
.bws_pro_version_single_link,
|
134 |
+
.bws_pro_version_single_link:hover {
|
135 |
+
text-decoration: none;
|
136 |
+
color: #666;
|
137 |
+
}
|
138 |
+
/* style for mini-block (ex. google map) */
|
139 |
+
.bws_pro_version_bloc_mini .bws_pro_version_table_bloc table.bws_pro_version {
|
140 |
+
width: auto;
|
141 |
+
}
|
142 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip {
|
143 |
+
padding: 10px 61px;
|
144 |
+
text-align: center;
|
145 |
+
width: 200px;
|
146 |
+
}
|
147 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip a {
|
148 |
+
display: inline-block;
|
149 |
+
line-height: 1.5;
|
150 |
+
}
|
151 |
+
.bws_pro_version_bloc_mini .bws_pro_version_tooltip .bws_button {
|
152 |
+
margin: 10px 10px 5px;
|
153 |
+
padding: 5px 50px;
|
154 |
+
float: none;
|
155 |
+
}
|
156 |
+
/* #### Mobile Phones Portrait or Landscape #### */
|
157 |
+
@media screen and (max-device-width: 640px) {
|
158 |
+
.bws_pro_version_tooltip {
|
159 |
+
padding: 10px;
|
160 |
+
text-align: center;
|
161 |
+
}
|
162 |
+
.bws_pro_version_tooltip .bws_info {
|
163 |
+
float: none;
|
164 |
+
text-align: center;
|
165 |
+
}
|
166 |
+
.bws_pro_version_tooltip a {
|
167 |
+
display: inline-block;
|
168 |
+
line-height: 1.5;
|
169 |
+
}
|
170 |
+
.bws_pro_version_tooltip .bws_info a {
|
171 |
+
display: block;
|
172 |
+
}
|
173 |
+
.bws_pro_version_tooltip .bws_button {
|
174 |
+
margin: 10px 10px 5px;
|
175 |
+
padding: 5px 50px;
|
176 |
+
float: none;
|
177 |
+
}
|
178 |
+
}
|
179 |
+
/*
|
180 |
+
* styles for banner
|
181 |
+
*/
|
182 |
+
.bws_banner_on_plugin_page {
|
183 |
+
border: 1px solid #d4d4d4;
|
184 |
+
background: #FFF;
|
185 |
+
position: relative;
|
186 |
+
overflow: hidden;
|
187 |
+
margin: 12px 0;
|
188 |
+
background: #ECECEC;
|
189 |
+
-moz-border-radius: 3px;
|
190 |
+
-webkit-border-radius: 3px;
|
191 |
+
border-radius: 3px;
|
192 |
+
}
|
193 |
+
.bws_banner_on_plugin_page .text {
|
194 |
+
color: #000;
|
195 |
+
font-size: 15px;
|
196 |
+
line-height: 26px;
|
197 |
+
margin: 18px 18px 14px;
|
198 |
+
float: left;
|
199 |
+
width: auto;
|
200 |
+
max-width: 80%;
|
201 |
+
}
|
202 |
+
.bws_banner_on_plugin_page .text span {
|
203 |
+
font-size: 12px;
|
204 |
+
opacity: 0.7;
|
205 |
+
}
|
206 |
+
.bws_banner_on_plugin_page .button {
|
207 |
+
float: left;
|
208 |
+
border: none;
|
209 |
+
font-size: 14px;
|
210 |
+
margin: 18px 0 18px 16px;
|
211 |
+
padding: 14px 0;
|
212 |
+
color: #FFF;
|
213 |
+
text-shadow: none;
|
214 |
+
font-weight: bold;
|
215 |
+
background: #0074A2;
|
216 |
+
-moz-border-radius: 3px;
|
217 |
+
border-radius: 3px;
|
218 |
+
-webkit-border-radius: 3px;
|
219 |
+
text-decoration: none;
|
220 |
+
height: 50px;
|
221 |
+
text-align: center;
|
222 |
+
text-transform: uppercase;
|
223 |
+
width: 147px;
|
224 |
+
box-shadow: none;
|
225 |
+
-moz-box-sizing: border-box;
|
226 |
+
-webkit-box-sizing: border-box;
|
227 |
+
box-sizing: border-box;
|
228 |
+
}
|
229 |
+
.bws_banner_on_plugin_page .button:hover,
|
230 |
+
.bws_banner_on_plugin_page .button:focus {
|
231 |
+
background: #222;
|
232 |
+
color: #FFF;
|
233 |
+
}
|
234 |
+
.bws_banner_on_plugin_page .icon {
|
235 |
+
float: right;
|
236 |
+
margin: 12px 8px 8px 0;
|
237 |
+
}
|
238 |
+
.bws_banner_on_plugin_page .close_icon {
|
239 |
+
float: right;
|
240 |
+
margin: 8px;
|
241 |
+
cursor: pointer;
|
242 |
+
}
|
243 |
+
/* #### Mobile Phones Portrait or Landscape #### */
|
244 |
+
@media screen and (max-device-width: 640px) {
|
245 |
+
.bws_banner_on_plugin_page .text,
|
246 |
+
.bws_banner_on_plugin_page .icon,
|
247 |
+
.bws_banner_on_plugin_page .button_div,
|
248 |
+
.bws_banner_on_plugin_page .button {
|
249 |
+
float: none;
|
250 |
+
text-align: center;
|
251 |
+
}
|
252 |
+
}
|
bws_menu/css/style.css
CHANGED
@@ -86,7 +86,7 @@ h4.bws_recommended {
|
|
86 |
padding: 0 10px;
|
87 |
color: #a7a7a7;
|
88 |
display: none;
|
89 |
-
font-size:
|
90 |
}
|
91 |
.bws_product_links {
|
92 |
padding: 10px 6px 12px;
|
86 |
padding: 0 10px;
|
87 |
color: #a7a7a7;
|
88 |
display: none;
|
89 |
+
font-size: 12px;
|
90 |
}
|
91 |
.bws_product_links {
|
92 |
padding: 10px 6px 12px;
|
bws_menu/icons/bws-google-analytics.png
ADDED
Binary file
|
bws_menu/icons/bws-google-maps.png
ADDED
Binary file
|
bws_menu/icons/contact-form-multi.png
ADDED
Binary file
|
bws_menu/icons/subscriber.png
ADDED
Binary file
|
{images → bws_menu/images}/icon_16.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_16_b.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_16_c.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_16_single.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_36.png
RENAMED
File without changes
|
{images → bws_menu/images}/icon_36_b.png
RENAMED
File without changes
|
bws_menu/images/pattern.png
ADDED
Binary file
|
bws_menu/images/pattern_bg.png
ADDED
Binary file
|
css/style.css
DELETED
@@ -1,124 +0,0 @@
|
|
1 |
-
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image,
|
2 |
-
.admin-color-classic #adminmenu #toplevel_page_bws_plugins div.wp-menu-image,
|
3 |
-
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,
|
4 |
-
#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
|
5 |
-
background: url("../images/icon_16_single.png") no-repeat scroll center center transparent;
|
6 |
-
}
|
7 |
-
#adminmenu #toplevel_page_bws_plugins.wp-not-current-submenu div.wp-menu-image {
|
8 |
-
opacity: 0.7;
|
9 |
-
}
|
10 |
-
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
11 |
-
display: none;
|
12 |
-
}
|
13 |
-
.bws_go_pro_tab {
|
14 |
-
background-color: #2A95C5;
|
15 |
-
border-color: #11688F;
|
16 |
-
color: #FFFFFF;
|
17 |
-
font-weight: normal;
|
18 |
-
text-shadow: none;
|
19 |
-
}
|
20 |
-
.bws_go_pro_tab:hover {
|
21 |
-
background-color: #2080AB;
|
22 |
-
color: #FFFFFF;
|
23 |
-
border-color: #11688F;
|
24 |
-
}
|
25 |
-
.bws_go_pro_tab.nav-tab-active {
|
26 |
-
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
27 |
-
border-color: #CCCCCC #CCCCCC #F1F1F1;
|
28 |
-
color: #000000;
|
29 |
-
}
|
30 |
-
/*
|
31 |
-
* styles for rate-support div on the settings page
|
32 |
-
*/
|
33 |
-
.bws-plugin-reviews {
|
34 |
-
background: none repeat scroll 0 0 #BEE1F1;
|
35 |
-
border: 1px solid #70A8C2;
|
36 |
-
border-radius: 3px;
|
37 |
-
max-width: 700px;
|
38 |
-
}
|
39 |
-
.bws-plugin-reviews-rate {
|
40 |
-
padding: 10px;
|
41 |
-
border-bottom: 1px dashed #70A8C2;
|
42 |
-
}
|
43 |
-
.bws-plugin-reviews-support {
|
44 |
-
padding: 10px;
|
45 |
-
}
|
46 |
-
/*
|
47 |
-
* styles for pro_version settings, banner and tooltip
|
48 |
-
*/
|
49 |
-
table.bws_pro_version {
|
50 |
-
background: #E0E0E0;
|
51 |
-
border: 1px solid #AAA;
|
52 |
-
margin-bottom: 5px;
|
53 |
-
width: auto !important;
|
54 |
-
float: left;
|
55 |
-
}
|
56 |
-
table.bws_pro_version th,
|
57 |
-
table.bws_pro_version td {
|
58 |
-
color: #555;
|
59 |
-
padding-left: 10px;
|
60 |
-
}
|
61 |
-
.bws_pro_version_tooltip {
|
62 |
-
background: #FFF;
|
63 |
-
border: 1px solid #AAA;
|
64 |
-
}
|
65 |
-
.form-table.bws_pro_version .bws_pro_version_tooltip th {
|
66 |
-
font-weight: normal;
|
67 |
-
padding-bottom: 10px;
|
68 |
-
}
|
69 |
-
/*
|
70 |
-
* styles for banner
|
71 |
-
*/
|
72 |
-
.bws_banner_on_plugin_page {
|
73 |
-
border: 1px solid #d4d4d4;
|
74 |
-
margin: 12px 0;
|
75 |
-
background: #FFF;
|
76 |
-
position: relative;
|
77 |
-
overflow: hidden
|
78 |
-
}
|
79 |
-
.bws_banner_on_plugin_page .text {
|
80 |
-
color: #000;
|
81 |
-
font-size: 15px;
|
82 |
-
line-height: 26px;
|
83 |
-
margin: 18px 18px 14px;
|
84 |
-
float: left;
|
85 |
-
width: 80%;
|
86 |
-
}
|
87 |
-
.bws_banner_on_plugin_page .text span {
|
88 |
-
font-size: 12px;
|
89 |
-
opacity: 0.7;
|
90 |
-
}
|
91 |
-
.bws_banner_on_plugin_page .button {
|
92 |
-
float: left;
|
93 |
-
border: none;
|
94 |
-
font-size: 14px;
|
95 |
-
margin: 18px 0 18px 16px;
|
96 |
-
padding: 12px 0;
|
97 |
-
color: #FFF;
|
98 |
-
text-shadow: none;
|
99 |
-
font-weight: bold;
|
100 |
-
background: #0074A2;
|
101 |
-
-moz-border-radius: 3px;
|
102 |
-
border-radius: 3px;
|
103 |
-
-webkit-border-radius: 3px;
|
104 |
-
text-decoration: none;
|
105 |
-
height: 50px;
|
106 |
-
text-align: center;
|
107 |
-
text-transform: uppercase;
|
108 |
-
width: 147px;
|
109 |
-
box-shadow: none;
|
110 |
-
}
|
111 |
-
.bws_banner_on_plugin_page .button:hover,
|
112 |
-
.bws_banner_on_plugin_page .button:focus {
|
113 |
-
background: #222;
|
114 |
-
color: #FFF;
|
115 |
-
}
|
116 |
-
.bws_banner_on_plugin_page .icon {
|
117 |
-
float: right;
|
118 |
-
margin: 18px 8px 8px 0;
|
119 |
-
}
|
120 |
-
.bws_banner_on_plugin_page .close_icon {
|
121 |
-
float: right;
|
122 |
-
margin: 8px;
|
123 |
-
cursor: pointer;
|
124 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
css/style_wp_before_3.8.css
DELETED
@@ -1,129 +0,0 @@
|
|
1 |
-
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
|
2 |
-
background: url("../images/icon_16.png") no-repeat scroll center center transparent;
|
3 |
-
}
|
4 |
-
.admin-color-classic #adminmenu #toplevel_page_bws_plugins div.wp-menu-image {
|
5 |
-
background: url("../images/icon_16_b.png") no-repeat scroll center center transparent;
|
6 |
-
}
|
7 |
-
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
|
8 |
-
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
9 |
-
}
|
10 |
-
.wrap #icon-options-general.icon32-bws {
|
11 |
-
background: url("../images/icon_36.png") no-repeat scroll left top transparent;
|
12 |
-
}
|
13 |
-
.admin-color-classic .wrap #icon-options-general.icon32-bws {
|
14 |
-
background: url("../images/icon_36_b.png") no-repeat scroll left top transparent;
|
15 |
-
}
|
16 |
-
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
17 |
-
display: none;
|
18 |
-
}
|
19 |
-
.bws_go_pro_tab {
|
20 |
-
background-color: #2A95C5;
|
21 |
-
border-color: #11688F;
|
22 |
-
color: #FFFFFF;
|
23 |
-
font-weight: normal !important;
|
24 |
-
text-shadow: none;
|
25 |
-
}
|
26 |
-
.bws_go_pro_tab:hover {
|
27 |
-
background-color: #2080AB;
|
28 |
-
color: #FFFFFF;
|
29 |
-
border-color: #11688F;
|
30 |
-
}
|
31 |
-
/*
|
32 |
-
* styles for rate-support div on the settings page
|
33 |
-
*/
|
34 |
-
.bws-plugin-reviews {
|
35 |
-
background: none repeat scroll 0 0 #BEE1F1;
|
36 |
-
border: 1px solid #70A8C2;
|
37 |
-
border-radius: 3px;
|
38 |
-
max-width: 700px;
|
39 |
-
}
|
40 |
-
.bws-plugin-reviews-rate {
|
41 |
-
padding: 10px;
|
42 |
-
border-bottom: 1px dashed #70A8C2;
|
43 |
-
}
|
44 |
-
.bws-plugin-reviews-support {
|
45 |
-
padding: 10px;
|
46 |
-
}
|
47 |
-
/*
|
48 |
-
* styles for pro_version settings, banner and tooltip
|
49 |
-
*/
|
50 |
-
table.bws_pro_version {
|
51 |
-
background: #E0E0E0;
|
52 |
-
border: 1px solid #AAA;
|
53 |
-
margin-bottom: 5px;
|
54 |
-
width: auto !important;
|
55 |
-
float: left;
|
56 |
-
}
|
57 |
-
table.bws_pro_version th,
|
58 |
-
table.bws_pro_version td {
|
59 |
-
color: #555;
|
60 |
-
padding-left: 10px;
|
61 |
-
}
|
62 |
-
.bws_pro_version_tooltip {
|
63 |
-
background: #FFF;
|
64 |
-
border: 1px solid #AAA;
|
65 |
-
}
|
66 |
-
.form-table.bws_pro_version .bws_pro_version_tooltip th {
|
67 |
-
font-weight: normal;
|
68 |
-
padding-bottom: 10px;
|
69 |
-
}
|
70 |
-
/*
|
71 |
-
* styles for banner
|
72 |
-
*/
|
73 |
-
.bws_banner_on_plugin_page {
|
74 |
-
border: 1px solid #d4d4d4;
|
75 |
-
background: #FFF;
|
76 |
-
position: relative;
|
77 |
-
overflow: hidden;
|
78 |
-
margin: 12px 0;
|
79 |
-
background: #ECECEC;
|
80 |
-
-moz-border-radius: 3px;
|
81 |
-
-webkit-border-radius: 3px;
|
82 |
-
border-radius: 3px;
|
83 |
-
}
|
84 |
-
.bws_banner_on_plugin_page .text {
|
85 |
-
color: #000;
|
86 |
-
font-size: 15px;
|
87 |
-
line-height: 26px;
|
88 |
-
margin: 18px 18px 14px;
|
89 |
-
float: left;
|
90 |
-
width: 80%;
|
91 |
-
}
|
92 |
-
.bws_banner_on_plugin_page .text span {
|
93 |
-
font-size: 12px;
|
94 |
-
opacity: 0.7;
|
95 |
-
}
|
96 |
-
.bws_banner_on_plugin_page .button {
|
97 |
-
float: left;
|
98 |
-
border: none;
|
99 |
-
font-size: 14px;
|
100 |
-
margin: 18px 0 18px 16px;
|
101 |
-
padding: 14px 0;
|
102 |
-
color: #FFF;
|
103 |
-
text-shadow: none;
|
104 |
-
font-weight: bold;
|
105 |
-
background: #0074A2;
|
106 |
-
-moz-border-radius: 3px;
|
107 |
-
border-radius: 3px;
|
108 |
-
-webkit-border-radius: 3px;
|
109 |
-
text-decoration: none;
|
110 |
-
height: 50px;
|
111 |
-
text-align: center;
|
112 |
-
text-transform: uppercase;
|
113 |
-
width: 147px;
|
114 |
-
box-shadow: none;
|
115 |
-
}
|
116 |
-
.bws_banner_on_plugin_page .button:hover,
|
117 |
-
.bws_banner_on_plugin_page .button:focus {
|
118 |
-
background: #222;
|
119 |
-
color: #FFF;
|
120 |
-
}
|
121 |
-
.bws_banner_on_plugin_page .icon {
|
122 |
-
float: right;
|
123 |
-
margin: 18px 8px 8px 0;
|
124 |
-
}
|
125 |
-
.bws_banner_on_plugin_page .close_icon {
|
126 |
-
float: right;
|
127 |
-
margin: 8px;
|
128 |
-
cursor: pointer;
|
129 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
google-sitemap-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Sitemap
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin to add google sitemap file in Google Webmaster Tools account.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 2.8.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -30,7 +30,7 @@ License: GPLv2 or later
|
|
30 |
if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
|
31 |
function gglstmp_admin_menu() {
|
32 |
global $bstwbsftwppdtplgns_options, $wpmu, $bstwbsftwppdtplgns_added_menu;
|
33 |
-
$bws_menu_version = '1.2';
|
34 |
$base = plugin_basename(__FILE__);
|
35 |
|
36 |
if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
|
@@ -396,8 +396,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
396 |
$error = __( "Please, enter Your license key", 'sitemap' );
|
397 |
}
|
398 |
}
|
399 |
-
}
|
400 |
-
?>
|
401 |
<div class="wrap">
|
402 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
403 |
<h2><?php _e( "Google Sitemap", 'sitemap' ); ?></h2>
|
@@ -413,10 +412,18 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
413 |
<form action="admin.php?page=google-sitemap-plugin.php" method='post' id="gglstmp_auth" name="gglstmp_auth">
|
414 |
<?php /*=============================== Creating sitemap file ====================================*/
|
415 |
if ( file_exists( $url_sitemap ) ) {
|
416 |
-
|
|
|
|
|
|
|
|
|
417 |
} else {
|
418 |
gglstmp_sitemapcreate();
|
419 |
-
|
|
|
|
|
|
|
|
|
420 |
}
|
421 |
/*========================================== Recreating sitemap file ====================================*/
|
422 |
if ( is_multisite() ) {
|
@@ -456,31 +463,38 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
456 |
</td>
|
457 |
</tr>
|
458 |
</table>
|
459 |
-
<
|
460 |
-
<
|
461 |
-
<
|
462 |
-
<
|
463 |
-
<
|
464 |
-
<
|
465 |
-
<
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
484 |
<table class="form-table">
|
485 |
<?php if ( ! function_exists( 'curl_init' ) ) { ?>
|
486 |
<tr valign="top">
|
@@ -519,7 +533,7 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
519 |
<?php if ( isset( $au ) && false !== $au && ( $_POST['gglstmp_email'] ) && ( $_POST['gglstmp_passwd'] ) ) {
|
520 |
if ( "inf" == $_POST['gglstmp_menu'] ) {
|
521 |
gglstmp_info_site( $au );/* Getting info about the site in google webmaster tools account */
|
522 |
-
} else if ( "ad" == $_POST['gglstmp_menu']) {
|
523 |
gglstmp_add_site( $au ); /* Adding site and verifying its ownership */
|
524 |
gglstmp_add_sitemap( $au );/* Adding sitemap file to the google webmaster tools account */
|
525 |
} else if ( "del" == $_POST['gglstmp_menu'] ) {
|
@@ -538,39 +552,46 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
538 |
</div>
|
539 |
</div>
|
540 |
<?php } elseif ( 'extra' == $_GET['action'] ) { ?>
|
541 |
-
<
|
542 |
-
<
|
543 |
-
<
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
<?php } elseif ( 'go_pro' == $_GET['action'] ) { ?>
|
575 |
<?php if ( isset( $pro_plugin_is_activated ) && true === $pro_plugin_is_activated ) { ?>
|
576 |
<script type="text/javascript">
|
@@ -627,13 +648,11 @@ if ( ! function_exists( 'gglstmp_robots_add_sitemap' ) ) {
|
|
627 |
return $output;
|
628 |
} else {
|
629 |
if ( false === strpos( $output, 'Sitemap' ) ) {
|
630 |
-
$site_url = parse_url( site_url() );
|
631 |
-
$path = ( ! empty( $site_url['path'] ) ) ? $site_url['path'] : '';
|
632 |
if ( is_multisite() ) {
|
633 |
$home_url = preg_replace( "/[^a-zA-ZА-Яа-я0-9\s]/", "_", str_replace( 'http://', '', str_replace( 'https://', '', home_url() ) ) );
|
634 |
-
$output .= "Sitemap: " .
|
635 |
} else {
|
636 |
-
$output .= "Sitemap: " .
|
637 |
}
|
638 |
return $output;
|
639 |
}
|
@@ -644,12 +663,6 @@ if ( ! function_exists( 'gglstmp_robots_add_sitemap' ) ) {
|
|
644 |
/*============================================ Function for adding style ====================*/
|
645 |
if ( ! function_exists( 'gglstmp_add_plugin_stylesheet' ) ) {
|
646 |
function gglstmp_add_plugin_stylesheet() {
|
647 |
-
global $wp_version;
|
648 |
-
if ( $wp_version < 3.8 )
|
649 |
-
wp_enqueue_style( 'gglstmp_stylesheet', plugins_url( 'css/style_wp_before_3.8.css', __FILE__ ) );
|
650 |
-
else
|
651 |
-
wp_enqueue_style( 'gglstmp_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
652 |
-
|
653 |
if ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] )
|
654 |
wp_enqueue_script( 'gglstmp_script', plugins_url( 'js/script.js' , __FILE__ ) );
|
655 |
}
|
@@ -832,7 +845,8 @@ if ( ! function_exists ( 'gglstmp_plugin_banner' ) ) {
|
|
832 |
if ( $hook_suffix == 'plugins.php' ) {
|
833 |
$banner_array = array(
|
834 |
array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
|
835 |
-
array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
|
|
|
836 |
array( 'fcbkbttn_hide_banner_on_plugin_page', 'facebook-button-plugin/facebook-button-plugin.php', '2.29' ),
|
837 |
array( 'twttr_hide_banner_on_plugin_page', 'twitter-plugin/twitter.php', '2.34' ),
|
838 |
array( 'pdfprnt_hide_banner_on_plugin_page', 'pdf-print/pdf-print.php', '1.7.1' ),
|
@@ -858,13 +872,15 @@ if ( ! function_exists ( 'gglstmp_plugin_banner' ) ) {
|
|
858 |
if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
|
859 |
echo '<script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>';
|
860 |
$bstwbsftwppdtplgns_cookie_add = true;
|
861 |
-
}
|
862 |
-
|
863 |
(function($) {
|
864 |
$(document).ready( function() {
|
865 |
var hide_message = $.cookie( "gglstmp_hide_banner_on_plugin_page" );
|
866 |
if ( hide_message == "true") {
|
867 |
$( ".gglstmp_message" ).css( "display", "none" );
|
|
|
|
|
868 |
};
|
869 |
$( ".gglstmp_close_icon" ).click( function() {
|
870 |
$( ".gglstmp_message" ).css( "display", "none" );
|
@@ -874,17 +890,21 @@ if ( ! function_exists ( 'gglstmp_plugin_banner' ) ) {
|
|
874 |
})(jQuery);
|
875 |
</script>
|
876 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
877 |
-
<div class="gglstmp_message bws_banner_on_plugin_page">
|
878 |
-
<img class="gglstmp_close_icon close_icon" title="" src="
|
879 |
-
<
|
|
|
|
|
880 |
<div class="text">
|
881 |
-
|
882 |
-
<span
|
883 |
-
</div>
|
884 |
-
<
|
|
|
|
|
885 |
</div>
|
886 |
-
</div>
|
887 |
-
break;
|
888 |
}
|
889 |
if ( isset( $all_plugins[ $value[1] ] ) && $all_plugins[ $value[1] ]["Version"] >= $value[2] && ( 0 < count( preg_grep( '/' . str_replace( '/', '\/', $value[1] ) . '/', $active_plugins ) ) || is_plugin_active_for_network( $value[1] ) ) && ! isset( $_COOKIE[ $value[0] ] ) ) {
|
890 |
break;
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin to add google sitemap file in Google Webmaster Tools account.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 2.8.9
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
30 |
if ( ! function_exists( 'gglstmp_admin_menu' ) ) {
|
31 |
function gglstmp_admin_menu() {
|
32 |
global $bstwbsftwppdtplgns_options, $wpmu, $bstwbsftwppdtplgns_added_menu;
|
33 |
+
$bws_menu_version = '1.2.6';
|
34 |
$base = plugin_basename(__FILE__);
|
35 |
|
36 |
if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
|
396 |
$error = __( "Please, enter Your license key", 'sitemap' );
|
397 |
}
|
398 |
}
|
399 |
+
} ?>
|
|
|
400 |
<div class="wrap">
|
401 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
402 |
<h2><?php _e( "Google Sitemap", 'sitemap' ); ?></h2>
|
412 |
<form action="admin.php?page=google-sitemap-plugin.php" method='post' id="gglstmp_auth" name="gglstmp_auth">
|
413 |
<?php /*=============================== Creating sitemap file ====================================*/
|
414 |
if ( file_exists( $url_sitemap ) ) {
|
415 |
+
if ( is_multisite() ) {
|
416 |
+
echo '<p><a href="' . $url_home . "sitemap_" . $home_url . '.xml" target="_new">' . __( "The Sitemap file", 'sitemap' ) . "</a> " . __( "already exists. If you would like to replace it with a new one, please choose the necessary box below. All other actions will overwrite the existing file.", 'sitemap' ) . "</p>";
|
417 |
+
} else {
|
418 |
+
echo '<p><a href="' . $url_home . 'sitemap.xml" target="_new">' . __( "The Sitemap file", 'sitemap' ) . "</a> " . __( "already exists. If you would like to replace it with a new one, please choose the necessary box below. All other actions will overwrite the existing file.", 'sitemap' ) . "</p>";
|
419 |
+
}
|
420 |
} else {
|
421 |
gglstmp_sitemapcreate();
|
422 |
+
if ( is_multisite() ) {
|
423 |
+
echo '<p><a href="' . $url_home . "sitemap_" . $home_url . '.xml" target="_new">' . __( "Your Sitemap file", 'sitemap' ) . "</a> " . __( "is created in the site root directory.", 'sitemap' ) . "</p>";
|
424 |
+
} else {
|
425 |
+
echo '<p><a href="' . $url_home . 'sitemap.xml" target="_new">' . __( "Your Sitemap file", 'sitemap' ) . "</a> " . __( "is created in the site root directory.", 'sitemap' ) . "</p>";
|
426 |
+
}
|
427 |
}
|
428 |
/*========================================== Recreating sitemap file ====================================*/
|
429 |
if ( is_multisite() ) {
|
463 |
</td>
|
464 |
</tr>
|
465 |
</table>
|
466 |
+
<div class="bws_pro_version_bloc">
|
467 |
+
<div class="bws_pro_version_table_bloc">
|
468 |
+
<div class="bws_table_bg"></div>
|
469 |
+
<table class="form-table bws_pro_version">
|
470 |
+
<tr valign="top">
|
471 |
+
<th><?php _e( 'XML Sitemap "Change Frequency" parameter', 'sitemap_pro' ); ?></th>
|
472 |
+
<td>
|
473 |
+
<select name="gglstmppr_sitemap_change_frequency">
|
474 |
+
<option value="always"><?php _e( 'Always', 'sitemap_pro' ); ?></option>
|
475 |
+
<option value="hourly"><?php _e( 'Hourly', 'sitemap_pro' ); ?></option>
|
476 |
+
<option value="daily"><?php _e( 'Daily', 'sitemap_pro' ); ?></option>
|
477 |
+
<option value="weekly"><?php _e( 'Weekly', 'sitemap_pro' ); ?></option>
|
478 |
+
<option value="monthly"><?php _e( 'Monthly', 'sitemap_pro' ); ?></option>
|
479 |
+
<option value="yearly"><?php _e( 'Yearly', 'sitemap_pro' ); ?></option>
|
480 |
+
<option value="never"><?php _e( 'Never', 'sitemap_pro' ); ?></option>
|
481 |
+
</select><br />
|
482 |
+
<span style="color: #888888;font-size: 10px;"><?php _e( '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.', 'sitemap_pro' ); ?></span>
|
483 |
+
</td>
|
484 |
+
</tr>
|
485 |
+
</table>
|
486 |
+
</div>
|
487 |
+
<div class="bws_pro_version_tooltip">
|
488 |
+
<div class="bws_info">
|
489 |
+
<?php _e( 'Unlock premium options by upgrading to a PRO version.', 'sitemap' ); ?>
|
490 |
+
<a href="http://bestwebsoft.com/plugin/google-sitemap-pro/?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>
|
491 |
+
</div>
|
492 |
+
<a class="bws_button" href="http://bestwebsoft.com/plugin/google-sitemap-pro/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>#purchase" target="_blank" title="Google Sitemap Pro">
|
493 |
+
<?php _e( 'Go', 'sitemap' ); ?> <strong>PRO</strong>
|
494 |
+
</a>
|
495 |
+
<div class="clear"></div>
|
496 |
+
</div>
|
497 |
+
</div>
|
498 |
<table class="form-table">
|
499 |
<?php if ( ! function_exists( 'curl_init' ) ) { ?>
|
500 |
<tr valign="top">
|
533 |
<?php if ( isset( $au ) && false !== $au && ( $_POST['gglstmp_email'] ) && ( $_POST['gglstmp_passwd'] ) ) {
|
534 |
if ( "inf" == $_POST['gglstmp_menu'] ) {
|
535 |
gglstmp_info_site( $au );/* Getting info about the site in google webmaster tools account */
|
536 |
+
} else if ( "ad" == $_POST['gglstmp_menu'] ) {
|
537 |
gglstmp_add_site( $au ); /* Adding site and verifying its ownership */
|
538 |
gglstmp_add_sitemap( $au );/* Adding sitemap file to the google webmaster tools account */
|
539 |
} else if ( "del" == $_POST['gglstmp_menu'] ) {
|
552 |
</div>
|
553 |
</div>
|
554 |
<?php } elseif ( 'extra' == $_GET['action'] ) { ?>
|
555 |
+
<div class="bws_pro_version_bloc">
|
556 |
+
<div class="bws_pro_version_table_bloc">
|
557 |
+
<div class="bws_table_bg"></div>
|
558 |
+
<table class="form-table bws_pro_version">
|
559 |
+
<tr valign="top">
|
560 |
+
<td colspan="2">
|
561 |
+
<?php _e( 'Please choose the necessary post types the links to which are to be added to the sitemap:', 'sitemap' ); ?>
|
562 |
+
</td>
|
563 |
+
</tr>
|
564 |
+
<tr valign="top">
|
565 |
+
<td colspan="2">
|
566 |
+
<label>
|
567 |
+
<input disabled="disabled" checked="checked" id="gglstmppr_jstree_url" type="checkbox" name="gglstmppr_jstree_url" value="1" />
|
568 |
+
<?php _e( "Show URL for pages", 'sitemap' );?>
|
569 |
+
</label>
|
570 |
+
</td>
|
571 |
+
</tr>
|
572 |
+
<tr valign="top">
|
573 |
+
<td colspan="2">
|
574 |
+
<img src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="<?php _e( "Example of site pages' tree", 'sitemap' ); ?>" title="<?php _e( "Example of site pages' tree", 'sitemap' ); ?>" />
|
575 |
+
</td>
|
576 |
+
</tr>
|
577 |
+
<tr valign="top">
|
578 |
+
<td colspan="2">
|
579 |
+
<input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'sitemap' ); ?>" />
|
580 |
+
</td>
|
581 |
+
</tr>
|
582 |
+
</table>
|
583 |
+
</div>
|
584 |
+
<div class="bws_pro_version_tooltip">
|
585 |
+
<div class="bws_info">
|
586 |
+
<?php _e( 'Unlock premium options by upgrading to a PRO version.', 'sitemap' ); ?>
|
587 |
+
<a href="http://bestwebsoft.com/plugin/google-sitemap-pro/?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>
|
588 |
+
</div>
|
589 |
+
<a class="bws_button" href="http://bestwebsoft.com/plugin/google-sitemap-pro/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>#purchase" target="_blank" title="Google Sitemap Pro">
|
590 |
+
<?php _e( 'Go', 'sitemap' ); ?> <strong>PRO</strong>
|
591 |
+
</a>
|
592 |
+
<div class="clear"></div>
|
593 |
+
</div>
|
594 |
+
</div>
|
595 |
<?php } elseif ( 'go_pro' == $_GET['action'] ) { ?>
|
596 |
<?php if ( isset( $pro_plugin_is_activated ) && true === $pro_plugin_is_activated ) { ?>
|
597 |
<script type="text/javascript">
|
648 |
return $output;
|
649 |
} else {
|
650 |
if ( false === strpos( $output, 'Sitemap' ) ) {
|
|
|
|
|
651 |
if ( is_multisite() ) {
|
652 |
$home_url = preg_replace( "/[^a-zA-ZА-Яа-я0-9\s]/", "_", str_replace( 'http://', '', str_replace( 'https://', '', home_url() ) ) );
|
653 |
+
$output .= "Sitemap: " . home_url( "/" ) . "sitemap_" . $home_url . ".xml";
|
654 |
} else {
|
655 |
+
$output .= "Sitemap: " . home_url( "/" ) . "sitemap.xml";
|
656 |
}
|
657 |
return $output;
|
658 |
}
|
663 |
/*============================================ Function for adding style ====================*/
|
664 |
if ( ! function_exists( 'gglstmp_add_plugin_stylesheet' ) ) {
|
665 |
function gglstmp_add_plugin_stylesheet() {
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
if ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] )
|
667 |
wp_enqueue_script( 'gglstmp_script', plugins_url( 'js/script.js' , __FILE__ ) );
|
668 |
}
|
845 |
if ( $hook_suffix == 'plugins.php' ) {
|
846 |
$banner_array = array(
|
847 |
array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
|
848 |
+
array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
|
849 |
+
array( 'gglmps_hide_banner_on_plugin_page', 'bws-google-maps/bws-google-maps.php', '1.2' ),
|
850 |
array( 'fcbkbttn_hide_banner_on_plugin_page', 'facebook-button-plugin/facebook-button-plugin.php', '2.29' ),
|
851 |
array( 'twttr_hide_banner_on_plugin_page', 'twitter-plugin/twitter.php', '2.34' ),
|
852 |
array( 'pdfprnt_hide_banner_on_plugin_page', 'pdf-print/pdf-print.php', '1.7.1' ),
|
872 |
if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
|
873 |
echo '<script type="text/javascript" src="' . plugins_url( 'js/c_o_o_k_i_e.js', __FILE__ ) . '"></script>';
|
874 |
$bstwbsftwppdtplgns_cookie_add = true;
|
875 |
+
} ?>
|
876 |
+
<script type="text/javascript">
|
877 |
(function($) {
|
878 |
$(document).ready( function() {
|
879 |
var hide_message = $.cookie( "gglstmp_hide_banner_on_plugin_page" );
|
880 |
if ( hide_message == "true") {
|
881 |
$( ".gglstmp_message" ).css( "display", "none" );
|
882 |
+
} else {
|
883 |
+
$( ".gglstmp_message" ).css( "display", "block" );
|
884 |
};
|
885 |
$( ".gglstmp_close_icon" ).click( function() {
|
886 |
$( ".gglstmp_message" ).css( "display", "none" );
|
890 |
})(jQuery);
|
891 |
</script>
|
892 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
893 |
+
<div class="gglstmp_message bws_banner_on_plugin_page" style="display: none;">
|
894 |
+
<img class="gglstmp_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
|
895 |
+
<div class="button_div">
|
896 |
+
<a class="button" target="_blank" href="http://bestwebsoft.com/plugin/google-sitemap-pro/?k=8fbb5d23fd00bdcb213d6c0985d16ec5&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( 'Learn More', 'sitemap' ); ?></a>
|
897 |
+
</div>
|
898 |
<div class="text">
|
899 |
+
<?php _e( "It's time to upgrade your <strong>Google Sitemap plugin</strong> to <strong>PRO</strong> version", 'sitemap' ); ?>!<br />
|
900 |
+
<span><?php _e( 'Extend standard plugin functionality with new great options', 'sitemap' ); ?>.</span>
|
901 |
+
</div>
|
902 |
+
<div class="icon">
|
903 |
+
<img title="" src="<?php echo plugins_url( 'images/banner.png', __FILE__ ); ?>" alt=""/>
|
904 |
+
</div>
|
905 |
</div>
|
906 |
+
</div>
|
907 |
+
<?php break;
|
908 |
}
|
909 |
if ( isset( $all_plugins[ $value[1] ] ) && $all_plugins[ $value[1] ]["Version"] >= $value[2] && ( 0 < count( preg_grep( '/' . str_replace( '/', '\/', $value[1] ) . '/', $active_plugins ) ) || is_plugin_active_for_network( $value[1] ) ) && ! isset( $_COOKIE[ $value[0] ] ) ) {
|
910 |
break;
|
languages/sitemap-ru_RU.mo
CHANGED
Binary file
|
languages/sitemap-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,361 +16,379 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:
|
20 |
msgid "BWS Plugins"
|
21 |
msgstr "Плагины BWS"
|
22 |
|
23 |
-
#: google-sitemap-plugin.php:
|
24 |
msgid "Google Sitemap Settings"
|
25 |
msgstr "Настройки Google Sitemap"
|
26 |
|
27 |
-
#: google-sitemap-plugin.php:
|
28 |
-
#: google-sitemap-plugin.php:
|
29 |
msgid "Google Sitemap"
|
30 |
msgstr "Карта сайта Google"
|
31 |
|
32 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "Your Sitemap file is created in the site root directory."
|
34 |
msgstr "Карта сайта для вашего сайта создана в корне основной директории."
|
35 |
|
36 |
-
#: google-sitemap-plugin.php:
|
37 |
-
#: google-sitemap-plugin.php:
|
38 |
msgid "Settings saved."
|
39 |
msgstr "Настройки сохранены."
|
40 |
|
41 |
-
#: google-sitemap-plugin.php:
|
42 |
msgid "Please enter your login and password for remote work with Google Webmaster Tools"
|
43 |
msgstr "Пожалуйста, введите Ваш логин и пароль для удаленной работы с Google Webmaster Tools"
|
44 |
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
msgid "You should choose at least one action for remote work with Google Webmaster Tools"
|
47 |
msgstr "Вы должны выбрать хотя бы одно действие для удаленной работы с Google Webmaster Tools,"
|
48 |
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
msgid "Login and password do not match. Please try again"
|
51 |
msgstr "Логин и пароль не совпадают, попробуйте еще раз, пожалуйста"
|
52 |
|
53 |
-
#: google-sitemap-plugin.php:
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
msgid "Wrong license key"
|
56 |
msgstr "Неправильный лицензионный ключ"
|
57 |
|
58 |
-
#: google-sitemap-plugin.php:
|
59 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
60 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Приносим извинения за неудобства."
|
61 |
|
62 |
-
#: google-sitemap-plugin.php:
|
63 |
msgid "This license key is bind to another site"
|
64 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
65 |
|
66 |
-
#: google-sitemap-plugin.php:
|
67 |
-
#: google-sitemap-plugin.php:
|
68 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
69 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
70 |
|
71 |
-
#: google-sitemap-plugin.php:
|
72 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
73 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
74 |
|
75 |
-
#: google-sitemap-plugin.php:
|
76 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
77 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
78 |
|
79 |
-
#: google-sitemap-plugin.php:
|
80 |
-
#: google-sitemap-plugin.php:
|
81 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
82 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
83 |
|
84 |
-
#: google-sitemap-plugin.php:
|
85 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
86 |
msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
|
87 |
|
88 |
-
#: google-sitemap-plugin.php:
|
89 |
msgid "Please, enter Your license key"
|
90 |
msgstr "Пожплуйста, введите Ваш лицензионный ключ"
|
91 |
|
92 |
-
#: google-sitemap-plugin.php:
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
msgid "Settings"
|
96 |
msgstr "Настройки"
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
msgid "Extra settings"
|
100 |
msgstr "Экстра настройки"
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
msgid "Go PRO"
|
104 |
msgstr "Перейти на PRO версию"
|
105 |
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
msgid "Notice:"
|
108 |
msgstr "Внимание:"
|
109 |
|
110 |
-
#: google-sitemap-plugin.php:
|
111 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
112 |
msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
|
113 |
|
114 |
-
#: google-sitemap-plugin.php:
|
115 |
msgid "The Sitemap file"
|
116 |
msgstr "Файл карты сайта"
|
117 |
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below. All other actions will overwrite the existing file."
|
120 |
msgstr "уже существует. Если вы хотите изменить ее на новую карту сайта, выберите соответствующее действие внизу. Все остальные действия перезапишут существующий файл."
|
121 |
|
122 |
-
#: google-sitemap-plugin.php:
|
123 |
msgid "Your Sitemap file"
|
124 |
msgstr "Ваш файл карты сайта"
|
125 |
|
126 |
-
#: google-sitemap-plugin.php:
|
127 |
msgid "is created in the site root directory."
|
128 |
msgstr "создана в корне основной директории."
|
129 |
|
130 |
-
#: google-sitemap-plugin.php:
|
131 |
-
#: google-sitemap-plugin.php:
|
132 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
133 |
msgstr "Если вы не хотите добавить файл карты сайта автоматически в Google Webmaster Tools, Вы можете сделать это через"
|
134 |
|
135 |
-
#: google-sitemap-plugin.php:
|
136 |
-
#: google-sitemap-plugin.php:
|
137 |
msgid "this"
|
138 |
msgstr "эту"
|
139 |
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
-
#: google-sitemap-plugin.php:
|
142 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
143 |
msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
|
144 |
|
145 |
-
#: google-sitemap-plugin.php:
|
146 |
msgid "I want to create a new sitemap file or update the existing one"
|
147 |
msgstr "Я хочу создать новую карту сайта или обновить существующую"
|
148 |
|
149 |
-
#: google-sitemap-plugin.php:
|
150 |
msgid "I want to add sitemap file path in robots.txt"
|
151 |
msgstr "Я хочу добавить карту сайта в robots.txt"
|
152 |
|
153 |
-
#: google-sitemap-plugin.php:
|
154 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
155 |
msgstr "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить карту сайта в robots.txt"
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "I want to add sitemap file path in"
|
159 |
msgstr "Я хочу добавить карту сайта в"
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
-
#: google-sitemap-plugin.php:
|
163 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
164 |
msgstr "Пожалуйста, выберите те типы постов, ссылки на которые будут добавлены в карту сайта:"
|
165 |
|
166 |
-
#: google-sitemap-plugin.php:
|
167 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
168 |
msgstr "Параметр \"Change Frequency\" в карте сайта"
|
169 |
|
170 |
-
#: google-sitemap-plugin.php:
|
171 |
msgid "Always"
|
172 |
msgstr "Всегда"
|
173 |
|
174 |
-
#: google-sitemap-plugin.php:
|
175 |
msgid "Hourly"
|
176 |
msgstr "Ежечасно"
|
177 |
|
178 |
-
#: google-sitemap-plugin.php:
|
179 |
msgid "Daily"
|
180 |
msgstr "Ежедневно"
|
181 |
|
182 |
-
#: google-sitemap-plugin.php:
|
183 |
msgid "Weekly"
|
184 |
msgstr "Еженедельно"
|
185 |
|
186 |
-
#: google-sitemap-plugin.php:
|
187 |
msgid "Monthly"
|
188 |
msgstr "Ежемесячно"
|
189 |
|
190 |
-
#: google-sitemap-plugin.php:
|
191 |
msgid "Yearly"
|
192 |
msgstr "Ежегодно"
|
193 |
|
194 |
-
#: google-sitemap-plugin.php:
|
195 |
msgid "Never"
|
196 |
msgstr "Никогда"
|
197 |
|
198 |
-
#: google-sitemap-plugin.php:
|
199 |
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."
|
200 |
msgstr "Это значение используется в файле карты сайта и предоставляет общую информацию для поисковых систем. Сама карта сайта создается один раз и будет перезаписана вновь при создании или обновлении какой-либо страницы или поста."
|
201 |
|
202 |
-
#: google-sitemap-plugin.php:
|
203 |
-
#: google-sitemap-plugin.php:
|
204 |
-
msgid "
|
205 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
|
207 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
208 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
209 |
msgstr "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить карту сайта в Google аккаунт автоматически."
|
210 |
|
211 |
-
#: google-sitemap-plugin.php:
|
212 |
msgid "Please enter your Google account login and password in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
213 |
msgstr "Введите свой логин и пароль для Google аккаунта, чтобы иметь возможность добавлять или удалять сайт и карту сайта автоматически в ваш аккаунт или же получить информацию об этом сайте из Google Webmaster Tools."
|
214 |
|
215 |
-
#: google-sitemap-plugin.php:
|
216 |
msgid "Settings for remote work with Google Webmaster Tools"
|
217 |
msgstr "Настройки для удаленной работы с Google Webmaster Tools"
|
218 |
|
219 |
-
#: google-sitemap-plugin.php:
|
220 |
msgid "Login"
|
221 |
msgstr "Логин"
|
222 |
|
223 |
-
#: google-sitemap-plugin.php:
|
224 |
msgid "Password"
|
225 |
msgstr "Пароль"
|
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 |
-
#: google-sitemap-plugin.php:
|
237 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
238 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
239 |
|
240 |
-
#: google-sitemap-plugin.php:
|
241 |
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
242 |
msgstr "В случае, если вы не в состоянии добавить карту сайта в Google автоматически с помощью этого плагина, можно сделать это вручную"
|
243 |
|
244 |
-
#: google-sitemap-plugin.php:
|
245 |
-
msgid "View
|
246 |
-
msgstr "Просмотреть
|
247 |
|
248 |
-
#: google-sitemap-plugin.php:
|
249 |
-
#: google-sitemap-plugin.php:
|
250 |
msgid "Save Changes"
|
251 |
msgstr "Сохранить изменения"
|
252 |
|
253 |
-
#: google-sitemap-plugin.php:
|
254 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
255 |
msgstr " Если вам понравился плагин, то поставьте нам 5 звезд на WordPress"
|
256 |
|
257 |
-
#: google-sitemap-plugin.php:
|
258 |
msgid "Rate the plugin"
|
259 |
msgstr "Оценить плагин"
|
260 |
|
261 |
-
#: google-sitemap-plugin.php:
|
262 |
msgid "If there is something wrong about it, please contact us"
|
263 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
264 |
|
265 |
-
#: google-sitemap-plugin.php:
|
266 |
msgid "Show URL for pages"
|
267 |
msgstr "Отображать URL для страниц"
|
268 |
|
269 |
-
#: google-sitemap-plugin.php:
|
270 |
msgid "Example of site pages' tree"
|
271 |
msgstr "Пример дерева страниц сайта"
|
272 |
|
273 |
-
#: google-sitemap-plugin.php:
|
274 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
275 |
msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
276 |
|
277 |
-
#: google-sitemap-plugin.php:
|
278 |
msgid "Please, go to"
|
279 |
msgstr "Пожалуйста, перейдите на"
|
280 |
|
281 |
-
#: google-sitemap-plugin.php:
|
282 |
msgid "the setting page"
|
283 |
msgstr "страницу настроек"
|
284 |
|
285 |
-
#: google-sitemap-plugin.php:
|
286 |
msgid "You will be redirected automatically in 5 seconds."
|
287 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
288 |
|
289 |
-
#: google-sitemap-plugin.php:
|
290 |
msgid "You can download and activate"
|
291 |
msgstr "Вы можете скачать и активировать"
|
292 |
|
293 |
-
#: google-sitemap-plugin.php:
|
294 |
msgid "version of this plugin by entering Your license key."
|
295 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
296 |
|
297 |
-
#: google-sitemap-plugin.php:
|
298 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
299 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
300 |
|
301 |
-
#: google-sitemap-plugin.php:
|
302 |
msgid "(your username is the email you specify when purchasing the product)."
|
303 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
304 |
|
305 |
-
#: google-sitemap-plugin.php:
|
306 |
-
#: google-sitemap-plugin.php:
|
307 |
msgid "Go!"
|
308 |
msgstr "Обновить!"
|
309 |
|
310 |
-
#: google-sitemap-plugin.php:
|
311 |
-
msgid "requires"
|
312 |
-
msgstr "требует"
|
313 |
-
|
314 |
-
#: google-sitemap-plugin.php:646
|
315 |
-
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
316 |
-
msgstr "или выше, поэтому он был деактивирован! Пожалуйста обновите WordPress и попробуйте еще раз."
|
317 |
-
|
318 |
-
#: google-sitemap-plugin.php:646
|
319 |
-
msgid "Back to the WordPress"
|
320 |
-
msgstr "Вернуться к WordPress на"
|
321 |
-
|
322 |
-
#: google-sitemap-plugin.php:646
|
323 |
-
msgid "Plugins page"
|
324 |
-
msgstr "Страницу плагинов"
|
325 |
-
|
326 |
-
#: google-sitemap-plugin.php:692
|
327 |
msgid "This site is not added to the Google Webmaster Tools account"
|
328 |
msgstr "Данный сайт не добавлен в аккаунт Google Webmaster Tools"
|
329 |
|
330 |
-
#: google-sitemap-plugin.php:
|
331 |
msgid "Site URL:"
|
332 |
msgstr "URL сайта:"
|
333 |
|
334 |
-
#: google-sitemap-plugin.php:
|
335 |
msgid "Site verification:"
|
336 |
msgstr "Верификация сайта:"
|
337 |
|
338 |
-
#: google-sitemap-plugin.php:
|
339 |
msgid "verified"
|
340 |
msgstr "верифицрован"
|
341 |
|
342 |
-
#: google-sitemap-plugin.php:
|
343 |
msgid "not verified"
|
344 |
msgstr "не верифицирован"
|
345 |
|
346 |
-
#: google-sitemap-plugin.php:
|
347 |
msgid "Sitemap file:"
|
348 |
msgstr "Файл карты сайта:"
|
349 |
|
350 |
-
#: google-sitemap-plugin.php:
|
351 |
msgid "added"
|
352 |
msgstr "добавлен"
|
353 |
|
354 |
-
#: google-sitemap-plugin.php:
|
355 |
msgid "not added"
|
356 |
msgstr "не добавлен"
|
357 |
|
358 |
-
#: google-sitemap-plugin.php:
|
359 |
msgid "FAQ"
|
360 |
msgstr "Часто задаваемые вопросы"
|
361 |
|
362 |
-
#: google-sitemap-plugin.php:
|
363 |
msgid "Support"
|
364 |
msgstr "Тех.поддержка"
|
365 |
|
366 |
-
#: google-sitemap-plugin.php:
|
367 |
msgid "It's time to upgrade your <strong>Google Sitemap plugin</strong> to <strong>PRO</strong> version"
|
368 |
msgstr "Пора обновить ваш <strong>плагин Google Sitemap</strong> до <strong>PRO</strong> версии"
|
369 |
|
370 |
-
#: google-sitemap-plugin.php:
|
371 |
msgid "Extend standard plugin functionality with new great options"
|
372 |
msgstr "Расширение стандартного функционала плагина новыми прекрасными опциями"
|
373 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
374 |
#~ msgid "Google Sitemap options"
|
375 |
#~ msgstr "Опции карты сайта Google"
|
376 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-11 14:05+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-11 14:06+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:73
|
20 |
msgid "BWS Plugins"
|
21 |
msgstr "Плагины BWS"
|
22 |
|
23 |
+
#: google-sitemap-plugin.php:74
|
24 |
msgid "Google Sitemap Settings"
|
25 |
msgstr "Настройки Google Sitemap"
|
26 |
|
27 |
+
#: google-sitemap-plugin.php:74
|
28 |
+
#: google-sitemap-plugin.php:402
|
29 |
msgid "Google Sitemap"
|
30 |
msgstr "Карта сайта Google"
|
31 |
|
32 |
+
#: google-sitemap-plugin.php:137
|
33 |
+
msgid "requires"
|
34 |
+
msgstr "требует"
|
35 |
+
|
36 |
+
#: google-sitemap-plugin.php:137
|
37 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
38 |
+
msgstr "или выше, поэтому он был деактивирован! Пожалуйста обновите WordPress и попробуйте еще раз."
|
39 |
+
|
40 |
+
#: google-sitemap-plugin.php:137
|
41 |
+
msgid "Back to the WordPress"
|
42 |
+
msgstr "Вернуться к WordPress на"
|
43 |
+
|
44 |
+
#: google-sitemap-plugin.php:137
|
45 |
+
msgid "Plugins page"
|
46 |
+
msgstr "Страницу плагинов"
|
47 |
+
|
48 |
+
#: google-sitemap-plugin.php:211
|
49 |
msgid "Your Sitemap file is created in the site root directory."
|
50 |
msgstr "Карта сайта для вашего сайта создана в корне основной директории."
|
51 |
|
52 |
+
#: google-sitemap-plugin.php:218
|
53 |
+
#: google-sitemap-plugin.php:247
|
54 |
msgid "Settings saved."
|
55 |
msgstr "Настройки сохранены."
|
56 |
|
57 |
+
#: google-sitemap-plugin.php:258
|
58 |
msgid "Please enter your login and password for remote work with Google Webmaster Tools"
|
59 |
msgstr "Пожалуйста, введите Ваш логин и пароль для удаленной работы с Google Webmaster Tools"
|
60 |
|
61 |
+
#: google-sitemap-plugin.php:260
|
62 |
msgid "You should choose at least one action for remote work with Google Webmaster Tools"
|
63 |
msgstr "Вы должны выбрать хотя бы одно действие для удаленной работы с Google Webmaster Tools,"
|
64 |
|
65 |
+
#: google-sitemap-plugin.php:288
|
66 |
msgid "Login and password do not match. Please try again"
|
67 |
msgstr "Логин и пароль не совпадают, попробуйте еще раз, пожалуйста"
|
68 |
|
69 |
+
#: google-sitemap-plugin.php:299
|
70 |
+
#: google-sitemap-plugin.php:337
|
71 |
msgid "Wrong license key"
|
72 |
msgstr "Неправильный лицензионный ключ"
|
73 |
|
74 |
+
#: google-sitemap-plugin.php:330
|
75 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
76 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Приносим извинения за неудобства."
|
77 |
|
78 |
+
#: google-sitemap-plugin.php:339
|
79 |
msgid "This license key is bind to another site"
|
80 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
81 |
|
82 |
+
#: google-sitemap-plugin.php:341
|
83 |
+
#: google-sitemap-plugin.php:619
|
84 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
85 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
86 |
|
87 |
+
#: google-sitemap-plugin.php:358
|
88 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
89 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
90 |
|
91 |
+
#: google-sitemap-plugin.php:364
|
92 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
93 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
94 |
|
95 |
+
#: google-sitemap-plugin.php:368
|
96 |
+
#: google-sitemap-plugin.php:377
|
97 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
98 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
99 |
|
100 |
+
#: google-sitemap-plugin.php:381
|
101 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
102 |
msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
|
103 |
|
104 |
+
#: google-sitemap-plugin.php:396
|
105 |
msgid "Please, enter Your license key"
|
106 |
msgstr "Пожплуйста, введите Ваш лицензионный ключ"
|
107 |
|
108 |
+
#: google-sitemap-plugin.php:404
|
109 |
+
#: google-sitemap-plugin.php:815
|
110 |
+
#: google-sitemap-plugin.php:826
|
111 |
msgid "Settings"
|
112 |
msgstr "Настройки"
|
113 |
|
114 |
+
#: google-sitemap-plugin.php:405
|
115 |
msgid "Extra settings"
|
116 |
msgstr "Экстра настройки"
|
117 |
|
118 |
+
#: google-sitemap-plugin.php:406
|
119 |
msgid "Go PRO"
|
120 |
msgstr "Перейти на PRO версию"
|
121 |
|
122 |
+
#: google-sitemap-plugin.php:408
|
123 |
msgid "Notice:"
|
124 |
msgstr "Внимание:"
|
125 |
|
126 |
+
#: google-sitemap-plugin.php:408
|
127 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
128 |
msgstr "Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, не забудьте нажать кнопку \"Сохранить\"."
|
129 |
|
130 |
+
#: google-sitemap-plugin.php:415
|
131 |
msgid "The Sitemap file"
|
132 |
msgstr "Файл карты сайта"
|
133 |
|
134 |
+
#: google-sitemap-plugin.php:415
|
135 |
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below. All other actions will overwrite the existing file."
|
136 |
msgstr "уже существует. Если вы хотите изменить ее на новую карту сайта, выберите соответствующее действие внизу. Все остальные действия перезапишут существующий файл."
|
137 |
|
138 |
+
#: google-sitemap-plugin.php:418
|
139 |
msgid "Your Sitemap file"
|
140 |
msgstr "Ваш файл карты сайта"
|
141 |
|
142 |
+
#: google-sitemap-plugin.php:418
|
143 |
msgid "is created in the site root directory."
|
144 |
msgstr "создана в корне основной директории."
|
145 |
|
146 |
+
#: google-sitemap-plugin.php:422
|
147 |
+
#: google-sitemap-plugin.php:424
|
148 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
149 |
msgstr "Если вы не хотите добавить файл карты сайта автоматически в Google Webmaster Tools, Вы можете сделать это через"
|
150 |
|
151 |
+
#: google-sitemap-plugin.php:422
|
152 |
+
#: google-sitemap-plugin.php:424
|
153 |
msgid "this"
|
154 |
msgstr "эту"
|
155 |
|
156 |
+
#: google-sitemap-plugin.php:422
|
157 |
+
#: google-sitemap-plugin.php:424
|
158 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
159 |
msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
|
160 |
|
161 |
+
#: google-sitemap-plugin.php:429
|
162 |
msgid "I want to create a new sitemap file or update the existing one"
|
163 |
msgstr "Я хочу создать новую карту сайта или обновить существующую"
|
164 |
|
165 |
+
#: google-sitemap-plugin.php:435
|
166 |
msgid "I want to add sitemap file path in robots.txt"
|
167 |
msgstr "Я хочу добавить карту сайта в robots.txt"
|
168 |
|
169 |
+
#: google-sitemap-plugin.php:436
|
170 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
171 |
msgstr "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить карту сайта в robots.txt"
|
172 |
|
173 |
+
#: google-sitemap-plugin.php:442
|
174 |
msgid "I want to add sitemap file path in"
|
175 |
msgstr "Я хочу добавить карту сайта в"
|
176 |
|
177 |
+
#: google-sitemap-plugin.php:447
|
178 |
+
#: google-sitemap-plugin.php:553
|
179 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
180 |
msgstr "Пожалуйста, выберите те типы постов, ссылки на которые будут добавлены в карту сайта:"
|
181 |
|
182 |
+
#: google-sitemap-plugin.php:463
|
183 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
184 |
msgstr "Параметр \"Change Frequency\" в карте сайта"
|
185 |
|
186 |
+
#: google-sitemap-plugin.php:466
|
187 |
msgid "Always"
|
188 |
msgstr "Всегда"
|
189 |
|
190 |
+
#: google-sitemap-plugin.php:467
|
191 |
msgid "Hourly"
|
192 |
msgstr "Ежечасно"
|
193 |
|
194 |
+
#: google-sitemap-plugin.php:468
|
195 |
msgid "Daily"
|
196 |
msgstr "Ежедневно"
|
197 |
|
198 |
+
#: google-sitemap-plugin.php:469
|
199 |
msgid "Weekly"
|
200 |
msgstr "Еженедельно"
|
201 |
|
202 |
+
#: google-sitemap-plugin.php:470
|
203 |
msgid "Monthly"
|
204 |
msgstr "Ежемесячно"
|
205 |
|
206 |
+
#: google-sitemap-plugin.php:471
|
207 |
msgid "Yearly"
|
208 |
msgstr "Ежегодно"
|
209 |
|
210 |
+
#: google-sitemap-plugin.php:472
|
211 |
msgid "Never"
|
212 |
msgstr "Никогда"
|
213 |
|
214 |
+
#: google-sitemap-plugin.php:474
|
215 |
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."
|
216 |
msgstr "Это значение используется в файле карты сайта и предоставляет общую информацию для поисковых систем. Сама карта сайта создается один раз и будет перезаписана вновь при создании или обновлении какой-либо страницы или поста."
|
217 |
|
218 |
+
#: google-sitemap-plugin.php:481
|
219 |
+
#: google-sitemap-plugin.php:578
|
220 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
221 |
+
msgstr "Активируйте премиум опции обновившись до PRO версии."
|
222 |
+
|
223 |
+
#: google-sitemap-plugin.php:482
|
224 |
+
#: google-sitemap-plugin.php:579
|
225 |
+
#: google-sitemap-plugin.php:888
|
226 |
+
msgid "Learn More"
|
227 |
+
msgstr "Подробнее"
|
228 |
|
229 |
+
#: google-sitemap-plugin.php:485
|
230 |
+
#: google-sitemap-plugin.php:582
|
231 |
+
msgid "Go"
|
232 |
+
msgstr "Перейти на"
|
233 |
+
|
234 |
+
#: google-sitemap-plugin.php:494
|
235 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
236 |
msgstr "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить карту сайта в Google аккаунт автоматически."
|
237 |
|
238 |
+
#: google-sitemap-plugin.php:500
|
239 |
msgid "Please enter your Google account login and password in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
240 |
msgstr "Введите свой логин и пароль для Google аккаунта, чтобы иметь возможность добавлять или удалять сайт и карту сайта автоматически в ваш аккаунт или же получить информацию об этом сайте из Google Webmaster Tools."
|
241 |
|
242 |
+
#: google-sitemap-plugin.php:504
|
243 |
msgid "Settings for remote work with Google Webmaster Tools"
|
244 |
msgstr "Настройки для удаленной работы с Google Webmaster Tools"
|
245 |
|
246 |
+
#: google-sitemap-plugin.php:506
|
247 |
msgid "Login"
|
248 |
msgstr "Логин"
|
249 |
|
250 |
+
#: google-sitemap-plugin.php:507
|
251 |
msgid "Password"
|
252 |
msgstr "Пароль"
|
253 |
|
254 |
+
#: google-sitemap-plugin.php:508
|
255 |
msgid "I want to add this site to Google Webmaster Tools"
|
256 |
msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
|
257 |
|
258 |
+
#: google-sitemap-plugin.php:509
|
259 |
msgid "I want to delete this site from Google Webmaster Tools"
|
260 |
msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
|
261 |
|
262 |
+
#: google-sitemap-plugin.php:510
|
263 |
+
#: google-sitemap-plugin.php:701
|
264 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
265 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
266 |
|
267 |
+
#: google-sitemap-plugin.php:512
|
268 |
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
269 |
msgstr "В случае, если вы не в состоянии добавить карту сайта в Google автоматически с помощью этого плагина, можно сделать это вручную"
|
270 |
|
271 |
+
#: google-sitemap-plugin.php:513
|
272 |
+
msgid "View the Instruction"
|
273 |
+
msgstr "Просмотреть Инструкцию"
|
274 |
|
275 |
+
#: google-sitemap-plugin.php:521
|
276 |
+
#: google-sitemap-plugin.php:571
|
277 |
msgid "Save Changes"
|
278 |
msgstr "Сохранить изменения"
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:538
|
281 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
282 |
msgstr " Если вам понравился плагин, то поставьте нам 5 звезд на WordPress"
|
283 |
|
284 |
+
#: google-sitemap-plugin.php:539
|
285 |
msgid "Rate the plugin"
|
286 |
msgstr "Оценить плагин"
|
287 |
|
288 |
+
#: google-sitemap-plugin.php:542
|
289 |
msgid "If there is something wrong about it, please contact us"
|
290 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
291 |
|
292 |
+
#: google-sitemap-plugin.php:560
|
293 |
msgid "Show URL for pages"
|
294 |
msgstr "Отображать URL для страниц"
|
295 |
|
296 |
+
#: google-sitemap-plugin.php:566
|
297 |
msgid "Example of site pages' tree"
|
298 |
msgstr "Пример дерева страниц сайта"
|
299 |
|
300 |
+
#: google-sitemap-plugin.php:594
|
301 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
302 |
msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
303 |
|
304 |
+
#: google-sitemap-plugin.php:596
|
305 |
msgid "Please, go to"
|
306 |
msgstr "Пожалуйста, перейдите на"
|
307 |
|
308 |
+
#: google-sitemap-plugin.php:596
|
309 |
msgid "the setting page"
|
310 |
msgstr "страницу настроек"
|
311 |
|
312 |
+
#: google-sitemap-plugin.php:597
|
313 |
msgid "You will be redirected automatically in 5 seconds."
|
314 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
315 |
|
316 |
+
#: google-sitemap-plugin.php:602
|
317 |
msgid "You can download and activate"
|
318 |
msgstr "Вы можете скачать и активировать"
|
319 |
|
320 |
+
#: google-sitemap-plugin.php:604
|
321 |
msgid "version of this plugin by entering Your license key."
|
322 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
323 |
|
324 |
+
#: google-sitemap-plugin.php:606
|
325 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
326 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
327 |
|
328 |
+
#: google-sitemap-plugin.php:608
|
329 |
msgid "(your username is the email you specify when purchasing the product)."
|
330 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
331 |
|
332 |
+
#: google-sitemap-plugin.php:616
|
333 |
+
#: google-sitemap-plugin.php:626
|
334 |
msgid "Go!"
|
335 |
msgstr "Обновить!"
|
336 |
|
337 |
+
#: google-sitemap-plugin.php:703
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
338 |
msgid "This site is not added to the Google Webmaster Tools account"
|
339 |
msgstr "Данный сайт не добавлен в аккаунт Google Webmaster Tools"
|
340 |
|
341 |
+
#: google-sitemap-plugin.php:723
|
342 |
msgid "Site URL:"
|
343 |
msgstr "URL сайта:"
|
344 |
|
345 |
+
#: google-sitemap-plugin.php:724
|
346 |
msgid "Site verification:"
|
347 |
msgstr "Верификация сайта:"
|
348 |
|
349 |
+
#: google-sitemap-plugin.php:726
|
350 |
msgid "verified"
|
351 |
msgstr "верифицрован"
|
352 |
|
353 |
+
#: google-sitemap-plugin.php:728
|
354 |
msgid "not verified"
|
355 |
msgstr "не верифицирован"
|
356 |
|
357 |
+
#: google-sitemap-plugin.php:729
|
358 |
msgid "Sitemap file:"
|
359 |
msgstr "Файл карты сайта:"
|
360 |
|
361 |
+
#: google-sitemap-plugin.php:731
|
362 |
msgid "added"
|
363 |
msgstr "добавлен"
|
364 |
|
365 |
+
#: google-sitemap-plugin.php:733
|
366 |
msgid "not added"
|
367 |
msgstr "не добавлен"
|
368 |
|
369 |
+
#: google-sitemap-plugin.php:827
|
370 |
msgid "FAQ"
|
371 |
msgstr "Часто задаваемые вопросы"
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:828
|
374 |
msgid "Support"
|
375 |
msgstr "Тех.поддержка"
|
376 |
|
377 |
+
#: google-sitemap-plugin.php:891
|
378 |
msgid "It's time to upgrade your <strong>Google Sitemap plugin</strong> to <strong>PRO</strong> version"
|
379 |
msgstr "Пора обновить ваш <strong>плагин Google Sitemap</strong> до <strong>PRO</strong> версии"
|
380 |
|
381 |
+
#: google-sitemap-plugin.php:892
|
382 |
msgid "Extend standard plugin functionality with new great options"
|
383 |
msgstr "Расширение стандартного функционала плагина новыми прекрасными опциями"
|
384 |
|
385 |
+
#~ msgid ""
|
386 |
+
#~ "This functionality is available in the Pro version of the plugin. For "
|
387 |
+
#~ "more details, please follow the link"
|
388 |
+
#~ msgstr ""
|
389 |
+
#~ "Данный функционал доступен в Про версии плагина. Для более детальной "
|
390 |
+
#~ "информации смотрите"
|
391 |
+
|
392 |
#~ msgid "Google Sitemap options"
|
393 |
#~ msgstr "Опции карты сайта Google"
|
394 |
|
languages/sitemap-uk.mo
CHANGED
Binary file
|
languages/sitemap-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,370 +16,381 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:
|
20 |
msgid "BWS Plugins"
|
21 |
msgstr "Плагіни BWS"
|
22 |
|
23 |
-
#: google-sitemap-plugin.php:
|
24 |
#, fuzzy
|
25 |
msgid "Google Sitemap Settings"
|
26 |
msgstr "Опції карти сайту Google"
|
27 |
|
28 |
-
#: google-sitemap-plugin.php:
|
29 |
-
#: google-sitemap-plugin.php:
|
30 |
msgid "Google Sitemap"
|
31 |
msgstr "Карта сайту Google"
|
32 |
|
33 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "Your Sitemap file is created in the site root directory."
|
35 |
msgstr "Карта сайту для вашого сайту створена у корені основної директорії."
|
36 |
|
37 |
-
#: google-sitemap-plugin.php:
|
38 |
-
#: google-sitemap-plugin.php:
|
39 |
msgid "Settings saved."
|
40 |
msgstr "Опції збережено."
|
41 |
|
42 |
-
#: google-sitemap-plugin.php:
|
43 |
#, fuzzy
|
44 |
msgid "Please enter your login and password for remote work with Google Webmaster Tools"
|
45 |
msgstr "Установки для віддаленої роботи з google webmaster tools"
|
46 |
|
47 |
-
#: google-sitemap-plugin.php:
|
48 |
#, fuzzy
|
49 |
msgid "You should choose at least one action for remote work with Google Webmaster Tools"
|
50 |
msgstr "Установки для віддаленої роботи з google webmaster tools"
|
51 |
|
52 |
-
#: google-sitemap-plugin.php:
|
53 |
msgid "Login and password do not match. Please try again"
|
54 |
msgstr "Логін та пароль не співпадають. Будь ласка, спробуйте ще раз"
|
55 |
|
56 |
-
#: google-sitemap-plugin.php:
|
57 |
-
#: google-sitemap-plugin.php:
|
58 |
msgid "Wrong license key"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: google-sitemap-plugin.php:
|
62 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: google-sitemap-plugin.php:
|
66 |
msgid "This license key is bind to another site"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: google-sitemap-plugin.php:
|
70 |
-
#: google-sitemap-plugin.php:
|
71 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: google-sitemap-plugin.php:
|
75 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: google-sitemap-plugin.php:
|
83 |
-
#: google-sitemap-plugin.php:
|
84 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: google-sitemap-plugin.php:
|
88 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: google-sitemap-plugin.php:
|
92 |
#, fuzzy
|
93 |
msgid "Please, enter Your license key"
|
94 |
msgstr "Будт ласка, введіть логін та пароль"
|
95 |
|
96 |
-
#: google-sitemap-plugin.php:
|
97 |
-
#: google-sitemap-plugin.php:
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
msgid "Settings"
|
100 |
msgstr "Установки"
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
#, fuzzy
|
104 |
msgid "Extra settings"
|
105 |
msgstr "Установки"
|
106 |
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
msgid "Go PRO"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: google-sitemap-plugin.php:
|
112 |
msgid "Notice:"
|
113 |
msgstr "Повідомлення:"
|
114 |
|
115 |
-
#: google-sitemap-plugin.php:
|
116 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
117 |
msgstr "Установки плагіну було змінено. Щоб зберегти їх, будь ласка, не забудьте натиснути кнопку \"Зберегти зміни\"."
|
118 |
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
#, fuzzy
|
121 |
msgid "The Sitemap file"
|
122 |
msgstr "Файл карти сайту:"
|
123 |
|
124 |
-
#: google-sitemap-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below. All other actions will overwrite the existing file."
|
127 |
msgstr "Карта уже існує. Якщо ви хочете замінити її на нову карту сайту, виберіть відповідну дію внизу. Усі інші дії перезапишуть файл, що снує."
|
128 |
|
129 |
-
#: google-sitemap-plugin.php:
|
130 |
#, fuzzy
|
131 |
msgid "Your Sitemap file"
|
132 |
msgstr "Файл карти сайту:"
|
133 |
|
134 |
-
#: google-sitemap-plugin.php:
|
135 |
#, fuzzy
|
136 |
msgid "is created in the site root directory."
|
137 |
msgstr "Карта сайту для вашого сайту створена у корені основної директорії."
|
138 |
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
142 |
msgstr "Якщо ви не хочете додати файл карти сайту автоматично до Google Webmaster Tools, ви можете зробити це через"
|
143 |
|
144 |
-
#: google-sitemap-plugin.php:
|
145 |
-
#: google-sitemap-plugin.php:
|
146 |
msgid "this"
|
147 |
msgstr "це"
|
148 |
|
149 |
-
#: google-sitemap-plugin.php:
|
150 |
-
#: google-sitemap-plugin.php:
|
151 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
152 |
msgstr "посилання - авторизуйтеся, виберіть сайт, виберіть 'Sitemaps' та заповніть обов’язкове поле"
|
153 |
|
154 |
-
#: google-sitemap-plugin.php:
|
155 |
msgid "I want to create a new sitemap file or update the existing one"
|
156 |
msgstr "Я хочу створити нову карту сайту або оновити ту, що вже існує"
|
157 |
|
158 |
-
#: google-sitemap-plugin.php:
|
159 |
msgid "I want to add sitemap file path in robots.txt"
|
160 |
msgstr "Я хочу додати карту сайту до robots.txt"
|
161 |
|
162 |
-
#: google-sitemap-plugin.php:
|
163 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
164 |
msgstr "Оскільки ви використовуєте мультисайтинг, плагін не доволяє додати карту сайту до robots.txt"
|
165 |
|
166 |
-
#: google-sitemap-plugin.php:
|
167 |
#, fuzzy
|
168 |
msgid "I want to add sitemap file path in"
|
169 |
msgstr "Я хочу додати карту сайту до robots.txt"
|
170 |
|
171 |
-
#: google-sitemap-plugin.php:
|
172 |
-
#: google-sitemap-plugin.php:
|
173 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
174 |
msgstr "Будь ласка, виберіть такі типи записів, посилання на які буде додано до карти сайту:"
|
175 |
|
176 |
-
#: google-sitemap-plugin.php:
|
177 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: google-sitemap-plugin.php:
|
181 |
msgid "Always"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: google-sitemap-plugin.php:
|
185 |
msgid "Hourly"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: google-sitemap-plugin.php:
|
189 |
msgid "Daily"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: google-sitemap-plugin.php:
|
193 |
msgid "Weekly"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: google-sitemap-plugin.php:
|
197 |
msgid "Monthly"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: google-sitemap-plugin.php:
|
201 |
msgid "Yearly"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: google-sitemap-plugin.php:
|
205 |
msgid "Never"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: google-sitemap-plugin.php:
|
209 |
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."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: google-sitemap-plugin.php:
|
213 |
-
#: google-sitemap-plugin.php:
|
214 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
218 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
219 |
msgstr "Ваш хостінг не підтримує сURL, отже ви не можете додати карту сайту до Google акаунту автоматично."
|
220 |
|
221 |
-
#: google-sitemap-plugin.php:
|
222 |
msgid "Please enter your Google account login and password in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
223 |
msgstr "Введіть сюди ваш логін та пароль для Google акаунту, щоб мати можливість додавати або видаляти сайт та карту сайту автоматично до вашого акаунту або отримати інформацію про цей сайт з Google Webmaster Tools."
|
224 |
|
225 |
-
#: google-sitemap-plugin.php:
|
226 |
#, fuzzy
|
227 |
msgid "Settings for remote work with Google Webmaster Tools"
|
228 |
msgstr "Установки для віддаленої роботи з google webmaster tools"
|
229 |
|
230 |
-
#: google-sitemap-plugin.php:
|
231 |
msgid "Login"
|
232 |
msgstr "Логін"
|
233 |
|
234 |
-
#: google-sitemap-plugin.php:
|
235 |
msgid "Password"
|
236 |
msgstr "Пароль"
|
237 |
|
238 |
-
#: google-sitemap-plugin.php:
|
239 |
msgid "I want to add this site to Google Webmaster Tools"
|
240 |
msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
|
241 |
|
242 |
-
#: google-sitemap-plugin.php:
|
243 |
msgid "I want to delete this site from Google Webmaster Tools"
|
244 |
msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
|
245 |
|
246 |
-
#: google-sitemap-plugin.php:
|
247 |
-
#: google-sitemap-plugin.php:
|
248 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
249 |
msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
|
250 |
|
251 |
-
#: google-sitemap-plugin.php:
|
252 |
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: google-sitemap-plugin.php:
|
256 |
-
msgid "View
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: google-sitemap-plugin.php:
|
260 |
-
#: google-sitemap-plugin.php:
|
261 |
msgid "Save Changes"
|
262 |
msgstr "Зберегти зміни"
|
263 |
|
264 |
-
#: google-sitemap-plugin.php:
|
265 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
266 |
msgstr "Якщо Вам сподобався наш плагін, будь ласка, поставте йому п’ять зірок на сайті WordPress"
|
267 |
|
268 |
-
#: google-sitemap-plugin.php:
|
269 |
msgid "Rate the plugin"
|
270 |
msgstr "Оцінити плагін"
|
271 |
|
272 |
-
#: google-sitemap-plugin.php:
|
273 |
msgid "If there is something wrong about it, please contact us"
|
274 |
msgstr "Якщо у вас виникли питання, будь ласка, зв’яжіться з нами"
|
275 |
|
276 |
-
#: google-sitemap-plugin.php:
|
277 |
msgid "Show URL for pages"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: google-sitemap-plugin.php:
|
281 |
msgid "Example of site pages' tree"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: google-sitemap-plugin.php:
|
285 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: google-sitemap-plugin.php:
|
289 |
msgid "Please, go to"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: google-sitemap-plugin.php:
|
293 |
msgid "the setting page"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: google-sitemap-plugin.php:
|
297 |
msgid "You will be redirected automatically in 5 seconds."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: google-sitemap-plugin.php:
|
301 |
msgid "You can download and activate"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: google-sitemap-plugin.php:
|
305 |
#, fuzzy
|
306 |
msgid "version of this plugin by entering Your license key."
|
307 |
msgstr "Будт ласка, введіть логін та пароль"
|
308 |
|
309 |
-
#: google-sitemap-plugin.php:
|
310 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: google-sitemap-plugin.php:
|
314 |
msgid "(your username is the email you specify when purchasing the product)."
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: google-sitemap-plugin.php:
|
318 |
-
#: google-sitemap-plugin.php:
|
319 |
msgid "Go!"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: google-sitemap-plugin.php:
|
323 |
-
msgid "requires"
|
324 |
-
msgstr "потребує"
|
325 |
-
|
326 |
-
#: google-sitemap-plugin.php:646
|
327 |
-
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
328 |
-
msgstr "чи вище, тому він був деактивований! Будь ласка, оновіть WordPress та спробуйте ще раз."
|
329 |
-
|
330 |
-
#: google-sitemap-plugin.php:646
|
331 |
-
msgid "Back to the WordPress"
|
332 |
-
msgstr "Повернутися до WordPress на"
|
333 |
-
|
334 |
-
#: google-sitemap-plugin.php:646
|
335 |
-
msgid "Plugins page"
|
336 |
-
msgstr "Сторінку плагінів"
|
337 |
-
|
338 |
-
#: google-sitemap-plugin.php:692
|
339 |
msgid "This site is not added to the Google Webmaster Tools account"
|
340 |
msgstr "Даний сайт не додано до акаунту Google Webmaster Tools"
|
341 |
|
342 |
-
#: google-sitemap-plugin.php:
|
343 |
msgid "Site URL:"
|
344 |
msgstr "URL сайту:"
|
345 |
|
346 |
-
#: google-sitemap-plugin.php:
|
347 |
msgid "Site verification:"
|
348 |
msgstr "Верифікація сайту:"
|
349 |
|
350 |
-
#: google-sitemap-plugin.php:
|
351 |
msgid "verified"
|
352 |
msgstr "верифіковано"
|
353 |
|
354 |
-
#: google-sitemap-plugin.php:
|
355 |
msgid "not verified"
|
356 |
msgstr "не верифіковано"
|
357 |
|
358 |
-
#: google-sitemap-plugin.php:
|
359 |
msgid "Sitemap file:"
|
360 |
msgstr "Файл карти сайту:"
|
361 |
|
362 |
-
#: google-sitemap-plugin.php:
|
363 |
msgid "added"
|
364 |
msgstr "додано"
|
365 |
|
366 |
-
#: google-sitemap-plugin.php:
|
367 |
msgid "not added"
|
368 |
msgstr "не додано"
|
369 |
|
370 |
-
#: google-sitemap-plugin.php:
|
371 |
msgid "FAQ"
|
372 |
msgstr "Часті питання"
|
373 |
|
374 |
-
#: google-sitemap-plugin.php:
|
375 |
msgid "Support"
|
376 |
msgstr "Тех.підтримка"
|
377 |
|
378 |
-
#: google-sitemap-plugin.php:
|
379 |
msgid "It's time to upgrade your <strong>Google Sitemap plugin</strong> to <strong>PRO</strong> version"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: google-sitemap-plugin.php:
|
383 |
msgid "Extend standard plugin functionality with new great options"
|
384 |
msgstr ""
|
385 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-11 14:06+0300\n"
|
6 |
+
"PO-Revision-Date: 2014-04-11 14:06+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:73
|
20 |
msgid "BWS Plugins"
|
21 |
msgstr "Плагіни BWS"
|
22 |
|
23 |
+
#: google-sitemap-plugin.php:74
|
24 |
#, fuzzy
|
25 |
msgid "Google Sitemap Settings"
|
26 |
msgstr "Опції карти сайту Google"
|
27 |
|
28 |
+
#: google-sitemap-plugin.php:74
|
29 |
+
#: google-sitemap-plugin.php:402
|
30 |
msgid "Google Sitemap"
|
31 |
msgstr "Карта сайту Google"
|
32 |
|
33 |
+
#: google-sitemap-plugin.php:137
|
34 |
+
msgid "requires"
|
35 |
+
msgstr "потребує"
|
36 |
+
|
37 |
+
#: google-sitemap-plugin.php:137
|
38 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
39 |
+
msgstr "чи вище, тому він був деактивований! Будь ласка, оновіть WordPress та спробуйте ще раз."
|
40 |
+
|
41 |
+
#: google-sitemap-plugin.php:137
|
42 |
+
msgid "Back to the WordPress"
|
43 |
+
msgstr "Повернутися до WordPress на"
|
44 |
+
|
45 |
+
#: google-sitemap-plugin.php:137
|
46 |
+
msgid "Plugins page"
|
47 |
+
msgstr "Сторінку плагінів"
|
48 |
+
|
49 |
+
#: google-sitemap-plugin.php:211
|
50 |
msgid "Your Sitemap file is created in the site root directory."
|
51 |
msgstr "Карта сайту для вашого сайту створена у корені основної директорії."
|
52 |
|
53 |
+
#: google-sitemap-plugin.php:218
|
54 |
+
#: google-sitemap-plugin.php:247
|
55 |
msgid "Settings saved."
|
56 |
msgstr "Опції збережено."
|
57 |
|
58 |
+
#: google-sitemap-plugin.php:258
|
59 |
#, fuzzy
|
60 |
msgid "Please enter your login and password for remote work with Google Webmaster Tools"
|
61 |
msgstr "Установки для віддаленої роботи з google webmaster tools"
|
62 |
|
63 |
+
#: google-sitemap-plugin.php:260
|
64 |
#, fuzzy
|
65 |
msgid "You should choose at least one action for remote work with Google Webmaster Tools"
|
66 |
msgstr "Установки для віддаленої роботи з google webmaster tools"
|
67 |
|
68 |
+
#: google-sitemap-plugin.php:288
|
69 |
msgid "Login and password do not match. Please try again"
|
70 |
msgstr "Логін та пароль не співпадають. Будь ласка, спробуйте ще раз"
|
71 |
|
72 |
+
#: google-sitemap-plugin.php:299
|
73 |
+
#: google-sitemap-plugin.php:337
|
74 |
msgid "Wrong license key"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: google-sitemap-plugin.php:330
|
78 |
msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: google-sitemap-plugin.php:339
|
82 |
msgid "This license key is bind to another site"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: google-sitemap-plugin.php:341
|
86 |
+
#: google-sitemap-plugin.php:619
|
87 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: google-sitemap-plugin.php:358
|
91 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: google-sitemap-plugin.php:364
|
95 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: google-sitemap-plugin.php:368
|
99 |
+
#: google-sitemap-plugin.php:377
|
100 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: google-sitemap-plugin.php:381
|
104 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: google-sitemap-plugin.php:396
|
108 |
#, fuzzy
|
109 |
msgid "Please, enter Your license key"
|
110 |
msgstr "Будт ласка, введіть логін та пароль"
|
111 |
|
112 |
+
#: google-sitemap-plugin.php:404
|
113 |
+
#: google-sitemap-plugin.php:815
|
114 |
+
#: google-sitemap-plugin.php:826
|
115 |
msgid "Settings"
|
116 |
msgstr "Установки"
|
117 |
|
118 |
+
#: google-sitemap-plugin.php:405
|
119 |
#, fuzzy
|
120 |
msgid "Extra settings"
|
121 |
msgstr "Установки"
|
122 |
|
123 |
+
#: google-sitemap-plugin.php:406
|
124 |
msgid "Go PRO"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: google-sitemap-plugin.php:408
|
128 |
msgid "Notice:"
|
129 |
msgstr "Повідомлення:"
|
130 |
|
131 |
+
#: google-sitemap-plugin.php:408
|
132 |
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
133 |
msgstr "Установки плагіну було змінено. Щоб зберегти їх, будь ласка, не забудьте натиснути кнопку \"Зберегти зміни\"."
|
134 |
|
135 |
+
#: google-sitemap-plugin.php:415
|
136 |
#, fuzzy
|
137 |
msgid "The Sitemap file"
|
138 |
msgstr "Файл карти сайту:"
|
139 |
|
140 |
+
#: google-sitemap-plugin.php:415
|
141 |
#, fuzzy
|
142 |
msgid "already exists. If you would like to replace it with a new one, please choose the necessary box below. All other actions will overwrite the existing file."
|
143 |
msgstr "Карта уже існує. Якщо ви хочете замінити її на нову карту сайту, виберіть відповідну дію внизу. Усі інші дії перезапишуть файл, що снує."
|
144 |
|
145 |
+
#: google-sitemap-plugin.php:418
|
146 |
#, fuzzy
|
147 |
msgid "Your Sitemap file"
|
148 |
msgstr "Файл карти сайту:"
|
149 |
|
150 |
+
#: google-sitemap-plugin.php:418
|
151 |
#, fuzzy
|
152 |
msgid "is created in the site root directory."
|
153 |
msgstr "Карта сайту для вашого сайту створена у корені основної директорії."
|
154 |
|
155 |
+
#: google-sitemap-plugin.php:422
|
156 |
+
#: google-sitemap-plugin.php:424
|
157 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
158 |
msgstr "Якщо ви не хочете додати файл карти сайту автоматично до Google Webmaster Tools, ви можете зробити це через"
|
159 |
|
160 |
+
#: google-sitemap-plugin.php:422
|
161 |
+
#: google-sitemap-plugin.php:424
|
162 |
msgid "this"
|
163 |
msgstr "це"
|
164 |
|
165 |
+
#: google-sitemap-plugin.php:422
|
166 |
+
#: google-sitemap-plugin.php:424
|
167 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
168 |
msgstr "посилання - авторизуйтеся, виберіть сайт, виберіть 'Sitemaps' та заповніть обов’язкове поле"
|
169 |
|
170 |
+
#: google-sitemap-plugin.php:429
|
171 |
msgid "I want to create a new sitemap file or update the existing one"
|
172 |
msgstr "Я хочу створити нову карту сайту або оновити ту, що вже існує"
|
173 |
|
174 |
+
#: google-sitemap-plugin.php:435
|
175 |
msgid "I want to add sitemap file path in robots.txt"
|
176 |
msgstr "Я хочу додати карту сайту до robots.txt"
|
177 |
|
178 |
+
#: google-sitemap-plugin.php:436
|
179 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
180 |
msgstr "Оскільки ви використовуєте мультисайтинг, плагін не доволяє додати карту сайту до robots.txt"
|
181 |
|
182 |
+
#: google-sitemap-plugin.php:442
|
183 |
#, fuzzy
|
184 |
msgid "I want to add sitemap file path in"
|
185 |
msgstr "Я хочу додати карту сайту до robots.txt"
|
186 |
|
187 |
+
#: google-sitemap-plugin.php:447
|
188 |
+
#: google-sitemap-plugin.php:553
|
189 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
190 |
msgstr "Будь ласка, виберіть такі типи записів, посилання на які буде додано до карти сайту:"
|
191 |
|
192 |
+
#: google-sitemap-plugin.php:463
|
193 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: google-sitemap-plugin.php:466
|
197 |
msgid "Always"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: google-sitemap-plugin.php:467
|
201 |
msgid "Hourly"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: google-sitemap-plugin.php:468
|
205 |
msgid "Daily"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: google-sitemap-plugin.php:469
|
209 |
msgid "Weekly"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: google-sitemap-plugin.php:470
|
213 |
msgid "Monthly"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: google-sitemap-plugin.php:471
|
217 |
msgid "Yearly"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: google-sitemap-plugin.php:472
|
221 |
msgid "Never"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: google-sitemap-plugin.php:474
|
225 |
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."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: google-sitemap-plugin.php:481
|
229 |
+
#: google-sitemap-plugin.php:578
|
230 |
+
msgid "Unlock premium options by upgrading to a PRO version."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: google-sitemap-plugin.php:482
|
234 |
+
#: google-sitemap-plugin.php:579
|
235 |
+
#: google-sitemap-plugin.php:888
|
236 |
+
msgid "Learn More"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: google-sitemap-plugin.php:485
|
240 |
+
#: google-sitemap-plugin.php:582
|
241 |
+
msgid "Go"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: google-sitemap-plugin.php:494
|
245 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
246 |
msgstr "Ваш хостінг не підтримує сURL, отже ви не можете додати карту сайту до Google акаунту автоматично."
|
247 |
|
248 |
+
#: google-sitemap-plugin.php:500
|
249 |
msgid "Please enter your Google account login and password in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools."
|
250 |
msgstr "Введіть сюди ваш логін та пароль для Google акаунту, щоб мати можливість додавати або видаляти сайт та карту сайту автоматично до вашого акаунту або отримати інформацію про цей сайт з Google Webmaster Tools."
|
251 |
|
252 |
+
#: google-sitemap-plugin.php:504
|
253 |
#, fuzzy
|
254 |
msgid "Settings for remote work with Google Webmaster Tools"
|
255 |
msgstr "Установки для віддаленої роботи з google webmaster tools"
|
256 |
|
257 |
+
#: google-sitemap-plugin.php:506
|
258 |
msgid "Login"
|
259 |
msgstr "Логін"
|
260 |
|
261 |
+
#: google-sitemap-plugin.php:507
|
262 |
msgid "Password"
|
263 |
msgstr "Пароль"
|
264 |
|
265 |
+
#: google-sitemap-plugin.php:508
|
266 |
msgid "I want to add this site to Google Webmaster Tools"
|
267 |
msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
|
268 |
|
269 |
+
#: google-sitemap-plugin.php:509
|
270 |
msgid "I want to delete this site from Google Webmaster Tools"
|
271 |
msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
|
272 |
|
273 |
+
#: google-sitemap-plugin.php:510
|
274 |
+
#: google-sitemap-plugin.php:701
|
275 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
276 |
msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
|
277 |
|
278 |
+
#: google-sitemap-plugin.php:512
|
279 |
msgid "In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: google-sitemap-plugin.php:513
|
283 |
+
msgid "View the Instruction"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: google-sitemap-plugin.php:521
|
287 |
+
#: google-sitemap-plugin.php:571
|
288 |
msgid "Save Changes"
|
289 |
msgstr "Зберегти зміни"
|
290 |
|
291 |
+
#: google-sitemap-plugin.php:538
|
292 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
293 |
msgstr "Якщо Вам сподобався наш плагін, будь ласка, поставте йому п’ять зірок на сайті WordPress"
|
294 |
|
295 |
+
#: google-sitemap-plugin.php:539
|
296 |
msgid "Rate the plugin"
|
297 |
msgstr "Оцінити плагін"
|
298 |
|
299 |
+
#: google-sitemap-plugin.php:542
|
300 |
msgid "If there is something wrong about it, please contact us"
|
301 |
msgstr "Якщо у вас виникли питання, будь ласка, зв’яжіться з нами"
|
302 |
|
303 |
+
#: google-sitemap-plugin.php:560
|
304 |
msgid "Show URL for pages"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: google-sitemap-plugin.php:566
|
308 |
msgid "Example of site pages' tree"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: google-sitemap-plugin.php:594
|
312 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: google-sitemap-plugin.php:596
|
316 |
msgid "Please, go to"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: google-sitemap-plugin.php:596
|
320 |
msgid "the setting page"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: google-sitemap-plugin.php:597
|
324 |
msgid "You will be redirected automatically in 5 seconds."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: google-sitemap-plugin.php:602
|
328 |
msgid "You can download and activate"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: google-sitemap-plugin.php:604
|
332 |
#, fuzzy
|
333 |
msgid "version of this plugin by entering Your license key."
|
334 |
msgstr "Будт ласка, введіть логін та пароль"
|
335 |
|
336 |
+
#: google-sitemap-plugin.php:606
|
337 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: google-sitemap-plugin.php:608
|
341 |
msgid "(your username is the email you specify when purchasing the product)."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: google-sitemap-plugin.php:616
|
345 |
+
#: google-sitemap-plugin.php:626
|
346 |
msgid "Go!"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: google-sitemap-plugin.php:703
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
msgid "This site is not added to the Google Webmaster Tools account"
|
351 |
msgstr "Даний сайт не додано до акаунту Google Webmaster Tools"
|
352 |
|
353 |
+
#: google-sitemap-plugin.php:723
|
354 |
msgid "Site URL:"
|
355 |
msgstr "URL сайту:"
|
356 |
|
357 |
+
#: google-sitemap-plugin.php:724
|
358 |
msgid "Site verification:"
|
359 |
msgstr "Верифікація сайту:"
|
360 |
|
361 |
+
#: google-sitemap-plugin.php:726
|
362 |
msgid "verified"
|
363 |
msgstr "верифіковано"
|
364 |
|
365 |
+
#: google-sitemap-plugin.php:728
|
366 |
msgid "not verified"
|
367 |
msgstr "не верифіковано"
|
368 |
|
369 |
+
#: google-sitemap-plugin.php:729
|
370 |
msgid "Sitemap file:"
|
371 |
msgstr "Файл карти сайту:"
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:731
|
374 |
msgid "added"
|
375 |
msgstr "додано"
|
376 |
|
377 |
+
#: google-sitemap-plugin.php:733
|
378 |
msgid "not added"
|
379 |
msgstr "не додано"
|
380 |
|
381 |
+
#: google-sitemap-plugin.php:827
|
382 |
msgid "FAQ"
|
383 |
msgstr "Часті питання"
|
384 |
|
385 |
+
#: google-sitemap-plugin.php:828
|
386 |
msgid "Support"
|
387 |
msgstr "Тех.підтримка"
|
388 |
|
389 |
+
#: google-sitemap-plugin.php:891
|
390 |
msgid "It's time to upgrade your <strong>Google Sitemap plugin</strong> to <strong>PRO</strong> version"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: google-sitemap-plugin.php:892
|
394 |
msgid "Extend standard plugin functionality with new great options"
|
395 |
msgstr ""
|
396 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
|
4 |
Tags: sitemap, google sitemap, google api, google webmaster tools, stmap, gogle sitemap, sitemp, google api sitemap, api sitemap, webmaster sitemap, webmaster tols, google stmp
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.8.
|
7 |
-
Stable tag: 2.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -90,7 +90,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
90 |
1. the link to the page where the problem occurs
|
91 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
92 |
3. the version of your WordPress installation
|
93 |
-
4. copy and paste into the message your system status report. Please read more here: <a href="https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/edit" target="_blank">
|
94 |
|
95 |
== Screenshots ==
|
96 |
|
@@ -100,6 +100,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
100 |
|
101 |
== Changelog ==
|
102 |
|
|
|
|
|
|
|
|
|
103 |
= V2.8.8 - 12.03.2014 =
|
104 |
* Budfix : Plugin optimization is done.
|
105 |
|
@@ -199,6 +203,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
199 |
|
200 |
== Upgrade Notice ==
|
201 |
|
|
|
|
|
|
|
202 |
= V2.8.8 =
|
203 |
Plugin optimization is done.
|
204 |
|
3 |
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
|
4 |
Tags: sitemap, google sitemap, google api, google webmaster tools, stmap, gogle sitemap, sitemp, google api sitemap, api sitemap, webmaster sitemap, webmaster tols, google stmp
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.8.2
|
7 |
+
Stable tag: 2.8.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
90 |
1. the link to the page where the problem occurs
|
91 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
92 |
3. the version of your WordPress installation
|
93 |
+
4. copy and paste into the message your system status report. Please read more here: <a href="https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/edit" target="_blank">Instuction on System Status</a>
|
94 |
|
95 |
== Screenshots ==
|
96 |
|
100 |
|
101 |
== Changelog ==
|
102 |
|
103 |
+
= V2.8.9 - 11.04.2014 =
|
104 |
+
* Update : We updated all functionality for wordpress 3.8.2.
|
105 |
+
* Budfix : Bug related on the sitemap link in the robots.txt was fixed.
|
106 |
+
|
107 |
= V2.8.8 - 12.03.2014 =
|
108 |
* Budfix : Plugin optimization is done.
|
109 |
|
203 |
|
204 |
== Upgrade Notice ==
|
205 |
|
206 |
+
= V2.8.9 =
|
207 |
+
We updated all functionality for wordpress 3.8.2. Bug related on the sitemap link in the robots.txt was fixed.
|
208 |
+
|
209 |
= V2.8.8 =
|
210 |
Plugin optimization is done.
|
211 |
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|
sitemap.xsl
CHANGED
File without changes
|