Version Description
- 18.07.2013 =
- NEW : Added an ability to view and send system information by mail.
- Update : We updated all functionality for wordpress 3.5.2.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 2.8.1 |
Comparing to | |
See all releases |
Code changes from version 2.8 to 2.8.1
- css/stylesheet.css +20 -8
- google-sitemap-plugin.php +220 -5
- js/bws_menu.js +14 -0
- languages/sitemap-ar_AR.mo +0 -0
- languages/sitemap-ar_AR.po +233 -64
- languages/sitemap-es_ES.mo +0 -0
- languages/sitemap-es_ES.po +233 -64
- languages/sitemap-fr_FR.mo +0 -0
- languages/sitemap-fr_FR.po +233 -64
- languages/sitemap-ru_RU.mo +0 -0
- languages/sitemap-ru_RU.po +229 -64
- languages/sitemap-sr_RS.mo +0 -0
- languages/sitemap-sr_RS.po +233 -64
- readme.txt +10 -3
css/stylesheet.css
CHANGED
@@ -1,19 +1,31 @@
|
|
1 |
-
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image
|
2 |
-
{
|
3 |
background: url("../images/icon_16.png") no-repeat scroll center center transparent;
|
4 |
}
|
5 |
-
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image, #adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image
|
6 |
-
{
|
7 |
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
8 |
}
|
9 |
-
.wrap #icon-options-general.icon32-bws
|
10 |
-
{
|
11 |
background: url("../images/icon_36.png") no-repeat scroll left top transparent;
|
12 |
}
|
13 |
-
#toplevel_page_bws_plugins .wp-submenu .wp-first-item
|
14 |
-
{
|
15 |
display:none;
|
16 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
.error {
|
19 |
color:red;
|
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 |
+
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image, #adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image {
|
|
|
5 |
background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
|
6 |
}
|
7 |
+
.wrap #icon-options-general.icon32-bws {
|
|
|
8 |
background: url("../images/icon_36.png") no-repeat scroll left top transparent;
|
9 |
}
|
10 |
+
#toplevel_page_bws_plugins .wp-submenu .wp-first-item {
|
|
|
11 |
display:none;
|
12 |
}
|
13 |
+
.bws_system_info_mata_box {
|
14 |
+
width: 850px;
|
15 |
+
}
|
16 |
+
.bws_system_info {
|
17 |
+
float: left;
|
18 |
+
margin-right: 10px;
|
19 |
+
width: 400px;
|
20 |
+
}
|
21 |
+
.bws_system_info th {
|
22 |
+
padding: 10px 0;
|
23 |
+
text-align: left;
|
24 |
+
width: 50%;
|
25 |
+
}
|
26 |
+
.bws_system_info tbody td {
|
27 |
+
border-bottom: 1px solid #DFDFDF;
|
28 |
+
}
|
29 |
|
30 |
.error {
|
31 |
color:red;
|
google-sitemap-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google sitemap plugin
|
|
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 |
*/
|
@@ -28,9 +28,12 @@ License: GPLv2 or later
|
|
28 |
//============================================ Function for adding page in admin menu ====================
|
29 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
30 |
function bws_add_menu_render() {
|
31 |
-
global $title;
|
32 |
$active_plugins = get_option('active_plugins');
|
33 |
$all_plugins = get_plugins();
|
|
|
|
|
|
|
34 |
|
35 |
$array_activate = array();
|
36 |
$array_install = array();
|
@@ -74,7 +77,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
74 |
$array_recomend_pro = array();
|
75 |
$count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
|
76 |
$array_plugins_pro = array(
|
77 |
-
array( 'gallery-plugin-pro\/gallery-plugin-pro.php', 'Gallery Pro', 'http://bestwebsoft.com/plugin/gallery-pro
|
|
|
78 |
);
|
79 |
foreach ( $array_plugins_pro as $plugins ) {
|
80 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
@@ -94,10 +98,157 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
94 |
$array_recomend_pro[$count_recomend_pro]["href"] = $plugins[3];
|
95 |
$count_recomend_pro++;
|
96 |
}
|
97 |
-
}
|
98 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
100 |
<h2><?php echo $title;?></h2>
|
|
|
|
|
101 |
<h3 style="color: blue;"><?php _e( 'Pro plugins', 'sitemap' ); ?></h3>
|
102 |
<?php if( 0 < $count_activate_pro ) { ?>
|
103 |
<div style="padding-left:15px;">
|
@@ -151,6 +302,67 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
151 |
<?php } ?>
|
152 |
<br />
|
153 |
<span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'sitemap' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
</div>
|
155 |
<?php }
|
156 |
}
|
@@ -494,6 +706,9 @@ if( ! function_exists( 'gglstmp_add_plugin_stylesheet' ) ) {
|
|
494 |
function gglstmp_add_plugin_stylesheet() {
|
495 |
wp_register_style( 'google-sitemap-StyleSheets', plugins_url( 'css/stylesheet.css', __FILE__ ) );
|
496 |
wp_enqueue_style( 'google-sitemap-StyleSheets' );
|
|
|
|
|
|
|
497 |
}
|
498 |
}
|
499 |
|
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.1
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
28 |
//============================================ Function for adding page in admin menu ====================
|
29 |
if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
30 |
function bws_add_menu_render() {
|
31 |
+
global $wpdb, $wp_version, $title;
|
32 |
$active_plugins = get_option('active_plugins');
|
33 |
$all_plugins = get_plugins();
|
34 |
+
$error = '';
|
35 |
+
$message = '';
|
36 |
+
$bwsmn_form_email = '';
|
37 |
|
38 |
$array_activate = array();
|
39 |
$array_install = array();
|
77 |
$array_recomend_pro = array();
|
78 |
$count_activate_pro = $count_install_pro = $count_recomend_pro = 0;
|
79 |
$array_plugins_pro = array(
|
80 |
+
array( 'gallery-plugin-pro\/gallery-plugin-pro.php', 'Gallery Pro', 'http://bestwebsoft.com/plugin/gallery-pro/?k=382e5ce7c96a6391f5ffa5e116b37fe0', 'http://bestwebsoft.com/plugin/gallery-pro/?k=382e5ce7c96a6391f5ffa5e116b37fe0#purchase', 'admin.php?page=gallery-plugin-pro.php' ),
|
81 |
+
array( 'contact-form-pro\/contact_form_pro.php', 'Contact Form Pro', 'http://bestwebsoft.com/plugin/contact-form-pro/?k=773dc97bb3551975db0e32edca1a6d71', 'http://bestwebsoft.com/plugin/contact-form-pro/?k=773dc97bb3551975db0e32edca1a6d71#purchase', 'admin.php?page=contact_form_pro.php' )
|
82 |
);
|
83 |
foreach ( $array_plugins_pro as $plugins ) {
|
84 |
if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
|
98 |
$array_recomend_pro[$count_recomend_pro]["href"] = $plugins[3];
|
99 |
$count_recomend_pro++;
|
100 |
}
|
101 |
+
}
|
102 |
+
|
103 |
+
$sql_version = $wpdb->get_var( "SELECT VERSION() AS version" );
|
104 |
+
$mysql_info = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
|
105 |
+
if ( is_array( $mysql_info) )
|
106 |
+
$sql_mode = $mysql_info[0]->Value;
|
107 |
+
if ( empty( $sql_mode ) )
|
108 |
+
$sql_mode = __( 'Not set', 'sitemap' );
|
109 |
+
if ( ini_get( 'safe_mode' ) )
|
110 |
+
$safe_mode = __( 'On', 'sitemap' );
|
111 |
+
else
|
112 |
+
$safe_mode = __( 'Off', 'sitemap' );
|
113 |
+
if ( ini_get( 'allow_url_fopen' ) )
|
114 |
+
$allow_url_fopen = __( 'On', 'sitemap' );
|
115 |
+
else
|
116 |
+
$allow_url_fopen = __( 'Off', 'sitemap' );
|
117 |
+
if ( ini_get( 'upload_max_filesize' ) )
|
118 |
+
$upload_max_filesize = ini_get( 'upload_max_filesize' );
|
119 |
+
else
|
120 |
+
$upload_max_filesize = __( 'N/A', 'sitemap' );
|
121 |
+
if ( ini_get('post_max_size') )
|
122 |
+
$post_max_size = ini_get('post_max_size');
|
123 |
+
else
|
124 |
+
$post_max_size = __( 'N/A', 'sitemap' );
|
125 |
+
if ( ini_get( 'max_execution_time' ) )
|
126 |
+
$max_execution_time = ini_get( 'max_execution_time' );
|
127 |
+
else
|
128 |
+
$max_execution_time = __( 'N/A', 'sitemap' );
|
129 |
+
if ( ini_get( 'memory_limit' ) )
|
130 |
+
$memory_limit = ini_get( 'memory_limit' );
|
131 |
+
else
|
132 |
+
$memory_limit = __( 'N/A', 'sitemap' );
|
133 |
+
if ( function_exists( 'memory_get_usage' ) )
|
134 |
+
$memory_usage = round( memory_get_usage() / 1024 / 1024, 2 ) . __(' Mb', 'sitemap' );
|
135 |
+
else
|
136 |
+
$memory_usage = __( 'N/A', 'sitemap' );
|
137 |
+
if ( is_callable( 'exif_read_data' ) )
|
138 |
+
$exif_read_data = __( 'Yes', 'sitemap' ) . " ( V" . substr( phpversion( 'exif' ), 0,4 ) . ")" ;
|
139 |
+
else
|
140 |
+
$exif_read_data = __( 'No', 'sitemap' );
|
141 |
+
if ( is_callable( 'iptcparse' ) )
|
142 |
+
$iptcparse = __( 'Yes', 'sitemap' );
|
143 |
+
else
|
144 |
+
$iptcparse = __( 'No', 'sitemap' );
|
145 |
+
if ( is_callable( 'xml_parser_create' ) )
|
146 |
+
$xml_parser_create = __( 'Yes', 'sitemap' );
|
147 |
+
else
|
148 |
+
$xml_parser_create = __( 'No', 'sitemap' );
|
149 |
+
|
150 |
+
if ( function_exists( 'wp_get_theme' ) )
|
151 |
+
$theme = wp_get_theme();
|
152 |
+
else
|
153 |
+
$theme = get_theme( get_current_theme() );
|
154 |
+
|
155 |
+
if ( function_exists( 'is_multisite' ) ) {
|
156 |
+
if ( is_multisite() ) {
|
157 |
+
$multisite = __( 'Yes', 'sitemap' );
|
158 |
+
} else {
|
159 |
+
$multisite = __( 'No', 'sitemap' );
|
160 |
+
}
|
161 |
+
} else
|
162 |
+
$multisite = __( 'N/A', 'sitemap' );
|
163 |
+
|
164 |
+
$site_url = get_option( 'siteurl' );
|
165 |
+
$home_url = get_option( 'home' );
|
166 |
+
$db_version = get_option( 'db_version' );
|
167 |
+
$system_info = array(
|
168 |
+
'system_info' => '',
|
169 |
+
'active_plugins' => '',
|
170 |
+
'inactive_plugins' => ''
|
171 |
+
);
|
172 |
+
$system_info['system_info'] = array(
|
173 |
+
__( 'Operating System', 'sitemap' ) => PHP_OS,
|
174 |
+
__( 'Server', 'sitemap' ) => $_SERVER["SERVER_SOFTWARE"],
|
175 |
+
__( 'Memory usage', 'sitemap' ) => $memory_usage,
|
176 |
+
__( 'MYSQL Version', 'sitemap' ) => $sql_version,
|
177 |
+
__( 'SQL Mode', 'sitemap' ) => $sql_mode,
|
178 |
+
__( 'PHP Version', 'sitemap' ) => PHP_VERSION,
|
179 |
+
__( 'PHP Safe Mode', 'sitemap' ) => $safe_mode,
|
180 |
+
__( 'PHP Allow URL fopen', 'sitemap' ) => $allow_url_fopen,
|
181 |
+
__( 'PHP Memory Limit', 'sitemap' ) => $memory_limit,
|
182 |
+
__( 'PHP Max Upload Size', 'sitemap' ) => $upload_max_filesize,
|
183 |
+
__( 'PHP Max Post Size', 'sitemap' ) => $post_max_size,
|
184 |
+
__( 'PHP Max Script Execute Time', 'sitemap' ) => $max_execution_time,
|
185 |
+
__( 'PHP Exif support', 'sitemap' ) => $exif_read_data,
|
186 |
+
__( 'PHP IPTC support', 'sitemap' ) => $iptcparse,
|
187 |
+
__( 'PHP XML support', 'sitemap' ) => $xml_parser_create,
|
188 |
+
__( 'Site URL', 'sitemap' ) => $site_url,
|
189 |
+
__( 'Home URL', 'sitemap' ) => $home_url,
|
190 |
+
__( 'WordPress Version', 'sitemap' ) => $wp_version,
|
191 |
+
__( 'WordPress DB Version', 'sitemap' ) => $db_version,
|
192 |
+
__( 'Multisite', 'sitemap' ) => $multisite,
|
193 |
+
__( 'Active Theme', 'sitemap' ) => $theme['Name'].' '.$theme['Version']
|
194 |
+
);
|
195 |
+
foreach ( $all_plugins as $path => $plugin ) {
|
196 |
+
if ( is_plugin_active( $path ) ) {
|
197 |
+
$system_info['active_plugins'][ $plugin['Name'] ] = $plugin['Version'];
|
198 |
+
} else {
|
199 |
+
$system_info['inactive_plugins'][ $plugin['Name'] ] = $plugin['Version'];
|
200 |
+
}
|
201 |
+
}
|
202 |
+
|
203 |
+
if ( ( isset( $_REQUEST['bwsmn_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ) ) ||
|
204 |
+
( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
|
205 |
+
if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
|
206 |
+
$bwsmn_form_email = trim( $_REQUEST['bwsmn_form_email'] );
|
207 |
+
if( $bwsmn_form_email == "" || !preg_match( "/^((?:[a-z0-9']+(?:[a-z0-9\-_\.']+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", $bwsmn_form_email ) ) {
|
208 |
+
$error = __( "Please enter a valid email address.", 'sitemap' );
|
209 |
+
} else {
|
210 |
+
$email = $bwsmn_form_email;
|
211 |
+
$bwsmn_form_email = '';
|
212 |
+
$message = __( 'Email with system info is sent to ', 'sitemap' ) . $email;
|
213 |
+
}
|
214 |
+
} else {
|
215 |
+
$email = 'plugin_system_status@bestwebsoft.com';
|
216 |
+
$message = __( 'Thank you for contacting us.', 'sitemap' );
|
217 |
+
}
|
218 |
+
|
219 |
+
if ( $error == '' ) {
|
220 |
+
$headers = 'MIME-Version: 1.0' . "\n";
|
221 |
+
$headers .= 'Content-type: text/html; charset=utf-8' . "\n";
|
222 |
+
$headers .= 'From: ' . get_option( 'admin_email' );
|
223 |
+
$message_text = '<html><head><title>System Info From ' . $home_url . '</title></head><body>
|
224 |
+
<h4>Environment</h4>
|
225 |
+
<table>';
|
226 |
+
foreach ( $system_info['system_info'] as $key => $value ) {
|
227 |
+
$message_text .= '<tr><td>'. $key .'</td><td>'. $value .'</td></tr>';
|
228 |
+
}
|
229 |
+
$message_text .= '</table>
|
230 |
+
<h4>Active Plugins</h4>
|
231 |
+
<table>';
|
232 |
+
foreach ( $system_info['active_plugins'] as $key => $value ) {
|
233 |
+
$message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
|
234 |
+
}
|
235 |
+
$message_text .= '</table>
|
236 |
+
<h4>Inactive Plugins</h4>
|
237 |
+
<table>';
|
238 |
+
foreach ( $system_info['inactive_plugins'] as $key => $value ) {
|
239 |
+
$message_text .= '<tr><td scope="row">'. $key .'</td><td scope="row">'. $value .'</td></tr>';
|
240 |
+
}
|
241 |
+
$message_text .= '</table></body></html>';
|
242 |
+
$result = wp_mail( $email, 'System Info From ' . $home_url, $message_text, $headers );
|
243 |
+
if ( $result != true )
|
244 |
+
$error = __( "Sorry, email message could not be delivered.", 'sitemap' );
|
245 |
+
}
|
246 |
+
}
|
247 |
+
?><div class="wrap">
|
248 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
249 |
<h2><?php echo $title;?></h2>
|
250 |
+
<div class="updated fade" <?php if( !( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
251 |
+
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
252 |
<h3 style="color: blue;"><?php _e( 'Pro plugins', 'sitemap' ); ?></h3>
|
253 |
<?php if( 0 < $count_activate_pro ) { ?>
|
254 |
<div style="padding-left:15px;">
|
302 |
<?php } ?>
|
303 |
<br />
|
304 |
<span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via', 'sitemap' ); ?> <a href="http://support.bestwebsoft.com">http://support.bestwebsoft.com</a></span>
|
305 |
+
<div id="poststuff" class="bws_system_info_mata_box">
|
306 |
+
<div class="postbox">
|
307 |
+
<div class="handlediv" title="Click to toggle">
|
308 |
+
<br>
|
309 |
+
</div>
|
310 |
+
<h3 class="hndle">
|
311 |
+
<span><?php _e( 'System status', 'sitemap' ); ?></span>
|
312 |
+
</h3>
|
313 |
+
<div class="inside">
|
314 |
+
<table class="bws_system_info">
|
315 |
+
<thead><tr><th><?php _e( 'Environment', 'sitemap' ); ?></th><td></td></tr></thead>
|
316 |
+
<tbody>
|
317 |
+
<?php foreach ( $system_info['system_info'] as $key => $value ) { ?>
|
318 |
+
<tr>
|
319 |
+
<td scope="row"><?php echo $key; ?></td>
|
320 |
+
<td scope="row"><?php echo $value; ?></td>
|
321 |
+
</tr>
|
322 |
+
<?php } ?>
|
323 |
+
</tbody>
|
324 |
+
</table>
|
325 |
+
<table class="bws_system_info">
|
326 |
+
<thead><tr><th><?php _e( 'Active Plugins', 'sitemap' ); ?></th><th></th></tr></thead>
|
327 |
+
<tbody>
|
328 |
+
<?php foreach ( $system_info['active_plugins'] as $key => $value ) { ?>
|
329 |
+
<tr>
|
330 |
+
<td scope="row"><?php echo $key; ?></td>
|
331 |
+
<td scope="row"><?php echo $value; ?></td>
|
332 |
+
</tr>
|
333 |
+
<?php } ?>
|
334 |
+
</tbody>
|
335 |
+
</table>
|
336 |
+
<table class="bws_system_info">
|
337 |
+
<thead><tr><th><?php _e( 'Inactive Plugins', 'sitemap' ); ?></th><th></th></tr></thead>
|
338 |
+
<tbody>
|
339 |
+
<?php foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
|
340 |
+
<tr>
|
341 |
+
<td scope="row"><?php echo $key; ?></td>
|
342 |
+
<td scope="row"><?php echo $value; ?></td>
|
343 |
+
</tr>
|
344 |
+
<?php } ?>
|
345 |
+
</tbody>
|
346 |
+
</table>
|
347 |
+
<div class="clear"></div>
|
348 |
+
<form method="post" action="admin.php?page=bws_plugins">
|
349 |
+
<p>
|
350 |
+
<input type="hidden" name="bwsmn_form_submit" value="submit" />
|
351 |
+
<input type="submit" class="button-primary" value="<?php _e( 'Send to support', 'sitemap' ) ?>" />
|
352 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit' ); ?>
|
353 |
+
</p>
|
354 |
+
</form>
|
355 |
+
<form method="post" action="admin.php?page=bws_plugins">
|
356 |
+
<p>
|
357 |
+
<input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
|
358 |
+
<input type="submit" class="button" value="<?php _e( 'Send to custom email »', 'sitemap' ) ?>" />
|
359 |
+
<input type="text" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
|
360 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
|
361 |
+
</p>
|
362 |
+
</form>
|
363 |
+
</div>
|
364 |
+
</div>
|
365 |
+
</div>
|
366 |
</div>
|
367 |
<?php }
|
368 |
}
|
706 |
function gglstmp_add_plugin_stylesheet() {
|
707 |
wp_register_style( 'google-sitemap-StyleSheets', plugins_url( 'css/stylesheet.css', __FILE__ ) );
|
708 |
wp_enqueue_style( 'google-sitemap-StyleSheets' );
|
709 |
+
|
710 |
+
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" )
|
711 |
+
wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
|
712 |
}
|
713 |
}
|
714 |
|
js/bws_menu.js
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($) {
|
2 |
+
$(document).ready(function(){
|
3 |
+
if ( $('input[name="bwsmn_form_email"]').val() == '' )
|
4 |
+
$('.bws_system_info_mata_box .inside').css('display','none');
|
5 |
+
|
6 |
+
$('.bws_system_info_mata_box .handlediv').click( function(){
|
7 |
+
if ( $('.bws_system_info_mata_box .inside').is(":visible") ) {
|
8 |
+
$('.bws_system_info_mata_box .inside').css('display','none');
|
9 |
+
} else {
|
10 |
+
$('.bws_system_info_mata_box .inside').css('display','block');
|
11 |
+
}
|
12 |
+
});
|
13 |
+
});
|
14 |
+
})(jQuery);
|
languages/sitemap-ar_AR.mo
CHANGED
Binary file
|
languages/sitemap-ar_AR.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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Albayan Design, hani aladoli <info@albayan-design.com, darkking8@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,226 +16,395 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
#, fuzzy
|
21 |
msgid "Pro plugins"
|
22 |
msgstr " اضافات BWS"
|
23 |
|
24 |
-
#: google-sitemap-plugin.php:
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
msgid "Activated plugins"
|
27 |
msgstr "الاضافات المفعلة"
|
28 |
|
29 |
-
#: google-sitemap-plugin.php:
|
30 |
-
#: google-sitemap-plugin.php:
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
-
#: google-sitemap-plugin.php:
|
35 |
msgid "Read more"
|
36 |
msgstr "اقراء المزيد..."
|
37 |
|
38 |
-
#: google-sitemap-plugin.php:
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
-
#: google-sitemap-plugin.php:
|
41 |
msgid "Settings"
|
42 |
msgstr "الاعدادات"
|
43 |
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
msgid "Installed plugins"
|
47 |
msgstr "الاضافات المثبته"
|
48 |
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
msgid "Recommended plugins"
|
52 |
msgstr "اضافات موصي بها"
|
53 |
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
msgid "Purchase"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: google-sitemap-plugin.php:
|
59 |
#, fuzzy
|
60 |
msgid "Free plugins"
|
61 |
msgstr "اضافات موصي بها"
|
62 |
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
msgid "Download"
|
65 |
msgstr "تحميل"
|
66 |
|
67 |
-
#: google-sitemap-plugin.php:
|
68 |
#, php-format
|
69 |
msgid "Install %s"
|
70 |
msgstr "تثبيت %s"
|
71 |
|
72 |
-
#: google-sitemap-plugin.php:
|
73 |
msgid "Install now from wordpress.org"
|
74 |
msgstr "حملها الان من wordpress.org"
|
75 |
|
76 |
-
#: google-sitemap-plugin.php:
|
77 |
msgid "If you have any questions, please contact us via"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
msgid "BWS Plugins"
|
82 |
msgstr " اضافات BWS"
|
83 |
|
84 |
-
#: google-sitemap-plugin.php:
|
85 |
msgid "Google Sitemap Options"
|
86 |
msgstr "خيارات خرائط جوجل"
|
87 |
|
88 |
-
#: google-sitemap-plugin.php:
|
89 |
msgid "Google Sitemap"
|
90 |
msgstr "خرائط جوجل"
|
91 |
|
92 |
-
#: google-sitemap-plugin.php:
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
#, fuzzy
|
95 |
msgid "Your Sitemap file is created in the site root directory."
|
96 |
msgstr "تم إنشاء ملف Sitemap الخاص بك في الدليل الرئيسي للموقع."
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
msgid "Options saved."
|
100 |
msgstr "تم حفظ الخيارات."
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
msgid "Google Sitemap options"
|
104 |
msgstr "خيارات خرائط جوجل"
|
105 |
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
#, fuzzy
|
108 |
msgid "The Sitemap file 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."
|
109 |
msgstr "ملف الخريطة موجود مسبقاً . اذا كنت ترغب في انشاء خريطة جديدة قم بوضع علامة في المربع ادناه , في حالة اخري جميع التغيرات سوف تعاد كتابتها فوق الملف الموجود مسبقاُ ."
|
110 |
|
111 |
-
#: google-sitemap-plugin.php:
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
#, fuzzy
|
114 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
115 |
msgstr "إذا كنت لا ترغب في إضافة هذا الملف تلقائيا قد تذهب من خلال"
|
116 |
|
117 |
-
#: google-sitemap-plugin.php:
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
msgid "this"
|
120 |
msgstr "هذه"
|
121 |
|
122 |
-
#: google-sitemap-plugin.php:
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
#, fuzzy
|
125 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
126 |
msgstr "الرابط , تسجيل الدخول , اختياري الموقع ضاروري , اختيار الخرائط , و املاء الحقول الضرورية"
|
127 |
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
#, fuzzy
|
130 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
131 |
msgstr "الاستضافة لا تدعم ( CURL ) اذاُ لا يمكنك اضافة ملف الخريطة تلقائياُ"
|
132 |
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "I want to create a new sitemap file or update the existing one"
|
136 |
msgstr "ارغب في اضافة مسار ملف الخريطة في robots.txt"
|
137 |
|
138 |
-
#: google-sitemap-plugin.php:
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
msgid "I want to add sitemap file path in robots.txt"
|
141 |
msgstr "ارغب في اضافة مسار ملف الخريطة في robots.txt"
|
142 |
|
143 |
-
#: google-sitemap-plugin.php:
|
144 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: google-sitemap-plugin.php:
|
148 |
#, fuzzy
|
149 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
150 |
msgstr "الرجاء اختيار انواع المواضيع الضارورية لاضافة روابطها في الخريطة :"
|
151 |
|
152 |
-
#: google-sitemap-plugin.php:
|
153 |
#, fuzzy
|
154 |
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."
|
155 |
msgstr "اكتب هنا اسم الدخول والرقم السري الخاصة بـحساب google webmaster tools - للاضافة او حذف ملف الخريطة تلقائياً . او معرفة المعلومات عن هذه الموقع في google webmaster tools"
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "Settings for remote work with google webmaster tools"
|
159 |
msgstr "الضبط للعمل عن بعد مع google webmaster tools"
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
msgid "Login"
|
163 |
msgstr "اسم الدخول"
|
164 |
|
165 |
-
#: google-sitemap-plugin.php:
|
166 |
msgid "Password"
|
167 |
msgstr "الرقم السري"
|
168 |
|
169 |
-
#: google-sitemap-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "I want to add this site to Google Webmaster Tools"
|
172 |
msgstr "ارغب في اضافة هذه الموقع في google webmaster tools"
|
173 |
|
174 |
-
#: google-sitemap-plugin.php:
|
175 |
#, fuzzy
|
176 |
msgid "I want to delete this site from Google Webmaster Tools"
|
177 |
msgstr "ارغب في حذف هذه الموقع من google webmaster tools"
|
178 |
|
179 |
-
#: google-sitemap-plugin.php:
|
180 |
-
#: google-sitemap-plugin.php:
|
181 |
#, fuzzy
|
182 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
183 |
msgstr "ارغب في الحصول علي البيانات هذه الموقع في google webmaster tools"
|
184 |
|
185 |
-
#: google-sitemap-plugin.php:
|
186 |
msgid "Save Changes"
|
187 |
msgstr "حفظ الاعدادات"
|
188 |
|
189 |
-
#: google-sitemap-plugin.php:
|
190 |
#, fuzzy
|
191 |
msgid "Please enter your login and password"
|
192 |
msgstr "يجب عليك كتابة اسم الدخول والرقم السري"
|
193 |
|
194 |
-
#: google-sitemap-plugin.php:
|
195 |
#, fuzzy
|
196 |
msgid "You should choose at least one action"
|
197 |
msgstr "يجب عليك اختيار عملية واحدة علي الاقل"
|
198 |
|
199 |
-
#: google-sitemap-plugin.php:
|
200 |
#, fuzzy
|
201 |
msgid "Login and password do not match. Please try again"
|
202 |
msgstr "اسم الدخول والرقم السري // غير مطابقة , الرجاء اعادة المحاولة مرة اخري"
|
203 |
|
204 |
-
#: google-sitemap-plugin.php:
|
205 |
#, fuzzy
|
206 |
msgid "This site is not added to the Google Webmaster Tools account"
|
207 |
msgstr "هذه الموقع غير مضاف الي حساب google webmaster tools"
|
208 |
|
209 |
-
#: google-sitemap-plugin.php:
|
210 |
#, fuzzy
|
211 |
msgid "Site URL:"
|
212 |
msgstr "رابط الموقع :"
|
213 |
|
214 |
-
#: google-sitemap-plugin.php:
|
215 |
#, fuzzy
|
216 |
msgid "Site verification:"
|
217 |
msgstr "كود التحقق لهذه الموقع :"
|
218 |
|
219 |
-
#: google-sitemap-plugin.php:
|
220 |
#, fuzzy
|
221 |
msgid "verified"
|
222 |
msgstr "التحقق"
|
223 |
|
224 |
-
#: google-sitemap-plugin.php:
|
225 |
#, fuzzy
|
226 |
msgid "not verified"
|
227 |
msgstr "لا يوجد تحقق"
|
228 |
|
229 |
-
#: google-sitemap-plugin.php:
|
230 |
#, fuzzy
|
231 |
msgid "Sitemap file:"
|
232 |
msgstr "ملف الخريطة :"
|
233 |
|
234 |
-
#: google-sitemap-plugin.php:
|
235 |
msgid "added"
|
236 |
msgstr "اضيفت"
|
237 |
|
238 |
-
#: google-sitemap-plugin.php:
|
239 |
msgid "not added"
|
240 |
msgstr "لم تضاف"
|
241 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 14:45+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 14:45+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Albayan Design, hani aladoli <info@albayan-design.com, darkking8@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:108
|
20 |
+
msgid "Not set"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: google-sitemap-plugin.php:110
|
24 |
+
#: google-sitemap-plugin.php:114
|
25 |
+
msgid "On"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: google-sitemap-plugin.php:112
|
29 |
+
#: google-sitemap-plugin.php:116
|
30 |
+
msgid "Off"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: google-sitemap-plugin.php:120
|
34 |
+
#: google-sitemap-plugin.php:124
|
35 |
+
#: google-sitemap-plugin.php:128
|
36 |
+
#: google-sitemap-plugin.php:132
|
37 |
+
#: google-sitemap-plugin.php:136
|
38 |
+
#: google-sitemap-plugin.php:162
|
39 |
+
msgid "N/A"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: google-sitemap-plugin.php:134
|
43 |
+
msgid " Mb"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: google-sitemap-plugin.php:138
|
47 |
+
#: google-sitemap-plugin.php:142
|
48 |
+
#: google-sitemap-plugin.php:146
|
49 |
+
#: google-sitemap-plugin.php:157
|
50 |
+
msgid "Yes"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: google-sitemap-plugin.php:140
|
54 |
+
#: google-sitemap-plugin.php:144
|
55 |
+
#: google-sitemap-plugin.php:148
|
56 |
+
#: google-sitemap-plugin.php:159
|
57 |
+
msgid "No"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: google-sitemap-plugin.php:173
|
61 |
+
msgid "Operating System"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: google-sitemap-plugin.php:174
|
65 |
+
msgid "Server"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: google-sitemap-plugin.php:175
|
69 |
+
msgid "Memory usage"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: google-sitemap-plugin.php:176
|
73 |
+
msgid "MYSQL Version"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: google-sitemap-plugin.php:177
|
77 |
+
msgid "SQL Mode"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: google-sitemap-plugin.php:178
|
81 |
+
msgid "PHP Version"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: google-sitemap-plugin.php:179
|
85 |
+
msgid "PHP Safe Mode"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: google-sitemap-plugin.php:180
|
89 |
+
msgid "PHP Allow URL fopen"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: google-sitemap-plugin.php:181
|
93 |
+
msgid "PHP Memory Limit"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: google-sitemap-plugin.php:182
|
97 |
+
msgid "PHP Max Upload Size"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: google-sitemap-plugin.php:183
|
101 |
+
msgid "PHP Max Post Size"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: google-sitemap-plugin.php:184
|
105 |
+
msgid "PHP Max Script Execute Time"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: google-sitemap-plugin.php:185
|
109 |
+
msgid "PHP Exif support"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: google-sitemap-plugin.php:186
|
113 |
+
msgid "PHP IPTC support"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: google-sitemap-plugin.php:187
|
117 |
+
msgid "PHP XML support"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: google-sitemap-plugin.php:188
|
121 |
+
#, fuzzy
|
122 |
+
msgid "Site URL"
|
123 |
+
msgstr "رابط الموقع :"
|
124 |
+
|
125 |
+
#: google-sitemap-plugin.php:189
|
126 |
+
msgid "Home URL"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: google-sitemap-plugin.php:190
|
130 |
+
msgid "WordPress Version"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: google-sitemap-plugin.php:191
|
134 |
+
msgid "WordPress DB Version"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: google-sitemap-plugin.php:192
|
138 |
+
msgid "Multisite"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: google-sitemap-plugin.php:193
|
142 |
+
msgid "Active Theme"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: google-sitemap-plugin.php:208
|
146 |
+
#, fuzzy
|
147 |
+
msgid "Please enter a valid email address."
|
148 |
+
msgstr "يجب عليك كتابة اسم الدخول والرقم السري"
|
149 |
+
|
150 |
+
#: google-sitemap-plugin.php:212
|
151 |
+
msgid "Email with system info is sent to "
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: google-sitemap-plugin.php:216
|
155 |
+
msgid "Thank you for contacting us."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: google-sitemap-plugin.php:244
|
159 |
+
msgid "Sorry, email message could not be delivered."
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: google-sitemap-plugin.php:252
|
163 |
#, fuzzy
|
164 |
msgid "Pro plugins"
|
165 |
msgstr " اضافات BWS"
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:255
|
168 |
+
#: google-sitemap-plugin.php:281
|
169 |
msgid "Activated plugins"
|
170 |
msgstr "الاضافات المفعلة"
|
171 |
|
172 |
+
#: google-sitemap-plugin.php:257
|
173 |
+
#: google-sitemap-plugin.php:265
|
174 |
+
#: google-sitemap-plugin.php:273
|
175 |
+
#: google-sitemap-plugin.php:283
|
176 |
+
#: google-sitemap-plugin.php:291
|
177 |
+
#: google-sitemap-plugin.php:299
|
178 |
msgid "Read more"
|
179 |
msgstr "اقراء المزيد..."
|
180 |
|
181 |
+
#: google-sitemap-plugin.php:257
|
182 |
+
#: google-sitemap-plugin.php:283
|
183 |
+
#: google-sitemap-plugin.php:864
|
184 |
msgid "Settings"
|
185 |
msgstr "الاعدادات"
|
186 |
|
187 |
+
#: google-sitemap-plugin.php:263
|
188 |
+
#: google-sitemap-plugin.php:289
|
189 |
msgid "Installed plugins"
|
190 |
msgstr "الاضافات المثبته"
|
191 |
|
192 |
+
#: google-sitemap-plugin.php:271
|
193 |
+
#: google-sitemap-plugin.php:297
|
194 |
msgid "Recommended plugins"
|
195 |
msgstr "اضافات موصي بها"
|
196 |
|
197 |
+
#: google-sitemap-plugin.php:273
|
198 |
msgid "Purchase"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: google-sitemap-plugin.php:278
|
202 |
#, fuzzy
|
203 |
msgid "Free plugins"
|
204 |
msgstr "اضافات موصي بها"
|
205 |
|
206 |
+
#: google-sitemap-plugin.php:299
|
207 |
msgid "Download"
|
208 |
msgstr "تحميل"
|
209 |
|
210 |
+
#: google-sitemap-plugin.php:299
|
211 |
#, php-format
|
212 |
msgid "Install %s"
|
213 |
msgstr "تثبيت %s"
|
214 |
|
215 |
+
#: google-sitemap-plugin.php:299
|
216 |
msgid "Install now from wordpress.org"
|
217 |
msgstr "حملها الان من wordpress.org"
|
218 |
|
219 |
+
#: google-sitemap-plugin.php:304
|
220 |
msgid "If you have any questions, please contact us via"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: google-sitemap-plugin.php:311
|
224 |
+
msgid "System status"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: google-sitemap-plugin.php:315
|
228 |
+
msgid "Environment"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: google-sitemap-plugin.php:326
|
232 |
+
#, fuzzy
|
233 |
+
msgid "Active Plugins"
|
234 |
+
msgstr "الاضافات المفعلة"
|
235 |
+
|
236 |
+
#: google-sitemap-plugin.php:337
|
237 |
+
#, fuzzy
|
238 |
+
msgid "Inactive Plugins"
|
239 |
+
msgstr "الاضافات المفعلة"
|
240 |
+
|
241 |
+
#: google-sitemap-plugin.php:351
|
242 |
+
msgid "Send to support"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: google-sitemap-plugin.php:358
|
246 |
+
msgid "Send to custom email »"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: google-sitemap-plugin.php:373
|
250 |
msgid "BWS Plugins"
|
251 |
msgstr " اضافات BWS"
|
252 |
|
253 |
+
#: google-sitemap-plugin.php:374
|
254 |
msgid "Google Sitemap Options"
|
255 |
msgstr "خيارات خرائط جوجل"
|
256 |
|
257 |
+
#: google-sitemap-plugin.php:374
|
258 |
msgid "Google Sitemap"
|
259 |
msgstr "خرائط جوجل"
|
260 |
|
261 |
+
#: google-sitemap-plugin.php:485
|
262 |
+
#: google-sitemap-plugin.php:560
|
263 |
#, fuzzy
|
264 |
msgid "Your Sitemap file is created in the site root directory."
|
265 |
msgstr "تم إنشاء ملف Sitemap الخاص بك في الدليل الرئيسي للموقع."
|
266 |
|
267 |
+
#: google-sitemap-plugin.php:491
|
268 |
msgid "Options saved."
|
269 |
msgstr "تم حفظ الخيارات."
|
270 |
|
271 |
+
#: google-sitemap-plugin.php:551
|
272 |
msgid "Google Sitemap options"
|
273 |
msgstr "خيارات خرائط جوجل"
|
274 |
|
275 |
+
#: google-sitemap-plugin.php:556
|
276 |
#, fuzzy
|
277 |
msgid "The Sitemap file 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."
|
278 |
msgstr "ملف الخريطة موجود مسبقاً . اذا كنت ترغب في انشاء خريطة جديدة قم بوضع علامة في المربع ادناه , في حالة اخري جميع التغيرات سوف تعاد كتابتها فوق الملف الموجود مسبقاُ ."
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:564
|
281 |
+
#: google-sitemap-plugin.php:566
|
282 |
#, fuzzy
|
283 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
284 |
msgstr "إذا كنت لا ترغب في إضافة هذا الملف تلقائيا قد تذهب من خلال"
|
285 |
|
286 |
+
#: google-sitemap-plugin.php:564
|
287 |
+
#: google-sitemap-plugin.php:566
|
288 |
msgid "this"
|
289 |
msgstr "هذه"
|
290 |
|
291 |
+
#: google-sitemap-plugin.php:564
|
292 |
+
#: google-sitemap-plugin.php:566
|
293 |
#, fuzzy
|
294 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
295 |
msgstr "الرابط , تسجيل الدخول , اختياري الموقع ضاروري , اختيار الخرائط , و املاء الحقول الضرورية"
|
296 |
|
297 |
+
#: google-sitemap-plugin.php:569
|
298 |
#, fuzzy
|
299 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
300 |
msgstr "الاستضافة لا تدعم ( CURL ) اذاُ لا يمكنك اضافة ملف الخريطة تلقائياُ"
|
301 |
|
302 |
+
#: google-sitemap-plugin.php:578
|
303 |
#, fuzzy
|
304 |
msgid "I want to create a new sitemap file or update the existing one"
|
305 |
msgstr "ارغب في اضافة مسار ملف الخريطة في robots.txt"
|
306 |
|
307 |
+
#: google-sitemap-plugin.php:584
|
308 |
+
#: google-sitemap-plugin.php:591
|
309 |
msgid "I want to add sitemap file path in robots.txt"
|
310 |
msgstr "ارغب في اضافة مسار ملف الخريطة في robots.txt"
|
311 |
|
312 |
+
#: google-sitemap-plugin.php:585
|
313 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: google-sitemap-plugin.php:596
|
317 |
#, fuzzy
|
318 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
319 |
msgstr "الرجاء اختيار انواع المواضيع الضارورية لاضافة روابطها في الخريطة :"
|
320 |
|
321 |
+
#: google-sitemap-plugin.php:609
|
322 |
#, fuzzy
|
323 |
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."
|
324 |
msgstr "اكتب هنا اسم الدخول والرقم السري الخاصة بـحساب google webmaster tools - للاضافة او حذف ملف الخريطة تلقائياً . او معرفة المعلومات عن هذه الموقع في google webmaster tools"
|
325 |
|
326 |
+
#: google-sitemap-plugin.php:613
|
327 |
msgid "Settings for remote work with google webmaster tools"
|
328 |
msgstr "الضبط للعمل عن بعد مع google webmaster tools"
|
329 |
|
330 |
+
#: google-sitemap-plugin.php:615
|
331 |
msgid "Login"
|
332 |
msgstr "اسم الدخول"
|
333 |
|
334 |
+
#: google-sitemap-plugin.php:616
|
335 |
msgid "Password"
|
336 |
msgstr "الرقم السري"
|
337 |
|
338 |
+
#: google-sitemap-plugin.php:617
|
339 |
#, fuzzy
|
340 |
msgid "I want to add this site to Google Webmaster Tools"
|
341 |
msgstr "ارغب في اضافة هذه الموقع في google webmaster tools"
|
342 |
|
343 |
+
#: google-sitemap-plugin.php:618
|
344 |
#, fuzzy
|
345 |
msgid "I want to delete this site from Google Webmaster Tools"
|
346 |
msgstr "ارغب في حذف هذه الموقع من google webmaster tools"
|
347 |
|
348 |
+
#: google-sitemap-plugin.php:619
|
349 |
+
#: google-sitemap-plugin.php:753
|
350 |
#, fuzzy
|
351 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
352 |
msgstr "ارغب في الحصول علي البيانات هذه الموقع في google webmaster tools"
|
353 |
|
354 |
+
#: google-sitemap-plugin.php:626
|
355 |
msgid "Save Changes"
|
356 |
msgstr "حفظ الاعدادات"
|
357 |
|
358 |
+
#: google-sitemap-plugin.php:634
|
359 |
#, fuzzy
|
360 |
msgid "Please enter your login and password"
|
361 |
msgstr "يجب عليك كتابة اسم الدخول والرقم السري"
|
362 |
|
363 |
+
#: google-sitemap-plugin.php:637
|
364 |
#, fuzzy
|
365 |
msgid "You should choose at least one action"
|
366 |
msgstr "يجب عليك اختيار عملية واحدة علي الاقل"
|
367 |
|
368 |
+
#: google-sitemap-plugin.php:667
|
369 |
#, fuzzy
|
370 |
msgid "Login and password do not match. Please try again"
|
371 |
msgstr "اسم الدخول والرقم السري // غير مطابقة , الرجاء اعادة المحاولة مرة اخري"
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:755
|
374 |
#, fuzzy
|
375 |
msgid "This site is not added to the Google Webmaster Tools account"
|
376 |
msgstr "هذه الموقع غير مضاف الي حساب google webmaster tools"
|
377 |
|
378 |
+
#: google-sitemap-plugin.php:776
|
379 |
#, fuzzy
|
380 |
msgid "Site URL:"
|
381 |
msgstr "رابط الموقع :"
|
382 |
|
383 |
+
#: google-sitemap-plugin.php:777
|
384 |
#, fuzzy
|
385 |
msgid "Site verification:"
|
386 |
msgstr "كود التحقق لهذه الموقع :"
|
387 |
|
388 |
+
#: google-sitemap-plugin.php:779
|
389 |
#, fuzzy
|
390 |
msgid "verified"
|
391 |
msgstr "التحقق"
|
392 |
|
393 |
+
#: google-sitemap-plugin.php:781
|
394 |
#, fuzzy
|
395 |
msgid "not verified"
|
396 |
msgstr "لا يوجد تحقق"
|
397 |
|
398 |
+
#: google-sitemap-plugin.php:782
|
399 |
#, fuzzy
|
400 |
msgid "Sitemap file:"
|
401 |
msgstr "ملف الخريطة :"
|
402 |
|
403 |
+
#: google-sitemap-plugin.php:784
|
404 |
msgid "added"
|
405 |
msgstr "اضيفت"
|
406 |
|
407 |
+
#: google-sitemap-plugin.php:786
|
408 |
msgid "not added"
|
409 |
msgstr "لم تضاف"
|
410 |
|
languages/sitemap-es_ES.mo
CHANGED
Binary file
|
languages/sitemap-es_ES.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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Fernando De León <mrjosefernando@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,226 +16,395 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
#, fuzzy
|
21 |
msgid "Pro plugins"
|
22 |
msgstr "Plugins BWS"
|
23 |
|
24 |
-
#: google-sitemap-plugin.php:
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
msgid "Activated plugins"
|
27 |
msgstr "Plugins Activados"
|
28 |
|
29 |
-
#: google-sitemap-plugin.php:
|
30 |
-
#: google-sitemap-plugin.php:
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
-
#: google-sitemap-plugin.php:
|
35 |
msgid "Read more"
|
36 |
msgstr "Leer más"
|
37 |
|
38 |
-
#: google-sitemap-plugin.php:
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
-
#: google-sitemap-plugin.php:
|
41 |
msgid "Settings"
|
42 |
msgstr "Configuración"
|
43 |
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
msgid "Installed plugins"
|
47 |
msgstr "Plugins Instalados"
|
48 |
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
msgid "Recommended plugins"
|
52 |
msgstr "Plugins Recomendados"
|
53 |
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
msgid "Purchase"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: google-sitemap-plugin.php:
|
59 |
#, fuzzy
|
60 |
msgid "Free plugins"
|
61 |
msgstr "Plugins Recomendados"
|
62 |
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
msgid "Download"
|
65 |
msgstr "Descargar"
|
66 |
|
67 |
-
#: google-sitemap-plugin.php:
|
68 |
#, php-format
|
69 |
msgid "Install %s"
|
70 |
msgstr "Instalar %s"
|
71 |
|
72 |
-
#: google-sitemap-plugin.php:
|
73 |
msgid "Install now from wordpress.org"
|
74 |
msgstr "Instalar desde wordpress.org"
|
75 |
|
76 |
-
#: google-sitemap-plugin.php:
|
77 |
msgid "If you have any questions, please contact us via"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
msgid "BWS Plugins"
|
82 |
msgstr "Plugins BWS"
|
83 |
|
84 |
-
#: google-sitemap-plugin.php:
|
85 |
msgid "Google Sitemap Options"
|
86 |
msgstr "Ajustes de Mapa del Sitio de Google"
|
87 |
|
88 |
-
#: google-sitemap-plugin.php:
|
89 |
msgid "Google Sitemap"
|
90 |
msgstr "Mapa del Sitio de Google"
|
91 |
|
92 |
-
#: google-sitemap-plugin.php:
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
#, fuzzy
|
95 |
msgid "Your Sitemap file is created in the site root directory."
|
96 |
msgstr "El archivo del mapa del sitio se crea en el directorio raíz del sitio. "
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
msgid "Options saved."
|
100 |
msgstr "Configuración guardada !!"
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
msgid "Google Sitemap options"
|
104 |
msgstr "Opciones del Mapa del Sitio"
|
105 |
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
#, fuzzy
|
108 |
msgid "The Sitemap file 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."
|
109 |
msgstr "Ya existe el archivo sitemap. si desea cambiarlo por otro es necesario marcar la casilla de abajo para crear el archivo. o usted lo puede hacer con un archivo que ya exista."
|
110 |
|
111 |
-
#: google-sitemap-plugin.php:
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
#, fuzzy
|
114 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
115 |
msgstr "Si no quiere guardar este archivo se puede ir automáticamente a través de par"
|
116 |
|
117 |
-
#: google-sitemap-plugin.php:
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
msgid "this"
|
120 |
msgstr "este"
|
121 |
|
122 |
-
#: google-sitemap-plugin.php:
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
#, fuzzy
|
125 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
126 |
msgstr "link, registro, seleccione el sitio necesario, el \"Sitemaps\" y escriba el campo cecesario"
|
127 |
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
#, fuzzy
|
130 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
131 |
msgstr "Este alojamiento no es compatible con CURL, por lo que no se puede añadir archivos al Mapa del sitio automáticamente"
|
132 |
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "I want to create a new sitemap file or update the existing one"
|
136 |
msgstr "Quiero añadir el Mapa del sitio ruta del archivo en robots.txt"
|
137 |
|
138 |
-
#: google-sitemap-plugin.php:
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
msgid "I want to add sitemap file path in robots.txt"
|
141 |
msgstr "Quiero añadir el Mapa del sitio ruta del archivo en robots.txt"
|
142 |
|
143 |
-
#: google-sitemap-plugin.php:
|
144 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: google-sitemap-plugin.php:
|
148 |
#, fuzzy
|
149 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
150 |
msgstr "Por favor, seleccione los tipos de publicaciones necesarios para agregar en el mapa del sitio:"
|
151 |
|
152 |
-
#: google-sitemap-plugin.php:
|
153 |
#, fuzzy
|
154 |
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."
|
155 |
msgstr "Escriba aquí su nombre de usuario y contraseña de Herramientas para Webmasters de Google para agregar o eliminar el sitio y el archivo del mapa de forma automática o para obtener información de este sitio en Herramientas para Webmasters de Google."
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "Settings for remote work with google webmaster tools"
|
159 |
msgstr "Ajustes para el trabajo a distancia con Herramientas para Webmasters de Google"
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
msgid "Login"
|
163 |
msgstr "Cuenta"
|
164 |
|
165 |
-
#: google-sitemap-plugin.php:
|
166 |
msgid "Password"
|
167 |
msgstr "Contraseña"
|
168 |
|
169 |
-
#: google-sitemap-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "I want to add this site to Google Webmaster Tools"
|
172 |
msgstr "Quiero añadir este sitio a las Herramientas para Webmasters de Google"
|
173 |
|
174 |
-
#: google-sitemap-plugin.php:
|
175 |
#, fuzzy
|
176 |
msgid "I want to delete this site from Google Webmaster Tools"
|
177 |
msgstr "Quiero quitar a este sitio desde Herramientas para Webmasters de Google"
|
178 |
|
179 |
-
#: google-sitemap-plugin.php:
|
180 |
-
#: google-sitemap-plugin.php:
|
181 |
#, fuzzy
|
182 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
183 |
msgstr "Quiero ver información acerca de este sitio en Herramientas para Webmasters de Google"
|
184 |
|
185 |
-
#: google-sitemap-plugin.php:
|
186 |
msgid "Save Changes"
|
187 |
msgstr "Guardar Configuración"
|
188 |
|
189 |
-
#: google-sitemap-plugin.php:
|
190 |
#, fuzzy
|
191 |
msgid "Please enter your login and password"
|
192 |
msgstr "Debe introducir nombre de usuario y contraseña"
|
193 |
|
194 |
-
#: google-sitemap-plugin.php:
|
195 |
#, fuzzy
|
196 |
msgid "You should choose at least one action"
|
197 |
msgstr "Debe elegir al menos una acción"
|
198 |
|
199 |
-
#: google-sitemap-plugin.php:
|
200 |
#, fuzzy
|
201 |
msgid "Login and password do not match. Please try again"
|
202 |
msgstr "El nombre de usuario y/o contraseña está(n) mal, por favor, intenta de nuevo"
|
203 |
|
204 |
-
#: google-sitemap-plugin.php:
|
205 |
#, fuzzy
|
206 |
msgid "This site is not added to the Google Webmaster Tools account"
|
207 |
msgstr "Este sitio no está agregado a su cuenta de Herramientas para Webmasters de Google"
|
208 |
|
209 |
-
#: google-sitemap-plugin.php:
|
210 |
#, fuzzy
|
211 |
msgid "Site URL:"
|
212 |
msgstr "URL del sitio: "
|
213 |
|
214 |
-
#: google-sitemap-plugin.php:
|
215 |
#, fuzzy
|
216 |
msgid "Site verification:"
|
217 |
msgstr "Verificación del sitio: "
|
218 |
|
219 |
-
#: google-sitemap-plugin.php:
|
220 |
#, fuzzy
|
221 |
msgid "verified"
|
222 |
msgstr "verificado"
|
223 |
|
224 |
-
#: google-sitemap-plugin.php:
|
225 |
#, fuzzy
|
226 |
msgid "not verified"
|
227 |
msgstr "no verificado"
|
228 |
|
229 |
-
#: google-sitemap-plugin.php:
|
230 |
#, fuzzy
|
231 |
msgid "Sitemap file:"
|
232 |
msgstr "Archivo del Mapa del Sitio: "
|
233 |
|
234 |
-
#: google-sitemap-plugin.php:
|
235 |
msgid "added"
|
236 |
msgstr "agregado"
|
237 |
|
238 |
-
#: google-sitemap-plugin.php:
|
239 |
msgid "not added"
|
240 |
msgstr "no agregado"
|
241 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 14:45+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 14:45+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Fernando De León <mrjosefernando@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.5\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:108
|
20 |
+
msgid "Not set"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: google-sitemap-plugin.php:110
|
24 |
+
#: google-sitemap-plugin.php:114
|
25 |
+
msgid "On"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: google-sitemap-plugin.php:112
|
29 |
+
#: google-sitemap-plugin.php:116
|
30 |
+
msgid "Off"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: google-sitemap-plugin.php:120
|
34 |
+
#: google-sitemap-plugin.php:124
|
35 |
+
#: google-sitemap-plugin.php:128
|
36 |
+
#: google-sitemap-plugin.php:132
|
37 |
+
#: google-sitemap-plugin.php:136
|
38 |
+
#: google-sitemap-plugin.php:162
|
39 |
+
msgid "N/A"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: google-sitemap-plugin.php:134
|
43 |
+
msgid " Mb"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: google-sitemap-plugin.php:138
|
47 |
+
#: google-sitemap-plugin.php:142
|
48 |
+
#: google-sitemap-plugin.php:146
|
49 |
+
#: google-sitemap-plugin.php:157
|
50 |
+
msgid "Yes"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: google-sitemap-plugin.php:140
|
54 |
+
#: google-sitemap-plugin.php:144
|
55 |
+
#: google-sitemap-plugin.php:148
|
56 |
+
#: google-sitemap-plugin.php:159
|
57 |
+
msgid "No"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: google-sitemap-plugin.php:173
|
61 |
+
msgid "Operating System"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: google-sitemap-plugin.php:174
|
65 |
+
msgid "Server"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: google-sitemap-plugin.php:175
|
69 |
+
msgid "Memory usage"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: google-sitemap-plugin.php:176
|
73 |
+
msgid "MYSQL Version"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: google-sitemap-plugin.php:177
|
77 |
+
msgid "SQL Mode"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: google-sitemap-plugin.php:178
|
81 |
+
msgid "PHP Version"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: google-sitemap-plugin.php:179
|
85 |
+
msgid "PHP Safe Mode"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: google-sitemap-plugin.php:180
|
89 |
+
msgid "PHP Allow URL fopen"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: google-sitemap-plugin.php:181
|
93 |
+
msgid "PHP Memory Limit"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: google-sitemap-plugin.php:182
|
97 |
+
msgid "PHP Max Upload Size"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: google-sitemap-plugin.php:183
|
101 |
+
msgid "PHP Max Post Size"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: google-sitemap-plugin.php:184
|
105 |
+
msgid "PHP Max Script Execute Time"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: google-sitemap-plugin.php:185
|
109 |
+
msgid "PHP Exif support"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: google-sitemap-plugin.php:186
|
113 |
+
msgid "PHP IPTC support"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: google-sitemap-plugin.php:187
|
117 |
+
msgid "PHP XML support"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: google-sitemap-plugin.php:188
|
121 |
+
#, fuzzy
|
122 |
+
msgid "Site URL"
|
123 |
+
msgstr "URL del sitio: "
|
124 |
+
|
125 |
+
#: google-sitemap-plugin.php:189
|
126 |
+
msgid "Home URL"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: google-sitemap-plugin.php:190
|
130 |
+
msgid "WordPress Version"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: google-sitemap-plugin.php:191
|
134 |
+
msgid "WordPress DB Version"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: google-sitemap-plugin.php:192
|
138 |
+
msgid "Multisite"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: google-sitemap-plugin.php:193
|
142 |
+
msgid "Active Theme"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: google-sitemap-plugin.php:208
|
146 |
+
#, fuzzy
|
147 |
+
msgid "Please enter a valid email address."
|
148 |
+
msgstr "Debe introducir nombre de usuario y contraseña"
|
149 |
+
|
150 |
+
#: google-sitemap-plugin.php:212
|
151 |
+
msgid "Email with system info is sent to "
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: google-sitemap-plugin.php:216
|
155 |
+
msgid "Thank you for contacting us."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: google-sitemap-plugin.php:244
|
159 |
+
msgid "Sorry, email message could not be delivered."
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: google-sitemap-plugin.php:252
|
163 |
#, fuzzy
|
164 |
msgid "Pro plugins"
|
165 |
msgstr "Plugins BWS"
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:255
|
168 |
+
#: google-sitemap-plugin.php:281
|
169 |
msgid "Activated plugins"
|
170 |
msgstr "Plugins Activados"
|
171 |
|
172 |
+
#: google-sitemap-plugin.php:257
|
173 |
+
#: google-sitemap-plugin.php:265
|
174 |
+
#: google-sitemap-plugin.php:273
|
175 |
+
#: google-sitemap-plugin.php:283
|
176 |
+
#: google-sitemap-plugin.php:291
|
177 |
+
#: google-sitemap-plugin.php:299
|
178 |
msgid "Read more"
|
179 |
msgstr "Leer más"
|
180 |
|
181 |
+
#: google-sitemap-plugin.php:257
|
182 |
+
#: google-sitemap-plugin.php:283
|
183 |
+
#: google-sitemap-plugin.php:864
|
184 |
msgid "Settings"
|
185 |
msgstr "Configuración"
|
186 |
|
187 |
+
#: google-sitemap-plugin.php:263
|
188 |
+
#: google-sitemap-plugin.php:289
|
189 |
msgid "Installed plugins"
|
190 |
msgstr "Plugins Instalados"
|
191 |
|
192 |
+
#: google-sitemap-plugin.php:271
|
193 |
+
#: google-sitemap-plugin.php:297
|
194 |
msgid "Recommended plugins"
|
195 |
msgstr "Plugins Recomendados"
|
196 |
|
197 |
+
#: google-sitemap-plugin.php:273
|
198 |
msgid "Purchase"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: google-sitemap-plugin.php:278
|
202 |
#, fuzzy
|
203 |
msgid "Free plugins"
|
204 |
msgstr "Plugins Recomendados"
|
205 |
|
206 |
+
#: google-sitemap-plugin.php:299
|
207 |
msgid "Download"
|
208 |
msgstr "Descargar"
|
209 |
|
210 |
+
#: google-sitemap-plugin.php:299
|
211 |
#, php-format
|
212 |
msgid "Install %s"
|
213 |
msgstr "Instalar %s"
|
214 |
|
215 |
+
#: google-sitemap-plugin.php:299
|
216 |
msgid "Install now from wordpress.org"
|
217 |
msgstr "Instalar desde wordpress.org"
|
218 |
|
219 |
+
#: google-sitemap-plugin.php:304
|
220 |
msgid "If you have any questions, please contact us via"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: google-sitemap-plugin.php:311
|
224 |
+
msgid "System status"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: google-sitemap-plugin.php:315
|
228 |
+
msgid "Environment"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: google-sitemap-plugin.php:326
|
232 |
+
#, fuzzy
|
233 |
+
msgid "Active Plugins"
|
234 |
+
msgstr "Plugins Activados"
|
235 |
+
|
236 |
+
#: google-sitemap-plugin.php:337
|
237 |
+
#, fuzzy
|
238 |
+
msgid "Inactive Plugins"
|
239 |
+
msgstr "Plugins Activados"
|
240 |
+
|
241 |
+
#: google-sitemap-plugin.php:351
|
242 |
+
msgid "Send to support"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: google-sitemap-plugin.php:358
|
246 |
+
msgid "Send to custom email »"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: google-sitemap-plugin.php:373
|
250 |
msgid "BWS Plugins"
|
251 |
msgstr "Plugins BWS"
|
252 |
|
253 |
+
#: google-sitemap-plugin.php:374
|
254 |
msgid "Google Sitemap Options"
|
255 |
msgstr "Ajustes de Mapa del Sitio de Google"
|
256 |
|
257 |
+
#: google-sitemap-plugin.php:374
|
258 |
msgid "Google Sitemap"
|
259 |
msgstr "Mapa del Sitio de Google"
|
260 |
|
261 |
+
#: google-sitemap-plugin.php:485
|
262 |
+
#: google-sitemap-plugin.php:560
|
263 |
#, fuzzy
|
264 |
msgid "Your Sitemap file is created in the site root directory."
|
265 |
msgstr "El archivo del mapa del sitio se crea en el directorio raíz del sitio. "
|
266 |
|
267 |
+
#: google-sitemap-plugin.php:491
|
268 |
msgid "Options saved."
|
269 |
msgstr "Configuración guardada !!"
|
270 |
|
271 |
+
#: google-sitemap-plugin.php:551
|
272 |
msgid "Google Sitemap options"
|
273 |
msgstr "Opciones del Mapa del Sitio"
|
274 |
|
275 |
+
#: google-sitemap-plugin.php:556
|
276 |
#, fuzzy
|
277 |
msgid "The Sitemap file 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."
|
278 |
msgstr "Ya existe el archivo sitemap. si desea cambiarlo por otro es necesario marcar la casilla de abajo para crear el archivo. o usted lo puede hacer con un archivo que ya exista."
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:564
|
281 |
+
#: google-sitemap-plugin.php:566
|
282 |
#, fuzzy
|
283 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
284 |
msgstr "Si no quiere guardar este archivo se puede ir automáticamente a través de par"
|
285 |
|
286 |
+
#: google-sitemap-plugin.php:564
|
287 |
+
#: google-sitemap-plugin.php:566
|
288 |
msgid "this"
|
289 |
msgstr "este"
|
290 |
|
291 |
+
#: google-sitemap-plugin.php:564
|
292 |
+
#: google-sitemap-plugin.php:566
|
293 |
#, fuzzy
|
294 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
295 |
msgstr "link, registro, seleccione el sitio necesario, el \"Sitemaps\" y escriba el campo cecesario"
|
296 |
|
297 |
+
#: google-sitemap-plugin.php:569
|
298 |
#, fuzzy
|
299 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
300 |
msgstr "Este alojamiento no es compatible con CURL, por lo que no se puede añadir archivos al Mapa del sitio automáticamente"
|
301 |
|
302 |
+
#: google-sitemap-plugin.php:578
|
303 |
#, fuzzy
|
304 |
msgid "I want to create a new sitemap file or update the existing one"
|
305 |
msgstr "Quiero añadir el Mapa del sitio ruta del archivo en robots.txt"
|
306 |
|
307 |
+
#: google-sitemap-plugin.php:584
|
308 |
+
#: google-sitemap-plugin.php:591
|
309 |
msgid "I want to add sitemap file path in robots.txt"
|
310 |
msgstr "Quiero añadir el Mapa del sitio ruta del archivo en robots.txt"
|
311 |
|
312 |
+
#: google-sitemap-plugin.php:585
|
313 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: google-sitemap-plugin.php:596
|
317 |
#, fuzzy
|
318 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
319 |
msgstr "Por favor, seleccione los tipos de publicaciones necesarios para agregar en el mapa del sitio:"
|
320 |
|
321 |
+
#: google-sitemap-plugin.php:609
|
322 |
#, fuzzy
|
323 |
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."
|
324 |
msgstr "Escriba aquí su nombre de usuario y contraseña de Herramientas para Webmasters de Google para agregar o eliminar el sitio y el archivo del mapa de forma automática o para obtener información de este sitio en Herramientas para Webmasters de Google."
|
325 |
|
326 |
+
#: google-sitemap-plugin.php:613
|
327 |
msgid "Settings for remote work with google webmaster tools"
|
328 |
msgstr "Ajustes para el trabajo a distancia con Herramientas para Webmasters de Google"
|
329 |
|
330 |
+
#: google-sitemap-plugin.php:615
|
331 |
msgid "Login"
|
332 |
msgstr "Cuenta"
|
333 |
|
334 |
+
#: google-sitemap-plugin.php:616
|
335 |
msgid "Password"
|
336 |
msgstr "Contraseña"
|
337 |
|
338 |
+
#: google-sitemap-plugin.php:617
|
339 |
#, fuzzy
|
340 |
msgid "I want to add this site to Google Webmaster Tools"
|
341 |
msgstr "Quiero añadir este sitio a las Herramientas para Webmasters de Google"
|
342 |
|
343 |
+
#: google-sitemap-plugin.php:618
|
344 |
#, fuzzy
|
345 |
msgid "I want to delete this site from Google Webmaster Tools"
|
346 |
msgstr "Quiero quitar a este sitio desde Herramientas para Webmasters de Google"
|
347 |
|
348 |
+
#: google-sitemap-plugin.php:619
|
349 |
+
#: google-sitemap-plugin.php:753
|
350 |
#, fuzzy
|
351 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
352 |
msgstr "Quiero ver información acerca de este sitio en Herramientas para Webmasters de Google"
|
353 |
|
354 |
+
#: google-sitemap-plugin.php:626
|
355 |
msgid "Save Changes"
|
356 |
msgstr "Guardar Configuración"
|
357 |
|
358 |
+
#: google-sitemap-plugin.php:634
|
359 |
#, fuzzy
|
360 |
msgid "Please enter your login and password"
|
361 |
msgstr "Debe introducir nombre de usuario y contraseña"
|
362 |
|
363 |
+
#: google-sitemap-plugin.php:637
|
364 |
#, fuzzy
|
365 |
msgid "You should choose at least one action"
|
366 |
msgstr "Debe elegir al menos una acción"
|
367 |
|
368 |
+
#: google-sitemap-plugin.php:667
|
369 |
#, fuzzy
|
370 |
msgid "Login and password do not match. Please try again"
|
371 |
msgstr "El nombre de usuario y/o contraseña está(n) mal, por favor, intenta de nuevo"
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:755
|
374 |
#, fuzzy
|
375 |
msgid "This site is not added to the Google Webmaster Tools account"
|
376 |
msgstr "Este sitio no está agregado a su cuenta de Herramientas para Webmasters de Google"
|
377 |
|
378 |
+
#: google-sitemap-plugin.php:776
|
379 |
#, fuzzy
|
380 |
msgid "Site URL:"
|
381 |
msgstr "URL del sitio: "
|
382 |
|
383 |
+
#: google-sitemap-plugin.php:777
|
384 |
#, fuzzy
|
385 |
msgid "Site verification:"
|
386 |
msgstr "Verificación del sitio: "
|
387 |
|
388 |
+
#: google-sitemap-plugin.php:779
|
389 |
#, fuzzy
|
390 |
msgid "verified"
|
391 |
msgstr "verificado"
|
392 |
|
393 |
+
#: google-sitemap-plugin.php:781
|
394 |
#, fuzzy
|
395 |
msgid "not verified"
|
396 |
msgstr "no verificado"
|
397 |
|
398 |
+
#: google-sitemap-plugin.php:782
|
399 |
#, fuzzy
|
400 |
msgid "Sitemap file:"
|
401 |
msgstr "Archivo del Mapa del Sitio: "
|
402 |
|
403 |
+
#: google-sitemap-plugin.php:784
|
404 |
msgid "added"
|
405 |
msgstr "agregado"
|
406 |
|
407 |
+
#: google-sitemap-plugin.php:786
|
408 |
msgid "not added"
|
409 |
msgstr "no agregado"
|
410 |
|
languages/sitemap-fr_FR.mo
CHANGED
Binary file
|
languages/sitemap-fr_FR.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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Jeff <paillat.jeff@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,226 +16,395 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
#, fuzzy
|
21 |
msgid "Pro plugins"
|
22 |
msgstr "Plugins BWS"
|
23 |
|
24 |
-
#: google-sitemap-plugin.php:
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
msgid "Activated plugins"
|
27 |
msgstr "Plugins activés"
|
28 |
|
29 |
-
#: google-sitemap-plugin.php:
|
30 |
-
#: google-sitemap-plugin.php:
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
-
#: google-sitemap-plugin.php:
|
35 |
msgid "Read more"
|
36 |
msgstr "Lire la suite"
|
37 |
|
38 |
-
#: google-sitemap-plugin.php:
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
-
#: google-sitemap-plugin.php:
|
41 |
msgid "Settings"
|
42 |
msgstr "Paramètres"
|
43 |
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
msgid "Installed plugins"
|
47 |
msgstr "Plugins installés"
|
48 |
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
msgid "Recommended plugins"
|
52 |
msgstr "Plugins recommandés"
|
53 |
|
54 |
-
#: google-sitemap-plugin.php:
|
55 |
msgid "Purchase"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: google-sitemap-plugin.php:
|
59 |
#, fuzzy
|
60 |
msgid "Free plugins"
|
61 |
msgstr "Plugins recommandés"
|
62 |
|
63 |
-
#: google-sitemap-plugin.php:
|
64 |
msgid "Download"
|
65 |
msgstr "Télécharger"
|
66 |
|
67 |
-
#: google-sitemap-plugin.php:
|
68 |
#, php-format
|
69 |
msgid "Install %s"
|
70 |
msgstr "Installer %s"
|
71 |
|
72 |
-
#: google-sitemap-plugin.php:
|
73 |
msgid "Install now from wordpress.org"
|
74 |
msgstr "Installer maintenant de wordpress.org"
|
75 |
|
76 |
-
#: google-sitemap-plugin.php:
|
77 |
msgid "If you have any questions, please contact us via"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
msgid "BWS Plugins"
|
82 |
msgstr "Plugins BWS"
|
83 |
|
84 |
-
#: google-sitemap-plugin.php:
|
85 |
msgid "Google Sitemap Options"
|
86 |
msgstr "Options de Google Sitemap"
|
87 |
|
88 |
-
#: google-sitemap-plugin.php:
|
89 |
msgid "Google Sitemap"
|
90 |
msgstr "Google Sitemap"
|
91 |
|
92 |
-
#: google-sitemap-plugin.php:
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
#, fuzzy
|
95 |
msgid "Your Sitemap file is created in the site root directory."
|
96 |
msgstr "Votre fichier sitemap est créé dans le répertoire racine du site. "
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
msgid "Options saved."
|
100 |
msgstr "Options enregistrées !!"
|
101 |
|
102 |
-
#: google-sitemap-plugin.php:
|
103 |
msgid "Google Sitemap options"
|
104 |
msgstr "Google Sitemap options de"
|
105 |
|
106 |
-
#: google-sitemap-plugin.php:
|
107 |
#, fuzzy
|
108 |
msgid "The Sitemap file 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."
|
109 |
msgstr "Le fichier sitemap est existe déjà. Si vous voulez le changer pour un nouveau fichier sitemap cochez la case ci-dessous nécessaire. Dans le cas contraire toutes les actions seront effectuées sur un fichier existant."
|
110 |
|
111 |
-
#: google-sitemap-plugin.php:
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
#, fuzzy
|
114 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
115 |
msgstr "Si vous ne voulez pas ajouter automatiquement ce fichier vous pouvez passer par"
|
116 |
|
117 |
-
#: google-sitemap-plugin.php:
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
msgid "this"
|
120 |
msgstr "cela"
|
121 |
|
122 |
-
#: google-sitemap-plugin.php:
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
#, fuzzy
|
125 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
126 |
msgstr "lien, connectez-vous, sélectionnez le site nécessaire, sélectionnez 'Sitemaps' et tapez dans le champ nécessaire"
|
127 |
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
#, fuzzy
|
130 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
131 |
msgstr "Cet hébergement ne supporte pas CURL, de sorte que vous ne pouvez pas ajouter fichier sitemap automatiquement"
|
132 |
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
#, fuzzy
|
135 |
msgid "I want to create a new sitemap file or update the existing one"
|
136 |
msgstr "Je tiens à ajouter le chemin fichier sitemap dans le fichier robots.txt"
|
137 |
|
138 |
-
#: google-sitemap-plugin.php:
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
msgid "I want to add sitemap file path in robots.txt"
|
141 |
msgstr "Je tiens à ajouter le chemin fichier sitemap dans le fichier robots.txt"
|
142 |
|
143 |
-
#: google-sitemap-plugin.php:
|
144 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: google-sitemap-plugin.php:
|
148 |
#, fuzzy
|
149 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
150 |
msgstr "S'il vous plaît choisir les types de postes nécessaires afin d'ajouter des liens vers eux dans le sitemap:"
|
151 |
|
152 |
-
#: google-sitemap-plugin.php:
|
153 |
#, fuzzy
|
154 |
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."
|
155 |
msgstr "Tapez ici votre login et mot de passe de votre compte Google Outils pour les webmasters d'ajouter ou de supprimer du site et fichier sitemap automatiquement ou pour obtenir des informations sur ce site dans Google Webmaster Tools."
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "Settings for remote work with google webmaster tools"
|
159 |
msgstr "Réglages pour le travail à distance avec Google Webmaster Tools"
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
msgid "Login"
|
163 |
msgstr "Connexion"
|
164 |
|
165 |
-
#: google-sitemap-plugin.php:
|
166 |
msgid "Password"
|
167 |
msgstr "PASSWORD"
|
168 |
|
169 |
-
#: google-sitemap-plugin.php:
|
170 |
#, fuzzy
|
171 |
msgid "I want to add this site to Google Webmaster Tools"
|
172 |
msgstr "Je tiens à ajouter ce site à google webmaster outils de l'"
|
173 |
|
174 |
-
#: google-sitemap-plugin.php:
|
175 |
#, fuzzy
|
176 |
msgid "I want to delete this site from Google Webmaster Tools"
|
177 |
msgstr "Je veux supprimer ce site à partir de Google Webmaster Tools"
|
178 |
|
179 |
-
#: google-sitemap-plugin.php:
|
180 |
-
#: google-sitemap-plugin.php:
|
181 |
#, fuzzy
|
182 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
183 |
msgstr "Je veux obtenir des informations sur ce site dans Google Webmaster Tools"
|
184 |
|
185 |
-
#: google-sitemap-plugin.php:
|
186 |
msgid "Save Changes"
|
187 |
msgstr "Enregistrer les modifications"
|
188 |
|
189 |
-
#: google-sitemap-plugin.php:
|
190 |
#, fuzzy
|
191 |
msgid "Please enter your login and password"
|
192 |
msgstr "Vous devez entrez votre identifiant et mot de passe"
|
193 |
|
194 |
-
#: google-sitemap-plugin.php:
|
195 |
#, fuzzy
|
196 |
msgid "You should choose at least one action"
|
197 |
msgstr "Vous devez choisir au moins une action"
|
198 |
|
199 |
-
#: google-sitemap-plugin.php:
|
200 |
#, fuzzy
|
201 |
msgid "Login and password do not match. Please try again"
|
202 |
msgstr "Login et mot de passe n\\'t correspondance, réessayer, s'il vous plaît"
|
203 |
|
204 |
-
#: google-sitemap-plugin.php:
|
205 |
#, fuzzy
|
206 |
msgid "This site is not added to the Google Webmaster Tools account"
|
207 |
msgstr "Ce site n'est pas ajouté au compte Google Webmaster Tools"
|
208 |
|
209 |
-
#: google-sitemap-plugin.php:
|
210 |
#, fuzzy
|
211 |
msgid "Site URL:"
|
212 |
msgstr "URL du site: "
|
213 |
|
214 |
-
#: google-sitemap-plugin.php:
|
215 |
#, fuzzy
|
216 |
msgid "Site verification:"
|
217 |
msgstr "Vérification sur place: "
|
218 |
|
219 |
-
#: google-sitemap-plugin.php:
|
220 |
#, fuzzy
|
221 |
msgid "verified"
|
222 |
msgstr "verificated"
|
223 |
|
224 |
-
#: google-sitemap-plugin.php:
|
225 |
#, fuzzy
|
226 |
msgid "not verified"
|
227 |
msgstr "non verificated"
|
228 |
|
229 |
-
#: google-sitemap-plugin.php:
|
230 |
#, fuzzy
|
231 |
msgid "Sitemap file:"
|
232 |
msgstr "Plan du site déposer: "
|
233 |
|
234 |
-
#: google-sitemap-plugin.php:
|
235 |
msgid "added"
|
236 |
msgstr "ajouté"
|
237 |
|
238 |
-
#: google-sitemap-plugin.php:
|
239 |
msgid "not added"
|
240 |
msgstr "pas ajoutées"
|
241 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 14:45+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 14:45+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Jeff <paillat.jeff@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:108
|
20 |
+
msgid "Not set"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: google-sitemap-plugin.php:110
|
24 |
+
#: google-sitemap-plugin.php:114
|
25 |
+
msgid "On"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: google-sitemap-plugin.php:112
|
29 |
+
#: google-sitemap-plugin.php:116
|
30 |
+
msgid "Off"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: google-sitemap-plugin.php:120
|
34 |
+
#: google-sitemap-plugin.php:124
|
35 |
+
#: google-sitemap-plugin.php:128
|
36 |
+
#: google-sitemap-plugin.php:132
|
37 |
+
#: google-sitemap-plugin.php:136
|
38 |
+
#: google-sitemap-plugin.php:162
|
39 |
+
msgid "N/A"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: google-sitemap-plugin.php:134
|
43 |
+
msgid " Mb"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: google-sitemap-plugin.php:138
|
47 |
+
#: google-sitemap-plugin.php:142
|
48 |
+
#: google-sitemap-plugin.php:146
|
49 |
+
#: google-sitemap-plugin.php:157
|
50 |
+
msgid "Yes"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: google-sitemap-plugin.php:140
|
54 |
+
#: google-sitemap-plugin.php:144
|
55 |
+
#: google-sitemap-plugin.php:148
|
56 |
+
#: google-sitemap-plugin.php:159
|
57 |
+
msgid "No"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: google-sitemap-plugin.php:173
|
61 |
+
msgid "Operating System"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: google-sitemap-plugin.php:174
|
65 |
+
msgid "Server"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: google-sitemap-plugin.php:175
|
69 |
+
msgid "Memory usage"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: google-sitemap-plugin.php:176
|
73 |
+
msgid "MYSQL Version"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: google-sitemap-plugin.php:177
|
77 |
+
msgid "SQL Mode"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: google-sitemap-plugin.php:178
|
81 |
+
msgid "PHP Version"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: google-sitemap-plugin.php:179
|
85 |
+
msgid "PHP Safe Mode"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: google-sitemap-plugin.php:180
|
89 |
+
msgid "PHP Allow URL fopen"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: google-sitemap-plugin.php:181
|
93 |
+
msgid "PHP Memory Limit"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: google-sitemap-plugin.php:182
|
97 |
+
msgid "PHP Max Upload Size"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: google-sitemap-plugin.php:183
|
101 |
+
msgid "PHP Max Post Size"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: google-sitemap-plugin.php:184
|
105 |
+
msgid "PHP Max Script Execute Time"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: google-sitemap-plugin.php:185
|
109 |
+
msgid "PHP Exif support"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: google-sitemap-plugin.php:186
|
113 |
+
msgid "PHP IPTC support"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: google-sitemap-plugin.php:187
|
117 |
+
msgid "PHP XML support"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: google-sitemap-plugin.php:188
|
121 |
+
#, fuzzy
|
122 |
+
msgid "Site URL"
|
123 |
+
msgstr "URL du site: "
|
124 |
+
|
125 |
+
#: google-sitemap-plugin.php:189
|
126 |
+
msgid "Home URL"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: google-sitemap-plugin.php:190
|
130 |
+
msgid "WordPress Version"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: google-sitemap-plugin.php:191
|
134 |
+
msgid "WordPress DB Version"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: google-sitemap-plugin.php:192
|
138 |
+
msgid "Multisite"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: google-sitemap-plugin.php:193
|
142 |
+
msgid "Active Theme"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: google-sitemap-plugin.php:208
|
146 |
+
#, fuzzy
|
147 |
+
msgid "Please enter a valid email address."
|
148 |
+
msgstr "Vous devez entrez votre identifiant et mot de passe"
|
149 |
+
|
150 |
+
#: google-sitemap-plugin.php:212
|
151 |
+
msgid "Email with system info is sent to "
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: google-sitemap-plugin.php:216
|
155 |
+
msgid "Thank you for contacting us."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: google-sitemap-plugin.php:244
|
159 |
+
msgid "Sorry, email message could not be delivered."
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: google-sitemap-plugin.php:252
|
163 |
#, fuzzy
|
164 |
msgid "Pro plugins"
|
165 |
msgstr "Plugins BWS"
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:255
|
168 |
+
#: google-sitemap-plugin.php:281
|
169 |
msgid "Activated plugins"
|
170 |
msgstr "Plugins activés"
|
171 |
|
172 |
+
#: google-sitemap-plugin.php:257
|
173 |
+
#: google-sitemap-plugin.php:265
|
174 |
+
#: google-sitemap-plugin.php:273
|
175 |
+
#: google-sitemap-plugin.php:283
|
176 |
+
#: google-sitemap-plugin.php:291
|
177 |
+
#: google-sitemap-plugin.php:299
|
178 |
msgid "Read more"
|
179 |
msgstr "Lire la suite"
|
180 |
|
181 |
+
#: google-sitemap-plugin.php:257
|
182 |
+
#: google-sitemap-plugin.php:283
|
183 |
+
#: google-sitemap-plugin.php:864
|
184 |
msgid "Settings"
|
185 |
msgstr "Paramètres"
|
186 |
|
187 |
+
#: google-sitemap-plugin.php:263
|
188 |
+
#: google-sitemap-plugin.php:289
|
189 |
msgid "Installed plugins"
|
190 |
msgstr "Plugins installés"
|
191 |
|
192 |
+
#: google-sitemap-plugin.php:271
|
193 |
+
#: google-sitemap-plugin.php:297
|
194 |
msgid "Recommended plugins"
|
195 |
msgstr "Plugins recommandés"
|
196 |
|
197 |
+
#: google-sitemap-plugin.php:273
|
198 |
msgid "Purchase"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: google-sitemap-plugin.php:278
|
202 |
#, fuzzy
|
203 |
msgid "Free plugins"
|
204 |
msgstr "Plugins recommandés"
|
205 |
|
206 |
+
#: google-sitemap-plugin.php:299
|
207 |
msgid "Download"
|
208 |
msgstr "Télécharger"
|
209 |
|
210 |
+
#: google-sitemap-plugin.php:299
|
211 |
#, php-format
|
212 |
msgid "Install %s"
|
213 |
msgstr "Installer %s"
|
214 |
|
215 |
+
#: google-sitemap-plugin.php:299
|
216 |
msgid "Install now from wordpress.org"
|
217 |
msgstr "Installer maintenant de wordpress.org"
|
218 |
|
219 |
+
#: google-sitemap-plugin.php:304
|
220 |
msgid "If you have any questions, please contact us via"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: google-sitemap-plugin.php:311
|
224 |
+
msgid "System status"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: google-sitemap-plugin.php:315
|
228 |
+
msgid "Environment"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: google-sitemap-plugin.php:326
|
232 |
+
#, fuzzy
|
233 |
+
msgid "Active Plugins"
|
234 |
+
msgstr "Plugins activés"
|
235 |
+
|
236 |
+
#: google-sitemap-plugin.php:337
|
237 |
+
#, fuzzy
|
238 |
+
msgid "Inactive Plugins"
|
239 |
+
msgstr "Plugins activés"
|
240 |
+
|
241 |
+
#: google-sitemap-plugin.php:351
|
242 |
+
msgid "Send to support"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: google-sitemap-plugin.php:358
|
246 |
+
msgid "Send to custom email »"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: google-sitemap-plugin.php:373
|
250 |
msgid "BWS Plugins"
|
251 |
msgstr "Plugins BWS"
|
252 |
|
253 |
+
#: google-sitemap-plugin.php:374
|
254 |
msgid "Google Sitemap Options"
|
255 |
msgstr "Options de Google Sitemap"
|
256 |
|
257 |
+
#: google-sitemap-plugin.php:374
|
258 |
msgid "Google Sitemap"
|
259 |
msgstr "Google Sitemap"
|
260 |
|
261 |
+
#: google-sitemap-plugin.php:485
|
262 |
+
#: google-sitemap-plugin.php:560
|
263 |
#, fuzzy
|
264 |
msgid "Your Sitemap file is created in the site root directory."
|
265 |
msgstr "Votre fichier sitemap est créé dans le répertoire racine du site. "
|
266 |
|
267 |
+
#: google-sitemap-plugin.php:491
|
268 |
msgid "Options saved."
|
269 |
msgstr "Options enregistrées !!"
|
270 |
|
271 |
+
#: google-sitemap-plugin.php:551
|
272 |
msgid "Google Sitemap options"
|
273 |
msgstr "Google Sitemap options de"
|
274 |
|
275 |
+
#: google-sitemap-plugin.php:556
|
276 |
#, fuzzy
|
277 |
msgid "The Sitemap file 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."
|
278 |
msgstr "Le fichier sitemap est existe déjà. Si vous voulez le changer pour un nouveau fichier sitemap cochez la case ci-dessous nécessaire. Dans le cas contraire toutes les actions seront effectuées sur un fichier existant."
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:564
|
281 |
+
#: google-sitemap-plugin.php:566
|
282 |
#, fuzzy
|
283 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
284 |
msgstr "Si vous ne voulez pas ajouter automatiquement ce fichier vous pouvez passer par"
|
285 |
|
286 |
+
#: google-sitemap-plugin.php:564
|
287 |
+
#: google-sitemap-plugin.php:566
|
288 |
msgid "this"
|
289 |
msgstr "cela"
|
290 |
|
291 |
+
#: google-sitemap-plugin.php:564
|
292 |
+
#: google-sitemap-plugin.php:566
|
293 |
#, fuzzy
|
294 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
295 |
msgstr "lien, connectez-vous, sélectionnez le site nécessaire, sélectionnez 'Sitemaps' et tapez dans le champ nécessaire"
|
296 |
|
297 |
+
#: google-sitemap-plugin.php:569
|
298 |
#, fuzzy
|
299 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
300 |
msgstr "Cet hébergement ne supporte pas CURL, de sorte que vous ne pouvez pas ajouter fichier sitemap automatiquement"
|
301 |
|
302 |
+
#: google-sitemap-plugin.php:578
|
303 |
#, fuzzy
|
304 |
msgid "I want to create a new sitemap file or update the existing one"
|
305 |
msgstr "Je tiens à ajouter le chemin fichier sitemap dans le fichier robots.txt"
|
306 |
|
307 |
+
#: google-sitemap-plugin.php:584
|
308 |
+
#: google-sitemap-plugin.php:591
|
309 |
msgid "I want to add sitemap file path in robots.txt"
|
310 |
msgstr "Je tiens à ajouter le chemin fichier sitemap dans le fichier robots.txt"
|
311 |
|
312 |
+
#: google-sitemap-plugin.php:585
|
313 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: google-sitemap-plugin.php:596
|
317 |
#, fuzzy
|
318 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
319 |
msgstr "S'il vous plaît choisir les types de postes nécessaires afin d'ajouter des liens vers eux dans le sitemap:"
|
320 |
|
321 |
+
#: google-sitemap-plugin.php:609
|
322 |
#, fuzzy
|
323 |
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."
|
324 |
msgstr "Tapez ici votre login et mot de passe de votre compte Google Outils pour les webmasters d'ajouter ou de supprimer du site et fichier sitemap automatiquement ou pour obtenir des informations sur ce site dans Google Webmaster Tools."
|
325 |
|
326 |
+
#: google-sitemap-plugin.php:613
|
327 |
msgid "Settings for remote work with google webmaster tools"
|
328 |
msgstr "Réglages pour le travail à distance avec Google Webmaster Tools"
|
329 |
|
330 |
+
#: google-sitemap-plugin.php:615
|
331 |
msgid "Login"
|
332 |
msgstr "Connexion"
|
333 |
|
334 |
+
#: google-sitemap-plugin.php:616
|
335 |
msgid "Password"
|
336 |
msgstr "PASSWORD"
|
337 |
|
338 |
+
#: google-sitemap-plugin.php:617
|
339 |
#, fuzzy
|
340 |
msgid "I want to add this site to Google Webmaster Tools"
|
341 |
msgstr "Je tiens à ajouter ce site à google webmaster outils de l'"
|
342 |
|
343 |
+
#: google-sitemap-plugin.php:618
|
344 |
#, fuzzy
|
345 |
msgid "I want to delete this site from Google Webmaster Tools"
|
346 |
msgstr "Je veux supprimer ce site à partir de Google Webmaster Tools"
|
347 |
|
348 |
+
#: google-sitemap-plugin.php:619
|
349 |
+
#: google-sitemap-plugin.php:753
|
350 |
#, fuzzy
|
351 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
352 |
msgstr "Je veux obtenir des informations sur ce site dans Google Webmaster Tools"
|
353 |
|
354 |
+
#: google-sitemap-plugin.php:626
|
355 |
msgid "Save Changes"
|
356 |
msgstr "Enregistrer les modifications"
|
357 |
|
358 |
+
#: google-sitemap-plugin.php:634
|
359 |
#, fuzzy
|
360 |
msgid "Please enter your login and password"
|
361 |
msgstr "Vous devez entrez votre identifiant et mot de passe"
|
362 |
|
363 |
+
#: google-sitemap-plugin.php:637
|
364 |
#, fuzzy
|
365 |
msgid "You should choose at least one action"
|
366 |
msgstr "Vous devez choisir au moins une action"
|
367 |
|
368 |
+
#: google-sitemap-plugin.php:667
|
369 |
#, fuzzy
|
370 |
msgid "Login and password do not match. Please try again"
|
371 |
msgstr "Login et mot de passe n\\'t correspondance, réessayer, s'il vous plaît"
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:755
|
374 |
#, fuzzy
|
375 |
msgid "This site is not added to the Google Webmaster Tools account"
|
376 |
msgstr "Ce site n'est pas ajouté au compte Google Webmaster Tools"
|
377 |
|
378 |
+
#: google-sitemap-plugin.php:776
|
379 |
#, fuzzy
|
380 |
msgid "Site URL:"
|
381 |
msgstr "URL du site: "
|
382 |
|
383 |
+
#: google-sitemap-plugin.php:777
|
384 |
#, fuzzy
|
385 |
msgid "Site verification:"
|
386 |
msgstr "Vérification sur place: "
|
387 |
|
388 |
+
#: google-sitemap-plugin.php:779
|
389 |
#, fuzzy
|
390 |
msgid "verified"
|
391 |
msgstr "verificated"
|
392 |
|
393 |
+
#: google-sitemap-plugin.php:781
|
394 |
#, fuzzy
|
395 |
msgid "not verified"
|
396 |
msgstr "non verificated"
|
397 |
|
398 |
+
#: google-sitemap-plugin.php:782
|
399 |
#, fuzzy
|
400 |
msgid "Sitemap file:"
|
401 |
msgstr "Plan du site déposer: "
|
402 |
|
403 |
+
#: google-sitemap-plugin.php:784
|
404 |
msgid "added"
|
405 |
msgstr "ajouté"
|
406 |
|
407 |
+
#: google-sitemap-plugin.php:786
|
408 |
msgid "not added"
|
409 |
msgstr "pas ajoutées"
|
410 |
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,204 +16,369 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Pro plugins"
|
21 |
msgstr "Pro плагины"
|
22 |
|
23 |
-
#: google-sitemap-plugin.php:
|
24 |
-
#: google-sitemap-plugin.php:
|
25 |
msgid "Activated plugins"
|
26 |
msgstr "Активированные плагины"
|
27 |
|
28 |
-
#: google-sitemap-plugin.php:
|
29 |
-
#: google-sitemap-plugin.php:
|
30 |
-
#: google-sitemap-plugin.php:
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
msgid "Read more"
|
35 |
msgstr "Подробнее..."
|
36 |
|
37 |
-
#: google-sitemap-plugin.php:
|
38 |
-
#: google-sitemap-plugin.php:
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
msgid "Settings"
|
41 |
msgstr "Настройки"
|
42 |
|
43 |
-
#: google-sitemap-plugin.php:
|
44 |
-
#: google-sitemap-plugin.php:
|
45 |
msgid "Installed plugins"
|
46 |
msgstr "Установленные плагины"
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
-
#: google-sitemap-plugin.php:
|
50 |
msgid "Recommended plugins"
|
51 |
msgstr "Рекомендованные к установке плагины"
|
52 |
|
53 |
-
#: google-sitemap-plugin.php:
|
54 |
msgid "Purchase"
|
55 |
msgstr "Купить"
|
56 |
|
57 |
-
#: google-sitemap-plugin.php:
|
58 |
msgid "Free plugins"
|
59 |
msgstr "Бесплатные плагины"
|
60 |
|
61 |
-
#: google-sitemap-plugin.php:
|
62 |
msgid "Download"
|
63 |
msgstr "Скачать"
|
64 |
|
65 |
-
#: google-sitemap-plugin.php:
|
66 |
#, php-format
|
67 |
msgid "Install %s"
|
68 |
msgstr "Установлено %s"
|
69 |
|
70 |
-
#: google-sitemap-plugin.php:
|
71 |
msgid "Install now from wordpress.org"
|
72 |
msgstr "Установить с wordpress.org"
|
73 |
|
74 |
-
#: google-sitemap-plugin.php:
|
75 |
msgid "If you have any questions, please contact us via"
|
76 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
|
77 |
|
78 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
msgid "BWS Plugins"
|
80 |
msgstr "Плагины BWS"
|
81 |
|
82 |
-
#: google-sitemap-plugin.php:
|
83 |
msgid "Google Sitemap Options"
|
84 |
msgstr "Опции карты сайта Google"
|
85 |
|
86 |
-
#: google-sitemap-plugin.php:
|
87 |
msgid "Google Sitemap"
|
88 |
msgstr "Карта сайта Google"
|
89 |
|
90 |
-
#: google-sitemap-plugin.php:
|
91 |
-
#: google-sitemap-plugin.php:
|
92 |
msgid "Your Sitemap file is created in the site root directory."
|
93 |
msgstr "Карта сайта для вашего сайта создана в корне основной директории."
|
94 |
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
msgid "Options saved."
|
97 |
msgstr "Опции сохранены."
|
98 |
|
99 |
-
#: google-sitemap-plugin.php:
|
100 |
msgid "Google Sitemap options"
|
101 |
msgstr "Опции карты сайта Google"
|
102 |
|
103 |
-
#: google-sitemap-plugin.php:
|
104 |
msgid "The Sitemap file 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."
|
105 |
msgstr "Карта сайта уже существует. Если вы хотите изменить ее на новую карту сайта, выберите соответствующее действие внизу. Все остальные действия перезапишут существующий файл."
|
106 |
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
-
#: google-sitemap-plugin.php:
|
109 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
110 |
msgstr "Если вы не хотите добавить файл карты сайта автоматически в Google Webmaster Tools, Вы можете сделать это через"
|
111 |
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
-
#: google-sitemap-plugin.php:
|
114 |
msgid "this"
|
115 |
msgstr "эту"
|
116 |
|
117 |
-
#: google-sitemap-plugin.php:
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
120 |
msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
|
121 |
|
122 |
-
#: google-sitemap-plugin.php:
|
123 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
124 |
msgstr "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить карту сайта в Google аккаунт автоматически."
|
125 |
|
126 |
-
#: google-sitemap-plugin.php:
|
127 |
msgid "I want to create a new sitemap file or update the existing one"
|
128 |
msgstr "Я хочу создать новую или обновить существующую карту сайта"
|
129 |
|
130 |
-
#: google-sitemap-plugin.php:
|
131 |
-
#: google-sitemap-plugin.php:
|
132 |
msgid "I want to add sitemap file path in robots.txt"
|
133 |
msgstr "Я хочу добавить карту сайта в robots.txt"
|
134 |
|
135 |
-
#: google-sitemap-plugin.php:
|
136 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
137 |
msgstr "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить карту сайта в robots.txt"
|
138 |
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
141 |
msgstr "Пожалуйста, выберите те типы постов, ссылки на которые будут добавлены в карту сайта:"
|
142 |
|
143 |
-
#: google-sitemap-plugin.php:
|
144 |
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."
|
145 |
msgstr "Введите сюда свой логин и пароль для Google аккаунта, чтобы иметь возможность добавлять или удалять сайт и карту сайта автоматически в ваш аккаунт или же получить информацию об этом сайте из Google Webmaster Tools."
|
146 |
|
147 |
-
#: google-sitemap-plugin.php:
|
148 |
msgid "Settings for remote work with google webmaster tools"
|
149 |
msgstr "Настройки для удаленной работы с google webmaster tools"
|
150 |
|
151 |
-
#: google-sitemap-plugin.php:
|
152 |
msgid "Login"
|
153 |
msgstr "Логин"
|
154 |
|
155 |
-
#: google-sitemap-plugin.php:
|
156 |
msgid "Password"
|
157 |
msgstr "Пароль"
|
158 |
|
159 |
-
#: google-sitemap-plugin.php:
|
160 |
msgid "I want to add this site to Google Webmaster Tools"
|
161 |
msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
|
162 |
|
163 |
-
#: google-sitemap-plugin.php:
|
164 |
msgid "I want to delete this site from Google Webmaster Tools"
|
165 |
msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
|
166 |
|
167 |
-
#: google-sitemap-plugin.php:
|
168 |
-
#: google-sitemap-plugin.php:
|
169 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
170 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
171 |
|
172 |
-
#: google-sitemap-plugin.php:
|
173 |
msgid "Save Changes"
|
174 |
msgstr "Сохранить изменения"
|
175 |
|
176 |
-
#: google-sitemap-plugin.php:
|
177 |
msgid "Please enter your login and password"
|
178 |
msgstr "Вы должны ввести логин и пароль"
|
179 |
|
180 |
-
#: google-sitemap-plugin.php:
|
181 |
msgid "You should choose at least one action"
|
182 |
msgstr "Вы должны выбрать одно из действий"
|
183 |
|
184 |
-
#: google-sitemap-plugin.php:
|
185 |
msgid "Login and password do not match. Please try again"
|
186 |
msgstr "Логин и пароль введены неправильно, попробуйте еще раз, пожалуйста"
|
187 |
|
188 |
-
#: google-sitemap-plugin.php:
|
189 |
msgid "This site is not added to the Google Webmaster Tools account"
|
190 |
msgstr "Данный сайт не добавлен в аккаунт Google Webmaster Tools"
|
191 |
|
192 |
-
#: google-sitemap-plugin.php:
|
193 |
msgid "Site URL:"
|
194 |
msgstr "Урл сайта:"
|
195 |
|
196 |
-
#: google-sitemap-plugin.php:
|
197 |
msgid "Site verification:"
|
198 |
msgstr "Верификация сайта:"
|
199 |
|
200 |
-
#: google-sitemap-plugin.php:
|
201 |
msgid "verified"
|
202 |
msgstr "верифицрован"
|
203 |
|
204 |
-
#: google-sitemap-plugin.php:
|
205 |
msgid "not verified"
|
206 |
msgstr "не верефицирован"
|
207 |
|
208 |
-
#: google-sitemap-plugin.php:
|
209 |
msgid "Sitemap file:"
|
210 |
msgstr "Файл карты сайта:"
|
211 |
|
212 |
-
#: google-sitemap-plugin.php:
|
213 |
msgid "added"
|
214 |
msgstr "добавлен"
|
215 |
|
216 |
-
#: google-sitemap-plugin.php:
|
217 |
msgid "not added"
|
218 |
msgstr "не добавлен"
|
219 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 15:04+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 15:04+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:108
|
20 |
+
msgid "Not set"
|
21 |
+
msgstr "Не задан"
|
22 |
+
|
23 |
+
#: google-sitemap-plugin.php:110
|
24 |
+
#: google-sitemap-plugin.php:114
|
25 |
+
msgid "On"
|
26 |
+
msgstr "Вкл"
|
27 |
+
|
28 |
+
#: google-sitemap-plugin.php:112
|
29 |
+
#: google-sitemap-plugin.php:116
|
30 |
+
msgid "Off"
|
31 |
+
msgstr "Выкл"
|
32 |
+
|
33 |
+
#: google-sitemap-plugin.php:120
|
34 |
+
#: google-sitemap-plugin.php:124
|
35 |
+
#: google-sitemap-plugin.php:128
|
36 |
+
#: google-sitemap-plugin.php:132
|
37 |
+
#: google-sitemap-plugin.php:136
|
38 |
+
#: google-sitemap-plugin.php:162
|
39 |
+
msgid "N/A"
|
40 |
+
msgstr "Неизвестно"
|
41 |
+
|
42 |
+
#: google-sitemap-plugin.php:134
|
43 |
+
msgid " Mb"
|
44 |
+
msgstr " Mb"
|
45 |
+
|
46 |
+
#: google-sitemap-plugin.php:138
|
47 |
+
#: google-sitemap-plugin.php:142
|
48 |
+
#: google-sitemap-plugin.php:146
|
49 |
+
#: google-sitemap-plugin.php:157
|
50 |
+
msgid "Yes"
|
51 |
+
msgstr "Да"
|
52 |
+
|
53 |
+
#: google-sitemap-plugin.php:140
|
54 |
+
#: google-sitemap-plugin.php:144
|
55 |
+
#: google-sitemap-plugin.php:148
|
56 |
+
#: google-sitemap-plugin.php:159
|
57 |
+
msgid "No"
|
58 |
+
msgstr "Нет"
|
59 |
+
|
60 |
+
#: google-sitemap-plugin.php:173
|
61 |
+
msgid "Operating System"
|
62 |
+
msgstr "Операционная система"
|
63 |
+
|
64 |
+
#: google-sitemap-plugin.php:174
|
65 |
+
msgid "Server"
|
66 |
+
msgstr "Тип сервера"
|
67 |
+
|
68 |
+
#: google-sitemap-plugin.php:175
|
69 |
+
msgid "Memory usage"
|
70 |
+
msgstr "Памяти использовано"
|
71 |
+
|
72 |
+
#: google-sitemap-plugin.php:176
|
73 |
+
msgid "MYSQL Version"
|
74 |
+
msgstr "Версия MYSQL"
|
75 |
+
|
76 |
+
#: google-sitemap-plugin.php:177
|
77 |
+
msgid "SQL Mode"
|
78 |
+
msgstr "Режим SQL"
|
79 |
+
|
80 |
+
#: google-sitemap-plugin.php:178
|
81 |
+
msgid "PHP Version"
|
82 |
+
msgstr "Версия PHP"
|
83 |
+
|
84 |
+
#: google-sitemap-plugin.php:179
|
85 |
+
msgid "PHP Safe Mode"
|
86 |
+
msgstr "PHP Safe Mode"
|
87 |
+
|
88 |
+
#: google-sitemap-plugin.php:180
|
89 |
+
msgid "PHP Allow URL fopen"
|
90 |
+
msgstr "PHP Allow URL fopen"
|
91 |
+
|
92 |
+
#: google-sitemap-plugin.php:181
|
93 |
+
msgid "PHP Memory Limit"
|
94 |
+
msgstr "Лимит памяти"
|
95 |
+
|
96 |
+
#: google-sitemap-plugin.php:182
|
97 |
+
msgid "PHP Max Upload Size"
|
98 |
+
msgstr "Макс. размер загружаемого файла"
|
99 |
+
|
100 |
+
#: google-sitemap-plugin.php:183
|
101 |
+
msgid "PHP Max Post Size"
|
102 |
+
msgstr "Макс. размер записи"
|
103 |
+
|
104 |
+
#: google-sitemap-plugin.php:184
|
105 |
+
msgid "PHP Max Script Execute Time"
|
106 |
+
msgstr "Макс. время выполнения сценария"
|
107 |
+
|
108 |
+
#: google-sitemap-plugin.php:185
|
109 |
+
msgid "PHP Exif support"
|
110 |
+
msgstr "Поддержка PHP Exif"
|
111 |
+
|
112 |
+
#: google-sitemap-plugin.php:186
|
113 |
+
msgid "PHP IPTC support"
|
114 |
+
msgstr "Поддержка PHP IPTC"
|
115 |
+
|
116 |
+
#: google-sitemap-plugin.php:187
|
117 |
+
msgid "PHP XML support"
|
118 |
+
msgstr "Поддержка PHP XML"
|
119 |
+
|
120 |
+
#: google-sitemap-plugin.php:188
|
121 |
+
msgid "Site URL"
|
122 |
+
msgstr "Адрес сайта"
|
123 |
+
|
124 |
+
#: google-sitemap-plugin.php:189
|
125 |
+
msgid "Home URL"
|
126 |
+
msgstr "Адрес сайта"
|
127 |
+
|
128 |
+
#: google-sitemap-plugin.php:190
|
129 |
+
msgid "WordPress Version"
|
130 |
+
msgstr "Версия WordPress"
|
131 |
+
|
132 |
+
#: google-sitemap-plugin.php:191
|
133 |
+
msgid "WordPress DB Version"
|
134 |
+
msgstr "Версия базы данных WordPress"
|
135 |
+
|
136 |
+
#: google-sitemap-plugin.php:192
|
137 |
+
msgid "Multisite"
|
138 |
+
msgstr "Мультиблог"
|
139 |
+
|
140 |
+
#: google-sitemap-plugin.php:193
|
141 |
+
msgid "Active Theme"
|
142 |
+
msgstr "Текущая тема"
|
143 |
+
|
144 |
+
#: google-sitemap-plugin.php:208
|
145 |
+
msgid "Please enter a valid email address."
|
146 |
+
msgstr "Пожалуйста, введите валидный емайл."
|
147 |
+
|
148 |
+
#: google-sitemap-plugin.php:212
|
149 |
+
msgid "Email with system info is sent to "
|
150 |
+
msgstr "E-mail с системной информацией отправлен на"
|
151 |
+
|
152 |
+
#: google-sitemap-plugin.php:216
|
153 |
+
msgid "Thank you for contacting us."
|
154 |
+
msgstr "Спасибо, что связались с нами."
|
155 |
+
|
156 |
+
#: google-sitemap-plugin.php:244
|
157 |
+
msgid "Sorry, email message could not be delivered."
|
158 |
+
msgstr "Извините, ваш email не может быть отправлен."
|
159 |
+
|
160 |
+
#: google-sitemap-plugin.php:252
|
161 |
msgid "Pro plugins"
|
162 |
msgstr "Pro плагины"
|
163 |
|
164 |
+
#: google-sitemap-plugin.php:255
|
165 |
+
#: google-sitemap-plugin.php:281
|
166 |
msgid "Activated plugins"
|
167 |
msgstr "Активированные плагины"
|
168 |
|
169 |
+
#: google-sitemap-plugin.php:257
|
170 |
+
#: google-sitemap-plugin.php:265
|
171 |
+
#: google-sitemap-plugin.php:273
|
172 |
+
#: google-sitemap-plugin.php:283
|
173 |
+
#: google-sitemap-plugin.php:291
|
174 |
+
#: google-sitemap-plugin.php:299
|
175 |
msgid "Read more"
|
176 |
msgstr "Подробнее..."
|
177 |
|
178 |
+
#: google-sitemap-plugin.php:257
|
179 |
+
#: google-sitemap-plugin.php:283
|
180 |
+
#: google-sitemap-plugin.php:864
|
181 |
msgid "Settings"
|
182 |
msgstr "Настройки"
|
183 |
|
184 |
+
#: google-sitemap-plugin.php:263
|
185 |
+
#: google-sitemap-plugin.php:289
|
186 |
msgid "Installed plugins"
|
187 |
msgstr "Установленные плагины"
|
188 |
|
189 |
+
#: google-sitemap-plugin.php:271
|
190 |
+
#: google-sitemap-plugin.php:297
|
191 |
msgid "Recommended plugins"
|
192 |
msgstr "Рекомендованные к установке плагины"
|
193 |
|
194 |
+
#: google-sitemap-plugin.php:273
|
195 |
msgid "Purchase"
|
196 |
msgstr "Купить"
|
197 |
|
198 |
+
#: google-sitemap-plugin.php:278
|
199 |
msgid "Free plugins"
|
200 |
msgstr "Бесплатные плагины"
|
201 |
|
202 |
+
#: google-sitemap-plugin.php:299
|
203 |
msgid "Download"
|
204 |
msgstr "Скачать"
|
205 |
|
206 |
+
#: google-sitemap-plugin.php:299
|
207 |
#, php-format
|
208 |
msgid "Install %s"
|
209 |
msgstr "Установлено %s"
|
210 |
|
211 |
+
#: google-sitemap-plugin.php:299
|
212 |
msgid "Install now from wordpress.org"
|
213 |
msgstr "Установить с wordpress.org"
|
214 |
|
215 |
+
#: google-sitemap-plugin.php:304
|
216 |
msgid "If you have any questions, please contact us via"
|
217 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
|
218 |
|
219 |
+
#: google-sitemap-plugin.php:311
|
220 |
+
msgid "System status"
|
221 |
+
msgstr "Системная информация"
|
222 |
+
|
223 |
+
#: google-sitemap-plugin.php:315
|
224 |
+
msgid "Environment"
|
225 |
+
msgstr "Системная среда"
|
226 |
+
|
227 |
+
#: google-sitemap-plugin.php:326
|
228 |
+
msgid "Active Plugins"
|
229 |
+
msgstr "Активированные плагины"
|
230 |
+
|
231 |
+
#: google-sitemap-plugin.php:337
|
232 |
+
msgid "Inactive Plugins"
|
233 |
+
msgstr "Неактивированные плагины"
|
234 |
+
|
235 |
+
#: google-sitemap-plugin.php:351
|
236 |
+
msgid "Send to support"
|
237 |
+
msgstr "Отправить в тех.поддержку"
|
238 |
+
|
239 |
+
#: google-sitemap-plugin.php:358
|
240 |
+
msgid "Send to custom email »"
|
241 |
+
msgstr "Отправить на емейл »"
|
242 |
+
|
243 |
+
#: google-sitemap-plugin.php:373
|
244 |
msgid "BWS Plugins"
|
245 |
msgstr "Плагины BWS"
|
246 |
|
247 |
+
#: google-sitemap-plugin.php:374
|
248 |
msgid "Google Sitemap Options"
|
249 |
msgstr "Опции карты сайта Google"
|
250 |
|
251 |
+
#: google-sitemap-plugin.php:374
|
252 |
msgid "Google Sitemap"
|
253 |
msgstr "Карта сайта Google"
|
254 |
|
255 |
+
#: google-sitemap-plugin.php:485
|
256 |
+
#: google-sitemap-plugin.php:560
|
257 |
msgid "Your Sitemap file is created in the site root directory."
|
258 |
msgstr "Карта сайта для вашего сайта создана в корне основной директории."
|
259 |
|
260 |
+
#: google-sitemap-plugin.php:491
|
261 |
msgid "Options saved."
|
262 |
msgstr "Опции сохранены."
|
263 |
|
264 |
+
#: google-sitemap-plugin.php:551
|
265 |
msgid "Google Sitemap options"
|
266 |
msgstr "Опции карты сайта Google"
|
267 |
|
268 |
+
#: google-sitemap-plugin.php:556
|
269 |
msgid "The Sitemap file 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."
|
270 |
msgstr "Карта сайта уже существует. Если вы хотите изменить ее на новую карту сайта, выберите соответствующее действие внизу. Все остальные действия перезапишут существующий файл."
|
271 |
|
272 |
+
#: google-sitemap-plugin.php:564
|
273 |
+
#: google-sitemap-plugin.php:566
|
274 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
275 |
msgstr "Если вы не хотите добавить файл карты сайта автоматически в Google Webmaster Tools, Вы можете сделать это через"
|
276 |
|
277 |
+
#: google-sitemap-plugin.php:564
|
278 |
+
#: google-sitemap-plugin.php:566
|
279 |
msgid "this"
|
280 |
msgstr "эту"
|
281 |
|
282 |
+
#: google-sitemap-plugin.php:564
|
283 |
+
#: google-sitemap-plugin.php:566
|
284 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
285 |
msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
|
286 |
|
287 |
+
#: google-sitemap-plugin.php:569
|
288 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
289 |
msgstr "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить карту сайта в Google аккаунт автоматически."
|
290 |
|
291 |
+
#: google-sitemap-plugin.php:578
|
292 |
msgid "I want to create a new sitemap file or update the existing one"
|
293 |
msgstr "Я хочу создать новую или обновить существующую карту сайта"
|
294 |
|
295 |
+
#: google-sitemap-plugin.php:584
|
296 |
+
#: google-sitemap-plugin.php:591
|
297 |
msgid "I want to add sitemap file path in robots.txt"
|
298 |
msgstr "Я хочу добавить карту сайта в robots.txt"
|
299 |
|
300 |
+
#: google-sitemap-plugin.php:585
|
301 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
302 |
msgstr "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить карту сайта в robots.txt"
|
303 |
|
304 |
+
#: google-sitemap-plugin.php:596
|
305 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
306 |
msgstr "Пожалуйста, выберите те типы постов, ссылки на которые будут добавлены в карту сайта:"
|
307 |
|
308 |
+
#: google-sitemap-plugin.php:609
|
309 |
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."
|
310 |
msgstr "Введите сюда свой логин и пароль для Google аккаунта, чтобы иметь возможность добавлять или удалять сайт и карту сайта автоматически в ваш аккаунт или же получить информацию об этом сайте из Google Webmaster Tools."
|
311 |
|
312 |
+
#: google-sitemap-plugin.php:613
|
313 |
msgid "Settings for remote work with google webmaster tools"
|
314 |
msgstr "Настройки для удаленной работы с google webmaster tools"
|
315 |
|
316 |
+
#: google-sitemap-plugin.php:615
|
317 |
msgid "Login"
|
318 |
msgstr "Логин"
|
319 |
|
320 |
+
#: google-sitemap-plugin.php:616
|
321 |
msgid "Password"
|
322 |
msgstr "Пароль"
|
323 |
|
324 |
+
#: google-sitemap-plugin.php:617
|
325 |
msgid "I want to add this site to Google Webmaster Tools"
|
326 |
msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
|
327 |
|
328 |
+
#: google-sitemap-plugin.php:618
|
329 |
msgid "I want to delete this site from Google Webmaster Tools"
|
330 |
msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
|
331 |
|
332 |
+
#: google-sitemap-plugin.php:619
|
333 |
+
#: google-sitemap-plugin.php:753
|
334 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
335 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
336 |
|
337 |
+
#: google-sitemap-plugin.php:626
|
338 |
msgid "Save Changes"
|
339 |
msgstr "Сохранить изменения"
|
340 |
|
341 |
+
#: google-sitemap-plugin.php:634
|
342 |
msgid "Please enter your login and password"
|
343 |
msgstr "Вы должны ввести логин и пароль"
|
344 |
|
345 |
+
#: google-sitemap-plugin.php:637
|
346 |
msgid "You should choose at least one action"
|
347 |
msgstr "Вы должны выбрать одно из действий"
|
348 |
|
349 |
+
#: google-sitemap-plugin.php:667
|
350 |
msgid "Login and password do not match. Please try again"
|
351 |
msgstr "Логин и пароль введены неправильно, попробуйте еще раз, пожалуйста"
|
352 |
|
353 |
+
#: google-sitemap-plugin.php:755
|
354 |
msgid "This site is not added to the Google Webmaster Tools account"
|
355 |
msgstr "Данный сайт не добавлен в аккаунт Google Webmaster Tools"
|
356 |
|
357 |
+
#: google-sitemap-plugin.php:776
|
358 |
msgid "Site URL:"
|
359 |
msgstr "Урл сайта:"
|
360 |
|
361 |
+
#: google-sitemap-plugin.php:777
|
362 |
msgid "Site verification:"
|
363 |
msgstr "Верификация сайта:"
|
364 |
|
365 |
+
#: google-sitemap-plugin.php:779
|
366 |
msgid "verified"
|
367 |
msgstr "верифицрован"
|
368 |
|
369 |
+
#: google-sitemap-plugin.php:781
|
370 |
msgid "not verified"
|
371 |
msgstr "не верефицирован"
|
372 |
|
373 |
+
#: google-sitemap-plugin.php:782
|
374 |
msgid "Sitemap file:"
|
375 |
msgstr "Файл карты сайта:"
|
376 |
|
377 |
+
#: google-sitemap-plugin.php:784
|
378 |
msgid "added"
|
379 |
msgstr "добавлен"
|
380 |
|
381 |
+
#: google-sitemap-plugin.php:786
|
382 |
msgid "not added"
|
383 |
msgstr "не добавлен"
|
384 |
|
languages/sitemap-sr_RS.mo
CHANGED
Binary file
|
languages/sitemap-sr_RS.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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Diana <diana@wpdiscounts.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -17,226 +17,395 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
#, fuzzy
|
22 |
msgid "Pro plugins"
|
23 |
msgstr "BWS Plugins"
|
24 |
|
25 |
-
#: google-sitemap-plugin.php:
|
26 |
-
#: google-sitemap-plugin.php:
|
27 |
msgid "Activated plugins"
|
28 |
msgstr "Aktivirani plaginovi "
|
29 |
|
30 |
-
#: google-sitemap-plugin.php:
|
31 |
-
#: google-sitemap-plugin.php:
|
32 |
-
#: google-sitemap-plugin.php:
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
-
#: google-sitemap-plugin.php:
|
35 |
-
#: google-sitemap-plugin.php:
|
36 |
msgid "Read more"
|
37 |
msgstr "Procitaj vise"
|
38 |
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
-
#: google-sitemap-plugin.php:
|
41 |
-
#: google-sitemap-plugin.php:
|
42 |
msgid "Settings"
|
43 |
msgstr "Podesavanja"
|
44 |
|
45 |
-
#: google-sitemap-plugin.php:
|
46 |
-
#: google-sitemap-plugin.php:
|
47 |
msgid "Installed plugins"
|
48 |
msgstr "Instalirani plaginovi"
|
49 |
|
50 |
-
#: google-sitemap-plugin.php:
|
51 |
-
#: google-sitemap-plugin.php:
|
52 |
msgid "Recommended plugins"
|
53 |
msgstr "Preporuceni plaginovi"
|
54 |
|
55 |
-
#: google-sitemap-plugin.php:
|
56 |
msgid "Purchase"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: google-sitemap-plugin.php:
|
60 |
#, fuzzy
|
61 |
msgid "Free plugins"
|
62 |
msgstr "Preporuceni plaginovi"
|
63 |
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
msgid "Download"
|
66 |
msgstr "Download"
|
67 |
|
68 |
-
#: google-sitemap-plugin.php:
|
69 |
#, php-format
|
70 |
msgid "Install %s"
|
71 |
msgstr "Instaliranje %s"
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
msgid "Install now from wordpress.org"
|
75 |
msgstr "Instaliraj sada sa wordpress.org"
|
76 |
|
77 |
-
#: google-sitemap-plugin.php:
|
78 |
msgid "If you have any questions, please contact us via"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: google-sitemap-plugin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
msgid "BWS Plugins"
|
83 |
msgstr "BWS Plugins"
|
84 |
|
85 |
-
#: google-sitemap-plugin.php:
|
86 |
msgid "Google Sitemap Options"
|
87 |
msgstr "Google Sitemap Opcije"
|
88 |
|
89 |
-
#: google-sitemap-plugin.php:
|
90 |
msgid "Google Sitemap"
|
91 |
msgstr "Google Sitemap"
|
92 |
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
-
#: google-sitemap-plugin.php:
|
95 |
#, fuzzy
|
96 |
msgid "Your Sitemap file is created in the site root directory."
|
97 |
msgstr "Vas sitemap fajt je kreiran u root direktorijumu sajta"
|
98 |
|
99 |
-
#: google-sitemap-plugin.php:
|
100 |
msgid "Options saved."
|
101 |
msgstr "Opcije sacuvane."
|
102 |
|
103 |
-
#: google-sitemap-plugin.php:
|
104 |
msgid "Google Sitemap options"
|
105 |
msgstr "Google Sitemap opcije"
|
106 |
|
107 |
-
#: google-sitemap-plugin.php:
|
108 |
#, fuzzy
|
109 |
msgid "The Sitemap file 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."
|
110 |
msgstr "Sitemap fajl vec postoji. Ukoliko zelite da ga zamenite za novi sitemap fajl, cekirajte neophodno polje ispod. U suprotnom, sve akcije ce biti izvrsene preko postojeceg fajla."
|
111 |
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
-
#: google-sitemap-plugin.php:
|
114 |
#, fuzzy
|
115 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
116 |
msgstr "Ukoliko ne zelite da dodate ovaj fajl automatski mozete nastaviti "
|
117 |
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
-
#: google-sitemap-plugin.php:
|
120 |
msgid "this"
|
121 |
msgstr "ovaj"
|
122 |
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
-
#: google-sitemap-plugin.php:
|
125 |
#, fuzzy
|
126 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
127 |
msgstr "link, uloguj se, izaberi neophodan sajt, izaberi 'Sitemaps' i kucaj u neophodnom polju"
|
128 |
|
129 |
-
#: google-sitemap-plugin.php:
|
130 |
#, fuzzy
|
131 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
132 |
msgstr "Ovaj hosting ne podrzava CURL, tako da ne mozete da dodate Sitemap fajl automatski"
|
133 |
|
134 |
-
#: google-sitemap-plugin.php:
|
135 |
#, fuzzy
|
136 |
msgid "I want to create a new sitemap file or update the existing one"
|
137 |
msgstr "Zelim da dodam sitemap fajl putanju u robots.txt"
|
138 |
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
msgid "I want to add sitemap file path in robots.txt"
|
142 |
msgstr "Zelim da dodam sitemap fajl putanju u robots.txt"
|
143 |
|
144 |
-
#: google-sitemap-plugin.php:
|
145 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: google-sitemap-plugin.php:
|
149 |
#, fuzzy
|
150 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
151 |
msgstr "Molim izaberite neohodne tipove postova da bi dodali linkove do njih u sitemap-u:"
|
152 |
|
153 |
-
#: google-sitemap-plugin.php:
|
154 |
#, fuzzy
|
155 |
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."
|
156 |
msgstr "Ukucajte ovde svoj korisnicko ime i lozinku sa google webmaster tools naloga da bi dodali ili izbrisali sajt i sitemap fajl automatski ili da bi dobili informacije o ovom sajtu na google webmaster tools."
|
157 |
|
158 |
-
#: google-sitemap-plugin.php:
|
159 |
msgid "Settings for remote work with google webmaster tools"
|
160 |
msgstr "Podesavanja za rad sa daljine sa google webmaster tools"
|
161 |
|
162 |
-
#: google-sitemap-plugin.php:
|
163 |
msgid "Login"
|
164 |
msgstr "Korisnicko ime"
|
165 |
|
166 |
-
#: google-sitemap-plugin.php:
|
167 |
msgid "Password"
|
168 |
msgstr "Lozinka"
|
169 |
|
170 |
-
#: google-sitemap-plugin.php:
|
171 |
#, fuzzy
|
172 |
msgid "I want to add this site to Google Webmaster Tools"
|
173 |
msgstr "Zelim da dodam ovaj sajt u google webmaster tools"
|
174 |
|
175 |
-
#: google-sitemap-plugin.php:
|
176 |
#, fuzzy
|
177 |
msgid "I want to delete this site from Google Webmaster Tools"
|
178 |
msgstr "Zelim da izbrisem ovaj sajt sa google webmaster tools"
|
179 |
|
180 |
-
#: google-sitemap-plugin.php:
|
181 |
-
#: google-sitemap-plugin.php:
|
182 |
#, fuzzy
|
183 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
184 |
msgstr "Zelim da dobijem informacije o ovom sajtu na google webmaster tools"
|
185 |
|
186 |
-
#: google-sitemap-plugin.php:
|
187 |
msgid "Save Changes"
|
188 |
msgstr "Sacuvaj izmene"
|
189 |
|
190 |
-
#: google-sitemap-plugin.php:
|
191 |
#, fuzzy
|
192 |
msgid "Please enter your login and password"
|
193 |
msgstr "Morate da unesete korisnicko ime i lozinku"
|
194 |
|
195 |
-
#: google-sitemap-plugin.php:
|
196 |
#, fuzzy
|
197 |
msgid "You should choose at least one action"
|
198 |
msgstr "Morate odabrati najmanje jednu radnju "
|
199 |
|
200 |
-
#: google-sitemap-plugin.php:
|
201 |
#, fuzzy
|
202 |
msgid "Login and password do not match. Please try again"
|
203 |
msgstr "Korisnicko ime i lozinka se ne poklapaju, molim pokusajte ponovo "
|
204 |
|
205 |
-
#: google-sitemap-plugin.php:
|
206 |
#, fuzzy
|
207 |
msgid "This site is not added to the Google Webmaster Tools account"
|
208 |
msgstr "Ovaj sajt nije dodat na google webmaster tools nalog"
|
209 |
|
210 |
-
#: google-sitemap-plugin.php:
|
211 |
#, fuzzy
|
212 |
msgid "Site URL:"
|
213 |
msgstr "Url sajta:"
|
214 |
|
215 |
-
#: google-sitemap-plugin.php:
|
216 |
#, fuzzy
|
217 |
msgid "Site verification:"
|
218 |
msgstr "Potvrda sajta:"
|
219 |
|
220 |
-
#: google-sitemap-plugin.php:
|
221 |
#, fuzzy
|
222 |
msgid "verified"
|
223 |
msgstr "potvrdjeno"
|
224 |
|
225 |
-
#: google-sitemap-plugin.php:
|
226 |
#, fuzzy
|
227 |
msgid "not verified"
|
228 |
msgstr "nije potvrdjeno"
|
229 |
|
230 |
-
#: google-sitemap-plugin.php:
|
231 |
#, fuzzy
|
232 |
msgid "Sitemap file:"
|
233 |
msgstr "Sitemap fajl:"
|
234 |
|
235 |
-
#: google-sitemap-plugin.php:
|
236 |
msgid "added"
|
237 |
msgstr "dodato"
|
238 |
|
239 |
-
#: google-sitemap-plugin.php:
|
240 |
msgid "not added"
|
241 |
msgstr "nije dodato"
|
242 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-18 14:45+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-07-18 14:45+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Diana <diana@wpdiscounts.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: google-sitemap-plugin.php:108
|
21 |
+
msgid "Not set"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: google-sitemap-plugin.php:110
|
25 |
+
#: google-sitemap-plugin.php:114
|
26 |
+
msgid "On"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: google-sitemap-plugin.php:112
|
30 |
+
#: google-sitemap-plugin.php:116
|
31 |
+
msgid "Off"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: google-sitemap-plugin.php:120
|
35 |
+
#: google-sitemap-plugin.php:124
|
36 |
+
#: google-sitemap-plugin.php:128
|
37 |
+
#: google-sitemap-plugin.php:132
|
38 |
+
#: google-sitemap-plugin.php:136
|
39 |
+
#: google-sitemap-plugin.php:162
|
40 |
+
msgid "N/A"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: google-sitemap-plugin.php:134
|
44 |
+
msgid " Mb"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: google-sitemap-plugin.php:138
|
48 |
+
#: google-sitemap-plugin.php:142
|
49 |
+
#: google-sitemap-plugin.php:146
|
50 |
+
#: google-sitemap-plugin.php:157
|
51 |
+
msgid "Yes"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: google-sitemap-plugin.php:140
|
55 |
+
#: google-sitemap-plugin.php:144
|
56 |
+
#: google-sitemap-plugin.php:148
|
57 |
+
#: google-sitemap-plugin.php:159
|
58 |
+
msgid "No"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: google-sitemap-plugin.php:173
|
62 |
+
msgid "Operating System"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: google-sitemap-plugin.php:174
|
66 |
+
msgid "Server"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: google-sitemap-plugin.php:175
|
70 |
+
msgid "Memory usage"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: google-sitemap-plugin.php:176
|
74 |
+
msgid "MYSQL Version"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: google-sitemap-plugin.php:177
|
78 |
+
msgid "SQL Mode"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: google-sitemap-plugin.php:178
|
82 |
+
msgid "PHP Version"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: google-sitemap-plugin.php:179
|
86 |
+
msgid "PHP Safe Mode"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: google-sitemap-plugin.php:180
|
90 |
+
msgid "PHP Allow URL fopen"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: google-sitemap-plugin.php:181
|
94 |
+
msgid "PHP Memory Limit"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: google-sitemap-plugin.php:182
|
98 |
+
msgid "PHP Max Upload Size"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: google-sitemap-plugin.php:183
|
102 |
+
msgid "PHP Max Post Size"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: google-sitemap-plugin.php:184
|
106 |
+
msgid "PHP Max Script Execute Time"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: google-sitemap-plugin.php:185
|
110 |
+
msgid "PHP Exif support"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: google-sitemap-plugin.php:186
|
114 |
+
msgid "PHP IPTC support"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: google-sitemap-plugin.php:187
|
118 |
+
msgid "PHP XML support"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: google-sitemap-plugin.php:188
|
122 |
+
#, fuzzy
|
123 |
+
msgid "Site URL"
|
124 |
+
msgstr "Url sajta:"
|
125 |
+
|
126 |
+
#: google-sitemap-plugin.php:189
|
127 |
+
msgid "Home URL"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: google-sitemap-plugin.php:190
|
131 |
+
msgid "WordPress Version"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: google-sitemap-plugin.php:191
|
135 |
+
msgid "WordPress DB Version"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: google-sitemap-plugin.php:192
|
139 |
+
msgid "Multisite"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: google-sitemap-plugin.php:193
|
143 |
+
msgid "Active Theme"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: google-sitemap-plugin.php:208
|
147 |
+
#, fuzzy
|
148 |
+
msgid "Please enter a valid email address."
|
149 |
+
msgstr "Morate da unesete korisnicko ime i lozinku"
|
150 |
+
|
151 |
+
#: google-sitemap-plugin.php:212
|
152 |
+
msgid "Email with system info is sent to "
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: google-sitemap-plugin.php:216
|
156 |
+
msgid "Thank you for contacting us."
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: google-sitemap-plugin.php:244
|
160 |
+
msgid "Sorry, email message could not be delivered."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: google-sitemap-plugin.php:252
|
164 |
#, fuzzy
|
165 |
msgid "Pro plugins"
|
166 |
msgstr "BWS Plugins"
|
167 |
|
168 |
+
#: google-sitemap-plugin.php:255
|
169 |
+
#: google-sitemap-plugin.php:281
|
170 |
msgid "Activated plugins"
|
171 |
msgstr "Aktivirani plaginovi "
|
172 |
|
173 |
+
#: google-sitemap-plugin.php:257
|
174 |
+
#: google-sitemap-plugin.php:265
|
175 |
+
#: google-sitemap-plugin.php:273
|
176 |
+
#: google-sitemap-plugin.php:283
|
177 |
+
#: google-sitemap-plugin.php:291
|
178 |
+
#: google-sitemap-plugin.php:299
|
179 |
msgid "Read more"
|
180 |
msgstr "Procitaj vise"
|
181 |
|
182 |
+
#: google-sitemap-plugin.php:257
|
183 |
+
#: google-sitemap-plugin.php:283
|
184 |
+
#: google-sitemap-plugin.php:864
|
185 |
msgid "Settings"
|
186 |
msgstr "Podesavanja"
|
187 |
|
188 |
+
#: google-sitemap-plugin.php:263
|
189 |
+
#: google-sitemap-plugin.php:289
|
190 |
msgid "Installed plugins"
|
191 |
msgstr "Instalirani plaginovi"
|
192 |
|
193 |
+
#: google-sitemap-plugin.php:271
|
194 |
+
#: google-sitemap-plugin.php:297
|
195 |
msgid "Recommended plugins"
|
196 |
msgstr "Preporuceni plaginovi"
|
197 |
|
198 |
+
#: google-sitemap-plugin.php:273
|
199 |
msgid "Purchase"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: google-sitemap-plugin.php:278
|
203 |
#, fuzzy
|
204 |
msgid "Free plugins"
|
205 |
msgstr "Preporuceni plaginovi"
|
206 |
|
207 |
+
#: google-sitemap-plugin.php:299
|
208 |
msgid "Download"
|
209 |
msgstr "Download"
|
210 |
|
211 |
+
#: google-sitemap-plugin.php:299
|
212 |
#, php-format
|
213 |
msgid "Install %s"
|
214 |
msgstr "Instaliranje %s"
|
215 |
|
216 |
+
#: google-sitemap-plugin.php:299
|
217 |
msgid "Install now from wordpress.org"
|
218 |
msgstr "Instaliraj sada sa wordpress.org"
|
219 |
|
220 |
+
#: google-sitemap-plugin.php:304
|
221 |
msgid "If you have any questions, please contact us via"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: google-sitemap-plugin.php:311
|
225 |
+
msgid "System status"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: google-sitemap-plugin.php:315
|
229 |
+
msgid "Environment"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: google-sitemap-plugin.php:326
|
233 |
+
#, fuzzy
|
234 |
+
msgid "Active Plugins"
|
235 |
+
msgstr "Aktivirani plaginovi "
|
236 |
+
|
237 |
+
#: google-sitemap-plugin.php:337
|
238 |
+
#, fuzzy
|
239 |
+
msgid "Inactive Plugins"
|
240 |
+
msgstr "Aktivirani plaginovi "
|
241 |
+
|
242 |
+
#: google-sitemap-plugin.php:351
|
243 |
+
msgid "Send to support"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: google-sitemap-plugin.php:358
|
247 |
+
msgid "Send to custom email »"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: google-sitemap-plugin.php:373
|
251 |
msgid "BWS Plugins"
|
252 |
msgstr "BWS Plugins"
|
253 |
|
254 |
+
#: google-sitemap-plugin.php:374
|
255 |
msgid "Google Sitemap Options"
|
256 |
msgstr "Google Sitemap Opcije"
|
257 |
|
258 |
+
#: google-sitemap-plugin.php:374
|
259 |
msgid "Google Sitemap"
|
260 |
msgstr "Google Sitemap"
|
261 |
|
262 |
+
#: google-sitemap-plugin.php:485
|
263 |
+
#: google-sitemap-plugin.php:560
|
264 |
#, fuzzy
|
265 |
msgid "Your Sitemap file is created in the site root directory."
|
266 |
msgstr "Vas sitemap fajt je kreiran u root direktorijumu sajta"
|
267 |
|
268 |
+
#: google-sitemap-plugin.php:491
|
269 |
msgid "Options saved."
|
270 |
msgstr "Opcije sacuvane."
|
271 |
|
272 |
+
#: google-sitemap-plugin.php:551
|
273 |
msgid "Google Sitemap options"
|
274 |
msgstr "Google Sitemap opcije"
|
275 |
|
276 |
+
#: google-sitemap-plugin.php:556
|
277 |
#, fuzzy
|
278 |
msgid "The Sitemap file 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."
|
279 |
msgstr "Sitemap fajl vec postoji. Ukoliko zelite da ga zamenite za novi sitemap fajl, cekirajte neophodno polje ispod. U suprotnom, sve akcije ce biti izvrsene preko postojeceg fajla."
|
280 |
|
281 |
+
#: google-sitemap-plugin.php:564
|
282 |
+
#: google-sitemap-plugin.php:566
|
283 |
#, fuzzy
|
284 |
msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
|
285 |
msgstr "Ukoliko ne zelite da dodate ovaj fajl automatski mozete nastaviti "
|
286 |
|
287 |
+
#: google-sitemap-plugin.php:564
|
288 |
+
#: google-sitemap-plugin.php:566
|
289 |
msgid "this"
|
290 |
msgstr "ovaj"
|
291 |
|
292 |
+
#: google-sitemap-plugin.php:564
|
293 |
+
#: google-sitemap-plugin.php:566
|
294 |
#, fuzzy
|
295 |
msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
|
296 |
msgstr "link, uloguj se, izaberi neophodan sajt, izaberi 'Sitemaps' i kucaj u neophodnom polju"
|
297 |
|
298 |
+
#: google-sitemap-plugin.php:569
|
299 |
#, fuzzy
|
300 |
msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
|
301 |
msgstr "Ovaj hosting ne podrzava CURL, tako da ne mozete da dodate Sitemap fajl automatski"
|
302 |
|
303 |
+
#: google-sitemap-plugin.php:578
|
304 |
#, fuzzy
|
305 |
msgid "I want to create a new sitemap file or update the existing one"
|
306 |
msgstr "Zelim da dodam sitemap fajl putanju u robots.txt"
|
307 |
|
308 |
+
#: google-sitemap-plugin.php:584
|
309 |
+
#: google-sitemap-plugin.php:591
|
310 |
msgid "I want to add sitemap file path in robots.txt"
|
311 |
msgstr "Zelim da dodam sitemap fajl putanju u robots.txt"
|
312 |
|
313 |
+
#: google-sitemap-plugin.php:585
|
314 |
msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: google-sitemap-plugin.php:596
|
318 |
#, fuzzy
|
319 |
msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
|
320 |
msgstr "Molim izaberite neohodne tipove postova da bi dodali linkove do njih u sitemap-u:"
|
321 |
|
322 |
+
#: google-sitemap-plugin.php:609
|
323 |
#, fuzzy
|
324 |
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."
|
325 |
msgstr "Ukucajte ovde svoj korisnicko ime i lozinku sa google webmaster tools naloga da bi dodali ili izbrisali sajt i sitemap fajl automatski ili da bi dobili informacije o ovom sajtu na google webmaster tools."
|
326 |
|
327 |
+
#: google-sitemap-plugin.php:613
|
328 |
msgid "Settings for remote work with google webmaster tools"
|
329 |
msgstr "Podesavanja za rad sa daljine sa google webmaster tools"
|
330 |
|
331 |
+
#: google-sitemap-plugin.php:615
|
332 |
msgid "Login"
|
333 |
msgstr "Korisnicko ime"
|
334 |
|
335 |
+
#: google-sitemap-plugin.php:616
|
336 |
msgid "Password"
|
337 |
msgstr "Lozinka"
|
338 |
|
339 |
+
#: google-sitemap-plugin.php:617
|
340 |
#, fuzzy
|
341 |
msgid "I want to add this site to Google Webmaster Tools"
|
342 |
msgstr "Zelim da dodam ovaj sajt u google webmaster tools"
|
343 |
|
344 |
+
#: google-sitemap-plugin.php:618
|
345 |
#, fuzzy
|
346 |
msgid "I want to delete this site from Google Webmaster Tools"
|
347 |
msgstr "Zelim da izbrisem ovaj sajt sa google webmaster tools"
|
348 |
|
349 |
+
#: google-sitemap-plugin.php:619
|
350 |
+
#: google-sitemap-plugin.php:753
|
351 |
#, fuzzy
|
352 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
353 |
msgstr "Zelim da dobijem informacije o ovom sajtu na google webmaster tools"
|
354 |
|
355 |
+
#: google-sitemap-plugin.php:626
|
356 |
msgid "Save Changes"
|
357 |
msgstr "Sacuvaj izmene"
|
358 |
|
359 |
+
#: google-sitemap-plugin.php:634
|
360 |
#, fuzzy
|
361 |
msgid "Please enter your login and password"
|
362 |
msgstr "Morate da unesete korisnicko ime i lozinku"
|
363 |
|
364 |
+
#: google-sitemap-plugin.php:637
|
365 |
#, fuzzy
|
366 |
msgid "You should choose at least one action"
|
367 |
msgstr "Morate odabrati najmanje jednu radnju "
|
368 |
|
369 |
+
#: google-sitemap-plugin.php:667
|
370 |
#, fuzzy
|
371 |
msgid "Login and password do not match. Please try again"
|
372 |
msgstr "Korisnicko ime i lozinka se ne poklapaju, molim pokusajte ponovo "
|
373 |
|
374 |
+
#: google-sitemap-plugin.php:755
|
375 |
#, fuzzy
|
376 |
msgid "This site is not added to the Google Webmaster Tools account"
|
377 |
msgstr "Ovaj sajt nije dodat na google webmaster tools nalog"
|
378 |
|
379 |
+
#: google-sitemap-plugin.php:776
|
380 |
#, fuzzy
|
381 |
msgid "Site URL:"
|
382 |
msgstr "Url sajta:"
|
383 |
|
384 |
+
#: google-sitemap-plugin.php:777
|
385 |
#, fuzzy
|
386 |
msgid "Site verification:"
|
387 |
msgstr "Potvrda sajta:"
|
388 |
|
389 |
+
#: google-sitemap-plugin.php:779
|
390 |
#, fuzzy
|
391 |
msgid "verified"
|
392 |
msgstr "potvrdjeno"
|
393 |
|
394 |
+
#: google-sitemap-plugin.php:781
|
395 |
#, fuzzy
|
396 |
msgid "not verified"
|
397 |
msgstr "nije potvrdjeno"
|
398 |
|
399 |
+
#: google-sitemap-plugin.php:782
|
400 |
#, fuzzy
|
401 |
msgid "Sitemap file:"
|
402 |
msgstr "Sitemap fajl:"
|
403 |
|
404 |
+
#: google-sitemap-plugin.php:784
|
405 |
msgid "added"
|
406 |
msgstr "dodato"
|
407 |
|
408 |
+
#: google-sitemap-plugin.php:786
|
409 |
msgid "not added"
|
410 |
msgstr "nije dodato"
|
411 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: http://bestwebsoft.com/
|
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: 2.9
|
6 |
-
Tested up to: 3.5.
|
7 |
-
Stable tag: 2.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -25,7 +25,7 @@ With the Google Sitemap Plugin you can create and add a Sitemap file to Google W
|
|
25 |
* Serbian (sr_RS) (thanks to <a href="mailto:diana@wpdiscounts.com">Diana</a>, www.wpdiscounts.com)
|
26 |
* Spanish (es_ES) (thanks to <a href="mailto:mrjosefernando@gmail.com">Fernando De León</a>)
|
27 |
|
28 |
-
If you create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://support.bestwebsoft.com" target="_blank">
|
29 |
|
30 |
= Technical support =
|
31 |
|
@@ -80,6 +80,10 @@ In the WordPress admin panel please go to "Plugins", find the Google Sitemap Plu
|
|
80 |
|
81 |
== Changelog ==
|
82 |
|
|
|
|
|
|
|
|
|
83 |
= V2.8 - 03.06.2013 =
|
84 |
* Update : BWS plugins section is updated.
|
85 |
|
@@ -145,6 +149,9 @@ In the WordPress admin panel please go to "Plugins", find the Google Sitemap Plu
|
|
145 |
|
146 |
== Upgrade Notice ==
|
147 |
|
|
|
|
|
|
|
148 |
= V2.8 =
|
149 |
BWS plugins section is updated.
|
150 |
|
3 |
Donate link: http://bestwebsoft.com/
|
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: 2.9
|
6 |
+
Tested up to: 3.5.2
|
7 |
+
Stable tag: 2.8.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
25 |
* Serbian (sr_RS) (thanks to <a href="mailto:diana@wpdiscounts.com">Diana</a>, www.wpdiscounts.com)
|
26 |
* Spanish (es_ES) (thanks to <a href="mailto:mrjosefernando@gmail.com">Fernando De León</a>)
|
27 |
|
28 |
+
If you create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://support.bestwebsoft.com" target="_blank">BestWebSoft</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
|
29 |
|
30 |
= Technical support =
|
31 |
|
80 |
|
81 |
== Changelog ==
|
82 |
|
83 |
+
= V2.8.1 - 18.07.2013 =
|
84 |
+
* NEW : Added an ability to view and send system information by mail.
|
85 |
+
* Update : We updated all functionality for wordpress 3.5.2.
|
86 |
+
|
87 |
= V2.8 - 03.06.2013 =
|
88 |
* Update : BWS plugins section is updated.
|
89 |
|
149 |
|
150 |
== Upgrade Notice ==
|
151 |
|
152 |
+
= V2.8.1 =
|
153 |
+
Added an ability to view and send system information by mail. We updated all functionality for wordpress 3.5.2.
|
154 |
+
|
155 |
= V2.8 =
|
156 |
BWS plugins section is updated.
|
157 |
|