Polylang - Version 1.5.2

Version Description

Polylang 1.2 introduced major internal changes. More than ever, make a database backup before upgrading from 1.1.6 or older! If you are using a version older than 0.8, please ugrade to 0.9.8 before ugrading to 1.5.2

=

Download this release

Release Info

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

Code changes from version 1.5.1 to 1.5.2

admin/admin-filters.php CHANGED
@@ -86,13 +86,16 @@ class PLL_Admin_Filters extends PLL_Filters {
86
  * @param int $user_id
87
  */
88
  public function personal_options_update($user_id) {
89
- update_user_meta($user_id, 'user_lang', $_POST['user_lang']); // admin language
 
 
90
 
91
  // biography translations
92
  foreach ($this->model->get_languages_list() as $lang) {
93
  $meta = $lang->slug == $this->options['default_lang'] ? 'description' : 'description_'.$lang->slug;
94
- if (!empty($_POST['description_'.$lang->slug]))
95
- update_user_meta($user_id, $meta, $_POST['description_'.$lang->slug]);
 
96
  }
97
  }
98
 
@@ -127,10 +130,12 @@ class PLL_Admin_Filters extends PLL_Filters {
127
  // hidden informations to modify the biography form with js
128
  foreach ($this->model->get_languages_list() as $lang) {
129
  $meta = $lang->slug == $this->options['default_lang'] ? 'description' : 'description_'.$lang->slug;
 
 
130
  printf('<input type="hidden" class="biography" name="%s-%s" value="%s" />',
131
  esc_attr($lang->slug),
132
  esc_attr($lang->name),
133
- esc_attr(get_user_meta($profileuser->ID, $meta, true))
134
  );
135
  }
136
  }
86
  * @param int $user_id
87
  */
88
  public function personal_options_update($user_id) {
89
+ // admin language
90
+ $user_lang = in_array($_POST['user_lang'], $this->model->get_languages_list(array('fields' => 'locale'))) ? $_POST['user_lang'] : 0;
91
+ update_user_meta($user_id, 'user_lang', $_POST['user_lang']);
92
 
93
  // biography translations
94
  foreach ($this->model->get_languages_list() as $lang) {
95
  $meta = $lang->slug == $this->options['default_lang'] ? 'description' : 'description_'.$lang->slug;
96
+ $description = empty($_POST['description_'.$lang->slug]) ? '' : trim($_POST['description_'.$lang->slug]);
97
+ $description = apply_filters('pre_user_description', $description); // applies WP default filter wp_filter_kses
98
+ update_user_meta($user_id, $meta, $description);
99
  }
100
  }
101
 
130
  // hidden informations to modify the biography form with js
131
  foreach ($this->model->get_languages_list() as $lang) {
132
  $meta = $lang->slug == $this->options['default_lang'] ? 'description' : 'description_'.$lang->slug;
133
+ $description = apply_filters('user_description', get_user_meta($profileuser->ID, $meta, true)); // applies WP default filter wp_kses_data
134
+
135
  printf('<input type="hidden" class="biography" name="%s-%s" value="%s" />',
136
  esc_attr($lang->slug),
137
  esc_attr($lang->name),
138
+ esc_attr($description)
139
  );
140
  }
141
  }
