Google Sitemap by BestWebSoft - Version 2.8

Version Description

  • 03.06.2013 =
  • Update : BWS plugins section is updated.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Google Sitemap by BestWebSoft
Version 2.8
Comparing to
See all releases

Code changes from version 2.7 to 2.8

google-sitemap-plugin.php CHANGED
@@ -4,12 +4,12 @@ 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.7
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
11
 
12
- /* © Copyright 2011 BestWebSoft ( admin@bestwebsoft.com )
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License, version 2, as
@@ -26,83 +26,133 @@ License: GPLv2 or later
26
  */
27
 
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();
37
  $array_recomend = array();
38
  $count_activate = $count_install = $count_recomend = 0;
39
  $array_plugins = array(
40
- array( 'captcha\/captcha.php', 'Captcha', 'http://wordpress.org/extend/plugins/captcha/', 'http://bestwebsoft.com/plugin/captcha-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Captcha+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=captcha.php' ),
41
- array( 'contact-form-plugin\/contact_form.php', 'Contact Form', 'http://wordpress.org/extend/plugins/contact-form-plugin/', 'http://bestwebsoft.com/plugin/contact-form/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Contact+Form+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=contact_form.php' ),
42
- array( 'facebook-button-plugin\/facebook-button-plugin.php', 'Facebook Like Button Plugin', 'http://wordpress.org/extend/plugins/facebook-button-plugin/', 'http://bestwebsoft.com/plugin/facebook-like-button-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Facebook+Like+Button+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=facebook-button-plugin.php' ),
43
- array( 'twitter-plugin\/twitter.php', 'Twitter Plugin', 'http://wordpress.org/extend/plugins/twitter-plugin/', 'http://bestwebsoft.com/plugin/twitter-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Twitter+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=twitter.php' ),
44
- array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
45
- array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
46
- array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://wordpress.org/extend/plugins/adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' ),
47
- array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://wordpress.org/extend/plugins/custom-search-plugin/', 'http://bestwebsoft.com/plugin/custom-search-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=custom_search.php' ),
48
- array( 'quotes-and-tips\/quotes-and-tips.php', 'Quotes and Tips', 'http://wordpress.org/extend/plugins/quotes-and-tips/', 'http://bestwebsoft.com/plugin/quotes-and-tips/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Quotes+and+Tips+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=quotes-and-tips.php' ),
49
- array( 'google-sitemap-plugin\/google-sitemap-plugin.php', 'Google sitemap plugin', 'http://wordpress.org/extend/plugins/google-sitemap-plugin/', 'http://bestwebsoft.com/plugin/google-sitemap-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Google+sitemap+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=google-sitemap-plugin.php' ),
50
- array( 'updater\/updater.php', 'Updater', 'http://wordpress.org/extend/plugins/updater/', 'http://bestwebsoft.com/plugin/updater/', '/wp-admin/plugin-install.php?tab=search&s=updater+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=updater-options' )
51
  );
52
- foreach($array_plugins as $plugins) {
53
  if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
54
- $array_activate[$count_activate]['title'] = $plugins[1];
55
- $array_activate[$count_activate]['link'] = $plugins[2];
56
- $array_activate[$count_activate]['href'] = $plugins[3];
57
- $array_activate[$count_activate]['url'] = $plugins[5];
58
  $count_activate++;
59
- }
60
- else if( array_key_exists(str_replace("\\", "", $plugins[0]), $all_plugins) ) {
61
- $array_install[$count_install]['title'] = $plugins[1];
62
- $array_install[$count_install]['link'] = $plugins[2];
63
- $array_install[$count_install]['href'] = $plugins[3];
64
  $count_install++;
65
- }
66
- else {
67
- $array_recomend[$count_recomend]['title'] = $plugins[1];
68
- $array_recomend[$count_recomend]['link'] = $plugins[2];
69
- $array_recomend[$count_recomend]['href'] = $plugins[3];
70
- $array_recomend[$count_recomend]['slug'] = $plugins[4];
71
  $count_recomend++;
72
  }
73
  }
74
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  <div class="wrap">
76
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
77
  <h2><?php echo $title;?></h2>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  <?php if( 0 < $count_activate ) { ?>
79
- <div>
80
- <h3><?php _e( 'Activated plugins', 'sitemap' ); ?></h3>
81
  <?php foreach( $array_activate as $activate_plugin ) { ?>
82
- <div style="float:left; width:200px;"><?php echo $activate_plugin['title']; ?></div> <p><a href="<?php echo $activate_plugin['link']; ?>" target="_blank"><?php echo __( "Read more", 'sitemap'); ?></a> <a href="<?php echo $activate_plugin['url']; ?>"><?php echo __( "Settings", 'sitemap'); ?></a></p>
83
  <?php } ?>
84
  </div>
85
  <?php } ?>
86
  <?php if( 0 < $count_install ) { ?>
87
- <div>
88
- <h3><?php _e( 'Installed plugins', 'sitemap' ); ?></h3>
89
- <?php foreach($array_install as $install_plugin) { ?>
90
- <div style="float:left; width:200px;"><?php echo $install_plugin['title']; ?></div> <p><a href="<?php echo $install_plugin['link']; ?>" target="_blank"><?php echo __( "Read more", 'sitemap'); ?></a></p>
91
  <?php } ?>
92
  </div>
93
  <?php } ?>
94
  <?php if( 0 < $count_recomend ) { ?>
95
- <div>
96
- <h3><?php _e( 'Recommended plugins', 'sitemap' ); ?></h3>
97
- <?php foreach( $array_recomend as $recomend_plugin ) { ?>
98
- <div style="float:left; width:200px;"><?php echo $recomend_plugin['title']; ?></div> <p><a href="<?php echo $recomend_plugin['link']; ?>" target="_blank"><?php echo __( "Read more", 'sitemap'); ?></a> <a href="<?php echo $recomend_plugin['href']; ?>" target="_blank"><?php echo __( "Download", 'sitemap'); ?></a> <a class="install-now" href="<?php echo get_bloginfo( "url" ) . $recomend_plugin['slug']; ?>" title="<?php esc_attr( sprintf( __( 'Install %s' ), $recomend_plugin['title'] ) ) ?>" target="_blank"><?php echo __( 'Install now from wordpress.org', 'sitemap' ) ?></a></p>
99
  <?php } ?>
100
- <span style="color: rgb(136, 136, 136); font-size: 10px;"><?php _e( 'If you have any questions, please contact us via plugin@bestwebsoft.com or fill out the contact form on our website', 'sitemap' ); ?> <a href="http://bestwebsoft.com/contact/">http://bestwebsoft.com/contact/</a></span>
101
  </div>
102
- <?php } ?>
 
 
103
  </div>
104
- <?php
105
- }
106
  }
107
 
108
  //============================================ Function for adding menu and submenu ====================
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
  */
11
 
12
+ /* © Copyright 2011 BestWebSoft ( http://support.bestwebsoft.com )
13
 
14
  This program is free software; you can redistribute it and/or modify
15
  it under the terms of the GNU General Public License, version 2, as
26
  */
27
 
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();
37
  $array_recomend = array();
38
  $count_activate = $count_install = $count_recomend = 0;
39
  $array_plugins = array(
40
+ array( 'captcha\/captcha.php', 'Captcha', 'http://bestwebsoft.com/plugin/captcha-plugin/', 'http://bestwebsoft.com/plugin/captcha-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Captcha+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=captcha.php' ),
41
+ array( 'contact-form-plugin\/contact_form.php', 'Contact Form', 'http://bestwebsoft.com/plugin/contact-form/', 'http://bestwebsoft.com/plugin/contact-form/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Contact+Form+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=contact_form.php' ),
42
+ array( 'facebook-button-plugin\/facebook-button-plugin.php', 'Facebook Like Button Plugin', 'http://bestwebsoft.com/plugin/facebook-like-button-plugin/', 'http://bestwebsoft.com/plugin/facebook-like-button-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Facebook+Like+Button+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=facebook-button-plugin.php' ),
43
+ array( 'twitter-plugin\/twitter.php', 'Twitter Plugin', 'http://bestwebsoft.com/plugin/twitter-plugin/', 'http://bestwebsoft.com/plugin/twitter-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Twitter+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=twitter.php' ),
44
+ array( 'portfolio\/portfolio.php', 'Portfolio', 'http://bestwebsoft.com/plugin/portfolio-plugin/', 'http://bestwebsoft.com/plugin/portfolio-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=portfolio.php' ),
45
+ array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://bestwebsoft.com/plugin/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=gallery-plugin.php' ),
46
+ array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' ),
47
+ array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://bestwebsoft.com/plugin/custom-search-plugin/', 'http://bestwebsoft.com/plugin/custom-search-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=custom_search.php' ),
48
+ array( 'quotes-and-tips\/quotes-and-tips.php', 'Quotes and Tips', 'http://bestwebsoft.com/plugin/quotes-and-tips/', 'http://bestwebsoft.com/plugin/quotes-and-tips/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Quotes+and+Tips+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=quotes-and-tips.php' ),
49
+ array( 'google-sitemap-plugin\/google-sitemap-plugin.php', 'Google sitemap plugin', 'http://bestwebsoft.com/plugin/google-sitemap-plugin/', 'http://bestwebsoft.com/plugin/google-sitemap-plugin/#download', '/wp-admin/plugin-install.php?tab=search&type=term&s=Google+sitemap+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=google-sitemap-plugin.php' ),
50
+ array( 'updater\/updater.php', 'Updater', 'http://bestwebsoft.com/plugin/updater-plugin/', 'http://bestwebsoft.com/plugin/updater-plugin/#download', '/wp-admin/plugin-install.php?tab=search&s=updater+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=updater-options' )
51
  );
52
+ foreach ( $array_plugins as $plugins ) {
53
  if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
54
+ $array_activate[$count_activate]["title"] = $plugins[1];
55
+ $array_activate[$count_activate]["link"] = $plugins[2];
56
+ $array_activate[$count_activate]["href"] = $plugins[3];
57
+ $array_activate[$count_activate]["url"] = $plugins[5];
58
  $count_activate++;
59
+ } else if ( array_key_exists(str_replace( "\\", "", $plugins[0]), $all_plugins ) ) {
60
+ $array_install[$count_install]["title"] = $plugins[1];
61
+ $array_install[$count_install]["link"] = $plugins[2];
62
+ $array_install[$count_install]["href"] = $plugins[3];
 
63
  $count_install++;
64
+ } else {
65
+ $array_recomend[$count_recomend]["title"] = $plugins[1];
66
+ $array_recomend[$count_recomend]["link"] = $plugins[2];
67
+ $array_recomend[$count_recomend]["href"] = $plugins[3];
68
+ $array_recomend[$count_recomend]["slug"] = $plugins[4];
 
69
  $count_recomend++;
70
  }
71
  }
