Version Description
- 29.01.2013 =
- Bugfix : Update option database request bug was fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 2.2 |
Comparing to | |
See all releases |
Code changes from version 2.1 to 2.2
- css/stylesheet.css +0 -0
- google-sitemap-plugin.php +6 -10
- images/icon_16.png +0 -0
- images/icon_16_c.png +0 -0
- images/icon_36.png +0 -0
- images/px.png +0 -0
- languages/sitemap-ar_AR.mo +0 -0
- languages/sitemap-ar_AR.po +34 -34
- languages/sitemap-fr_FR.mo +0 -0
- languages/sitemap-fr_FR.po +86 -55
- languages/sitemap-ru_RU.mo +0 -0
- languages/sitemap-ru_RU.po +34 -34
- readme.txt +7 -1
- screenshot-1.jpg +0 -0
- screenshot-2.jpg +0 -0
- sitemap.xsl +0 -0
css/stylesheet.css
CHANGED
File without changes
|
google-sitemap-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google sitemap plugin
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin to add google sitemap file in google webmaster tools account.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 2.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -153,6 +153,7 @@ if( ! function_exists( 'gglstmp_sitemapcreate' ) ) {
|
|
153 |
}
|
154 |
}
|
155 |
|
|
|
156 |
if( ! function_exists( 'register_gglstmp_settings' ) ) {
|
157 |
function register_gglstmp_settings() {
|
158 |
global $wpmu, $gglstmp_settings;
|
@@ -177,23 +178,18 @@ if( ! function_exists( 'register_gglstmp_settings' ) ) {
|
|
177 |
}
|
178 |
}
|
179 |
|
|
|
180 |
if( ! function_exists( 'delete_gglstmp_settings' ) ) {
|
181 |
function delete_gglstmp_settings() {
|
182 |
delete_option( 'gglstmp_settings' );
|
183 |
}
|
184 |
}
|
185 |
|
|
|
186 |
if( ! function_exists( 'gglstmp_settings_global' ) ) {
|
187 |
function gglstmp_settings_global() {
|
188 |
-
global $wpmu, $gglstmp_settings;
|
189 |
-
|
190 |
register_gglstmp_settings();
|
191 |
-
|
192 |
-
$gglstmp_option_defaults = array( 'page', 'post' );
|
193 |
-
|
194 |
-
$gglstmp_settings = array_merge( $gglstmp_option_defaults, $gglstmp_settings );
|
195 |
-
|
196 |
-
update_option( 'gglstmp_settings', $gglstmp_settings );
|
197 |
}
|
198 |
}
|
199 |
|
@@ -220,7 +216,7 @@ if ( !function_exists ( 'gglstmp_settings_page' ) ) {
|
|
220 |
<div class="wrap">
|
221 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
222 |
<h2><?php _e( "Google Sitemap options", 'sitemap' ); ?></h2>
|
223 |
-
<div class="updated fade" <?php if( ! isset( $_REQUEST['gglstmp_new'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
224 |
<form action="admin.php?page=google-sitemap-plugin.php" method='post' id="gglstmp_auth" name="gglstmp_auth">
|
225 |
<?php //=============================== Creating sitemap file ====================================
|
226 |
if( file_exists( $url_sitemap ) ) {
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin to add google sitemap file in google webmaster tools account.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 2.2
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
153 |
}
|
154 |
}
|
155 |
|
156 |
+
//============================================ Function for register of the plugin settings on register_activation_hook ====================
|
157 |
if( ! function_exists( 'register_gglstmp_settings' ) ) {
|
158 |
function register_gglstmp_settings() {
|
159 |
global $wpmu, $gglstmp_settings;
|
178 |
}
|
179 |
}
|
180 |
|
181 |
+
//============================================ Function for delete of the plugin settings on register_activation_hook ====================
|
182 |
if( ! function_exists( 'delete_gglstmp_settings' ) ) {
|
183 |
function delete_gglstmp_settings() {
|
184 |
delete_option( 'gglstmp_settings' );
|
185 |
}
|
186 |
}
|
187 |
|
188 |
+
//============================================ Function for register of the plugin settings on init core ====================
|
189 |
if( ! function_exists( 'gglstmp_settings_global' ) ) {
|
190 |
function gglstmp_settings_global() {
|
191 |
+
global $wpmu, $gglstmp_settings;
|
|
|
192 |
register_gglstmp_settings();
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
}
|
194 |
}
|
195 |
|
216 |
<div class="wrap">
|
217 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
218 |
<h2><?php _e( "Google Sitemap options", 'sitemap' ); ?></h2>
|
219 |
+
<div class="updated fade" <?php if( ! isset( $_REQUEST['gglstmp_new'] ) || ! isset( $_REQUEST['gglstmp_submit'] ) ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
220 |
<form action="admin.php?page=google-sitemap-plugin.php" method='post' id="gglstmp_auth" name="gglstmp_auth">
|
221 |
<?php //=============================== Creating sitemap file ====================================
|
222 |
if( file_exists( $url_sitemap ) ) {
|
images/icon_16.png
CHANGED
File without changes
|
images/icon_16_c.png
CHANGED
File without changes
|
images/icon_36.png
CHANGED
File without changes
|
images/px.png
CHANGED
File without changes
|
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-01-
|
6 |
-
"PO-Revision-Date: 2013-01-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Albayan Design, hani aladoli <info@albayan-design.com, "
|
9 |
"darkking8@gmail.com>\n"
|
@@ -26,7 +26,7 @@ msgstr "الاضافات المفعلة"
|
|
26 |
msgid "Read more"
|
27 |
msgstr "اقراء المزيد..."
|
28 |
|
29 |
-
#: google-sitemap-plugin.php:81 google-sitemap-plugin.php:
|
30 |
msgid "Settings"
|
31 |
msgstr "الاعدادات"
|
32 |
|
@@ -71,19 +71,19 @@ msgstr "خيارات خرائط جوجل"
|
|
71 |
msgid "Google Sitemap"
|
72 |
msgstr "خرائط جوجل"
|
73 |
|
74 |
-
#: google-sitemap-plugin.php:
|
75 |
msgid "Your sitemap file was created in the root directory of the site. "
|
76 |
msgstr "تم إنشاء ملف Sitemap الخاص بك في الدليل الرئيسي للموقع."
|
77 |
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
msgid "Options saved."
|
80 |
msgstr "تم حفظ الخيارات."
|
81 |
|
82 |
-
#: google-sitemap-plugin.php:
|
83 |
msgid "Google Sitemap options"
|
84 |
msgstr "خيارات خرائط جوجل"
|
85 |
|
86 |
-
#: google-sitemap-plugin.php:
|
87 |
msgid ""
|
88 |
"The sitemap file is already exists. If you want to change it for a new "
|
89 |
"sitemap file check the necessary box below. In other case all actions will "
|
@@ -93,15 +93,15 @@ msgstr ""
|
|
93 |
"المربع ادناه , في حالة اخري جميع التغيرات سوف تعاد كتابتها فوق الملف الموجود "
|
94 |
"مسبقاُ ."
|
95 |
|
96 |
-
#: google-sitemap-plugin.php:
|
97 |
msgid "If you don't want to add this file automatically you may go through"
|
98 |
msgstr "إذا كنت لا ترغب في إضافة هذا الملف تلقائيا قد تذهب من خلال"
|
99 |
|
100 |
-
#: google-sitemap-plugin.php:
|
101 |
msgid "this"
|
102 |
msgstr "هذه"
|
103 |
|
104 |
-
#: google-sitemap-plugin.php:
|
105 |
msgid ""
|
106 |
"link, sign in, select necessary site, select 'Sitemaps' and type in "
|
107 |
"necessary field"
|
@@ -109,28 +109,28 @@ msgstr ""
|
|
109 |
"الرابط , تسجيل الدخول , اختياري الموقع ضاروري , اختيار الخرائط , و املاء "
|
110 |
"الحقول الضرورية"
|
111 |
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
msgid ""
|
114 |
"This hosting doesn't support CURL, so you can't add sitemap file "
|
115 |
"automatically"
|
116 |
msgstr "الاستضافة لا تدعم ( CURL ) اذاُ لا يمكنك اضافة ملف الخريطة تلقائياُ"
|
117 |
|
118 |
-
#: google-sitemap-plugin.php:
|
119 |
#, fuzzy
|
120 |
msgid "I want to create new / update manualy sitemap file"
|
121 |
msgstr "ارغب في انشاء خريطة جديدة"
|
122 |
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
msgid "I want to add sitemap file path in robots.txt"
|
125 |
msgstr "ارغب في اضافة مسار ملف الخريطة في robots.txt"
|
126 |
|
127 |
-
#: google-sitemap-plugin.php:
|
128 |
msgid ""
|
129 |
"Please choose the necessary post types in order to add the links to them in "
|
130 |
"the sitemap:"
|
131 |
msgstr "الرجاء اختيار انواع المواضيع الضارورية لاضافة روابطها في الخريطة :"
|
132 |
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
msgid ""
|
135 |
"Type here your login and password from google webmaster tools account to add "
|
136 |
"or delete site and sitemap file automatically or to get information about "
|
@@ -140,79 +140,79 @@ msgstr ""
|
|
140 |
"للاضافة او حذف ملف الخريطة تلقائياً . او معرفة المعلومات عن هذه الموقع في "
|
141 |
"google webmaster tools"
|
142 |
|
143 |
-
#: google-sitemap-plugin.php:
|
144 |
msgid "Settings for remote work with google webmaster tools"
|
145 |
msgstr "الضبط للعمل عن بعد مع google webmaster tools"
|
146 |
|
147 |
-
#: google-sitemap-plugin.php:
|
148 |
msgid "Login"
|
149 |
msgstr "اسم الدخول"
|
150 |
|
151 |
-
#: google-sitemap-plugin.php:
|
152 |
msgid "Password"
|
153 |
msgstr "الرقم السري"
|
154 |
|
155 |
-
#: google-sitemap-plugin.php:
|
156 |
msgid "I want to add this site to the google webmaster tools"
|
157 |
msgstr "ارغب في اضافة هذه الموقع في google webmaster tools"
|
158 |
|
159 |
-
#: google-sitemap-plugin.php:
|
160 |
msgid "I want to delete this site from google webmaster tools"
|
161 |
msgstr "ارغب في حذف هذه الموقع من google webmaster tools"
|
162 |
|
163 |
-
#: google-sitemap-plugin.php:
|
164 |
msgid "I want to get info about this site in google webmaster tools"
|
165 |
msgstr "ارغب في الحصول علي البيانات هذه الموقع في google webmaster tools"
|
166 |
|
167 |
-
#: google-sitemap-plugin.php:
|
168 |
msgid "Save Changes"
|
169 |
msgstr "حفظ الاعدادات"
|
170 |
|
171 |
-
#: google-sitemap-plugin.php:
|
172 |
msgid "You must enter login and password"
|
173 |
msgstr "يجب عليك كتابة اسم الدخول والرقم السري"
|
174 |
|
175 |
-
#: google-sitemap-plugin.php:
|
176 |
msgid "You must choose at least one action"
|
177 |
msgstr "يجب عليك اختيار عملية واحدة علي الاقل"
|
178 |
|
179 |
-
#: google-sitemap-plugin.php:
|
180 |
msgid "Login and password don\\'t match, try again, please"
|
181 |
msgstr "اسم الدخول والرقم السري // غير مطابقة , الرجاء اعادة المحاولة مرة اخري"
|
182 |
|
183 |
-
#: google-sitemap-plugin.php:
|
184 |
msgid "Info about this site in google webmaster tools"
|
185 |
msgstr "المعلومات عن هذه الموقع في google webmaster tools"
|
186 |
|
187 |
-
#: google-sitemap-plugin.php:
|
188 |
msgid "This site is not added to the google webmaster tools account"
|
189 |
msgstr "هذه الموقع غير مضاف الي حساب google webmaster tools"
|
190 |
|
191 |
-
#: google-sitemap-plugin.php:
|
192 |
msgid "Site url: "
|
193 |
msgstr "رابط الموقع :"
|
194 |
|
195 |
-
#: google-sitemap-plugin.php:
|
196 |
msgid "Site verification: "
|
197 |
msgstr "كود التحقق لهذه الموقع :"
|
198 |
|
199 |
-
#: google-sitemap-plugin.php:
|
200 |
msgid "verificated"
|
201 |
msgstr "التحقق"
|
202 |
|
203 |
-
#: google-sitemap-plugin.php:
|
204 |
msgid "non verificated"
|
205 |
msgstr "لا يوجد تحقق"
|
206 |
|
207 |
-
#: google-sitemap-plugin.php:
|
208 |
msgid "Sitemap file: "
|
209 |
msgstr "ملف الخريطة :"
|
210 |
|
211 |
-
#: google-sitemap-plugin.php:
|
212 |
msgid "added"
|
213 |
msgstr "اضيفت"
|
214 |
|
215 |
-
#: google-sitemap-plugin.php:
|
216 |
msgid "not added"
|
217 |
msgstr "لم تضاف"
|
218 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-29 13:20+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-29 13:20+0200\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Albayan Design, hani aladoli <info@albayan-design.com, "
|
9 |
"darkking8@gmail.com>\n"
|
26 |
msgid "Read more"
|
27 |
msgstr "اقراء المزيد..."
|
28 |
|
29 |
+
#: google-sitemap-plugin.php:81 google-sitemap-plugin.php:522
|
30 |
msgid "Settings"
|
31 |
msgstr "الاعدادات"
|
32 |
|
71 |
msgid "Google Sitemap"
|
72 |
msgstr "خرائط جوجل"
|
73 |
|
74 |
+
#: google-sitemap-plugin.php:206 google-sitemap-plugin.php:227
|
75 |
msgid "Your sitemap file was created in the root directory of the site. "
|
76 |
msgstr "تم إنشاء ملف Sitemap الخاص بك في الدليل الرئيسي للموقع."
|
77 |
|
78 |
+
#: google-sitemap-plugin.php:212
|
79 |
msgid "Options saved."
|
80 |
msgstr "تم حفظ الخيارات."
|
81 |
|
82 |
+
#: google-sitemap-plugin.php:218
|
83 |
msgid "Google Sitemap options"
|
84 |
msgstr "خيارات خرائط جوجل"
|
85 |
|
86 |
+
#: google-sitemap-plugin.php:223
|
87 |
msgid ""
|
88 |
"The sitemap file is already exists. If you want to change it for a new "
|
89 |
"sitemap file check the necessary box below. In other case all actions will "
|
93 |
"المربع ادناه , في حالة اخري جميع التغيرات سوف تعاد كتابتها فوق الملف الموجود "
|
94 |
"مسبقاُ ."
|
95 |
|
96 |
+
#: google-sitemap-plugin.php:230
|
97 |
msgid "If you don't want to add this file automatically you may go through"
|
98 |
msgstr "إذا كنت لا ترغب في إضافة هذا الملف تلقائيا قد تذهب من خلال"
|
99 |
|
100 |
+
#: google-sitemap-plugin.php:230
|
101 |
msgid "this"
|
102 |
msgstr "هذه"
|
103 |
|
104 |
+
#: google-sitemap-plugin.php:230
|
105 |
msgid ""
|
106 |
"link, sign in, select necessary site, select 'Sitemaps' and type in "
|
107 |
"necessary field"
|
109 |
"الرابط , تسجيل الدخول , اختياري الموقع ضاروري , اختيار الخرائط , و املاء "
|
110 |
"الحقول الضرورية"
|
111 |
|
112 |
+
#: google-sitemap-plugin.php:232
|
113 |
msgid ""
|
114 |
"This hosting doesn't support CURL, so you can't add sitemap file "
|
115 |
"automatically"
|
116 |
msgstr "الاستضافة لا تدعم ( CURL ) اذاُ لا يمكنك اضافة ملف الخريطة تلقائياُ"
|
117 |
|
118 |
+
#: google-sitemap-plugin.php:241
|
119 |
#, fuzzy
|
120 |
msgid "I want to create new / update manualy sitemap file"
|
121 |
msgstr "ارغب في انشاء خريطة جديدة"
|
122 |
|
123 |
+
#: google-sitemap-plugin.php:246
|
124 |
msgid "I want to add sitemap file path in robots.txt"
|
125 |
msgstr "ارغب في اضافة مسار ملف الخريطة في robots.txt"
|
126 |
|
127 |
+
#: google-sitemap-plugin.php:250
|
128 |
msgid ""
|
129 |
"Please choose the necessary post types in order to add the links to them in "
|
130 |
"the sitemap:"
|
131 |
msgstr "الرجاء اختيار انواع المواضيع الضارورية لاضافة روابطها في الخريطة :"
|
132 |
|
133 |
+
#: google-sitemap-plugin.php:263
|
134 |
msgid ""
|
135 |
"Type here your login and password from google webmaster tools account to add "
|
136 |
"or delete site and sitemap file automatically or to get information about "
|
140 |
"للاضافة او حذف ملف الخريطة تلقائياً . او معرفة المعلومات عن هذه الموقع في "
|
141 |
"google webmaster tools"
|
142 |
|
143 |
+
#: google-sitemap-plugin.php:267
|
144 |
msgid "Settings for remote work with google webmaster tools"
|
145 |
msgstr "الضبط للعمل عن بعد مع google webmaster tools"
|
146 |
|
147 |
+
#: google-sitemap-plugin.php:269
|
148 |
msgid "Login"
|
149 |
msgstr "اسم الدخول"
|
150 |
|
151 |
+
#: google-sitemap-plugin.php:270
|
152 |
msgid "Password"
|
153 |
msgstr "الرقم السري"
|
154 |
|
155 |
+
#: google-sitemap-plugin.php:271
|
156 |
msgid "I want to add this site to the google webmaster tools"
|
157 |
msgstr "ارغب في اضافة هذه الموقع في google webmaster tools"
|
158 |
|
159 |
+
#: google-sitemap-plugin.php:272
|
160 |
msgid "I want to delete this site from google webmaster tools"
|
161 |
msgstr "ارغب في حذف هذه الموقع من google webmaster tools"
|
162 |
|
163 |
+
#: google-sitemap-plugin.php:273
|
164 |
msgid "I want to get info about this site in google webmaster tools"
|
165 |
msgstr "ارغب في الحصول علي البيانات هذه الموقع في google webmaster tools"
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:280
|
168 |
msgid "Save Changes"
|
169 |
msgstr "حفظ الاعدادات"
|
170 |
|
171 |
+
#: google-sitemap-plugin.php:322
|
172 |
msgid "You must enter login and password"
|
173 |
msgstr "يجب عليك كتابة اسم الدخول والرقم السري"
|
174 |
|
175 |
+
#: google-sitemap-plugin.php:325
|
176 |
msgid "You must choose at least one action"
|
177 |
msgstr "يجب عليك اختيار عملية واحدة علي الاقل"
|
178 |
|
179 |
+
#: google-sitemap-plugin.php:355
|
180 |
msgid "Login and password don\\'t match, try again, please"
|
181 |
msgstr "اسم الدخول والرقم السري // غير مطابقة , الرجاء اعادة المحاولة مرة اخري"
|
182 |
|
183 |
+
#: google-sitemap-plugin.php:420
|
184 |
msgid "Info about this site in google webmaster tools"
|
185 |
msgstr "المعلومات عن هذه الموقع في google webmaster tools"
|
186 |
|
187 |
+
#: google-sitemap-plugin.php:422
|
188 |
msgid "This site is not added to the google webmaster tools account"
|
189 |
msgstr "هذه الموقع غير مضاف الي حساب google webmaster tools"
|
190 |
|
191 |
+
#: google-sitemap-plugin.php:443
|
192 |
msgid "Site url: "
|
193 |
msgstr "رابط الموقع :"
|
194 |
|
195 |
+
#: google-sitemap-plugin.php:444
|
196 |
msgid "Site verification: "
|
197 |
msgstr "كود التحقق لهذه الموقع :"
|
198 |
|
199 |
+
#: google-sitemap-plugin.php:446
|
200 |
msgid "verificated"
|
201 |
msgstr "التحقق"
|
202 |
|
203 |
+
#: google-sitemap-plugin.php:448
|
204 |
msgid "non verificated"
|
205 |
msgstr "لا يوجد تحقق"
|
206 |
|
207 |
+
#: google-sitemap-plugin.php:449
|
208 |
msgid "Sitemap file: "
|
209 |
msgstr "ملف الخريطة :"
|
210 |
|
211 |
+
#: google-sitemap-plugin.php:451
|
212 |
msgid "added"
|
213 |
msgstr "اضيفت"
|
214 |
|
215 |
+
#: google-sitemap-plugin.php:453
|
216 |
msgid "not added"
|
217 |
msgstr "لم تضاف"
|
218 |
|
languages/sitemap-fr_FR.mo
CHANGED
Binary file
|
languages/sitemap-fr_FR.po
CHANGED
@@ -2,14 +2,14 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-01-29
|
6 |
-
"PO-Revision-Date: 2013-01-29
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Jeff <paillat.jeff@gmail.com>\n"
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Language: ru_RU\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
@@ -20,14 +20,12 @@ msgstr ""
|
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "Plugins activés"
|
22 |
|
23 |
-
#: google-sitemap-plugin.php:81
|
24 |
-
#: google-sitemap-plugin.php:89
|
25 |
#: google-sitemap-plugin.php:97
|
26 |
msgid "Read more"
|
27 |
msgstr "Lire la suite"
|
28 |
|
29 |
-
#: google-sitemap-plugin.php:81
|
30 |
-
#: google-sitemap-plugin.php:526
|
31 |
msgid "Settings"
|
32 |
msgstr "Paramètres"
|
33 |
|
@@ -53,8 +51,13 @@ msgid "Install now from wordpress.org"
|
|
53 |
msgstr "Installer maintenant de wordpress.org"
|
54 |
|
55 |
#: google-sitemap-plugin.php:99
|
56 |
-
msgid "
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
#: google-sitemap-plugin.php:110
|
60 |
msgid "BWS Plugins"
|
@@ -68,133 +71,161 @@ msgstr "Options de Google Sitemap"
|
|
68 |
msgid "Google Sitemap"
|
69 |
msgstr "Google Sitemap"
|
70 |
|
71 |
-
#: google-sitemap-plugin.php:
|
72 |
-
#: google-sitemap-plugin.php:231
|
73 |
msgid "Your sitemap file was created in the root directory of the site. "
|
74 |
msgstr "Votre fichier sitemap est créé dans le répertoire racine du site. "
|
75 |
|
76 |
-
#: google-sitemap-plugin.php:
|
77 |
msgid "Options saved."
|
78 |
msgstr "Options enregistrées !!"
|
79 |
|
80 |
-
#: google-sitemap-plugin.php:
|
81 |
msgid "Google Sitemap options"
|
82 |
msgstr "Google Sitemap options de"
|
83 |
|
84 |
-
#: google-sitemap-plugin.php:
|
85 |
-
msgid "
|
86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
|
88 |
-
#: google-sitemap-plugin.php:
|
89 |
msgid "If you don't want to add this file automatically you may go through"
|
90 |
-
msgstr "
|
|
|
|
|
91 |
|
92 |
-
#: google-sitemap-plugin.php:
|
93 |
msgid "this"
|
94 |
msgstr "cela"
|
95 |
|
96 |
-
#: google-sitemap-plugin.php:
|
97 |
-
msgid "
|
98 |
-
|
|
|
|
|
|
|
|
|
99 |
|
100 |
-
#: google-sitemap-plugin.php:
|
101 |
-
msgid "
|
102 |
-
|
|
|
|
|
|
|
|
|
103 |
|
104 |
-
#: google-sitemap-plugin.php:
|
105 |
msgid "I want to create new / update manualy sitemap file"
|
106 |
msgstr "Je veux créer une nouvelle / mise à jour manuellement fichier sitemap"
|
107 |
|
108 |
-
#: google-sitemap-plugin.php:
|
109 |
msgid "I want to add sitemap file path in robots.txt"
|
110 |
-
msgstr "
|
|
|
111 |
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
-
msgid "
|
114 |
-
|
|
|
|
|
|
|
|
|
115 |
|
116 |
-
#: google-sitemap-plugin.php:
|
117 |
-
msgid "
|
118 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: google-sitemap-plugin.php:
|
121 |
msgid "Settings for remote work with google webmaster tools"
|
122 |
msgstr "Réglages pour le travail à distance avec Google Webmaster Tools"
|
123 |
|
124 |
-
#: google-sitemap-plugin.php:
|
125 |
msgid "Login"
|
126 |
msgstr "Connexion"
|
127 |
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
msgid "Password"
|
130 |
msgstr "PASSWORD"
|
131 |
|
132 |
-
#: google-sitemap-plugin.php:
|
133 |
msgid "I want to add this site to the google webmaster tools"
|
134 |
msgstr "Je tiens à ajouter ce site à google webmaster outils de l'"
|
135 |
|
136 |
-
#: google-sitemap-plugin.php:
|
137 |
msgid "I want to delete this site from google webmaster tools"
|
138 |
msgstr "Je veux supprimer ce site à partir de Google Webmaster Tools"
|
139 |
|
140 |
-
#: google-sitemap-plugin.php:
|
141 |
msgid "I want to get info about this site in google webmaster tools"
|
142 |
-
msgstr "
|
|
|
143 |
|
144 |
-
#: google-sitemap-plugin.php:
|
145 |
msgid "Save Changes"
|
146 |
msgstr "Enregistrer les modifications"
|
147 |
|
148 |
-
#: google-sitemap-plugin.php:
|
149 |
msgid "You must enter login and password"
|
150 |
msgstr "Vous devez entrez votre identifiant et mot de passe"
|
151 |
|
152 |
-
#: google-sitemap-plugin.php:
|
153 |
msgid "You must choose at least one action"
|
154 |
msgstr "Vous devez choisir au moins une action"
|
155 |
|
156 |
-
#: google-sitemap-plugin.php:
|
157 |
msgid "Login and password don\\'t match, try again, please"
|
158 |
msgstr "Login et mot de passe n\\'t correspondance, réessayer, s'il vous plaît"
|
159 |
|
160 |
-
#: google-sitemap-plugin.php:
|
161 |
msgid "Info about this site in google webmaster tools"
|
162 |
msgstr "Sur ce site dans Google Webmaster Tools"
|
163 |
|
164 |
-
#: google-sitemap-plugin.php:
|
165 |
msgid "This site is not added to the google webmaster tools account"
|
166 |
msgstr "Ce site n'est pas ajouté au compte Google Webmaster Tools"
|
167 |
|
168 |
-
#: google-sitemap-plugin.php:
|
169 |
msgid "Site url: "
|
170 |
msgstr "URL du site: "
|
171 |
|
172 |
-
#: google-sitemap-plugin.php:
|
173 |
msgid "Site verification: "
|
174 |
msgstr "Vérification sur place: "
|
175 |
|
176 |
-
#: google-sitemap-plugin.php:
|
177 |
msgid "verificated"
|
178 |
msgstr "verificated"
|
179 |
|
180 |
-
#: google-sitemap-plugin.php:
|
181 |
msgid "non verificated"
|
182 |
msgstr "non verificated"
|
183 |
|
184 |
-
#: google-sitemap-plugin.php:
|
185 |
msgid "Sitemap file: "
|
186 |
msgstr "Plan du site déposer: "
|
187 |
|
188 |
-
#: google-sitemap-plugin.php:
|
189 |
msgid "added"
|
190 |
msgstr "ajouté"
|
191 |
|
192 |
-
#: google-sitemap-plugin.php:
|
193 |
msgid "not added"
|
194 |
msgstr "pas ajoutées"
|
195 |
|
196 |
#~ msgid "Install Now"
|
197 |
#~ msgstr "Установить сейчас"
|
|
|
198 |
#~ msgid "Update"
|
199 |
#~ msgstr "Сохранить"
|
200 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-29 13:20+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-29 13:20+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Jeff <paillat.jeff@gmail.com>\n"
|
9 |
+
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
20 |
msgid "Activated plugins"
|
21 |
msgstr "Plugins activés"
|
22 |
|
23 |
+
#: google-sitemap-plugin.php:81 google-sitemap-plugin.php:89
|
|
|
24 |
#: google-sitemap-plugin.php:97
|
25 |
msgid "Read more"
|
26 |
msgstr "Lire la suite"
|
27 |
|
28 |
+
#: google-sitemap-plugin.php:81 google-sitemap-plugin.php:522
|
|
|
29 |
msgid "Settings"
|
30 |
msgstr "Paramètres"
|
31 |
|
51 |
msgstr "Installer maintenant de wordpress.org"
|
52 |
|
53 |
#: google-sitemap-plugin.php:99
|
54 |
+
msgid ""
|
55 |
+
"If you have any questions, please contact us via plugin@bestwebsoft.com or "
|
56 |
+
"fill in our contact form on our site"
|
57 |
+
msgstr ""
|
58 |
+
"Si vous avez des questions, s'il vous plaît contactez-nous via "
|
59 |
+
"plugin@bestwebsoft.com ou remplissez notre formulaire de contact sur notre "
|
60 |
+
"site"
|
61 |
|
62 |
#: google-sitemap-plugin.php:110
|
63 |
msgid "BWS Plugins"
|
71 |
msgid "Google Sitemap"
|
72 |
msgstr "Google Sitemap"
|
73 |
|
74 |
+
#: google-sitemap-plugin.php:206 google-sitemap-plugin.php:227
|
|
|
75 |
msgid "Your sitemap file was created in the root directory of the site. "
|
76 |
msgstr "Votre fichier sitemap est créé dans le répertoire racine du site. "
|
77 |
|
78 |
+
#: google-sitemap-plugin.php:212
|
79 |
msgid "Options saved."
|
80 |
msgstr "Options enregistrées !!"
|
81 |
|
82 |
+
#: google-sitemap-plugin.php:218
|
83 |
msgid "Google Sitemap options"
|
84 |
msgstr "Google Sitemap options de"
|
85 |
|
86 |
+
#: google-sitemap-plugin.php:223
|
87 |
+
msgid ""
|
88 |
+
"The sitemap file is already exists. If you want to change it for a new "
|
89 |
+
"sitemap file check the necessary box below. In other case all actions will "
|
90 |
+
"be performed over an existing file."
|
91 |
+
msgstr ""
|
92 |
+
"Le fichier sitemap est existe déjà. Si vous voulez le changer pour un "
|
93 |
+
"nouveau fichier sitemap cochez la case ci-dessous nécessaire. Dans le cas "
|
94 |
+
"contraire toutes les actions seront effectuées sur un fichier existant."
|
95 |
|
96 |
+
#: google-sitemap-plugin.php:230
|
97 |
msgid "If you don't want to add this file automatically you may go through"
|
98 |
+
msgstr ""
|
99 |
+
"Si vous ne voulez pas ajouter automatiquement ce fichier vous pouvez passer "
|
100 |
+
"par"
|
101 |
|
102 |
+
#: google-sitemap-plugin.php:230
|
103 |
msgid "this"
|
104 |
msgstr "cela"
|
105 |
|
106 |
+
#: google-sitemap-plugin.php:230
|
107 |
+
msgid ""
|
108 |
+
"link, sign in, select necessary site, select 'Sitemaps' and type in "
|
109 |
+
"necessary field"
|
110 |
+
msgstr ""
|
111 |
+
"lien, connectez-vous, sélectionnez le site nécessaire, sélectionnez "
|
112 |
+
"'Sitemaps' et tapez dans le champ nécessaire"
|
113 |
|
114 |
+
#: google-sitemap-plugin.php:232
|
115 |
+
msgid ""
|
116 |
+
"This hosting doesn't support CURL, so you can't add sitemap file "
|
117 |
+
"automatically"
|
118 |
+
msgstr ""
|
119 |
+
"Cet hébergement ne supporte pas CURL, de sorte que vous ne pouvez pas "
|
120 |
+
"ajouter fichier sitemap automatiquement"
|
121 |
|
122 |
+
#: google-sitemap-plugin.php:241
|
123 |
msgid "I want to create new / update manualy sitemap file"
|
124 |
msgstr "Je veux créer une nouvelle / mise à jour manuellement fichier sitemap"
|
125 |
|
126 |
+
#: google-sitemap-plugin.php:246
|
127 |
msgid "I want to add sitemap file path in robots.txt"
|
128 |
+
msgstr ""
|
129 |
+
"Je tiens à ajouter le chemin fichier sitemap dans le fichier robots.txt"
|
130 |
|
131 |
+
#: google-sitemap-plugin.php:250
|
132 |
+
msgid ""
|
133 |
+
"Please choose the necessary post types in order to add the links to them in "
|
134 |
+
"the sitemap:"
|
135 |
+
msgstr ""
|
136 |
+
"S'il vous plaît choisir les types de postes nécessaires afin d'ajouter des "
|
137 |
+
"liens vers eux dans le sitemap:"
|
138 |
|
139 |
+
#: google-sitemap-plugin.php:263
|
140 |
+
msgid ""
|
141 |
+
"Type here your login and password from google webmaster tools account to add "
|
142 |
+
"or delete site and sitemap file automatically or to get information about "
|
143 |
+
"this site in google webmaster tools."
|
144 |
+
msgstr ""
|
145 |
+
"Tapez ici votre login et mot de passe de votre compte Google Outils pour les "
|
146 |
+
"webmasters d'ajouter ou de supprimer du site et fichier sitemap "
|
147 |
+
"automatiquement ou pour obtenir des informations sur ce site dans Google "
|
148 |
+
"Webmaster Tools."
|
149 |
|
150 |
+
#: google-sitemap-plugin.php:267
|
151 |
msgid "Settings for remote work with google webmaster tools"
|
152 |
msgstr "Réglages pour le travail à distance avec Google Webmaster Tools"
|
153 |
|
154 |
+
#: google-sitemap-plugin.php:269
|
155 |
msgid "Login"
|
156 |
msgstr "Connexion"
|
157 |
|
158 |
+
#: google-sitemap-plugin.php:270
|
159 |
msgid "Password"
|
160 |
msgstr "PASSWORD"
|
161 |
|
162 |
+
#: google-sitemap-plugin.php:271
|
163 |
msgid "I want to add this site to the google webmaster tools"
|
164 |
msgstr "Je tiens à ajouter ce site à google webmaster outils de l'"
|
165 |
|
166 |
+
#: google-sitemap-plugin.php:272
|
167 |
msgid "I want to delete this site from google webmaster tools"
|
168 |
msgstr "Je veux supprimer ce site à partir de Google Webmaster Tools"
|
169 |
|
170 |
+
#: google-sitemap-plugin.php:273
|
171 |
msgid "I want to get info about this site in google webmaster tools"
|
172 |
+
msgstr ""
|
173 |
+
"Je veux obtenir des informations sur ce site dans Google Webmaster Tools"
|
174 |
|
175 |
+
#: google-sitemap-plugin.php:280
|
176 |
msgid "Save Changes"
|
177 |
msgstr "Enregistrer les modifications"
|
178 |
|
179 |
+
#: google-sitemap-plugin.php:322
|
180 |
msgid "You must enter login and password"
|
181 |
msgstr "Vous devez entrez votre identifiant et mot de passe"
|
182 |
|
183 |
+
#: google-sitemap-plugin.php:325
|
184 |
msgid "You must choose at least one action"
|
185 |
msgstr "Vous devez choisir au moins une action"
|
186 |
|
187 |
+
#: google-sitemap-plugin.php:355
|
188 |
msgid "Login and password don\\'t match, try again, please"
|
189 |
msgstr "Login et mot de passe n\\'t correspondance, réessayer, s'il vous plaît"
|
190 |
|
191 |
+
#: google-sitemap-plugin.php:420
|
192 |
msgid "Info about this site in google webmaster tools"
|
193 |
msgstr "Sur ce site dans Google Webmaster Tools"
|
194 |
|
195 |
+
#: google-sitemap-plugin.php:422
|
196 |
msgid "This site is not added to the google webmaster tools account"
|
197 |
msgstr "Ce site n'est pas ajouté au compte Google Webmaster Tools"
|
198 |
|
199 |
+
#: google-sitemap-plugin.php:443
|
200 |
msgid "Site url: "
|
201 |
msgstr "URL du site: "
|
202 |
|
203 |
+
#: google-sitemap-plugin.php:444
|
204 |
msgid "Site verification: "
|
205 |
msgstr "Vérification sur place: "
|
206 |
|
207 |
+
#: google-sitemap-plugin.php:446
|
208 |
msgid "verificated"
|
209 |
msgstr "verificated"
|
210 |
|
211 |
+
#: google-sitemap-plugin.php:448
|
212 |
msgid "non verificated"
|
213 |
msgstr "non verificated"
|
214 |
|
215 |
+
#: google-sitemap-plugin.php:449
|
216 |
msgid "Sitemap file: "
|
217 |
msgstr "Plan du site déposer: "
|
218 |
|
219 |
+
#: google-sitemap-plugin.php:451
|
220 |
msgid "added"
|
221 |
msgstr "ajouté"
|
222 |
|
223 |
+
#: google-sitemap-plugin.php:453
|
224 |
msgid "not added"
|
225 |
msgstr "pas ajoutées"
|
226 |
|
227 |
#~ msgid "Install Now"
|
228 |
#~ msgstr "Установить сейчас"
|
229 |
+
|
230 |
#~ msgid "Update"
|
231 |
#~ msgstr "Сохранить"
|
|
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-01-
|
6 |
-
"PO-Revision-Date: 2013-01-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -25,7 +25,7 @@ msgstr "Активированные плагины"
|
|
25 |
msgid "Read more"
|
26 |
msgstr "Подробнее..."
|
27 |
|
28 |
-
#: google-sitemap-plugin.php:81 google-sitemap-plugin.php:
|
29 |
msgid "Settings"
|
30 |
msgstr "Настройки"
|
31 |
|
@@ -70,19 +70,19 @@ msgstr "Опции карты сайта Google"
|
|
70 |
msgid "Google Sitemap"
|
71 |
msgstr "Карта сайта Google"
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
msgid "Your sitemap file was created in the root directory of the site. "
|
75 |
msgstr "Карта сайта для вашего сайта создана в корне основной директории."
|
76 |
|
77 |
-
#: google-sitemap-plugin.php:
|
78 |
msgid "Options saved."
|
79 |
msgstr "Опции сохранены."
|
80 |
|
81 |
-
#: google-sitemap-plugin.php:
|
82 |
msgid "Google Sitemap options"
|
83 |
msgstr "Опции карты сайта Google"
|
84 |
|
85 |
-
#: google-sitemap-plugin.php:
|
86 |
msgid ""
|
87 |
"The sitemap file is already exists. If you want to change it for a new "
|
88 |
"sitemap file check the necessary box below. In other case all actions will "
|
@@ -92,17 +92,17 @@ msgstr ""
|
|
92 |
"выберите соответствующее действие внизу. Все остальные действия перезапишут "
|
93 |
"существующий файл."
|
94 |
|
95 |
-
#: google-sitemap-plugin.php:
|
96 |
msgid "If you don't want to add this file automatically you may go through"
|
97 |
msgstr ""
|
98 |
"Если вы не хотите добавить файл карты сайта автоматически в Google webmaster "
|
99 |
"tools, Вы можете сделать это через"
|
100 |
|
101 |
-
#: google-sitemap-plugin.php:
|
102 |
msgid "this"
|
103 |
msgstr "эту"
|
104 |
|
105 |
-
#: google-sitemap-plugin.php:
|
106 |
msgid ""
|
107 |
"link, sign in, select necessary site, select 'Sitemaps' and type in "
|
108 |
"necessary field"
|
@@ -110,7 +110,7 @@ msgstr ""
|
|
110 |
"ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить "
|
111 |
"обязательное поле"
|
112 |
|
113 |
-
#: google-sitemap-plugin.php:
|
114 |
msgid ""
|
115 |
"This hosting doesn't support CURL, so you can't add sitemap file "
|
116 |
"automatically"
|
@@ -118,15 +118,15 @@ msgstr ""
|
|
118 |
"Ваш хостинг не поддерживает CURL, поэтому вы не можете добавить карту сайта "
|
119 |
"в Google аккаунт автоматически."
|
120 |
|
121 |
-
#: google-sitemap-plugin.php:
|
122 |
msgid "I want to create new / update manualy sitemap file"
|
123 |
msgstr "Я хочу создать новую / обновить существующую карту сайта"
|
124 |
|
125 |
-
#: google-sitemap-plugin.php:
|
126 |
msgid "I want to add sitemap file path in robots.txt"
|
127 |
msgstr "Я хочу добавить карту сайта в robots.txt"
|
128 |
|
129 |
-
#: google-sitemap-plugin.php:
|
130 |
msgid ""
|
131 |
"Please choose the necessary post types in order to add the links to them in "
|
132 |
"the sitemap:"
|
@@ -134,7 +134,7 @@ msgstr ""
|
|
134 |
"Пожалуйста, выберите те типы постов, ссылки на которые будут добавлены в "
|
135 |
"карту сайта:"
|
136 |
|
137 |
-
#: google-sitemap-plugin.php:
|
138 |
msgid ""
|
139 |
"Type here your login and password from google webmaster tools account to add "
|
140 |
"or delete site and sitemap file automatically or to get information about "
|
@@ -144,79 +144,79 @@ msgstr ""
|
|
144 |
"возможность добавлять или удалять сайт и карту сайта автоматически в ваш "
|
145 |
"аккаунт или же получить информацию об этом сайте из Google webmaster tools"
|
146 |
|
147 |
-
#: google-sitemap-plugin.php:
|
148 |
msgid "Settings for remote work with google webmaster tools"
|
149 |
msgstr "Настройки для удаленной работы с google webmaster tools"
|
150 |
|
151 |
-
#: google-sitemap-plugin.php:
|
152 |
msgid "Login"
|
153 |
msgstr "Логин"
|
154 |
|
155 |
-
#: google-sitemap-plugin.php:
|
156 |
msgid "Password"
|
157 |
msgstr "Пароль"
|
158 |
|
159 |
-
#: google-sitemap-plugin.php:
|
160 |
msgid "I want to add this site to the google webmaster tools"
|
161 |
msgstr "Я хочу добавить этот сайт в Google webmaster tools"
|
162 |
|
163 |
-
#: google-sitemap-plugin.php:
|
164 |
msgid "I want to delete this site from google webmaster tools"
|
165 |
msgstr "Я хочу удалить этот сайт из Google webmaster tools"
|
166 |
|
167 |
-
#: google-sitemap-plugin.php:
|
168 |
msgid "I want to get info about this site in google webmaster tools"
|
169 |
msgstr "Я хочу получить информацию об этом сайте из Google webmaster tools"
|
170 |
|
171 |
-
#: google-sitemap-plugin.php:
|
172 |
msgid "Save Changes"
|
173 |
msgstr "Сохранить изменения"
|
174 |
|
175 |
-
#: google-sitemap-plugin.php:
|
176 |
msgid "You must enter login and password"
|
177 |
msgstr "Вы должны ввести логин и пароль"
|
178 |
|
179 |
-
#: google-sitemap-plugin.php:
|
180 |
msgid "You must choose at least one action"
|
181 |
msgstr "Вы должны выбрать одно из действий"
|
182 |
|
183 |
-
#: google-sitemap-plugin.php:
|
184 |
msgid "Login and password don\\'t match, try again, please"
|
185 |
msgstr "Логин и пароль введены неправильно, попробуйте еще раз"
|
186 |
|
187 |
-
#: google-sitemap-plugin.php:
|
188 |
msgid "Info about this site in google webmaster tools"
|
189 |
msgstr "Я хочу получить информацию об этом сайте из Google webmaster tools"
|
190 |
|
191 |
-
#: google-sitemap-plugin.php:
|
192 |
msgid "This site is not added to the google webmaster tools account"
|
193 |
msgstr "Я хочу добавить этот сайт в Google webmaster tools"
|
194 |
|
195 |
-
#: google-sitemap-plugin.php:
|
196 |
msgid "Site url: "
|
197 |
msgstr "Урл сайта:"
|
198 |
|
199 |
-
#: google-sitemap-plugin.php:
|
200 |
msgid "Site verification: "
|
201 |
msgstr "Верификация сайта:"
|
202 |
|
203 |
-
#: google-sitemap-plugin.php:
|
204 |
msgid "verificated"
|
205 |
msgstr "верифицровано"
|
206 |
|
207 |
-
#: google-sitemap-plugin.php:
|
208 |
msgid "non verificated"
|
209 |
msgstr "не верефицирован"
|
210 |
|
211 |
-
#: google-sitemap-plugin.php:
|
212 |
msgid "Sitemap file: "
|
213 |
msgstr "Файл карты сайта:"
|
214 |
|
215 |
-
#: google-sitemap-plugin.php:
|
216 |
msgid "added"
|
217 |
msgstr "добавлен"
|
218 |
|
219 |
-
#: google-sitemap-plugin.php:
|
220 |
msgid "not added"
|
221 |
msgstr "не добавлен"
|
222 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-29 13:21+0200\n"
|
6 |
+
"PO-Revision-Date: 2013-01-29 13:21+0200\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
25 |
msgid "Read more"
|
26 |
msgstr "Подробнее..."
|
27 |
|
28 |
+
#: google-sitemap-plugin.php:81 google-sitemap-plugin.php:522
|
29 |
msgid "Settings"
|
30 |
msgstr "Настройки"
|
31 |
|
70 |
msgid "Google Sitemap"
|
71 |
msgstr "Карта сайта Google"
|
72 |
|
73 |
+
#: google-sitemap-plugin.php:206 google-sitemap-plugin.php:227
|
74 |
msgid "Your sitemap file was created in the root directory of the site. "
|
75 |
msgstr "Карта сайта для вашего сайта создана в корне основной директории."
|
76 |
|
77 |
+
#: google-sitemap-plugin.php:212
|
78 |
msgid "Options saved."
|
79 |
msgstr "Опции сохранены."
|
80 |
|
81 |
+
#: google-sitemap-plugin.php:218
|
82 |
msgid "Google Sitemap options"
|
83 |
msgstr "Опции карты сайта Google"
|
84 |
|
85 |
+
#: google-sitemap-plugin.php:223
|
86 |
msgid ""
|
87 |
"The sitemap file is already exists. If you want to change it for a new "
|
88 |
"sitemap file check the necessary box below. In other case all actions will "
|
92 |
"выберите соответствующее действие внизу. Все остальные действия перезапишут "
|
93 |
"существующий файл."
|
94 |
|
95 |
+
#: google-sitemap-plugin.php:230
|
96 |
msgid "If you don't want to add this file automatically you may go through"
|
97 |
msgstr ""
|
98 |
"Если вы не хотите добавить файл карты сайта автоматически в Google webmaster "
|
99 |
"tools, Вы можете сделать это через"
|
100 |
|
101 |
+
#: google-sitemap-plugin.php:230
|
102 |
msgid "this"
|
103 |
msgstr "эту"
|
104 |
|
105 |
+
#: google-sitemap-plugin.php:230
|
106 |
msgid ""
|
107 |
"link, sign in, select necessary site, select 'Sitemaps' and type in "
|
108 |
"necessary field"
|
110 |
"ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить "
|
111 |
"обязательное поле"
|
112 |
|
113 |
+
#: google-sitemap-plugin.php:232
|
114 |
msgid ""
|
115 |
"This hosting doesn't support CURL, so you can't add sitemap file "
|
116 |
"automatically"
|
118 |
"Ваш хостинг не поддерживает CURL, поэтому вы не можете добавить карту сайта "
|
119 |
"в Google аккаунт автоматически."
|
120 |
|
121 |
+
#: google-sitemap-plugin.php:241
|
122 |
msgid "I want to create new / update manualy sitemap file"
|
123 |
msgstr "Я хочу создать новую / обновить существующую карту сайта"
|
124 |
|
125 |
+
#: google-sitemap-plugin.php:246
|
126 |
msgid "I want to add sitemap file path in robots.txt"
|
127 |
msgstr "Я хочу добавить карту сайта в robots.txt"
|
128 |
|
129 |
+
#: google-sitemap-plugin.php:250
|
130 |
msgid ""
|
131 |
"Please choose the necessary post types in order to add the links to them in "
|
132 |
"the sitemap:"
|
134 |
"Пожалуйста, выберите те типы постов, ссылки на которые будут добавлены в "
|
135 |
"карту сайта:"
|
136 |
|
137 |
+
#: google-sitemap-plugin.php:263
|
138 |
msgid ""
|
139 |
"Type here your login and password from google webmaster tools account to add "
|
140 |
"or delete site and sitemap file automatically or to get information about "
|
144 |
"возможность добавлять или удалять сайт и карту сайта автоматически в ваш "
|
145 |
"аккаунт или же получить информацию об этом сайте из Google webmaster tools"
|
146 |
|
147 |
+
#: google-sitemap-plugin.php:267
|
148 |
msgid "Settings for remote work with google webmaster tools"
|
149 |
msgstr "Настройки для удаленной работы с google webmaster tools"
|
150 |
|
151 |
+
#: google-sitemap-plugin.php:269
|
152 |
msgid "Login"
|
153 |
msgstr "Логин"
|
154 |
|
155 |
+
#: google-sitemap-plugin.php:270
|
156 |
msgid "Password"
|
157 |
msgstr "Пароль"
|
158 |
|
159 |
+
#: google-sitemap-plugin.php:271
|
160 |
msgid "I want to add this site to the google webmaster tools"
|
161 |
msgstr "Я хочу добавить этот сайт в Google webmaster tools"
|
162 |
|
163 |
+
#: google-sitemap-plugin.php:272
|
164 |
msgid "I want to delete this site from google webmaster tools"
|
165 |
msgstr "Я хочу удалить этот сайт из Google webmaster tools"
|
166 |
|
167 |
+
#: google-sitemap-plugin.php:273
|
168 |
msgid "I want to get info about this site in google webmaster tools"
|
169 |
msgstr "Я хочу получить информацию об этом сайте из Google webmaster tools"
|
170 |
|
171 |
+
#: google-sitemap-plugin.php:280
|
172 |
msgid "Save Changes"
|
173 |
msgstr "Сохранить изменения"
|
174 |
|
175 |
+
#: google-sitemap-plugin.php:322
|
176 |
msgid "You must enter login and password"
|
177 |
msgstr "Вы должны ввести логин и пароль"
|
178 |
|
179 |
+
#: google-sitemap-plugin.php:325
|
180 |
msgid "You must choose at least one action"
|
181 |
msgstr "Вы должны выбрать одно из действий"
|
182 |
|
183 |
+
#: google-sitemap-plugin.php:355
|
184 |
msgid "Login and password don\\'t match, try again, please"
|
185 |
msgstr "Логин и пароль введены неправильно, попробуйте еще раз"
|
186 |
|
187 |
+
#: google-sitemap-plugin.php:420
|
188 |
msgid "Info about this site in google webmaster tools"
|
189 |
msgstr "Я хочу получить информацию об этом сайте из Google webmaster tools"
|
190 |
|
191 |
+
#: google-sitemap-plugin.php:422
|
192 |
msgid "This site is not added to the google webmaster tools account"
|
193 |
msgstr "Я хочу добавить этот сайт в Google webmaster tools"
|
194 |
|
195 |
+
#: google-sitemap-plugin.php:443
|
196 |
msgid "Site url: "
|
197 |
msgstr "Урл сайта:"
|
198 |
|
199 |
+
#: google-sitemap-plugin.php:444
|
200 |
msgid "Site verification: "
|
201 |
msgstr "Верификация сайта:"
|
202 |
|
203 |
+
#: google-sitemap-plugin.php:446
|
204 |
msgid "verificated"
|
205 |
msgstr "верифицровано"
|
206 |
|
207 |
+
#: google-sitemap-plugin.php:448
|
208 |
msgid "non verificated"
|
209 |
msgstr "не верефицирован"
|
210 |
|
211 |
+
#: google-sitemap-plugin.php:449
|
212 |
msgid "Sitemap file: "
|
213 |
msgstr "Файл карты сайта:"
|
214 |
|
215 |
+
#: google-sitemap-plugin.php:451
|
216 |
msgid "added"
|
217 |
msgstr "добавлен"
|
218 |
|
219 |
+
#: google-sitemap-plugin.php:453
|
220 |
msgid "not added"
|
221 |
msgstr "не добавлен"
|
222 |
|
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.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -71,6 +71,9 @@ In the WordPress admin panel go to "Plugins", find "Google sitemap" plugin and p
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
74 |
= V2.1 - 29.01.2013 =
|
75 |
* NEW: French language file was added to the plugin.
|
76 |
* Update : We updated all functionality for wordpress 3.5.1.
|
@@ -114,6 +117,9 @@ In the WordPress admin panel go to "Plugins", find "Google sitemap" plugin and p
|
|
114 |
|
115 |
== Upgrade Notice ==
|
116 |
|
|
|
|
|
|
|
117 |
= V2.1 =
|
118 |
French language file was added to the plugin. We updated all functionality for wordpress 3.5.1.
|
119 |
|
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.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
71 |
|
72 |
== Changelog ==
|
73 |
|
74 |
+
= V2.2 - 29.01.2013 =
|
75 |
+
* Bugfix : Update option database request bug was fixed.
|
76 |
+
|
77 |
= V2.1 - 29.01.2013 =
|
78 |
* NEW: French language file was added to the plugin.
|
79 |
* Update : We updated all functionality for wordpress 3.5.1.
|
117 |
|
118 |
== Upgrade Notice ==
|
119 |
|
120 |
+
= V2.2 =
|
121 |
+
Update option database request bug was fixed.
|
122 |
+
|
123 |
= V2.1 =
|
124 |
French language file was added to the plugin. We updated all functionality for wordpress 3.5.1.
|
125 |
|
screenshot-1.jpg
CHANGED
File without changes
|
screenshot-2.jpg
CHANGED
File without changes
|
sitemap.xsl
CHANGED
File without changes
|