include/model.php CHANGED
@@ -245,10 +245,13 @@ class PLL_Model {
245
  * @param string $type either 'post' or 'term'
246
  */
247
  protected function clean_translations_terms($type) {
 
 
248
  global $wpdb;
249
  $ids = $wpdb->get_col("SELECT term_id FROM $wpdb->term_taxonomy WHERE taxonomy IN ('{$type}_translations') AND count = 0");
250
  foreach ($ids as $id)
251
  wp_delete_term((int) $id, $type . '_translations');
 
252
  }
253
 
254
  /*
245
  * @param string $type either 'post' or 'term'
246
  */
247
  protected function clean_translations_terms($type) {
248
+ // FIXME does nothing since 1.5.2 as count seems not to be reliable enough
249
+ /*
250
  global $wpdb;
251
  $ids = $wpdb->get_col("SELECT term_id FROM $wpdb->term_taxonomy WHERE taxonomy IN ('{$type}_translations') AND count = 0");
252
  foreach ($ids as $id)
253
  wp_delete_term((int) $id, $type . '_translations');
254
+ */
255
  }
256
 
257
  /*
include/walker-dropdown.php CHANGED
@@ -20,7 +20,7 @@ class PLL_Walker_Dropdown extends Walker {
20
  $output .= sprintf(
21
  "\t".'<option value="%s"%s>%s</option>'."\n",
22
  esc_attr($element->$value),
23
- isset($args['selected']) && $args['selected'] == $element->$value ? ' selected="selected"' : '',
24
  esc_html($element->name)
25
  );
26
  }
20
  $output .= sprintf(
21
  "\t".'<option value="%s"%s>%s</option>'."\n",
22
  esc_attr($element->$value),
23
+ isset($args['selected']) && $args['selected'] === $element->$value ? ' selected="selected"' : '',
24
  esc_html($element->name)
25
  );
26
  }
languages/polylang-tr_TR.mo CHANGED
Binary file
languages/polylang-tr_TR.po CHANGED
@@ -1,611 +1,602 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: polylang\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: darchws <darchws@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=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
- #: admin/view-about.php:3
21
- #, php-format
22
- msgid "Polylang is provided with an extensive %sdocumentation%s (in English only). It includes information on how to set up your multilingual site and use it on a daily basis, a FAQ, as well as a documentation for programmers to adapt their plugins and themes."
23
- msgstr "Polylang geniş bir %sdocumentation%s (sadece ingilizce) temin etmektedir. Belge içerisinde; çoklu dil desteğinin kendi sitenize nasıl kurulacağı ve kolay kullanımı, sık sorulan sorulan ve geliştiriciler için kendi temalarını ve eklentilerini uyumlu hale getirmeleri için gerekli bilgiler bulunmaktadır."
24
-
25
- #: admin/view-about.php:9
26
- #, php-format
27
- msgid "You will also find useful information in the %ssupport forum%s. However don't forget to make a search before posting a new topic."
28
- msgstr "Ayrıca %ssupport forum%s 'dan da yararlı bilgiler bulabilirsiniz. Ama yeni bir başlık açmadan önce arama yapmayı unutmayın."
29
-
30
- #: admin/view-about.php:16
31
- #, php-format
32
- msgid "Polylang is free of charge and is released under the same license as WordPress, the %sGPL%s."
33
- msgstr "Polylang'ın kullanımı ücretsizdir ve dağıtımı Wordpress ile aynı lisans sözleşmesi %sGPL%s altında yapılmıştır."
34
-
35
- #: admin/view-about.php:22
36
- #, php-format
37
- msgid "If you wonder how you can help the project, just %sread this%s."
38
- msgstr "Eğer bu projeye nasıl katkıda bulunabileceğinizi merak ediyorsanız, %sbunu okuyun%s."
39
-
40
- #: admin/view-about.php:27
41
- msgid "Finally if you like this plugin or if it helps your business, donations to the author are greatly appreciated."
42
- msgstr "Ve son olarak bu eklentiyi beğendiyseniz veya profesyonel anlamda size yararı dokunduysa, proje sahibine yapacağınız parasal destek mutlulukla karşılanacaktır."
43
-
44
- #: admin/admin-filters-post.php:83
45
- #: admin/admin.php:73
46
- #: admin/settings.php:53
47
- #: admin/settings.php:80
48
- #: include/model.php:506
49
- msgid "Languages"
50
- msgstr "Diller"
51
-
52
- #: include/switcher.php:22
53
- msgid "Displays language names"
54
- msgstr "Dil isimlerini görüntüler"
55
-
56
- #: include/switcher.php:23
57
- msgid "Displays flags"
58
- msgstr "Bayrakları görüntüler"
59
-
60
- #: include/switcher.php:24
61
- msgid "Forces link to front page"
62
- msgstr "Bağlantıyı anasayfa yapmak için zorlar"
63
-
64
- #: include/switcher.php:25
65
- msgid "Hides the current language"
66
- msgstr "Geçerli olan dili sakla"
67
-
68
- #: include/switcher.php:29
69
- msgid "Displays as dropdown"
70
- msgstr "Açılır menü halinde görüntüler"
71
-
72
- #: admin/admin.php:252
73
- msgid "Filters content by language"
74
- msgstr ""
75
-
76
- #: admin/admin.php:243
77
- msgid "Show all languages"
78
- msgstr "Tüm dilleri göster"
79
-
80
- #: admin/admin-filters-columns.php:132
81
- #: admin/admin-filters-columns.php:228
82
- msgid "Add new translation"
83
- msgstr "Yeni çeviri ekle"
84
-
85
- #: admin/admin-filters-columns.php:169
86
- #: admin/admin-filters-media.php:58
87
- #: admin/admin-filters-post.php:107
88
- #: admin/admin-filters-term.php:75
89
- #: admin/admin-filters-term.php:112
90
- #: include/model.php:507
91
- msgid "Language"
92
- msgstr "Dil"
93
-
94
- #: admin/table-string.php:111
95
- #: admin/view-translations-media.php:5
96
- #: admin/view-translations-post.php:5
97
- #: admin/view-translations-term.php:6
98
- #: admin/view-translations-term.php:11
99
- msgid "Translations"
100
- msgstr "Çeviriler"
101
-
102
- #: admin/admin-filters-term.php:77
103
- #: admin/admin-filters-term.php:114
104
- msgid "Sets the language"
105
- msgstr "Dili geçerli dil olarak ayarlar."
106
-
107
- #: admin/admin-filters.php:46
108
- msgid "The widget is displayed for:"
109
- msgstr "Bu bileşenin görüntüleneceği dil:"
110
-
111
- #: admin/admin-filters.php:49
112
- #: include/model.php:508
113
- msgid "All languages"
114
- msgstr "Tüm diller"
115
-
116
- #: admin/admin-filters.php:113
117
- msgid "Admin language"
118
- msgstr "Yönetici dili"
119
-
120
- #: admin/admin-filters.php:116
121
- msgid "Wordpress default"
122
- msgstr ""
123
-
124
- #: admin/admin.php:154
125
- #: admin/settings.php:85
126
- msgid "Settings"
127
- msgstr "Ayarlar"
128
-
129
- #: admin/admin-filters.php:146
130
- msgid "Upgrading language files&#8230;"
131
- msgstr "Dil dosyaları güncelleştiriliyor&#8230"
132
-
133
- #: admin/settings.php:45
134
- msgid "About Polylang"
135
- msgstr "Polylang Hakkında"
136
-
137
- #: admin/settings.php:61
138
- msgid "Strings translations"
139
- msgstr "Cümle Çevirileri"
140
-
141
- #: admin/settings.php:84
142
- msgid "Strings translation"
143
- msgstr "Cümle çevirisi"
144
-
145
- #: admin/admin-model.php:285
146
- msgid "Enter a valid WordPress locale"
147
- msgstr "Geçerli bir WordPress adresi girin"
148
-
149
- #: admin/admin-model.php:293
150
- msgid "The language code must be unique"
151
- msgstr "Dil kodu daha önce kullanılmamış olmalı"
152
-
153
- #: admin/admin-model.php:297
154
- msgid "The language must have a name"
155
- msgstr "Girdiğiniz dilin bir ismi olmalı"
156
-
157
- #: admin/admin.php:353
158
- msgid "The language was created, but the WordPress language file was not downloaded. Please install it manually."
159
- msgstr "Dil oluşturuldu fakat WordPress için dil dosyası indirilemedi. Lütfen elden yükleyin."
160
-
161
- #: admin/settings.php:328
162
- msgid "Widget title"
163
- msgstr "Bileşen Başlığı"
164
-
165
- # @ polylang
166
- #: admin/settings.php:346
167
- msgid "Taxonomies"
168
- msgstr ""
169
-
170
- # @ polylang
171
- #: admin/settings.php:347
172
- msgid "Custom fields"
173
- msgstr ""
174
-
175
- # @ polylang
176
- #: admin/settings.php:348
177
- msgid "Comment status"
178
- msgstr ""
179
-
180
- # @ polylang
181
- #: admin/settings.php:349
182
- msgid "Ping status"
183
- msgstr ""
184
-
185
- # @ polylang
186
- #: admin/settings.php:350
187
- msgid "Sticky posts"
188
- msgstr ""
189
-
190
- # @ polylang
191
- #: admin/settings.php:351
192
- msgid "Published date"
193
- msgstr ""
194
-
195
- # @ polylang
196
- #: admin/settings.php:352
197
- msgid "Post format"
198
- msgstr ""
199
-
200
- #: admin/settings.php:353
201
- msgid "Page parent"
202
- msgstr ""
203
-
204
- # @ polylang
205
- #: admin/settings.php:354
206
- msgid "Page template"
207
- msgstr ""
208
-
209
- #: admin/settings.php:355
210
- msgid "Page order"
211
- msgstr ""
212
-
213
- # @ polylang
214
- #: admin/settings.php:356
215
- msgid "Featured image"
216
- msgstr ""
217
-
218
- #: admin/view-languages.php:38
219
- msgid "Edit language"
220
- msgstr "Dili düzenle"
221
-
222
- #: admin/view-languages.php:38
223
- #: admin/view-languages.php:113
224
- msgid "Add new language"
225
- msgstr "Yeni Dil Ekle"
226
-
227
- #: admin/view-languages.php:54
228
- msgid "Choose a language"
229
- msgstr "Dil seç"
230
-
231
- #: admin/view-languages.php:68
232
- msgid "You can choose a language in the list or directly edit it below."
233
- msgstr "Listeden bir dil seçebilirsiniz ya da direk aşağıdaki bölümden düzenleyebilirsiniz."
234
-
235
- #: admin/table-languages.php:74
236
- #: admin/view-languages.php:72
237
- msgid "Full name"
238
- msgstr "Tam İsim"
239
-
240
- #: admin/view-languages.php:74
241
- msgid "The name is how it is displayed on your site (for example: English)."
242
- msgstr "Sitede dilin gösterileceği isim (örneğin: Türkçe)."
243
-
244
- #: admin/table-languages.php:75
245
- #: admin/view-languages.php:78
246
- msgid "Locale"
247
- msgstr "Bölge Kodu"
248
-
249
- #: admin/view-languages.php:83
250
- msgid "Wordpress Locale for the language (for example: en_US). You will need to install the .mo file for this language."
251
- msgstr "WordPress Bölge kodu(örneğin: tr_TR). Bu dilin .mo uzantılı dil dosyasını yüklemeniz gerekiyor."
252
-
253
- #: admin/view-languages.php:87
254
- msgid "Language code"
255
- msgstr "Dil kodu"
256
-
257
- #: admin/view-languages.php:93
258
- msgid "2-letters ISO 639-1 language code (for example: en)"
259
- msgstr "2 harfli ISO 639-1 standardına uygun dil kodu (örneğin: tr)"
260
-
261
- #: admin/view-languages.php:93
262
- msgid "Text direction"
263
- msgstr "Yazma yönü"
264
-
265
- #: admin/view-languages.php:97
266
- msgid "left to right"
267
- msgstr "soldan sağa"
268
-
269
- #: admin/view-languages.php:102
270
- msgid "right to left"
271
- msgstr "sağdan sola"
272
-
273
- #: admin/view-languages.php:104
274
- msgid "Choose the text direction for the language"
275
- msgstr "Dil için yazma yönünü seçin"
276
-
277
- #: admin/table-languages.php:77
278
- #: admin/view-languages.php:108
279
- msgid "Order"
280
- msgstr "Sıralama"
281
-
282
- #: admin/view-languages.php:110
283
- msgid "Position of the language in the language switcher"
284
- msgstr "Dilin dil gösterme ekranındaki sırası"
285
-
286
- #: admin/admin-nav-menu.php:52
287
- #: admin/admin-nav-menu.php:90
288
- #: admin/admin-nav-menu.php:93
289
- #: admin/admin-nav-menu.php:124
290
- #: admin/admin-nav-menu.php:181
291
- #: include/upgrade.php:301
292
- msgid "Language switcher"
293
- msgstr "Dil Değiştirici"
294
-
295
- #: admin/view-languages.php:139
296
- msgid "Search translations"
297
- msgstr ""
298
-
299
- #: admin/view-languages.php:142
300
- msgid "Clean strings translation database"
301
- msgstr ""
302
-
303
- #: admin/view-languages.php:161
304
- msgid "Default language"
305
- msgstr "Varsayılan dil"
306
-
307
- #: admin/view-languages.php:176
308
- msgid "There are posts, pages, categories or tags without language set. Do you want to set them all to default language ?"
309
- msgstr "Dil ayarı belirlenmemiş yazılar, sayfalar, kategoriler ve etiketler var. Hepsi varsayılan dil olarak ayarlansın mı?"
310
-
311
- #: admin/view-languages.php:297
312
- msgid "Detect browser language"
313
- msgstr "Tarayıcı dilini algıla"
314
-
315
- #: admin/view-languages.php:303
316
- msgid "When the front page is visited, set the language according to the browser preference"
317
- msgstr "Anasayfa açıldığında, geçerli dili tarayıcının diline ayarla"
318
-
319
- #: admin/view-languages.php:184
320
- msgid "URL modifications"
321
- msgstr "URL düzenleme"
322
-
323
- #: admin/view-languages.php:241
324
- msgid "Hide URL language information for default language"
325
- msgstr "Varsayılan dil için URL'de dil bilgisini gizle"
326
-
327
- # @ polylang
328
- #: admin/view-languages.php:310
329
- msgid "Media"
330
- msgstr ""
331
-
332
- # @ polylang
333
- #: admin/view-languages.php:316
334
- msgid "Activate languages and translations for media"
335
- msgstr ""
336
-
337
- #: admin/view-languages.php:365
338
- msgid "Synchronization"
339
- msgstr ""
340
-
341
- # @ polylang
342
- #: admin/view-languages.php:324
343
- msgid "Custom post types"
344
- msgstr ""
345
-
346
- # @ polylang
347
- #: admin/view-languages.php:337
348
- msgid "Activate languages and translations for custom post types."
349
- msgstr ""
350
-
351
- # @ polylang
352
- #: admin/view-languages.php:344
353
- msgid "Custom taxonomies"
354
- msgstr ""
355
-
356
- # @ polylang
357
- #: admin/view-languages.php:357
358
- msgid "Activate languages and translations for custom taxonomies."
359
- msgstr ""
360
-
361
- #: admin/admin-filters-post.php:351
362
- #: admin/admin-filters-term.php:502
363
- #: admin/table-languages.php:54
364
- #: admin/view-translations-media.php:21
365
- msgid "Edit"
366
- msgstr "Düzenle"
367
-
368
- #: admin/table-languages.php:60
369
- #: admin/table-string.php:167
370
- msgid "Delete"
371
- msgstr "Sil"
372
-
373
- #: admin/table-languages.php:76
374
- msgid "Code"
375
- msgstr "Dil Kodu"
376
-
377
- #: admin/table-languages.php:78
378
- msgid "Flag"
379
- msgstr "Bayrak"
380
-
381
- #: admin/table-languages.php:79
382
- msgid "Posts"
383
- msgstr "Yazılar"
384
-
385
- #: admin/table-string.php:109
386
- msgid "Name"
387
- msgstr "İsim"
388
-
389
- #: admin/table-string.php:110
390
- msgid "String"
391
- msgstr "Cümle"
392
-
393
- #: admin/admin-filters-post.php:375
394
- #: admin/admin-filters-term.php:528
395
- #: admin/view-translations-media.php:30
396
- msgid "Add new"
397
- msgstr "Yeni ekle"
398
-
399
- #: include/widget-languages.php:16
400
- msgid "Language Switcher"
401
- msgstr "Dil Değiştirme Ekranı"
402
-
403
- #: include/widget-languages.php:16
404
- msgid "Displays a language switcher"
405
- msgstr "Dil değiştirme ekranını görüntüler"
406
-
407
- #: include/widget-languages.php:100
408
- msgid "Title:"
409
- msgstr "Başlık:"
410
-
411
- # @ polylang
412
- #. translators: plugin header field 'Description'
413
- #: polylang.php:0
414
- msgid "Adds multilingual capability to WordPress"
415
- msgstr ""
416
-
417
- #: polylang.php:160
418
- #, php-format
419
- msgid "You are using WordPress %s. Polylang requires at least WordPress %s."
420
- msgstr "Siz WordPress'in %s sürümünü kullanıyorsunuz. Polylang'ı kullanabilmeniz için en az WordPress %s sürümüne ihtiyacınız var."
421
-
422
- # @ polylang
423
- #: include/upgrade.php:76
424
- msgid "Polylang has been deactivated because you upgraded from a too old version."
425
- msgstr ""
426
-
427
- # @ polylang
428
- #: include/upgrade.php:78
429
- #, php-format
430
- msgid "Please upgrade first to %s before ugrading to %s."
431
- msgstr ""
432
-
433
- # @ polylang
434
- #: admin/table-string.php:108
435
- msgid "Group"
436
- msgstr ""
437
-
438
- # @ polylang
439
- #: admin/table-string.php:186
440
- msgid "View all groups"
441
- msgstr ""
442
-
443
- # @ polylang
444
- #: admin/table-languages.php:59
445
- msgid "You are about to permanently delete this language. Are you sure?"
446
- msgstr ""
447
-
448
- # @ polylang
449
- #: admin/view-languages.php:143
450
- msgid "Use this to remove unused strings from database, for example after a plugin has been uninstalled."
451
- msgstr ""
452
-
453
- # @ polylang
454
- #: admin/view-languages.php:374
455
- msgid "The synchronization options allow to maintain exact same values (or translations in the case of taxonomies and page parent) of meta content between the translations of a post or page."
456
- msgstr ""
457
-
458
- #: admin/admin-model.php:289
459
- msgid "The language code contains invalid characters"
460
- msgstr ""
461
-
462
- #: admin/view-languages.php:190
463
- msgid "The language is set from content"
464
- msgstr ""
465
-
466
- # @ polylang
467
- #: admin/view-languages.php:193
468
- msgid "Posts, pages, categories and tags urls are not modified."
469
- msgstr ""
470
-
471
- # @ polylang
472
- #: admin/view-languages.php:199
473
- msgid "The language is set from the directory name in pretty permalinks"
474
- msgstr ""
475
-
476
- # @ polylang
477
- #: admin/view-languages.php:202
478
- #: admin/view-languages.php:211
479
- #: admin/view-languages.php:258
480
- #: admin/view-languages.php:267
481
- msgid "Example:"
482
- msgstr ""
483
-
484
- # @ polylang
485
- #: admin/view-languages.php:208
486
- msgid "The language is set from the subdomain name in pretty permalinks"
487
- msgstr ""
488
-
489
- # @ polylang
490
- #: admin/view-languages.php:217
491
- msgid "The language is set from different domains"
492
- msgstr ""
493
-
494
- #: admin/view-languages.php:255
495
- msgid "Remove /language/ in pretty permalinks"
496
- msgstr ""
497
-
498
- #: admin/view-languages.php:264
499
- msgid "Keep /language/ in pretty permalinks"
500
- msgstr ""
501
-
502
- # @ polylang
503
- #: admin/view-languages.php:279
504
- msgid "The front page url contains the language code instead of the page name or page id"
505
- msgstr ""
506
-
507
- # @ polylang
508
- #: admin/admin-filters-term.php:143
509
- #, php-format
510
- msgid "A translation does already exist for %s"
511
- msgstr ""
512
-
513
- # @ polylang
514
- #: admin/view-languages.php:287
515
- #, php-format
516
- msgid "Example: %s instead of %s"
517
- msgstr ""
518
-
519
- #: admin/admin-model.php:49
520
- msgid "Impossible to add the language."
521
- msgstr ""
522
-
523
- # @ polylang
524
- #: admin/admin-model.php:73
525
- msgid "Language added."
526
- msgstr ""
527
-
528
- # @ polylang
529
- #: admin/admin-model.php:187
530
- msgid "Language deleted."
531
- msgstr ""
532
-
533
- # @ polylang
534
- #: admin/admin-model.php:268
535
- msgid "Language updated."
536
- msgstr ""
537
-
538
- # @ polylang
539
- #: admin/settings.php:203
540
- msgid "Translations updated."
541
- msgstr ""
542
-
543
- #: admin/view-languages.php:89
544
- msgid "Language code - preferably 2-letters ISO 639-1 (for example: en)"
545
- msgstr ""
546
-
547
- #~ msgid "Translation"
548
- #~ msgstr "Çeviri"
549
-
550
- #~ msgid "ID of pages in other languages:"
551
- #~ msgstr "Sayfanın diğer dillerdeki ID'leri:"
552
-
553
- #~ msgid "Page ID"
554
- #~ msgstr "Sayfa ID"
555
-
556
- #~ msgid "Post ID"
557
- #~ msgstr "Yazı ID"
558
-
559
- #~ msgid "No untranslated term"
560
- #~ msgstr "Çevrilmemiş kelime yok"
561
-
562
- #~ msgid ""
563
- #~ "For some reasons, Polylang could not create a table in your database."
564
- #~ msgstr ""
565
- #~ "Bir nedenden dolayı Polylang veritabanınızda gerekli tabloları "
566
- #~ "oluşturamadı."
567
-
568
- #~ msgid "Displays a language switcher at the end of the menu"
569
- #~ msgstr "Dil değiştirme ekranını menünün en altında görüntüler"
570
-
571
- #~ msgid "Theme locations and languages"
572
- #~ msgstr "Tema adresleri ve diller"
573
-
574
- #~ msgid ""
575
- #~ "Please go to the %slanguages page%s to set theme locations and languages"
576
- #~ msgstr ""
577
- #~ "Tema adreslerini ve dilleri ayarlamak için lütfen %slanguages page%s "
578
- #~ "bölümüne gidin"
579
-
580
- #~ msgid "Menus"
581
- #~ msgstr "Menüler"
582
-
583
- #~ msgid "Error: Restore of local flags failed!"
584
- #~ msgstr "Hata: Bayrak resimleriniz eski haline getirilemedi!"
585
-
586
- #~ msgid "Please move your local flags from %s to %s"
587
- #~ msgstr "Lütfen bayrak resimlerinizi %s adresinden %s adresine taşıyın"
588
-
589
- #~ msgid "%1$s %2$s"
590
- #~ msgstr "%1$s %2$s"
591
-
592
- #~ msgid "View posts for %1$s %2$s"
593
- #~ msgstr "%1$s %2$s tarihleri arasındaki yazılara bak"
594
-
595
- #~ msgid "Site Title"
596
- #~ msgstr "Site Başlığı"
597
-
598
- #~ msgid "Tagline"
599
- #~ msgstr "Etiket Satırı"
600
-
601
- #~ msgid "Page's language:"
602
- #~ msgstr "Sayfa'nın dili:"
603
-
604
- #~ msgid "Post's language:"
605
- #~ msgstr "Yazı'nın dili:"
606
-
607
- #~ msgid "None"
608
- #~ msgstr "Yok"
609
-
610
- #~ msgid "Update"
611
- #~ msgstr "Güncelle"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Polylang v1.5\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: Fri Jun 20 2014 09:47:39 GMT+0300 (EEST)\n"
7
+ "Last-Translator: Super Admin <webmaster@abdullahpazarbasi.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: Turkish\n"
10
+ "Plural-Forms: nplurals=1; plural=0\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
+ "X-Poedit-Basepath: .\n"
21
+ "X-Poedit-SearchPath-0: ..\n"
22
+ "X-Poedit-SearchPath-1: ../include\n"
23
+ "X-Loco-Target-Locale: tr_TR\n"
24
+ "X-Generator: Loco - https://localise.biz/"
25
+
26
+ #: admin/view-about.php:3
27
+ #, php-format
28
+ msgid ""
29
+ "Polylang is provided with an extensive %sdocumentation%s (in English only). "
30
+ "It includes information on how to set up your multilingual site and use it "
31
+ "on a daily basis, a FAQ, as well as a documentation for programmers to adapt "
32
+ "their plugins and themes."
33
+ msgstr ""
34
+ "Polylang geniş bir %sdocumentation%s (sadece ingilizce) temin etmektedir. "
35
+ "Belge içerisinde; çoklu dil desteğinin kendi sitenize nasıl kurulacağı ve "
36
+ "kolay kullanımı, sık sorulan sorular ve geliştiriciler için kendi temalarını "
37
+ "ve eklentilerini uyumlu hale getirmeleri için gerekli bilgiler bulunmaktadır."
38
+
39
+ #: admin/view-about.php:9
40
+ #, php-format
41
+ msgid ""
42
+ "You will also find useful information in the %ssupport forum%s. However "
43
+ "don't forget to make a search before posting a new topic."
44
+ msgstr ""
45
+ "Ayrıca %ssupport forum%s 'dan da yararlı bilgilere ulaşabilirsiniz. Ama yeni "
46
+ "bir başlık açmadan önce arama yapmayı unutmayın."
47
+
48
+ #: admin/view-about.php:16
49
+ #, php-format
50
+ msgid ""
51
+ "Polylang is free of charge and is released under the same license as "
52
+ "WordPress, the %sGPL%s."
53
+ msgstr ""
54
+ "Polylang'ın kullanımı ücretsizdir ve dağıtımı Wordpress ile aynı lisans "
55
+ "sözleşmesi %sGPL%s altında yapılmıştır."
56
+
57
+ #: admin/view-about.php:22
58
+ #, php-format
59
+ msgid "If you wonder how you can help the project, just %sread this%s."
60
+ msgstr ""
61
+ "Eğer bu projeye nasıl katkıda bulunabileceğinizi merak ediyorsanız, %sbunu "
62
+ "okuyun%s."
63
+
64
+ #: admin/view-about.php:27
65
+ msgid ""
66
+ "Finally if you like this plugin or if it helps your business, donations to "
67
+ "the author are greatly appreciated."
68
+ msgstr ""
69
+ "Ve son olarak bu eklentiyi beğendiyseniz veya profesyonel anlamda size "
70
+ "yararı dokunduysa, proje sahibine yapacağınız parasal destek mutlulukla "
71
+ "karşılanacaktır."
72
+
73
+ #: admin/admin-filters-post.php:81
74
+ #: admin/admin.php:90
75
+ #: admin/settings.php:53
76
+ #: admin/settings.php:80
77
+ #: include/model.php:538
78
+ msgid "Languages"
79
+ msgstr "Dil"
80
+
81
+ #: include/switcher.php:22
82
+ msgid "Displays language names"
83
+ msgstr "Dil isimlerini görüntüler"
84
+
85
+ #: include/switcher.php:23
86
+ msgid "Displays flags"
87
+ msgstr "Bayrakları görüntüler"
88
+
89
+ #: include/switcher.php:24
90
+ msgid "Forces link to front page"
91
+ msgstr "Bağlantıyı anasayfa yapmak için zorlar"
92
+
93
+ #: include/switcher.php:25
94
+ msgid "Hides the current language"
95
+ msgstr "Geçerli olan dili sakla"
96
+
97
+ #: include/switcher.php:29
98
+ msgid "Displays as dropdown"
99
+ msgstr "Açılır menü halinde görüntüler"
100
+
101
+ #: admin/admin.php:271
102
+ msgid "Filters content by language"
103
+ msgstr "Dile göre içerik filtreleri"
104
+
105
+ #: admin/admin.php:262
106
+ msgid "Show all languages"
107
+ msgstr "Tüm dilleri göster"
108
+
109
+ #: admin/admin-filters-columns.php:132
110
+ #: admin/admin-filters-columns.php:219
111
+ msgid "Add new translation"
112
+ msgstr "Yeni çevri ekle"
113
+
114
+ #: admin/admin-filters-columns.php:166
115
+ #: admin/admin-filters-media.php:55
116
+ #: admin/admin-filters-post.php:107
117
+ #: admin/admin-filters-term.php:77
118
+ #: admin/admin-filters-term.php:116
119
+ #: include/model.php:539
120
+ msgid "Language"
121
+ msgstr "Dil"
122
+
123
+ #: admin/table-string.php:111
124
+ #: admin/view-translations-media.php:5
125
+ #: admin/view-translations-post.php:5
126
+ #: admin/view-translations-term.php:6
127
+ #: admin/view-translations-term.php:11
128
+ msgid "Translations"
129
+ msgstr "Çevriler"
130
+
131
+ #: admin/admin-filters-term.php:79
132
+ #: admin/admin-filters-term.php:118
133
+ msgid "Sets the language"
134
+ msgstr "Dili geçerli dil olarak ayarlar."
135
+
136
+ #: admin/admin-filters.php:45
137
+ msgid "The widget is displayed for:"
138
+ msgstr "Bu bileşenin görüntüleneceği dil:"
139
+
140
+ #: admin/admin-filters.php:48
141
+ #: include/model.php:540
142
+ msgid "All languages"
143
+ msgstr "Tüm diller"
144
+
145
+ #: admin/admin-filters.php:113
146
+ msgid "Admin language"
147
+ msgstr "Yönetici dili"
148
+
149
+ #: admin/admin-filters.php:116
150
+ msgid "Wordpress default"
151
+ msgstr "WordPress varsayılanı"
152
+
153
+ #: admin/admin.php:171
154
+ #: admin/settings.php:85
155
+ msgid "Settings"
156
+ msgstr "Ayarlar"
157
+
158
+ #: admin/admin-filters.php:146
159
+ msgid "Upgrading language files&#8230;"
160
+ msgstr "Dil dosyaları güncelleştiriliyor&#8230"
161
+
162
+ #: admin/settings.php:45
163
+ msgid "About Polylang"
164
+ msgstr "Polylang Hakkında"
165
+
166
+ #: admin/settings.php:61
167
+ msgid "Strings translations"
168
+ msgstr "Cümle çevrisi"
169
+
170
+ #: admin/settings.php:84
171
+ msgid "Strings translation"
172
+ msgstr "Cümle Çevrisi"
173
+
174
+ #: admin/admin-model.php:274
175
+ msgid "Enter a valid WordPress locale"
176
+ msgstr "Geçerli bir WordPress adresi girin"
177
+
178
+ #: admin/admin-model.php:282
179
+ msgid "The language code must be unique"
180
+ msgstr "Dil kodu daha önce kullanılmamış olmalı"
181
+
182
+ #: admin/admin-model.php:286
183
+ msgid "The language must have a name"
184
+ msgstr "Girdiğiniz dilin bir ismi olmalı"
185
+
186
+ #: admin/admin.php:372
187
+ msgid ""
188
+ "The language was created, but the WordPress language file was not downloaded."
189
+ " Please install it manually."
190
+ msgstr ""
191
+ "Dil oluşturuldu fakat WordPress için dil dosyası indirilemedi. Lütfen elden "
192
+ "yükleyin."
193
+
194
+ #: admin/settings.php:330
195
+ msgid "Widget title"
196
+ msgstr "Bileşen Başlığı"
197
+
198
+ # @ polylang
199
+ #: admin/settings.php:348
200
+ msgid "Taxonomies"
201
+ msgstr "Taksonomiler"
202
+
203
+ # @ polylang
204
+ #: admin/settings.php:349
205
+ msgid "Custom fields"
206
+ msgstr "Özel alanlar"
207
+
208
+ # @ polylang
209
+ #: admin/settings.php:350
210
+ msgid "Comment status"
211
+ msgstr "Yorum durumu"
212
+
213
+ # @ polylang
214
+ #: admin/settings.php:351
215
+ msgid "Ping status"
216
+ msgstr "Ping durumu"
217
+
218
+ # @ polylang
219
+ #: admin/settings.php:352
220
+ msgid "Sticky posts"
221
+ msgstr "Yapışkan gönderiler"
222
+
223
+ # @ polylang
224
+ #: admin/settings.php:353
225
+ msgid "Published date"
226
+ msgstr "Yayımlanma tarihi"
227
+
228
+ # @ polylang
229
+ #: admin/settings.php:354
230
+ msgid "Post format"
231
+ msgstr "Gönderi formatı"
232
+
233
+ #: admin/settings.php:355
234
+ msgid "Page parent"
235
+ msgstr "Sayfa ebeveyni"
236
+
237
+ # @ polylang
238
+ #: admin/settings.php:356
239
+ msgid "Page template"
240
+ msgstr "Sayfa şablonu"
241
+
242
+ #: admin/settings.php:357
243
+ msgid "Page order"
244
+ msgstr "Sayfa sırası"
245
+
246
+ # @ polylang
247
+ #: admin/settings.php:358
248
+ msgid "Featured image"
249
+ msgstr "Öne çıkan görsel"
250
+
251
+ #: admin/view-languages.php:38
252
+ msgid "Edit language"
253
+ msgstr "Dili düzenle"
254
+
255
+ #: admin/view-languages.php:38
256
+ #: admin/view-languages.php:113
257
+ msgid "Add new language"
258
+ msgstr "Yeni Dil Ekle"
259
+
260
+ #: admin/view-languages.php:54
261
+ msgid "Choose a language"
262
+ msgstr "Dil Seç"
263
+
264
+ #: admin/view-languages.php:68
265
+ msgid "You can choose a language in the list or directly edit it below."
266
+ msgstr ""
267
+ "Listeden bir dil seçebilirsiniz ya da direk aşağıdaki bölümden "
268
+ "düzenleyebilirsiniz."
269
+
270
+ #: admin/table-languages.php:74
271
+ #: admin/view-languages.php:72
272
+ msgid "Full name"
273
+ msgstr "Tam İsim"
274
+
275
+ #: admin/view-languages.php:74
276
+ msgid "The name is how it is displayed on your site (for example: English)."
277
+ msgstr "Sitede dilin gösterileceği isim (örneğin: Türkçe)."
278
+
279
+ #: admin/table-languages.php:75
280
+ #: admin/view-languages.php:78
281
+ msgid "Locale"
282
+ msgstr "Bölge Kodu"
283
+
284
+ #: admin/view-languages.php:83
285
+ msgid ""
286
+ "Wordpress Locale for the language (for example: en_US). You will need to "
287
+ "install the .mo file for this language."
288
+ msgstr ""
289
+ "Dil için WordPress Bölge Kodu (örneğin: tr_TR). Bu dilin .mo uzantılı dil "
290
+ "dosyasını yüklemeniz gerekiyor."
291
+
292
+ #: admin/view-languages.php:87
293
+ msgid "Language code"
294
+ msgstr "Dil Kodu"
295
+
296
+ #: admin/view-languages.php:93
297
+ msgid "Text direction"
298
+ msgstr "Yazma yönü"
299
+
300
+ #: admin/view-languages.php:97
301
+ msgid "left to right"
302
+ msgstr "soldan sağa"
303
+
304
+ #: admin/view-languages.php:102
305
+ msgid "right to left"
306
+ msgstr "sağdan sola"
307
+
308
+ #: admin/view-languages.php:104
309
+ msgid "Choose the text direction for the language"
310
+ msgstr "Dil için yazma yönünü seçin"
311
+
312
+ #: admin/table-languages.php:77
313
+ #: admin/view-languages.php:108
314
+ msgid "Order"
315
+ msgstr "Sıralama"
316
+
317
+ #: admin/view-languages.php:110
318
+ msgid "Position of the language in the language switcher"
319
+ msgstr "Dilin dil değiştirici listesindeki pozisyonu"
320
+
321
+ #: admin/admin-nav-menu.php:52
322
+ #: admin/admin-nav-menu.php:90
323
+ #: admin/admin-nav-menu.php:93
324
+ #: admin/admin-nav-menu.php:124
325
+ #: admin/admin-nav-menu.php:188
326
+ #: include/upgrade.php:301
327
+ msgid "Language switcher"
328
+ msgstr "Dil Değiştirici"
329
+
330
+ #: admin/view-languages.php:139
331
+ msgid "Search translations"
332
+ msgstr "Çevrilerde ara"
333
+
334
+ #: admin/view-languages.php:142
335
+ msgid "Clean strings translation database"
336
+ msgstr "Cümle çevri veritabanını temizle"
337
+
338
+ #: admin/view-languages.php:161
339
+ msgid "Default language"
340
+ msgstr "Varsayılan dil"
341
+
342
+ #: admin/view-languages.php:176
343
+ msgid ""
344
+ "There are posts, pages, categories or tags without language set. Do you want "
345
+ "to set them all to default language ?"
346
+ msgstr ""
347
+ "Dili belirlenmemiş yazılar, sayfalar, kategoriler ve etiketler var. "
348
+ "Varsayılan dil bunların hepsinin dili olarak ayarlansın mı?"
349
+
350
+ #: admin/view-languages.php:297
351
+ msgid "Detect browser language"
352
+ msgstr "Tarayıcı dilini algıla"
353
+
354
+ #: admin/view-languages.php:303
355
+ msgid ""
356
+ "When the front page is visited, set the language according to the browser "
357
+ "preference"
358
+ msgstr "Anasayfa açıldığında, geçerli dili tarayıcının diline ayarla"
359
+
360
+ #: admin/view-languages.php:184
361
+ msgid "URL modifications"
362
+ msgstr "URL dönüşümleri"
363
+
364
+ #: admin/view-languages.php:241
365
+ msgid "Hide URL language information for default language"
366
+ msgstr "URL'de varsayılan dil için dil belirtecini gizle"
367
+
368
+ # @ polylang
369
+ #: admin/view-languages.php:310
370
+ msgid "Media"
371
+ msgstr "Medya"
372
+
373
+ # @ polylang
374
+ #: admin/view-languages.php:316
375
+ msgid "Activate languages and translations for media"
376
+ msgstr "Medya için diller ve çevrileri etkinleştir"
377
+
378
+ #: admin/view-languages.php:363
379
+ msgid "Synchronization"
380
+ msgstr "Senkronizasyon"
381
+
382
+ # @ polylang
383
+ #: admin/view-languages.php:324
384
+ msgid "Custom post types"
385
+ msgstr "Özel gönderi tipleri"
386
+
387
+ # @ polylang
388
+ #: admin/view-languages.php:337
389
+ msgid "Activate languages and translations for custom post types."
390
+ msgstr "Özel gönderi tipleri için diller ve çevrileri etkinleştir."
391
+
392
+ # @ polylang
393
+ #: admin/view-languages.php:344
394
+ msgid "Custom taxonomies"
395
+ msgstr "Özel taksonomiler"
396
+
397
+ # @ polylang
398
+ #: admin/view-languages.php:357
399
+ msgid "Activate languages and translations for custom taxonomies."
400
+ msgstr "Özel taksonomiler için diller ve çevrileri etkinleştir."
401
+
402
+ #: admin/admin-filters-post.php:370
403
+ #: admin/admin-filters-term.php:579
404
+ #: admin/table-languages.php:54
405
+ #: admin/view-translations-media.php:21
406
+ msgid "Edit"
407
+ msgstr "Düzenle"
408
+
409
+ #: admin/table-languages.php:60
410
+ #: admin/table-string.php:167
411
+ msgid "Delete"
412
+ msgstr "Sil"
413
+
414
+ #: admin/table-languages.php:76
415
+ msgid "Code"
416
+ msgstr "Kod"
417
+
418
+ #: admin/table-languages.php:78
419
+ msgid "Flag"
420
+ msgstr "Bayrak"
421
+
422
+ #: admin/table-languages.php:79
423
+ msgid "Posts"
424
+ msgstr "Yazılar"
425
+
426
+ #: admin/table-string.php:109
427
+ msgid "Name"
428
+ msgstr "İsim"
429
+
430
+ #: admin/table-string.php:110
431
+ msgid "String"
432
+ msgstr "Cümle"
433
+
434
+ #: admin/admin-filters-post.php:375
435
+ #: admin/admin-filters-term.php:528
436
+ #: admin/view-translations-media.php:30
437
+ msgid "Add new"
438
+ msgstr "Yeni ekle"
439
+
440
+ #: include/widget-languages.php:16
441
+ msgid "Language Switcher"
442
+ msgstr "Dil Değiştirme Ekranı"
443
+
444
+ #: include/widget-languages.php:16
445
+ msgid "Displays a language switcher"
446
+ msgstr "Dil değiştirme ekranını görüntüler"
447
+
448
+ #: include/widget-languages.php:100
449
+ msgid "Title:"
450
+ msgstr "Başlık:"
451
+
452
+ # @ polylang
453
+ #. translators: plugin header field 'Description'
454
+ #: polylang.php:0
455
+ msgid "Adds multilingual capability to WordPress"
456
+ msgstr "WordPress'e çoklu-dil becerisi ekler"
457
+
458
+ #: polylang.php:167
459
+ #, php-format
460
+ msgid "You are using WordPress %s. Polylang requires at least WordPress %s."
461
+ msgstr ""
462
+ "Siz WordPress'in %s sürümünü kullanıyorsunuz. Polylang'ı kullanabilmeniz "
463
+ "için en az WordPress %s sürümüne ihtiyacınız var."
464
+
465
+ # @ polylang
466
+ #: include/upgrade.php:76
467
+ msgid "Polylang has been deactivated because you upgraded from a too old version."
468
+ msgstr "Polylang aşırı eski bir versiyondan yükseltmenizden dolayı devredışı durumda."
469
+
470
+ # @ polylang
471
+ #: include/upgrade.php:78
472
+ #, php-format
473
+ msgid "Please upgrade first to %s before ugrading to %s."
474
+ msgstr "Lütfen %2$s elemanını yükseltmeden önce %1$s elemanını yükseltin."
475
+
476
+ # @ polylang
477
+ #: admin/table-string.php:108
478
+ msgid "Group"
479
+ msgstr "Grup"
480
+
481
+ # @ polylang
482
+ #: admin/table-string.php:186
483
+ msgid "View all groups"
484
+ msgstr "Tüm grupları görüntüle"
485
+
486
+ # @ polylang
487
+ #: admin/table-languages.php:59
488
+ msgid "You are about to permanently delete this language. Are you sure?"
489
+ msgstr "Bu dili kalıcı olarak silmek üzeresiniz. Emin misiniz?"
490
+
491
+ # @ polylang
492
+ #: admin/view-languages.php:143
493
+ msgid ""
494
+ "Use this to remove unused strings from database, for example after a plugin "
495
+ "has been uninstalled."
496
+ msgstr ""
497
+ "Kullanılmayan cümleleri veritabanından kaldırmak için bunu kullanın. Örneğin "
498
+ "bir eklentiyi kaldırdıktan sonra."
499
+
500
+ # @ polylang
501
+ #: admin/view-languages.php:374
502
+ msgid ""
503
+ "The synchronization options allow to maintain exact same values (or "
504
+ "translations in the case of taxonomies and page parent) of meta content "
505
+ "between the translations of a post or page."
506
+ msgstr ""
507
+ "Senkronizasyon seçenekleri bir yazı ya da sayfanın çevrileri arasında meta "
508
+ "içeriğin değerlerinin (veya taksonomi ve sayfa ebeveynleri çevrilerinin) tam "
509
+ "olarak aynı kalmasına izin verir."
510
+
511
+ #: admin/admin-model.php:278
512
+ msgid "The language code contains invalid characters"
513
+ msgstr "Dil kodu geçersiz karakterler içeriyor"
514
+
515
+ #: admin/view-languages.php:190
516
+ msgid "The language is set from content"
517
+ msgstr "Dil içerik üzerinden ayarlanır"
518
+
519
+ # @ polylang
520
+ #: admin/view-languages.php:193
521
+ msgid "Posts, pages, categories and tags urls are not modified."
522
+ msgstr ""
523
+ "Yazılar, sayfalar, kategoriler ve etiketlerin URL'leri dönüşüme uğramış "
524
+ "olmaz."
525
+
526
+ # @ polylang
527
+ #: admin/view-languages.php:199
528
+ msgid "The language is set from the directory name in pretty permalinks"
529
+ msgstr "Dil anlaşılır kalıcı bağlantılardaki dizin adı üzerinden ayarlanır"
530
+
531
+ # @ polylang
532
+ #: admin/view-languages.php:202
533
+ #: admin/view-languages.php:211
534
+ #: admin/view-languages.php:258
535
+ #: admin/view-languages.php:267
536
+ msgid "Example:"
537
+ msgstr "Örnek:"
538
+
539
+ # @ polylang
540
+ #: admin/view-languages.php:208
541
+ msgid "The language is set from the subdomain name in pretty permalinks"
542
+ msgstr "Dil anlaşılır kalıcı bağlantılardaki subdomain adı üzerinden ayarlanır"
543
+
544
+ # @ polylang
545
+ #: admin/view-languages.php:217
546
+ msgid "The language is set from different domains"
547
+ msgstr "Dil farklı domainler üzerinden ayarlanır"
548
+
549
+ #: admin/view-languages.php:255
550
+ msgid "Remove /language/ in pretty permalinks"
551
+ msgstr "/language/ kısmını anlaşılır kalıcı bağlantılardan kaldır"
552
+
553
+ #: admin/view-languages.php:264
554
+ msgid "Keep /language/ in pretty permalinks"
555
+ msgstr "/language/ kısmını anlaşılır kalıcı bağlantılarda koru"
556
+
557
+ # @ polylang
558
+ #: admin/view-languages.php:279
559
+ msgid ""
560
+ "The front page url contains the language code instead of the page name or "
561
+ "page id"
562
+ msgstr "Ön sayfa URL'si sayfa adı veya sayfa ID'si yerine dil kodunu içeriyor"
563
+
564
+ # @ polylang
565
+ #: admin/admin-filters-term.php:143
566
+ #, php-format
567
+ msgid "A translation does already exist for %s"
568
+ msgstr "%s için bir çevri mevcut zaten"
569
+
570
+ # @ polylang
571
+ #: admin/view-languages.php:287
572
+ #, php-format
573
+ msgid "Example: %s instead of %s"
574
+ msgstr "Örnek: %2$s yerine %1$s"
575
+
576
+ #: admin/admin-model.php:38
577
+ msgid "Impossible to add the language."
578
+ msgstr "Dili eklemek imkansız."
579
+
580
+ # @ polylang
581
+ #: admin/admin-model.php:62
582
+ msgid "Language added."
583
+ msgstr "Dil eklendi."
584
+
585
+ # @ polylang
586
+ #: admin/admin-model.php:176
587
+ msgid "Language deleted."
588
+ msgstr "Dil silindi."
589
+
590
+ # @ polylang
591
+ #: admin/admin-model.php:257
592
+ msgid "Language updated."
593
+ msgstr "Dil güncellendi."
594
+
595
+ # @ polylang
596
+ #: admin/settings.php:205
597
+ msgid "Translations updated."
598
+ msgstr "Çevriler güncellendi."
599
+
600
+ #: admin/view-languages.php:89
601
+ msgid "Language code - preferably 2-letters ISO 639-1 (for example: en)"
602
+ msgstr "Dil kodu - tercihen 2 harfli ISO 639-1 içinden (örneğin: tr)"
 
 
 
 
 
 
 
 
 
polylang.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Polylang
4
  Plugin URI: http://polylang.wordpress.com/
5
- Version: 1.5.1
6
  Author: Frédéric Demarle
7
  Description: Adds multilingual capability to WordPress
8
  Text Domain: polylang
@@ -33,7 +33,7 @@ Domain Path: /languages
33
  if (!function_exists('add_action'))
34
  exit();
35
 
36
- define('POLYLANG_VERSION', '1.5.1');
37
  define('PLL_MIN_WP_VERSION', '3.5');
38
 
39
  define('POLYLANG_BASENAME', plugin_basename(__FILE__)); // plugin name as known by WP
2
  /*
3
  Plugin Name: Polylang
4
  Plugin URI: http://polylang.wordpress.com/
5
+ Version: 1.5.2
6
  Author: Frédéric Demarle
7
  Description: Adds multilingual capability to WordPress
8
  Text Domain: polylang
33
  if (!function_exists('add_action'))
34
  exit();
35
 
36
+ define('POLYLANG_VERSION', '1.5.2');
37
  define('PLL_MIN_WP_VERSION', '3.5');
38
 
39
  define('POLYLANG_BASENAME', plugin_basename(__FILE__)); // plugin name as known by WP
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: multilingual, bilingual, translate, translation, language, multilanguage, international, localization
5
  Requires at least: 3.5
6
  Tested up to: 3.9.1
7
- Stable tag: 1.5.1
8
  License: GPLv2 or later
9
 
10
  Polylang adds multilingual content management support to WordPress.
@@ -24,7 +24,7 @@ Polylang allows you to create a bilingual or multilingual WordPress site. You wr
24
 
25
  = Translators =
26
 
27
- The plugin admin interface is currently available in 35 languages: English, French, German by [Christian Ries](http://www.singbyfoot.lu), Russian by [yoyurec](http://yoyurec.in.ua) and unostar, Greek by [theodotos](http://www.ubuntucy.org), Dutch by [AlbertGn](http://wordpress.org/support/profile/albertgn), Hebrew by [ArielK](http://www.arielk.net), Polish by [Peter Paciorkiewicz](http://www.paciorkiewicz.pl), [Bartosz](http://www.dfactory.eu/) and Sebastian Janus, Latvian by [@AndyDeGroo](http://twitter.com/AndyDeGroo), Italian by [Luca Barbetti](http://wordpress.org/support/profile/lucabarbetti), Danish by [Compute](http://wordpress.org/support/profile/compute), Spanish by Curro, Portuguese by [Vitor Carvalho](http://vcarvalho.com/), Lithuanian by [Naglis Jonaitis](http://najo.lt/), Turkish by [darchws](http://darch.ws/), Finnish by [Jani Alha](http://www.wysiwyg.fi), Bulgarian by [pavelsof](http://wordpress.org/support/profile/pavelsof), Belarusian by [Alexander Markevitch](http://fourfeathers.by/), Afrikaans by [Kobus Joubert](http://translate3d.com/), Hungarian by Csaba Erdei, Norwegian by [Tom Boersma](http://www.oransje.com/), Slovak by [Branco (WebHostingGeeks.com)](http://webhostinggeeks.com/user-reviews/), Swedish by [matsii](http://wordpress.org/support/profile/matsii) and [Jon Täng](http://jontang.se), Catalan by [Núria Martínez Berenguer](http://www.linkedin.com/profile/view?id=127867004&trk=nav_responsive_tab_profile&locale=en_US), Ukrainian by [cmd soft](http://www.cmd-soft.com/), Estonian by [Ahto Naris](http://profiles.wordpress.org/ahtonaris/), Venetian by Michele Brunelli, simplified Chinese by [Changmeng Hu](http://www.wpdaxue.com), Indonesian by [ajoull](http://www.ajoull.com/), Arabic by [Anas Sulaiman](http://ahs.pw/), Traditional Chinese by [香腸](http://sofree.cc/), Czech by [Přemysl Karbula](http://www.premyslkarbula.cz), Serbian by Sinisa, Myanmar by Sithu Thwin, Ukrainian by [http://getvoip.com/](http://getvoip.com/)
28
 
29
  = Credits =
30
 
@@ -64,11 +64,17 @@ See http://polylang.wordpress.com/documentation/contribute/
64
 
65
  == Upgrade Notice ==
66
 
67
- = 1.5.1 =
68
- Polylang 1.2 introduced major internal changes. More than ever, make a database backup before upgrading from 1.1.6 or older! If you are using a version older than 0.8, please ugrade to 0.9.8 before ugrading to 1.5.1
69
 
70
  == Changelog ==
71
 
 
 
 
 
 
 
72
  = 1.5.1 (2014-06-19) =
73
 
74
  * Add: filter 'pll_settings_tabs' and action 'pll_settings_active_tab_{$tab}'
4
  Tags: multilingual, bilingual, translate, translation, language, multilanguage, international, localization
5
  Requires at least: 3.5
6
  Tested up to: 3.9.1
7
+ Stable tag: 1.5.2
8
  License: GPLv2 or later
9
 
10
  Polylang adds multilingual content management support to WordPress.
24
 
25
  = Translators =
26
 
27
+ The plugin admin interface is currently available in 35 languages: English, French, German by [Christian Ries](http://www.singbyfoot.lu), Russian by [yoyurec](http://yoyurec.in.ua) and unostar, Greek by [theodotos](http://www.ubuntucy.org), Dutch by [AlbertGn](http://wordpress.org/support/profile/albertgn), Hebrew by [ArielK](http://www.arielk.net), Polish by [Peter Paciorkiewicz](http://www.paciorkiewicz.pl), [Bartosz](http://www.dfactory.eu/) and Sebastian Janus, Latvian by [@AndyDeGroo](http://twitter.com/AndyDeGroo), Italian by [Luca Barbetti](http://wordpress.org/support/profile/lucabarbetti), Danish by [Compute](http://wordpress.org/support/profile/compute), Spanish by Curro, Portuguese by [Vitor Carvalho](http://vcarvalho.com/), Lithuanian by [Naglis Jonaitis](http://najo.lt/), Turkish by [darchws](http://darch.ws/) and [Abdullah Pazarbasi](http://www.abdullahpazarbasi.com/), Finnish by [Jani Alha](http://www.wysiwyg.fi), Bulgarian by [pavelsof](http://wordpress.org/support/profile/pavelsof), Belarusian by [Alexander Markevitch](http://fourfeathers.by/), Afrikaans by [Kobus Joubert](http://translate3d.com/), Hungarian by Csaba Erdei, Norwegian by [Tom Boersma](http://www.oransje.com/), Slovak by [Branco (WebHostingGeeks.com)](http://webhostinggeeks.com/user-reviews/), Swedish by [matsii](http://wordpress.org/support/profile/matsii) and [Jon Täng](http://jontang.se), Catalan by [Núria Martínez Berenguer](http://www.linkedin.com/profile/view?id=127867004&trk=nav_responsive_tab_profile&locale=en_US), Ukrainian by [cmd soft](http://www.cmd-soft.com/), Estonian by [Ahto Naris](http://profiles.wordpress.org/ahtonaris/), Venetian by Michele Brunelli, simplified Chinese by [Changmeng Hu](http://www.wpdaxue.com), Indonesian by [ajoull](http://www.ajoull.com/), Arabic by [Anas Sulaiman](http://ahs.pw/), Traditional Chinese by [香腸](http://sofree.cc/), Czech by [Přemysl Karbula](http://www.premyslkarbula.cz), Serbian by Sinisa, Myanmar by Sithu Thwin, Ukrainian by [http://getvoip.com/](http://getvoip.com/)
28
 
29
  = Credits =
30
 
64
 
65
  == Upgrade Notice ==
66
 
67
+ = 1.5.2 =
68
+ Polylang 1.2 introduced major internal changes. More than ever, make a database backup before upgrading from 1.1.6 or older! If you are using a version older than 0.8, please ugrade to 0.9.8 before ugrading to 1.5.2
69
 
70
  == Changelog ==
71
 
72
+ = 1.5.2 (2014-06-24) =
73
+
74
+ * Fix: Revert post translations terms cleaning introduced in 1.5 as it seems to cause problems
75
+ * Fix: Impossible to delete a biographical info (introduced in 1.5)
76
+ * Fix: Security issue reported by [Gregory Viguier](http://www.screenfeed.fr/)
77
+
78
  = 1.5.1 (2014-06-19) =
79
 
80
  * Add: filter 'pll_settings_tabs' and action 'pll_settings_active_tab_{$tab}'