72
+ $array_activate_pro = array();
73
+ $array_install_pro = array();
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/', 'http://bestwebsoft.com/plugin/gallery-pro/#purchase', 'admin.php?page=gallery-plugin-pro.php' )
78
+ );
79
+ foreach ( $array_plugins_pro as $plugins ) {
80
+ if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
81
+ $array_activate_pro[$count_activate_pro]["title"] = $plugins[1];
82
+ $array_activate_pro[$count_activate_pro]["link"] = $plugins[2];
83
+ $array_activate_pro[$count_activate_pro]["href"] = $plugins[3];
84
+ $array_activate_pro[$count_activate_pro]["url"] = $plugins[4];
85
+ $count_activate_pro++;
86
+ } else if( array_key_exists(str_replace( "\\", "", $plugins[0]), $all_plugins ) ) {
87
+ $array_install_pro[$count_install_pro]["title"] = $plugins[1];
88
+ $array_install_pro[$count_install_pro]["link"] = $plugins[2];
89
+ $array_install_pro[$count_install_pro]["href"] = $plugins[3];
90
+ $count_install_pro++;
91
+ } else {
92
+ $array_recomend_pro[$count_recomend_pro]["title"] = $plugins[1];
93
+ $array_recomend_pro[$count_recomend_pro]["link"] = $plugins[2];
94
+ $array_recomend_pro[$count_recomend_pro]["href"] = $plugins[3];
95
+ $count_recomend_pro++;
96
+ }
97
+ } ?>
98
  <div class="wrap">
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;">
104
+ <h4><?php _e( 'Activated plugins', 'sitemap' ); ?></h4>
105
+ <?php foreach ( $array_activate_pro as $activate_plugin ) { ?>
106
+ <div style="float:left; width:200px;"><?php echo $activate_plugin["title"]; ?></div> <p><a href="<?php echo $activate_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'sitemap' ); ?></a> <a href="<?php echo $activate_plugin["url"]; ?>"><?php echo __( "Settings", 'sitemap' ); ?></a></p>
107
+ <?php } ?>
108
+ </div>
109
+ <?php } ?>
110
+ <?php if( 0 < $count_install_pro ) { ?>
111
+ <div style="padding-left:15px;">
112
+ <h4><?php _e( 'Installed plugins', 'sitemap' ); ?></h4>
113
+ <?php foreach ( $array_install_pro as $install_plugin) { ?>
114
+ <div style="float:left; width:200px;"><?php echo $install_plugin["title"]; ?></div> <p><a href="<?php echo $install_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'sitemap' ); ?></a></p>
115
+ <?php } ?>
116
+ </div>
117
+ <?php } ?>
118
+ <?php if( 0 < $count_recomend_pro ) { ?>
119
+ <div style="padding-left:15px;">
120
+ <h4><?php _e( 'Recommended plugins', 'sitemap' ); ?></h4>
121
+ <?php foreach ( $array_recomend_pro as $recomend_plugin ) { ?>
122
+ <div style="float:left; width:200px;"><?php echo $recomend_plugin["title"]; ?></div> <p><a href="<?php echo $recomend_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'sitemap' ); ?></a> <a href="<?php echo $recomend_plugin["href"]; ?>" target="_blank"><?php echo __( "Purchase", 'sitemap' ); ?></a></p>
123
+ <?php } ?>
124
+ </div>
125
+ <?php } ?>
126
+ <br />
127
+ <h3 style="color: green"><?php _e( 'Free plugins', 'sitemap' ); ?></h3>
128
  <?php if( 0 < $count_activate ) { ?>
129
+ <div style="padding-left:15px;">
130
+ <h4><?php _e( 'Activated plugins', 'sitemap' ); ?></h4>
131
  <?php foreach( $array_activate as $activate_plugin ) { ?>
132
+ <div style="float:left; width:200px;"><?php echo $activate_plugin["title"]; ?></div> <p><a href="<?php echo $activate_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'sitemap' ); ?></a> <a href="<?php echo $activate_plugin["url"]; ?>"><?php echo __( "Settings", 'sitemap' ); ?></a></p>
133
  <?php } ?>
134
  </div>
135
  <?php } ?>
136
  <?php if( 0 < $count_install ) { ?>
137
+ <div style="padding-left:15px;">
138
+ <h4><?php _e( 'Installed plugins', 'sitemap' ); ?></h4>
139
+ <?php foreach ( $array_install as $install_plugin ) { ?>
140
+ <div style="float:left; width:200px;"><?php echo $install_plugin["title"]; ?></div> <p><a href="<?php echo $install_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'sitemap' ); ?></a></p>
141
  <?php } ?>
142
  </div>
143
  <?php } ?>
144
  <?php if( 0 < $count_recomend ) { ?>
145
+ <div style="padding-left:15px;">
146
+ <h4><?php _e( 'Recommended plugins', 'sitemap' ); ?></h4>
147
+ <?php foreach ( $array_recomend as $recomend_plugin ) { ?>
148
+ <div style="float:left; width:200px;"><?php echo $recomend_plugin["title"]; ?></div> <p><a href="<?php echo $recomend_plugin["link"]; ?>" target="_blank"><?php echo __( "Read more", 'sitemap' ); ?></a> <a href="<?php echo $recomend_plugin["href"]; ?>" target="_blank"><?php echo __( "Download", 'sitemap' ); ?></a> <a class="install-now" href="<?php echo get_bloginfo( "url" ) . $recomend_plugin["slug"]; ?>" title="<?php esc_attr( sprintf( __( 'Install %s' ), $recomend_plugin["title"] ) ) ?>" target="_blank"><?php echo __( 'Install now from wordpress.org', 'sitemap' ) ?></a></p>
149
  <?php } ?>
 
150
  </div>
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
  }
157
 
158
  //============================================ Function for adding menu and submenu ====================
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-04-18 09:38+0300\n"
6
- "PO-Revision-Date: 2013-04-18 09:38+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,209 +16,237 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-sitemap-plugin.php:80
 
 
 
 
 
 
20
  msgid "Activated plugins"
21
  msgstr "الاضافات المفعلة"
22
 
23
- #: google-sitemap-plugin.php:82
24
- #: google-sitemap-plugin.php:90
25
- #: google-sitemap-plugin.php:98
 
 
 
26
  msgid "Read more"
27
  msgstr "اقراء المزيد..."
28
 
29
- #: google-sitemap-plugin.php:82
30
- #: google-sitemap-plugin.php:599
 
31
  msgid "Settings"
32
  msgstr "الاعدادات"
33
 
34
- #: google-sitemap-plugin.php:88
 
35
  msgid "Installed plugins"
36
  msgstr "الاضافات المثبته"
37
 
38
- #: google-sitemap-plugin.php:96
 
39
  msgid "Recommended plugins"
40
  msgstr "اضافات موصي بها"
41
 
42
- #: google-sitemap-plugin.php:98
 
 
 
 
 
 
 
 
 
43
  msgid "Download"
44
  msgstr "تحميل"
45
 
46
- #: google-sitemap-plugin.php:98
47
  #, php-format
48
  msgid "Install %s"
49
  msgstr "تثبيت %s"
50
 
51
- #: google-sitemap-plugin.php:98
52
  msgid "Install now from wordpress.org"
53
  msgstr "حملها الان من wordpress.org"
54
 
55
- #: google-sitemap-plugin.php:100
56
- #, fuzzy
57
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill out the contact form on our website"
58
- msgstr "اذا كانت لديك اي اسئلة , الرجاء الاتصال بنا عبر البريد الالكتروني plugin@bestwebsoft.com -"
59
 
60
- #: google-sitemap-plugin.php:111
61
  msgid "BWS Plugins"
62
  msgstr " اضافات BWS"
63
 
64
- #: google-sitemap-plugin.php:112
65
  msgid "Google Sitemap Options"
66
  msgstr "خيارات خرائط جوجل"
67
 
68
- #: google-sitemap-plugin.php:112
69
  msgid "Google Sitemap"
70
  msgstr "خرائط جوجل"
71
 
72
- #: google-sitemap-plugin.php:223
73
- #: google-sitemap-plugin.php:298
74
  #, fuzzy
75
  msgid "Your Sitemap file is created in the site root directory."
76
  msgstr "تم إنشاء ملف Sitemap الخاص بك في الدليل الرئيسي للموقع."
77
 
78
- #: google-sitemap-plugin.php:229
79
  msgid "Options saved."
80
  msgstr "تم حفظ الخيارات."
81
 
82
- #: google-sitemap-plugin.php:289
83
  msgid "Google Sitemap options"
84
  msgstr "خيارات خرائط جوجل"
85
 
86
- #: google-sitemap-plugin.php:294
87
  #, fuzzy
88
  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."
89
  msgstr "ملف الخريطة موجود مسبقاً . اذا كنت ترغب في انشاء خريطة جديدة قم بوضع علامة في المربع ادناه , في حالة اخري جميع التغيرات سوف تعاد كتابتها فوق الملف الموجود مسبقاُ ."
90
 
91
- #: google-sitemap-plugin.php:302
92
- #: google-sitemap-plugin.php:304
93
  #, fuzzy
94
  msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
95
  msgstr "إذا كنت لا ترغب في إضافة هذا الملف تلقائيا قد تذهب من خلال"
96
 
97
- #: google-sitemap-plugin.php:302
98
- #: google-sitemap-plugin.php:304
99
  msgid "this"
100
  msgstr "هذه"
101
 
102
- #: google-sitemap-plugin.php:302
103
- #: google-sitemap-plugin.php:304
104
  #, fuzzy
105
  msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
106
  msgstr "الرابط , تسجيل الدخول , اختياري الموقع ضاروري , اختيار الخرائط , و املاء الحقول الضرورية"
107
 
108
- #: google-sitemap-plugin.php:307
109
  #, fuzzy
110
- msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically"
111
  msgstr "الاستضافة لا تدعم ( CURL ) اذاُ لا يمكنك اضافة ملف الخريطة تلقائياُ"
112
 
113
- #: google-sitemap-plugin.php:316
114
  #, fuzzy
115
  msgid "I want to create a new sitemap file or update the existing one"
116
  msgstr "ارغب في اضافة مسار ملف الخريطة في robots.txt"
117
 
118
- #: google-sitemap-plugin.php:322
119
- #: google-sitemap-plugin.php:329
120
  msgid "I want to add sitemap file path in robots.txt"
121
  msgstr "ارغب في اضافة مسار ملف الخريطة في robots.txt"
122
 
123
- #: google-sitemap-plugin.php:323
124
  msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
125
  msgstr ""
126
 
127
- #: google-sitemap-plugin.php:334
128
  #, fuzzy
129
  msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
130
  msgstr "الرجاء اختيار انواع المواضيع الضارورية لاضافة روابطها في الخريطة :"
131
 
132
- #: google-sitemap-plugin.php:347
133
  #, fuzzy
134
  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."
135
  msgstr "اكتب هنا اسم الدخول والرقم السري الخاصة بـحساب google webmaster tools - للاضافة او حذف ملف الخريطة تلقائياً . او معرفة المعلومات عن هذه الموقع في google webmaster tools"
136
 
137
- #: google-sitemap-plugin.php:351
138
  msgid "Settings for remote work with google webmaster tools"
139
  msgstr "الضبط للعمل عن بعد مع google webmaster tools"
140
 
141
- #: google-sitemap-plugin.php:353
142
  msgid "Login"
143
  msgstr "اسم الدخول"
144
 
145
- #: google-sitemap-plugin.php:354
146
  msgid "Password"
147
  msgstr "الرقم السري"
148
 
149
- #: google-sitemap-plugin.php:355
150
  #, fuzzy
151
  msgid "I want to add this site to Google Webmaster Tools"
152
  msgstr "ارغب في اضافة هذه الموقع في google webmaster tools"
153
 
154
- #: google-sitemap-plugin.php:356
155
  #, fuzzy
156
  msgid "I want to delete this site from Google Webmaster Tools"
157
  msgstr "ارغب في حذف هذه الموقع من google webmaster tools"
158
 
159
- #: google-sitemap-plugin.php:357
160
- #: google-sitemap-plugin.php:488
161
  #, fuzzy
162
  msgid "I want to get info about this site in Google Webmaster Tools"
163
  msgstr "ارغب في الحصول علي البيانات هذه الموقع في google webmaster tools"
164
 
165
- #: google-sitemap-plugin.php:364
166
  msgid "Save Changes"
167
  msgstr "حفظ الاعدادات"
168
 
169
- #: google-sitemap-plugin.php:372
170
  #, fuzzy
171
  msgid "Please enter your login and password"
172
  msgstr "يجب عليك كتابة اسم الدخول والرقم السري"
173
 
174
- #: google-sitemap-plugin.php:375
175
  #, fuzzy
176
  msgid "You should choose at least one action"
177
  msgstr "يجب عليك اختيار عملية واحدة علي الاقل"
178
 
179
- #: google-sitemap-plugin.php:405
180
  #, fuzzy
181
  msgid "Login and password do not match. Please try again"
182
  msgstr "اسم الدخول والرقم السري // غير مطابقة , الرجاء اعادة المحاولة مرة اخري"
183
 
184
- #: google-sitemap-plugin.php:490
185
  #, fuzzy
186
  msgid "This site is not added to the Google Webmaster Tools account"
187
  msgstr "هذه الموقع غير مضاف الي حساب google webmaster tools"
188
 
189
- #: google-sitemap-plugin.php:511
190
  #, fuzzy
191
  msgid "Site URL:"
192
  msgstr "رابط الموقع :"
193
 
194
- #: google-sitemap-plugin.php:512
195
  #, fuzzy
196
  msgid "Site verification:"
