Yet Another Related Posts Plugin (YARPP) - Version 4.0.6b2

Version Description

Download this release

Release Info

Developer mitchoyoshitaka
Plugin Icon 128x128 Yet Another Related Posts Plugin (YARPP)
Version 4.0.6b2
Comparing to
See all releases

Code changes from version 4.0.6b1 to 4.0.6b2

class-admin.php CHANGED
@@ -54,35 +54,8 @@ class YARPP_Admin {
54
  if ( get_option( 'yarpp_activated' ) ) {
55
  delete_option( 'yarpp_activated' );
56
  delete_option( 'yarpp_upgraded' );
57
-
58
- if ( $this->core->get_option('optin') ) {
59
- $install_notice = 0; // default
60
- } else {
61
- $install_notice = $this->core->get_option( 'pools[install_notice]' );
62
- if ( is_null( $install_notice ) ) {
63
- $install_notice = mt_rand(0, 2);
64
- $pools = $this->core->get_option( 'pools' );
65
- if ( !is_array($pools) )
66
- $pools = array();
67
- $pools['install_notice'] = $install_notice;
68
- $this->core->set_option( 'pools', $pools );
69
- }
70
- }
71
-
72
- switch ( $install_notice ) {
73
- case 1:
74
- add_action( 'admin_enqueue_scripts', array( $this, 'pointer_enqueue' ) );
75
- add_action( 'admin_print_footer_scripts', array( $this, 'optin_button_script' ) );
76
- add_action( 'admin_print_footer_scripts', array( $this, 'pointer_script_variant' ) );
77
- break;
78
- case 2:
79
- add_action( 'admin_notices', array( $this, 'install_notice' ) );
80
- break;
81
- default:
82
- add_action( 'admin_enqueue_scripts', array( $this, 'pointer_enqueue' ) );
83
- add_action( 'admin_print_footer_scripts', array( $this, 'pointer_script' ) );
84
- break;
85
- }
86
  } elseif ( !$this->core->get_option('optin') &&
87
  current_user_can('manage_options') &&
88
  get_option( 'yarpp_upgraded' )
@@ -326,63 +299,6 @@ class YARPP_Admin {
326
  wp_enqueue_style( 'wp-pointer' );
327
  wp_enqueue_script( 'wp-pointer' );
328
  }
329
- function pointer_script( $variant = false ) {
330
- $content = '<h3>' . str_replace('<span>', '<span style="font-style:italic; font-weight: inherit;">', __('Thank you for installing <span>Yet Another Related Posts Plugin</span>!', 'yarpp') ) . '</h3>';
331
-
332
- if ( $variant ) {
333
- $content .= '<p>' . __( "<strong>Help make YARPP better</strong> by sending information about YARPP's settings and usage statistics.", 'yarpp' ) . '</p><p>' . $this->the_optin_button();
334
-
335
- $content .= '<a class="button" style="margin-top: 10px" href="options-general.php?page=yarpp#help-optin">' . __( 'Learn More', 'yarpp' ) . '</a>' . '</p>';
336
-
337
- $content = str_replace("'", "\\'", $content);
338
- } else {
339
- $content .= '<p>' . str_replace('<a>', '<a href="' . esc_url(admin_url('options-general.php?page=yarpp')) .'">', __('Make sure to visit the <a>Related Posts settings page</a> to customize YARPP.', 'yarpp') ). '</p>';
340
- }
341
- ?>
342
- <script>
343
- jQuery(function () {
344
- var body = jQuery(document.body),
345
- menu = jQuery('#menu-settings'),
346
- collapse = jQuery('#collapse-menu'),
347
- yarpp = menu.find("a[href='options-general.php?page=yarpp']"),
348
- options = {
349
- content: '<?php echo $content; ?>',
350
- position: {
351
- edge: 'left',
352
- align: 'center',
353
- of: menu.is('.wp-menu-open') && !menu.is('.folded *') ? yarpp : menu
354
- },
355
- close: function() {
356
- menu.unbind('mouseenter mouseleave', yarpp_pointer);
357
- collapse.unbind('mouseenter mouseleave', yarpp_pointer);
358
- }};
359
-
360
- if ( !yarpp.length )
361
- return;
362
-
363
- body.pointer(options).pointer('open');
364
-
365
- if ( menu.is('.folded *') || !menu.is('.wp-menu-open') ) {
366
- function yarpp_pointer(e) {
367
- setTimeout(function() {
368
- if (yarpp.is(':visible'))
369
- options.position.of = yarpp;
370
- else
371
- options.position.of = menu;
372
- body.pointer( options );
373
- }, 200);
374
- }
375
- menu.bind('mouseenter mouseleave', yarpp_pointer);
376
- collapse.bind('mouseenter mouseleave', yarpp_pointer);
377
- }
378
- });
379
- </script>
380
- <?php
381
- }
382
-
383
- function pointer_script_variant() {
384
- $this->pointer_script( true );
385
- }
386
 
387
  function settings_link($links, $file) {
388
  $this_plugin = dirname(plugin_basename(__FILE__)) . '/yarpp.php';
54
  if ( get_option( 'yarpp_activated' ) ) {
55
  delete_option( 'yarpp_activated' );
56
  delete_option( 'yarpp_upgraded' );
57
+ if ( !$this->core->get_option('optin') )
58
+ add_action( 'admin_notices', array( $this, 'install_notice' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  } elseif ( !$this->core->get_option('optin') &&
60
  current_user_can('manage_options') &&
61
  get_option( 'yarpp_upgraded' )
299
  wp_enqueue_style( 'wp-pointer' );
300
  wp_enqueue_script( 'wp-pointer' );
301
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
 
303
  function settings_link($links, $file) {
304
  $this_plugin = dirname(plugin_basename(__FILE__)) . '/yarpp.php';
lang/yarpp-est_EST.mo ADDED
Binary file
lang/yarpp-est_EST.po ADDED
@@ -0,0 +1,625 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Yet Another Related Posts Plugin v3.0.5\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2013-03-25 13:12+0100\n"
7
+ "Last-Translator: Altesack <altasack@mail.ru>\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-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
15
+ "_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"
16
+ "X-Poedit-Basepath: ../\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "Language: ru\n"
19
+ "X-Generator: Poedit 1.5.5\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ # @ yarpp
23
+ #: includes.php:149 includes.php:194 includes.php:215
24
+ msgid "Related Posts (YARPP)"
25
+ msgstr "Seotud ametikohta (YARPP)"
26
+
27
+ # @ yarpp
28
+ #: includes.php:376
29
+ msgid "Related Posts"
30
+ msgstr "seotud ametikohta"
31
+
32
+ # @ yarpp
33
+ #: template-builtin.php:35
34
+ #, php-format
35
+ msgid ""
36
+ "%f is the YARPP match score between the current entry and this related "
37
+ "entry. You are seeing this value because you are logged in to WordPress as "
38
+ "an administrator. It is not shown to regular visitors."
39
+ msgstr ""
40
+ "% f on YARPP mängu punktisumma vahel senise kande ja seda kirjet. Näete seda "
41
+ "väärtust, sest olete sisse logitud WordPress ülemana. Ei ole tõestatud, et "
42
+ "regulaarne külastajad."
43
+
44
+ # @ yarpp
45
+ #: magic.php:297 options-meta-boxes.php:205 options-meta-boxes.php:269
46
+ #, php-format
47
+ msgid ""
48
+ "Related posts brought to you by <a href='%s'>Yet Another Related Posts "
49
+ "Plugin</a>."
50
+ msgstr ""
51
+ "Nimekiri seotud ametikohta Plugin pakutakse teile <a href='%s'> YARPP </ a>."
52
+
53
+ # @ yarpp
54
+ #: options.php:54
55
+ msgid ""
56
+ "The MyISAM check has been overridden. You may now use the \"consider titles"
57
+ "\" and \"consider bodies\" relatedness criteria."
58
+ msgstr ""
59
+ "MyISAM kontroll viidi läbi. Nüüd saate kriteeriumitele sarnasus \"kohta "
60
+ "päiseid\" ja \"kaardid teksti.\""
61
+
62
+ # @ yarpp
63
+ #: options.php:63
64
+ #, php-format
65
+ msgid ""
66
+ "YARPP's \"consider titles\" and \"consider bodies\" relatedness criteria "
67
+ "require your <code>%s</code> table to use the <a href='http://dev.mysql.com/"
68
+ "doc/refman/5.0/en/storage-engines.html'>MyISAM storage engine</a>, but the "
69
+ "table seems to be using the <code>%s</code> engine. These two options have "
70
+ "been disabled."
71
+ msgstr ""
72
+ "Kasutades võimalusi YARPP \"päiseid\" ja \"Mõtle tekst\" eeldab, et oma laua "
73
+ "<code>% s </ code> kasutatud mootori <a href = 'http://dev.mysql.com/doc/"
74
+ "refman/5.0/en / panipaik engines.html \"> MyISAM </ a>, kuid tabelis kasutab "
75
+ "mootor ilmselt <code>% s </ code>. Need kaks võimalust on keelatud."
76
+
77
+ # @ yarpp
78
+ #: options.php:65
79
+ #, php-format
80
+ msgid ""
81
+ "To restore these features, please update your <code>%s</code> table by "
82
+ "executing the following SQL directive: <code>ALTER TABLE `%s` ENGINE = "
83
+ "MyISAM;</code> . No data will be erased by altering the table's engine, "
84
+ "although there are performance implications."
85
+ msgstr ""
86
+ "Et taastada neid funktsioone, palun muutke oma laua <code>% s </ code> "
87
+ "järgmise SQL e: <code> ALTER TABLE `% s` ENGINE = MyISAM; </ code> <br /> "
88
+ "Kui tabeli andmed ei tohiks jagada, kuid seal võib olla tagajärjed."
89
+
90
+ # @ yarpp
91
+ #: options.php:67
92
+ #, php-format
93
+ msgid ""
94
+ "If, despite this check, you are sure that <code>%s</code> is using the "
95
+ "MyISAM engine, press this magic button:"
96
+ msgstr ""
97
+ "Kui vaatamata sellele võimalust, siis on kindel, et tabeli <code>% s </ "
98
+ "code> kasutab MyISAM, klõpsa magic nuppu:"
99
+
100
+ # @ yarpp
101
+ #: options.php:70
102
+ msgid "Trust me. Let me use MyISAM features."
103
+ msgstr "Usu mind. Lubage mul kasutada MyISAM."
104
+
105
+ # @ yarpp
106
+ #: options.php:83
107
+ msgid "The YARPP database had an error but has been fixed."
108
+ msgstr "YARPP andmebaas sisaldas vigu, kuid neid parandada."
109
+
110
+ # @ yarpp
111
+ #: options.php:85
112
+ msgid "The YARPP database has an error which could not be fixed."
113
+ msgstr "YARPP andmebaas sisaldab viga, mida ei saa parandada."
114
+
115
+ # @ yarpp
116
+ #: options-meta-boxes.php:45 options-meta-boxes.php:63
117
+ #: options-meta-boxes.php:76
118
+ msgid "do not consider"
119
+ msgstr "mitte lugema"
120
+
121
+ # @ yarpp
122
+ #: options-meta-boxes.php:46 options-meta-boxes.php:64
123
+ #: options-meta-boxes.php:78
124
+ msgid "consider"
125
+ msgstr "arvestama"
126
+
127
+ # @ yarpp
128
+ #: options-meta-boxes.php:65
129
+ msgid "consider with extra weight"
130
+ msgstr "ravitud lisaraskusega"
131
+
132
+ # @ default
133
+ # @ yarpp
134
+ #: options-meta-boxes.php:286
135
+ msgid ""
136
+ "Donate to mitcho (Michael Yoshitaka Erlewine) for this plugin via PayPal"
137
+ msgstr "Anneta arendaja mitcho (Michael Yoshitaka Erlewine), kaudu PayPal"
138
+
139
+ # @ yarpp
140
+ #: options.php:178
141
+ msgid "Yet Another Related Posts Plugin Options"
142
+ msgstr "Valikud YARPP"
143
+
144
+ # @ yarpp
145
+ #: options-meta-boxes.php:118
146
+ msgid "\"The Pool\""
147
+ msgstr "<em>Sisu</em>"
148
+
149
+ # @ yarpp
150
+ #: options-meta-boxes.php:91
151
+ msgid ""
152
+ "\"The Pool\" refers to the pool of posts and pages that are candidates for "
153
+ "display as related to the current entry."
154
+ msgstr ""
155
+ "<em>Sisu</em> mõista kui sõnumite ja lehed, mis on kandidaatide sõelumine "
156
+ "ploki seotud kirjete kogum."
157
+
158
+ # @ yarpp
159
+ #: options-meta-boxes.php:96
160
+ msgid "Disallow by category:"
161
+ msgstr "Kategooriate välistamine:"
162
+
163
+ # @ yarpp
164
+ #: options-meta-boxes.php:98
165
+ msgid "Disallow by tag:"
166
+ msgstr "Ära näita tags:"
167
+
168
+ # @ yarpp
169
+ #: options-meta-boxes.php:101
170
+ msgid "Show password protected posts?"
171
+ msgstr "Näita sõnumeid, mis on parooliga kaitstud?"
172
+
173
+ # @ yarpp
174
+ #: options-meta-boxes.php:140
175
+ msgid "Show only previous posts?"
176
+ msgstr "Näita ainult eelnevaid postitusi?"
177
+
178
+ # @ yarpp
179
+ #: options-meta-boxes.php:148
180
+ msgid "\"Relatedness\" options"
181
+ msgstr "sarnasus kriteeriumid"
182
+
183
+ # @ yarpp
184
+ #: options-meta-boxes.php:124 options-meta-boxes.php:139
185
+ #: options-meta-boxes.php:157 options-meta-boxes.php:161
186
+ #: options-meta-boxes.php:204 options-meta-boxes.php:221
187
+ #: options-meta-boxes.php:223 options-meta-boxes.php:228
188
+ #: options-meta-boxes.php:268
189
+ msgid "more&gt;"
190
+ msgstr "rohkem&gt;"
191
+
192
+ # @ yarpp
193
+ #: options-meta-boxes.php:130
194
+ msgid "Match threshold:"
195
+ msgstr "Sarnasus künnis:"
196
+
197
+ # @ yarpp
198
+ #: options-meta-boxes.php:131
199
+ msgid "Titles: "
200
+ msgstr "Sõnumid:"
201
+
202
+ # @ yarpp
203
+ #: options-meta-boxes.php:133
204
+ msgid "Bodies: "
205
+ msgstr "tekstid:"
206
+
207
+ # @ yarpp
208
+ #: options-meta-boxes.php:135
209
+ msgid "Tags: "
210
+ msgstr "tags:"
211
+
212
+ # @ yarpp
213
+ #: options-meta-boxes.php:137
214
+ msgid "Categories: "
215
+ msgstr "Kategooriad:"
216
+
217
+ # @ yarpp
218
+ #: options-meta-boxes.php:139
219
+ msgid "Cross-relate posts and pages?"
220
+ msgstr "Kas rist linkida lehekülgedele ja postitused?"
221
+
222
+ # @ yarpp
223
+ #: options-meta-boxes.php:139
224
+ msgid ""
225
+ "When the \"Cross-relate posts and pages\" option is selected, the "
226
+ "<code>related_posts()</code>, <code>related_pages()</code>, and "
227
+ "<code>related_entries()</code> all will give the same output, returning both "
228
+ "related pages and posts."
229
+ msgstr ""
230
+ "Kui valitud on \"teha rist linkida lehekülgedele ja postitused?\" Funktsioon "
231
+ "<code> related_posts () </ code>, <code> related_pages () </ code> ja <code> "
232
+ "related_entries () </ code> väljund samad, sisaldavad ja lehed ja postitused"
233
+
234
+ # @ yarpp
235
+ #: options-meta-boxes.php:212
236
+ msgid "Display options <small>for your website</small>"
237
+ msgstr "Kuvavalikud <small> oma kodulehel </ small>"
238
+
239
+ # @ yarpp
240
+ #: options-meta-boxes.php:157
241
+ msgid "Automatically display related posts?"
242
+ msgstr "Automaatselt kuvada seotud ametikohta?"
243
+
244
+ # @ yarpp
245
+ #: options-meta-boxes.php:157
246
+ msgid ""
247
+ "This option automatically displays related posts right after the content on "
248
+ "single entry pages. If this option is off, you will need to manually insert "
249
+ "<code>related_posts()</code> or variants (<code>related_pages()</code> and "
250
+ "<code>related_entries()</code>) into your theme files."
251
+ msgstr ""
252
+ "See valik kuvatakse automaatselt seotud ametikohta hgzvj pärast lehe sisu "
253
+ "ühe sõnumi. Kui see on keelatud, peate käsitsi sisestada <code> "
254
+ "related_posts () </ code> või midagi sellist (<code> related_pages () </ "
255
+ "code> ja <code> related_entries () </ code>) oma teema ."
256
+
257
+ # @ yarpp
258
+ #: options-meta-boxes.php:158
259
+ msgid "Website display code example"
260
+ msgstr "Proovi kood web-site"
261
+
262
+ # @ yarpp
263
+ #: options-meta-boxes.php:158 options-meta-boxes.php:221
264
+ msgid "(Update options to reload.)"
265
+ msgstr "(Salvesta valik reboot.)"
266
+
267
+ # @ yarpp
268
+ #: options-meta-boxes.php:160 options-meta-boxes.php:226
269
+ msgid "Maximum number of related posts:"
270
+ msgstr "Maksimaalne arv seotud ametikohta:"
271
+
272
+ # @ yarpp
273
+ #: options-meta-boxes.php:175 options-meta-boxes.php:244
274
+ msgid "Before / after related entries:"
275
+ msgstr "Enne / pärast <br /> seotud ametikohta:"
276
+
277
+ # @ yarpp
278
+ #: options-meta-boxes.php:175 options-meta-boxes.php:176
279
+ #: options-meta-boxes.php:184 options-meta-boxes.php:244
280
+ #: options-meta-boxes.php:245 options-meta-boxes.php:250
281
+ msgid "For example:"
282
+ msgstr "näiteks:"
283
+
284
+ # @ yarpp
285
+ #: options-meta-boxes.php:176 options-meta-boxes.php:245
286
+ msgid "Before / after each related entry:"
287
+ msgstr "Enne / pärast <br /> iga seotud postitus:"
288
+
289
+ # @ yarpp
290
+ #: options-meta-boxes.php:178 options-meta-boxes.php:247
291
+ msgid "Show excerpt?"
292
+ msgstr "Vaoshoitusele?"
293
+
294
+ # @ yarpp
295
+ #: options-meta-boxes.php:179 options-meta-boxes.php:248
296
+ msgid "Excerpt length (No. of words):"
297
+ msgstr "Kokkupuute pikkuse (sõnade arv):"
298
+
299
+ # @ yarpp
300
+ #: options-meta-boxes.php:183
301
+ msgid "Before / after (Excerpt):"
302
+ msgstr "Enne / pärast kokkupuudet <br />"
303
+
304
+ # @ yarpp
305
+ #: options-meta-boxes.php:189 options-meta-boxes.php:254
306
+ msgid "Order results:"
307
+ msgstr "Sorteeri tulemused:"
308
+
309
+ # @ yarpp
310
+ #: options-meta-boxes.php:191 options-meta-boxes.php:256
311
+ msgid "score (high relevance to low)"
312
+ msgstr "Sarnasus (kahanevas järjekorras)"
313
+
314
+ # @ yarpp
315
+ #: options-meta-boxes.php:192 options-meta-boxes.php:257
316
+ msgid "score (low relevance to high)"
317
+ msgstr "Sarnasus (tõusev)"
318
+
319
+ # @ yarpp
320
+ #: options-meta-boxes.php:193 options-meta-boxes.php:258
321
+ msgid "date (new to old)"
322
+ msgstr "Kuupäev (kahanev)"
323
+
324
+ # @ yarpp
325
+ #: options-meta-boxes.php:194 options-meta-boxes.php:259
326
+ msgid "date (old to new)"
327
+ msgstr "Kuupäev (tõusev)"
328
+
329
+ # @ yarpp
330
+ #: options-meta-boxes.php:195 options-meta-boxes.php:260
331
+ msgid "title (alphabetical)"
332
+ msgstr "Pealkiri (tähestikulises)"
333
+
334
+ # @ yarpp
335
+ #: options-meta-boxes.php:196 options-meta-boxes.php:261
336
+ msgid "title (reverse alphabetical)"
337
+ msgstr "Pealkiri (vastupidises järjekorras)"
338
+
339
+ # @ yarpp
340
+ #: options-meta-boxes.php:201 options-meta-boxes.php:266
341
+ msgid "Default display if no results:"
342
+ msgstr "Kuvar vaikimisi kui tühi:"
343
+
344
+ # @ yarpp
345
+ #: includes.php:257 options-meta-boxes.php:203 options-meta-boxes.php:268
346
+ msgid "Help promote Yet Another Related Posts Plugin?"
347
+ msgstr "Aidata edendada pistik YARPP?"
348
+
349
+ # @ yarpp
350
+ #: options-meta-boxes.php:205 options-meta-boxes.php:269
351
+ #, php-format
352
+ msgid ""
353
+ "This option will add the code %s. Try turning it on, updating your options, "
354
+ "and see the code in the code example to the right. These links and donations "
355
+ "are greatly appreciated."
356
+ msgstr ""
357
+ "See valik lisab koodi% s. Proovi see sisse lülitada, muuta valikuid ja näha "
358
+ "näiteks koodi paremal. Need lingid ja nupud on väga oluline."
359
+
360
+ # @ yarpp
361
+ #: options-meta-boxes.php:276
362
+ msgid "Display options <small>for RSS</small>"
363
+ msgstr "Vaata seaded <small> RSS </ small>"
364
+
365
+ # @ yarpp
366
+ #: options-meta-boxes.php:221
367
+ msgid "Display related posts in feeds?"
368
+ msgstr "Näita seotud postitused RSS?"
369
+
370
+ # @ yarpp
371
+ #: options-meta-boxes.php:223
372
+ msgid "Display related posts in the descriptions?"
373
+ msgstr "Näita seotud postitused kirjeldus?"
374
+
375
+ # @ yarpp
376
+ #: options-meta-boxes.php:223
377
+ msgid ""
378
+ "This option displays the related posts in the RSS description fields, not "
379
+ "just the content. If your feeds are set up to only display excerpts, "
380
+ "however, only the description field is used, so this option is required for "
381
+ "any display at all."
382
+ msgstr ""
383
+ "See valik kuvatakse seotud postitused RSS kirjeldus valdkondades, mitte "
384
+ "ainult sisu. Kui teie sööte moodustatud kuvada ainult katkendeid, aga ainult "
385
+ "kirjelduse välja kasutatakse, nii et see võti on nõutav mis tahes kuva üldse."
386
+
387
+ # @ yarpp
388
+ #: options-meta-boxes.php:221
389
+ msgid "RSS display code example"
390
+ msgstr "Proovi kood RSS"
391
+
392
+ # @ yarpp
393
+ #: options-meta-boxes.php:250
394
+ msgid "Before / after (excerpt):"
395
+ msgstr "Enne / pärast <br /> katkendeid:"
396
+
397
+ # @ yarpp
398
+ #: options-meta-boxes.php:38
399
+ msgid "word"
400
+ msgstr "sõna"
401
+
402
+ # @ yarpp
403
+ #: options-meta-boxes.php:39
404
+ msgid "tag"
405
+ msgstr "tag"
406
+
407
+ # @ yarpp
408
+ #: options-meta-boxes.php:40
409
+ msgid "category"
410
+ msgstr "kategooria"
411
+
412
+ # @ yarpp
413
+ #: options-meta-boxes.php:48 options-meta-boxes.php:80
414
+ #, php-format
415
+ msgid "require at least one %s in common"
416
+ msgstr "vähemalt üks % s tuleb jagada"
417
+
418
+ # @ yarpp
419
+ #: options-meta-boxes.php:50 options-meta-boxes.php:82
420
+ #, php-format
421
+ msgid "require more than one %s in common"
422
+ msgstr "rohkem kui %s peab olema ühine"
423
+
424
+ # @ yarpp
425
+ #: options.php:114
426
+ msgid "Options saved!"
427
+ msgstr "Seaded on salvestatud!"
428
+
429
+ # @ yarpp
430
+ #: options-meta-boxes.php:124
431
+ msgid ""
432
+ "The higher the match threshold, the more restrictive, and you get less "
433
+ "related posts overall. The default match threshold is 5. If you want to find "
434
+ "an appropriate match threshhold, take a look at some post's related posts "
435
+ "display and their scores. You can see what kinds of related posts are being "
436
+ "picked up and with what kind of match scores, and determine an appropriate "
437
+ "threshold for your site."
438
+ msgstr ""
439
+ "Mida kõrgem on sarnasus künnis, rangemad proovi ja vähem salvestab väljund."
440
+ "Vaikimisi künnis on 5. Kui soovite leida mõistetav künnised, katsetada mitu "
441
+ "sõnumit. Näete, milliseid sõnumeid tulla ja millised on nende väärtused on "
442
+ "sarnased, mis võivad määrata vastuvõetava tasemeni saidile."
443
+
444
+ # @ yarpp
445
+ #: options.php:279
446
+ msgid "Update options"
447
+ msgstr "Muuda seadeid"
448
+
449
+ # @ yarpp
450
+ #: options.php:280
451
+ msgid "Do you really want to reset your configuration?"
452
+ msgstr "Tahad taastada oma seadeid?"
453
+
454
+ # @ yarpp
455
+ #: options.php:280
456
+ msgid "Reset options"
457
+ msgstr "Reset valikuid"
458
+
459
+ # @ yarpp
460
+ #: cache-postmeta.php:105 cache-tables.php:131
461
+ msgid "Example post "
462
+ msgstr "Näide postitus"
463
+
464
+ # @ yarpp
465
+ #: options-meta-boxes.php:105
466
+ msgid "day(s)"
467
+ msgstr "päeva"
468
+
469
+ # @ yarpp
470
+ #: options-meta-boxes.php:106
471
+ msgid "week(s)"
472
+ msgstr "kuu"
473
+
474
+ # @ yarpp
475
+ #: options-meta-boxes.php:107
476
+ msgid "month(s)"
477
+ msgstr "aastat"
478
+
479
+ # @ yarpp
480
+ #: options-meta-boxes.php:109
481
+ msgid "Show only posts from the past NUMBER UNITS"
482
+ msgstr "Näita ainult postitusi viimasest NUMBER UNITS"
483
+
484
+ # @ yarpp
485
+ #: options.php:46
486
+ #, php-format
487
+ msgid ""
488
+ "There is a new beta (%s) of Yet Another Related Posts Plugin. You can <a "
489
+ "href=\"%s\">download it here</a> at your own risk."
490
+ msgstr ""
491
+ "Uus beeta (% s) pistik YARPP. Saate <a href=\"%s\"> alla laadida siit </ a> "
492
+ "omal riisikol."
493
+
494
+ # @ yarpp
495
+ #: includes.php:248 options-meta-boxes.php:161 options-meta-boxes.php:228
496
+ msgid "Display using a custom template file"
497
+ msgstr "Näita kasutades kohandatud malli faili"
498
+
499
+ # @ yarpp
500
+ #: includes.php:249 options-meta-boxes.php:165 options-meta-boxes.php:233
501
+ msgid "Template file:"
502
+ msgstr "šabloon fail:"
503
+
504
+ # @ yarpp
505
+ #: options-meta-boxes.php:221
506
+ msgid ""
507
+ "This option displays related posts at the end of each item in your RSS and "
508
+ "Atom feeds. No template changes are needed."
509
+ msgstr ""
510
+ "See valik kuvatakse seotud ametikohta lõpus igale oma RSS ja Atom-vooge. Ei "
511
+ "malli muudatused on vajalikud."
512
+
513
+ # @ yarpp
514
+ #: template-metabox.php:12
515
+ msgid ""
516
+ "These are the related entries for this entry. Updating this post may change "
517
+ "these related posts."
518
+ msgstr ""
519
+ "Need on seotud kanded siit. Uuendan postitus võib muutuda need seotud "
520
+ "ametikohta."
521
+
522
+ # @ yarpp
523
+ #: template-metabox.php:25
524
+ msgid ""
525
+ "Whether all of these related entries are actually displayed and how they are "
526
+ "displayed depends on your YARPP display options."
527
+ msgstr ""
528
+ "Kas kõik kõnealused seotud kanded tegelikult kuvatakse ja kuidas neid "
529
+ "kuvatakse sõltub teie YARPP kuvamise võimalused."
530
+
531
+ # @ yarpp
532
+ #: includes.php:28 includes.php:39 template-metabox.php:27
533
+ #: template-widget.php:13
534
+ msgid "No related posts."
535
+ msgstr "ei seotud ametikohta"
536
+
537
+ # @ yarpp
538
+ #: options-meta-boxes.php:228
539
+ msgid "NEW!"
540
+ msgstr "UUS!"
541
+
542
+ # @ yarpp
543
+ #: options-meta-boxes.php:161 options-meta-boxes.php:228
544
+ msgid ""
545
+ "This advanced option gives you full power to customize how your related "
546
+ "posts are displayed. Templates (stored in your theme folder) are written in "
547
+ "PHP."
548
+ msgstr ""
549
+ "Need täiendavad seaded teile täielikud volitused kohandada väljapaneku "
550
+ "seotud ametikohta. Mallid (salvestatud kaustu teemasid) kirjutatud PHP."
551
+
552
+ # @ yarpp
553
+ #: includes.php:26 includes.php:37
554
+ msgid "Related posts:"
555
+ msgstr ""
556
+
557
+ # @ yarpp
558
+ #: includes.php:169
559
+ msgid "Settings"
560
+ msgstr ""
561
+
562
+ # @ default
563
+ #: includes.php:243
564
+ msgid "Title:"
565
+ msgstr ""
566
+
567
+ # @ yarpp
568
+ #: includes.php:385
569
+ msgid "Related entries may be displayed once you save your entry"
570
+ msgstr ""
571
+
572
+ # @ yarpp
573
+ #: options-meta-boxes.php:124
574
+ msgid ""
575
+ "YARPP limits the related posts list by (1) a maximum number and (2) a "
576
+ "<em>match threshold</em>."
577
+ msgstr ""
578
+
579
+ # @ yarpp
580
+ #: options-meta-boxes.php:175 options-meta-boxes.php:176
581
+ #: options-meta-boxes.php:184 options-meta-boxes.php:244
582
+ #: options-meta-boxes.php:245 options-meta-boxes.php:250
583
+ msgid " or "
584
+ msgstr ""
585
+
586
+ # @ yarpp
587
+ #: options-meta-boxes.php:283
588
+ msgid "YARPP Forum"
589
+ msgstr ""
590
+
591
+ # @ yarpp
592
+ #: options-meta-boxes.php:284
593
+ msgid "YARPP on Twitter"
594
+ msgstr ""
595
+
596
+ # @ yarpp
597
+ #: options-meta-boxes.php:285
598
+ msgid "YARPP on the Web"
599
+ msgstr ""
600
+
601
+ # @ yarpp
602
+ #: options-meta-boxes.php:292
603
+ msgid "Contact YARPP"
604
+ msgstr ""
605
+
606
+ # @ default
607
+ #: options.php:42
608
+ #, php-format
609
+ msgid ""
610
+ "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox"
611
+ "\" title=\"%3$s\">View version %4$s details</a> or <a href=\"%5$s\">update "
612
+ "automatically</a>."
613
+ msgstr ""
614
+
615
+ # @ yarpp
616
+ #: options.php:86
617
+ #, php-format
618
+ msgid "Please try <a href=\"%s\" target=\"_blank\">manual SQL setup</a>."
619
+ msgstr ""
620
+
621
+ # @ yarpp
622
+ #: options.php:188
623
+ #, php-format
624
+ msgid "by <a href=\"%s\" target=\"_blank\">mitcho (Michael 芳貴 Erlewine)</a>"
625
+ msgstr ""
lang/yarpp-gu_IN.mo ADDED
Binary file
lang/yarpp-gu_IN.po ADDED
@@ -0,0 +1,568 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: YARPP_PT\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Ajeet <Ajeetbook@gmail.com>\n"
8
+ "Language-Team: Stefan Mueller <stefan.mueller@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Portuguese\n"
14
+ "X-Poedit-Country: Portugal\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
+ #@ yarpp
22
+ #: includes.php:149
23
+ #: includes.php:194
24
+ #: includes.php:215
25
+ msgid "Related Posts (YARPP)"
26
+ msgstr "સંબંધિત પોસ્ટ્સ (YARPP)"
27
+
28
+ #@ yarpp
29
+ #: includes.php:376
30
+ msgid "Related Posts"
31
+ msgstr "સંબંધિત પોસ્ટ્સ"
32
+
33
+ #@ yarpp
34
+ #: template-builtin.php:35
35
+ #, php-format
36
+ msgid "%f is the YARPP match score between the current entry and this related entry. You are seeing this value because you are logged in to WordPress as an administrator. It is not shown to regular visitors."
37
+ msgstr "%f એફ વર્તમાન પ્રવેશ અને આ સંબંધિત પ્રવેશ વચ્ચે YARPP મેચ સ્કોર છે. તમે આ કિંમત જુએ છે કારણ કે તમે એડમિનિસ્ટ્રેટર તરીકે વર્ડપ્રેસ માટે લોગ થાય છે. તે નિયમિત મુલાકાતીઓ માટે બતાવાઈ નથી."
38
+
39
+ #@ yarpp
40
+ #: magic.php:297
41
+ #: options-meta-boxes.php:205
42
+ #: options-meta-boxes.php:269
43
+ #, php-format
44
+ msgid "Related posts brought to you by <a href='%s'>Yet Another Related Posts Plugin</a>."
45
+ msgstr "સંબંધિત પોસ્ટ્સ <a href='%s'> છતાં અન્ય સંબંધિત પોસ્ટ્સ દ્વારા તમે લાવ્યા પ્લગઇન કરો </ a>."
46
+
47
+ #@ yarpp
48
+ #: options.php:54
49
+ msgid "The MyISAM check has been overridden. You may now use the \"consider titles\" and \"consider bodies\" relatedness criteria."
50
+ msgstr "આ MyISAM ચેક ફરીથી લખાઈ રહી છે. હવે તમે ઉપયોગ કરી શકો છો \"consider titles\" and \"consider bodies\" relatedness માપદંડ."
51
+
52
+ #@ yarpp
53
+ #: options.php:63
54
+ #, php-format
55
+ msgid "YARPP's \"consider titles\" and \"consider bodies\" relatedness criteria require your <code>%s</code> table to use the <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>MyISAM storage engine</a>, but the table seems to be using the <code>%s</code> engine. These two options have been disabled."
56
+ msgstr "YARPP's \"consider titles\" and \"consider bodies\" relatedness માપદંડ ને તમારા <code>%s</code>માટે ઉપયોગ ટેબલ <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>MyISAM સંગ્રહ એન્જિન</a> પરંતુ ટેબલ પર <code>% s </ code> એન્જિનનો ઉપયોગ કરીને કરી રહ્યું છે. આ બે વિકલ્પો અક્ષમ કરવામાં આવી છે."
57
+
58
+ #@ yarpp
59
+ #: options.php:65
60
+ #, php-format
61
+ msgid "To restore these features, please update your <code>%s</code> table by executing the following SQL directive: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code> . No data will be erased by altering the table's engine, although there are performance implications."
62
+ msgstr "આ લક્ષણો પુનઃસ્થાપિત કરવા માટે, નીચેનો એસક્યુએલ ડાઈરેક્ટીવ ચલાવીને તમારા <code>% s </ code> કોષ્ટક અપડેટ કરો: <code> બદલો સૂચિ `% s` ENGINE = MyISAM; </ code>. કોઈ માહિતી ટેબલ એન્જિન બદલતા દ્વારા દૂર કરવામાં આવશે, જો કે પ્રભાવ અસરો છે."
63
+
64
+ #@ yarpp
65
+ #: options.php:67
66
+ #, php-format
67
+ msgid "If, despite this check, you are sure that <code>%s</code> is using the MyISAM engine, press this magic button:"
68
+ msgstr "જો, આ ચેક હોવા છતાં, તમે ખાતરી કરો કે <code>% s </ code> તે MyISAM એન્જિનનો ઉપયોગ કરીને છે, આ જાદુ બટન દબાવો:"
69
+
70
+ #@ yarpp
71
+ #: options.php:70
72
+ msgid "Trust me. Let me use MyISAM features."
73
+ msgstr "મને વિશ્વાસ કરો. મને MyISAM સુવિધાઓ ઉપયોગ કરે છે."
74
+
75
+ #@ yarpp
76
+ #: options.php:83
77
+ msgid "The YARPP database had an error but has been fixed."
78
+ msgstr "આ YARPP ડેટાબેઝ ભૂલ હતી પરંતુ સુધારાઈ ગયેલ છે."
79
+
80
+ #@ yarpp
81
+ #: options.php:85
82
+ msgid "The YARPP database has an error which could not be fixed."
83
+ msgstr "આ YARPP ડેટાબેઝ ભૂલ કે જે સુધારાઈ કરી શકાઈ નથી ધરાવે છે."
84
+
85
+ #@ yarpp
86
+ #: options-meta-boxes.php:45
87
+ #: options-meta-boxes.php:63
88
+ #: options-meta-boxes.php:76
89
+ msgid "do not consider"
90
+ msgstr "ધ્યાનમાં નથી"
91
+
92
+ #@ yarpp
93
+ #: options-meta-boxes.php:46
94
+ #: options-meta-boxes.php:64
95
+ #: options-meta-boxes.php:78
96
+ msgid "consider"
97
+ msgstr "ધ્યાનમાં"
98
+
99
+ #@ yarpp
100
+ #: options-meta-boxes.php:65
101
+ msgid "consider with extra weight"
102
+ msgstr "વધારાનું વજન સાથે વિચારણા"
103
+
104
+ #@ default
105
+ #@ yarpp
106
+ #: options-meta-boxes.php:286
107
+ msgid "Donate to mitcho (Michael Yoshitaka Erlewine) for this plugin via PayPal"
108
+ msgstr "આ પ્લગઈન માટે PAYPAL દ્વારા (mitcho માઈકલ Yoshitaka)"
109
+
110
+ #@ yarpp
111
+ #: options.php:178
112
+ msgid "Yet Another Related Posts Plugin Options"
113
+ msgstr "હજુ સુધી અન્ય સંબંધિત પોસ્ટ્સ પ્લગઇન વિકલ્પો"
114
+
115
+ #@ yarpp
116
+ #: options-meta-boxes.php:118
117
+ msgid "\"The Pool\""
118
+ msgstr "\"The Pool\""
119
+
120
+ #@ yarpp
121
+ #: options-meta-boxes.php:91
122
+ msgid "\"The Pool\" refers to the pool of posts and pages that are candidates for display as related to the current entry."
123
+ msgstr "\"The Pool\" પોસ્ટ્સ અને પૃષ્ઠો ડિસ્પ્લે માટે ઉમેદવારો તરીકે વર્તમાન પ્રવેશ સંબંધિત છે પૂલ ઉલ્લેખ કરે છે."
124
+
125
+ #@ yarpp
126
+ #: options-meta-boxes.php:96
127
+ msgid "Disallow by category:"
128
+ msgstr "શ્રેણી દ્વારા નામંજૂર:"
129
+
130
+ #@ yarpp
131
+ #: options-meta-boxes.php:98
132
+ msgid "Disallow by tag:"
133
+ msgstr "ટેગ દ્વારા નામંજૂર:"
134
+
135
+ #@ yarpp
136
+ #: options-meta-boxes.php:101
137
+ msgid "Show password protected posts?"
138
+ msgstr "પાસવર્ડ સુરક્ષિત પોસ્ટ્સ બતાવો?"
139
+
140
+ #@ yarpp
141
+ #: options-meta-boxes.php:140
142
+ msgid "Show only previous posts?"
143
+ msgstr "માત્ર અગાઉના પોસ્ટ્સ બતાવો?"
144
+
145
+ #@ yarpp
146
+ #: options-meta-boxes.php:148
147
+ msgid "\"Relatedness\" options"
148
+ msgstr "\"Relatedness\" વિકલ્પો"
149
+
150
+ #@ yarpp
151
+ #: options-meta-boxes.php:124
152
+ #: options-meta-boxes.php:139
153
+ #: options-meta-boxes.php:157
154
+ #: options-meta-boxes.php:161
155
+ #: options-meta-boxes.php:204
156
+ #: options-meta-boxes.php:221
157
+ #: options-meta-boxes.php:223
158
+ #: options-meta-boxes.php:228
159
+ #: options-meta-boxes.php:268
160
+ msgid "more&gt;"
161
+ msgstr "more&gt;"
162
+
163
+ #@ yarpp
164
+ #: options-meta-boxes.php:130
165
+ msgid "Match threshold:"
166
+ msgstr "થ્રેશોલ્ડ સ્કોર:"
167
+
168
+ #@ yarpp
169
+ #: options-meta-boxes.php:131
170
+ msgid "Titles: "
171
+ msgstr "શિર્ષકો:"
172
+
173
+ #@ yarpp
174
+ #: options-meta-boxes.php:133
175
+ msgid "Bodies: "
176
+ msgstr "સંસ્થાઓ:"
177
+
178
+ #@ yarpp
179
+ #: options-meta-boxes.php:135
180
+ msgid "Tags: "
181
+ msgstr "ટૅગ્સ:"
182
+
183
+ #@ yarpp
184
+ #: options-meta-boxes.php:137
185
+ msgid "Categories: "
186
+ msgstr "શ્રેણીઓ:"
187
+
188
+ #@ yarpp
189
+ #: options-meta-boxes.php:139
190
+ msgid "Cross-relate posts and pages?"
191
+ msgstr "પોસ્ટ્સ અને પૃષ્ઠો ક્રોસ-સંબંધિત છે?"
192
+
193
+ #@ yarpp
194
+ #: options-meta-boxes.php:139
195
+ msgid "When the \"Cross-relate posts and pages\" option is selected, the <code>related_posts()</code>, <code>related_pages()</code>, and <code>related_entries()</code> all will give the same output, returning both related pages and posts."
196
+ msgstr "જ્યારે \"પોસ્ટ્સ અને પૃષ્ઠો ક્રોસ સંબંધિત છે \" વિકલ્પ પસંદ થયેલ હોય, <code> (related_posts) </ code>, related_pages <code> () </ code>, અને <code> related_entries () </ code> બધા જ આઉટપુટ આપે છે, બંને સંબંધિત પૃષ્ઠો પોસ્ટ્સ અને સામગ્રી પરત કરશે."
197
+
198
+ #@ yarpp
199
+ #: options-meta-boxes.php:212
200
+ msgid "Display options <small>for your website</small>"
201
+ msgstr "ડિસ્પ્લે તમારી વેબસાઇટ માટે <small> વિકલ્પો </ small>"
202
+
203
+ #@ yarpp
204
+ #: options-meta-boxes.php:157
205
+ msgid "Automatically display related posts?"
206
+ msgstr "આપોઆપ સંબંધિત પોસ્ટ્સ પ્રદર્શિત?"
207
+
208
+ #@ yarpp
209
+ #: options-meta-boxes.php:157
210
+ msgid "This option automatically displays related posts right after the content on single entry pages. If this option is off, you will need to manually insert <code>related_posts()</code> or variants (<code>related_pages()</code> and <code>related_entries()</code>) into your theme files."
211
+ msgstr "આ વિકલ્પ આપોઆપ જ પ્રવેશ પૃષ્ઠો પરની સામગ્રી પછી તરત સંબંધિત પોસ્ટ્સ દર્શાવે છે. જો આ વિકલ્પ બંધ હોય છે, તમે જાતે તમારી થીમ માં <code> related_posts () </ code> અથવા ચલો (<code> related_pages () </ code> અને <code> related_entries () </ code>) દાખલ કરવાની જરૂર પડશે ફાઈલો છે."
212
+
213
+ #@ yarpp
214
+ #: options-meta-boxes.php:158
215
+ msgid "Website display code example"
216
+ msgstr "વેબસાઈટ પ્રદર્શન કોડ ઉદાહરણ"
217
+
218
+ #@ yarpp
219
+ #: options-meta-boxes.php:158
220
+ #: options-meta-boxes.php:221
221
+ msgid "(Update options to reload.)"
222
+ msgstr "(ફરિથી લોડ વિકલ્પો સુધારો.)"
223
+
224
+ #@ yarpp
225
+ #: options-meta-boxes.php:160
226
+ #: options-meta-boxes.php:226
227
+ msgid "Maximum number of related posts:"
228
+ msgstr "સંબંધિત પોસ્ટ્સ ની મહત્તમ સંખ્યા:"
229
+
230
+ #@ yarpp
231
+ #: options-meta-boxes.php:175
232
+ #: options-meta-boxes.php:244
233
+ msgid "Before / after related entries:"
234
+ msgstr "પહેલાં / પછી સંબંધિત પ્રવેશો:"
235
+
236
+ #@ yarpp
237
+ #: options-meta-boxes.php:175
238
+ #: options-meta-boxes.php:176
239
+ #: options-meta-boxes.php:184
240
+ #: options-meta-boxes.php:244
241
+ #: options-meta-boxes.php:245
242
+ #: options-meta-boxes.php:250
243
+ msgid "For example:"
244
+ msgstr "ઉદાહરણ તરીકે:"
245
+
246
+ #@ yarpp
247
+ #: options-meta-boxes.php:176
248
+ #: options-meta-boxes.php:245
249
+ msgid "Before / after each related entry:"
250
+ msgstr "પહેલાં / દરેક સંબંધિત પ્રવેશ પછી:"
251
+
252
+ #@ yarpp
253
+ #: options-meta-boxes.php:178
254
+ #: options-meta-boxes.php:247
255
+ msgid "Show excerpt?"
256
+ msgstr "ટૂંકસાર બતાવો?"
257
+
258
+ #@ yarpp
259
+ #: options-meta-boxes.php:179
260
+ #: options-meta-boxes.php:248
261
+ msgid "Excerpt length (No. of words):"
262
+ msgstr "અવતરણ લંબાઈ (શબ્દ નંબર):"
263
+
264
+ #@ yarpp
265
+ #: options-meta-boxes.php:183
266
+ msgid "Before / after (Excerpt):"
267
+ msgstr "પહેલાં / પછી (અવતરણ):"
268
+
269
+ #@ yarpp
270
+ #: options-meta-boxes.php:189
271
+ #: options-meta-boxes.php:254
272
+ msgid "Order results:"
273
+ msgstr "ઓર્ડર પરિણામો:"
274
+
275
+ #@ yarpp
276
+ #: options-meta-boxes.php:191
277
+ #: options-meta-boxes.php:256
278
+ msgid "score (high relevance to low)"
279
+ msgstr "કુલ સ્કોર: (ઓછી ઊંચા સુસંગતતા)"
280
+
281
+ #@ yarpp
282
+ #: options-meta-boxes.php:192
283
+ #: options-meta-boxes.php:257
284
+ msgid "score (low relevance to high)"
285
+ msgstr "કુલ સ્કોર: (ઊંચા નીચા સુસંગતતા)"
286
+
287
+ #@ yarpp
288
+ #: options-meta-boxes.php:193
289
+ #: options-meta-boxes.php:258
290
+ msgid "date (new to old)"
291
+ msgstr "તારીખ (નવા જૂના)"
292
+
293
+ #@ yarpp
294
+ #: options-meta-boxes.php:194
295
+ #: options-meta-boxes.php:259
296
+ msgid "date (old to new)"
297
+ msgstr "તારીખ (નવા જૂના)"
298
+
299
+ #@ yarpp
300
+ #: options-meta-boxes.php:195
301
+ #: options-meta-boxes.php:260
302
+ msgid "title (alphabetical)"
303
+ msgstr "શીર્ષક (મૂળાક્ષર)"
304
+
305
+ #@ yarpp
306
+ #: options-meta-boxes.php:196
307
+ #: options-meta-boxes.php:261
308
+ msgid "title (reverse alphabetical)"
309
+ msgstr "શીર્ષક (રિવર્સ મૂળાક્ષર)"
310
+
311
+ #@ yarpp
312
+ #: options-meta-boxes.php:201
313
+ #: options-meta-boxes.php:266
314
+ msgid "Default display if no results:"
315
+ msgstr "કોઈ પરિણામો જો મૂળભૂત ડિસ્પ્લે:"
316
+
317
+ #@ yarpp
318
+ #: includes.php:257
319
+ #: options-meta-boxes.php:203
320
+ #: options-meta-boxes.php:268
321
+ msgid "Help promote Yet Another Related Posts Plugin?"
322
+ msgstr "મદદ છતાં અન્ય સંબંધિત પોસ્ટ્સ પ્લગઇન પ્રોત્સાહન?"
323
+
324
+ #@ yarpp
325
+ #: options-meta-boxes.php:205
326
+ #: options-meta-boxes.php:269
327
+ #, php-format
328
+ msgid "This option will add the code %s. Try turning it on, updating your options, and see the code in the code example to the right. These links and donations are greatly appreciated."
329
+ msgstr "આ વિકલ્પ કોડ% s ને ઉમેરી આવશે. તે દેવાનો પર, તમારા વિકલ્પો અપડેટ કરવાનો પ્રયાસ કરો, અને કોડ જમણી ઉદાહરણમાં કોડ જુઓ. આ લિંક્સ અને દાન આવકાર્ય છે."
330
+
331
+ #@ yarpp
332
+ #: options-meta-boxes.php:276
333
+ msgid "Display options <small>for RSS</small>"
334
+ msgstr "વિકલ્પો દર્શાવો <small>for RSS</small>"
335
+
336
+ #@ yarpp
337
+ #: options-meta-boxes.php:221
338
+ msgid "Display related posts in feeds?"
339
+ msgstr "ફીડ્સ સંબંધિત પોસ્ટ્સ દર્શાવો?"
340
+
341
+ #@ yarpp
342
+ #: options-meta-boxes.php:223
343
+ msgid "Display related posts in the descriptions?"
344
+ msgstr "વર્ણન માં સંબંધિત પોસ્ટ્સ દર્શાવો?"
345
+
346
+ #@ yarpp
347
+ #: options-meta-boxes.php:223
348
+ msgid "This option displays the related posts in the RSS description fields, not just the content. If your feeds are set up to only display excerpts, however, only the description field is used, so this option is required for any display at all."
349
+ msgstr "આ વિકલ્પ આરએસએસ વર્ણન ક્ષેત્રોમાં સંબંધિત માત્ર સામગ્રી પોસ્ટ્સ નથી, દર્શાવે છે. જો તમારી ફીડ્સ સેટ છે માત્ર અવતરણો દર્શાવવા માટે, જોકે, માત્ર વર્ણન ક્ષેત્ર માટે વપરાય છે તેથી, આ વિકલ્પ બધી કોઈપણ ડિસ્પ્લે માટે જરૂરી છે."
350
+
351
+ #@ yarpp
352
+ #: options-meta-boxes.php:221
353
+ msgid "RSS display code example"
354
+ msgstr "ડિસ્પ્લે કોડ ઉદાહરણ આરએસએસ"
355
+
356
+ #@ yarpp
357
+ #: options-meta-boxes.php:250
358
+ msgid "Before / after (excerpt):"
359
+ msgstr "પહેલાં / પછી (નિષ્ણાત):"
360
+
361
+ #@ yarpp
362
+ #: options-meta-boxes.php:38
363
+ msgid "word"
364
+ msgstr "શબ્દ"
365
+
366
+ #@ yarpp
367
+ #: options-meta-boxes.php:39
368
+ msgid "tag"
369
+ msgstr "દિવસ"
370
+
371
+ #@ yarpp
372
+ #: options-meta-boxes.php:40
373
+ msgid "category"
374
+ msgstr "વર્ગ"
375
+
376
+ #@ yarpp
377
+ #: options-meta-boxes.php:48
378
+ #: options-meta-boxes.php:80
379
+ #, php-format
380
+ msgid "require at least one %s in common"
381
+ msgstr "ઓછામાં ઓછી એક સામાન્ય% s જરૂરી છે"
382
+
383
+ #@ yarpp
384
+ #: options-meta-boxes.php:50
385
+ #: options-meta-boxes.php:82
386
+ #, php-format
387
+ msgid "require more than one %s in common"
388
+ msgstr "એક કરતાં વધુ સામાન્ય %s જરૂરી છે"
389
+
390
+ #@ yarpp
391
+ #: options.php:114
392
+ msgid "Options saved!"
393
+ msgstr "વિકલ્પો સાચવ્યા!"
394
+
395
+ #@ yarpp
396
+ #: options-meta-boxes.php:124
397
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
398
+ msgstr "ઊંચી મેચ થ્રેશોલ્ડ વધુ પ્રતિબંધિત છે, અને તમે ઓછા સંબંધિત પોસ્ટ્સ એકંદર છે. મૂળભૂત મેચ થ્રેશોલ્ડ 5 છે. જો તમે યોગ્ય મેચ threshhold શોધવા માંગો છો, અમુક પોસ્ટ સંબંધિત પોસ્ટ્સ પ્રદર્શન પર એક નજર અને તેમના સ્કોર્સ લો. તમે શું સંબંધિત પોસ્ટ્સ પ્રકારના અપ કરવામાં આવી રહી લેવામાં આવે છે અને જુઓ કે મેચ સ્કોર્સ પ્રકારની શું કરી શકો છો, અને તમારી સાઇટ માટે યોગ્ય થ્રેશોલ્ડ નક્કી કરે છે."
399
+
400
+ #@ yarpp
401
+ #: options.php:279
402
+ msgid "Update options"
403
+ msgstr "વિકલ્પોને અપડેટ"
404
+
405
+ #@ yarpp
406
+ #: options.php:280
407
+ msgid "Do you really want to reset your configuration?"
408
+ msgstr "શું તમે ખરેખર તમારી રૂપરેખાંકન ફરીથી સેટ કરવા માંગો છો?"
409
+
410
+ #@ yarpp
411
+ #: options.php:280
412
+ msgid "Reset options"
413
+ msgstr "વિકલ્પો ફરીથી સેટ કરો"
414
+
415
+ #@ yarpp
416
+ #: includes.php:26
417
+ #: includes.php:37
418
+ msgid "Related posts:"
419
+ msgstr "સંબંધિત પોસ્ટ્સ:"
420
+
421
+ #@ yarpp
422
+ #: includes.php:28
423
+ #: includes.php:39
424
+ #: template-metabox.php:27
425
+ #: template-widget.php:13
426
+ msgid "No related posts."
427
+ msgstr "કોઈ સંબંધિત પોસ્ટ્સ."
428
+
429
+ #@ yarpp
430
+ #: cache-postmeta.php:105
431
+ #: cache-tables.php:131
432
+ msgid "Example post "
433
+ msgstr "ઉદાહરણ પોસ્ટ"
434
+
435
+ #@ yarpp
436
+ #: options-meta-boxes.php:105
437
+ msgid "day(s)"
438
+ msgstr "દિવસ (ઓ)"
439
+
440
+ #@ yarpp
441
+ #: options-meta-boxes.php:106
442
+ msgid "week(s)"
443
+ msgstr "સપ્તાહ (ઓ)"
444
+
445
+ #@ yarpp
446
+ #: options-meta-boxes.php:107
447
+ msgid "month(s)"
448
+ msgstr "મહિનો (ઓ)"
449
+
450
+ #@ yarpp
451
+ #: options-meta-boxes.php:109
452
+ msgid "Show only posts from the past NUMBER UNITS"
453
+ msgstr "ભૂતકાળમાં NUMBER UNITS માત્ર પોસ્ટ્સ બતાવો"
454
+
455
+ #@ yarpp
456
+ #: options.php:46
457
+ #, php-format
458
+ msgid "There is a new beta (%s) of Yet Another Related Posts Plugin. You can <a href=\"%s\">download it here</a> at your own risk."
459
+ msgstr "ત્યાં છતાં અન્ય સંબંધિત પોસ્ટ્સ પ્લગઇન એક નવી બીટા (% s) છે. તમે <a href=\"%s\"> તેને અહીં ડાઉનલોડ કરી શકો છો </ a> તમારા પોતાના જોખમે."
460
+
461
+ #@ yarpp
462
+ #: includes.php:248
463
+ #: options-meta-boxes.php:161
464
+ #: options-meta-boxes.php:228
465
+ msgid "Display using a custom template file"
466
+ msgstr "કસ્ટમ ટેમ્પલેટ ફાઇલનો ઉપયોગ કરીને દર્શાવો"
467
+
468
+ #@ yarpp
469
+ #: options-meta-boxes.php:228
470
+ msgid "NEW!"
471
+ msgstr "નવી!"
472
+
473
+ #@ yarpp
474
+ #: options-meta-boxes.php:161
475
+ #: options-meta-boxes.php:228
476
+ msgid "This advanced option gives you full power to customize how your related posts are displayed. Templates (stored in your theme folder) are written in PHP."
477
+ msgstr "આ અદ્યતન વિકલ્પ તમે સંપૂર્ણ માટે કસ્ટમાઇઝ કેવી રીતે તમારા સંબંધિત પોસ્ટ્સ દર્શાવવામાં આવે છે શક્તિ આપે છે. નમૂનાઓ (તમારી થીમ ફોલ્ડરમાં સંગ્રહિત) PHP માં લખાયેલ છે."
478
+
479
+ #@ yarpp
480
+ #: includes.php:249
481
+ #: options-meta-boxes.php:165
482
+ #: options-meta-boxes.php:233
483
+ msgid "Template file:"
484
+ msgstr "ઢાંચો ફાઈલ:"
485
+
486
+ #@ yarpp
487
+ #: options-meta-boxes.php:175
488
+ #: options-meta-boxes.php:176
489
+ #: options-meta-boxes.php:184
490
+ #: options-meta-boxes.php:244
491
+ #: options-meta-boxes.php:245
492
+ #: options-meta-boxes.php:250
493
+ msgid " or "
494
+ msgstr "અથવા"
495
+
496
+ #@ yarpp
497
+ #: options-meta-boxes.php:221
498
+ msgid "This option displays related posts at the end of each item in your RSS and Atom feeds. No template changes are needed."
499
+ msgstr "આ વિકલ્પ તમારા RSS અને Atom ફીડ્સ દરેક વસ્તુ ઓવરને અંતે સંબંધિત પોસ્ટ્સ દર્શાવે છે. કોઈ નમૂનો ફેરફારો જરૂરી છે."
500
+
501
+ #@ yarpp
502
+ #: template-metabox.php:12
503
+ msgid "These are the related entries for this entry. Updating this post may change these related posts."
504
+ msgstr "આ આ પ્રવેશ માટે સંબંધિત એન્ટ્રીઓ છે. આ પોસ્ટ સુધારી રહ્યા છીએ આ સંબંધિત પોસ્ટ્સ બદલી શકો છો."
505
+
506
+ #@ yarpp
507
+ #: template-metabox.php:25
508
+ msgid "Whether all of these related entries are actually displayed and how they are displayed depends on your YARPP display options."
509
+ msgstr "શું આ સંબંધિત પ્રવેશો તમામ વાસ્તવમાં દર્શાવવામાં આવે છે અને તેઓ દર્શાવવામાં આવે છે કે કેવી રીતે તમારા YARPP પ્રદર્શન વિકલ્પો પર આધાર રાખે છે."
510
+
511
+ #@ yarpp
512
+ #: includes.php:169
513
+ msgid "Settings"
514
+ msgstr "સેટિંગ્સ"
515
+
516
+ #@ default
517
+ #: includes.php:243
518
+ msgid "Title:"
519
+ msgstr "શીર્ષક:"
520
+
521
+ #@ yarpp
522
+ #: includes.php:385
523
+ msgid "Related entries may be displayed once you save your entry"
524
+ msgstr "સંબંધિત પ્રવેશો એકવાર તમે તમારી એન્ટ્રી સેવ પ્રદર્શિત થઈ શકે છે"
525
+
526
+ #@ yarpp
527
+ #: options-meta-boxes.php:124
528
+ msgid "YARPP limits the related posts list by (1) a maximum number and (2) a <em>match threshold</em>."
529
+ msgstr "YARPP (1) મહત્તમ સંખ્યા દ્વારા સંબંધિત પોસ્ટ્સ યાદી મર્યાદિત અને (2) એક <em> મેચ થ્રેશોલ્ડ </ em>."
530
+
531
+ #@ yarpp
532
+ #: options-meta-boxes.php:283
533
+ msgid "YARPP Forum"
534
+ msgstr "YARPP ફોરમ"
535
+
536
+ #@ yarpp
537
+ #: options-meta-boxes.php:284
538
+ msgid "YARPP on Twitter"
539
+ msgstr "Twitter પર YARPP"
540
+
541
+ #@ yarpp
542
+ #: options-meta-boxes.php:285
543
+ msgid "YARPP on the Web"
544
+ msgstr "વેબ પર YARPP"
545
+
546
+ #@ yarpp
547
+ #: options-meta-boxes.php:292
548
+ msgid "Contact YARPP"
549
+ msgstr "સંપર્ક YARPP"
550
+
551
+ #@ default
552
+ #: options.php:42
553
+ #, php-format
554
+ msgid "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">View version %4$s details</a> or <a href=\"%5$s\">update automatically</a>."
555
+ msgstr "ત્યાં એક નવી આવૃત્તિ છે %1$s પ્રાપ્ય. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">આવૃત્તિ %4$s જુઓ વિગતો</a>અથવા <a href=\"%5$s\">આપમેળે અપડેટ</a>."
556
+
557
+ #@ yarpp
558
+ #: options.php:86
559
+ #, php-format
560
+ msgid "Please try <a href=\"%s\" target=\"_blank\">manual SQL setup</a>."
561
+ msgstr "પ્રયાસ કરો <a href=\"%s\" target=\"_blank\"> જાતે એસક્યુએલ સુયોજન કરો </ a>."
562
+
563
+ #@ yarpp
564
+ #: options.php:188
565
+ #, php-format
566
+ msgid "by <a href=\"%s\" target=\"_blank\">mitcho (Michael 芳貴 Erlewine)</a>"
567
+ msgstr "દ્વારા <a href=\"%s\" target=\"_blank\">mitcho (Michael 芳貴 Erlewine)</a>"
568
+
readme.txt CHANGED
@@ -215,18 +215,20 @@ YARPP is currently localized in the following languages:
215
  * Croatian (`hr`) by [GoCroatia.com](http://gocroatia.com)
216
  * Czech (`cs_CZ`) by [Zdenek Hejl](http://www.zdenek-hejl.com)
217
  * Dutch (`nl_NL`) by Sybrand van der Werf
 
218
  * Farsi/Persian (`fa_IR`) by [Moshen Derakhshan](http://webdesigner.downloadkar.com/)
219
  * French (`fr_FR`) by Lionel Chollet
220
  * Georgian (`ge_KA`) by Kasia Ciszewski of [Find My Hosting](www.findmyhosting.com)
221
  * German (`de_DE`) by Michael Kalina of [3th.be](http://3th.be) and Nils Armgart of [movie-blog.de.ms](http://www.movie-blog.de.ms)
222
  * Cypriot Greek (`el_CY`) by Aristidis Tonikidis of [akouseto.gr](http://www.akouseto.gr)
223
  * Greek (`el_EL`) by Aristidis Tonikidis of [akouseto.gr](http://www.akouseto.gr)
 
224
  * Hebrew (`he_IL`) by Mickey Zelansky of [simpleidea.us](http://simpleidea.us) and [Hadas Kotek](http://web.mit.edu/hkotek/www)
225
  * Hindi (`hi_IN`) by [Outshine Solutions](http://outshinesolutions.com/)
226
  * Italian (`it_IT`) by Gianni Diurno of [gidibao.net](http://gidibao.net)
227
  * Irish (`gb_IR`) by [Ray Gren](http://letsbefamous.com)
228
  * Bahasa Indonesia (`id_ID`) by [Hendry Lee](http://hendrylee.com/) of [Kelayang](http://kelayang.com/)
229
- * Japanese (`ja`) by myself (yarpp at mitcho dot com)
230
  * Kazakh (`kk_KZ`) by [DachaDecor](http://DachaDecor.ru)
231
  * Korean (`ko_KR`) by [Jong-In Kim](http://incommunity.codex.kr)
232
  * Latvian (`lv_LV`) by [Mike](http://antsar.info)
@@ -247,19 +249,16 @@ YARPP is currently localized in the following languages:
247
  * Ukrainian (`uk_UA`) by [Onore](http://Onore.kiev.ua) (Alexander Musevich)
248
  * Uzbek (`uz_UZ`) by Ali Safarov of [comfi.com](http://www.comfi.com/)
249
 
250
- <!--We already have localizers lined up for the following languages:
251
- * Danish
252
- * Catalan
253
- * Thai
254
- * Bhasa Indonesian
255
- -->
256
-
257
  If you are a bilingual speaker of English and another language and an avid user of YARPP, I would love to talk to you about localizing YARPP! Localizing YARPP can be pretty easy using [the Codestyling Localization plugin](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en). Please [contact me](mailto:yarpp@mitcho.com) *first* before translating to make sure noone else is working on your language. Thanks!
258
 
259
  == Changelog ==
260
 
261
  = 4.0.6 =
262
  * YARPP's automatic display will not run on posts which include the HTML comment `<!--noyarpp-->` [by request](https://wordpress.org/support/topic/disabling-yarrp-on-specific-pages).
 
 
 
 
263
 
264
  = 4.0.5 =
265
  * [Bugfix](https://wordpress.org/support/topic/bug-in-upgrading-from-yarp-3_5_2b2): Some upgrade code would try to access the global $yarpp before it was properly initialized
215
  * Croatian (`hr`) by [GoCroatia.com](http://gocroatia.com)
216
  * Czech (`cs_CZ`) by [Zdenek Hejl](http://www.zdenek-hejl.com)
217
  * Dutch (`nl_NL`) by Sybrand van der Werf
218
+ * Estonian (`est_EST`) by [JOURNAL](http://journal24.info/)
219
  * Farsi/Persian (`fa_IR`) by [Moshen Derakhshan](http://webdesigner.downloadkar.com/)
220
  * French (`fr_FR`) by Lionel Chollet
221
  * Georgian (`ge_KA`) by Kasia Ciszewski of [Find My Hosting](www.findmyhosting.com)
222
  * German (`de_DE`) by Michael Kalina of [3th.be](http://3th.be) and Nils Armgart of [movie-blog.de.ms](http://www.movie-blog.de.ms)
223
  * Cypriot Greek (`el_CY`) by Aristidis Tonikidis of [akouseto.gr](http://www.akouseto.gr)
224
  * Greek (`el_EL`) by Aristidis Tonikidis of [akouseto.gr](http://www.akouseto.gr)
225
+ * Gujrati (`gu_IN`) by [Vikas Arora](http://www.wiznicworld.com/)
226
  * Hebrew (`he_IL`) by Mickey Zelansky of [simpleidea.us](http://simpleidea.us) and [Hadas Kotek](http://web.mit.edu/hkotek/www)
227
  * Hindi (`hi_IN`) by [Outshine Solutions](http://outshinesolutions.com/)
228
  * Italian (`it_IT`) by Gianni Diurno of [gidibao.net](http://gidibao.net)
229
  * Irish (`gb_IR`) by [Ray Gren](http://letsbefamous.com)
230
  * Bahasa Indonesia (`id_ID`) by [Hendry Lee](http://hendrylee.com/) of [Kelayang](http://kelayang.com/)
231
+ * Japanese (`ja`) by [myself](http://mitcho.com)
232
  * Kazakh (`kk_KZ`) by [DachaDecor](http://DachaDecor.ru)
233
  * Korean (`ko_KR`) by [Jong-In Kim](http://incommunity.codex.kr)
234
  * Latvian (`lv_LV`) by [Mike](http://antsar.info)
249
  * Ukrainian (`uk_UA`) by [Onore](http://Onore.kiev.ua) (Alexander Musevich)
250
  * Uzbek (`uz_UZ`) by Ali Safarov of [comfi.com](http://www.comfi.com/)
251
 
 
 
 
 
 
 
 
252
  If you are a bilingual speaker of English and another language and an avid user of YARPP, I would love to talk to you about localizing YARPP! Localizing YARPP can be pretty easy using [the Codestyling Localization plugin](http://www.code-styling.de/english/development/wordpress-plugin-codestyling-localization-en). Please [contact me](mailto:yarpp@mitcho.com) *first* before translating to make sure noone else is working on your language. Thanks!
253
 
254
  == Changelog ==
255
 
256
  = 4.0.6 =
257
  * YARPP's automatic display will not run on posts which include the HTML comment `<!--noyarpp-->` [by request](https://wordpress.org/support/topic/disabling-yarrp-on-specific-pages).
258
+ * Bundled `yarpp-template-wpml.php` is now called `yarpp-template-multilingual.php`, following [discussion with the author of the Polylang plugin](https://wordpress.org/support/topic/better-integration-of-yarpp-and-polylang).
259
+ * Localizations
260
+ * Added Estonian (`est_EST`) by [JOURNAL](http://journal24.info/)
261
+ * Added Gujrati (`gu_IN`) by [Vikas Arora](http://www.wiznicworld.com/)
262
 
263
  = 4.0.5 =
264
  * [Bugfix](https://wordpress.org/support/topic/bug-in-upgrading-from-yarp-3_5_2b2): Some upgrade code would try to access the global $yarpp before it was properly initialized
yarpp-templates/yarpp-template-multilingual.php ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ YARPP Template: Multilingual
4
+ Description: An example template for use with the WPML and Polylang plugins
5
+ Author: mitcho (Michael Yoshitaka Erlewine)
6
+ */
7
+
8
+ if (function_exists("icl_register_string")) {
9
+ icl_register_string("Yet Another Related Posts Plugin", "related posts header", "Related Posts");
10
+ icl_register_string("Yet Another Related Posts Plugin", "no related posts message", "No related posts.");
11
+ }
12
+
13
+ ?><h3><?php echo (function_exists("icl_t") ? icl_t("Yet Another Related Posts Plugin", "related posts header", "Related Posts") : "Related Posts") ?></h3>
14
+ <?php if (have_posts()):?>
15
+ <ol>
16
+ <?php while (have_posts()) : the_post(); ?>
17
+ <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
18
+ <?php endwhile; ?>
19
+ </ol>
20
+ <?php else: ?>
21
+ <p><?php echo (function_exists("icl_t") ? icl_t("Yet Another Related Posts Plugin", "no related posts message", "No related posts.") : "No related posts.") ?></p>
22
+ <?php endif; ?>
yarpp-templates/yarpp-template-wpml.php DELETED
@@ -1,22 +0,0 @@
1
- <?php
2
- /*
3
- YARPP Template: WPML
4
- Description: An example template for use with the WPML plugin
5
- Author: mitcho (Michael Yoshitaka Erlewine)
6
- */
7
-
8
- if (function_exists("icl_register_string")) {
9
- icl_register_string("Yet Another Related Posts Plugin","related posts header","Related Posts");
10
- icl_register_string("Yet Another Related Posts Plugin","no related posts message","No related posts.");
11
- }
12
-
13
- ?><h3><?php echo (function_exists("icl_t") ? icl_t("Yet Another Related Posts Plugin","related posts header","Related Posts") : "Related Posts B") ?></h3>
14
- <?php if (have_posts()):?>
15
- <ol>
16
- <?php while (have_posts()) : the_post(); ?>
17
- <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
18
- <?php endwhile; ?>
19
- </ol>
20
- <?php else: ?>
21
- <p><?php echo (function_exists("icl_t") ? icl_t("Yet Another Related Posts Plugin","no related posts message","No related posts.") : "No related posts. B") ?></p>
22
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
yarpp.php CHANGED
@@ -3,13 +3,13 @@
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://yarpp.org/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. Now with Now with thumbnail support built-in!
6
- Version: 4.0.6b1
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: http://tinyurl.com/donatetomitcho
10
  */
11
 
12
- define('YARPP_VERSION', '4.0.6b1');
13
  define('YARPP_DIR', dirname(__FILE__));
14
  define('YARPP_NO_RELATED', ':(');
15
  define('YARPP_RELATED', ':)');
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://yarpp.org/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. Now with Now with thumbnail support built-in!
6
+ Version: 4.0.6b2
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: http://tinyurl.com/donatetomitcho
10
  */
11
 
12
+ define('YARPP_VERSION', '4.0.6b2');
13
  define('YARPP_DIR', dirname(__FILE__));
14
  define('YARPP_NO_RELATED', ':(');
15
  define('YARPP_RELATED', ':)');