Yet Another Related Posts Plugin (YARPP) - Version 3.0.2b1

Version Description

Download this release

Release Info

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

Code changes from version 4.0.1 to 3.0.2b1

Files changed (7) hide show
  1. class-admin.php +3 -30
  2. class-cache.php +1 -1
  3. class-core.php +3 -3
  4. lang/yarpp-pl_PL.mo +0 -0
  5. lang/yarpp-pl_PL.po +612 -441
  6. readme.txt +5 -0
  7. yarpp.php +2 -2
class-admin.php CHANGED
@@ -15,7 +15,7 @@ class YARPP_Admin {
15
  exit;
16
  }
17
 
18
- // if action=flush and the nonce is correct, reset the cache
19
  if ( isset($_GET['action']) && $_GET['action'] == 'copy_templates' &&
20
  check_ajax_referer( 'yarpp_copy_templates', false, false ) !== false ) {
21
  $this->copy_templates();
@@ -193,7 +193,7 @@ class YARPP_Admin {
193
  </script>\n";
194
  }
195
 
196
- function optin_notice( $pool = null ) {
197
  $screen = get_current_screen();
198
  if ( is_null($screen) || $screen->id == 'settings_page_yarpp' )
199
  return;
@@ -202,34 +202,7 @@ class YARPP_Admin {
202
  update_user_option( $user, 'yarpp_saw_optin', true );
203
 
204
  echo '<div class="updated fade"><p>';
205
-
206
- // @todo i18n
207
- if ( is_null( $pool ) )
208
- $pool = $this->core->get_option( 'pools[message]' );
209
- switch ( $pool ) {
210
- case 0:
211
- echo "<strong>Help make YARPP better</strong> by sending information about YARPP's settings and usage statistics.";
212
- break;
213
- case 1:
214
- echo sprintf( __( "With your permission, YARPP will send information about YARPP's settings, usage, and environment back to a central server at %s.", 'yarpp' ), '<code>yarpp.org</code>') . ' ';
215
- echo __( "This information will be used to improve YARPP in the future and help decide future development decisions for YARPP.", 'yarpp' ) . ' ';
216
- echo '<strong>' . __( "Contributing this data will help make YARPP better for you and for other YARPP users.", 'yarpp' ) . '</strong>';
217
- break;
218
- case 2:
219
- echo "<strong>Help make YARPP better.</strong> ";
220
- echo sprintf( "With your permission, YARPP will send information about YARPP's settings, usage, and environment back to a central server at %s.", '<code>yarpp.org</code>') . ' ';
221
- echo "This information will be used to improve YARPP in the future and help decide future development decisions for YARPP.";
222
- break;
223
- case 3:
224
- echo "<strong>Help make YARPP awesome</strong> by allowing it to collect information about your site and how it uses YARPP.";
225
- break;
226
- case 4:
227
- echo "<strong>We'd like your help making YARPP awesome.</strong> Is it OK if YARPP occasionally collects some data about your site and its use of YARPP?";
228
- break;
229
- case 5:
230
- echo "Would you like to help make YARPP better by sharing some technical information with YARPP?";
231
- break;
232
- }
233
 
234
  echo '</p><p>';
235
  $this->print_optin_button();
15
  exit;
16
  }
17
 
18
+ // if action=copy_templates and the nonce is correct, copy templates
19
  if ( isset($_GET['action']) && $_GET['action'] == 'copy_templates' &&
20
  check_ajax_referer( 'yarpp_copy_templates', false, false ) !== false ) {
21
  $this->copy_templates();
193
  </script>\n";
194
  }
195
 
196
+ function optin_notice() {
197
  $screen = get_current_screen();
198
  if ( is_null($screen) || $screen->id == 'settings_page_yarpp' )
199
  return;
202
  update_user_option( $user, 'yarpp_saw_optin', true );
203
 
204
  echo '<div class="updated fade"><p>';
205
+ _e( "<strong>Help make YARPP better</strong> by sending information about YARPP's settings and usage statistics.", 'yarpp' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
 
207
  echo '</p><p>';
208
  $this->print_optin_button();
class-cache.php CHANGED
@@ -185,7 +185,7 @@ abstract class YARPP_Cache {
185
 
186
  $newsql .= " where post_status in ( 'publish', 'static' ) and ID != '$reference_ID'";
187
 
188
- if ($past_only) // 3.1.8: revised $past_only option
189
  $newsql .= " and post_date <= '$reference_post->post_date' ";
190
  if ( !$show_pass_post )
191
  $newsql .= " and post_password ='' ";
185
 
186
  $newsql .= " where post_status in ( 'publish', 'static' ) and ID != '$reference_ID'";
187
 
188
+ if ( $past_only ) // 3.1.8: revised $past_only option
189
  $newsql .= " and post_date <= '$reference_post->post_date' ";
190
  if ( !$show_pass_post )
191
  $newsql .= " and post_password ='' ";
class-core.php CHANGED
@@ -121,7 +121,7 @@ class YARPP {
121
  'display_code' => false, // new in 4
122
  'auto_display_archive' => false, // new in 4
123
  'auto_display_post_types' => array( 'post' ), // new in 4, replacing auto_display
124
- 'pools' => array( 'message' => mt_rand(0,5) ), // new in 4
125
  );
126
  }
127
 
@@ -140,7 +140,7 @@ class YARPP {
140
  update_option( 'yarpp', $new_options );
141
 
142
  // new in 3.1: clear cache when updating certain settings.
143
- $clear_cache_options = array( 'show_pass_post' => 1, 'recent' => 1, 'threshold' => 1 );
144
 
145
  $relevant_options = array_intersect_key( $options, $clear_cache_options );
146
  $relevant_current_options = array_intersect_key( $current_options, $clear_cache_options );
@@ -1055,7 +1055,7 @@ class YARPP {
1055
  // this filter doesn't handle feeds
1056
  if ( is_feed() )
1057
  return $content;
1058
-
1059
  $auto_display_post_types = $this->get_option( 'auto_display_post_types' );
1060
 
1061
  // if it's not an auto-display post type, return
121
  'display_code' => false, // new in 4
122
  'auto_display_archive' => false, // new in 4
123
  'auto_display_post_types' => array( 'post' ), // new in 4, replacing auto_display
124
+ 'pools' => array(), // new in 4
125
  );
126
  }
127
 
140
  update_option( 'yarpp', $new_options );
141
 
142
  // new in 3.1: clear cache when updating certain settings.
143
+ $clear_cache_options = array( 'show_pass_post' => 1, 'recent' => 1, 'threshold' => 1, 'past_only' => 1 );
144
 
145
  $relevant_options = array_intersect_key( $options, $clear_cache_options );
146
  $relevant_current_options = array_intersect_key( $current_options, $clear_cache_options );
1055
  // this filter doesn't handle feeds
1056
  if ( is_feed() )
1057
  return $content;
1058
+
1059
  $auto_display_post_types = $this->get_option( 'auto_display_post_types' );
1060
 
1061
  // if it's not an auto-display post type, return
lang/yarpp-pl_PL.mo CHANGED
Binary file
lang/yarpp-pl_PL.po CHANGED
@@ -2,567 +2,738 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YARPP_PL\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-17 14:23+0100\n"
6
- "PO-Revision-Date: 2011-10-04 11:45+0100\n"
7
- "Language-Team: K.Adamski <http://perfecta.pro/wp-pl/>\n"
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
12
- "X-Poedit-Language: Polish\n"
13
- "X-Poedit-Country: POLAND\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "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"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Textdomain-Support: yes\n"
18
- "Last-Translator: PositionMaker <info@positionmaker.pl>\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 "Powiązane wpisy (YARPP)"
27
 
28
- #@ yarpp
29
- #: includes.php:376
30
  msgid "Related Posts"
31
  msgstr "Powiązane wpisy"
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 to wartość podobieństwa między tym i linkowanym wpisem, wyliczona przez algorytm YARPP. Widzisz tę liczbę, ponieważ jesteś zalogowany jako administrator bloga. Nie jest ona pokazywana normalnym użytkownikom strony."
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 "Powiązane wpisy wygenerowane przez <a href='%s'>wtyczkę Yet Another Related Posts</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 "Opcja sprawdzania MyISAM została unieważniona. Możesz teraz używać opcje \"uwzględniaj tytuły\" i \"uwzględniaj treść główną\"."
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 "Opcje YARPP \"uwzględniaj tytuły\" i \"uwzględniaj treść główną\" wymagają, aby tabela <code>%s</code> używała <a href='http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html'>mechanizmu MyISAM</a>, ale powyższa tabela używa mechanizmu <code>%s</code>. Te dwie opcje zostały wyłączone."
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 "Aby przywrócić te opcje, uaktualnij tabelę <code>%s</code> wykonując następujące zapytanie SQL: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code>. Nie powinno to spowodować uszkodzenia danych, ale może wpłynąć na szybkość działania."
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 "Jeśli pomimo sprawdzenia tego, jesteś pewien, że <code>%s</code> używa mechanizmu MyISAM, naciśnij ten magiczny przycisk:"
69
-
70
- #@ yarpp
71
- #: options.php:70
72
- msgid "Trust me. Let me use MyISAM features."
73
- msgstr "Zaufaj mi. Pozwól uzywać właściwości MyISAM."
74
 
75
- #@ yarpp
76
- #: options.php:83
77
- msgid "The YARPP database had an error but has been fixed."
78
- msgstr "Baza danych YARPP zawierała błąd, ale został on naprawiony."
 
 
 
79
 
80
- #@ yarpp
81
- #: options.php:85
82
- msgid "The YARPP database has an error which could not be fixed."
83
- msgstr "Baza danych YARPP zawiera błąd, którego nie można naprawić."
 
 
 
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 "nie uwzględniaj"
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 "uwzględniaj"
 
98
 
99
- #@ yarpp
100
- #: options-meta-boxes.php:65
101
- msgid "consider with extra weight"
102
- msgstr "uwzględniaj z większa wagą"
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 "Przekaż darowiznę mitcho (Michael Yoshitaka Erlewine) - autorowi plugina - za pomocą PayPal"
109
 
110
- #@ yarpp
111
- #: options.php:178
112
- msgid "Yet Another Related Posts Plugin Options"
113
- msgstr "Opcje YARPP"
114
 
115
- #@ yarpp
116
- #: options-meta-boxes.php:118
117
- msgid "\"The Pool\""
118
- msgstr "\"Pula\""
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 "\"Pula\" to zbiór tych wpisów i stron, które mają być uwzględniane przy wyświetlaniu powiązanych linków."
124
 
125
- #@ yarpp
126
- #: options-meta-boxes.php:96
127
- msgid "Disallow by category:"
128
- msgstr "Wyklucz kategorie:"
 
 
129
 
130
- #@ yarpp
131
- #: options-meta-boxes.php:98
132
- msgid "Disallow by tag:"
133
- msgstr "Wyklucz tagi:"
134
 
135
- #@ yarpp
136
- #: options-meta-boxes.php:101
137
- msgid "Show password protected posts?"
138
- msgstr "Pokazywać wpisy chronione hasłem?"
139
 
140
- #@ yarpp
141
- #: options-meta-boxes.php:140
142
- msgid "Show only previous posts?"
143
- msgstr "Pokazywać tylko wcześniejsze wpisy?"
144
 
145
- #@ yarpp
146
- #: options-meta-boxes.php:148
147
- msgid "\"Relatedness\" options"
148
- msgstr "Opcje \"powiązań\""
 
 
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 "więcej&gt;"
162
-
163
- #@ yarpp
164
- #: options-meta-boxes.php:130
165
- msgid "Match threshold:"
166
- msgstr "Wymagane podobieństwo:"
167
 
168
- #@ yarpp
169
- #: options-meta-boxes.php:131
170
- msgid "Titles: "
171
- msgstr "Tytuły:"
 
 
 
 
 
 
172
 
173
- #@ yarpp
174
- #: options-meta-boxes.php:133
175
- msgid "Bodies: "
176
- msgstr "Treść główna:"
177
 
178
- #@ yarpp
179
- #: options-meta-boxes.php:135
180
- msgid "Tags: "
181
- msgstr "Tagi:"
182
 
183
- #@ yarpp
184
- #: options-meta-boxes.php:137
185
- msgid "Categories: "
186
- msgstr "Kategorie:"
187
 
188
- #@ yarpp
189
- #: options-meta-boxes.php:139
190
- msgid "Cross-relate posts and pages?"
191
- msgstr "Powiązać zarówno wpisy jak i strony statyczne?"
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 "Jeśli włączona jest ta opcja, kody <code>related_posts()</code>, <code>related_pages()</code> i <code>related_entries()</code> wyświetlą dokładnie to samo, czyli powiązane wpisy oraz strony statyczne."
197
 
198
- #@ yarpp
199
- #: options-meta-boxes.php:212
200
- msgid "Display options <small>for your website</small>"
201
- msgstr "Opcje wyświetlania <small>dla Twojej strony</small>"
 
202
 
203
- #@ yarpp
204
- #: options-meta-boxes.php:157
205
- msgid "Automatically display related posts?"
206
- msgstr "Automatycznie wyświetlać powiązane wpisy?"
 
 
 
 
 
 
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 "Po włączeniu tej opcji, powiązane wpisy pokażą się automatycznie na stronie pojedyńczego wpisu zaraz za jego treścią. Jeśli ta opcja jest wyłączona, musisz samodzielnie dodać kod: <code>related_posts()</code> lub jego warianty (<code>related_pages()</code> i <code>related_entries()</code>) do plików szablonu graficznego."
 
212
 
213
- #@ yarpp
214
- #: options-meta-boxes.php:158
215
- msgid "Website display code example"
216
- msgstr "Przykładowy kod wyświetlany na stronie"
 
 
217
 
218
- #@ yarpp
219
- #: options-meta-boxes.php:158
220
- #: options-meta-boxes.php:221
221
- msgid "(Update options to reload.)"
222
- msgstr "Zmień opcje a zobaczysz wynik."
 
 
223
 
224
- #@ yarpp
225
- #: options-meta-boxes.php:160
226
- #: options-meta-boxes.php:226
227
- msgid "Maximum number of related posts:"
228
- msgstr "Maksymalna liczba powiązanych wpisów:"
229
 
230
- #@ yarpp
231
- #: options-meta-boxes.php:175
232
- #: options-meta-boxes.php:244
233
- msgid "Before / after related entries:"
234
- msgstr "Kod przed / po powiązanych wpisach:"
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 "Na przykład:"
245
 
246
- #@ yarpp
247
- #: options-meta-boxes.php:176
248
- #: options-meta-boxes.php:245
249
- msgid "Before / after each related entry:"
250
- msgstr "Kod przed / po poszczególnych linkach:"
251
 
252
- #@ yarpp
253
- #: options-meta-boxes.php:178
254
- #: options-meta-boxes.php:247
255
- msgid "Show excerpt?"
256
- msgstr "Pokazywać fragment wpisu?"
257
 
258
- #@ yarpp
259
- #: options-meta-boxes.php:179
260
- #: options-meta-boxes.php:248
261
- msgid "Excerpt length (No. of words):"
262
- msgstr "Długość fragmentu (liczba słów):"
263
 
264
- #@ yarpp
265
- #: options-meta-boxes.php:183
266
- msgid "Before / after (Excerpt):"
267
- msgstr "Kod przed / po fragmencie wpisu:"
 
268
 
269
- #@ yarpp
270
- #: options-meta-boxes.php:189
271
- #: options-meta-boxes.php:254
272
  msgid "Order results:"
273
  msgstr "Kolejność wyświetlania:"
274
 
275
- #@ yarpp
276
- #: options-meta-boxes.php:191
277
- #: options-meta-boxes.php:256
278
  msgid "score (high relevance to low)"
279
  msgstr "podobieństwo (najwyższe najpierw)"
280
 
281
- #@ yarpp
282
- #: options-meta-boxes.php:192
283
- #: options-meta-boxes.php:257
284
  msgid "score (low relevance to high)"
285
  msgstr "podobnieństwo (najniższe najpierw)"
286
 
287
- #@ yarpp
288
- #: options-meta-boxes.php:193
289
- #: options-meta-boxes.php:258
290
  msgid "date (new to old)"
291
  msgstr "data (najnowsze najpierw)"
292
 
293
- #@ yarpp
294
- #: options-meta-boxes.php:194
295
- #: options-meta-boxes.php:259
296
  msgid "date (old to new)"
297
  msgstr "data (najstarsze najpierw)"
298
 
299
- #@ yarpp
300
- #: options-meta-boxes.php:195
301
- #: options-meta-boxes.php:260
302
  msgid "title (alphabetical)"
303
  msgstr "tytuł (A-Z)"
304
 
305
- #@ yarpp
306
- #: options-meta-boxes.php:196
307
- #: options-meta-boxes.php:261
308
  msgid "title (reverse alphabetical)"
309
  msgstr "tytuł (Z-A)"
310
 
311
- #@ yarpp
312
- #: options-meta-boxes.php:201
313
- #: options-meta-boxes.php:266
314
- msgid "Default display if no results:"
315
- msgstr "Wyświetlany kod przy braku wyników:"
 
 
 
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 "Pomóc promować YARPP?"
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 "Ta opcja doda kod: %s. Po włączeniu i zapisaniu opcji zobaczysz w okienku po prawej, jak wygląda przykładowy wygenerowany kod. Bardzo serdecznie dziękuję za te linki oraz dotacje."
330
 
331
- #@ yarpp
332
- #: options-meta-boxes.php:276
333
- msgid "Display options <small>for RSS</small>"
334
- msgstr "Włącz opcje dla <small>kanału RSS</small>"
335
 
336
- #@ yarpp
337
- #: options-meta-boxes.php:221
338
- msgid "Display related posts in feeds?"
339
- msgstr "Wyświetlać powiązane wpisy w kanałach RSS?"
340
 
341
- #@ yarpp
342
- #: options-meta-boxes.php:223
343
- msgid "Display related posts in the descriptions?"
344
- msgstr "Wyświetlać powiązane wpisy w opisach?"
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 "Po włączeniu tej opcji, powiązane wpisy pojawią się w opisie kanału RSS, nie tylko w treści. Jeśli w RSS wyświetlasz wyłącznie fragmenty wpisów, używane jest tylko pole opisu, a zatem ta opcja musi być włączona, aby powiązane wpisy byłby w ogóle pokazywane."
350
 
351
- #@ yarpp
352
- #: options-meta-boxes.php:221
353
- msgid "RSS display code example"
354
- msgstr "Przykładowy kod wyświetlania w RSS"
355
 
356
- #@ yarpp
357
- #: options-meta-boxes.php:250
358
- msgid "Before / after (excerpt):"
359
- msgstr "Kod przed / po fragmencie wpisu:"
360
 
361
- #@ yarpp
362
- #: options-meta-boxes.php:38
363
- msgid "word"
364
- msgstr "słowo"
 
 
 
 
365
 
366
- #@ yarpp
367
- #: options-meta-boxes.php:39
368
- msgid "tag"
369
- msgstr "tag"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370
 
371
- #@ yarpp
372
- #: options-meta-boxes.php:40
373
- msgid "category"
374
- msgstr "kategoria"
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 "wymagaj przynajmniej jeden %s wspólną"
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 "wymagaj więcej niż jeden %s wspólne"
389
 
390
- #@ yarpp
391
- #: options.php:114
392
- msgid "Options saved!"
393
- msgstr "Opcje zapisane!"
 
 
 
 
 
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 "Im wyższy minimalny próg powiązania, tym większe ograniczenia i tym samym mniej podobnych wpisów. Domyślnym progiem jest 5. Jeśli chcesz dostosować swoje minimum, zobacz kilka swoich artykułów i wyniki powiązanych do nich wpisów. Możesz zobaczyć, które wpisy są wybierane jako powiązane i z jakim wynikiem. Jeśli nie podobają Ci się rezultaty - poeksperymentuj z ustawieniami i minimalnym progiem."
399
-
400
- #@ yarpp
401
- #: options.php:279
402
- msgid "Update options"
403
- msgstr "Aktualizuj opcje"
404
-
405
- #@ yarpp
406
- #: options.php:280
407
- msgid "Do you really want to reset your configuration?"
408
- msgstr "Czy na pewno chcesz zresetować ustawienia"
409
-
410
- #@ yarpp
411
- #: options.php:280
412
- msgid "Reset options"
413
- msgstr "Resetuj ustawienia"
414
-
415
- #@ yarpp
416
- #: cache-postmeta.php:105
417
- #: cache-tables.php:131
418
- msgid "Example post "
419
- msgstr "Przykładowy wpis"
420
 
421
- #@ yarpp
422
- #: template-metabox.php:12
423
- msgid "These are the related entries for this entry. Updating this post may change these related posts."
424
- msgstr "Oto powiązane wpisy. Zmień treść tego wpisu aby zmienić listę powiązanych wpisów."
425
-
426
- #@ yarpp
427
- #: template-metabox.php:25
428
- msgid "Whether all of these related entries are actually displayed and how they are displayed depends on your YARPP display options."
429
- msgstr "To, czy lista powiązanych wpisów jest wyświetlana i jakie są to wpisy, jest zależne od konfiguracji wtyczki YARPP."
430
-
431
- #@ yarpp
432
- #: includes.php:28
433
- #: includes.php:39
434
- #: template-metabox.php:27
435
- #: template-widget.php:13
436
- msgid "No related posts."
437
- msgstr "Brak powiązanych wpisów."
438
 
439
- #@ yarpp
440
- #: options-meta-boxes.php:105
441
- msgid "day(s)"
442
- msgstr "dni"
443
 
444
- #@ yarpp
445
- #: options-meta-boxes.php:106
446
- msgid "week(s)"
447
- msgstr "tygodni"
448
 
449
- #@ yarpp
450
- #: options-meta-boxes.php:107
451
- msgid "month(s)"
452
- msgstr "miesięcy"
453
 
454
- #@ yarpp
455
- #: options-meta-boxes.php:109
456
- msgid "Show only posts from the past NUMBER UNITS"
457
- msgstr "Tylko wpisy z ostatnich NUMBER UNITS"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
 
459
- #@ yarpp
460
- #: options.php:46
461
- #, php-format
462
- 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."
463
- msgstr "Istnieje nowa wersja beta (%s) wtyczki Yet Another Related Posts. Możesz <a href=\"%s\">ściągnąć ją tutaj</a> i używać na własne ryzyko."
464
-
465
- #@ yarpp
466
- #: includes.php:248
467
- #: options-meta-boxes.php:161
468
- #: options-meta-boxes.php:228
469
- msgid "Display using a custom template file"
470
- msgstr "Wyświetlaj używając szablonu"
471
-
472
- #@ yarpp
473
- #: includes.php:249
474
- #: options-meta-boxes.php:165
475
- #: options-meta-boxes.php:233
476
- msgid "Template file:"
477
- msgstr "Plik szablonu:"
478
 
479
- #@ yarpp
480
- #: options-meta-boxes.php:221
481
- msgid "This option displays related posts at the end of each item in your RSS and Atom feeds. No template changes are needed."
482
- msgstr "Te opcje zmieniają sposób wyświetlania powiązanych wpisów a kanałach RSS i Atom. Żadne zmiany szablonu nie są wymagane."
483
-
484
- #@ yarpp
485
- #: options-meta-boxes.php:228
486
- msgid "NEW!"
487
- msgstr "NOWOŚĆ!"
488
-
489
- #@ yarpp
490
- #: options-meta-boxes.php:161
491
- #: options-meta-boxes.php:228
492
- 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."
493
- msgstr "Te zaawansowane opcje dają Ci możliwość całkowitego dostosowania wyświetlania powiązanych wpisów. Szablony (znajdujące sie w katalogu motywu graficznego) są napisane w PHP."
494
-
495
- #@ yarpp
496
- #: includes.php:26
497
- #: includes.php:37
498
- msgid "Related posts:"
499
- msgstr "Powiązane wpisy:"
500
 
501
- #@ yarpp
502
- #: includes.php:169
503
- msgid "Settings"
504
- msgstr "Ustawienia"
 
505
 
506
- #@ default
507
- #: includes.php:243
508
- msgid "Title:"
509
- msgstr "Tytuł:"
510
 
511
- #@ yarpp
512
- #: includes.php:385
513
- msgid "Related entries may be displayed once you save your entry"
514
- msgstr "Powiązane wpisy pojawią się, kiedy zapiszesz swój wpis"
 
 
515
 
516
- #@ yarpp
517
- #: options-meta-boxes.php:124
518
- msgid "YARPP limits the related posts list by (1) a maximum number and (2) a <em>match threshold</em>."
519
- msgstr "YARRP limituje ilość wyświetlanych wpisów do (1) maksymalnej zdefiniowanej liczby, (2) limitu podobieństwa."
520
-
521
- #@ yarpp
522
- #: options-meta-boxes.php:175
523
- #: options-meta-boxes.php:176
524
- #: options-meta-boxes.php:184
525
- #: options-meta-boxes.php:244
526
- #: options-meta-boxes.php:245
527
- #: options-meta-boxes.php:250
528
  msgid " or "
529
  msgstr " lub "
530
 
531
- #@ yarpp
532
- #: options-meta-boxes.php:283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
533
  msgid "YARPP Forum"
534
  msgstr "Forum YARPP"
535
 
536
- #@ yarpp
537
- #: options-meta-boxes.php:284
538
  msgid "YARPP on Twitter"
539
  msgstr "YARRP na Twitterze"
540
 
541
- #@ yarpp
542
- #: options-meta-boxes.php:285
543
  msgid "YARPP on the Web"
544
  msgstr "YARPP w Sieci"
545
 
546
- #@ yarpp
547
- #: options-meta-boxes.php:292
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
  msgid "Contact YARPP"
549
  msgstr "Kontakt z YARRP"
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 "Jest dostępna nowa wersja %1$s. <a href=\"%2$s\" class=\"thickbox\" title=\"%3$s\">Pokaż szczegóły wersji %4$s</a> lub <a href=\"%5$s\">automatycznie uaktualnij</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 "Proszę spróbować <a href=\"%s\" target=\"_blank\">ręczną konfigurację SQL</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 "autor: <a href=\"%s\" target=\"_blank\">mitcho (Michael ?? Erlewine)</a>"
 
568
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: YARPP_PL\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-03 10:07+0100\n"
6
+ "PO-Revision-Date: 2012-12-03 10:29+0100\n"
7
+ "Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
8
+ "Language-Team: Digital Factory <info@digitalfactory.pl>\n"
9
+ "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_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-Generator: Poedit 1.5.4\n"
20
+ "X-Poedit-SearchPath-0: ..\n"
21
 
22
+ # @ yarpp
23
+ #: ../class-admin.php:92 ../class-widget.php:7 ../class-widget.php:72
 
 
24
  msgid "Related Posts (YARPP)"
25
+ msgstr "Powiązane wpisy"
26
 
27
+ # @ yarpp
28
+ #: ../class-admin.php:98
29
  msgid "Related Posts"
30
  msgstr "Powiązane wpisy"
31
 
32
+ #: ../class-admin.php:98
33
+ msgid "Configure"
34
+ msgstr "Konfiguruj"
 
 
35
 
36
+ #: ../class-admin.php:116
37
+ msgid "Frequently Asked Questions"
38
+ msgstr "Często zadawane pytania"
 
 
 
 
39
 
40
+ #: ../class-admin.php:121 ../class-admin.php:157
41
+ msgid "Developing with YARPP"
42
+ msgstr "Programowanie z YARPP"
 
43
 
44
+ #: ../class-admin.php:126
45
+ msgid "Optional Data Collection"
46
+ msgstr "Szybkie zbieranie danych"
 
 
47
 
48
+ #: ../class-admin.php:145
49
+ msgid "FAQ"
50
+ msgstr "FAQ"
 
 
51
 
52
+ #: ../class-admin.php:162 ../class-admin.php:216
 
53
  #, php-format
54
+ msgid ""
55
+ "With your permission, YARPP will send information about YARPP's settings, "
56
+ "usage, and environment back to a central server at %s."
57
+ msgstr ""
58
+ "Za Twoją zgodą, wtyczka YARPP będzię wysyłać informacje o swoich "
59
+ "ustawieniach, sposobie użycia i środowisku w którym pracuje do centralnego "
60
+ "serwera zlokalizowanego w %s."
61
 
62
+ #: ../class-admin.php:163 ../class-admin.php:217
63
+ msgid ""
64
+ "This information will be used to improve YARPP in the future and help decide "
65
+ "future development decisions for YARPP."
66
+ msgstr ""
67
+ "Informacje te będą wykorzystywane do usprawniania YARPP w przyszłości i "
68
+ "pomoże w podejmowaniu decyzji o kierunkach jej rozwoju."
69
 
70
+ #: ../class-admin.php:164 ../class-admin.php:218
71
+ msgid ""
72
+ "Contributing this data will help make YARPP better for you and for other "
73
+ "YARPP users."
74
+ msgstr ""
75
+ "Przesyłanie tych danych pomoże zarówno Tobie, jak i innym osobom, które z "
76
+ "YARPP korzystają."
77
 
78
+ #: ../class-admin.php:172
79
+ msgid "If you opt-in, the following information is sent back to YARPP:"
80
+ msgstr "Jeśli potwierdzisz, następujące dane będą przesyłane do YARPP:"
 
 
 
81
 
82
+ #: ../class-admin.php:174
83
+ msgid ""
84
+ "In addition, YARPP also loads an invisible pixel image with your YARPP "
85
+ "results to know how often YARPP is being used."
86
+ msgstr ""
87
+ "Dodatkowo, wtyczka YARPP wczytuje także niewidoczy obrazek z wynikami "
88
+ "powiązanych wpisów, aby zorientować się jak często jest wykorzystywana."
89
 
90
+ #: ../class-admin.php:178 ../options-meta-boxes.php:427
91
+ msgid "Send settings and usage data back to YARPP"
92
+ msgstr "Wyślij ustawienia i dane o wykorzystaniu z powrotem do YARPP"
 
93
 
94
+ #: ../class-admin.php:178
95
+ msgid "Thank you!"
96
+ msgstr "Dziękujemy!"
 
 
97
 
98
+ #: ../class-admin.php:238 ../options-meta-boxes.php:431
99
+ msgid "Learn More"
100
+ msgstr "Dowiedz się więcej"
 
101
 
102
+ #: ../class-admin.php:281
103
+ msgid "Show example code output"
104
+ msgstr "Pokaż przykładowy kod"
 
105
 
106
+ # @ yarpp
107
+ #: ../class-admin.php:308
108
+ msgid "Thank you for installing <span>Yet Another Related Posts Plugin</span>!"
109
+ msgstr "Dziękujemy za zainstalowanie wtyczki<span>Powiązane wpisy</span>!"
110
 
111
+ #: ../class-admin.php:309
112
+ msgid ""
113
+ "Make sure to visit the <a>Related Posts settings page</a> to customize YARPP."
114
+ msgstr ""
115
+ "Nie zapomnij odwiedzić <a>strony ustawień Powiązanych wpisów</a> aby je "
116
+ "skonfigurować."
117
 
118
+ # @ yarpp
119
+ #: ../class-admin.php:355
120
+ msgid "Settings"
121
+ msgstr "Ustawienia"
122
 
123
+ # @ yarpp
124
+ #: ../class-admin.php:381
125
+ msgid "Related entries may be displayed once you save your entry"
126
+ msgstr "Powiązane wpisy pojawią się, kiedy zapiszesz swój wpis"
127
 
128
+ # @ yarpp
129
+ #: ../class-cache.php:530
130
+ msgid "Example post "
131
+ msgstr "Przykładowy wpis"
132
 
133
+ # @ yarpp
134
+ #: ../class-core.php:71 ../class-core.php:81 ../class-core.php:108
135
+ #: ../class-core.php:110 ../class-core.php:337 ../class-core.php:348
136
+ #: ../class-core.php:640
137
+ msgid "Related posts:"
138
+ msgstr "Powiązane wpisy:"
139
 
140
+ # @ yarpp
141
+ #: ../class-core.php:73 ../class-core.php:83 ../class-core.php:339
142
+ #: ../class-core.php:350 ../template-metabox.php:30 ../template-widget.php:13
143
+ msgid "No related posts."
144
+ msgstr "Brak powiązanych wpisów."
 
 
 
 
 
 
 
 
 
 
 
 
145
 
146
+ # @ yarpp
147
+ #: ../class-core.php:793 ../class-core.php:936 ../options-meta-boxes.php:295
148
+ #: ../options-meta-boxes.php:356
149
+ #, php-format
150
+ msgid ""
151
+ "Related posts brought to you by <a href='%s'>Yet Another Related Posts "
152
+ "Plugin</a>."
153
+ msgstr ""
154
+ "Powiązane wpisy wygenerowane przez <a href='%s'>wtyczkę Yet Another Related "
155
+ "Posts</a>."
156
 
157
+ #: ../class-widget.php:89 ../options-meta-boxes.php:35
158
+ msgid "List"
159
+ msgstr "Lista"
 
160
 
161
+ #: ../class-widget.php:91 ../options-meta-boxes.php:45
162
+ msgid "Thumbnails"
163
+ msgstr "Miniatury"
 
164
 
165
+ #: ../class-widget.php:93 ../options-meta-boxes.php:59
166
+ msgid "Custom"
167
+ msgstr "Własny"
 
168
 
169
+ # @ default
170
+ #: ../class-widget.php:96
171
+ msgid "Title:"
172
+ msgstr "Tytuł:"
173
 
174
+ # @ yarpp
175
+ #: ../class-widget.php:98 ../options-meta-boxes.php:70
176
+ msgid "Template file:"
177
+ msgstr "Plik szablonu:"
178
 
179
+ # @ yarpp
180
+ #: ../class-widget.php:117 ../options-meta-boxes.php:294
181
+ #: ../options-meta-boxes.php:356
182
+ msgid "Help promote Yet Another Related Posts Plugin?"
183
+ msgstr "Chcesz pomóc promować YARPP?"
184
 
185
+ # @ yarpp
186
+ #: ../options-meta-boxes.php:7
187
+ msgid ""
188
+ "This advanced option gives you full power to customize how your related "
189
+ "posts are displayed. Templates (stored in your theme folder) are written in "
190
+ "PHP."
191
+ msgstr ""
192
+ "Te zaawansowane opcje dają Ci możliwość całkowitego dostosowania "
193
+ "wyświetlania powiązanych wpisów. Szablony (znajdujące sie w katalogu motywu "
194
+ "graficznego) są napisane w PHP."
195
 
196
+ #: ../options-meta-boxes.php:44
197
+ msgid ""
198
+ "This option is disabled because your theme does not support post thumbnails."
199
+ msgstr ""
200
+ "Ta opcja jest wyłączona ponieważ Twój motyw nie wspiera miniatur wpisów."
201
 
202
+ #: ../options-meta-boxes.php:54
203
+ msgid ""
204
+ "This option is disabled because no YARPP templates were found in your theme."
205
+ msgstr ""
206
+ "Ta opcja jest wyłączona ponieważ w Twoim motywie nie znaleziono szablonów "
207
+ "YARPP."
208
 
209
+ #: ../options-meta-boxes.php:56
210
+ msgid ""
211
+ "Would you like to copy some sample templates bundled with YARPP into your "
212
+ "theme?"
213
+ msgstr ""
214
+ "Chciałbyś skopiować do swojego motywu niektóre przykładowe szablony "
215
+ "dostarczone wraz z YARPP?"
216
 
217
+ #: ../options-meta-boxes.php:56
218
+ msgid "Copy Templates"
219
+ msgstr "Kopiuj szablony"
 
 
220
 
221
+ #: ../options-meta-boxes.php:79
222
+ msgid "Author:"
223
+ msgstr "Autor:"
 
 
224
 
225
+ # @ yarpp
226
+ #: ../options-meta-boxes.php:105 ../options-meta-boxes.php:123
227
+ msgid "do not consider"
228
+ msgstr "nie uwzględniaj"
 
 
 
 
 
229
 
230
+ # @ yarpp
231
+ #: ../options-meta-boxes.php:106 ../options-meta-boxes.php:124
232
+ msgid "consider"
233
+ msgstr "uwzględniaj"
 
234
 
235
+ # @ yarpp
236
+ #: ../options-meta-boxes.php:107 ../options-meta-boxes.php:125
237
+ msgid "consider with extra weight"
238
+ msgstr "uwzględniaj z większa wagą"
 
239
 
240
+ # @ yarpp
241
+ #: ../options-meta-boxes.php:108
242
+ #, php-format
243
+ msgid "require at least one %s in common"
244
+ msgstr "wymagaj przynajmniej jeden %s wspólną"
245
 
246
+ # @ yarpp
247
+ #: ../options-meta-boxes.php:109
248
+ #, php-format
249
+ msgid "require more than one %s in common"
250
+ msgstr "wymagaj więcej niż jeden %s wspólne"
251
 
252
+ # @ yarpp
253
+ #: ../options-meta-boxes.php:131
 
254
  msgid "Order results:"
255
  msgstr "Kolejność wyświetlania:"
256
 
257
+ # @ yarpp
258
+ #: ../options-meta-boxes.php:135
 
259
  msgid "score (high relevance to low)"
260
  msgstr "podobieństwo (najwyższe najpierw)"
261
 
262
+ # @ yarpp
263
+ #: ../options-meta-boxes.php:136
 
264
  msgid "score (low relevance to high)"
265
  msgstr "podobnieństwo (najniższe najpierw)"
266
 
267
+ # @ yarpp
268
+ #: ../options-meta-boxes.php:137
 
269
  msgid "date (new to old)"
270
  msgstr "data (najnowsze najpierw)"
271
 
272
+ # @ yarpp
273
+ #: ../options-meta-boxes.php:138
 
274
  msgid "date (old to new)"
275
  msgstr "data (najstarsze najpierw)"
276
 
277
+ # @ yarpp
278
+ #: ../options-meta-boxes.php:139
 
279
  msgid "title (alphabetical)"
280
  msgstr "tytuł (A-Z)"
281
 
282
+ # @ yarpp
283
+ #: ../options-meta-boxes.php:140
 
284
  msgid "title (reverse alphabetical)"
285
  msgstr "tytuł (Z-A)"
286
 
287
+ # @ yarpp
288
+ #: ../options-meta-boxes.php:170
289
+ msgid ""
290
+ "\"The Pool\" refers to the pool of posts and pages that are candidates for "
291
+ "display as related to the current entry."
292
+ msgstr ""
293
+ "\"Pula\" to zbiór tych wpisów i stron, które mają być uwzględniane przy "
294
+ "wyświetlaniu powiązanych linków."
295
 
296
+ # @ yarpp
297
+ #: ../options-meta-boxes.php:173
298
+ msgid "Post types considered:"
299
+ msgstr "Uwzględniane typy wpisów:"
 
 
300
 
301
+ # @ yarpp
302
+ #: ../options-meta-boxes.php:177
 
303
  #, php-format
304
+ msgid "Disallow by %s:"
305
+ msgstr "Wyklucz wg %s:"
306
 
307
+ # @ yarpp
308
+ #: ../options-meta-boxes.php:179
309
+ msgid "Show password protected posts?"
310
+ msgstr "Pokazywać wpisy chronione hasłem?"
311
 
312
+ # @ yarpp
313
+ #: ../options-meta-boxes.php:190
314
+ msgid "day(s)"
315
+ msgstr "dni"
316
 
317
+ # @ yarpp
318
+ #: ../options-meta-boxes.php:191
319
+ msgid "week(s)"
320
+ msgstr "tygodni"
321
 
322
+ # @ yarpp
323
+ #: ../options-meta-boxes.php:192
324
+ msgid "month(s)"
325
+ msgstr "miesięcy"
326
 
327
+ # @ yarpp
328
+ #: ../options-meta-boxes.php:198
329
+ msgid "Show only posts from the past NUMBER UNITS"
330
+ msgstr "Tylko wpisy z ostatnich NUMBER UNITS"
331
 
332
+ # @ yarpp
333
+ #: ../options-meta-boxes.php:204
334
+ msgid "\"The Pool\""
335
+ msgstr "\"Pula\""
336
 
337
+ # @ yarpp
338
+ #: ../options-meta-boxes.php:210
339
+ msgid ""
340
+ "YARPP limits the related posts list by (1) a maximum number and (2) a "
341
+ "<em>match threshold</em>."
342
+ msgstr ""
343
+ "YARRP limituje ilość wyświetlanych wpisów do (1) maksymalnej zdefiniowanej "
344
+ "liczby, (2) limitu podobieństwa."
345
 
346
+ # @ yarpp
347
+ #: ../options-meta-boxes.php:210
348
+ msgid ""
349
+ "The higher the match threshold, the more restrictive, and you get less "
350
+ "related posts overall. The default match threshold is 5. If you want to find "
351
+ "an appropriate match threshhold, take a look at some post's related posts "
352
+ "display and their scores. You can see what kinds of related posts are being "
353
+ "picked up and with what kind of match scores, and determine an appropriate "
354
+ "threshold for your site."
355
+ msgstr ""
356
+ "Im wyższy minimalny próg powiązania, tym większe ograniczenia i tym samym "
357
+ "mniej podobnych wpisów. Domyślnym progiem jest 5. Jeśli chcesz dostosować "
358
+ "swoje minimum, zobacz kilka swoich artykułów i wyniki powiązanych do nich "
359
+ "wpisów. Możesz zobaczyć, które wpisy są wybierane jako powiązane i z jakim "
360
+ "wynikiem. Jeśli nie podobają Ci się rezultaty - poeksperymentuj z "
361
+ "ustawieniami i minimalnym progiem."
362
+
363
+ # @ yarpp
364
+ #: ../options-meta-boxes.php:213
365
+ msgid "Match threshold:"
366
+ msgstr "Wymagane podobieństwo:"
367
 
368
+ # @ yarpp
369
+ #: ../options-meta-boxes.php:214
370
+ msgid "Titles: "
371
+ msgstr "Tytuły:"
372
 
373
+ # @ yarpp
374
+ #: ../options-meta-boxes.php:215
375
+ msgid "Bodies: "
376
+ msgstr "Treść główna:"
 
 
377
 
378
+ # @ yarpp
379
+ #: ../options-meta-boxes.php:221
380
+ msgid "Display results from all post types"
381
+ msgstr "Wyświetlaj wyniki z wszystkich typów wpisów"
 
 
382
 
383
+ #: ../options-meta-boxes.php:221
384
+ msgid ""
385
+ "When \"display results from all post types\" is off, only posts will be "
386
+ "displayed as related to a post, only pages will be displayed as related to a "
387
+ "page, etc."
388
+ msgstr ""
389
+ " Jeśli opcja \"Wyświetlaj wyniki z wszystkich typów wpisów\" jest "
390
+ "wyłączona, wpisy będą powiązane tylko z wpisami, strony tylko ze stronami, "
391
+ "itd."
392
 
393
+ # @ yarpp
394
+ #: ../options-meta-boxes.php:222
395
+ msgid "Show only previous posts?"
396
+ msgstr "Pokazywać tylko wcześniejsze wpisy?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
397
 
398
+ # @ yarpp
399
+ #: ../options-meta-boxes.php:226
400
+ msgid "\"Relatedness\" options"
401
+ msgstr "Opcje \"powiązań\""
 
 
 
 
 
 
 
 
 
 
 
 
 
402
 
403
+ # @ yarpp
404
+ #: ../options-meta-boxes.php:236
405
+ msgid "Website display code example"
406
+ msgstr "Przykładowy kod wyświetlany na stronie"
407
 
408
+ # @ yarpp
409
+ #: ../options-meta-boxes.php:236 ../options-meta-boxes.php:309
410
+ msgid "(Update options to reload.)"
411
+ msgstr "Zmień opcje a zobaczysz wynik."
412
 
413
+ # @ yarpp
414
+ #: ../options-meta-boxes.php:239
415
+ msgid "Automatically display:"
416
+ msgstr "Automatycznie wyświetlaj:"
417
 
418
+ # @ yarpp
419
+ #: ../options-meta-boxes.php:240
420
+ msgid ""
421
+ "This option automatically displays related posts right after the content on "
422
+ "single entry pages. If this option is off, you will need to manually insert "
423
+ "<code>related_posts()</code> or variants (<code>related_pages()</code> and "
424
+ "<code>related_entries()</code>) into your theme files."
425
+ msgstr ""
426
+ "Po włączeniu tej opcji, powiązane wpisy pokażą się automatycznie na stronie "
427
+ "pojedyńczego wpisu zaraz za jego treścią. Jeśli ta opcja jest wyłączona, "
428
+ "musisz samodzielnie dodać kod: <code>related_posts()</code> lub jego "
429
+ "warianty (<code>related_pages()</code> i <code>related_entries()</code>) do "
430
+ "plików szablonu graficznego."
431
+
432
+ #: ../options-meta-boxes.php:250
433
+ msgid "Also display in archives"
434
+ msgstr "Wyświetl także w archiwach"
435
+
436
+ # @ yarpp
437
+ #: ../options-meta-boxes.php:252 ../options-meta-boxes.php:314
438
+ msgid "Maximum number of related posts:"
439
+ msgstr "Maksymalna liczba powiązanych wpisów:"
440
 
441
+ #: ../options-meta-boxes.php:272 ../options-meta-boxes.php:334
442
+ msgid "Heading:"
443
+ msgstr "Nagłówek:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
444
 
445
+ #: ../options-meta-boxes.php:273 ../options-meta-boxes.php:335
446
+ msgid "Default image (URL):"
447
+ msgstr "Domyślny obrazek (URL):"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
448
 
449
+ # @ yarpp
450
+ #: ../options-meta-boxes.php:274 ../options-meta-boxes.php:289
451
+ #: ../options-meta-boxes.php:336 ../options-meta-boxes.php:351
452
+ msgid "Default display if no results:"
453
+ msgstr "Wyświetlany kod przy braku wyników:"
454
 
455
+ # @ yarpp
456
+ #: ../options-meta-boxes.php:281 ../options-meta-boxes.php:343
457
+ msgid "Before / after related entries:"
458
+ msgstr "Kod przed / po powiązanych wpisach:"
459
 
460
+ # @ yarpp
461
+ #: ../options-meta-boxes.php:281 ../options-meta-boxes.php:282
462
+ #: ../options-meta-boxes.php:287 ../options-meta-boxes.php:343
463
+ #: ../options-meta-boxes.php:344 ../options-meta-boxes.php:349
464
+ msgid "For example:"
465
+ msgstr "Na przykład:"
466
 
467
+ # @ yarpp
468
+ #: ../options-meta-boxes.php:281 ../options-meta-boxes.php:282
469
+ #: ../options-meta-boxes.php:287 ../options-meta-boxes.php:343
470
+ #: ../options-meta-boxes.php:344 ../options-meta-boxes.php:349
 
 
 
 
 
 
 
 
471
  msgid " or "
472
  msgstr " lub "
473
 
474
+ # @ yarpp
475
+ #: ../options-meta-boxes.php:282 ../options-meta-boxes.php:344
476
+ msgid "Before / after each related entry:"
477
+ msgstr "Kod przed / po poszczególnych linkach:"
478
+
479
+ # @ yarpp
480
+ #: ../options-meta-boxes.php:284 ../options-meta-boxes.php:346
481
+ msgid "Show excerpt?"
482
+ msgstr "Pokazywać fragment wpisu?"
483
+
484
+ # @ yarpp
485
+ #: ../options-meta-boxes.php:285 ../options-meta-boxes.php:347
486
+ msgid "Excerpt length (No. of words):"
487
+ msgstr "Długość fragmentu (liczba słów):"
488
+
489
+ # @ yarpp
490
+ #: ../options-meta-boxes.php:287 ../options-meta-boxes.php:349
491
+ msgid "Before / after (excerpt):"
492
+ msgstr "Kod przed / po fragmencie wpisu:"
493
+
494
+ # @ yarpp
495
+ #: ../options-meta-boxes.php:295 ../options-meta-boxes.php:356
496
+ #, php-format
497
+ msgid ""
498
+ "This option will add the code %s. Try turning it on, updating your options, "
499
+ "and see the code in the code example to the right. These links and donations "
500
+ "are greatly appreciated."
501
+ msgstr ""
502
+ "Ta opcja doda kod: %s. Po włączeniu i zapisaniu opcji zobaczysz w okienku po "
503
+ "prawej, jak wygląda przykładowy wygenerowany kod. Bardzo serdecznie dziękuję "
504
+ "za te linki oraz dotacje."
505
+
506
+ # @ yarpp
507
+ #: ../options-meta-boxes.php:299
508
+ msgid "Display options <small>for your website</small>"
509
+ msgstr "Opcje wyświetlania <small>dla Twojej strony</small>"
510
+
511
+ # @ yarpp
512
+ #: ../options-meta-boxes.php:309
513
+ msgid "RSS display code example"
514
+ msgstr "Przykładowy kod wyświetlania w RSS"
515
+
516
+ # @ yarpp
517
+ #: ../options-meta-boxes.php:311
518
+ msgid "Display related posts in feeds?"
519
+ msgstr "Wyświetlać powiązane wpisy w kanałach RSS?"
520
+
521
+ # @ yarpp
522
+ #: ../options-meta-boxes.php:311
523
+ msgid ""
524
+ "This option displays related posts at the end of each item in your RSS and "
525
+ "Atom feeds. No template changes are needed."
526
+ msgstr ""
527
+ "Te opcje zmieniają sposób wyświetlania powiązanych wpisów a kanałach RSS i "
528
+ "Atom. Żadne zmiany szablonu nie są wymagane."
529
+
530
+ # @ yarpp
531
+ #: ../options-meta-boxes.php:312
532
+ msgid "Display related posts in the descriptions?"
533
+ msgstr "Wyświetlać powiązane wpisy w opisach?"
534
+
535
+ # @ yarpp
536
+ #: ../options-meta-boxes.php:312
537
+ msgid ""
538
+ "This option displays the related posts in the RSS description fields, not "
539
+ "just the content. If your feeds are set up to only display excerpts, "
540
+ "however, only the description field is used, so this option is required for "
541
+ "any display at all."
542
+ msgstr ""
543
+ "Po włączeniu tej opcji, powiązane wpisy pojawią się w opisie kanału RSS, nie "
544
+ "tylko w treści. Jeśli w RSS wyświetlasz wyłącznie fragmenty wpisów, używane "
545
+ "jest tylko pole opisu, a zatem ta opcja musi być włączona, aby powiązane "
546
+ "wpisy byłby w ogóle pokazywane."
547
+
548
+ # @ yarpp
549
+ #: ../options-meta-boxes.php:360
550
+ msgid "Display options <small>for RSS</small>"
551
+ msgstr "Włącz opcje dla <small>kanału RSS</small>"
552
+
553
+ # @ yarpp
554
+ #: ../options-meta-boxes.php:368
555
  msgid "YARPP Forum"
556
  msgstr "Forum YARPP"
557
 
558
+ # @ yarpp
559
+ #: ../options-meta-boxes.php:369
560
  msgid "YARPP on Twitter"
561
  msgstr "YARRP na Twitterze"
562
 
563
+ # @ yarpp
564
+ #: ../options-meta-boxes.php:370
565
  msgid "YARPP on the Web"
566
  msgstr "YARPP w Sieci"
567
 
568
+ #: ../options-meta-boxes.php:371
569
+ msgid "Review YARPP on WordPress.org"
570
+ msgstr "Oceń YARPP na WordPress.org"
571
+
572
+ # @ default
573
+ # @ yarpp
574
+ #: ../options-meta-boxes.php:372
575
+ msgid ""
576
+ "Donate to mitcho (Michael Yoshitaka Erlewine) for this plugin via PayPal"
577
+ msgstr ""
578
+ "Przekaż darowiznę mitcho (Michael Yoshitaka Erlewine) - autorowi plugina - "
579
+ "za pomocą PayPal"
580
+
581
+ #: ../options-meta-boxes.php:405
582
+ msgid "Help Improve YARPP"
583
+ msgstr "Pomóż ulepszać YARPP"
584
+
585
+ #: ../options-meta-boxes.php:430
586
+ msgid ""
587
+ "This is entirely optional, but will help improve future versions of YARPP."
588
+ msgstr ""
589
+ "Jest to całkowicie dobrowolne, ale pomogłoby w usprawnieniu przyszłych "
590
+ "wersji YARPP."
591
+
592
+ # @ yarpp
593
+ #: ../options-meta-boxes.php:435
594
  msgid "Contact YARPP"
595
  msgstr "Kontakt z YARRP"
596
 
597
+ # @ default
598
+ #: ../options.php:31
599
+ #, php-format
600
+ msgid ""
601
+ "There is a new version of %1$s available. <a href=\"%2$s\" class=\"thickbox"
602
+ "\" title=\"%3$s\">View version %4$s details</a> or <a href=\"%5$s\">update "
603
+ "automatically</a>."
604
+ msgstr ""
605
+ "Jest dostępna nowa wersja %1$s. <a href=\"%2$s\" class=\"thickbox\" title="
606
+ "\"%3$s\">Pokaż szczegóły wersji %4$s</a> lub <a href=\"%5$s\">automatycznie "
607
+ "uaktualnij</a>."
608
+
609
+ # @ yarpp
610
+ #: ../options.php:35
611
+ #, php-format
612
+ msgid ""
613
+ "There is a new beta (%s) of Yet Another Related Posts Plugin. You can <a "
614
+ "href=\"%s\">download it here</a> at your own risk."
615
+ msgstr ""
616
+ "Istnieje nowa wersja beta (%s) wtyczki Yet Another Related Posts. Możesz <a "
617
+ "href=\"%s\">ściągnąć ją tutaj</a> i używać na własne ryzyko."
618
+
619
+ # @ yarpp
620
+ #: ../options.php:43
621
+ msgid ""
622
+ "The MyISAM check has been overridden. You may now use the \"consider titles"
623
+ "\" and \"consider bodies\" relatedness criteria."
624
+ msgstr ""
625
+ "Opcja sprawdzania MyISAM została unieważniona. Możesz teraz używać opcje "
626
+ "\"uwzględniaj tytuły\" i \"uwzględniaj treść główną\"."
627
+
628
+ # @ yarpp
629
+ #: ../options.php:51
630
+ #, php-format
631
+ msgid ""
632
+ "YARPP's \"consider titles\" and \"consider bodies\" relatedness criteria "
633
+ "require your <code>%s</code> table to use the <a href='http://dev.mysql.com/"
634
+ "doc/refman/5.0/en/storage-engines.html'>MyISAM storage engine</a>, but the "
635
+ "table seems to be using the <code>%s</code> engine. These two options have "
636
+ "been disabled."
637
+ msgstr ""
638
+ "Opcje YARPP \"uwzględniaj tytuły\" i \"uwzględniaj treść główną\" wymagają, "
639
+ "aby tabela <code>%s</code> używała <a href='http://dev.mysql.com/doc/"
640
+ "refman/5.0/en/storage-engines.html'>mechanizmu MyISAM</a>, ale powyższa "
641
+ "tabela używa mechanizmu <code>%s</code>. Te dwie opcje zostały wyłączone."
642
+
643
+ # @ yarpp
644
+ #: ../options.php:53
645
  #, php-format
646
+ msgid ""
647
+ "To restore these features, please update your <code>%s</code> table by "
648
+ "executing the following SQL directive: <code>ALTER TABLE `%s` ENGINE = "
649
+ "MyISAM;</code> . No data will be erased by altering the table's engine, "
650
+ "although there are performance implications."
651
+ msgstr ""
652
+ "Aby przywrócić te opcje, uaktualnij tabelę <code>%s</code> wykonując "
653
+ "następujące zapytanie SQL: <code>ALTER TABLE `%s` ENGINE = MyISAM;</code>. "
654
+ "Nie powinno to spowodować uszkodzenia danych, ale może wpłynąć na szybkość "
655
+ "działania."
656
+
657
+ # @ yarpp
658
+ #: ../options.php:55
659
+ #, php-format
660
+ msgid ""
661
+ "If, despite this check, you are sure that <code>%s</code> is using the "
662
+ "MyISAM engine, press this magic button:"
663
+ msgstr ""
664
+ "Jeśli pomimo sprawdzenia tego, jesteś pewien, że <code>%s</code> używa "
665
+ "mechanizmu MyISAM, naciśnij ten magiczny przycisk:"
666
+
667
+ # @ yarpp
668
+ #: ../options.php:58
669
+ msgid "Trust me. Let me use MyISAM features."
670
+ msgstr "Zaufaj mi. Pozwól uzywać właściwości MyISAM."
671
+
672
+ # @ yarpp
673
+ #: ../options.php:73
674
+ msgid "The YARPP database had an error but has been fixed."
675
+ msgstr "Baza danych YARPP zawierała błąd, ale został on naprawiony."
676
 
677
+ # @ yarpp
678
+ #: ../options.php:75
679
+ msgid "The YARPP database has an error which could not be fixed."
680
+ msgstr "Baza danych YARPP zawiera błąd, którego nie można naprawić."
681
+
682
+ # @ yarpp
683
+ #: ../options.php:76
684
  #, php-format
685
  msgid "Please try <a href=\"%s\" target=\"_blank\">manual SQL setup</a>."
686
+ msgstr ""
687
+ "Proszę spróbować <a href=\"%s\" target=\"_blank\">ręczną konfigurację SQL</"
688
+ "a>."
689
 
690
+ # @ yarpp
691
+ #: ../options.php:139
692
+ msgid "Options saved!"
693
+ msgstr "Opcje zapisane!"
694
+
695
+ # @ yarpp
696
+ #: ../options.php:145
697
+ msgid "Yet Another Related Posts Plugin Options"
698
+ msgstr "Opcje YARPP"
699
+
700
+ # @ yarpp
701
+ #: ../options.php:153
702
  #, php-format
703
  msgid "by <a href=\"%s\" target=\"_blank\">mitcho (Michael 芳貴 Erlewine)</a>"
704
+ msgstr ""
705
+ "autor: <a href=\"%s\" target=\"_blank\">mitcho (Michael ?? Erlewine)</a>"
706
 
707
+ #: ../options.php:194
708
+ msgid "Save Changes"
709
+ msgstr "Zapisz zmiany"
710
+
711
+ # @ yarpp
712
+ #: ../template-builtin.php:22
713
+ #, php-format
714
+ msgid ""
715
+ "%f is the YARPP match score between the current entry and this related "
716
+ "entry. You are seeing this value because you are logged in to WordPress as "
717
+ "an administrator. It is not shown to regular visitors."
718
+ msgstr ""
719
+ "%f to wartość podobieństwa między tym i linkowanym wpisem, wyliczona przez "
720
+ "algorytm YARPP. Widzisz tę liczbę, ponieważ jesteś zalogowany jako "
721
+ "administrator bloga. Nie jest ona pokazywana normalnym użytkownikom strony."
722
+
723
+ # @ yarpp
724
+ #: ../template-metabox.php:12
725
+ msgid ""
726
+ "These are the related entries for this entry. Updating this post may change "
727
+ "these related posts."
728
+ msgstr ""
729
+ "Oto powiązane wpisy. Zmień treść tego wpisu aby zmienić listę powiązanych "
730
+ "wpisów."
731
+
732
+ # @ yarpp
733
+ #: ../template-metabox.php:28
734
+ msgid ""
735
+ "Whether all of these related entries are actually displayed and how they are "
736
+ "displayed depends on your YARPP display options."
737
+ msgstr ""
738
+ "To, czy lista powiązanych wpisów jest wyświetlana i jakie są to wpisy, jest "
739
+ "zależne od konfiguracji wtyczki YARPP."
readme.txt CHANGED
@@ -257,6 +257,11 @@ If you are a bilingual speaker of English and another language and an avid user
257
 
258
  == Changelog ==
259
 
 
 
 
 
 
260
  = 4.0.1 =
261
  * Improvements to thumbnail handling
262
  * See new FAQ entry for practical details
257
 
258
  == Changelog ==
259
 
260
+ = 4.0.2 =
261
+ * Bugfix: cache should be cleared when the "show only previous posts?" option is changed
262
+ * Localization updates
263
+ * Updated Polish
264
+
265
  = 4.0.1 =
266
  * Improvements to thumbnail handling
267
  * See new FAQ entry for practical details
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.1
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.1');
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.2b1
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.2b1');
13
  define('YARPP_DIR', dirname(__FILE__));
14
  define('YARPP_NO_RELATED', ':(');
15
  define('YARPP_RELATED', ':)');