197
  msgstr "كود التحقق لهذه الموقع :"
198
 
199
- #: google-sitemap-plugin.php:514
200
  #, fuzzy
201
  msgid "verified"
202
  msgstr "التحقق"
203
 
204
- #: google-sitemap-plugin.php:516
205
  #, fuzzy
206
  msgid "not verified"
207
  msgstr "لا يوجد تحقق"
208
 
209
- #: google-sitemap-plugin.php:517
210
  #, fuzzy
211
  msgid "Sitemap file:"
212
  msgstr "ملف الخريطة :"
213
 
214
- #: google-sitemap-plugin.php:519
215
  msgid "added"
216
  msgstr "اضيفت"
217
 
218
- #: google-sitemap-plugin.php:521
219
  msgid "not added"
220
  msgstr "لم تضاف"
221
 
 
 
 
 
 
 
 
 
222
  #, fuzzy
223
  #~ msgid "I want to create new / update manualy sitemap file"
224
  #~ msgstr "ارغب في انشاء خريطة جديدة"
2
  msgstr ""
3
  "Project-Id-Version: google-sitemap-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-03 14:46+0300\n"
6
+ "PO-Revision-Date: 2013-06-03 14:46+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:101
20
+ #, fuzzy
21
+ msgid "Pro plugins"
22
+ msgstr " اضافات BWS"
23
+
24
+ #: google-sitemap-plugin.php:104
25
+ #: google-sitemap-plugin.php:130
26
  msgid "Activated plugins"
27
  msgstr "الاضافات المفعلة"
28
 
29
+ #: google-sitemap-plugin.php:106
30
+ #: google-sitemap-plugin.php:114
31
+ #: google-sitemap-plugin.php:122
32
+ #: google-sitemap-plugin.php:132
33
+ #: google-sitemap-plugin.php:140
34
+ #: google-sitemap-plugin.php:148
35
  msgid "Read more"
36
  msgstr "اقراء المزيد..."
37
 
38
+ #: google-sitemap-plugin.php:106
39
+ #: google-sitemap-plugin.php:132
40
+ #: google-sitemap-plugin.php:649
41
  msgid "Settings"
42
  msgstr "الاعدادات"
43
 
44
+ #: google-sitemap-plugin.php:112
45
+ #: google-sitemap-plugin.php:138
46
  msgid "Installed plugins"
47
  msgstr "الاضافات المثبته"
48
 
49
+ #: google-sitemap-plugin.php:120
50
+ #: google-sitemap-plugin.php:146
51
  msgid "Recommended plugins"
52
  msgstr "اضافات موصي بها"
53
 
54
+ #: google-sitemap-plugin.php:122
55
+ msgid "Purchase"
56
+ msgstr ""
57
+
58
+ #: google-sitemap-plugin.php:127
59
+ #, fuzzy
60
+ msgid "Free plugins"
61
+ msgstr "اضافات موصي بها"
62
+
63
+ #: google-sitemap-plugin.php:148
64
  msgid "Download"
65
  msgstr "تحميل"
66
 
67
+ #: google-sitemap-plugin.php:148
68
  #, php-format
69
  msgid "Install %s"
70
  msgstr "تثبيت %s"
71
 
72
+ #: google-sitemap-plugin.php:148
73
  msgid "Install now from wordpress.org"
74
  msgstr "حملها الان من wordpress.org"
75
 
76
+ #: google-sitemap-plugin.php:153
77
+ msgid "If you have any questions, please contact us via"
78
+ msgstr ""
 
79
 
80
+ #: google-sitemap-plugin.php:161
81
  msgid "BWS Plugins"
82
  msgstr " اضافات BWS"
83
 
84
+ #: google-sitemap-plugin.php:162
85
  msgid "Google Sitemap Options"
86
  msgstr "خيارات خرائط جوجل"
87
 
88
+ #: google-sitemap-plugin.php:162
89
  msgid "Google Sitemap"
90
  msgstr "خرائط جوجل"
91
 
92
+ #: google-sitemap-plugin.php:273
93
+ #: google-sitemap-plugin.php:348
94
  #, fuzzy
95
  msgid "Your Sitemap file is created in the site root directory."
96
  msgstr "تم إنشاء ملف Sitemap الخاص بك في الدليل الرئيسي للموقع."
97
 
98
+ #: google-sitemap-plugin.php:279
99
  msgid "Options saved."
100
  msgstr "تم حفظ الخيارات."
101
 
102
+ #: google-sitemap-plugin.php:339
103
  msgid "Google Sitemap options"
104
  msgstr "خيارات خرائط جوجل"
105
 
106
+ #: google-sitemap-plugin.php:344
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:352
112
+ #: google-sitemap-plugin.php:354
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:352
118
+ #: google-sitemap-plugin.php:354
119
  msgid "this"
120
  msgstr "هذه"
121
 
122
+ #: google-sitemap-plugin.php:352
123
+ #: google-sitemap-plugin.php:354
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:357
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:366
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:372
139
+ #: google-sitemap-plugin.php:379
140
  msgid "I want to add sitemap file path in robots.txt"
141
  msgstr "ارغب في اضافة مسار ملف الخريطة في robots.txt"
142
 
143
+ #: google-sitemap-plugin.php:373
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:384
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:397
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:401
158
  msgid "Settings for remote work with google webmaster tools"
159
  msgstr "الضبط للعمل عن بعد مع google webmaster tools"
160
 
161
+ #: google-sitemap-plugin.php:403
162
  msgid "Login"
163
  msgstr "اسم الدخول"
164
 
165
+ #: google-sitemap-plugin.php:404
166
  msgid "Password"
167
  msgstr "الرقم السري"
168
 
169
+ #: google-sitemap-plugin.php:405
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:406
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:407
180
+ #: google-sitemap-plugin.php:538
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:414
186
  msgid "Save Changes"
187
  msgstr "حفظ الاعدادات"
188
 
189
+ #: google-sitemap-plugin.php:422
190
  #, fuzzy
191
  msgid "Please enter your login and password"
192
  msgstr "يجب عليك كتابة اسم الدخول والرقم السري"
193
 
194
+ #: google-sitemap-plugin.php:425
195
  #, fuzzy
196
  msgid "You should choose at least one action"
197
  msgstr "يجب عليك اختيار عملية واحدة علي الاقل"
198
 
199
+ #: google-sitemap-plugin.php:455
200
  #, fuzzy
201
  msgid "Login and password do not match. Please try again"
202
  msgstr "اسم الدخول والرقم السري // غير مطابقة , الرجاء اعادة المحاولة مرة اخري"
203
 
204
+ #: google-sitemap-plugin.php:540
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:561
210
  #, fuzzy
211
  msgid "Site URL:"
212
  msgstr "رابط الموقع :"
213
 
214
+ #: google-sitemap-plugin.php:562
215
  #, fuzzy
216
  msgid "Site verification:"
217
  msgstr "كود التحقق لهذه الموقع :"
218
 
219
+ #: google-sitemap-plugin.php:564
220
  #, fuzzy
221
  msgid "verified"
222
  msgstr "التحقق"
223
 
224
+ #: google-sitemap-plugin.php:566
225
  #, fuzzy
226
  msgid "not verified"
227
  msgstr "لا يوجد تحقق"
228
 
229
+ #: google-sitemap-plugin.php:567
230
  #, fuzzy
231
  msgid "Sitemap file:"
232
  msgstr "ملف الخريطة :"
233
 
234
+ #: google-sitemap-plugin.php:569
235
  msgid "added"
236
  msgstr "اضيفت"
237
 
238
+ #: google-sitemap-plugin.php:571
239
  msgid "not added"
240
  msgstr "لم تضاف"
241
 
242
+ #, fuzzy
243
+ #~ msgid ""
244
+ #~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
245
+ #~ "or fill out the contact form on our website"
246
+ #~ msgstr ""
247
+ #~ "اذا كانت لديك اي اسئلة , الرجاء الاتصال بنا عبر البريد الالكتروني "
248
+ #~ "plugin@bestwebsoft.com -"
249
+
250
  #, fuzzy
251
  #~ msgid "I want to create new / update manualy sitemap file"
252
  #~ msgstr "ارغب في انشاء خريطة جديدة"
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-04-18 09:38+0300\n"
6
- "PO-Revision-Date: 2013-04-18 09:38+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Fernando De León <mrjosefernando@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,209 +16,237 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.5\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-sitemap-plugin.php:80
 
 
 
 
 
 
20
  msgid "Activated plugins"
21
  msgstr "Plugins Activados"
22
 
23
- #: google-sitemap-plugin.php:82
24
- #: google-sitemap-plugin.php:90
25
- #: google-sitemap-plugin.php:98
 
 
 
26
  msgid "Read more"
27
  msgstr "Leer m&aacute;s"
28
 
29
- #: google-sitemap-plugin.php:82
30
- #: google-sitemap-plugin.php:599
 
31
  msgid "Settings"
32
  msgstr "Configuraci&oacute;n"
33
 
34
- #: google-sitemap-plugin.php:88
 
35
  msgid "Installed plugins"
36
  msgstr "Plugins Instalados"
37
 
38
- #: google-sitemap-plugin.php:96
 
39
  msgid "Recommended plugins"
40
  msgstr "Plugins Recomendados"
41
 
42
- #: google-sitemap-plugin.php:98
 
 
 
 
 
 
 
 
 
43
  msgid "Download"
44
  msgstr "Descargar"
45
 
46
- #: google-sitemap-plugin.php:98
47
  #, php-format
48
  msgid "Install %s"
49
  msgstr "Instalar %s"
50
 
51
- #: google-sitemap-plugin.php:98
52
  msgid "Install now from wordpress.org"
53
  msgstr "Instalar desde wordpress.org"
54
 
55
- #: google-sitemap-plugin.php:100
56
- #, fuzzy
57
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill out the contact form on our website"
58
- msgstr "Si usted tiene alguna pregunta, comun&iacute;quese con nosotros v&iacute;a plugin@bestwebsoft.com o rellene nuestro formulario de contacto en nuestro sitio"
59
 
60
- #: google-sitemap-plugin.php:111
61
  msgid "BWS Plugins"
62
  msgstr "Plugins BWS"
63
 
64
- #: google-sitemap-plugin.php:112
65
  msgid "Google Sitemap Options"
66
  msgstr "Ajustes de Mapa del Sitio de Google"
67
 
68
- #: google-sitemap-plugin.php:112
69
  msgid "Google Sitemap"
70
  msgstr "Mapa del Sitio de Google"
71
 
72
- #: google-sitemap-plugin.php:223
73
- #: google-sitemap-plugin.php:298
74
  #, fuzzy
75
  msgid "Your Sitemap file is created in the site root directory."
76
  msgstr "El archivo del mapa del sitio se crea en el directorio ra&iacute;z del sitio. "
77
 
78
- #: google-sitemap-plugin.php:229
79
  msgid "Options saved."
80
  msgstr "Configuraci&oacute;n guardada !!"
81
 
82
- #: google-sitemap-plugin.php:289
83
  msgid "Google Sitemap options"
84
  msgstr "Opciones del Mapa del Sitio"
85
 
86
- #: google-sitemap-plugin.php:294
87
  #, fuzzy
88
  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."
89
  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."
90
 
91
- #: google-sitemap-plugin.php:302
92
- #: google-sitemap-plugin.php:304
93
  #, fuzzy
94
  msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
95
  msgstr "Si no quiere guardar este archivo se puede ir autom&aacute;ticamente a trav&eacute;s de par"
96
 
97
- #: google-sitemap-plugin.php:302
98
- #: google-sitemap-plugin.php:304
99
  msgid "this"
100
  msgstr "este"
101
 
102
- #: google-sitemap-plugin.php:302
103
- #: google-sitemap-plugin.php:304
104
  #, fuzzy
105
  msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
106
  msgstr "link, registro, seleccione el sitio necesario, el \"Sitemaps\" y escriba el campo cecesario"
107
 
108
- #: google-sitemap-plugin.php:307
109
  #, fuzzy
110
- msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically"
111
  msgstr "Este alojamiento no es compatible con CURL, por lo que no se puede a&ntilde;adir archivos al Mapa del sitio autom&aacute;ticamente"
112
 
113
- #: google-sitemap-plugin.php:316
114
  #, fuzzy
