Polylang - Version 0.4.4

Version Description

(2011-11-28)

Download this release

Release Info

Developer Chouby
Plugin Icon 128x128 Polylang
Version 0.4.4
Comparing to
See all releases

Code changes from version 0.4.3 to 0.4.4

include/admin.php CHANGED
@@ -266,8 +266,9 @@ class Polylang_Admin extends Polylang_Base {
266
  }
267
  }
268
  if(isset($_POST['terms'])) {
 
269
  foreach(explode(',', $_POST['terms']) as $term_id) {
270
- update_metadata('term', $term_id, '_language', $options['default_lang'] );
271
  }
272
  }
273
  }
266
  }
267
  }
268
  if(isset($_POST['terms'])) {
269
+ $lang_id = $this->get_language($options['default_lang'])->term_id; // slug is stored in the option and I want the id for the meta
270
  foreach(explode(',', $_POST['terms']) as $term_id) {
271
+ update_metadata('term', $term_id, '_language', $lang_id );
272
  }
273
  }
274
  }
include/languages-form.php CHANGED
@@ -84,7 +84,7 @@ if (current_theme_supports( 'menus' )) { ?>
84
 
85
  <table class="wp-list-table widefat fixed tags" cellspacing="0" style="width: auto">
86
  <thead><tr>
87
- <th><?php _e('Theme location','Polylang') ?></th><?php
88
  foreach ($listlanguages as $language) {
89
  echo '<th>' . esc_attr($language->name) . '</th>';
90
  } ?>
@@ -187,23 +187,23 @@ if (!empty($posts) || !empty($terms) && $options['default_lang']) {
187
  </tr>
188
 
189
  <tr>
190
- <th><?php _e('URL modifications', 'Polylang') ?></th>
191
  <td scope="row">
192
  <label><?php
193
  printf(
194
- '<input name="rewrite" type="radio" value="0" %s /> %s',
195
  $options['rewrite'] ? '' : 'checked="checked"',
196
- __('Keep /language/ in pretty permalinks. Example: ', 'polylang')
 
197
  );?>
198
- <code><?php echo home_url('language/en/'); ?></code>
199
  </label>
200
  <label><?php
201
  printf(
202
- '<input name="rewrite" type="radio" value="1" %s /> %s',
203
  $options['rewrite'] ? 'checked="checked"' : '',
204
- __('Remove /language/ in pretty permalinks. Example: ', 'polylang')
 
205
  );?>
206
- <code><?php echo home_url('en/'); ?></code>
207
  </label>
208
  <label><?php
209
  printf(
84
 
85
  <table class="wp-list-table widefat fixed tags" cellspacing="0" style="width: auto">
86
  <thead><tr>
87
+ <th><?php _e('Theme location','polylang') ?></th><?php
88
  foreach ($listlanguages as $language) {
89
  echo '<th>' . esc_attr($language->name) . '</th>';
90
  } ?>
187
  </tr>
188
 
189
  <tr>
190
+ <th><?php _e('URL modifications', 'polylang') ?></th>
191
  <td scope="row">
192
  <label><?php
193
  printf(
194
+ '<input name="rewrite" type="radio" value="0" %s /> %s %s',
195
  $options['rewrite'] ? '' : 'checked="checked"',
196
+ __('Keep /language/ in pretty permalinks. Example:', 'polylang'),
197
+ '<code>'.home_url('language/en/').'</code>'
198
  );?>
 
199
  </label>
200
  <label><?php
201
  printf(
202
+ '<input name="rewrite" type="radio" value="1" %s /> %s %s',
203
  $options['rewrite'] ? 'checked="checked"' : '',
204
+ __('Remove /language/ in pretty permalinks. Example:', 'polylang'),
205
+ '<code>'.home_url('en/').'</code>'
206
  );?>
 
207
  </label>
208
  <label><?php
209
  printf(
include/widget.php CHANGED
@@ -61,7 +61,7 @@ class Polylang_Widget extends WP_Widget {
61
  $id = $this->get_field_id('title');
62
  $name = $this->get_field_name('title');
63
  $title = sprintf('<p><label for="%s">%s</label><input class="widefat" id="%s" name="%s" type="text" value="%s" /></p>',
64
- $id, __('Title:'), $id, $name, esc_attr($instance['title']));
65
 
66
  // language names checkbox
67
  $id = $this->get_field_id('show_names');
61
  $id = $this->get_field_id('title');
62
  $name = $this->get_field_name('title');
63
  $title = sprintf('<p><label for="%s">%s</label><input class="widefat" id="%s" name="%s" type="text" value="%s" /></p>',
64
+ $id, __('Title:', 'polylang'), $id, $name, esc_attr($instance['title']));
65
 
66
  // language names checkbox
67
  $id = $this->get_field_id('show_names');
languages/polylang-de_DE.mo CHANGED
Binary file
languages/polylang-de_DE.po CHANGED
@@ -2,260 +2,353 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: polylang\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-11-14 21:57+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: F. Demarle\n"
8
  "Language-Team: \n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: _e;__;_c\n"
16
  "X-Poedit-Basepath: .\n"
 
17
  "X-Poedit-SearchPath-0: ..\n"
18
- "X-Poedit-SearchPath-1: ../include\n"
19
-
20
- #: ../include/edit-term-form.php:6
21
- #: ../include/admin.php:348
22
- #: ../include/admin.php:502
23
- #: ../include/term-translations.php:14
24
- #: ../include/add-term-form.php:3
25
- #: ../include/list-table.php:12
26
- #: ../include/post-translations.php:4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid "Language"
28
  msgstr "Sprache"
29
 
30
- #: ../include/edit-term-form.php:18
31
- #: ../include/add-term-form.php:10
 
32
  msgid "Sets the language"
33
  msgstr "definiert die Sprache"
34
 
35
- #: ../include/widget.php:5
 
36
  msgid "Displays a language switcher"
37
  msgstr "Zeigen die Sprachenliste"
38
 
39
- #: ../include/widget.php:6
 
40
  msgid "Language Switcher"
41
  msgstr "Sprachenliste"
42
 
43
- #: ../include/widget.php:50
 
 
 
 
 
 
44
  msgid "Display language names"
45
  msgstr "Zeigen die Sprachen Namen"
46
 
47
- #: ../include/widget.php:56
 
48
  msgid "Display flags"
49
  msgstr "Zeigen Flaggen"
50
 
51
- #: ../include/widget.php:62
 
52
  msgid "Display as dropdown"
53
  msgstr "Als Auswahlbox darstellen"
54
 
55
- #: ../include/admin.php:90
 
56
  msgid "Settings"
57
  msgstr "Einstellungen"
58
 
59
- #: ../include/admin.php:97
60
- #: ../include/admin.php:392
61
- #: ../include/list-table.php:13
62
- #: ../include/languages-form.php:14
 
63
  msgid "Languages"
64
  msgstr "Sprachen"
65
 
66
- #: ../include/admin.php:309
67
  #, fuzzy
 
68
  msgid "Enter a valid WorPress locale"
69
  msgstr "Das WordPress Locale ist ungültig"
70
 
71
- #: ../include/admin.php:310
 
72
  msgid "The language code must be 2 characters long"
73
  msgstr "Der Sprachcode muss 2 Buchstaben lang sein"
74
 
75
- #: ../include/admin.php:311
 
76
  msgid "The language code must be unique"
77
  msgstr "Eine andere Sprache hat dem selben Sprachcode"
78
 
79
- #: ../include/admin.php:312
 
80
  msgid "The language must have a name"
81
  msgstr "Die Sprache muss einen Namen haben"
82
 
83
- #: ../include/admin.php:380
 
84
  msgid "Show all languages"
85
  msgstr "Zeigen alle Sprachen"
86
 
87
- #: ../include/admin.php:607
 
88
  msgid "Theme locations and languages"
89
  msgstr "Anordnung im Theme und Sprachen"
90
 
91
- #: ../include/admin.php:612
92
  #, php-format
 
93
  msgid "Please go to the %slanguages page%s to set theme locations and languages"
94
  msgstr "Du solltest zu der %sSprachen Seite%s gehen, um Anordnung im Theme und Sprachen zu definieren."
95
 
96
- #: ../include/admin.php:624
 
97
  msgid "The widget is displayed for:"
98
  msgstr "Zeigen das Widget für :"
99
 
100
- #: ../include/admin.php:627
 
101
  msgid "All languages"
102
  msgstr "Alle Sprachen"
103
 
104
- #: ../include/post-metabox.php:3
 
105
  msgid "Page's language:"
106
  msgstr "Sprache für die Seite :"
107
 
108
- #: ../include/post-metabox.php:3
 
109
  msgid "Post's language:"
110
  msgstr "Sprache für die Artikel :"
111
 
112
- #: ../include/term-translations.php:5
113
- #: ../include/term-translations.php:9
 
114
  msgid "Translations"
115
  msgstr "Übersetzungen"
116
 
117
- #: ../include/term-translations.php:14
 
118
  msgid "Translation"
119
  msgstr "Übersetzung"
120
 
121
- #: ../include/term-translations.php:14
122
- #: ../include/term-translations.php:75
123
- #: ../include/list-table.php:32
124
- #: ../include/post-translations.php:6
125
- #: ../include/post-translations.php:28
 
126
  msgid "Edit"
127
  msgstr "Bearbeiten"
128
 
129
- #: ../include/term-translations.php:61
130
- #: ../include/post-translations.php:33
 
131
  msgid "Add new"
132
  msgstr "Hinzufügen"
133
 
134
- #: ../include/list-table.php:33
 
135
  msgid "Delete"
136
  msgstr "Löschen"
137
 
138
- #: ../include/list-table.php:50
139
- #: ../include/languages-form.php:50
 
140
  msgid "Full name"
141
  msgstr "Name"
142
 
143
- #: ../include/list-table.php:51
144
- #: ../include/languages-form.php:56
145
  #, fuzzy
 
146
  msgid "Locale"
147
  msgstr "Locale"
148
 
149
- #: ../include/list-table.php:52
 
150
  msgid "Code"
151
  msgstr "Code"
152
 
153
- #: ../include/list-table.php:53
 
154
  msgid "Posts"
155
  msgstr "Artikel"
156
 
157
- #: ../include/languages-form.php:33
 
 
 
 
 
 
 
 
158
  msgid "Edit language"
159
  msgstr "Sprache bearbeiten"
160
 
161
- #: ../include/languages-form.php:33
162
- #: ../include/languages-form.php:70
 
163
  msgid "Add new language"
164
  msgstr "Neue Sprache hinzufügen"
165
 
166
- #: ../include/languages-form.php:52
 
167
  msgid "The name is how it is displayed on your site (for example: English)."
168
  msgstr "Dieser Name wird dann auf der Website angezeigt (beispielweise : Deutsch)"
169
 
170
- #: ../include/languages-form.php:58
 
171
  msgid "Wordpress Locale for the language (for example: en_US). You will need to install the .mo file for this language."
172
  msgstr "Wordpress Locale für die Sprache (beispielweise : de_DE). Du musst die .mo Datei für diese Sprache installieren."
173
 
174
- #: ../include/languages-form.php:62
 
175
  msgid "Language code"
176
  msgstr "Sprachcode"
177
 
178
- #: ../include/languages-form.php:64
 
179
  msgid "2-letters ISO 639-1 language code (for example: en)"
180
  msgstr "2 Buchstaben ISO 639-1 Sprachcode (beispielweise : de)"
181
 
182
- #: ../include/languages-form.php:68
 
183
  msgid "Update"
184
  msgstr "Aktualisieren"
185
 
186
- #: ../include/languages-form.php:82
 
187
  msgid "Menus"
188
  msgstr "Menüs"
189
 
190
- #: ../include/languages-form.php:90
 
191
  msgid "Theme location"
192
  msgstr "Anordnung im Theme"
193
 
194
- #: ../include/languages-form.php:134
 
195
  msgid "Options"
196
  msgstr "Einstellungen"
197
 
198
- #: ../include/languages-form.php:143
 
199
  msgid "Default language"
200
  msgstr "Standard Sprache"
201
 
202
- #: ../include/languages-form.php:172
203
  #, fuzzy
 
204
  msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
205
  msgstr "Es gibt Artikel, Seite, Kategorien oder Schlagwörter ohne Sprache definiert. Willst du alle zu standard Sprache definieren ?"
206
 
207
- #: ../include/languages-form.php:180
 
208
  msgid "Detect browser language"
209
  msgstr "Browser Spracherkennung"
210
 
211
- #: ../include/languages-form.php:186
 
212
  msgid "When the front page is visited, set the language according to the browser preference"
213
  msgstr "Wenn die Startseite besucht ist, definiert die Sprache durch den Browser Einstellung"
214
 
215
- #: ../include/languages-form.php:193
 
216
  msgid "URL modifications"
217
  msgstr "URL Veränderung"
218
 
219
- #: ../include/languages-form.php:199
220
- msgid "Keep /language/ in pretty permalinks. Example: "
 
221
  msgstr "/language/ in Permalinks behalten. Zum Beispiel :"
222
 
223
- #: ../include/languages-form.php:207
224
- msgid "Remove /language/ in pretty permalinks. Example: "
 
225
  msgstr "/language/ in Permalinks entfernen. Zum Beispiel :"
226
 
227
- #: ../include/languages-form.php:215
 
228
  msgid "Hide URL language information for default language"
229
  msgstr "URL Informationen für die Standardsprache verstecken"
230
 
231
- #: ../include/post-translations.php:1
 
232
  msgid "ID of pages in other languages:"
233
  msgstr "ID für die Seiten in andere Sprache :"
234
 
235
- #: ../include/post-translations.php:1
 
236
  msgid "ID of posts in other languages:"
237
  msgstr "ID für die Artikel in andere Sprache :"
238
 
239
- #: ../include/post-translations.php:5
 
240
  msgid "Page ID"
241
  msgstr "ID für die Seite"
242
 
243
- #: ../include/post-translations.php:5
 
244
  msgid "Post ID"
245
  msgstr "ID für die Artikel"
246
 
247
- #: ../include/personal-options.php:3
 
248
  msgid "Admin language"
249
  msgstr "Adminsprache"
250
 
251
- #~ msgid "Title:"
252
- #~ msgstr "Titre :"
253
-
254
- #, fuzzy
255
- #~ msgid "The front page default language is : "
256
- #~ msgstr "Die Sprache für die Startseite ist :"
257
- #~ msgid "set by the browser preference"
258
- #~ msgstr "durch den Browser Einstellung definiert"
259
- #~ msgid "otherwise: "
260
- #~ msgstr "sonst :"
261
 
2
  msgstr ""
3
  "Project-Id-Version: polylang\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-11-22 09:39+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: F. Demarle\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: \n"
14
+ "X-Poedit-Country: \n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: polylang.php:194
23
+ #@ polylang
24
+ msgid "Error: Upgrade directory doesn't exist!"
25
+ msgstr ""
26
+
27
+ #: polylang.php:195
28
+ #@ polylang
29
+ msgid "Please create"
30
+ msgstr ""
31
+
32
+ #: polylang.php:202
33
+ #@ polylang
34
+ msgid "Error: Backup of local flags failed!"
35
+ msgstr ""
36
+
37
+ #: polylang.php:203
38
+ #@ polylang
39
+ msgid "Please backup"
40
+ msgstr ""
41
+
42
+ #: polylang.php:218
43
+ #@ polylang
44
+ msgid "Error: Restore of local flags failed!"
45
+ msgstr ""
46
+
47
+ #: polylang.php:219
48
+ #@ polylang
49
+ msgid "Please restore your local flags"
50
+ msgstr ""
51
+
52
+ #: include/add-term-form.php:3
53
+ #: include/admin.php:349
54
+ #: include/admin.php:503
55
+ #: include/edit-term-form.php:6
56
+ #: include/list-table.php:12
57
+ #: include/post-translations.php:4
58
+ #: include/term-translations.php:14
59
+ #@ polylang
60
  msgid "Language"
61
  msgstr "Sprache"
62
 
63
+ #: include/add-term-form.php:10
64
+ #: include/edit-term-form.php:18
65
+ #@ polylang
66
  msgid "Sets the language"
67
  msgstr "definiert die Sprache"
68
 
69
+ #: include/widget.php:5
70
+ #@ polylang
71
  msgid "Displays a language switcher"
72
  msgstr "Zeigen die Sprachenliste"
73
 
74
+ #: include/widget.php:6
75
+ #@ polylang
76
  msgid "Language Switcher"
77
  msgstr "Sprachenliste"
78
 
79
+ #: include/widget.php:64
80
+ #@ polylang
81
+ msgid "Title:"
82
+ msgstr "Titel :"
83
+
84
+ #: include/widget.php:70
85
+ #@ polylang
86
  msgid "Display language names"
87
  msgstr "Zeigen die Sprachen Namen"
88
 
89
+ #: include/widget.php:76
90
+ #@ polylang
91
  msgid "Display flags"
92
  msgstr "Zeigen Flaggen"
93
 
94
+ #: include/widget.php:82
95
+ #@ polylang
96
  msgid "Display as dropdown"
97
  msgstr "Als Auswahlbox darstellen"
98
 
99
+ #: include/admin.php:90
100
+ #@ default
101
  msgid "Settings"
102
  msgstr "Einstellungen"
103
 
104
+ #: include/admin.php:97
105
+ #: include/admin.php:393
106
+ #: include/languages-form.php:14
107
+ #: include/list-table.php:13
108
+ #@ polylang
109
  msgid "Languages"
110
  msgstr "Sprachen"
111
 
112
+ #: include/admin.php:310
113
  #, fuzzy
114
+ #@ polylang
115
  msgid "Enter a valid WorPress locale"
116
  msgstr "Das WordPress Locale ist ungültig"
117
 
118
+ #: include/admin.php:311
119
+ #@ polylang
120
  msgid "The language code must be 2 characters long"
121
  msgstr "Der Sprachcode muss 2 Buchstaben lang sein"
122
 
123
+ #: include/admin.php:312
124
+ #@ polylang
125
  msgid "The language code must be unique"
126
  msgstr "Eine andere Sprache hat dem selben Sprachcode"
127
 
128
+ #: include/admin.php:313
129
+ #@ polylang
130
  msgid "The language must have a name"
131
  msgstr "Die Sprache muss einen Namen haben"
132
 
133
+ #: include/admin.php:381
134
+ #@ polylang
135
  msgid "Show all languages"
136
  msgstr "Zeigen alle Sprachen"
137
 
138
+ #: include/admin.php:607
139
+ #@ polylang
140
  msgid "Theme locations and languages"
141
  msgstr "Anordnung im Theme und Sprachen"
142
 
143
+ #: include/admin.php:612
144
  #, php-format
145
+ #@ polylang
146
  msgid "Please go to the %slanguages page%s to set theme locations and languages"
147
  msgstr "Du solltest zu der %sSprachen Seite%s gehen, um Anordnung im Theme und Sprachen zu definieren."
148
 
149
+ #: include/admin.php:624
150
+ #@ polylang
151
  msgid "The widget is displayed for:"
152
  msgstr "Zeigen das Widget für :"
153
 
154
+ #: include/admin.php:627
155
+ #@ polylang
156
  msgid "All languages"
157
  msgstr "Alle Sprachen"
158
 
159
+ #: include/post-metabox.php:3
160
+ #@ polylang
161
  msgid "Page's language:"
162
  msgstr "Sprache für die Seite :"
163
 
164
+ #: include/post-metabox.php:3
165
+ #@ polylang
166
  msgid "Post's language:"
167
  msgstr "Sprache für die Artikel :"
168
 
169
+ #: include/term-translations.php:5
170
+ #: include/term-translations.php:9
171
+ #@ polylang
172
  msgid "Translations"
173
  msgstr "Übersetzungen"
174
 
175
+ #: include/term-translations.php:14
176
+ #@ polylang
177
  msgid "Translation"
178
  msgstr "Übersetzung"
179
 
180
+ #: include/list-table.php:32
181
+ #: include/post-translations.php:6
182
+ #: include/post-translations.php:28
183
+ #: include/term-translations.php:14
184
+ #: include/term-translations.php:75
185
+ #@ polylang
186
  msgid "Edit"
187
  msgstr "Bearbeiten"
188
 
189
+ #: include/post-translations.php:33
190
+ #: include/term-translations.php:61
191
+ #@ polylang
192
  msgid "Add new"
193
  msgstr "Hinzufügen"
194
 
195
+ #: include/list-table.php:33
196
+ #@ polylang
197
  msgid "Delete"
198
  msgstr "Löschen"
199
 
200
+ #: include/languages-form.php:50
201
+ #: include/list-table.php:50
202
+ #@ polylang
203
  msgid "Full name"
204
  msgstr "Name"
205
 
206
+ #: include/languages-form.php:56
207
+ #: include/list-table.php:51
208
  #, fuzzy
209
+ #@ polylang
210
  msgid "Locale"
211
  msgstr "Locale"
212
 
213
+ #: include/list-table.php:52
214
+ #@ polylang
215
  msgid "Code"
216
  msgstr "Code"
217
 
218
+ #: include/list-table.php:53
219
+ #@ polylang
220
  msgid "Posts"
221
  msgstr "Artikel"
222
 
223
+ #: include/calendar.php:88
224
+ #: include/calendar.php:96
225
+ #, php-format
226
+ #@ default
227
+ msgid "View posts for %1$s %2$s"
228
+ msgstr ""
229
+
230
+ #: include/languages-form.php:33
231
+ #@ polylang
232
  msgid "Edit language"
233
  msgstr "Sprache bearbeiten"
234
 
235
+ #: include/languages-form.php:33
236
+ #: include/languages-form.php:67
237
+ #@ polylang
238
  msgid "Add new language"
239
  msgstr "Neue Sprache hinzufügen"
240
 
241
+ #: include/languages-form.php:52
242
+ #@ polylang
243
  msgid "The name is how it is displayed on your site (for example: English)."
244
  msgstr "Dieser Name wird dann auf der Website angezeigt (beispielweise : Deutsch)"
245
 
246
+ #: include/languages-form.php:58
247
+ #@ polylang
248
  msgid "Wordpress Locale for the language (for example: en_US). You will need to install the .mo file for this language."
249
  msgstr "Wordpress Locale für die Sprache (beispielweise : de_DE). Du musst die .mo Datei für diese Sprache installieren."
250
 
251
+ #: include/languages-form.php:62
252
+ #@ polylang
253
  msgid "Language code"
254
  msgstr "Sprachcode"
255
 
256
+ #: include/languages-form.php:64
257
+ #@ polylang
258
  msgid "2-letters ISO 639-1 language code (for example: en)"
259
  msgstr "2 Buchstaben ISO 639-1 Sprachcode (beispielweise : de)"
260
 
261
+ #: include/languages-form.php:67
262
+ #@ default
263
  msgid "Update"
264
  msgstr "Aktualisieren"
265
 
266
+ #: include/languages-form.php:79
267
+ #@ polylang
268
  msgid "Menus"
269
  msgstr "Menüs"
270
 
271
+ #: include/languages-form.php:87
272
+ #@ polylang
273
  msgid "Theme location"
274
  msgstr "Anordnung im Theme"
275
 
276
+ #: include/languages-form.php:131
277
+ #@ polylang
278
  msgid "Options"
279
  msgstr "Einstellungen"
280
 
281
+ #: include/languages-form.php:140
282
+ #@ polylang
283
  msgid "Default language"
284
  msgstr "Standard Sprache"
285
 
286
+ #: include/languages-form.php:169
287
  #, fuzzy
288
+ #@ polylang
289
  msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
290
  msgstr "Es gibt Artikel, Seite, Kategorien oder Schlagwörter ohne Sprache definiert. Willst du alle zu standard Sprache definieren ?"
291
 
292
+ #: include/languages-form.php:177
293
+ #@ polylang
294
  msgid "Detect browser language"
295
  msgstr "Browser Spracherkennung"
296
 
297
+ #: include/languages-form.php:183
298
+ #@ polylang
299
  msgid "When the front page is visited, set the language according to the browser preference"
300
  msgstr "Wenn die Startseite besucht ist, definiert die Sprache durch den Browser Einstellung"
301
 
302
+ #: include/languages-form.php:190
303
+ #@ polylang
304
  msgid "URL modifications"
305
  msgstr "URL Veränderung"
306
 
307
+ #: include/languages-form.php:196
308
+ #@ polylang
309
+ msgid "Keep /language/ in pretty permalinks. Example:"
310
  msgstr "/language/ in Permalinks behalten. Zum Beispiel :"
311
 
312
+ #: include/languages-form.php:204
313
+ #@ polylang
314
+ msgid "Remove /language/ in pretty permalinks. Example:"
315
  msgstr "/language/ in Permalinks entfernen. Zum Beispiel :"
316
 
317
+ #: include/languages-form.php:212
318
+ #@ polylang
319
  msgid "Hide URL language information for default language"
320
  msgstr "URL Informationen für die Standardsprache verstecken"
321
 
322
+ #: include/post-translations.php:1
323
+ #@ polylang
324
  msgid "ID of pages in other languages:"
325
  msgstr "ID für die Seiten in andere Sprache :"
326
 
327
+ #: include/post-translations.php:1
328
+ #@ polylang
329
  msgid "ID of posts in other languages:"
330
  msgstr "ID für die Artikel in andere Sprache :"
331
 
332
+ #: include/post-translations.php:5
333
+ #@ polylang
334
  msgid "Page ID"
335
  msgstr "ID für die Seite"
336
 
337
+ #: include/post-translations.php:5
338
+ #@ polylang
339
  msgid "Post ID"
340
  msgstr "ID für die Artikel"
341
 
342
+ #: include/personal-options.php:3
343
+ #@ polylang
344
  msgid "Admin language"
345
  msgstr "Adminsprache"
346
 
347
+ #. translators: Calendar caption: 1: month name, 2: 4-digit year
348
+ #: include/calendar.php:62
349
+ #, php-format
350
+ #@ default
351
+ msgctxt "calendar caption"
352
+ msgid "%1$s %2$s"
353
+ msgstr ""
 
 
 
354
 
languages/polylang-fr_FR.mo CHANGED
Binary file
languages/polylang-fr_FR.po CHANGED
@@ -2,255 +2,350 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: polylang\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-11-14 21:57+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: F. Demarle\n"
8
  "Language-Team: \n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2: nplural=n>1\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: _e;__;_c\n"
16
  "X-Poedit-Basepath: .\n"
 
17
  "X-Poedit-SearchPath-0: ..\n"
18
- "X-Poedit-SearchPath-1: ../include\n"
19
-
20
- #: ../include/edit-term-form.php:6
21
- #: ../include/admin.php:348
22
- #: ../include/admin.php:502
23
- #: ../include/term-translations.php:14
24
- #: ../include/add-term-form.php:3
25
- #: ../include/list-table.php:12
26
- #: ../include/post-translations.php:4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid "Language"
28
  msgstr "Langue"
29
 
30
- #: ../include/edit-term-form.php:18
31
- #: ../include/add-term-form.php:10
 
32
  msgid "Sets the language"
33
  msgstr "Définit la langue"
34
 
35
- #: ../include/widget.php:5
 
36
  msgid "Displays a language switcher"
37
- msgstr "Affiche la liste des langues "
38
 
39
- #: ../include/widget.php:6
 
40
  msgid "Language Switcher"
41
  msgstr "Liste des langues"
42
 
43
- #: ../include/widget.php:50
 
 
 
 
 
 
44
  msgid "Display language names"
45
- msgstr "Afficher le nom des langues "
46
 
47
- #: ../include/widget.php:56
 
48
  msgid "Display flags"
49
  msgstr "Afficher les drapeaux"
50
 
51
- #: ../include/widget.php:62
 
52
  msgid "Display as dropdown"
53
  msgstr "Afficher comme liste déroulante"
54
 
55
- #: ../include/admin.php:90
 
56
  msgid "Settings"
57
  msgstr "Réglages"
58
 
59
- #: ../include/admin.php:97
60
- #: ../include/admin.php:392
61
- #: ../include/list-table.php:13
62
- #: ../include/languages-form.php:14
 
63
  msgid "Languages"
64
  msgstr "Langues"
65
 
66
- #: ../include/admin.php:309
 
67
  msgid "Enter a valid WorPress locale"
68
  msgstr "Entrez un code local WordPress valide"
69
 
70
- #: ../include/admin.php:310
 
71
  msgid "The language code must be 2 characters long"
72
  msgstr "Le code de la langue doit avoir 2 lettres"
73
 
74
- #: ../include/admin.php:311
 
75
  msgid "The language code must be unique"
76
  msgstr "Le code de la langue doit être unique"
77
 
78
- #: ../include/admin.php:312
 
79
  msgid "The language must have a name"
80
  msgstr "La langue doit avoir un nom"
81
 
82
- #: ../include/admin.php:380
 
83
  msgid "Show all languages"
84
  msgstr "Afficher toutes les langues"
85
 
86
- #: ../include/admin.php:607
 
87
  msgid "Theme locations and languages"
88
  msgstr "Emplacements du thème et langues"
89
 
90
- #: ../include/admin.php:612
91
  #, php-format
 
92
  msgid "Please go to the %slanguages page%s to set theme locations and languages"
93
  msgstr "Aller à la %spage langues%s pour définir les emplacements du thème et les langues "
94
 
95
- #: ../include/admin.php:624
 
96
  msgid "The widget is displayed for:"
97
  msgstr "Afficher le widget pour :"
98
 
99
- #: ../include/admin.php:627
 
100
  msgid "All languages"
101
  msgstr "Toutes les langues"
102
 
103
- #: ../include/post-metabox.php:3
 
104
  msgid "Page's language:"
105
  msgstr "Langue de la page"
106
 
107
- #: ../include/post-metabox.php:3
 
108
  msgid "Post's language:"
109
  msgstr "Langue de l'article"
110
 
111
- #: ../include/term-translations.php:5
112
- #: ../include/term-translations.php:9
 
113
  msgid "Translations"
114
  msgstr "Traductions"
115
 
116
- #: ../include/term-translations.php:14
 
117
  msgid "Translation"
118
  msgstr "Traduction"
119
 
120
- #: ../include/term-translations.php:14
121
- #: ../include/term-translations.php:75
122
- #: ../include/list-table.php:32
123
- #: ../include/post-translations.php:6
124
- #: ../include/post-translations.php:28
 
125
  msgid "Edit"
126
  msgstr "Modifier"
127
 
128
- #: ../include/term-translations.php:61
129
- #: ../include/post-translations.php:33
 
130
  msgid "Add new"
131
  msgstr "Ajouter"
132
 
133
- #: ../include/list-table.php:33
 
134
  msgid "Delete"
135
  msgstr "Supprimer"
136
 
137
- #: ../include/list-table.php:50
138
- #: ../include/languages-form.php:50
 
139
  msgid "Full name"
140
  msgstr "Nom"
141
 
142
- #: ../include/list-table.php:51
143
- #: ../include/languages-form.php:56
 
144
  msgid "Locale"
145
  msgstr "Code local"
146
 
147
- #: ../include/list-table.php:52
 
148
  msgid "Code"
149
  msgstr "Code"
150
 
151
- #: ../include/list-table.php:53
 
152
  msgid "Posts"
153
  msgstr "Articles"
154
 
155
- #: ../include/languages-form.php:33
 
 
 
 
 
 
 
 
156
  msgid "Edit language"
157
  msgstr "Modifier la langue"
158
 
159
- #: ../include/languages-form.php:33
160
- #: ../include/languages-form.php:70
 
161
  msgid "Add new language"
162
  msgstr "Ajouter une nouvelle langue"
163
 
164
- #: ../include/languages-form.php:52
 
165
  msgid "The name is how it is displayed on your site (for example: English)."
166
  msgstr "Le nom est utilisé un peu partout sur le site (par exemple : Français)"
167
 
168
- #: ../include/languages-form.php:58
 
169
  msgid "Wordpress Locale for the language (for example: en_US). You will need to install the .mo file for this language."
170
  msgstr "Code local utilisé par Wordpress pour la langue (par exemple : fr_FR). Vous aurez besoin d'installer les fichiers .mo correspondant"
171
 
172
- #: ../include/languages-form.php:62
 
173
  msgid "Language code"
174
  msgstr "Code de la langue"
175
 
176
- #: ../include/languages-form.php:64
 
177
  msgid "2-letters ISO 639-1 language code (for example: en)"
178
  msgstr "Code ISO 639-1 à 2 lettres (par exemple : fr)"
179
 
180
- #: ../include/languages-form.php:68
 
181
  msgid "Update"
182
  msgstr "Mettre à jour"
183
 
184
- #: ../include/languages-form.php:82
 
185
  msgid "Menus"
186
  msgstr "Menus"
187
 
188
- #: ../include/languages-form.php:90
 
189
  msgid "Theme location"
190
  msgstr "Emplacement du thème"
191
 
192
- #: ../include/languages-form.php:134
 
193
  msgid "Options"
194
  msgstr "Options"
195
 
196
- #: ../include/languages-form.php:143
 
197
  msgid "Default language"
198
  msgstr "Langue par défaut"
199
 
200
- #: ../include/languages-form.php:172
 
201
  msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
202
  msgstr "Il y a des articles, pages, catégories ou tags sans langue définie. Voulez-vous leur attribuer la langue par défaut ?"
203
 
204
- #: ../include/languages-form.php:180
 
205
  msgid "Detect browser language"
206
  msgstr "Détecter la langue du navigateur"
207
 
208
- #: ../include/languages-form.php:186
 
209
  msgid "When the front page is visited, set the language according to the browser preference"
210
  msgstr "Lorsque la page d'accueil est visitée pour la première fois, le visiteur est redirigé à la bonne URL en fonction des préférences de langue de son navigateur"
211
 
212
- #: ../include/languages-form.php:193
 
213
  msgid "URL modifications"
214
  msgstr "Modifications des URL"
215
 
216
- #: ../include/languages-form.php:199
217
- msgid "Keep /language/ in pretty permalinks. Example: "
 
218
  msgstr "Conserve /language/ dans les permaliens. Exemple :"
219
 
220
- #: ../include/languages-form.php:207
221
- msgid "Remove /language/ in pretty permalinks. Example: "
 
222
  msgstr "Supprime /language/ dans les permaliens. Exemple :"
223
 
224
- #: ../include/languages-form.php:215
 
225
  msgid "Hide URL language information for default language"
226
  msgstr "Cacher l'information de langue dans l'URL pour la langue par défaut"
227
 
228
- #: ../include/post-translations.php:1
 
229
  msgid "ID of pages in other languages:"
230
  msgstr "ID des pages dans les autres langues"
231
 
232
- #: ../include/post-translations.php:1
 
233
  msgid "ID of posts in other languages:"
234
  msgstr "ID des articles dans les autres langues"
235
 
236
- #: ../include/post-translations.php:5
 
237
  msgid "Page ID"
238
  msgstr "ID de la page"
239
 
240
- #: ../include/post-translations.php:5
 
241
  msgid "Post ID"
242
  msgstr "ID de l'article"
243
 
244
- #: ../include/personal-options.php:3
 
245
  msgid "Admin language"
246
  msgstr "Langue pour l'interface d'administration"
247
 
248
- #~ msgid "Title:"
249
- #~ msgstr "Titre :"
250
- #~ msgid "The front page default language is : "
251
- #~ msgstr "La langue par défaut de la page d'accueil est :"
252
- #~ msgid "set by the browser preference"
253
- #~ msgstr "définie par les préférences du navigateur"
254
- #~ msgid "otherwise: "
255
- #~ msgstr "sinon :"
256
 
2
  msgstr ""
3
  "Project-Id-Version: polylang\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-11-22 09:41+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: F. Demarle\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: \n"
14
+ "X-Poedit-Country: \n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: .\n"
18
+ "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: polylang.php:194
23
+ #@ polylang
24
+ msgid "Error: Upgrade directory doesn't exist!"
25
+ msgstr "Erreur : Le répertoire de mise à jour n'existe pas"
26
+
27
+ #: polylang.php:195
28
+ #@ polylang
29
+ msgid "Please create"
30
+ msgstr "Créez le répertoire"
31
+
32
+ #: polylang.php:202
33
+ #@ polylang
34
+ msgid "Error: Backup of local flags failed!"
35
+ msgstr "Erreur : La sauvegarde des drapeaux personnalisés a échoué"
36
+
37
+ #: polylang.php:203
38
+ #@ polylang
39
+ msgid "Please backup"
40
+ msgstr "Sauvegardez"
41
+
42
+ #: polylang.php:218
43
+ #@ polylang
44
+ msgid "Error: Restore of local flags failed!"
45
+ msgstr "Erreur : La restauration des drapeaux personnalisés a échoué"
46
+
47
+ #: polylang.php:219
48
+ #@ polylang
49
+ msgid "Please restore your local flags"
50
+ msgstr "Restaurez vos drapeaux personnalisés"
51
+
52
+ #: include/add-term-form.php:3
53
+ #: include/admin.php:349
54
+ #: include/admin.php:503
55
+ #: include/edit-term-form.php:6
56
+ #: include/list-table.php:12
57
+ #: include/post-translations.php:4
58
+ #: include/term-translations.php:14
59
+ #@ polylang
60
  msgid "Language"
61
  msgstr "Langue"
62
 
63
+ #: include/add-term-form.php:10
64
+ #: include/edit-term-form.php:18
65
+ #@ polylang
66
  msgid "Sets the language"
67
  msgstr "Définit la langue"
68
 
69
+ #: include/widget.php:5
70
+ #@ polylang
71
  msgid "Displays a language switcher"
72
+ msgstr "Affiche la liste des langues"
73
 
74
+ #: include/widget.php:6
75
+ #@ polylang
76
  msgid "Language Switcher"
77
  msgstr "Liste des langues"
78
 
79
+ #: include/widget.php:64
80
+ #@ polylang
81
+ msgid "Title:"
82
+ msgstr "Titre : truc"
83
+
84
+ #: include/widget.php:70
85
+ #@ polylang
86
  msgid "Display language names"
87
+ msgstr "Afficher le nom des langues"
88
 
89
+ #: include/widget.php:76
90
+ #@ polylang
91
  msgid "Display flags"
92
  msgstr "Afficher les drapeaux"
93
 
94
+ #: include/widget.php:82
95
+ #@ polylang
96
  msgid "Display as dropdown"
97
  msgstr "Afficher comme liste déroulante"
98
 
99
+ #: include/admin.php:90
100
+ #@ default
101
  msgid "Settings"
102
  msgstr "Réglages"
103
 
104
+ #: include/admin.php:97
105
+ #: include/admin.php:393
106
+ #: include/languages-form.php:14
107
+ #: include/list-table.php:13
108
+ #@ polylang
109
  msgid "Languages"
110
  msgstr "Langues"
111
 
112
+ #: include/admin.php:310
113
+ #@ polylang
114
  msgid "Enter a valid WorPress locale"
115
  msgstr "Entrez un code local WordPress valide"
116
 
117
+ #: include/admin.php:311
118
+ #@ polylang
119
  msgid "The language code must be 2 characters long"
120
  msgstr "Le code de la langue doit avoir 2 lettres"
121
 
122
+ #: include/admin.php:312
123
+ #@ polylang
124
  msgid "The language code must be unique"
125
  msgstr "Le code de la langue doit être unique"
126
 
127
+ #: include/admin.php:313
128
+ #@ polylang
129
  msgid "The language must have a name"
130
  msgstr "La langue doit avoir un nom"
131
 
132
+ #: include/admin.php:381
133
+ #@ polylang
134
  msgid "Show all languages"
135
  msgstr "Afficher toutes les langues"
136
 
137
+ #: include/admin.php:607
138
+ #@ polylang
139
  msgid "Theme locations and languages"
140
  msgstr "Emplacements du thème et langues"
141
 
142
+ #: include/admin.php:612
143
  #, php-format
144
+ #@ polylang
145
  msgid "Please go to the %slanguages page%s to set theme locations and languages"
146
  msgstr "Aller à la %spage langues%s pour définir les emplacements du thème et les langues "
147
 
148
+ #: include/admin.php:624
149
+ #@ polylang
150
  msgid "The widget is displayed for:"
151
  msgstr "Afficher le widget pour :"
152
 
153
+ #: include/admin.php:627
154
+ #@ polylang
155
  msgid "All languages"
156
  msgstr "Toutes les langues"
157
 
158
+ #: include/post-metabox.php:3
159
+ #@ polylang
160
  msgid "Page's language:"
161
  msgstr "Langue de la page"
162
 
163
+ #: include/post-metabox.php:3
164
+ #@ polylang
165
  msgid "Post's language:"
166
  msgstr "Langue de l'article"
167
 
168
+ #: include/term-translations.php:5
169
+ #: include/term-translations.php:9
170
+ #@ polylang
171
  msgid "Translations"
172
  msgstr "Traductions"
173
 
174
+ #: include/term-translations.php:14
175
+ #@ polylang
176
  msgid "Translation"
177
  msgstr "Traduction"
178
 
179
+ #: include/list-table.php:32
180
+ #: include/post-translations.php:6
181
+ #: include/post-translations.php:28
182
+ #: include/term-translations.php:14
183
+ #: include/term-translations.php:75
184
+ #@ polylang
185
  msgid "Edit"
186
  msgstr "Modifier"
187
 
188
+ #: include/post-translations.php:33
189
+ #: include/term-translations.php:61
190
+ #@ polylang
191
  msgid "Add new"
192
  msgstr "Ajouter"
193
 
194
+ #: include/list-table.php:33
195
+ #@ polylang
196
  msgid "Delete"
197
  msgstr "Supprimer"
198
 
199
+ #: include/languages-form.php:50
200
+ #: include/list-table.php:50
201
+ #@ polylang
202
  msgid "Full name"
203
  msgstr "Nom"
204
 
205
+ #: include/languages-form.php:56
206
+ #: include/list-table.php:51
207
+ #@ polylang
208
  msgid "Locale"
209
  msgstr "Code local"
210
 
211
+ #: include/list-table.php:52
212
+ #@ polylang
213
  msgid "Code"
214
  msgstr "Code"
215
 
216
+ #: include/list-table.php:53
217
+ #@ polylang
218
  msgid "Posts"
219
  msgstr "Articles"
220
 
221
+ #: include/calendar.php:88
222
+ #: include/calendar.php:96
223
+ #, php-format
224
+ #@ default
225
+ msgid "View posts for %1$s %2$s"
226
+ msgstr ""
227
+
228
+ #: include/languages-form.php:33
229
+ #@ polylang
230
  msgid "Edit language"
231
  msgstr "Modifier la langue"
232
 
233
+ #: include/languages-form.php:33
234
+ #: include/languages-form.php:67
235
+ #@ polylang
236
  msgid "Add new language"
237
  msgstr "Ajouter une nouvelle langue"
238
 
239
+ #: include/languages-form.php:52
240
+ #@ polylang
241
  msgid "The name is how it is displayed on your site (for example: English)."
242
  msgstr "Le nom est utilisé un peu partout sur le site (par exemple : Français)"
243
 
244
+ #: include/languages-form.php:58
245
+ #@ polylang
246
  msgid "Wordpress Locale for the language (for example: en_US). You will need to install the .mo file for this language."
247
  msgstr "Code local utilisé par Wordpress pour la langue (par exemple : fr_FR). Vous aurez besoin d'installer les fichiers .mo correspondant"
248
 
249
+ #: include/languages-form.php:62
250
+ #@ polylang
251
  msgid "Language code"
252
  msgstr "Code de la langue"
253
 
254
+ #: include/languages-form.php:64
255
+ #@ polylang
256
  msgid "2-letters ISO 639-1 language code (for example: en)"
257
  msgstr "Code ISO 639-1 à 2 lettres (par exemple : fr)"
258
 
259
+ #: include/languages-form.php:67
260
+ #@ default
261
  msgid "Update"
262
  msgstr "Mettre à jour"
263
 
264
+ #: include/languages-form.php:79
265
+ #@ polylang
266
  msgid "Menus"
267
  msgstr "Menus"
268
 
269
+ #: include/languages-form.php:87
270
+ #@ polylang
271
  msgid "Theme location"
272
  msgstr "Emplacement du thème"
273
 
274
+ #: include/languages-form.php:131
275
+ #@ polylang
276
  msgid "Options"
277
  msgstr "Options"
278
 
279
+ #: include/languages-form.php:140
280
+ #@ polylang
281
  msgid "Default language"
282
  msgstr "Langue par défaut"
283
 
284
+ #: include/languages-form.php:169
285
+ #@ polylang
286
  msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
287
  msgstr "Il y a des articles, pages, catégories ou tags sans langue définie. Voulez-vous leur attribuer la langue par défaut ?"
288
 
289
+ #: include/languages-form.php:177
290
+ #@ polylang
291
  msgid "Detect browser language"
292
  msgstr "Détecter la langue du navigateur"
293
 
294
+ #: include/languages-form.php:183
295
+ #@ polylang
296
  msgid "When the front page is visited, set the language according to the browser preference"
297
  msgstr "Lorsque la page d'accueil est visitée pour la première fois, le visiteur est redirigé à la bonne URL en fonction des préférences de langue de son navigateur"
298
 
299
+ #: include/languages-form.php:190
300
+ #@ polylang
301
  msgid "URL modifications"
302
  msgstr "Modifications des URL"
303
 
304
+ #: include/languages-form.php:196
305
+ #@ polylang
306
+ msgid "Keep /language/ in pretty permalinks. Example:"
307
  msgstr "Conserve /language/ dans les permaliens. Exemple :"
308
 
309
+ #: include/languages-form.php:204
310
+ #@ polylang
311
+ msgid "Remove /language/ in pretty permalinks. Example:"
312
  msgstr "Supprime /language/ dans les permaliens. Exemple :"
313
 
314
+ #: include/languages-form.php:212
315
+ #@ polylang
316
  msgid "Hide URL language information for default language"
317
  msgstr "Cacher l'information de langue dans l'URL pour la langue par défaut"
318
 
319
+ #: include/post-translations.php:1
320
+ #@ polylang
321
  msgid "ID of pages in other languages:"
322
  msgstr "ID des pages dans les autres langues"
323
 
324
+ #: include/post-translations.php:1
325
+ #@ polylang
326
  msgid "ID of posts in other languages:"
327
  msgstr "ID des articles dans les autres langues"
328
 
329
+ #: include/post-translations.php:5
330
+ #@ polylang
331
  msgid "Page ID"
332
  msgstr "ID de la page"
333
 
334
+ #: include/post-translations.php:5
335
+ #@ polylang
336
  msgid "Post ID"
337
  msgstr "ID de l'article"
338
 
339
+ #: include/personal-options.php:3
340
+ #@ polylang
341
  msgid "Admin language"
342
  msgstr "Langue pour l'interface d'administration"
343
 
344
+ #. translators: Calendar caption: 1: month name, 2: 4-digit year
345
+ #: include/calendar.php:62
346
+ #, php-format
347
+ #@ default
348
+ msgctxt "calendar caption"
349
+ msgid "%1$s %2$s"
350
+ msgstr ""
 
351
 
languages/polylang-ru_RU.mo CHANGED
Binary file
languages/polylang-ru_RU.po CHANGED
@@ -2,251 +2,349 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: polylang\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-11-14 21:57+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: YoYurec <yoyurec@gmail.com>\n"
8
  "Language-Team: \n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "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"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: _e;__;_c\n"
16
- "X-Poedit-Basepath: .\n"
17
  "X-Poedit-Language: Russian\n"
18
  "X-Poedit-Country: RUSSIAN FEDERATION\n"
 
 
 
 
19
  "X-Poedit-SearchPath-0: ..\n"
20
- "X-Poedit-SearchPath-1: ../include\n"
21
-
22
- #: ../include/edit-term-form.php:6
23
- #: ../include/admin.php:348
24
- #: ../include/admin.php:502
25
- #: ../include/term-translations.php:14
26
- #: ../include/add-term-form.php:3
27
- #: ../include/list-table.php:12
28
- #: ../include/post-translations.php:4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Language"
30
  msgstr "Язык"
31
 
32
- #: ../include/edit-term-form.php:18
33
- #: ../include/add-term-form.php:10
 
34
  msgid "Sets the language"
35
  msgstr "Устанавливает язык"
36
 
37
- #: ../include/widget.php:5
 
38
  msgid "Displays a language switcher"
39
  msgstr "Показывает переключатель языков"
40
 
41
- #: ../include/widget.php:6
 
42
  msgid "Language Switcher"
43
  msgstr "Переключатель языков"
44
 
45
- #: ../include/widget.php:50
 
 
 
 
 
 
46
  msgid "Display language names"
47
  msgstr "Показывать названия языков"
48
 
49
- #: ../include/widget.php:56
 
50
  msgid "Display flags"
51
  msgstr "Показывать флаги"
52
 
53
- #: ../include/widget.php:62
 
54
  msgid "Display as dropdown"
55
  msgstr "Показывать как выпадающий список"
56
 
57
- #: ../include/admin.php:90
 
58
  msgid "Settings"
59
  msgstr "Настройки"
60
 
61
- #: ../include/admin.php:97
62
- #: ../include/admin.php:392
63
- #: ../include/list-table.php:13
64
- #: ../include/languages-form.php:14
 
65
  msgid "Languages"
66
  msgstr "Языки"
67
 
68
- #: ../include/admin.php:309
 
69
  msgid "Enter a valid WorPress locale"
70
  msgstr "Введите корректную WordPress локаль"
71
 
72
- #: ../include/admin.php:310
 
73
  msgid "The language code must be 2 characters long"
74
  msgstr "Код языка должен состоять из 2-х символов"
75
 
76
- #: ../include/admin.php:311
 
77
  msgid "The language code must be unique"
78
  msgstr "Код языка должен быть уникальным"
79
 
80
- #: ../include/admin.php:312
 
81
  msgid "The language must have a name"
82
  msgstr "У языка должно быть название"
83
 
84
- #: ../include/admin.php:380
 
85
  msgid "Show all languages"
86
  msgstr "Показать все языки"
87
 
88
- #: ../include/admin.php:607
 
89
  msgid "Theme locations and languages"
90
  msgstr "Расположение темы и языков"
91
 
92
- #: ../include/admin.php:612
 
93
  #, php-format
94
  msgid "Please go to the %slanguages page%s to set theme locations and languages"
95
- msgstr "Перейдите на %slanguages page% для указания расположения темы и языков"
96
 
97
- #: ../include/admin.php:624
 
98
  msgid "The widget is displayed for:"
99
  msgstr "Показывать виджет для"
100
 
101
- #: ../include/admin.php:627
 
102
  msgid "All languages"
103
  msgstr "Все языки"
104
 
105
- #: ../include/post-metabox.php:3
 
106
  msgid "Page's language:"
107
  msgstr "Язык страницы"
108
 
109
- #: ../include/post-metabox.php:3
 
110
  msgid "Post's language:"
111
  msgstr "Язык записи"
112
 
113
- #: ../include/term-translations.php:5
114
- #: ../include/term-translations.php:9
 
115
  msgid "Translations"
116
  msgstr "Переводы"
117
 
118
- #: ../include/term-translations.php:14
 
119
  msgid "Translation"
120
  msgstr "Перевод"
121
 
122
- #: ../include/term-translations.php:14
123
- #: ../include/term-translations.php:75
124
- #: ../include/list-table.php:32
125
- #: ../include/post-translations.php:6
126
- #: ../include/post-translations.php:28
 
127
  msgid "Edit"
128
  msgstr "Редактировать"
129
 
130
- #: ../include/term-translations.php:61
131
- #: ../include/post-translations.php:33
 
132
  msgid "Add new"
133
  msgstr "Добавить новый"
134
 
135
- #: ../include/list-table.php:33
 
136
  msgid "Delete"
137
  msgstr "Удалить"
138
 
139
- #: ../include/list-table.php:50
140
- #: ../include/languages-form.php:50
 
141
  msgid "Full name"
142
  msgstr "Полное название"
143
 
144
- #: ../include/list-table.php:51
145
- #: ../include/languages-form.php:56
 
146
  msgid "Locale"
147
  msgstr "Локаль"
148
 
149
- #: ../include/list-table.php:52
 
150
  msgid "Code"
151
  msgstr "Код"
152
 
153
- #: ../include/list-table.php:53
 
154
  msgid "Posts"
155
  msgstr "Записи"
156
 
157
- #: ../include/languages-form.php:33
 
 
 
 
 
 
 
 
158
  msgid "Edit language"
159
  msgstr "Редактировать язык"
160
 
161
- #: ../include/languages-form.php:33
162
- #: ../include/languages-form.php:70
 
163
  msgid "Add new language"
164
  msgstr "Добавить новый язык"
165
 
166
- #: ../include/languages-form.php:52
 
167
  msgid "The name is how it is displayed on your site (for example: English)."
168
  msgstr "Название для отображения на сайте (например: Русский)."
169
 
170
- #: ../include/languages-form.php:58
 
171
  msgid "Wordpress Locale for the language (for example: en_US). You will need to install the .mo file for this language."
172
  msgstr "Локаль Wordpress'a для языка (например: ru_RU). Вы должны установить файлы .mo для админ.панели и используемой темы."
173
 
174
- #: ../include/languages-form.php:62
 
175
  msgid "Language code"
176
  msgstr "Код языка"
177
 
178
- #: ../include/languages-form.php:64
 
179
  msgid "2-letters ISO 639-1 language code (for example: en)"
180
  msgstr "2х-буквенный ISO 639-1 код языка (например: ru)"
181
 
182
- #: ../include/languages-form.php:68
 
183
  msgid "Update"
184
  msgstr "Обновить"
185
 
186
- #: ../include/languages-form.php:82
 
187
  msgid "Menus"
188
  msgstr "Меню"
189
 
190
- #: ../include/languages-form.php:90
 
191
  msgid "Theme location"
192
  msgstr "Расположение темы"
193
 
194
- #: ../include/languages-form.php:134
 
195
  msgid "Options"
196
  msgstr "Настройки"
197
 
198
- #: ../include/languages-form.php:143
 
199
  msgid "Default language"
200
  msgstr "Язык по-умолчанию"
201
 
202
- #: ../include/languages-form.php:172
 
203
  msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
204
  msgstr "Найдены записи, страницы, категории или метки без указанния какого-либо языка. Установить им язык по-умолчанию?"
205
 
206
- #: ../include/languages-form.php:180
 
207
  msgid "Detect browser language"
208
  msgstr "Определять язык в браузере"
209
 
210
- #: ../include/languages-form.php:186
 
211
  msgid "When the front page is visited, set the language according to the browser preference"
212
  msgstr "Установить язык сайта согласно настройкам браузера"
213
 
214
- #: ../include/languages-form.php:193
 
215
  msgid "URL modifications"
216
  msgstr "Модификации URL"
217
 
218
- #: ../include/languages-form.php:199
219
- msgid "Keep /language/ in pretty permalinks. Example: "
220
- msgstr "Оставить /language/ в ЧПУ. Пример: "
 
221
 
222
- #: ../include/languages-form.php:207
223
- msgid "Remove /language/ in pretty permalinks. Example: "
224
- msgstr "Удалить /language/ в ЧПУ. Пример: "
 
225
 
226
- #: ../include/languages-form.php:215
 
227
  msgid "Hide URL language information for default language"
228
  msgstr "Спрятать название языка по-умолчанию из URL"
229
 
230
- #: ../include/post-translations.php:1
 
231
  msgid "ID of pages in other languages:"
232
  msgstr "ID страницы на других языках:"
233
 
234
- #: ../include/post-translations.php:1
 
235
  msgid "ID of posts in other languages:"
236
  msgstr "ID записи на других языках:"
237
 
238
- #: ../include/post-translations.php:5
 
239
  msgid "Page ID"
240
  msgstr "ID страницы"
241
 
242
- #: ../include/post-translations.php:5
 
243
  msgid "Post ID"
244
  msgstr "ID записи"
245
 
246
- #: ../include/personal-options.php:3
 
247
  msgid "Admin language"
248
  msgstr "Язык админ.панели"
249
 
250
- msgid "Title:"
251
- msgstr "Titre :"
 
 
 
 
 
252
 
2
  msgstr ""
3
  "Project-Id-Version: polylang\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-11-22 09:49+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: YoYurec <yoyurec@gmail.com>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 
 
13
  "X-Poedit-Language: Russian\n"
14
  "X-Poedit-Country: RUSSIAN FEDERATION\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
+
21
+ #@ polylang
22
+ #: polylang.php:194
23
+ msgid "Error: Upgrade directory doesn't exist!"
24
+ msgstr "Ошибка: Отсутствует папка для обновления!"
25
+
26
+ #@ polylang
27
+ #: polylang.php:195
28
+ msgid "Please create"
29
+ msgstr "Пожалуйста, создайте"
30
+
31
+ #@ polylang
32
+ #: polylang.php:202
33
+ msgid "Error: Backup of local flags failed!"
34
+ msgstr "Ошибка: Не удалось создать резервную копию пользовательских иконок-флагов!"
35
+
36
+ #@ polylang
37
+ #: polylang.php:203
38
+ msgid "Please backup"
39
+ msgstr "Пожалуйста, сделайте резервную копию"
40
+
41
+ #@ polylang
42
+ #: polylang.php:218
43
+ msgid "Error: Restore of local flags failed!"
44
+ msgstr "Ошибка: Не удалось восстановить пользовательские иконки-флаги из резервной копиии!"
45
+
46
+ #@ polylang
47
+ #: polylang.php:219
48
+ msgid "Please restore your local flags"
49
+ msgstr "Пожалуйста, создайте резервную копию пользовательских иконок-флагов!"
50
+
51
+ #@ polylang
52
+ #: include/add-term-form.php:3
53
+ #: include/admin.php:349
54
+ #: include/admin.php:503
55
+ #: include/edit-term-form.php:6
56
+ #: include/list-table.php:12
57
+ #: include/post-translations.php:4
58
+ #: include/term-translations.php:14
59
  msgid "Language"
60
  msgstr "Язык"
61
 
62
+ #@ polylang
63
+ #: include/add-term-form.php:10
64
+ #: include/edit-term-form.php:18
65
  msgid "Sets the language"
66
  msgstr "Устанавливает язык"
67
 
68
+ #@ polylang
69
+ #: include/widget.php:5
70
  msgid "Displays a language switcher"
71
  msgstr "Показывает переключатель языков"
72
 
73
+ #@ polylang
74
+ #: include/widget.php:6
75
  msgid "Language Switcher"
76
  msgstr "Переключатель языков"
77
 
78
+ #@ polylang
79
+ #: include/widget.php:64
80
+ msgid "Title:"
81
+ msgstr "Название:"
82
+
83
+ #@ polylang
84
+ #: include/widget.php:70
85
  msgid "Display language names"
86
  msgstr "Показывать названия языков"
87
 
88
+ #@ polylang
89
+ #: include/widget.php:76
90
  msgid "Display flags"
91
  msgstr "Показывать флаги"
92
 
93
+ #@ polylang
94
+ #: include/widget.php:82
95
  msgid "Display as dropdown"
96
  msgstr "Показывать как выпадающий список"
97
 
98
+ #@ default
99
+ #: include/admin.php:90
100
  msgid "Settings"
101
  msgstr "Настройки"
102
 
103
+ #@ polylang
104
+ #: include/admin.php:97
105
+ #: include/admin.php:393
106
+ #: include/languages-form.php:14
107
+ #: include/list-table.php:13
108
  msgid "Languages"
109
  msgstr "Языки"
110
 
111
+ #@ polylang
112
+ #: include/admin.php:310
113
  msgid "Enter a valid WorPress locale"
114
  msgstr "Введите корректную WordPress локаль"
115
 
116
+ #@ polylang
117
+ #: include/admin.php:311
118
  msgid "The language code must be 2 characters long"
119
  msgstr "Код языка должен состоять из 2-х символов"
120
 
121
+ #@ polylang
122
+ #: include/admin.php:312
123
  msgid "The language code must be unique"
124
  msgstr "Код языка должен быть уникальным"
125
 
126
+ #@ polylang
127
+ #: include/admin.php:313
128
  msgid "The language must have a name"
129
  msgstr "У языка должно быть название"
130
 
131
+ #@ polylang
132
+ #: include/admin.php:381
133
  msgid "Show all languages"
134
  msgstr "Показать все языки"
135
 
136
+ #@ polylang
137
+ #: include/admin.php:607
138
  msgid "Theme locations and languages"
139
  msgstr "Расположение темы и языков"
140
 
141
+ #@ polylang
142
+ #: include/admin.php:612
143
  #, php-format
144
  msgid "Please go to the %slanguages page%s to set theme locations and languages"
145
+ msgstr "Перейдите на %slanguages page%s для указания расположения темы и языков"
146
 
147
+ #@ polylang
148
+ #: include/admin.php:624
149
  msgid "The widget is displayed for:"
150
  msgstr "Показывать виджет для"
151
 
152
+ #@ polylang
153
+ #: include/admin.php:627
154
  msgid "All languages"
155
  msgstr "Все языки"
156
 
157
+ #@ polylang
158
+ #: include/post-metabox.php:3
159
  msgid "Page's language:"
160
  msgstr "Язык страницы"
161
 
162
+ #@ polylang
163
+ #: include/post-metabox.php:3
164
  msgid "Post's language:"
165
  msgstr "Язык записи"
166
 
167
+ #@ polylang
168
+ #: include/term-translations.php:5
169
+ #: include/term-translations.php:9
170
  msgid "Translations"
171
  msgstr "Переводы"
172
 
173
+ #@ polylang
174
+ #: include/term-translations.php:14
175
  msgid "Translation"
176
  msgstr "Перевод"
177
 
178
+ #@ polylang
179
+ #: include/list-table.php:32
180
+ #: include/post-translations.php:6
181
+ #: include/post-translations.php:28
182
+ #: include/term-translations.php:14
183
+ #: include/term-translations.php:75
184
  msgid "Edit"
185
  msgstr "Редактировать"
186
 
187
+ #@ polylang
188
+ #: include/post-translations.php:33
189
+ #: include/term-translations.php:61
190
  msgid "Add new"
191
  msgstr "Добавить новый"
192
 
193
+ #@ polylang
194
+ #: include/list-table.php:33
195
  msgid "Delete"
196
  msgstr "Удалить"
197
 
198
+ #@ polylang
199
+ #: include/languages-form.php:50
200
+ #: include/list-table.php:50
201
  msgid "Full name"
202
  msgstr "Полное название"
203
 
204
+ #@ polylang
205
+ #: include/languages-form.php:56
206
+ #: include/list-table.php:51
207
  msgid "Locale"
208
  msgstr "Локаль"
209
 
210
+ #@ polylang
211
+ #: include/list-table.php:52
212
  msgid "Code"
213
  msgstr "Код"
214
 
215
+ #@ polylang
216
+ #: include/list-table.php:53
217
  msgid "Posts"
218
  msgstr "Записи"
219
 
220
+ #@ default
221
+ #: include/calendar.php:88
222
+ #: include/calendar.php:96
223
+ #, php-format
224
+ msgid "View posts for %1$s %2$s"
225
+ msgstr "Показать записи для %1$s %2$s"
226
+
227
+ #@ polylang
228
+ #: include/languages-form.php:33
229
  msgid "Edit language"
230
  msgstr "Редактировать язык"
231
 
232
+ #@ polylang
233
+ #: include/languages-form.php:33
234
+ #: include/languages-form.php:67
235
  msgid "Add new language"
236
  msgstr "Добавить новый язык"
237
 
238
+ #@ polylang
239
+ #: include/languages-form.php:52
240
  msgid "The name is how it is displayed on your site (for example: English)."
241
  msgstr "Название для отображения на сайте (например: Русский)."
242
 
243
+ #@ polylang
244
+ #: include/languages-form.php:58
245
  msgid "Wordpress Locale for the language (for example: en_US). You will need to install the .mo file for this language."
246
  msgstr "Локаль Wordpress'a для языка (например: ru_RU). Вы должны установить файлы .mo для админ.панели и используемой темы."
247
 
248
+ #@ polylang
249
+ #: include/languages-form.php:62
250
  msgid "Language code"
251
  msgstr "Код языка"
252
 
253
+ #@ polylang
254
+ #: include/languages-form.php:64
255
  msgid "2-letters ISO 639-1 language code (for example: en)"
256
  msgstr "2х-буквенный ISO 639-1 код языка (например: ru)"
257
 
258
+ #@ default
259
+ #: include/languages-form.php:67
260
  msgid "Update"
261
  msgstr "Обновить"
262
 
263
+ #@ polylang
264
+ #: include/languages-form.php:79
265
  msgid "Menus"
266
  msgstr "Меню"
267
 
268
+ #@ polylang
269
+ #: include/languages-form.php:87
270
  msgid "Theme location"
271
  msgstr "Расположение темы"
272
 
273
+ #@ polylang
274
+ #: include/languages-form.php:131
275
  msgid "Options"
276
  msgstr "Настройки"
277
 
278
+ #@ polylang
279
+ #: include/languages-form.php:140
280
  msgid "Default language"
281
  msgstr "Язык по-умолчанию"
282
 
283
+ #@ polylang
284
+ #: include/languages-form.php:169
285
  msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
286
  msgstr "Найдены записи, страницы, категории или метки без указанния какого-либо языка. Установить им язык по-умолчанию?"
287
 
288
+ #@ polylang
289
+ #: include/languages-form.php:177
290
  msgid "Detect browser language"
291
  msgstr "Определять язык в браузере"
292
 
293
+ #@ polylang
294
+ #: include/languages-form.php:183
295
  msgid "When the front page is visited, set the language according to the browser preference"
296
  msgstr "Установить язык сайта согласно настройкам браузера"
297
 
298
+ #@ polylang
299
+ #: include/languages-form.php:190
300
  msgid "URL modifications"
301
  msgstr "Модификации URL"
302
 
303
+ #@ polylang
304
+ #: include/languages-form.php:196
305
+ msgid "Keep /language/ in pretty permalinks. Example:"
306
+ msgstr "Оставить /language/ в ЧПУ. Пример:"
307
 
308
+ #@ polylang
309
+ #: include/languages-form.php:204
310
+ msgid "Remove /language/ in pretty permalinks. Example:"
311
+ msgstr "Удалить /language/ в ЧПУ. Пример:"
312
 
313
+ #@ polylang
314
+ #: include/languages-form.php:212
315
  msgid "Hide URL language information for default language"
316
  msgstr "Спрятать название языка по-умолчанию из URL"
317
 
318
+ #@ polylang
319
+ #: include/post-translations.php:1
320
  msgid "ID of pages in other languages:"
321
  msgstr "ID страницы на других языках:"
322
 
323
+ #@ polylang
324
+ #: include/post-translations.php:1
325
  msgid "ID of posts in other languages:"
326
  msgstr "ID записи на других языках:"
327
 
328
+ #@ polylang
329
+ #: include/post-translations.php:5
330
  msgid "Page ID"
331
  msgstr "ID страницы"
332
 
333
+ #@ polylang
334
+ #: include/post-translations.php:5
335
  msgid "Post ID"
336
  msgstr "ID записи"
337
 
338
+ #@ polylang
339
+ #: include/personal-options.php:3
340
  msgid "Admin language"
341
  msgstr "Язык админ.панели"
342
 
343
+ #@ default
344
+ #. translators: Calendar caption: 1: month name, 2: 4-digit year
345
+ #: include/calendar.php:62
346
+ #, php-format
347
+ msgctxt "calendar caption"
348
+ msgid "%1$s %2$s"
349
+ msgstr "%1$s %2$s"
350
 
languages/polylang.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: polylang\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-11-14 21:57+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: F. Demarle\n"
8
  "Language-Team: \n"
@@ -12,14 +12,38 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2: nplural=n>1\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: _e;__;_c\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
  "X-Poedit-SearchPath-1: ../include\n"
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #: ../include/edit-term-form.php:6
21
- #: ../include/admin.php:348
22
- #: ../include/admin.php:502
23
  #: ../include/term-translations.php:14
24
  #: ../include/add-term-form.php:3
25
  #: ../include/list-table.php:12
@@ -40,15 +64,19 @@ msgstr ""
40
  msgid "Language Switcher"
41
  msgstr ""
42
 
43
- #: ../include/widget.php:50
 
 
 
 
44
  msgid "Display language names"
45
  msgstr ""
46
 
47
- #: ../include/widget.php:56
48
  msgid "Display flags"
49
  msgstr ""
50
 
51
- #: ../include/widget.php:62
52
  msgid "Display as dropdown"
53
  msgstr ""
54
 
@@ -57,29 +85,29 @@ msgid "Settings"
57
  msgstr ""
58
 
59
  #: ../include/admin.php:97
60
- #: ../include/admin.php:392
61
  #: ../include/list-table.php:13
62
  #: ../include/languages-form.php:14
63
  msgid "Languages"
64
  msgstr ""
65
 
66
- #: ../include/admin.php:309
67
  msgid "Enter a valid WorPress locale"
68
  msgstr ""
69
 
70
- #: ../include/admin.php:310
71
  msgid "The language code must be 2 characters long"
72
  msgstr ""
73
 
74
- #: ../include/admin.php:311
75
  msgid "The language code must be unique"
76
  msgstr ""
77
 
78
- #: ../include/admin.php:312
79
  msgid "The language must have a name"
80
  msgstr ""
81
 
82
- #: ../include/admin.php:380
83
  msgid "Show all languages"
84
  msgstr ""
85
 
@@ -152,12 +180,23 @@ msgstr ""
152
  msgid "Posts"
153
  msgstr ""
154
 
 
 
 
 
 
 
 
 
 
 
 
155
  #: ../include/languages-form.php:33
156
  msgid "Edit language"
157
  msgstr ""
158
 
159
  #: ../include/languages-form.php:33
160
- #: ../include/languages-form.php:70
161
  msgid "Add new language"
162
  msgstr ""
163
 
@@ -177,51 +216,51 @@ msgstr ""
177
  msgid "2-letters ISO 639-1 language code (for example: en)"
178
  msgstr ""
179
 
180
- #: ../include/languages-form.php:68
181
  msgid "Update"
182
  msgstr ""
183
 
184
- #: ../include/languages-form.php:82
185
  msgid "Menus"
186
  msgstr ""
187
 
188
- #: ../include/languages-form.php:90
189
  msgid "Theme location"
190
  msgstr ""
191
 
192
- #: ../include/languages-form.php:134
193
  msgid "Options"
194
  msgstr ""
195
 
196
- #: ../include/languages-form.php:143
197
  msgid "Default language"
198
  msgstr ""
199
 
200
- #: ../include/languages-form.php:172
201
  msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
202
  msgstr ""
203
 
204
- #: ../include/languages-form.php:180
205
  msgid "Detect browser language"
206
  msgstr ""
207
 
208
- #: ../include/languages-form.php:186
209
  msgid "When the front page is visited, set the language according to the browser preference"
210
  msgstr ""
211
 
212
- #: ../include/languages-form.php:193
213
  msgid "URL modifications"
214
  msgstr ""
215
 
216
- #: ../include/languages-form.php:199
217
- msgid "Keep /language/ in pretty permalinks. Example: "
218
  msgstr ""
219
 
220
- #: ../include/languages-form.php:207
221
- msgid "Remove /language/ in pretty permalinks. Example: "
222
  msgstr ""
223
 
224
- #: ../include/languages-form.php:215
225
  msgid "Hide URL language information for default language"
226
  msgstr ""
227
 
@@ -245,6 +284,3 @@ msgstr ""
245
  msgid "Admin language"
246
  msgstr ""
247
 
248
- #~ msgid "Title:"
249
- #~ msgstr "Titre :"
250
-
2
  msgstr ""
3
  "Project-Id-Version: polylang\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-11-22 09:45+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: F. Demarle\n"
8
  "Language-Team: \n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2: nplural=n>1\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: _e;__;_x\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
  "X-Poedit-SearchPath-1: ../include\n"
19
 
20
+ #: ../polylang.php:194
21
+ msgid "Error: Upgrade directory doesn't exist!"
22
+ msgstr ""
23
+
24
+ #: ../polylang.php:195
25
+ msgid "Please create"
26
+ msgstr ""
27
+
28
+ #: ../polylang.php:202
29
+ msgid "Error: Backup of local flags failed!"
30
+ msgstr ""
31
+
32
+ #: ../polylang.php:203
33
+ msgid "Please backup"
34
+ msgstr ""
35
+
36
+ #: ../polylang.php:218
37
+ msgid "Error: Restore of local flags failed!"
38
+ msgstr ""
39
+
40
+ #: ../polylang.php:219
41
+ msgid "Please restore your local flags"
42
+ msgstr ""
43
+
44
  #: ../include/edit-term-form.php:6
45
+ #: ../include/admin.php:349
46
+ #: ../include/admin.php:503
47
  #: ../include/term-translations.php:14
48
  #: ../include/add-term-form.php:3
49
  #: ../include/list-table.php:12
64
  msgid "Language Switcher"
65
  msgstr ""
66
 
67
+ #: ../include/widget.php:64
68
+ msgid "Title:"
69
+ msgstr ""
70
+
71
+ #: ../include/widget.php:70
72
  msgid "Display language names"
73
  msgstr ""
74
 
75
+ #: ../include/widget.php:76
76
  msgid "Display flags"
77
  msgstr ""
78
 
79
+ #: ../include/widget.php:82
80
  msgid "Display as dropdown"
81
  msgstr ""
82
 
85
  msgstr ""
86
 
87
  #: ../include/admin.php:97
88
+ #: ../include/admin.php:393
89
  #: ../include/list-table.php:13
90
  #: ../include/languages-form.php:14
91
  msgid "Languages"
92
  msgstr ""
93
 
94
+ #: ../include/admin.php:310
95
  msgid "Enter a valid WorPress locale"
96
  msgstr ""
97
 
98
+ #: ../include/admin.php:311
99
  msgid "The language code must be 2 characters long"
100
  msgstr ""
101
 
102
+ #: ../include/admin.php:312
103
  msgid "The language code must be unique"
104
  msgstr ""
105
 
106
+ #: ../include/admin.php:313
107
  msgid "The language must have a name"
108
  msgstr ""
109
 
110
+ #: ../include/admin.php:381
111
  msgid "Show all languages"
112
  msgstr ""
113
 
180
  msgid "Posts"
181
  msgstr ""
182
 
183
+ #: ../include/calendar.php:62
184
+ #, php-format
185
+ msgid "%1$s %2$s"
186
+ msgstr ""
187
+
188
+ #: ../include/calendar.php:88
189
+ #: ../include/calendar.php:96
190
+ #, php-format
191
+ msgid "View posts for %1$s %2$s"
192
+ msgstr ""
193
+
194
  #: ../include/languages-form.php:33
195
  msgid "Edit language"
196
  msgstr ""
197
 
198
  #: ../include/languages-form.php:33
199
+ #: ../include/languages-form.php:67
200
  msgid "Add new language"
201
  msgstr ""
202
 
216
  msgid "2-letters ISO 639-1 language code (for example: en)"
217
  msgstr ""
218
 
219
+ #: ../include/languages-form.php:67
220
  msgid "Update"
221
  msgstr ""
222
 
223
+ #: ../include/languages-form.php:79
224
  msgid "Menus"
225
  msgstr ""
226
 
227
+ #: ../include/languages-form.php:87
228
  msgid "Theme location"
229
  msgstr ""
230
 
231
+ #: ../include/languages-form.php:131
232
  msgid "Options"
233
  msgstr ""
234
 
235
+ #: ../include/languages-form.php:140
236
  msgid "Default language"
237
  msgstr ""
238
 
239
+ #: ../include/languages-form.php:169
240
  msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
241
  msgstr ""
242
 
243
+ #: ../include/languages-form.php:177
244
  msgid "Detect browser language"
245
  msgstr ""
246
 
247
+ #: ../include/languages-form.php:183
248
  msgid "When the front page is visited, set the language according to the browser preference"
249
  msgstr ""
250
 
251
+ #: ../include/languages-form.php:190
252
  msgid "URL modifications"
253
  msgstr ""
254
 
255
+ #: ../include/languages-form.php:196
256
+ msgid "Keep /language/ in pretty permalinks. Example:"
257
  msgstr ""
258
 
259
+ #: ../include/languages-form.php:204
260
+ msgid "Remove /language/ in pretty permalinks. Example:"
261
  msgstr ""
262
 
263
+ #: ../include/languages-form.php:212
264
  msgid "Hide URL language information for default language"
265
  msgstr ""
266
 
284
  msgid "Admin language"
285
  msgstr ""
286
 
 
 
 
polylang.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Polylang
4
  Plugin URI: http://wordpress.org/extend/plugins/polylang/
5
- Version: 0.4.3
6
  Author: F. Demarle
7
  Description: Adds multilingual capability to Wordpress
8
  */
@@ -23,7 +23,7 @@ Description: Adds multilingual capability to Wordpress
23
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
  */
25
 
26
- define('POLYLANG_VERSION', '0.4.3');
27
 
28
  define('POLYLANG_DIR', dirname(__FILE__));
29
  define('INC_DIR', POLYLANG_DIR.'/include');
@@ -178,7 +178,6 @@ class Polylang extends Polylang_Base {
178
  }
179
 
180
  // saves the local_flags directory before upgrade
181
- // FIXME cannot test before release of v0.4.3
182
  function pre_upgrade() {
183
  // nothing to backup
184
  if (!@is_dir($flags_dir = POLYLANG_DIR . '/local_flags'))
@@ -191,10 +190,10 @@ class Polylang extends Polylang_Base {
191
 
192
  foreach ($upgrade_dirs as $dir) {
193
  if (!@is_dir($dir) && !@mkdir($dir, 0755))
194
- return new WP_Error('polylang_upgrade_error', sprintf('%s<br />%s <strong>%s</strong>',
195
  __("Error: Upgrade directory doesn't exist!", 'polylang'),
196
  __('Please create', 'polylang'),
197
- $dir
198
  ));
199
  }
200
 
@@ -202,14 +201,13 @@ class Polylang extends Polylang_Base {
202
  return new WP_Error('polylang_backup_error', sprintf('%s<br />%s <strong>%s</strong>',
203
  __('Error: Backup of local flags failed!', 'polylang'),
204
  __('Please backup', 'polylang'),
205
- $flags_dir
206
  ));
207
 
208
  return true;
209
  }
210
 
211
  // restores the local_flags directory after upgrade
212
- // FIXME cannot test before release of v0.4.3
213
  function post_upgrade() {
214
  // nothing to restore
215
  if (!@is_dir($upgrade_dir = WP_CONTENT_DIR . '/upgrade/polylang/local_flags'))
@@ -219,7 +217,7 @@ class Polylang extends Polylang_Base {
219
  return new WP_Error('polylang_restore_error', sprintf('%s<br />%s (<strong>%s</strong>)',
220
  __('Error: Restore of local flags failed!', 'polylang'),
221
  __('Please restore your local flags', 'polylang'),
222
- $upgrade_dir
223
  ));
224
 
225
  @rmdir(WP_CONTENT_DIR . '/upgrade/polylang');
@@ -395,6 +393,7 @@ class Polylang extends Polylang_Base {
395
  if (is_404() || is_attachment())
396
  return $this->get_preferred_language();
397
 
 
398
  if (is_admin()) {
399
  if (isset($post_ID))
400
  $lang = $this->get_post_language($post_ID);
@@ -495,7 +494,7 @@ class Polylang extends Polylang_Base {
495
  }
496
 
497
  // sets the language for posts page in case the front page displays a static page
498
- if ($page_for_posts = get_option('page_for_posts') &&
499
  isset($query->queried_object_id) &&
500
  $this->get_post($query->queried_object_id, $this->get_post_language($page_for_posts)) == $page_for_posts
501
  ) {
2
  /*
3
  Plugin Name: Polylang
4
  Plugin URI: http://wordpress.org/extend/plugins/polylang/
5
+ Version: 0.4.4
6
  Author: F. Demarle
7
  Description: Adds multilingual capability to Wordpress
8
  */
23
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
  */
25
 
26
+ define('POLYLANG_VERSION', '0.4.4');
27
 
28
  define('POLYLANG_DIR', dirname(__FILE__));
29
  define('INC_DIR', POLYLANG_DIR.'/include');
178
  }
179
 
180
  // saves the local_flags directory before upgrade
 
181
  function pre_upgrade() {
182
  // nothing to backup
183
  if (!@is_dir($flags_dir = POLYLANG_DIR . '/local_flags'))
190
 
191
  foreach ($upgrade_dirs as $dir) {
192
  if (!@is_dir($dir) && !@mkdir($dir, 0755))
193
+ return new WP_Error('polylang_upgrade_error', sprintf('%s<br />%s <strong>%s</strong>',
194
  __("Error: Upgrade directory doesn't exist!", 'polylang'),
195
  __('Please create', 'polylang'),
196
+ esc_attr($dir)
197
  ));
198
  }
199
 
201
  return new WP_Error('polylang_backup_error', sprintf('%s<br />%s <strong>%s</strong>',
202
  __('Error: Backup of local flags failed!', 'polylang'),
203
  __('Please backup', 'polylang'),
204
+ esc_attr($flags_dir)
205
  ));
206
 
207
  return true;
208
  }
209
 
210
  // restores the local_flags directory after upgrade
 
211
  function post_upgrade() {
212
  // nothing to restore
213
  if (!@is_dir($upgrade_dir = WP_CONTENT_DIR . '/upgrade/polylang/local_flags'))
217
  return new WP_Error('polylang_restore_error', sprintf('%s<br />%s (<strong>%s</strong>)',
218
  __('Error: Restore of local flags failed!', 'polylang'),
219
  __('Please restore your local flags', 'polylang'),
220
+ esc_attr($upgrade_dir)
221
  ));
222
 
223
  @rmdir(WP_CONTENT_DIR . '/upgrade/polylang');
393
  if (is_404() || is_attachment())
394
  return $this->get_preferred_language();
395
 
396
+
397
  if (is_admin()) {
398
  if (isset($post_ID))
399
  $lang = $this->get_post_language($post_ID);
494
  }
495
 
496
  // sets the language for posts page in case the front page displays a static page
497
+ if (($page_for_posts = get_option('page_for_posts')) &&
498
  isset($query->queried_object_id) &&
499
  $this->get_post($query->queried_object_id, $this->get_post_language($page_for_posts)) == $page_for_posts
500
  ) {
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Chouby
3
  Tags: bilingual, language, i18n, international, l10n, localization, multilingual, translate, translation, widget
4
  Requires at least: 3.1
5
  Tested up to: 3.3
6
- Stable tag: 0.4.3
7
 
8
  Polylang adds multilingual support to WordPress. You set a language for each post and it will be displayed only when browsing this language.
9
 
@@ -30,7 +30,7 @@ The plugin admin interface is currently available in:
30
  * English
31
  * French
32
  * German
33
- * Russian contributed by [yoyurec](http://wordpress.org/support/profile/yoyurec)
34
 
35
  Other translators are welcome ! [Contact me](http://www.flabellina.com/polylang-contact/). I am especially looking for someone who could replace me for the German translation which I did probably very bad...
36
 
@@ -48,7 +48,7 @@ Don't hesitate to [give your feedback](http://wordpress.org/tags/polylang?forum_
48
 
49
  == Upgrade Notice ==
50
 
51
- Your custom flags in 'polylang/local_flags' directory will be removed when automatically upgrading from v0.4, v0.4.1, v0.4.2. So either do a manual upgrade or backup your custom flags. This problem should be solved when upgrading from v0.4.3 to a higher version.
52
 
53
  == Installation ==
54
 
@@ -93,6 +93,11 @@ There are many sources. I included some of the [famfamfam](http://www.famfamfam.
93
 
94
  == Changelog ==
95
 
 
 
 
 
 
96
  = 0.4.3 (2011-11-19) =
97
 
98
  * Add Russian translation contributed by [yoyurec](http://wordpress.org/support/profile/yoyurec)
3
  Tags: bilingual, language, i18n, international, l10n, localization, multilingual, translate, translation, widget
4
  Requires at least: 3.1
5
  Tested up to: 3.3
6
+ Stable tag: 0.4.4
7
 
8
  Polylang adds multilingual support to WordPress. You set a language for each post and it will be displayed only when browsing this language.
9
 
30
  * English
31
  * French
32
  * German
33
+ * Russian contributed by [yoyurec](http://yoyurec.in.ua)
34
 
35
  Other translators are welcome ! [Contact me](http://www.flabellina.com/polylang-contact/). I am especially looking for someone who could replace me for the German translation which I did probably very bad...
36
 
48
 
49
  == Upgrade Notice ==
50
 
51
+ Your custom flags in 'polylang/local_flags' directory will be removed when automatically upgrading from v0.4, v0.4.1, v0.4.2. So either do a manual upgrade or backup your custom flags. This problem is solved when upgrading from v0.4.3 to a higher version.
52
 
53
  == Installation ==
54
 
93
 
94
  == Changelog ==
95
 
96
+ = 0.4.4 (2011-11-28) =
97
+
98
+ * Bug correction: When using a static front page, the translated home page displays posts instead of the translated page
99
+ * Bug correction: Automatic language setting of existing categories and post tags does not work correctly
100
+
101
  = 0.4.3 (2011-11-19) =
102
 
103
  * Add Russian translation contributed by [yoyurec](http://wordpress.org/support/profile/yoyurec)