115
  msgid "I want to create a new sitemap file or update the existing one"
116
  msgstr "Quiero a&ntilde;adir el Mapa del sitio ruta del archivo en robots.txt"
117
 
118
- #: google-sitemap-plugin.php:322
119
- #: google-sitemap-plugin.php:329
120
  msgid "I want to add sitemap file path in robots.txt"
121
  msgstr "Quiero a&ntilde;adir el Mapa del sitio ruta del archivo en robots.txt"
122
 
123
- #: google-sitemap-plugin.php:323
124
  msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
125
  msgstr ""
126
 
127
- #: google-sitemap-plugin.php:334
128
  #, fuzzy
129
  msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
130
  msgstr "Por favor, seleccione los tipos de publicaciones necesarios para agregar en el mapa del sitio:"
131
 
132
- #: google-sitemap-plugin.php:347
133
  #, fuzzy
134
  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."
135
  msgstr "Escriba aqu&iacute; su nombre de usuario y contrase&ntilde;a de Herramientas para Webmasters de Google para agregar o eliminar el sitio y el archivo del mapa de forma autom&aacute;tica o para obtener informaci&oacute;n de este sitio en Herramientas para Webmasters de Google."
136
 
137
- #: google-sitemap-plugin.php:351
138
  msgid "Settings for remote work with google webmaster tools"
139
  msgstr "Ajustes para el trabajo a distancia con Herramientas para Webmasters de Google"
140
 
141
- #: google-sitemap-plugin.php:353
142
  msgid "Login"
143
  msgstr "Cuenta"
144
 
145
- #: google-sitemap-plugin.php:354
146
  msgid "Password"
147
  msgstr "Contrase&ntilde;a"
148
 
149
- #: google-sitemap-plugin.php:355
150
  #, fuzzy
151
  msgid "I want to add this site to Google Webmaster Tools"
152
  msgstr "Quiero a&ntilde;adir este sitio a las Herramientas para Webmasters de Google"
153
 
154
- #: google-sitemap-plugin.php:356
155
  #, fuzzy
156
  msgid "I want to delete this site from Google Webmaster Tools"
157
  msgstr "Quiero quitar a este sitio desde Herramientas para Webmasters de Google"
158
 
159
- #: google-sitemap-plugin.php:357
160
- #: google-sitemap-plugin.php:488
161
  #, fuzzy
162
  msgid "I want to get info about this site in Google Webmaster Tools"
163
  msgstr "Quiero ver informaci&oacute;n acerca de este sitio en Herramientas para Webmasters de Google"
164
 
165
- #: google-sitemap-plugin.php:364
166
  msgid "Save Changes"
167
  msgstr "Guardar Configuraci&oacute;n"
168
 
169
- #: google-sitemap-plugin.php:372
170
  #, fuzzy
171
  msgid "Please enter your login and password"
172
  msgstr "Debe introducir nombre de usuario y contrase&ntilde;a"
173
 
174
- #: google-sitemap-plugin.php:375
175
  #, fuzzy
176
  msgid "You should choose at least one action"
177
  msgstr "Debe elegir al menos una acci&oacute;n"
178
 
179
- #: google-sitemap-plugin.php:405
180
  #, fuzzy
181
  msgid "Login and password do not match. Please try again"
182
  msgstr "El nombre de usuario y/o contrase&ntilde;a est&aacute;(n) mal, por favor, intenta de nuevo"
183
 
184
- #: google-sitemap-plugin.php:490
185
  #, fuzzy
186
  msgid "This site is not added to the Google Webmaster Tools account"
187
  msgstr "Este sitio no est&aacute; agregado a su cuenta de Herramientas para Webmasters de Google"
188
 
189
- #: google-sitemap-plugin.php:511
190
  #, fuzzy
191
  msgid "Site URL:"
192
  msgstr "URL del sitio: "
193
 
194
- #: google-sitemap-plugin.php:512
195
  #, fuzzy
196
  msgid "Site verification:"
197
  msgstr "Verificaci&oacute;n del sitio: "
198
 
199
- #: google-sitemap-plugin.php:514
200
  #, fuzzy
201
  msgid "verified"
202
  msgstr "verificado"
203
 
204
- #: google-sitemap-plugin.php:516
205
  #, fuzzy
206
  msgid "not verified"
207
  msgstr "no verificado"
208
 
209
- #: google-sitemap-plugin.php:517
210
  #, fuzzy
211
  msgid "Sitemap file:"
212
  msgstr "Archivo del Mapa del Sitio: "
213
 
214
- #: google-sitemap-plugin.php:519
215
  msgid "added"
216
  msgstr "agregado"
217
 
218
- #: google-sitemap-plugin.php:521
219
  msgid "not added"
220
  msgstr "no agregado"
221
 
 
 
 
 
 
 
 
 
222
  #~ msgid "I want to create new / update manualy sitemap file"
223
  #~ msgstr ""
224
  #~ "Quiero crear un nuevo o actualizar manualmente el fichero del Mapa del "
2
  msgstr ""
3
  "Project-Id-Version: google-sitemap-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-03 14:46+0300\n"
6
+ "PO-Revision-Date: 2013-06-03 14:46+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:101
20
+ #, fuzzy
21
+ msgid "Pro plugins"
22
+ msgstr "Plugins BWS"
23
+
24
+ #: google-sitemap-plugin.php:104
25
+ #: google-sitemap-plugin.php:130
26
  msgid "Activated plugins"
27
  msgstr "Plugins Activados"
28
 
29
+ #: google-sitemap-plugin.php:106
30
+ #: google-sitemap-plugin.php:114
31
+ #: google-sitemap-plugin.php:122
32
+ #: google-sitemap-plugin.php:132
33
+ #: google-sitemap-plugin.php:140
34
+ #: google-sitemap-plugin.php:148
35
  msgid "Read more"
36
  msgstr "Leer m&aacute;s"
37
 
38
+ #: google-sitemap-plugin.php:106
39
+ #: google-sitemap-plugin.php:132
40
+ #: google-sitemap-plugin.php:649
41
  msgid "Settings"
42
  msgstr "Configuraci&oacute;n"
43
 
44
+ #: google-sitemap-plugin.php:112
45
+ #: google-sitemap-plugin.php:138
46
  msgid "Installed plugins"
47
  msgstr "Plugins Instalados"
48
 
49
+ #: google-sitemap-plugin.php:120
50
+ #: google-sitemap-plugin.php:146
51
  msgid "Recommended plugins"
52
  msgstr "Plugins Recomendados"
53
 
54
+ #: google-sitemap-plugin.php:122
55
+ msgid "Purchase"
56
+ msgstr ""
57
+
58
+ #: google-sitemap-plugin.php:127
59
+ #, fuzzy
60
+ msgid "Free plugins"
61
+ msgstr "Plugins Recomendados"
62
+
63
+ #: google-sitemap-plugin.php:148
64
  msgid "Download"
65
  msgstr "Descargar"
66
 
67
+ #: google-sitemap-plugin.php:148
68
  #, php-format
69
  msgid "Install %s"
70
  msgstr "Instalar %s"
71
 
72
+ #: google-sitemap-plugin.php:148
73
  msgid "Install now from wordpress.org"
74
  msgstr "Instalar desde wordpress.org"
75
 
76
+ #: google-sitemap-plugin.php:153
77
+ msgid "If you have any questions, please contact us via"
78
+ msgstr ""
 
79
 
80
+ #: google-sitemap-plugin.php:161
81
  msgid "BWS Plugins"
82
  msgstr "Plugins BWS"
83
 
84
+ #: google-sitemap-plugin.php:162
85
  msgid "Google Sitemap Options"
86
  msgstr "Ajustes de Mapa del Sitio de Google"
87
 
88
+ #: google-sitemap-plugin.php:162
89
  msgid "Google Sitemap"
90
  msgstr "Mapa del Sitio de Google"
91
 
92
+ #: google-sitemap-plugin.php:273
93
+ #: google-sitemap-plugin.php:348
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&iacute;z del sitio. "
97
 
98
+ #: google-sitemap-plugin.php:279
99
  msgid "Options saved."
100
  msgstr "Configuraci&oacute;n guardada !!"
101
 
102
+ #: google-sitemap-plugin.php:339
103
  msgid "Google Sitemap options"
104
  msgstr "Opciones del Mapa del Sitio"
105
 
106
+ #: google-sitemap-plugin.php:344
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:352
112
+ #: google-sitemap-plugin.php:354
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&aacute;ticamente a trav&eacute;s de par"
116
 
117
+ #: google-sitemap-plugin.php:352
118
+ #: google-sitemap-plugin.php:354
119
  msgid "this"
120
  msgstr "este"
121
 
122
+ #: google-sitemap-plugin.php:352
123
+ #: google-sitemap-plugin.php:354
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:357
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&ntilde;adir archivos al Mapa del sitio autom&aacute;ticamente"
132
 
133
+ #: google-sitemap-plugin.php:366
134
  #, fuzzy
135
  msgid "I want to create a new sitemap file or update the existing one"
136
  msgstr "Quiero a&ntilde;adir el Mapa del sitio ruta del archivo en robots.txt"
137
 
138
+ #: google-sitemap-plugin.php:372
139
+ #: google-sitemap-plugin.php:379
140
  msgid "I want to add sitemap file path in robots.txt"
141
  msgstr "Quiero a&ntilde;adir el Mapa del sitio ruta del archivo en robots.txt"
142
 
143
+ #: google-sitemap-plugin.php:373
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:384
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:397
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&iacute; su nombre de usuario y contrase&ntilde;a de Herramientas para Webmasters de Google para agregar o eliminar el sitio y el archivo del mapa de forma autom&aacute;tica o para obtener informaci&oacute;n de este sitio en Herramientas para Webmasters de Google."
156
 
157
+ #: google-sitemap-plugin.php:401
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:403
162
  msgid "Login"
163
  msgstr "Cuenta"
164
 
165
+ #: google-sitemap-plugin.php:404
166
  msgid "Password"
167
  msgstr "Contrase&ntilde;a"
168
 
169
+ #: google-sitemap-plugin.php:405
170
  #, fuzzy
171
  msgid "I want to add this site to Google Webmaster Tools"
172
  msgstr "Quiero a&ntilde;adir este sitio a las Herramientas para Webmasters de Google"
173
 
174
+ #: google-sitemap-plugin.php:406
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:407
180
+ #: google-sitemap-plugin.php:538
181
  #, fuzzy
182
  msgid "I want to get info about this site in Google Webmaster Tools"
183
  msgstr "Quiero ver informaci&oacute;n acerca de este sitio en Herramientas para Webmasters de Google"
184
 
185
+ #: google-sitemap-plugin.php:414
186
  msgid "Save Changes"
187
  msgstr "Guardar Configuraci&oacute;n"
188
 
189
+ #: google-sitemap-plugin.php:422
190
  #, fuzzy
191
  msgid "Please enter your login and password"
192
  msgstr "Debe introducir nombre de usuario y contrase&ntilde;a"
193
 
194
+ #: google-sitemap-plugin.php:425
195
  #, fuzzy
196
  msgid "You should choose at least one action"
197
  msgstr "Debe elegir al menos una acci&oacute;n"
198
 
199
+ #: google-sitemap-plugin.php:455
200
  #, fuzzy
201
  msgid "Login and password do not match. Please try again"
202
  msgstr "El nombre de usuario y/o contrase&ntilde;a est&aacute;(n) mal, por favor, intenta de nuevo"
203
 
204
+ #: google-sitemap-plugin.php:540
205
  #, fuzzy
206
  msgid "This site is not added to the Google Webmaster Tools account"
207
  msgstr "Este sitio no est&aacute; agregado a su cuenta de Herramientas para Webmasters de Google"
208
 
209
+ #: google-sitemap-plugin.php:561
210
  #, fuzzy
211
  msgid "Site URL:"
212
  msgstr "URL del sitio: "
213
 
214
+ #: google-sitemap-plugin.php:562
215
  #, fuzzy
216
  msgid "Site verification:"
217
  msgstr "Verificaci&oacute;n del sitio: "
218
 
219
+ #: google-sitemap-plugin.php:564
220
  #, fuzzy
221
  msgid "verified"
222
  msgstr "verificado"
223
 
224
+ #: google-sitemap-plugin.php:566
225
  #, fuzzy
226
  msgid "not verified"
227
  msgstr "no verificado"
228
 
229
+ #: google-sitemap-plugin.php:567
230
  #, fuzzy
231
  msgid "Sitemap file:"
232
  msgstr "Archivo del Mapa del Sitio: "
233
 
234
+ #: google-sitemap-plugin.php:569
235
  msgid "added"
236
  msgstr "agregado"
237
 
238
+ #: google-sitemap-plugin.php:571
239
  msgid "not added"
240
  msgstr "no agregado"
241
 
242
+ #, fuzzy
243
+ #~ msgid ""
244
+ #~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
245
+ #~ "or fill out the contact form on our website"
246
+ #~ msgstr ""
247
+ #~ "Si usted tiene alguna pregunta, comun&iacute;quese con nosotros v&iacute;"
248
+ #~ "a plugin@bestwebsoft.com o rellene nuestro formulario de contacto en "
249
+ #~ "nuestro sitio"
250
  #~ msgid "I want to create new / update manualy sitemap file"
251
  #~ msgstr ""
252
  #~ "Quiero crear un nuevo o actualizar manualmente el fichero del Mapa del "
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-04-18 09:39+0300\n"
6
- "PO-Revision-Date: 2013-04-18 09:39+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Jeff <paillat.jeff@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,209 +16,237 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-sitemap-plugin.php:80
 
 
 
 
 
 
20
  msgid "Activated plugins"
21
  msgstr "Plugins activés"
22
 
23
- #: google-sitemap-plugin.php:82
24
- #: google-sitemap-plugin.php:90
25
- #: google-sitemap-plugin.php:98
 
 
 
26
  msgid "Read more"
27
  msgstr "Lire la suite"
28
 
29
- #: google-sitemap-plugin.php:82
30
- #: google-sitemap-plugin.php:599
 
31
  msgid "Settings"
32
  msgstr "Paramètres"
33
 
34
- #: google-sitemap-plugin.php:88
 
35
  msgid "Installed plugins"
36
  msgstr "Plugins installés"
37
 
38
- #: google-sitemap-plugin.php:96
 
39
  msgid "Recommended plugins"
40
  msgstr "Plugins recommandés"
41
 
42
- #: google-sitemap-plugin.php:98
 
 
 
 
 
 
 
 
 
43
  msgid "Download"
44
  msgstr "Télécharger"
45
 
46
- #: google-sitemap-plugin.php:98
47
  #, php-format
48
  msgid "Install %s"
49
  msgstr "Installer %s"
50
 
51
- #: google-sitemap-plugin.php:98
52
  msgid "Install now from wordpress.org"
53
  msgstr "Installer maintenant de wordpress.org"
54
 
55
- #: google-sitemap-plugin.php:100
56
- #, fuzzy
57
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill out the contact form on our website"
58
- msgstr "Si vous avez des questions, s'il vous plaît contactez-nous via plugin@bestwebsoft.com ou remplissez notre formulaire de contact sur notre site"
59
 
60
- #: google-sitemap-plugin.php:111
61
  msgid "BWS Plugins"
62
  msgstr "Plugins BWS"
63
 
64
- #: google-sitemap-plugin.php:112
65
  msgid "Google Sitemap Options"
66
  msgstr "Options de Google Sitemap"
67
 
68
- #: google-sitemap-plugin.php:112
69
  msgid "Google Sitemap"
70
  msgstr "Google Sitemap"
71
 
72
- #: google-sitemap-plugin.php:223
73
- #: google-sitemap-plugin.php:298
74
  #, fuzzy
75
  msgid "Your Sitemap file is created in the site root directory."
76
  msgstr "Votre fichier sitemap est créé dans le répertoire racine du site. "
77
 
78
- #: google-sitemap-plugin.php:229
79
  msgid "Options saved."
80
  msgstr "Options enregistrées !!"
81
 
82
- #: google-sitemap-plugin.php:289
83
  msgid "Google Sitemap options"
84
  msgstr "Google Sitemap options de"
85
 
86
- #: google-sitemap-plugin.php:294
87
  #, fuzzy
88
  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."
89
  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."
90
 
91
- #: google-sitemap-plugin.php:302
92
- #: google-sitemap-plugin.php:304
93
  #, fuzzy
94
  msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
95
  msgstr "Si vous ne voulez pas ajouter automatiquement ce fichier vous pouvez passer par"
96
 
97
- #: google-sitemap-plugin.php:302
98
- #: google-sitemap-plugin.php:304
99
  msgid "this"
100
  msgstr "cela"
101
 
102
- #: google-sitemap-plugin.php:302
103
- #: google-sitemap-plugin.php:304
104
  #, fuzzy
105
  msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
106
  msgstr "lien, connectez-vous, sélectionnez le site nécessaire, sélectionnez 'Sitemaps' et tapez dans le champ nécessaire"
107
 
108
- #: google-sitemap-plugin.php:307
109
  #, fuzzy
110
- msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically"
111
  msgstr "Cet hébergement ne supporte pas CURL, de sorte que vous ne pouvez pas ajouter fichier sitemap automatiquement"
112
 
113
- #: google-sitemap-plugin.php:316
114
  #, fuzzy
115
  msgid "I want to create a new sitemap file or update the existing one"
116
  msgstr "Je tiens à ajouter le chemin fichier sitemap dans le fichier robots.txt"
117
 
118
- #: google-sitemap-plugin.php:322
119
- #: google-sitemap-plugin.php:329
120
  msgid "I want to add sitemap file path in robots.txt"
121
  msgstr "Je tiens à ajouter le chemin fichier sitemap dans le fichier robots.txt"
122
 
123
- #: google-sitemap-plugin.php:323
124
  msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
125
  msgstr ""
126
 
127
- #: google-sitemap-plugin.php:334
128
  #, fuzzy
129
  msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
130
  msgstr "S'il vous plaît choisir les types de postes nécessaires afin d'ajouter des liens vers eux dans le sitemap:"
131
 
132
- #: google-sitemap-plugin.php:347
133
  #, fuzzy
134
  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."
135
  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."
136
 
137
- #: google-sitemap-plugin.php:351
138
  msgid "Settings for remote work with google webmaster tools"
139
  msgstr "Réglages pour le travail à distance avec Google Webmaster Tools"
140
 
141
- #: google-sitemap-plugin.php:353
142
  msgid "Login"
143
  msgstr "Connexion"
144
 
145
- #: google-sitemap-plugin.php:354
146
  msgid "Password"
147
  msgstr "PASSWORD"
148
 
149
- #: google-sitemap-plugin.php:355
150
  #, fuzzy
151
  msgid "I want to add this site to Google Webmaster Tools"
152
  msgstr "Je tiens à ajouter ce site à google webmaster outils de l'"
153
 
154
- #: google-sitemap-plugin.php:356
155
  #, fuzzy
156
  msgid "I want to delete this site from Google Webmaster Tools"
157
  msgstr "Je veux supprimer ce site à partir de Google Webmaster Tools"
158
 
159
- #: google-sitemap-plugin.php:357
160
- #: google-sitemap-plugin.php:488
161
  #, fuzzy
162
  msgid "I want to get info about this site in Google Webmaster Tools"
163
  msgstr "Je veux obtenir des informations sur ce site dans Google Webmaster Tools"
164
 
165
- #: google-sitemap-plugin.php:364
166
  msgid "Save Changes"
167
  msgstr "Enregistrer les modifications"
168
 
169
- #: google-sitemap-plugin.php:372
170
  #, fuzzy
171
  msgid "Please enter your login and password"
172
  msgstr "Vous devez entrez votre identifiant et mot de passe"
173
 
174
- #: google-sitemap-plugin.php:375
175
  #, fuzzy
176
  msgid "You should choose at least one action"
177
  msgstr "Vous devez choisir au moins une action"
178
 
179
- #: google-sitemap-plugin.php:405
180
  #, fuzzy
181
  msgid "Login and password do not match. Please try again"
182
  msgstr "Login et mot de passe n\\'t correspondance, réessayer, s'il vous plaît"
183
 
184
- #: google-sitemap-plugin.php:490
185
  #, fuzzy
186
  msgid "This site is not added to the Google Webmaster Tools account"
187
  msgstr "Ce site n'est pas ajouté au compte Google Webmaster Tools"
188
 
189
- #: google-sitemap-plugin.php:511
190
  #, fuzzy
191
  msgid "Site URL:"
192
  msgstr "URL du site: "
193
 
194
- #: google-sitemap-plugin.php:512
195
  #, fuzzy
196
  msgid "Site verification:"
197
  msgstr "Vérification sur place: "
198
 
199
- #: google-sitemap-plugin.php:514
200
  #, fuzzy
201
  msgid "verified"
202
  msgstr "verificated"
203
 
204
- #: google-sitemap-plugin.php:516
205
  #, fuzzy
206
  msgid "not verified"
207
  msgstr "non verificated"
208
 
209
- #: google-sitemap-plugin.php:517
210
  #, fuzzy
211
  msgid "Sitemap file:"
212
  msgstr "Plan du site déposer: "
213
 
214
- #: google-sitemap-plugin.php:519
215
  msgid "added"
216
  msgstr "ajouté"
217
 
218
- #: google-sitemap-plugin.php:521
219
  msgid "not added"
220
  msgstr "pas ajoutées"
221
 
 
 
 
 
 
 
 
 
222
  #~ msgid "I want to create new / update manualy sitemap file"
223
  #~ msgstr ""
224
  #~ "Je veux créer une nouvelle / mise à jour manuellement fichier sitemap"
2
  msgstr ""
3
  "Project-Id-Version: google-sitemap-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-03 14:46+0300\n"
6
+ "PO-Revision-Date: 2013-06-03 14:46+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:101
20
+ #, fuzzy
21
+ msgid "Pro plugins"
22
+ msgstr "Plugins BWS"
23
+
24
+ #: google-sitemap-plugin.php:104
25
+ #: google-sitemap-plugin.php:130
26
  msgid "Activated plugins"
27
  msgstr "Plugins activés"
28
 
29
+ #: google-sitemap-plugin.php:106
30
+ #: google-sitemap-plugin.php:114
31
+ #: google-sitemap-plugin.php:122
32
+ #: google-sitemap-plugin.php:132
33
+ #: google-sitemap-plugin.php:140
34
+ #: google-sitemap-plugin.php:148
35
  msgid "Read more"
36
  msgstr "Lire la suite"
37
 
38
+ #: google-sitemap-plugin.php:106
39
+ #: google-sitemap-plugin.php:132
40
+ #: google-sitemap-plugin.php:649
41
  msgid "Settings"
42
  msgstr "Paramètres"
43
 
44
+ #: google-sitemap-plugin.php:112
45
+ #: google-sitemap-plugin.php:138
46
  msgid "Installed plugins"
47
  msgstr "Plugins installés"
48
 
49
+ #: google-sitemap-plugin.php:120
50
+ #: google-sitemap-plugin.php:146
51
  msgid "Recommended plugins"
52
  msgstr "Plugins recommandés"
53
 
54
+ #: google-sitemap-plugin.php:122
55
+ msgid "Purchase"
56
+ msgstr ""
57
+
58
+ #: google-sitemap-plugin.php:127
59
+ #, fuzzy
60
+ msgid "Free plugins"
61
+ msgstr "Plugins recommandés"
62
+
63
+ #: google-sitemap-plugin.php:148
64
  msgid "Download"
65
  msgstr "Télécharger"
66
 
67
+ #: google-sitemap-plugin.php:148
68
  #, php-format
69
  msgid "Install %s"
70
  msgstr "Installer %s"
71
 
72
+ #: google-sitemap-plugin.php:148
73
  msgid "Install now from wordpress.org"
74
  msgstr "Installer maintenant de wordpress.org"
75
 
76
+ #: google-sitemap-plugin.php:153
77
+ msgid "If you have any questions, please contact us via"
78
+ msgstr ""
 
79
 
80
+ #: google-sitemap-plugin.php:161
81
  msgid "BWS Plugins"
82
  msgstr "Plugins BWS"
83
 
84
+ #: google-sitemap-plugin.php:162
85
  msgid "Google Sitemap Options"
86
  msgstr "Options de Google Sitemap"
87
 
88
+ #: google-sitemap-plugin.php:162
89
  msgid "Google Sitemap"
90
  msgstr "Google Sitemap"
91
 
92
+ #: google-sitemap-plugin.php:273
93
+ #: google-sitemap-plugin.php:348
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:279
99
  msgid "Options saved."
100
  msgstr "Options enregistrées !!"
101
 
102
+ #: google-sitemap-plugin.php:339
103
  msgid "Google Sitemap options"
104
  msgstr "Google Sitemap options de"
105
 
106
+ #: google-sitemap-plugin.php:344
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:352
112
+ #: google-sitemap-plugin.php:354
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:352
118
+ #: google-sitemap-plugin.php:354
119
  msgid "this"
120
  msgstr "cela"
121
 
122
+ #: google-sitemap-plugin.php:352
123
+ #: google-sitemap-plugin.php:354
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:357
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:366
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:372
139
+ #: google-sitemap-plugin.php:379
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:373
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:384
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:397
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:401
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:403
162
  msgid "Login"
163
  msgstr "Connexion"
164
 
165
+ #: google-sitemap-plugin.php:404
166
  msgid "Password"
167
  msgstr "PASSWORD"
168
 
169
+ #: google-sitemap-plugin.php:405
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:406
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:407
180
+ #: google-sitemap-plugin.php:538
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:414
186
  msgid "Save Changes"
187
  msgstr "Enregistrer les modifications"
188
 
189
+ #: google-sitemap-plugin.php:422
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:425
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:455
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:540
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:561
210
  #, fuzzy
211
  msgid "Site URL:"
212
  msgstr "URL du site: "
213
 
214
+ #: google-sitemap-plugin.php:562
215
  #, fuzzy
216
  msgid "Site verification:"
217
  msgstr "Vérification sur place: "
218
 
219
+ #: google-sitemap-plugin.php:564
220
  #, fuzzy
221
  msgid "verified"
222
  msgstr "verificated"
223
 
224
+ #: google-sitemap-plugin.php:566
225
  #, fuzzy
226
  msgid "not verified"
227
  msgstr "non verificated"
228
 
229
+ #: google-sitemap-plugin.php:567
230
  #, fuzzy
231
  msgid "Sitemap file:"
232
  msgstr "Plan du site déposer: "
233
 
234
+ #: google-sitemap-plugin.php:569
235
  msgid "added"
236
  msgstr "ajouté"
237
 
238
+ #: google-sitemap-plugin.php:571
239
  msgid "not added"
240
  msgstr "pas ajoutées"
241
 
242
+ #, fuzzy
243
+ #~ msgid ""
244
+ #~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
245
+ #~ "or fill out the contact form on our website"
246
+ #~ msgstr ""
247
+ #~ "Si vous avez des questions, s'il vous plaît contactez-nous via "
248
+ #~ "plugin@bestwebsoft.com ou remplissez notre formulaire de contact sur "
249
+ #~ "notre site"
250
  #~ msgid "I want to create new / update manualy sitemap file"
251
  #~ msgstr ""
252
  #~ "Je veux créer une nouvelle / mise à jour manuellement fichier sitemap"
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-04-18 09:44+0300\n"
6
- "PO-Revision-Date: 2013-04-18 09:44+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,188 +16,213 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-sitemap-plugin.php:80
 
 
 
 
 
20
  msgid "Activated plugins"
21
  msgstr "Активированные плагины"
22
 
23
- #: google-sitemap-plugin.php:82
24
- #: google-sitemap-plugin.php:90
25
- #: google-sitemap-plugin.php:98
 
 
 
26
  msgid "Read more"
27
  msgstr "Подробнее..."
28
 
29
- #: google-sitemap-plugin.php:82
30
- #: google-sitemap-plugin.php:599
 
31
  msgid "Settings"
32
  msgstr "Настройки"
33
 
34
- #: google-sitemap-plugin.php:88
 
35
  msgid "Installed plugins"
36
  msgstr "Установленные плагины"
37
 
38
- #: google-sitemap-plugin.php:96
 
39
  msgid "Recommended plugins"
40
  msgstr "Рекомендованные к установке плагины"
41
 
42
- #: google-sitemap-plugin.php:98
 
 
 
 
 
 
 
 
43
  msgid "Download"
44
  msgstr "Скачать"
45
 
46
- #: google-sitemap-plugin.php:98
47
  #, php-format
48
  msgid "Install %s"
49
  msgstr "Установлено %s"
50
 
51
- #: google-sitemap-plugin.php:98
52
  msgid "Install now from wordpress.org"
53
  msgstr "Установить с wordpress.org"
54
 
55
- #: google-sitemap-plugin.php:100
56
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill out the contact form on our website"
57
- msgstr "Если у вас есть какие-то вопросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
58
 
59
- #: google-sitemap-plugin.php:111
60
  msgid "BWS Plugins"
61
  msgstr "Плагины BWS"
62
 
63
- #: google-sitemap-plugin.php:112
64
  msgid "Google Sitemap Options"
65
  msgstr "Опции карты сайта Google"
66
 
67
- #: google-sitemap-plugin.php:112
68
  msgid "Google Sitemap"
69
  msgstr "Карта сайта Google"
70
 
71
- #: google-sitemap-plugin.php:223
72
- #: google-sitemap-plugin.php:298
73
  msgid "Your Sitemap file is created in the site root directory."
74
  msgstr "Карта сайта для вашего сайта создана в корне основной директории."
75
 
76
- #: google-sitemap-plugin.php:229
77
  msgid "Options saved."
78
  msgstr "Опции сохранены."
79
 
80
- #: google-sitemap-plugin.php:289
81
  msgid "Google Sitemap options"
82
  msgstr "Опции карты сайта Google"
83
 
84
- #: google-sitemap-plugin.php:294
85
  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."
86
  msgstr "Карта сайта уже существует. Если вы хотите изменить ее на новую карту сайта, выберите соответствующее действие внизу. Все остальные действия перезапишут существующий файл."
87
 
88
- #: google-sitemap-plugin.php:302
89
- #: google-sitemap-plugin.php:304
90
  msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
91
  msgstr "Если вы не хотите добавить файл карты сайта автоматически в Google Webmaster Tools, Вы можете сделать это через"
92
 
93
- #: google-sitemap-plugin.php:302
94
- #: google-sitemap-plugin.php:304
95
  msgid "this"
96
  msgstr "эту"
97
 
98
- #: google-sitemap-plugin.php:302
99
- #: google-sitemap-plugin.php:304
100
  msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
101
  msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
102
 
103
- #: google-sitemap-plugin.php:307
104
  msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically."
105
  msgstr "Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить карту сайта в Google аккаунт автоматически."
106
 
107
- #: google-sitemap-plugin.php:316
108
  msgid "I want to create a new sitemap file or update the existing one"
109
  msgstr "Я хочу создать новую или обновить существующую карту сайта"
110
 
111
- #: google-sitemap-plugin.php:322
112
- #: google-sitemap-plugin.php:329
113
  msgid "I want to add sitemap file path in robots.txt"
114
  msgstr "Я хочу добавить карту сайта в robots.txt"
115
 
116
- #: google-sitemap-plugin.php:323
117
  msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
118
  msgstr "Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить карту сайта в robots.txt"
119
 
120
- #: google-sitemap-plugin.php:334
121
  msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
122
  msgstr "Пожалуйста, выберите те типы постов, ссылки на которые будут добавлены в карту сайта:"
123
 
124
- #: google-sitemap-plugin.php:347
125
  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."
126
  msgstr "Введите сюда свой логин и пароль для Google аккаунта, чтобы иметь возможность добавлять или удалять сайт и карту сайта автоматически в ваш аккаунт или же получить информацию об этом сайте из Google Webmaster Tools."
127
 
128
- #: google-sitemap-plugin.php:351
129
  msgid "Settings for remote work with google webmaster tools"
130
  msgstr "Настройки для удаленной работы с google webmaster tools"
131
 
132
- #: google-sitemap-plugin.php:353
133
  msgid "Login"
134
  msgstr "Логин"
135
 
136
- #: google-sitemap-plugin.php:354
137
  msgid "Password"
138
  msgstr "Пароль"
139
 
140
- #: google-sitemap-plugin.php:355
141
  msgid "I want to add this site to Google Webmaster Tools"
142
  msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
143
 
144
- #: google-sitemap-plugin.php:356
145
  msgid "I want to delete this site from Google Webmaster Tools"
146
  msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
147
 
148
- #: google-sitemap-plugin.php:357
149
- #: google-sitemap-plugin.php:488
150
  msgid "I want to get info about this site in Google Webmaster Tools"
151
  msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
152
 
153
- #: google-sitemap-plugin.php:364
154
  msgid "Save Changes"
155
  msgstr "Сохранить изменения"
156
 
157
- #: google-sitemap-plugin.php:372
158
  msgid "Please enter your login and password"
159
  msgstr "Вы должны ввести логин и пароль"
160
 
161
- #: google-sitemap-plugin.php:375
162
  msgid "You should choose at least one action"
163
  msgstr "Вы должны выбрать одно из действий"
164
 
165
- #: google-sitemap-plugin.php:405
166
  msgid "Login and password do not match. Please try again"
167
  msgstr "Логин и пароль введены неправильно, попробуйте еще раз, пожалуйста"
168
 
169
- #: google-sitemap-plugin.php:490
170
  msgid "This site is not added to the Google Webmaster Tools account"
171
  msgstr "Данный сайт не добавлен в аккаунт Google Webmaster Tools"
172
 
173
- #: google-sitemap-plugin.php:511
174
  msgid "Site URL:"
175
  msgstr "Урл сайта:"
176
 
177
- #: google-sitemap-plugin.php:512
178
  msgid "Site verification:"
179
  msgstr "Верификация сайта:"
180
 
181
- #: google-sitemap-plugin.php:514
182
  msgid "verified"
183
  msgstr "верифицрован"
184
 
185
- #: google-sitemap-plugin.php:516
186
  msgid "not verified"
187
  msgstr "не верефицирован"
188
 
189
- #: google-sitemap-plugin.php:517
190
  msgid "Sitemap file:"
191
  msgstr "Файл карты сайта:"
192
 
193
- #: google-sitemap-plugin.php:519
194
  msgid "added"
195
  msgstr "добавлен"
196
 
197
- #: google-sitemap-plugin.php:521
198
  msgid "not added"
199
  msgstr "не добавлен"
200
 
 
 
 
 
 
 
201
  #~ msgid "I want to create new / update manualy sitemap file"
202
  #~ msgstr "Я хочу создать новую / обновить существующую карту сайта"
203
  #~ msgid "Info about this site in google webmaster tools"
2
  msgstr ""
3
  "Project-Id-Version: google-sitemap-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-03 14:46+0300\n"
6
+ "PO-Revision-Date: 2013-06-03 14:47+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:101
20
+ msgid "Pro plugins"
21
+ msgstr "Pro плагины"
22
+
23
+ #: google-sitemap-plugin.php:104
24
+ #: google-sitemap-plugin.php:130
25
  msgid "Activated plugins"
26
  msgstr "Активированные плагины"
27
 
28
+ #: google-sitemap-plugin.php:106
29
+ #: google-sitemap-plugin.php:114
30
+ #: google-sitemap-plugin.php:122
31
+ #: google-sitemap-plugin.php:132
32
+ #: google-sitemap-plugin.php:140
33
+ #: google-sitemap-plugin.php:148
34
  msgid "Read more"
35
  msgstr "Подробнее..."
36
 
37
+ #: google-sitemap-plugin.php:106
38
+ #: google-sitemap-plugin.php:132
39
+ #: google-sitemap-plugin.php:649
40
  msgid "Settings"
41
  msgstr "Настройки"
42
 
43
+ #: google-sitemap-plugin.php:112
44
+ #: google-sitemap-plugin.php:138
45
  msgid "Installed plugins"
46
  msgstr "Установленные плагины"
47
 
48
+ #: google-sitemap-plugin.php:120
49
+ #: google-sitemap-plugin.php:146
50
  msgid "Recommended plugins"
51
  msgstr "Рекомендованные к установке плагины"
52
 
53
+ #: google-sitemap-plugin.php:122
54
+ msgid "Purchase"
55
+ msgstr "Купить"
56
+
57
+ #: google-sitemap-plugin.php:127
58
+ msgid "Free plugins"
59
+ msgstr "Бесплатные плагины"
60
+
61
+ #: google-sitemap-plugin.php:148
62
  msgid "Download"
63
  msgstr "Скачать"
64
 
65
+ #: google-sitemap-plugin.php:148
66
  #, php-format
67
  msgid "Install %s"
68
  msgstr "Установлено %s"
69
 
70
+ #: google-sitemap-plugin.php:148
71
  msgid "Install now from wordpress.org"
72
  msgstr "Установить с wordpress.org"
73
 
74
+ #: google-sitemap-plugin.php:153
75
+ msgid "If you have any questions, please contact us via"
76
+ msgstr "Если у вас есть какие-то вопросы, обращайтесь на"
77
 
78
+ #: google-sitemap-plugin.php:161
79
  msgid "BWS Plugins"
80
  msgstr "Плагины BWS"
81
 
82
+ #: google-sitemap-plugin.php:162
83
  msgid "Google Sitemap Options"
84
  msgstr "Опции карты сайта Google"
85
 
86
+ #: google-sitemap-plugin.php:162
87
  msgid "Google Sitemap"
88
  msgstr "Карта сайта Google"
89
 
90
+ #: google-sitemap-plugin.php:273
91
+ #: google-sitemap-plugin.php:348
92
  msgid "Your Sitemap file is created in the site root directory."
93
  msgstr "Карта сайта для вашего сайта создана в корне основной директории."
94
 
95
+ #: google-sitemap-plugin.php:279
96
  msgid "Options saved."
97
  msgstr "Опции сохранены."
98
 
99
+ #: google-sitemap-plugin.php:339
100
  msgid "Google Sitemap options"
101
  msgstr "Опции карты сайта Google"
102
 
103
+ #: google-sitemap-plugin.php:344
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:352
108
+ #: google-sitemap-plugin.php:354
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:352
113
+ #: google-sitemap-plugin.php:354
114
  msgid "this"
115
  msgstr "эту"
116
 
117
+ #: google-sitemap-plugin.php:352
118
+ #: google-sitemap-plugin.php:354
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:357
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:366
127
  msgid "I want to create a new sitemap file or update the existing one"
128
  msgstr "Я хочу создать новую или обновить существующую карту сайта"
129
 
130
+ #: google-sitemap-plugin.php:372
131
+ #: google-sitemap-plugin.php:379
132
  msgid "I want to add sitemap file path in robots.txt"
133
  msgstr "Я хочу добавить карту сайта в robots.txt"
134
 
135
+ #: google-sitemap-plugin.php:373
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:384
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:397
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:401
148
  msgid "Settings for remote work with google webmaster tools"
149
  msgstr "Настройки для удаленной работы с google webmaster tools"
150
 
151
+ #: google-sitemap-plugin.php:403
152
  msgid "Login"
153
  msgstr "Логин"
154
 
155
+ #: google-sitemap-plugin.php:404
156
  msgid "Password"
157
  msgstr "Пароль"
158
 
159
+ #: google-sitemap-plugin.php:405
160
  msgid "I want to add this site to Google Webmaster Tools"
161
  msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
162
 
163
+ #: google-sitemap-plugin.php:406
164
  msgid "I want to delete this site from Google Webmaster Tools"
165
  msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
166
 
167
+ #: google-sitemap-plugin.php:407
168
+ #: google-sitemap-plugin.php:538
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:414
173
  msgid "Save Changes"
174
  msgstr "Сохранить изменения"
175
 
176
+ #: google-sitemap-plugin.php:422
177
  msgid "Please enter your login and password"
178
  msgstr "Вы должны ввести логин и пароль"
179
 
180
+ #: google-sitemap-plugin.php:425
181
  msgid "You should choose at least one action"
182
  msgstr "Вы должны выбрать одно из действий"
183
 
184
+ #: google-sitemap-plugin.php:455
185
  msgid "Login and password do not match. Please try again"
186
  msgstr "Логин и пароль введены неправильно, попробуйте еще раз, пожалуйста"
187
 
188
+ #: google-sitemap-plugin.php:540
189
  msgid "This site is not added to the Google Webmaster Tools account"
190
  msgstr "Данный сайт не добавлен в аккаунт Google Webmaster Tools"
191
 
192
+ #: google-sitemap-plugin.php:561
193
  msgid "Site URL:"
194
  msgstr "Урл сайта:"
195
 
196
+ #: google-sitemap-plugin.php:562
197
  msgid "Site verification:"
198
  msgstr "Верификация сайта:"
199
 
200
+ #: google-sitemap-plugin.php:564
201
  msgid "verified"
202
  msgstr "верифицрован"
203
 
204
+ #: google-sitemap-plugin.php:566
205
  msgid "not verified"
206
  msgstr "не верефицирован"
207
 
208
+ #: google-sitemap-plugin.php:567
209
  msgid "Sitemap file:"
210
  msgstr "Файл карты сайта:"
211
 
212
+ #: google-sitemap-plugin.php:569
213
  msgid "added"
214
  msgstr "добавлен"
215
 
216
+ #: google-sitemap-plugin.php:571
217
  msgid "not added"
218
  msgstr "не добавлен"
219
 
220
+ #~ msgid ""
221
+ #~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
222
+ #~ "or fill out the contact form on our website"
223
+ #~ msgstr ""
224
+ #~ "Если у вас есть какие-то вопросы, обращайтесь на plugin@bestwebsoft.com "
225
+ #~ "или заполните контактную форму на нашем сайте"
226
  #~ msgid "I want to create new / update manualy sitemap file"
227
  #~ msgstr "Я хочу создать новую / обновить существующую карту сайта"
228
  #~ msgid "Info about this site in google webmaster tools"
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-04-18 09:39+0300\n"
6
- "PO-Revision-Date: 2013-04-18 09:39+0300\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Diana <diana@wpdiscounts.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,209 +17,236 @@ 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:80
 
 
 
 
 
 
21
  msgid "Activated plugins"
22
  msgstr "Aktivirani plaginovi "
23
 
24
- #: google-sitemap-plugin.php:82
25
- #: google-sitemap-plugin.php:90
26
- #: google-sitemap-plugin.php:98
 
 
 
27
  msgid "Read more"
28
  msgstr "Procitaj vise"
29
 
30
- #: google-sitemap-plugin.php:82
31
- #: google-sitemap-plugin.php:599
 
32
  msgid "Settings"
33
  msgstr "Podesavanja"
34
 
35
- #: google-sitemap-plugin.php:88
 
36
  msgid "Installed plugins"
37
  msgstr "Instalirani plaginovi"
38
 
39
- #: google-sitemap-plugin.php:96
 
40
  msgid "Recommended plugins"
41
  msgstr "Preporuceni plaginovi"
42
 
43
- #: google-sitemap-plugin.php:98
 
 
 
 
 
 
 
 
 
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
- #: google-sitemap-plugin.php:98
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Instaliranje %s"
51
 
52
- #: google-sitemap-plugin.php:98
53
  msgid "Install now from wordpress.org"
54
  msgstr "Instaliraj sada sa wordpress.org"
55
 
56
- #: google-sitemap-plugin.php:100
57
- #, fuzzy
58
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill out the contact form on our website"
59
- msgstr "Ukoliko imate bilo kakva pitanja, molimo vas kontaktirajte nas preko plugin@bestwebsoft.com ili popunite nasu kontakt formu na nasem sajtu"
60
 
61
- #: google-sitemap-plugin.php:111
62
  msgid "BWS Plugins"
63
  msgstr "BWS Plugins"
64
 
65
- #: google-sitemap-plugin.php:112
66
  msgid "Google Sitemap Options"
67
  msgstr "Google Sitemap Opcije"
68
 
69
- #: google-sitemap-plugin.php:112
70
  msgid "Google Sitemap"
71
  msgstr "Google Sitemap"
72
 
73
- #: google-sitemap-plugin.php:223
74
- #: google-sitemap-plugin.php:298
75
  #, fuzzy
76
  msgid "Your Sitemap file is created in the site root directory."
77
  msgstr "Vas sitemap fajt je kreiran u root direktorijumu sajta"
78
 
79
- #: google-sitemap-plugin.php:229
80
  msgid "Options saved."
81
  msgstr "Opcije sacuvane."
82
 
83
- #: google-sitemap-plugin.php:289
84
  msgid "Google Sitemap options"
85
  msgstr "Google Sitemap opcije"
86
 
87
- #: google-sitemap-plugin.php:294
88
  #, fuzzy
89
  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."
90
  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."
91
 
92
- #: google-sitemap-plugin.php:302
93
- #: google-sitemap-plugin.php:304
94
  #, fuzzy
95
  msgid "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using"
96
  msgstr "Ukoliko ne zelite da dodate ovaj fajl automatski mozete nastaviti "
97
 
98
- #: google-sitemap-plugin.php:302
99
- #: google-sitemap-plugin.php:304
100
  msgid "this"
101
  msgstr "ovaj"
102
 
103
- #: google-sitemap-plugin.php:302
104
- #: google-sitemap-plugin.php:304
105
  #, fuzzy
106
  msgid "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field"
107
  msgstr "link, uloguj se, izaberi neophodan sajt, izaberi 'Sitemaps' i kucaj u neophodnom polju"
108
 
109
- #: google-sitemap-plugin.php:307
110
  #, fuzzy
111
- msgid "This hosting does not support сURL, so you cannot add a sitemap file automatically"
112
  msgstr "Ovaj hosting ne podrzava CURL, tako da ne mozete da dodate Sitemap fajl automatski"
113
 
114
- #: google-sitemap-plugin.php:316
115
  #, fuzzy
116
  msgid "I want to create a new sitemap file or update the existing one"
117
  msgstr "Zelim da dodam sitemap fajl putanju u robots.txt"
118
 
119
- #: google-sitemap-plugin.php:322
120
- #: google-sitemap-plugin.php:329
121
  msgid "I want to add sitemap file path in robots.txt"
122
  msgstr "Zelim da dodam sitemap fajl putanju u robots.txt"
123
 
124
- #: google-sitemap-plugin.php:323
125
  msgid "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt"
126
  msgstr ""
127
 
128
- #: google-sitemap-plugin.php:334
129
  #, fuzzy
130
  msgid "Please choose the necessary post types the links to which are to be added to the sitemap:"
131
  msgstr "Molim izaberite neohodne tipove postova da bi dodali linkove do njih u sitemap-u:"
132
 
133
- #: google-sitemap-plugin.php:347
134
  #, fuzzy
135
  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."
136
  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."
137
 
138
- #: google-sitemap-plugin.php:351
139
  msgid "Settings for remote work with google webmaster tools"
140
  msgstr "Podesavanja za rad sa daljine sa google webmaster tools"
141
 
142
- #: google-sitemap-plugin.php:353
143
  msgid "Login"
144
  msgstr "Korisnicko ime"
145
 
146
- #: google-sitemap-plugin.php:354
147
  msgid "Password"
148
  msgstr "Lozinka"
149
 
150
- #: google-sitemap-plugin.php:355
151
  #, fuzzy
152
  msgid "I want to add this site to Google Webmaster Tools"
153
  msgstr "Zelim da dodam ovaj sajt u google webmaster tools"
154
 
155
- #: google-sitemap-plugin.php:356
156
  #, fuzzy
157
  msgid "I want to delete this site from Google Webmaster Tools"
158
  msgstr "Zelim da izbrisem ovaj sajt sa google webmaster tools"
159
 
160
- #: google-sitemap-plugin.php:357
161
- #: google-sitemap-plugin.php:488
162
  #, fuzzy
163
  msgid "I want to get info about this site in Google Webmaster Tools"
164
  msgstr "Zelim da dobijem informacije o ovom sajtu na google webmaster tools"
165
 
166
- #: google-sitemap-plugin.php:364
167
  msgid "Save Changes"
168
  msgstr "Sacuvaj izmene"
169
 
170
- #: google-sitemap-plugin.php:372
171
  #, fuzzy
172
  msgid "Please enter your login and password"
173
  msgstr "Morate da unesete korisnicko ime i lozinku"
174
 
175
- #: google-sitemap-plugin.php:375
176
  #, fuzzy
177
  msgid "You should choose at least one action"
178
  msgstr "Morate odabrati najmanje jednu radnju "
179
 
180
- #: google-sitemap-plugin.php:405
181
  #, fuzzy
182
  msgid "Login and password do not match. Please try again"
183
  msgstr "Korisnicko ime i lozinka se ne poklapaju, molim pokusajte ponovo "
184
 
185
- #: google-sitemap-plugin.php:490
186
  #, fuzzy
187
  msgid "This site is not added to the Google Webmaster Tools account"
188
  msgstr "Ovaj sajt nije dodat na google webmaster tools nalog"
189
 
190
- #: google-sitemap-plugin.php:511
191
  #, fuzzy
192
  msgid "Site URL:"
193
  msgstr "Url sajta:"
194
 
195
- #: google-sitemap-plugin.php:512
196
  #, fuzzy
197
  msgid "Site verification:"
198
  msgstr "Potvrda sajta:"
199
 
200
- #: google-sitemap-plugin.php:514
201
  #, fuzzy
202
  msgid "verified"
203
  msgstr "potvrdjeno"
204
 
205
- #: google-sitemap-plugin.php:516
206
  #, fuzzy
207
  msgid "not verified"
208
  msgstr "nije potvrdjeno"
209
 
210
- #: google-sitemap-plugin.php:517
211
  #, fuzzy
212
  msgid "Sitemap file:"
213
  msgstr "Sitemap fajl:"
214
 
215
- #: google-sitemap-plugin.php:519
216
  msgid "added"
217
  msgstr "dodato"
218
 
219
- #: google-sitemap-plugin.php:521
220
  msgid "not added"
221
  msgstr "nije dodato"
222
 
 
 
 
 
 
 
 
223
  #~ msgid "I want to create new / update manualy sitemap file"
224
  #~ msgstr "Zelim da kreiram noc / apdejtujem rucno sitemap fajl"
225
  #~ msgid "Info about this site in google webmaster tools"
2
  msgstr ""
3
  "Project-Id-Version: google-sitemap-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-06-03 14:47+0300\n"
6
+ "PO-Revision-Date: 2013-06-03 14:47+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:101
21
+ #, fuzzy
22
+ msgid "Pro plugins"
23
+ msgstr "BWS Plugins"
24
+
25
+ #: google-sitemap-plugin.php:104
26
+ #: google-sitemap-plugin.php:130
27
  msgid "Activated plugins"
28
  msgstr "Aktivirani plaginovi "
29
 
30
+ #: google-sitemap-plugin.php:106
31
+ #: google-sitemap-plugin.php:114
32
+ #: google-sitemap-plugin.php:122
33
+ #: google-sitemap-plugin.php:132
34
+ #: google-sitemap-plugin.php:140
35
+ #: google-sitemap-plugin.php:148
36
  msgid "Read more"
37
  msgstr "Procitaj vise"
38
 
39
+ #: google-sitemap-plugin.php:106
40
+ #: google-sitemap-plugin.php:132
41
+ #: google-sitemap-plugin.php:649
42
  msgid "Settings"
43
  msgstr "Podesavanja"
44
 
45
+ #: google-sitemap-plugin.php:112
46
+ #: google-sitemap-plugin.php:138
47
  msgid "Installed plugins"
48
  msgstr "Instalirani plaginovi"
49
 
50
+ #: google-sitemap-plugin.php:120
51
+ #: google-sitemap-plugin.php:146
52
  msgid "Recommended plugins"
53
  msgstr "Preporuceni plaginovi"
54
 
55
+ #: google-sitemap-plugin.php:122
56
+ msgid "Purchase"
57
+ msgstr ""
58
+
59
+ #: google-sitemap-plugin.php:127
60
+ #, fuzzy
61
+ msgid "Free plugins"
62
+ msgstr "Preporuceni plaginovi"
63
+
64
+ #: google-sitemap-plugin.php:148
65
  msgid "Download"
66
  msgstr "Download"
67
 
68
+ #: google-sitemap-plugin.php:148
69
  #, php-format
70
  msgid "Install %s"
71
  msgstr "Instaliranje %s"
72
 
73
+ #: google-sitemap-plugin.php:148
74
  msgid "Install now from wordpress.org"
75
  msgstr "Instaliraj sada sa wordpress.org"
76
 
77
+ #: google-sitemap-plugin.php:153
78
+ msgid "If you have any questions, please contact us via"
79
+ msgstr ""
 
80
 
81
+ #: google-sitemap-plugin.php:161
82
  msgid "BWS Plugins"
83
  msgstr "BWS Plugins"
84
 
85
+ #: google-sitemap-plugin.php:162
86
  msgid "Google Sitemap Options"
87
  msgstr "Google Sitemap Opcije"
88
 
89
+ #: google-sitemap-plugin.php:162
90
  msgid "Google Sitemap"
91
  msgstr "Google Sitemap"
92
 
93
+ #: google-sitemap-plugin.php:273
94
+ #: google-sitemap-plugin.php:348
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:279
100
  msgid "Options saved."
101
  msgstr "Opcije sacuvane."
102
 
103
+ #: google-sitemap-plugin.php:339
104
  msgid "Google Sitemap options"
105
  msgstr "Google Sitemap opcije"
106
 
107
+ #: google-sitemap-plugin.php:344
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:352
113
+ #: google-sitemap-plugin.php:354
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:352
119
+ #: google-sitemap-plugin.php:354
120
  msgid "this"
121
  msgstr "ovaj"
122
 
123
+ #: google-sitemap-plugin.php:352
124
+ #: google-sitemap-plugin.php:354
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:357
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:366
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:372
140
+ #: google-sitemap-plugin.php:379
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:373
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:384
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:397
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:401
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:403
163
  msgid "Login"
164
  msgstr "Korisnicko ime"
165
 
166
+ #: google-sitemap-plugin.php:404
167
  msgid "Password"
168
  msgstr "Lozinka"
169
 
170
+ #: google-sitemap-plugin.php:405
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:406
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:407
181
+ #: google-sitemap-plugin.php:538
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:414
187
  msgid "Save Changes"
188
  msgstr "Sacuvaj izmene"
189
 
190
+ #: google-sitemap-plugin.php:422
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:425
196
  #, fuzzy
197
  msgid "You should choose at least one action"
198
  msgstr "Morate odabrati najmanje jednu radnju "
199
 
200
+ #: google-sitemap-plugin.php:455
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:540
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:561
211
  #, fuzzy
212
  msgid "Site URL:"
213
  msgstr "Url sajta:"
214
 
215
+ #: google-sitemap-plugin.php:562
216
  #, fuzzy
217
  msgid "Site verification:"
218
  msgstr "Potvrda sajta:"
219
 
220
+ #: google-sitemap-plugin.php:564
221
  #, fuzzy
222
  msgid "verified"
223
  msgstr "potvrdjeno"
224
 
225
+ #: google-sitemap-plugin.php:566
226
  #, fuzzy
227
  msgid "not verified"
228
  msgstr "nije potvrdjeno"
229
 
230
+ #: google-sitemap-plugin.php:567
231
  #, fuzzy
232
  msgid "Sitemap file:"
233
  msgstr "Sitemap fajl:"
234
 
235
+ #: google-sitemap-plugin.php:569
236
  msgid "added"
237
  msgstr "dodato"
238
 
239
+ #: google-sitemap-plugin.php:571
240
  msgid "not added"
241
  msgstr "nije dodato"
242
 
243
+ #, fuzzy
244
+ #~ msgid ""
245
+ #~ "If you have any questions, please contact us via plugin@bestwebsoft.com "
246
+ #~ "or fill out the contact form on our website"
247
+ #~ msgstr ""
248
+ #~ "Ukoliko imate bilo kakva pitanja, molimo vas kontaktirajte nas preko "
249
+ #~ "plugin@bestwebsoft.com ili popunite nasu kontakt formu na nasem sajtu"
250
  #~ msgid "I want to create new / update manualy sitemap file"
251
  #~ msgstr "Zelim da kreiram noc / apdejtujem rucno sitemap fajl"
252
  #~ msgid "Info about this site in google webmaster tools"
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.1
7
- Stable tag: 2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -15,7 +15,7 @@ This plugin allows you to add a Sitemap file to Google Webmaster Tools.
15
  With the Google Sitemap Plugin you can create and add a Sitemap file to Google Webmaster Tools, and get the info about your site in Google Webmaster Tools.
16
 
17
  <a href="http://wordpress.org/extend/plugins/google-sitemap-plugin/faq/" target="_blank">FAQ</a>
18
- <a href="http://bestwebsoft.com/plugin/google-sitemap-plugin/" target="_blank">Support</a>
19
 
20
  = Translation =
21
 
@@ -25,17 +25,16 @@ 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://bestwebsoft.com/" target="_blank">BWS</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
 
32
- Dear users, our plugins are available for free download. If you have any questions or recommendations regarding the functionality of our plugins (existing options, new options, current issues), please feel free to contact us. Please note that we accept requests in English only. All messages in another languages won't be accepted.
33
 
34
  If you notice any bugs in the plugins, you can notify us about it and we'll investigate and fix the issue then. Your request should contain URL of the website, issues description and WordPress admin panel credentials.
35
  Moreover we can customize the plugin according to your requirements. It's a paid service (as a rule it costs $40, but the price can vary depending on the amount of the necessary changes and their complexity). Please note that we could also include this or that feature (developed for you) in the next release and share with the other users then.
36
  We can fix some things for free for the users who provide translation of our plugin into their native language (this should be a new translation of a certain plugin, you can check available translations on the official plugin page).
37
 
38
-
39
  == Installation ==
40
 
41
  1. Upload the folder `google sitemap` to the directory `/wp-content/plugins/`.
@@ -81,6 +80,9 @@ In the WordPress admin panel please go to "Plugins", find the Google Sitemap Plu
81
 
82
  == Changelog ==
83
 
 
 
 
84
  = V2.7 - 18.04.2013 =
85
  * Update : The English language is updated in the plugin.
86
 
@@ -143,6 +145,9 @@ In the WordPress admin panel please go to "Plugins", find the Google Sitemap Plu
143
 
144
  == Upgrade Notice ==
145
 
 
 
 
146
  = V2.7 =
147
  The English language is updated in the plugin.
148
 
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.1
7
+ Stable tag: 2.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
15
  With the Google Sitemap Plugin you can create and add a Sitemap file to Google Webmaster Tools, and get the info about your site in Google Webmaster Tools.
16
 
17
  <a href="http://wordpress.org/extend/plugins/google-sitemap-plugin/faq/" target="_blank">FAQ</a>
18
+ <a href="http://support.bestwebsoft.com" target="_blank">Support</a>
19
 
20
  = Translation =
21
 
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">BWS</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
 
32
+ Dear users, our plugins are available for free download. If you have any questions or recommendations regarding the functionality of our plugins (existing options, new options, current issues), please feel free to contact us. Please read the documentation and information on our Support Forum carefully before contacting us. Please note that we accept requests in English only. All messages in another languages won't be accepted.
33
 
34
  If you notice any bugs in the plugins, you can notify us about it and we'll investigate and fix the issue then. Your request should contain URL of the website, issues description and WordPress admin panel credentials.
35
  Moreover we can customize the plugin according to your requirements. It's a paid service (as a rule it costs $40, but the price can vary depending on the amount of the necessary changes and their complexity). Please note that we could also include this or that feature (developed for you) in the next release and share with the other users then.
36
  We can fix some things for free for the users who provide translation of our plugin into their native language (this should be a new translation of a certain plugin, you can check available translations on the official plugin page).
37
 
 
38
  == Installation ==
39
 
40
  1. Upload the folder `google sitemap` to the directory `/wp-content/plugins/`.
80
 
81
  == Changelog ==
82
 
83
+ = V2.8 - 03.06.2013 =
84
+ * Update : BWS plugins section is updated.
85
+
86
  = V2.7 - 18.04.2013 =
87
  * Update : The English language is updated in the plugin.
88
 
145
 
146
  == Upgrade Notice ==
147
 
148
+ = V2.8 =
149
+ BWS plugins section is updated.
150
+
151
  = V2.7 =
152
  The English language is updated in the plugin.
153