Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/SpecialArticleFeedback.php |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | 4 | * SpecialPage for ArticleFeedback extension |
5 | | - * |
| 5 | + * |
6 | 6 | * @file |
7 | 7 | * @ingroup Extensions |
8 | 8 | */ |
— | — | @@ -22,19 +22,19 @@ |
23 | 23 | if ( $wgArticleFeedbackDashboard ) { |
24 | 24 | // fetch the highest and lowest rated articles |
25 | 25 | $highs_lows = $this->getDailyHighsAndLows(); |
26 | | - |
| 26 | + |
27 | 27 | // determine the highest rated articles |
28 | 28 | $highs = $this->getDailyHighs( $highs_lows ); |
29 | | - |
| 29 | + |
30 | 30 | // .. and the lowest rated articles |
31 | 31 | $lows = $this->getDailyLows( $highs_lows ); |
32 | | - |
| 32 | + |
33 | 33 | // provide some messaging above high/low tables |
34 | 34 | $wgOut->addWikiMsg( 'articleFeedback-copy-above-highlow-tables', $wgArticleFeedbackDashboardTalkPage ); |
35 | | - |
| 35 | + |
36 | 36 | //render daily highs table |
37 | 37 | $this->renderDailyHighsAndLows( $highs, wfMsg( 'articleFeedback-table-caption-dailyhighs', $wgLang->date( time() ))); |
38 | | - |
| 38 | + |
39 | 39 | //render daily lows table |
40 | 40 | $this->renderDailyHighsAndLows( $lows, wfMsg( 'articleFeedback-table-caption-dailylows', $wgLang->date( time() ))); |
41 | 41 | |
— | — | @@ -42,7 +42,7 @@ |
43 | 43 | This functionality does not exist yet. |
44 | 44 | $this->renderWeeklyMostChanged();*/ |
45 | 45 | $this->renderProblems(); |
46 | | - |
| 46 | + |
47 | 47 | $wgOut->addWikiMsg( 'articlefeedback-dashboard-bottom' ); |
48 | 48 | } else { |
49 | 49 | $wgOut->addWikiText( 'This page has been disabled.' ); |
— | — | @@ -53,7 +53,7 @@ |
54 | 54 | |
55 | 55 | /** |
56 | 56 | * Returns an HTML table containing data from a given two dimensional array. |
57 | | - * |
| 57 | + * |
58 | 58 | * @param $headings Array: List of rows, each a list of column data (values will be escaped) |
59 | 59 | * @param $rows Array: List of rows, each a list of either calss/column data pairs (values will |
60 | 60 | * be escaped), or arrays containing attr, text and html fields, used to set attributes, text or |
— | — | @@ -89,7 +89,7 @@ |
90 | 90 | } |
91 | 91 | if ( isset( $column['text'] ) ) { |
92 | 92 | $table .= Html::element( 'td', $attr, $column['text'] ); |
93 | | - } else if ( isset( $column['html'] ) ) { |
| 93 | + } elseif ( isset( $column['html'] ) ) { |
94 | 94 | $table .= Html::rawElement( 'td', $attr, $column['html'] ); |
95 | 95 | } else { |
96 | 96 | $table .= Html::element( 'td', $attr ); |
— | — | @@ -107,12 +107,12 @@ |
108 | 108 | |
109 | 109 | /** |
110 | 110 | * Renders daily highs and lows |
111 | | - * |
| 111 | + * |
112 | 112 | * @return String: HTML table of daily highs and lows |
113 | 113 | */ |
114 | 114 | protected function renderDailyHighsAndLows( $pages, $caption ) { |
115 | 115 | global $wgOut, $wgUser; |
116 | | - |
| 116 | + |
117 | 117 | // Pre-fill page ID cache |
118 | 118 | $ids = array(); |
119 | 119 | foreach ( $pages as $page ) { |
— | — | @@ -148,7 +148,7 @@ |
149 | 149 | $rows[] = $row; |
150 | 150 | } |
151 | 151 | } |
152 | | - |
| 152 | + |
153 | 153 | $this->renderTable( |
154 | 154 | $caption, |
155 | 155 | array_merge( |
— | — | @@ -163,7 +163,7 @@ |
164 | 164 | |
165 | 165 | /** |
166 | 166 | * Renders weekly most changed |
167 | | - * |
| 167 | + * |
168 | 168 | * @return String: HTML table of weekly most changed |
169 | 169 | */ |
170 | 170 | protected function renderWeeklyMostChanged() { |
— | — | @@ -197,22 +197,22 @@ |
198 | 198 | |
199 | 199 | /** |
200 | 200 | * Renders problem articles table |
201 | | - * |
| 201 | + * |
202 | 202 | * @return String: HTML table of recent lows |
203 | 203 | */ |
204 | 204 | protected function renderProblems() { |
205 | 205 | global $wgOut, $wgUser, $wgArticleFeedbackRatings; |
206 | 206 | |
207 | | - |
| 207 | + |
208 | 208 | $problems = $this->getProblems(); |
209 | | - |
| 209 | + |
210 | 210 | // Pre-fill page ID cache |
211 | 211 | $ids = array(); |
212 | 212 | foreach ( $problems as $page ) { |
213 | 213 | $ids[] = $page['page']; |
214 | 214 | } |
215 | 215 | self::populateTitleCache( $ids ); |
216 | | - |
| 216 | + |
217 | 217 | $rows = array(); |
218 | 218 | foreach ( $problems as $page ) { |
219 | 219 | $row = array(); |
— | — | @@ -269,12 +269,12 @@ |
270 | 270 | __METHOD__, |
271 | 271 | array( "ORDER BY" => "afs_ts DESC", "LIMIT" => 1 ) |
272 | 272 | ); |
273 | | - |
| 273 | + |
274 | 274 | // if we have no results, just return |
275 | 275 | if ( !$row || !$row->afs_ts ) { |
276 | 276 | return array(); |
277 | 277 | } |
278 | | - |
| 278 | + |
279 | 279 | // select ratings with that ts |
280 | 280 | $result = $dbr->select( |
281 | 281 | 'article_feedback_stats', |
— | — | @@ -283,7 +283,7 @@ |
284 | 284 | 'afs_orderable_data', |
285 | 285 | 'afs_data' |
286 | 286 | ), |
287 | | - array( |
| 287 | + array( |
288 | 288 | 'afs_ts' => $row->afs_ts, |
289 | 289 | 'afs_stats_type_id' => $typeID |
290 | 290 | ), |
— | — | @@ -293,17 +293,17 @@ |
294 | 294 | $problems = $this->buildProblems( $result ); |
295 | 295 | $wgMemc->set( $key, $problems, 86400 ); |
296 | 296 | } |
297 | | - |
| 297 | + |
298 | 298 | return $problems; |
299 | 299 | } |
300 | | - |
| 300 | + |
301 | 301 | /** |
302 | 302 | * Gets a list of articles which were rated exceptionally high or low. |
303 | | - * |
| 303 | + * |
304 | 304 | * - Based on average of all rating categories |
305 | 305 | * - Gets 50 highest rated and 50 lowest rated |
306 | 306 | * - Only consider articles with 10+ ratings in the last 24 hours |
307 | | - * |
| 307 | + * |
308 | 308 | * This data should be updated daily, ideally though a scheduled batch job |
309 | 309 | */ |
310 | 310 | protected function getDailyHighsAndLows() { |
— | — | @@ -324,12 +324,12 @@ |
325 | 325 | __METHOD__, |
326 | 326 | array( "ORDER BY" => "afs_ts DESC", "LIMIT" => 1 ) |
327 | 327 | ); |
328 | | - |
| 328 | + |
329 | 329 | // if we have no results, just return |
330 | 330 | if ( !$row || !$row->afs_ts ) { |
331 | 331 | return array(); |
332 | 332 | } |
333 | | - |
| 333 | + |
334 | 334 | // select ratings with that ts |
335 | 335 | $result = $dbr->select( |
336 | 336 | 'article_feedback_stats', |
— | — | @@ -338,7 +338,7 @@ |
339 | 339 | 'afs_orderable_data', |
340 | 340 | 'afs_data' |
341 | 341 | ), |
342 | | - array( |
| 342 | + array( |
343 | 343 | 'afs_ts' => $row->afs_ts, |
344 | 344 | 'afs_stats_type_id' => $typeID, |
345 | 345 | ), |
— | — | @@ -348,20 +348,20 @@ |
349 | 349 | $highs_lows = $this->buildHighsAndLows( $result ); |
350 | 350 | $wgMemc->set( $key, $highs_lows, 86400 ); |
351 | 351 | } |
352 | | - |
| 352 | + |
353 | 353 | return $highs_lows; |
354 | 354 | } |
355 | 355 | |
356 | 356 | /** |
357 | 357 | * Determine the 'highest' rated articles |
358 | | - * |
| 358 | + * |
359 | 359 | * Divides the number of ratings in half to determine the range of |
360 | 360 | * articles to consider 'highest'. In the event of an odd number |
361 | 361 | * of articles, (determined by checking for modulus of # of ratings / 2), |
362 | 362 | * round up, giving preference to the 'highs' so |
363 | | - * everyone feels warm and fuzzy about having more 'highs', as |
| 363 | + * everyone feels warm and fuzzy about having more 'highs', as |
364 | 364 | * it were... |
365 | | - * |
| 365 | + * |
366 | 366 | * @param array Pre-orderd from lowest to highest |
367 | 367 | * @return array Containing the... highest rated article data |
368 | 368 | */ |
— | — | @@ -374,14 +374,14 @@ |
375 | 375 | } |
376 | 376 | return array_slice( $highs_lows, -$num_highs, $num_highs ); |
377 | 377 | } |
378 | | - |
| 378 | + |
379 | 379 | /** |
380 | 380 | * Determine the 'lowest' rated articles |
381 | 381 | * |
382 | 382 | * @see getDailyHighs() However, if we are dealing with an odd number of |
383 | 383 | * ratings, round up and then subtract 1 since we are giving preference |
384 | 384 | * to the 'highs' when dealing with an odd number of ratings. We do this |
385 | | - * rather than rely on PHP's rounding 'modes' for compaitibility with |
| 385 | + * rather than rely on PHP's rounding 'modes' for compaitibility with |
386 | 386 | * PHP < 5.3 |
387 | 387 | * @param array Pre-orderd from lowest to highest |
388 | 388 | * @return array Containing the... lowest rated article data |
— | — | @@ -395,7 +395,7 @@ |
396 | 396 | } |
397 | 397 | return array_slice( $highs_lows, 0, $num_lows ); |
398 | 398 | } |
399 | | - |
| 399 | + |
400 | 400 | /** |
401 | 401 | * Build data store of highs/lows for use when rendering table |
402 | 402 | * @param object Database result or array of rows |
— | — | @@ -415,7 +415,7 @@ |
416 | 416 | } |
417 | 417 | return $highs_lows; |
418 | 418 | } |
419 | | - |
| 419 | + |
420 | 420 | /** |
421 | 421 | * Build data store of problems for use when rendering table |
422 | 422 | * @param object Database result or array of rows |
— | — | @@ -435,7 +435,7 @@ |
436 | 436 | } |
437 | 437 | return $problems; |
438 | 438 | } |
439 | | - |
| 439 | + |
440 | 440 | /** |
441 | 441 | * Get the stats type id for a given stat type |
442 | 442 | * @param string $stats_type |
— | — | @@ -447,7 +447,7 @@ |
448 | 448 | if ( $cache ) { |
449 | 449 | return $cache; |
450 | 450 | } |
451 | | - |
| 451 | + |
452 | 452 | $dbr = wfGetDB( DB_SLAVE ); |
453 | 453 | $row = $dbr->selectRow( |
454 | 454 | 'article_feedback_stats_types', |
— | — | @@ -459,14 +459,14 @@ |
460 | 460 | $wgMemc->set( $key, $row->afst_id ); |
461 | 461 | return $row->afst_id; |
462 | 462 | } |
463 | | - |
| 463 | + |
464 | 464 | /** |
465 | 465 | * Gets a list of articles which have quickly changing ratings. |
466 | | - * |
| 466 | + * |
467 | 467 | * - Based on any rating category |
468 | 468 | * - Gets 50 most improved and 50 most worsened |
469 | 469 | * - Only consider articles with 100+ ratings in the last 7 days |
470 | | - * |
| 470 | + * |
471 | 471 | * This data should be updated daily, ideally though a scheduled batch job |
472 | 472 | */ |
473 | 473 | protected function getWeeklyMostChanged() { |
— | — | @@ -502,7 +502,7 @@ |
503 | 503 | |
504 | 504 | protected static function formatNumber( $number ) { |
505 | 505 | global $wgLang; |
506 | | - |
| 506 | + |
507 | 507 | return $wgLang->formatNum( number_format( $number, 2 ) ); |
508 | 508 | } |
509 | 509 | |
— | — | @@ -524,7 +524,7 @@ |
525 | 525 | } |
526 | 526 | return self::$categories; |
527 | 527 | } |
528 | | - |
| 528 | + |
529 | 529 | protected static function getTitleFromID( $id ) { |
530 | 530 | // There's no caching in Title::newFromId() so we hack our own around it |
531 | 531 | if ( !isset( self::$titleCache[$id] ) ) { |
— | — | @@ -532,7 +532,7 @@ |
533 | 533 | } |
534 | 534 | return self::$titleCache[$id]; |
535 | 535 | } |
536 | | - |
| 536 | + |
537 | 537 | protected static function populateTitleCache( $ids ) { |
538 | 538 | $toQuery = array_diff( $ids, array_keys( self::$titleCache ) ); |
539 | 539 | $titles = Title::newFromIds( $toQuery ); |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/ArticleFeedback.hooks.php |
— | — | @@ -21,12 +21,32 @@ |
22 | 22 | 'messages' => array( |
23 | 23 | 'articlefeedback-field-trustworthy-label', |
24 | 24 | 'articlefeedback-field-trustworthy-tip', |
| 25 | + 'articlefeedback-field-trustworthy-tooltip-1', |
| 26 | + 'articlefeedback-field-trustworthy-tooltip-2', |
| 27 | + 'articlefeedback-field-trustworthy-tooltip-3', |
| 28 | + 'articlefeedback-field-trustworthy-tooltip-4', |
| 29 | + 'articlefeedback-field-trustworthy-tooltip-5', |
25 | 30 | 'articlefeedback-field-complete-label', |
26 | 31 | 'articlefeedback-field-complete-tip', |
| 32 | + 'articlefeedback-field-complete-tooltip-1', |
| 33 | + 'articlefeedback-field-complete-tooltip-2', |
| 34 | + 'articlefeedback-field-complete-tooltip-3', |
| 35 | + 'articlefeedback-field-complete-tooltip-4', |
| 36 | + 'articlefeedback-field-complete-tooltip-5', |
27 | 37 | 'articlefeedback-field-objective-label', |
28 | 38 | 'articlefeedback-field-objective-tip', |
| 39 | + 'articlefeedback-field-objective-tooltip-1', |
| 40 | + 'articlefeedback-field-objective-tooltip-2', |
| 41 | + 'articlefeedback-field-objective-tooltip-3', |
| 42 | + 'articlefeedback-field-objective-tooltip-4', |
| 43 | + 'articlefeedback-field-objective-tooltip-5', |
29 | 44 | 'articlefeedback-field-wellwritten-label', |
30 | 45 | 'articlefeedback-field-wellwritten-tip', |
| 46 | + 'articlefeedback-field-wellwritten-tooltip-1', |
| 47 | + 'articlefeedback-field-wellwritten-tooltip-2', |
| 48 | + 'articlefeedback-field-wellwritten-tooltip-3', |
| 49 | + 'articlefeedback-field-wellwritten-tooltip-4', |
| 50 | + 'articlefeedback-field-wellwritten-tooltip-5', |
31 | 51 | 'articlefeedback-pitch-reject', |
32 | 52 | 'articlefeedback-pitch-or', |
33 | 53 | 'articlefeedback-pitch-thanks', |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/modules/jquery.articleFeedback/jquery.articleFeedback.js |
— | — | @@ -112,6 +112,7 @@ |
113 | 113 | <div class="articleFeedback-rating-label" rel="5"></div>\ |
114 | 114 | <div class="articleFeedback-rating-clear"></div>\ |
115 | 115 | </div>\ |
| 116 | + <div class="articleFeedback-rating-tooltip articleFeedback-visibleWith-form"></div>\ |
116 | 117 | <div class="articleFeedback-rating-average articleFeedback-visibleWith-report"></div>\ |
117 | 118 | <div class="articleFeedback-rating-meter articleFeedback-visibleWith-report"><div></div></div>\ |
118 | 119 | <div class="articleFeedback-rating-count articleFeedback-visibleWith-report"></div>\ |
— | — | @@ -486,11 +487,12 @@ |
487 | 488 | .find( '.articleFeedback-ratings' ) |
488 | 489 | .each( function() { |
489 | 490 | for ( var key in context.options.ratings ) { |
| 491 | + var rating = context.options.ratings[key]; |
490 | 492 | $( $.articleFeedback.tpl.rating ) |
491 | 493 | .attr( 'rel', key ) |
492 | 494 | .find( '.articleFeedback-label' ) |
493 | | - .attr( 'title', mw.msg( context.options.ratings[key].tip ) ) |
494 | | - .text( mw.msg( context.options.ratings[key].label ) ) |
| 495 | + .attr( 'title', mw.msg( rating.tip ) ) |
| 496 | + .text( mw.msg( rating.label ) ) |
495 | 497 | .end() |
496 | 498 | .find( '.articleFeedback-rating-clear' ) |
497 | 499 | .attr( 'title', mw.msg( 'articlefeedback-form-panel-clear' ) ) |
— | — | @@ -731,19 +733,30 @@ |
732 | 734 | .find( '.articleFeedback-rating-label' ) |
733 | 735 | .hover( |
734 | 736 | function() { |
735 | | - $(this) |
| 737 | + var $el = $(this), |
| 738 | + $rating = $el.closest( '.articleFeedback-rating' ); |
| 739 | + $el |
736 | 740 | .addClass( 'articleFeedback-rating-label-hover-head' ) |
737 | 741 | .prevAll( '.articleFeedback-rating-label' ) |
738 | 742 | .addClass( 'articleFeedback-rating-label-hover-tail' ); |
| 743 | + $rating |
| 744 | + .find( '.articleFeedback-rating-tooltip' ) |
| 745 | + .text( mw.msg( 'articlefeedback-field-' + $rating.attr( 'rel' ) + '-tooltip-' + $el.attr( 'rel' ) ) ) |
| 746 | + .show(); |
739 | 747 | }, |
740 | 748 | function() { |
741 | | - $(this) |
| 749 | + var $el = $(this), |
| 750 | + $rating = $el.closest( '.articleFeedback-rating' ); |
| 751 | + $el |
742 | 752 | .removeClass( 'articleFeedback-rating-label-hover-head' ) |
743 | 753 | .prevAll( '.articleFeedback-rating-label' ) |
744 | 754 | .removeClass( 'articleFeedback-rating-label-hover-tail' ); |
745 | | - $.articleFeedback.fn.updateRating.call( |
746 | | - $(this).closest( '.articleFeedback-rating' ) |
747 | | - ); |
| 755 | + $rating |
| 756 | + .closest( '.articleFeedback-rating' ) |
| 757 | + .find( '.articleFeedback-rating-tooltip' ) |
| 758 | + .hide(); |
| 759 | + |
| 760 | + $.articleFeedback.fn.updateRating.call( $rating ); |
748 | 761 | } |
749 | 762 | ) |
750 | 763 | .mousedown( function() { |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/modules/jquery.articleFeedback/jquery.articleFeedback.css |
— | — | @@ -174,7 +174,8 @@ |
175 | 175 | margin-left: 10px; |
176 | 176 | } |
177 | 177 | |
178 | | -.articleFeedback-rating-label, .articleFeedback-rating-clear { |
| 178 | +.articleFeedback-rating-label, |
| 179 | +.articleFeedback-rating-clear { |
179 | 180 | float: left; |
180 | 181 | height: 21px; |
181 | 182 | width: 21px; |
— | — | @@ -224,10 +225,19 @@ |
225 | 226 | background-image: url(images/star-new-down.png); |
226 | 227 | } |
227 | 228 | |
| 229 | +.articleFeedback-rating-tooltip { |
| 230 | + float: left; |
| 231 | + width: 170px; |
| 232 | + margin-left: 12px; |
| 233 | + color: #999999; |
| 234 | + font-size: 0.9em; |
| 235 | + display: none; |
| 236 | +} |
| 237 | + |
228 | 238 | .articleFeedback-rating { |
229 | 239 | float: left; |
230 | 240 | width: 11em; |
231 | | - height: 4em; |
| 241 | + height: 5em; |
232 | 242 | margin-bottom: 0.5em; |
233 | 243 | } |
234 | 244 | |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/modules/ext.articleFeedback/ext.articleFeedback.js |
— | — | @@ -253,7 +253,7 @@ |
254 | 254 | 'title': 'Special:UserLogin', |
255 | 255 | 'type': 'signup', |
256 | 256 | 'returnto': mw.config.get( 'wgPageName' ) |
257 | | - } ), 'pitch-signup-accept' ); |
| 257 | + } ), 'pitch-join-accept-signup' ); |
258 | 258 | return false; |
259 | 259 | }, |
260 | 260 | 'title': 'articlefeedback-pitch-thanks', |
— | — | @@ -272,7 +272,7 @@ |
273 | 273 | mw.config.get( 'wgScript' ) + '?' + $.param( { |
274 | 274 | 'title': 'Special:UserLogin', |
275 | 275 | 'returnto': mw.config.get( 'wgPageName' ) |
276 | | - } ), 'pitch-join-accept' ); |
| 276 | + } ), 'pitch-join-accept-login' ); |
277 | 277 | return false; |
278 | 278 | } |
279 | 279 | }, |
— | — | @@ -280,7 +280,7 @@ |
281 | 281 | 'weight': 2, |
282 | 282 | 'condition': function() { |
283 | 283 | // An empty restrictions array means anyone can edit |
284 | | - var restrictions = mw.config.get( 'wgRestrictionEdit' ); |
| 284 | + var restrictions = mw.config.get( 'wgRestrictionEdit', [] ); |
285 | 285 | if ( restrictions.length ) { |
286 | 286 | var groups = mw.config.get( 'wgUserGroups' ); |
287 | 287 | // Verify that each restriction exists in the user's groups |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/modules/ext.articleFeedback/ext.articleFeedback.startup.js |
— | — | @@ -3,8 +3,10 @@ |
4 | 4 | */ |
5 | 5 | |
6 | 6 | jQuery( function( $ ) { |
| 7 | + // Load check, is this page ArticleFeedback-enabled ? |
| 8 | + // Keep in sync with ApiArticleFeedback.php |
7 | 9 | if ( |
8 | | - // Main namespace articles |
| 10 | + // Only on pages in namespaces where it is enabled |
9 | 11 | $.inArray( mw.config.get( 'wgNamespaceNumber' ), mw.config.get( 'wgArticleFeedbackNamespaces', [] ) ) > -1 |
10 | 12 | // Existing pages |
11 | 13 | && mw.config.get( 'wgArticleId' ) > 0 |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/api/ApiArticleFeedback.php |
— | — | @@ -5,9 +5,11 @@ |
6 | 6 | } |
7 | 7 | |
8 | 8 | public function execute() { |
9 | | - global $wgUser, $wgArticleFeedbackRatings, $wgArticleFeedbackSMaxage; |
| 9 | + global $wgUser, $wgArticleFeedbackRatings, $wgArticleFeedbackSMaxage, |
| 10 | + $wgArticleFeedbackNamespaces; |
10 | 11 | $params = $this->extractRequestParams(); |
11 | 12 | |
| 13 | + // Anon token check |
12 | 14 | if ( $wgUser->isAnon() ) { |
13 | 15 | if ( !isset( $params['anontoken'] ) ) { |
14 | 16 | $this->dieUsageMsg( array( 'missingparam', 'anontoken' ) ); |
— | — | @@ -20,6 +22,21 @@ |
21 | 23 | $token = ''; |
22 | 24 | } |
23 | 25 | |
| 26 | + // Load check, is this page ArticleFeedback-enabled ? |
| 27 | + // Keep in sync with ext.articleFeedback.startup.js |
| 28 | + $title = Title::newFromID( $params['pageid'] ); |
| 29 | + if ( |
| 30 | + // Inexisting page ? (newFromID returns null so we can't use $title->exists) |
| 31 | + is_null( $title ) |
| 32 | + // Namespace not a valid ArticleFeedback namespace ? |
| 33 | + || !in_array( $title->getNamespace(), $wgArticleFeedbackNamespaces ) |
| 34 | + // Page a redirect ? |
| 35 | + || $title->isRedirect() |
| 36 | + ) { |
| 37 | + // ...then error out |
| 38 | + $this->dieUsage( 'ArticleFeedback is not enabled on this page', 'invalidpage' ); |
| 39 | + } |
| 40 | + |
24 | 41 | $dbr = wfGetDB( DB_SLAVE ); |
25 | 42 | |
26 | 43 | // Query the latest ratings by this user for this page, |
— | — | @@ -424,6 +441,7 @@ |
425 | 442 | return array_merge( parent::getPossibleErrors(), array( |
426 | 443 | array( 'missingparam', 'anontoken' ), |
427 | 444 | array( 'code' => 'invalidtoken', 'info' => 'The anontoken is not 32 characters' ), |
| 445 | + array( 'code' => 'invalidpage', 'info' => 'ArticleFeedback is not enabled on this page' ), |
428 | 446 | ) ); |
429 | 447 | } |
430 | 448 | |
Property changes on: branches/wmf/1.17wmf1/extensions/ArticleFeedback/api/ApiArticleFeedback.php |
___________________________________________________________________ |
Modified: svn:mergeinfo |
431 | 449 | Merged /trunk/extensions/ArticleFeedback/api/ApiArticleFeedback.php:r89791-91183 |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/api/ApiQueryArticleFeedback.php |
— | — | @@ -111,7 +111,10 @@ |
112 | 112 | } |
113 | 113 | |
114 | 114 | foreach ( $ratings as $rat ) { |
115 | | - $result->setIndexedTagName( $rat['ratings'], 'r' ); |
| 115 | + if ( isset( $rat['ratings'] ) ) { |
| 116 | + $result->setIndexedTagName( $rat['ratings'], 'r' ); |
| 117 | + } |
| 118 | + |
116 | 119 | $result->addValue( array( 'query', $this->getModuleName() ), null, $rat ); |
117 | 120 | } |
118 | 121 | |
— | — | @@ -263,15 +266,15 @@ |
264 | 267 | |
265 | 268 | public function getParamDescription() { |
266 | 269 | return array( |
267 | | - 'pageid' => 'Page ID to get feedbacks for', |
268 | | - 'userrating' => "Whether to get the current user's ratings for the specific rev/article", |
| 270 | + 'pageid' => 'Page ID to get feedback ratings for', |
| 271 | + 'userrating' => "Whether to get the current user's ratings for the specified page", |
269 | 272 | 'anontoken' => 'Token for anonymous users', |
270 | 273 | ); |
271 | 274 | } |
272 | 275 | |
273 | 276 | public function getDescription() { |
274 | 277 | return array( |
275 | | - 'List all article feedbacks' |
| 278 | + 'List article feedback ratings for a specified page' |
276 | 279 | ); |
277 | 280 | } |
278 | 281 | |
— | — | @@ -285,7 +288,6 @@ |
286 | 289 | |
287 | 290 | protected function getExamples() { |
288 | 291 | return array( |
289 | | - 'api.php?action=query&list=articlefeedback', |
290 | 292 | 'api.php?action=query&list=articlefeedback&afpageid=1', |
291 | 293 | 'api.php?action=query&list=articlefeedback&afpageid=1&afuserrating=1', |
292 | 294 | ); |
Property changes on: branches/wmf/1.17wmf1/extensions/ArticleFeedback/api/ApiQueryArticleFeedback.php |
___________________________________________________________________ |
Modified: svn:mergeinfo |
293 | 295 | Merged /trunk/extensions/ArticleFeedback/api/ApiQueryArticleFeedback.php:r89791-91183 |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/ArticleFeedback.i18n.php |
— | — | @@ -55,12 +55,32 @@ |
56 | 56 | 'articlefeedback-report-ratings' => '$1 ratings', |
57 | 57 | 'articlefeedback-field-trustworthy-label' => 'Trustworthy', |
58 | 58 | 'articlefeedback-field-trustworthy-tip' => 'Do you feel this page has sufficient citations and that those citations come from trustworthy sources?', |
| 59 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Lacks reputable sources', |
| 60 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Few reputable sources', |
| 61 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Adequate reputable sources', |
| 62 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Good reputable sources', |
| 63 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Great reputable sources', |
59 | 64 | 'articlefeedback-field-complete-label' => 'Complete', |
60 | 65 | 'articlefeedback-field-complete-tip' => 'Do you feel that this page covers the essential topic areas that it should?', |
| 66 | + 'articlefeedback-field-complete-tooltip-1' => 'Missing most information', |
| 67 | + 'articlefeedback-field-complete-tooltip-2' => 'Contains some information', |
| 68 | + 'articlefeedback-field-complete-tooltip-3' => 'Contains key information, but with gaps', |
| 69 | + 'articlefeedback-field-complete-tooltip-4' => 'Contains most key information', |
| 70 | + 'articlefeedback-field-complete-tooltip-5' => 'Comprehensive coverage', |
61 | 71 | 'articlefeedback-field-objective-label' => 'Objective', |
62 | 72 | 'articlefeedback-field-objective-tip' => 'Do you feel that this page shows a fair representation of all perspectives on the issue?', |
| 73 | + 'articlefeedback-field-objective-tooltip-1' => 'Heavily biased', |
| 74 | + 'articlefeedback-field-objective-tooltip-2' => 'Moderate bias', |
| 75 | + 'articlefeedback-field-objective-tooltip-3' => 'Minimal bias', |
| 76 | + 'articlefeedback-field-objective-tooltip-4' => 'No obvious bias', |
| 77 | + 'articlefeedback-field-objective-tooltip-5' => 'Completely unbiased', |
63 | 78 | 'articlefeedback-field-wellwritten-label' => 'Well-written', |
64 | 79 | 'articlefeedback-field-wellwritten-tip' => 'Do you feel that this page is well-organized and well-written?', |
| 80 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Incomprehensible', |
| 81 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Difficult to understand', |
| 82 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Adequate clarity', |
| 83 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Good clarity', |
| 84 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Exceptional clarity', |
65 | 85 | 'articlefeedback-pitch-reject' => 'Maybe later', |
66 | 86 | 'articlefeedback-pitch-or' => 'or', |
67 | 87 | 'articlefeedback-pitch-thanks' => 'Thanks! Your ratings have been saved.', |
— | — | @@ -335,7 +355,8 @@ |
336 | 356 | 'articlefeedback-error' => 'Узьнікла памылка. Калі ласка, паспрабуйце потым', |
337 | 357 | 'articlefeedback-form-switch-label' => 'Адзначце гэтую старонку', |
338 | 358 | 'articlefeedback-form-panel-title' => 'Адзначце гэтую старонку', |
339 | | - 'articlefeedback-form-panel-instructions' => 'Калі ласка, знайдзіце час, каб адзначыць гэтую старонку.', |
| 359 | + 'articlefeedback-form-panel-explanation' => 'Што гэта?', |
| 360 | + 'articlefeedback-form-panel-explanation-link' => 'Project:Адзнака артыкула', |
340 | 361 | 'articlefeedback-form-panel-clear' => 'Выдаліць гэтую адзнаку', |
341 | 362 | 'articlefeedback-form-panel-expertise' => 'Я маю значныя веды па гэтай тэме (па жаданьні)', |
342 | 363 | 'articlefeedback-form-panel-expertise-studies' => 'Я маю адпаведную ступень вышэйшай адукацыі', |
— | — | @@ -386,7 +407,10 @@ |
387 | 408 | 'articleFeedback-table-heading-page' => 'Старонка', |
388 | 409 | 'articleFeedback-table-heading-average' => 'Сярэдняе', |
389 | 410 | 'articleFeedback-copy-above-highlow-tables' => 'Гэта экспэрымэнтальная магчымасьць. Калі ласка, падайце Ваш водгук на [$1 старонцы абмеркаваньня].', |
390 | | - 'articleFeedback-copy-below-highlow-tables' => 'Гэтыя табліцы ўтрымліваюць артыкулы, якія атрымалі адзнаку не меней 10 за апошнія 24 гадзіны. Сярэдняя адзнака разьлічваецца на падставе ўсіх адзнака пададзеных за апошнія 24 гадзіны.', |
| 411 | + 'articlefeedback-dashboard-bottom' => "'''Заўвага''': Мы ўсё яшчэ працягваем экспэрымэнтаваць з апрацоўкай артыкулаў на гэтых пляцоўках. У цяперашні час пляцоўкі ўтрымліваюць наступныя артыкулы: |
| 412 | +* Старонкі з вышэйшымі/ніжэйшымі адзнакамі: артыкулы, якія атрымалі ня менш 10 адзнакаў за апошнія 24 гадзіны. Сярэдняя адзнака вылічаная на падставе усіх адзнакаў атрыманых за апошнія 24 гадзіны. |
| 413 | +* Апошнія самыя нізкія адзнакі: артыкулы, якія маюць 70% ці болей нізкіх (2 зоркі ці ніжэй) адзнакаў у любой катэгорыі за апошнія 24 гадзіны. Улічваюцца толькі артыкулы якія атрымалі ня менш 10 адзнакаў за апошнія 24 гадзіны.", |
| 414 | + 'articlefeedback-disable-preference' => 'Не паказваць на старонках віджэт адзнакі артыкула', |
391 | 415 | 'articlefeedback-emailcapture-response-body' => 'Вітаем! |
392 | 416 | |
393 | 417 | Дзякуй, за дапамогу ў паляпшэньні {{GRAMMAR:родны|{{SITENAME}}}}. |
— | — | @@ -426,10 +450,12 @@ |
427 | 451 | 'articlefeedback-survey-submit' => 'Изпращане', |
428 | 452 | 'articlefeedback-survey-title' => 'Моля, отговорете на няколко въпроса', |
429 | 453 | 'articlefeedback-survey-thanks' => 'Благодарим ви, че попълнихте въпросника!', |
| 454 | + 'articlefeedback-form-panel-explanation' => 'Какво е това?', |
430 | 455 | 'articlefeedback-report-switch-label' => 'Показване на резултатите', |
431 | 456 | 'articlefeedback-pitch-join-accept' => 'Създаване на сметка', |
432 | 457 | 'articlefeedback-pitch-join-login' => 'Влизане', |
433 | 458 | 'articlefeedback-pitch-edit-accept' => 'Редактиране на тази страница', |
| 459 | + 'articleFeedback-table-heading-page' => 'Страница', |
434 | 460 | ); |
435 | 461 | |
436 | 462 | /** Bengali (বাংলা) |
— | — | @@ -506,7 +532,7 @@ |
507 | 533 | * @author Y-M D |
508 | 534 | */ |
509 | 535 | $messages['br'] = array( |
510 | | - 'articlefeedback' => 'Priziadenn pennadoù', |
| 536 | + 'articlefeedback' => 'Taolenn vourzh priziañ ar pennad', |
511 | 537 | 'articlefeedback-desc' => 'Priziadenn pennadoù (stumm stur)', |
512 | 538 | 'articlefeedback-survey-question-origin' => "E peseurt pajenn e oac'h p'hoc'h eus kroget gant an enselladenn-mañ ?", |
513 | 539 | 'articlefeedback-survey-question-whyrated' => "Roit deomp an abeg d'ar perak ho peus priziet ar bajenn-mañ hiziv (kevaskit an abegoù gwirion) :", |
— | — | @@ -525,7 +551,8 @@ |
526 | 552 | 'articlefeedback-error' => "C'hoarvezet ez eus ur fazi. Esaeit en-dro diwezhtaoc'h, mar plij.", |
527 | 553 | 'articlefeedback-form-switch-label' => "Reiñ un notenn d'ar bajenn-mañ", |
528 | 554 | 'articlefeedback-form-panel-title' => "Reiñ un notenn d'ar bajenn-mañ", |
529 | | - 'articlefeedback-form-panel-instructions' => 'Trugarez da gemer un tamm amzer da briziañ ar bajenn-mañ.', |
| 555 | + 'articlefeedback-form-panel-explanation' => 'Petra eo se ?', |
| 556 | + 'articlefeedback-form-panel-explanation-link' => 'Project:ArticleFeedback', |
530 | 557 | 'articlefeedback-form-panel-clear' => 'Lemel an notenn-mañ', |
531 | 558 | 'articlefeedback-form-panel-expertise' => 'Gouzout a ran mat-tre diouzh an danvez-se (diret)', |
532 | 559 | 'articlefeedback-form-panel-expertise-studies' => 'Un diplom skol-veur pe skol-uhel a zere am eus tapet', |
— | — | @@ -537,6 +564,7 @@ |
538 | 565 | 'articlefeedback-form-panel-helpimprove-privacy' => 'Reolennoù prevezded', |
539 | 566 | 'articlefeedback-form-panel-helpimprove-privacylink' => 'Project:Reolennoù prevezded', |
540 | 567 | 'articlefeedback-form-panel-submit' => 'Kas ar priziadennoù', |
| 568 | + 'articlefeedback-form-panel-pending' => "N'eo ket bet kaset ho priziadenn evit c'hoazh", |
541 | 569 | 'articlefeedback-form-panel-success' => 'Enrollet ervat', |
542 | 570 | 'articlefeedback-form-panel-expiry-title' => "Aet eo ho priziadenn d'he zermen", |
543 | 571 | 'articlefeedback-form-panel-expiry-message' => 'Adpriziit ar bajenn-mañ ha kasit en-dro ho priziadenn nevez.', |
— | — | @@ -568,12 +596,17 @@ |
569 | 597 | 'articlefeedback-survey-message-error' => "Ur fazi zo bet. |
570 | 598 | Klaskit en-dro diwezhatoc'h.", |
571 | 599 | 'articleFeedback-table-caption-dailyhighsandlows' => 'Berzh ha droukverzh an devezh', |
572 | | - 'articleFeedback-table-caption-dailyhighs' => 'Berzh an devezh', |
573 | | - 'articleFeedback-table-caption-dailylows' => 'Droukverzh an devezh', |
| 600 | + 'articleFeedback-table-caption-dailyhighs' => 'Pajennoù gwellañ priziet : $1', |
| 601 | + 'articleFeedback-table-caption-dailylows' => 'Pajennoù priziet an nebeutañ : $1', |
574 | 602 | 'articleFeedback-table-caption-weeklymostchanged' => 'Ar re gemmet ar muiañ er sizhun-mañ', |
575 | 603 | 'articleFeedback-table-caption-recentlows' => 'Droukverzh nevesañ', |
576 | 604 | 'articleFeedback-table-heading-page' => 'Pajenn', |
577 | 605 | 'articleFeedback-table-heading-average' => 'Keidenn', |
| 606 | + 'articleFeedback-copy-above-highlow-tables' => "Un arc'hwel arnodel eo hemañ. Lakait an evezhiadennoù er [$1 bajenn gaozeal].", |
| 607 | + 'articlefeedback-dashboard-bottom' => "'''Notenn''' : Kenderc'hel a raimp da amprouiñ doareoù disheñvel da ginnig ar pennadoù en taolennoù-bourzh-mañ. Evit ar mare emañ enno ar pennadoù da-heul : |
| 608 | +* Pajennoù ar gwellañ/fallañ priziet : pennadoù zo bet priziet da nebeutañ 10 gwezh e-kerzh an devezh diwezhañ. C'hoarvezout a ra ar c'heidennoù diwar jediñ keidenn an holl briziadennoù bet abaoe 24 eurvezh. |
| 609 | +* Pennadoù a zisplij : pennadoù bet priziet gant 2 steredenn pe nebeutoc'h, e-pad 70 % eus an amzer pe pelloc'h, ne vern o rummad e-pad ar 24 eurvezh tremenet. Ne sell nemet ouzh ar pennadoù bet priziet da nebeutañ 10 gwezh e-pad ar 24 eurvezh diwezhañ.", |
| 610 | + 'articlefeedback-disable-preference' => 'Arabat diskwel ar bitrak Priziañ ar pennadoù er pajennoù.', |
578 | 611 | 'articlefeedback-emailcapture-response-body' => "Demat deoc'h ! |
579 | 612 | |
580 | 613 | Trugarez deoc'h da vezañ diskouezet bezañ dedennet d'hor skoazellañ evit gwellaat {{SITENAME}}. |
— | — | @@ -621,15 +654,20 @@ |
622 | 655 | 'articlefeedback-error' => 'Desila se greška. Molimo pokušajte kasnije.', |
623 | 656 | 'articlefeedback-form-switch-label' => 'Ocijeni ovu stranicu', |
624 | 657 | 'articlefeedback-form-panel-title' => 'Ocijeni ovu stranicu', |
625 | | - 'articlefeedback-form-panel-instructions' => 'Molimo odvojite trenutak vremena da ocijenite ovu stranicu.', |
| 658 | + 'articlefeedback-form-panel-explanation' => 'Šta je ovo?', |
| 659 | + 'articlefeedback-form-panel-explanation-link' => 'Project:OcjenjivanjeČlanaka', |
626 | 660 | 'articlefeedback-form-panel-clear' => 'Ukloni ovu ocjenu', |
627 | 661 | 'articlefeedback-form-panel-expertise' => 'Visoko sam obrazovan o ovoj temi (neobavezno)', |
628 | 662 | 'articlefeedback-form-panel-expertise-studies' => 'Imam odgovarajući fakultetsku/univerzitetsku diplomu', |
629 | 663 | 'articlefeedback-form-panel-expertise-profession' => 'Ovo je dio moje struke', |
630 | 664 | 'articlefeedback-form-panel-expertise-hobby' => 'Ovo je moja duboka lična strast', |
631 | 665 | 'articlefeedback-form-panel-expertise-other' => 'Izvor mog znanja nije prikazan ovdje', |
| 666 | + 'articlefeedback-form-panel-helpimprove' => 'Želio bih pomoći da unaprijedim Wikipediju, pošalji mi e-mail (neobavezno)', |
| 667 | + 'articlefeedback-form-panel-helpimprove-note' => 'Poslat ćemo vam e-mail potvrde. Nećemo dijeliti vašu adresu ni s kim. $1', |
632 | 668 | 'articlefeedback-form-panel-helpimprove-privacy' => 'Politika privatnosti', |
| 669 | + 'articlefeedback-form-panel-helpimprove-privacylink' => 'Project:Politika privatnosti', |
633 | 670 | 'articlefeedback-form-panel-submit' => 'Pošalji ocjene', |
| 671 | + 'articlefeedback-form-panel-pending' => 'Vaše ocjene još nisu poslane', |
634 | 672 | 'articlefeedback-form-panel-success' => 'Uspješno sačuvano', |
635 | 673 | 'articlefeedback-form-panel-expiry-title' => 'Vaše ocjene su istekle', |
636 | 674 | 'articlefeedback-form-panel-expiry-message' => 'Molimo ponovo ocijenite ovu stranicu i pošaljite nove ocjene.', |
— | — | @@ -660,8 +698,40 @@ |
661 | 699 | 'articlefeedback-survey-message-success' => 'Hvala vam na popunjavanju ankete.', |
662 | 700 | 'articlefeedback-survey-message-error' => 'Desila se greška. |
663 | 701 | Molimo pokušajte kasnije.', |
| 702 | + 'articleFeedback-table-caption-dailyhighsandlows' => 'Današnji najviši i najniži', |
| 703 | + 'articleFeedback-table-caption-dailyhighs' => 'Stranice sa najvišim ocjenama: $1', |
| 704 | + 'articleFeedback-table-caption-dailylows' => 'Stranice sa najnižim ocjenama: $1', |
| 705 | + 'articleFeedback-table-caption-weeklymostchanged' => 'Najviše mijenjano ove sedmice', |
| 706 | + 'articleFeedback-table-caption-recentlows' => 'Nedavne najniže ocjene', |
664 | 707 | 'articleFeedback-table-heading-page' => 'Stranica', |
665 | 708 | 'articleFeedback-table-heading-average' => 'Prosjek', |
| 709 | + 'articleFeedback-copy-above-highlow-tables' => 'Ovo je probna osobina. Molimo da nam pošaljete povratne informacije na [$1 stranicu za razgovor].', |
| 710 | + 'articlefeedback-dashboard-bottom' => "'''Napomena''': Mi ćemo nastaviti da probavamo sa raznim načinima prikaza članaka na ovim tablama. Trenutno, table uključuju slijedeće članke: |
| 711 | +* Stranice sa najboljim/najslabijim ocjenama: članke koji imaju najmanje 10 ocjena u posljednja 24 sata. Prosjeci su računati tako što su izračunati prosjeci svih poslanih ocjena u posljednja 24 sata. |
| 712 | +* Nedavne padovi: članci koji su dobili 70% ili manje (2 zvijezde ili niže) ocjene u bilo kojoj kategoriji u posljednja 24 sata. Samo članci koji su dobili najmanje 10 ocjena u posljednja 24 sata su ovdje uključeni.", |
| 713 | + 'articlefeedback-disable-preference' => 'Ne prikazuj dodatak Povratne informacije o članku na stranicama', |
| 714 | + 'articlefeedback-emailcapture-response-body' => 'Zdravo! |
| 715 | + |
| 716 | +Hvala što ste izrazili zanimanje za poboljšanje {{SITENAME}}. |
| 717 | + |
| 718 | +Molimo vas potvrdite vaš e-mail putem klika na link ispod: |
| 719 | + |
| 720 | +$1 |
| 721 | + |
| 722 | +Također možete posjetiti: |
| 723 | + |
| 724 | +$2 |
| 725 | + |
| 726 | +I unijeti slijedeći kod potvrde: |
| 727 | + |
| 728 | +$3 |
| 729 | + |
| 730 | +Bit ćemo ubrzo u kontaktu podacima kako možete pomoći oko poboljšanja {{SITENAME}}. |
| 731 | + |
| 732 | +Ako niste inicirali ovaj zahtjev, molimo zanemarite ovaj e-mail i nećemo vam slati ništa više. |
| 733 | + |
| 734 | +Srdačne čestitke i hvala najljepša, |
| 735 | +Vaš {{SITENAME}} tim', |
666 | 736 | ); |
667 | 737 | |
668 | 738 | /** Catalan (Català) |
— | — | @@ -790,10 +860,34 @@ |
791 | 861 | 'articleFeedback-table-caption-dailyhighsandlows' => 'Dnešní maxima a minima', |
792 | 862 | 'articleFeedback-table-caption-dailyhighs' => 'Stránky s nejvyšším hodnocením: $1', |
793 | 863 | 'articleFeedback-table-caption-dailylows' => 'Stránky s nejnižším hodnocením: $1', |
| 864 | + 'articleFeedback-table-caption-weeklymostchanged' => 'Největší změny tohoto týdne', |
| 865 | + 'articleFeedback-table-caption-recentlows' => 'Nedávná minima', |
794 | 866 | 'articleFeedback-table-heading-page' => 'Stránka', |
795 | 867 | 'articleFeedback-table-heading-average' => 'Průměr', |
796 | 868 | 'articleFeedback-copy-above-highlow-tables' => 'Toto je pokusná funkce. Sdělte nám svůj názor na [$1 diskusní stránce].', |
797 | | - 'articleFeedback-copy-below-highlow-tables' => 'Tyto tabulky obsahují stránky, které byly v posledních 24 hodinách ohodnoceny alespoň 10krát. Průměry se počítají ze všech hodnocení odeslaných v posledních 24 hodinách.', |
| 869 | + 'articlefeedback-disable-preference' => 'Nezobrazovat na stránkách komponentu pro hodnocení článků', |
| 870 | + 'articlefeedback-emailcapture-response-body' => 'Dobrý den! |
| 871 | + |
| 872 | +Děkujeme za vyjádření zájmu pomoci vylepšit {{grammar:4sg|{{SITENAME}}}}. |
| 873 | + |
| 874 | +Věnujte prosím chvilku potvrzení vaší e-mailové adresy kliknutím na následující odkaz: |
| 875 | + |
| 876 | +$1 |
| 877 | + |
| 878 | +Také můžete navštívit: |
| 879 | + |
| 880 | +$2 |
| 881 | + |
| 882 | +A zadat následující potvrzovací kód: |
| 883 | + |
| 884 | +$3 |
| 885 | + |
| 886 | +Brzy se vám ozveme s informacemi, jak můžete pomoci {{grammar:4sg|{{SITENAME}}}} vylepšit. |
| 887 | + |
| 888 | +Pokud tato žádost nepochází od vás, ignorujte prosím tento e-mail, nic dalšího vám posílat nebudeme. |
| 889 | + |
| 890 | +Děkujeme, s pozdravem |
| 891 | +tým {{grammar:2sg|{{SITENAME}}}}', |
798 | 892 | ); |
799 | 893 | |
800 | 894 | /** German (Deutsch) |
— | — | @@ -873,7 +967,9 @@ |
874 | 968 | 'articleFeedback-table-heading-page' => 'Seite', |
875 | 969 | 'articleFeedback-table-heading-average' => 'Durchschnitt', |
876 | 970 | 'articleFeedback-copy-above-highlow-tables' => 'Dies ist ein experimenteller Funktionsbestandteil. Bitte hierzu auf der [$1 Diskussionsseite] eine Rückmeldung geben.', |
877 | | - 'articleFeedback-copy-below-highlow-tables' => 'Diese Tabellen enthalten die Namen der Artikel, zu denen während der letzten 24 Stunden mindestens zehn Bewertungen abgegeben wurden. Die Durchschnittswerte basieren auf allen während der vergangenen 24 Stunden abgegebenen Bewertungen.', |
| 971 | + 'articlefeedback-dashboard-bottom' => "'''Hinweis:''' Wir werden weiterhin unterschiedliche Möglichkeiten ausprobieren Artikel auf diesen Arbeits- und Übersichtseiten anzuzeigen. Momentan werden hier die folgenden Artikel angezeigt: |
| 972 | +* Seiten mit den höchsten/ niedrigsten Bewertungen: Artikel die mindestens zehn Bewertungen während der vergangenen 24 Stunden erhalten haben. Die Durchschnittswerte sind dabei der Mittelwert aller Bewertungen während der vergangenen 24 Stunden. |
| 973 | +* Aktuelle schlechte Bewertungen: Artikel die während der vergangenen 24 Stunden 70 % oder schlechtere Bewertungen (zwei Sterne oder weniger) in jeder der Kategorien erhalten haben. Lediglich Artikel mit wenigstens zehn Bewertungen während der vergangenen 24 Stunden werden dabei einbezogen.", |
878 | 974 | 'articlefeedback-disable-preference' => 'Das Widget zum Einschätzen von Seiten nicht anzeigen', |
879 | 975 | 'articlefeedback-emailcapture-response-body' => 'Hallo! |
880 | 976 | |
— | — | @@ -982,9 +1078,10 @@ |
983 | 1079 | |
984 | 1080 | /** Greek (Ελληνικά) |
985 | 1081 | * @author Glavkos |
| 1082 | + * @author ZaDiak |
986 | 1083 | */ |
987 | 1084 | $messages['el'] = array( |
988 | | - 'articlefeedback' => 'Αξιολόγηση Άρθρου', |
| 1085 | + 'articlefeedback' => 'Ταμπλό ανατροφοδότησης άρθρου', |
989 | 1086 | 'articlefeedback-desc' => 'Αξιολόγηση Άρθρου (πιλοτική έκδοση)', |
990 | 1087 | 'articlefeedback-survey-question-origin' => 'Σε ποιά σελίδα ήσασταν όταν ξεκινήσατε αυτή την έρευνα;', |
991 | 1088 | 'articlefeedback-survey-question-whyrated' => 'Bonvolu informigi nin kial vi taksis ĉi tiun paĝon hodiaŭ (marku ĉion taŭgan):', |
— | — | @@ -1003,7 +1100,7 @@ |
1004 | 1101 | 'articlefeedback-error' => 'Παρουσιάστηκε σφάλμα. Παρακαλώ δοκιμάστε αργότερα.', |
1005 | 1102 | 'articlefeedback-form-switch-label' => 'Βαθμολογήστε αυτή τη σελίδα', |
1006 | 1103 | 'articlefeedback-form-panel-title' => 'Βαθμολογήστε αυτή τη σελίδα', |
1007 | | - 'articlefeedback-form-panel-instructions' => 'Παρακαλώ αφιερώστε λίγο χρόνο για να αξιολογήσετε αυτή τη σελίδα.', |
| 1104 | + 'articlefeedback-form-panel-explanation' => 'Τι είναι αυτό;', |
1008 | 1105 | 'articlefeedback-form-panel-clear' => 'Καταργήστε αυτή την αξιολόγηση', |
1009 | 1106 | 'articlefeedback-form-panel-expertise' => 'Είμαι πολύ καλά πληροφορημένος σχετικά με αυτό το θέμα (προαιρετικό)', |
1010 | 1107 | 'articlefeedback-form-panel-expertise-studies' => 'Έχω ένα αντίστοιχο πτυχίο κολλεγίου/πανεπιστημίου', |
— | — | @@ -1014,6 +1111,7 @@ |
1015 | 1112 | 'articlefeedback-form-panel-helpimprove-privacy' => 'Πολιτική απορρήτου', |
1016 | 1113 | 'articlefeedback-form-panel-helpimprove-privacylink' => 'Project:Πολιτική απορρήτου', |
1017 | 1114 | 'articlefeedback-form-panel-submit' => 'Υποβολή βαθμολογιών', |
| 1115 | + 'articlefeedback-form-panel-pending' => 'Οι βαθμολογήσεις σας δεν έχουν καταχωρηθεί ακόμη', |
1018 | 1116 | 'articlefeedback-form-panel-success' => 'Αποθηκεύτηκαν με επιτυχία', |
1019 | 1117 | 'articlefeedback-form-panel-expiry-message' => 'Παρακαλούμε να επανεκτιμήσετε αυτή τη σελίδα και να υποβάλετε νέες βαθμολογίες.', |
1020 | 1118 | 'articlefeedback-report-switch-label' => 'Δείτε τις βαθμολογήσεις της σελίδας', |
— | — | @@ -1141,15 +1239,15 @@ |
1142 | 1240 | * @author Translationista |
1143 | 1241 | */ |
1144 | 1242 | $messages['es'] = array( |
1145 | | - 'articlefeedback' => 'Evaluación del artículo', |
1146 | | - 'articlefeedback-desc' => 'Evaluación del artículo (versión de pruebas)', |
| 1243 | + 'articlefeedback' => 'Panel de evaluación de artículos', |
| 1244 | + 'articlefeedback-desc' => 'Evaluación del artículo', |
1147 | 1245 | 'articlefeedback-survey-question-origin' => '¿En qué página estabas cuando iniciaste esta encuesta?', |
1148 | 1246 | 'articlefeedback-survey-question-whyrated' => 'Por favor, dinos por qué decidiste valorar esta página (marca todas las opciones que correspondan):', |
1149 | 1247 | 'articlefeedback-survey-answer-whyrated-contribute-rating' => 'Deseo contribuir a la calificación global de la página', |
1150 | | - 'articlefeedback-survey-answer-whyrated-development' => 'Espero que mi calificación afecte de forma positiva el desarrollo de la página', |
| 1248 | + 'articlefeedback-survey-answer-whyrated-development' => 'Espero que mi calificación afecte de forma positiva al desarrollo de la página', |
1151 | 1249 | 'articlefeedback-survey-answer-whyrated-contribute-wiki' => 'Quería contribuir a {{SITENAME}}', |
1152 | | - 'articlefeedback-survey-answer-whyrated-sharing-opinion' => 'Me agrada compartir mi opinión', |
1153 | | - 'articlefeedback-survey-answer-whyrated-didntrate' => 'No evalué ninguna página. Únicamente quise comentar acerca de la funcionalidad.', |
| 1250 | + 'articlefeedback-survey-answer-whyrated-sharing-opinion' => 'Me gusta compartir mi opinión', |
| 1251 | + 'articlefeedback-survey-answer-whyrated-didntrate' => 'No evalué ninguna página hoy, solo quise comentar acerca de la funcionalidad.', |
1154 | 1252 | 'articlefeedback-survey-answer-whyrated-other' => 'Otro', |
1155 | 1253 | 'articlefeedback-survey-question-useful' => '¿Crees que las valoraciones proporcionadas son útiles y claras?', |
1156 | 1254 | 'articlefeedback-survey-question-useful-iffalse' => '¿Por qué?', |
— | — | @@ -1158,10 +1256,11 @@ |
1159 | 1257 | 'articlefeedback-survey-title' => 'Por favor, contesta algunas preguntas', |
1160 | 1258 | 'articlefeedback-survey-thanks' => 'Gracias por completar la encuesta.', |
1161 | 1259 | 'articlefeedback-error' => 'Ha ocurrido un error. Por favor inténtalo de nuevo más tarde.', |
1162 | | - 'articlefeedback-form-switch-label' => 'Evalúa esta página', |
1163 | | - 'articlefeedback-form-panel-title' => 'Evalúa esta página', |
1164 | | - 'articlefeedback-form-panel-instructions' => 'Por favor tómate el tiempo necesario para evaluar esta página.', |
1165 | | - 'articlefeedback-form-panel-clear' => 'Eliminar la evaluación', |
| 1260 | + 'articlefeedback-form-switch-label' => 'Evalúa este artículo', |
| 1261 | + 'articlefeedback-form-panel-title' => 'Evalúa este artículo', |
| 1262 | + 'articlefeedback-form-panel-explanation' => '¿Qué es esto?', |
| 1263 | + 'articlefeedback-form-panel-explanation-link' => 'Project:EvaluaciónArtículo', |
| 1264 | + 'articlefeedback-form-panel-clear' => 'Quitar esta evaluación', |
1166 | 1265 | 'articlefeedback-form-panel-expertise' => 'Estoy muy bien informado sobre este tema (opcional)', |
1167 | 1266 | 'articlefeedback-form-panel-expertise-studies' => 'Tengo un grado universitario relevante', |
1168 | 1267 | 'articlefeedback-form-panel-expertise-profession' => 'Es parte de mi profesión', |
— | — | @@ -1175,26 +1274,26 @@ |
1176 | 1275 | 'articlefeedback-form-panel-pending' => 'Tu valoración aún no ha sido enviada', |
1177 | 1276 | 'articlefeedback-form-panel-success' => 'Guardado correctamente', |
1178 | 1277 | 'articlefeedback-form-panel-expiry-title' => 'Tus calificaciones han caducado', |
1179 | | - 'articlefeedback-form-panel-expiry-message' => 'Por favor, reevalúa esta página y presenta nuevas calificaciones.', |
| 1278 | + 'articlefeedback-form-panel-expiry-message' => 'Por favor, reevalúa esta página y envía calificaciones nuevas.', |
1180 | 1279 | 'articlefeedback-report-switch-label' => 'Ver las calificaciones de la página', |
1181 | 1280 | 'articlefeedback-report-panel-title' => 'Evaluaciones de la página', |
1182 | 1281 | 'articlefeedback-report-panel-description' => 'Promedio actual de calificaciones.', |
1183 | 1282 | 'articlefeedback-report-empty' => 'No hay valoraciones', |
1184 | 1283 | 'articlefeedback-report-ratings' => '$1 valoraciones', |
1185 | 1284 | 'articlefeedback-field-trustworthy-label' => 'Confiable', |
1186 | | - 'articlefeedback-field-trustworthy-tip' => '¿Posee esta página suficientes fuentes y éstas son fuentes de confianza?', |
1187 | | - 'articlefeedback-field-complete-label' => 'Completa', |
1188 | | - 'articlefeedback-field-complete-tip' => '¿Crees que esta página cubre las áreas esenciales del tópico que deberían estar cubiertas?', |
| 1285 | + 'articlefeedback-field-trustworthy-tip' => '¿Este artículo posee suficientes referencias y éstas vienen de fuentes de confianza?', |
| 1286 | + 'articlefeedback-field-complete-label' => 'Completo', |
| 1287 | + 'articlefeedback-field-complete-tip' => '¿Crees que este artículo abarca las áreas esenciales que deberían incluirse sobre el tema?', |
1189 | 1288 | 'articlefeedback-field-objective-label' => 'Objetivo', |
1190 | | - 'articlefeedback-field-objective-tip' => '¿Crees que esta página muestra una representación justa de todas las perspectivas sobre el tema?', |
| 1289 | + 'articlefeedback-field-objective-tip' => '¿Crees que este artículo muestra una representación justa de todas las perspectivas sobre el tema?', |
1191 | 1290 | 'articlefeedback-field-wellwritten-label' => 'Bien escrito', |
1192 | | - 'articlefeedback-field-wellwritten-tip' => '¿Crees que la página está bien organizada y escrita correctamente?', |
| 1291 | + 'articlefeedback-field-wellwritten-tip' => '¿Crees que el artículo está bien organizado y escrito adecuadamente?', |
1193 | 1292 | 'articlefeedback-pitch-reject' => 'Quizá más tarde', |
1194 | 1293 | 'articlefeedback-pitch-or' => 'o', |
1195 | 1294 | 'articlefeedback-pitch-thanks' => '¡Gracias! Se han guardado tus valoraciones.', |
1196 | 1295 | 'articlefeedback-pitch-survey-message' => 'Tómate un momento para completar una breve encuesta.', |
1197 | 1296 | 'articlefeedback-pitch-survey-accept' => 'Iniciar encuesta', |
1198 | | - 'articlefeedback-pitch-join-message' => '¿Quieres crear una cuenta nueva?', |
| 1297 | + 'articlefeedback-pitch-join-message' => '¿Quieres crear una cuenta?', |
1199 | 1298 | 'articlefeedback-pitch-join-body' => 'Una cuenta te ayudará a realizar un seguimiento de tus cambios y te permitirá participar en debates y ser parte de la comunidad.', |
1200 | 1299 | 'articlefeedback-pitch-join-accept' => 'Crear una cuenta', |
1201 | 1300 | 'articlefeedback-pitch-join-login' => 'Iniciar sesión', |
— | — | @@ -1204,14 +1303,17 @@ |
1205 | 1304 | 'articlefeedback-survey-message-error' => 'Ha ocurrido un error. |
1206 | 1305 | Por favor inténtalo de nuevo más tarde.', |
1207 | 1306 | 'articleFeedback-table-caption-dailyhighsandlows' => 'Altibajos de hoy', |
1208 | | - 'articleFeedback-table-caption-dailyhighs' => 'Páginas con las mayores calificaciones: $1', |
1209 | | - 'articleFeedback-table-caption-dailylows' => 'Páginas con las menores calificaciones: $1', |
| 1307 | + 'articleFeedback-table-caption-dailyhighs' => 'Páginas con las calificaciones más altas: $1', |
| 1308 | + 'articleFeedback-table-caption-dailylows' => 'Páginas con las calificaciones más bajas: $1', |
1210 | 1309 | 'articleFeedback-table-caption-weeklymostchanged' => 'Lo más modificado de la semana', |
1211 | 1310 | 'articleFeedback-table-caption-recentlows' => 'Calificaciones bajas recientes', |
1212 | 1311 | 'articleFeedback-table-heading-page' => 'Página', |
1213 | 1312 | 'articleFeedback-table-heading-average' => 'Promedio', |
1214 | | - 'articleFeedback-copy-above-highlow-tables' => 'Esta es una característica experimental. Si deseas, puedes comentar en la [$1 página de discusión].', |
1215 | | - 'articleFeedback-copy-below-highlow-tables' => 'Estas tablas contienen las páginas que han recibido al menos 10 valoraciones en las últimas 24 horas. Los promedios se calculan tomando la media de todas las valoraciones enviadas en las últimas 24 horas.', |
| 1313 | + 'articleFeedback-copy-above-highlow-tables' => 'Esta es una característica experimental. Por favor, proporciona tus comentarios en su [$1 página de discusión].', |
| 1314 | + 'articlefeedback-dashboard-bottom' => "'''Nota''': Continuaremos experimentando con diferentes formas de presentar los artículos en estos paneles. Ahora, los paneles incluyen los siguientes artículos: |
| 1315 | +* Las páginas con las calificaciones más altas y más bajas: artpiculos que han recibido al menos diez calificaciones en las últimas 24 horas. Se calculan promedios tomando en cuenta las calificaciones enviadas en las últimas 24 horas. |
| 1316 | +* Calificaciones bajas recientes: artículos que obtuvieron el 70% o más de calificaciones bajas (2 estrellas o menos) en cualquier categoría en las últimas 24 horas. Solamente se incluyen aquellos artículos que hayan recibido al menos diez calificaciones en las últimas 24 horas.", |
| 1317 | + 'articlefeedback-disable-preference' => "No mostrar el ''widget'' de comentarios de artículos en las páginas", |
1216 | 1318 | 'articlefeedback-emailcapture-response-body' => '¡Hola! |
1217 | 1319 | |
1218 | 1320 | Te agradecemos el interés por ayudar a mejorar {{SITENAME}}. |
— | — | @@ -1495,7 +1597,9 @@ |
1496 | 1598 | 'articleFeedback-table-heading-page' => 'Page', |
1497 | 1599 | 'articleFeedback-table-heading-average' => 'Moyenne', |
1498 | 1600 | 'articleFeedback-copy-above-highlow-tables' => "Il s'agit d'une fonctionnalité expérimentale. Veuillez fournir des commentaires sur la [$1 page de discussion].", |
1499 | | - 'articleFeedback-copy-below-highlow-tables' => 'Ces tableaux contiennent des pages qui ont reçu au moins 10 votes au cours des 24 dernières heures. Les moyennes sont calculées en prenant la moyenne de toutes les notes présentées au cours des 24 dernières heures.', |
| 1601 | + 'articlefeedback-dashboard-bottom' => "'''Note''' : Nous allons continuer à expérimenter différentes façons de représenter les articles dans ces tableaux de bord. Ceux-ci contiennent les articles suivants : |
| 1602 | +* pages qui ont les taux les plus faibles ou plus élevés : ce sont les articles qui ont reçu au moins 10 évaluations dans les dernières 24 heures. Les moyennes sont obtenues en calculant la moyenne de toutes les évaluations des dernières 24 heures. |
| 1603 | +* bas récents : articles qui ont reçu deux étoiles ou moins, 70 % du temps ou plus, peu importe la catégorie dans les dernières 24 heures. Cela s'applique seulement aux articles qui ont reçu au moins 10 évaluations dans les dernières 24 heures.", |
1500 | 1604 | 'articlefeedback-disable-preference' => 'Ne pas afficher le widget Évaluation d’article sur les pages', |
1501 | 1605 | 'articlefeedback-emailcapture-response-body' => "Bonjour ! |
1502 | 1606 | |
— | — | @@ -1655,7 +1759,10 @@ |
1656 | 1760 | 'articleFeedback-table-heading-page' => 'Páxina', |
1657 | 1761 | 'articleFeedback-table-heading-average' => 'Media', |
1658 | 1762 | 'articleFeedback-copy-above-highlow-tables' => 'Esta é unha característica experimental. Deixe os seus comentarios na [$1 páxina de conversa].', |
1659 | | - 'articleFeedback-copy-below-highlow-tables' => 'Estas táboas conteñen as páxinas que recibiron, polo menos, 10 votos nas últimas 24 horas. As medias calcúlanse facendo a media de todas as valoracións enviadas nas últimas 24 horas.', |
| 1763 | + 'articlefeedback-dashboard-bottom' => "'''Nota:''' Continuaremos experimentando diferentes xeitos de seleccionar artigos neste taboleiro. Polo de agora, os taboleiros inclúen os seguintes artigos: |
| 1764 | +* Páxinas coas mellores/peores valoracións: artigos que recibiron, polo menos, 10 avaliacións nas últimas 24 horas. As medias calcúlanse tomando a media de todas as valoracións enviadas nas últimas 24 horas. |
| 1765 | +* Os baixos máis recentes: artigos que tiveron un 70% ou menos (2 estrelas ou menos) das valoracións en calquera categoría nas últimas 24 horas. Soamente se inclúen os artigos que recibiron, polo menos, 10 avaliacións nas últimas 24 horas.", |
| 1766 | + 'articlefeedback-disable-preference' => 'Non mostrar o widget de avaliación de artigos nas páxinas', |
1660 | 1767 | 'articlefeedback-emailcapture-response-body' => 'Ola! |
1661 | 1768 | |
1662 | 1769 | Grazas por expresar interese en axudar a mellorar {{SITENAME}}. |
— | — | @@ -1819,7 +1926,10 @@ |
1820 | 1927 | 'articleFeedback-table-heading-page' => 'דף', |
1821 | 1928 | 'articleFeedback-table-heading-average' => 'ממוצע', |
1822 | 1929 | 'articleFeedback-copy-above-highlow-tables' => 'זוהי תכונה ניסיונית. נשמח לקבל משוב ב[$1 דף השיחה].', |
1823 | | - 'articleFeedback-copy-below-highlow-tables' => 'הטבלאות האלו מכילות דפים שקיהלו לפחות 10 דירוגים ב־24 השעות האחרונות. הממוצעים מחושבים על סמך ממוצעים של כל הדירוגים שנשלחו ב־24 השעות האחרונות.', |
| 1930 | + 'articlefeedback-dashboard-bottom' => "'''שימו לב''': אנחנו נמשיך לערוך ניסויים עם דרכים שונות להציף ערכים בלוחות הבקרה האלה. כעת לוחות הברה כוללים את הערכים הבאים: |
| 1931 | +* דפים עם דירוגים גבוהים ביותר או נמוכים ביותר: ערכים שקיבלו לפחות 10 דירוגים ב־24 השעות האחרונות. הממוצעים מחושבים לפי ממוצע על הדירוגים ב־24 השעות האחרונות. |
| 1932 | +* נמוכים אחרונים: ערכים שקיבלו דירוג של 70% נמוך (2 כוכבים או פחות) בקטגוריה כלשהי ב־24 השעות האחרונות. רק ערכים שקיבלו לפחות 10 דירוגים ב־24 השעות האחרונות כלולים.", |
| 1933 | + 'articlefeedback-disable-preference' => 'לא להציג את כלי דירוג הערכים בדפים', |
1824 | 1934 | 'articlefeedback-emailcapture-response-body' => 'שלום! |
1825 | 1935 | |
1826 | 1936 | תודה שהבעתם עניין בסיוע לשיפור אתר {{SITENAME}}. |
— | — | @@ -2020,7 +2130,7 @@ |
2021 | 2131 | 'articlefeedback-form-switch-label' => 'Evalutar iste pagina', |
2022 | 2132 | 'articlefeedback-form-panel-title' => 'Evalutar iste pagina', |
2023 | 2133 | 'articlefeedback-form-panel-explanation' => 'Que es isto?', |
2024 | | - 'articlefeedback-form-panel-explanation-link' => 'Project:CommentarArticulos', |
| 2134 | + 'articlefeedback-form-panel-explanation-link' => 'Project:Commentar articulos', |
2025 | 2135 | 'articlefeedback-form-panel-clear' => 'Remover iste evalutation', |
2026 | 2136 | 'articlefeedback-form-panel-expertise' => 'Io es multo ben informate super iste thema (optional)', |
2027 | 2137 | 'articlefeedback-form-panel-expertise-studies' => 'Io ha un grado relevante de collegio/universitate', |
— | — | @@ -2071,7 +2181,10 @@ |
2072 | 2182 | 'articleFeedback-table-heading-page' => 'Pagina', |
2073 | 2183 | 'articleFeedback-table-heading-average' => 'Medie', |
2074 | 2184 | 'articleFeedback-copy-above-highlow-tables' => 'Iste function es experimental. Per favor lassa tu opinion in le [$1 pagina de discussion].', |
2075 | | - 'articleFeedback-copy-below-highlow-tables' => 'Iste tabellas contine paginas que ha recipite al minus 10 evalutationes durante le ultime 24 horas. Le medias es calculate per prender le media de tote le evalutationes submittite durante le ultime 24 horas.', |
| 2185 | + 'articlefeedback-dashboard-bottom' => "'''Nota''': Nos continua a experimentar con differente modos de mitter articulos in evidentia in iste pannellos. A presente, le pannellos include le sequente articulos: |
| 2186 | +* Paginas con le evalutationes le plus alte/basse: articulos que ha recipite al minus 10 evalutationes durante le ultime 24 horas. Le media es calculate usante tote le evalutationes submittite durante le ultime 24 horas. |
| 2187 | +* Bassos recente: articulos que recipeva 70% o plus de evalutationes basse (2 stellas o minus) in qualcunque categoria durante le ultime 24 horas. Solmente le articulos que ha recipite al minus 10 evalutationes durante le ultime 24 horas es includite.", |
| 2188 | + 'articlefeedback-disable-preference' => 'Non monstrar le widget de evalutation de articulos in paginas', |
2076 | 2189 | 'articlefeedback-emailcapture-response-body' => 'Salute! |
2077 | 2190 | |
2078 | 2191 | Gratias pro tu interesse in adjutar a meliorar {{SITENAME}}. |
— | — | @@ -2370,13 +2483,13 @@ |
2371 | 2484 | 'articlefeedback-error' => 'წარმოიშვა რაღაც შეცდომა. გთხოვთ სცადეთ მოგვიანებით.', |
2372 | 2485 | 'articlefeedback-form-switch-label' => 'ამ გვერდის შეფასება', |
2373 | 2486 | 'articlefeedback-form-panel-title' => 'ამ გვერდის შეფასება', |
2374 | | - 'articlefeedback-form-panel-instructions' => 'გთხოვთ, გამონახეთ დრო ამ გვერდის შეფასებისათვის.', |
2375 | 2487 | 'articlefeedback-form-panel-clear' => 'შეფასება წაიშალა', |
2376 | 2488 | 'articlefeedback-form-panel-expertise' => 'მე მაქვს წინასწარი ცოდნა ამ თემის შესახებ (არასავალდებულო)', |
2377 | 2489 | 'articlefeedback-form-panel-expertise-studies' => 'მე ეს უმაღლეს სასწავლებელში ვისწავლე', |
2378 | 2490 | 'articlefeedback-form-panel-expertise-profession' => 'ეს ჩემი პროფესიის ნაწილია', |
2379 | 2491 | 'articlefeedback-form-panel-expertise-hobby' => 'ეს ჩემს ჰობისა და ინტერესებს მოიცავს', |
2380 | 2492 | 'articlefeedback-form-panel-expertise-other' => 'ჩემი ცოდნის წყარო აქ მოცემული არაა', |
| 2493 | + 'articlefeedback-form-panel-helpimprove-privacy' => 'ანონიმურობის პოლიტიკა', |
2381 | 2494 | 'articlefeedback-form-panel-submit' => 'დაეთანხმე შეფასებას', |
2382 | 2495 | 'articlefeedback-form-panel-success' => 'შენახულია წარმატებით', |
2383 | 2496 | 'articlefeedback-report-switch-label' => 'გვერდის შეფასებების ხილვა', |
— | — | @@ -2408,11 +2521,14 @@ |
2409 | 2522 | ); |
2410 | 2523 | |
2411 | 2524 | /** Korean (한국어) |
| 2525 | + * @author Klutzy |
2412 | 2526 | * @author Kwj2772 |
| 2527 | + * @author Ricolyuki |
2413 | 2528 | */ |
2414 | 2529 | $messages['ko'] = array( |
2415 | | - 'articlefeedback' => '문서 평가', |
| 2530 | + 'articlefeedback' => '문서 평가 현황', |
2416 | 2531 | 'articlefeedback-desc' => '문서 평가 (파일럿 버전)', |
| 2532 | + 'articlefeedback-survey-question-origin' => '이 설문 조사를 시작할 때에 어느 문서를 보고 있었나요?', |
2417 | 2533 | 'articlefeedback-survey-question-whyrated' => '오늘 이 문서를 왜 평가했는지 알려주십시오 (해당되는 모든 항목에 체크해주세요):', |
2418 | 2534 | 'articlefeedback-survey-answer-whyrated-contribute-rating' => '이 문서에 대한 전체적인 평가에 기여하고 싶어서', |
2419 | 2535 | 'articlefeedback-survey-answer-whyrated-development' => '내가 한 평가가 문서 발전에 긍정적인 영향을 줄 수 있다고 생각해서', |
— | — | @@ -2426,6 +2542,62 @@ |
2427 | 2543 | 'articlefeedback-survey-submit' => '제출', |
2428 | 2544 | 'articlefeedback-survey-title' => '몇 가지 질문에 답해 주시기 바랍니다.', |
2429 | 2545 | 'articlefeedback-survey-thanks' => '설문에 응해 주셔서 감사합니다.', |
| 2546 | + 'articlefeedback-error' => '오류가 발생했습니다. 나중에 다시 시도해주세요.', |
| 2547 | + 'articlefeedback-form-switch-label' => '문서 평가하기', |
| 2548 | + 'articlefeedback-form-panel-title' => '문서 평가하기', |
| 2549 | + 'articlefeedback-form-panel-explanation' => '어떤 기능인가요?', |
| 2550 | + 'articlefeedback-form-panel-explanation-link' => 'Project:문서 평가', |
| 2551 | + 'articlefeedback-form-panel-clear' => '평가 제거하기', |
| 2552 | + 'articlefeedback-form-panel-expertise' => '이 문서에 대해 전문적인 지식이 있습니다(선택사항)', |
| 2553 | + 'articlefeedback-form-panel-expertise-studies' => '관련 대학 학위를 가지고 있습니다', |
| 2554 | + 'articlefeedback-form-panel-expertise-profession' => '직업과 관련되어 있습니다', |
| 2555 | + 'articlefeedback-form-panel-expertise-hobby' => '개인적으로 큰 관심이 있습니다', |
| 2556 | + 'articlefeedback-form-panel-expertise-other' => '기타', |
| 2557 | + 'articlefeedback-form-panel-helpimprove' => '위키백과 개선을 위한 이메일을 받습니다(선택사항)', |
| 2558 | + 'articlefeedback-form-panel-helpimprove-note' => '확인 메일을 보냈습니다. 이 메일 주소는 어디에도 공개되지 않습니다. $1', |
| 2559 | + 'articlefeedback-form-panel-helpimprove-privacy' => '개인정보 정책', |
| 2560 | + 'articlefeedback-form-panel-helpimprove-privacylink' => 'Project:개인정보 정책', |
| 2561 | + 'articlefeedback-form-panel-submit' => '평가 제출', |
| 2562 | + 'articlefeedback-form-panel-pending' => '평가를 제출하지 않았습니다', |
| 2563 | + 'articlefeedback-form-panel-success' => '저장 완료', |
| 2564 | + 'articlefeedback-form-panel-expiry-title' => '평가 유효 기간이 지났습니다', |
| 2565 | + 'articlefeedback-form-panel-expiry-message' => '문서를 다시 평가한 다음 제출해주세요.', |
| 2566 | + 'articlefeedback-report-switch-label' => '문서 평가 보기', |
| 2567 | + 'articlefeedback-report-panel-title' => '문서 평가', |
| 2568 | + 'articlefeedback-report-panel-description' => '평가 평균값입니다.', |
| 2569 | + 'articlefeedback-report-empty' => '평가 없음', |
| 2570 | + 'articlefeedback-report-ratings' => '평가 $1개', |
| 2571 | + 'articlefeedback-field-trustworthy-label' => '신뢰성', |
| 2572 | + 'articlefeedback-field-trustworthy-tip' => '이 문서를 뒷받침하는 충분한 출처가 있고, 그 출처가 믿을 수 있다고 생각하시나요?', |
| 2573 | + 'articlefeedback-field-complete-label' => '완전성', |
| 2574 | + 'articlefeedback-field-complete-tip' => '이 문서에서 다루어야 하는 내용을 충분히 담고 있다고 생각하시나요?', |
| 2575 | + 'articlefeedback-field-objective-label' => '객관성', |
| 2576 | + 'articlefeedback-field-objective-tip' => '이 문서는 여러 관점을 공정하게 다루고 있다고 생각하시나요?', |
| 2577 | + 'articlefeedback-field-wellwritten-label' => '가독성', |
| 2578 | + 'articlefeedback-field-wellwritten-tip' => '이 문서가 짜임새있게 잘 구성되어있다고 생각하시나요?', |
| 2579 | + 'articlefeedback-pitch-reject' => '나중에 평가하기', |
| 2580 | + 'articlefeedback-pitch-or' => '또는', |
| 2581 | + 'articlefeedback-pitch-thanks' => '감사합니다! 평가가 저장되었습니다.', |
| 2582 | + 'articlefeedback-pitch-survey-message' => '간단한 설문조사에 참여해주세요.', |
| 2583 | + 'articlefeedback-pitch-survey-accept' => '설문조사 시작', |
| 2584 | + 'articlefeedback-pitch-join-message' => '계정을 만들고 싶으신가요?', |
| 2585 | + 'articlefeedback-pitch-join-body' => '계정을 만들면 편집 내역을 확인하고 토론에 참여하거나, 커뮤니티의 일원으로 활동하기 쉬워집니다.', |
| 2586 | + 'articlefeedback-pitch-join-accept' => '계정 만들기', |
| 2587 | + 'articlefeedback-pitch-join-login' => '로그인', |
| 2588 | + 'articlefeedback-pitch-edit-message' => '이 문서를 직접 편집할 수 있다는 사실을 알고 계셨나요?', |
| 2589 | + 'articlefeedback-pitch-edit-accept' => '이 문서 편집하기', |
| 2590 | + 'articlefeedback-survey-message-success' => '설문을 작성해 주셔서 감사합니다.', |
| 2591 | + 'articlefeedback-survey-message-error' => '오류가 발생했습니다. |
| 2592 | +잠시 후 다시 시도해주세요.', |
| 2593 | + 'articleFeedback-table-caption-dailyhighsandlows' => '오늘의 최고값과 최저값', |
| 2594 | + 'articleFeedback-table-caption-dailyhighs' => '가장 높은 평가를 받은 문서: $1', |
| 2595 | + 'articleFeedback-table-caption-dailylows' => '가장 낮은 평가를 받은 문서: $1', |
| 2596 | + 'articleFeedback-table-caption-weeklymostchanged' => '이번 주에 가장 많이 바뀐 문서', |
| 2597 | + 'articleFeedback-table-caption-recentlows' => '최근의 평점 낮은 문서', |
| 2598 | + 'articleFeedback-table-heading-page' => '문서', |
| 2599 | + 'articleFeedback-table-heading-average' => '평균', |
| 2600 | + 'articleFeedback-copy-above-highlow-tables' => '실험적인 기능입니다. 기능에 대한 의견을 [$1 토론란]에 남겨 주세요.', |
| 2601 | + 'articlefeedback-disable-preference' => '문서에 평가 도구 표시하지 않기', |
2430 | 2602 | ); |
2431 | 2603 | |
2432 | 2604 | /** Colognian (Ripoarisch) |
— | — | @@ -2583,6 +2755,7 @@ |
2584 | 2756 | 'articleFeedback-table-caption-weeklymostchanged' => 'Déi gréisst Ännerungen an dëser Woch', |
2585 | 2757 | 'articleFeedback-table-heading-page' => 'Säit', |
2586 | 2758 | 'articleFeedback-table-heading-average' => 'Duerchschnëtt', |
| 2759 | + 'articleFeedback-copy-above-highlow-tables' => 'Dëst ass eng experimentell Fonctioun. Gitt eis w.e.g. Äre Feedback op der [$1 Diskussiouns-Säit].', |
2587 | 2760 | ); |
2588 | 2761 | |
2589 | 2762 | /** Limburgish (Limburgs) |
— | — | @@ -2610,7 +2783,7 @@ |
2611 | 2784 | 'articlefeedback-error' => 'Įvyko klaida. Bandykite dar kartą vėliau.', |
2612 | 2785 | 'articlefeedback-form-switch-label' => 'Įvertinti šį puslapį', |
2613 | 2786 | 'articlefeedback-form-panel-title' => 'Įvertinti šį puslapį', |
2614 | | - 'articlefeedback-form-panel-instructions' => 'Skirkite laiko kad įvertintumėt šį puslapį.', |
| 2787 | + 'articlefeedback-form-panel-explanation' => 'Kas tai?', |
2615 | 2788 | 'articlefeedback-form-panel-clear' => 'Pašalinti šį įvertinimą', |
2616 | 2789 | 'articlefeedback-form-panel-expertise' => 'Aš labai gerai nusimanau apie šią temą (neprivaloma)', |
2617 | 2790 | 'articlefeedback-form-panel-expertise-studies' => 'Turiu atitinkamą kolegijos / universiteto diplomą', |
— | — | @@ -2624,6 +2797,9 @@ |
2625 | 2798 | 'articlefeedback-form-panel-submit' => 'Pateikti įvertinimus', |
2626 | 2799 | 'articlefeedback-form-panel-pending' => 'Jūsų įvertinimai nebuvo pateikti', |
2627 | 2800 | 'articlefeedback-form-panel-success' => 'Išsaugota sėkmingai', |
| 2801 | + 'articlefeedback-form-panel-expiry-title' => 'Jūsų įvertinimai baigėsi', |
| 2802 | + 'articlefeedback-report-switch-label' => 'Peržiūrėti puslapio reitinus', |
| 2803 | + 'articlefeedback-report-panel-title' => 'Puslapio reitingai', |
2628 | 2804 | 'articlefeedback-report-empty' => 'Nėra vertinimų', |
2629 | 2805 | 'articlefeedback-report-ratings' => '$1 vertinimas', |
2630 | 2806 | 'articlefeedback-field-complete-label' => 'Užbaigti', |
— | — | @@ -2642,6 +2818,8 @@ |
2643 | 2819 | Pabandykite vėliau.', |
2644 | 2820 | 'articleFeedback-table-caption-dailyhighs' => 'Straipsniai su aukščiausiais įvertinimais: $1', |
2645 | 2821 | 'articleFeedback-table-caption-dailylows' => 'Straipsniai su žemiausiais įvertinimais: $1', |
| 2822 | + 'articleFeedback-table-heading-page' => 'Puslapis', |
| 2823 | + 'articleFeedback-table-heading-average' => 'Vidurkis', |
2646 | 2824 | ); |
2647 | 2825 | |
2648 | 2826 | /** Latvian (Latviešu) |
— | — | @@ -2778,7 +2956,7 @@ |
2779 | 2957 | 'articlefeedback-pitch-survey-accept' => 'Почни', |
2780 | 2958 | 'articlefeedback-pitch-join-message' => 'Дали сакате да создадете сметка?', |
2781 | 2959 | 'articlefeedback-pitch-join-body' => 'Ако имате сметка ќе можете да ги следите вашите уредувања, да се вклучувате во дискусии и да бидете дел од заедницата', |
2782 | | - 'articlefeedback-pitch-join-accept' => 'Создај сметка', |
| 2960 | + 'articlefeedback-pitch-join-accept' => 'Направи сметка', |
2783 | 2961 | 'articlefeedback-pitch-join-login' => 'Најавете се', |
2784 | 2962 | 'articlefeedback-pitch-edit-message' => 'Дали знаете дека можете да ја уредите страницава?', |
2785 | 2963 | 'articlefeedback-pitch-edit-accept' => 'Уреди ја страницава', |
— | — | @@ -2793,7 +2971,9 @@ |
2794 | 2972 | 'articleFeedback-table-heading-page' => 'Страница', |
2795 | 2973 | 'articleFeedback-table-heading-average' => 'Просечно', |
2796 | 2974 | 'articleFeedback-copy-above-highlow-tables' => 'Ова е експериментална функција. Искажете го вашето мислење на [$1 страницатата за разговор].', |
2797 | | - 'articleFeedback-copy-below-highlow-tables' => 'Овие табели содржат статии што добиле барем 10 оценки во последниве 24 часа. Просекот се пресметува земајќи ја средната вредност на сите оцеки поднесени во текот на последните 24 часа.', |
| 2975 | + 'articlefeedback-dashboard-bottom' => "'''Напомена''': Ќе продолжиме да експериментираме со различни начини на истакнување на статии во овие контролни табли. Моментално таблите ги истакнуваат следниве статии: |
| 2976 | +* Страници со највисоки/најниски оценки: статии што добиле барем 10 оценки во текот на последните 24 часа. Просекот се пресметува со наоѓање на средината на сите оценки дадени во последните 24 часа. |
| 2977 | +* Неодамна нискооценети: статии со 70% или повеќе ниски оценки (2 ѕвезди и помалку) во било која категорија во последните 24 часа. Се бројат само статии со барем 10 оценки добиени во последните 24 часа.", |
2798 | 2978 | 'articlefeedback-disable-preference' => 'Не го прикажувај прилогот „Оценување на статии“ во страниците', |
2799 | 2979 | 'articlefeedback-emailcapture-response-body' => 'Здраво! |
2800 | 2980 | |
— | — | @@ -2933,9 +3113,101 @@ |
2934 | 3114 | $messages['ms'] = array( |
2935 | 3115 | 'articlefeedback' => 'Papan pemuka maklum balas rencana', |
2936 | 3116 | 'articlefeedback-desc' => 'Pentaksiran rencana (versi percubaan)', |
| 3117 | + 'articlefeedback-survey-question-origin' => 'Di laman yang manakah anda berada ketika anda memulakan pantauan ini?', |
| 3118 | + 'articlefeedback-survey-question-whyrated' => 'Sila maklumkan kami sebab anda menilai laman ini hari ini (tandai semua yang berkenaan):', |
| 3119 | + 'articlefeedback-survey-answer-whyrated-contribute-rating' => 'Saya ingin menyumbang kepada penilaian keseluruhan laman ini', |
| 3120 | + 'articlefeedback-survey-answer-whyrated-development' => 'Saya berharap agar penilaian saya akan memperbaiki perkembangan dalam laman', |
| 3121 | + 'articlefeedback-survey-answer-whyrated-contribute-wiki' => 'Saya ingin menyumbang kepada {{SITENAME}}', |
| 3122 | + 'articlefeedback-survey-answer-whyrated-sharing-opinion' => 'Saya ingin berkongsi pendapat', |
| 3123 | + 'articlefeedback-survey-answer-whyrated-didntrate' => 'Saya tidak menyumbangkan apa-apa penilaian hari ini, tetapi hendak memberi maklum bakas kepada ciri ini', |
2937 | 3124 | 'articlefeedback-survey-answer-whyrated-other' => 'Lain', |
| 3125 | + 'articlefeedback-survey-question-useful' => 'Adakah anda setuju bahawa penilaian yang diberikan ini adalah berguna dan mudah difahami?', |
2938 | 3126 | 'articlefeedback-survey-question-useful-iffalse' => 'Мезекс?', |
| 3127 | + 'articlefeedback-survey-question-comments' => 'Adakah anda mempunyai sebarang komen tambahan?', |
2939 | 3128 | 'articlefeedback-survey-submit' => 'Serahkan', |
| 3129 | + 'articlefeedback-survey-title' => 'Sila jawab beberapa soalan', |
| 3130 | + 'articlefeedback-survey-thanks' => 'Terima kasih kerana membalas tinjauan kami.', |
| 3131 | + 'articlefeedback-error' => 'Berlakunya ralat. Sila cuba lagi kemudian.', |
| 3132 | + 'articlefeedback-form-switch-label' => 'Nilai laman ini', |
| 3133 | + 'articlefeedback-form-panel-title' => 'Nilai laman ini', |
| 3134 | + 'articlefeedback-form-panel-explanation' => 'Apakah ini?', |
| 3135 | + 'articlefeedback-form-panel-explanation-link' => 'Project:MaklumBalasRencana', |
| 3136 | + 'articlefeedback-form-panel-clear' => 'Tarik balik markah ini', |
| 3137 | + 'articlefeedback-form-panel-expertise' => 'Saya berpengetahuan tinggi tentang topik ini (pilihan)', |
| 3138 | + 'articlefeedback-form-panel-expertise-studies' => 'Saya memegang ijazah kolej/maktab/universiti yang berkenaan', |
| 3139 | + 'articlefeedback-form-panel-expertise-profession' => 'Kerjaya saya menyentuh tentang topik ini', |
| 3140 | + 'articlefeedback-form-panel-expertise-hobby' => 'Saya amat berminat dengan topik ini secara peribadi', |
| 3141 | + 'articlefeedback-form-panel-expertise-other' => 'Sumber pengetahuan saya tidak tersenarai di sini', |
| 3142 | + 'articlefeedback-form-panel-helpimprove' => 'Saya ingin membantu mempertingkat Wikipedia, hantarkan saya e-mel (pilihan)', |
| 3143 | + 'articlefeedback-form-panel-helpimprove-note' => 'Kami akan menghantar e-mel pengesahan kepada anda. Kami tidak akan berkongsi alamat anda dengan sesiapa. $1', |
| 3144 | + 'articlefeedback-form-panel-helpimprove-privacy' => 'Dasar privasi', |
| 3145 | + 'articlefeedback-form-panel-helpimprove-privacylink' => 'Project:Dasar privasi', |
| 3146 | + 'articlefeedback-form-panel-submit' => 'Serahkan penilaian', |
| 3147 | + 'articlefeedback-form-panel-pending' => 'Penilaian anda belum diserahkan', |
| 3148 | + 'articlefeedback-form-panel-success' => 'Berjaya disimpan', |
| 3149 | + 'articlefeedback-form-panel-expiry-title' => 'Penilaian anda telah luput', |
| 3150 | + 'articlefeedback-form-panel-expiry-message' => 'Sila nilai semula laman ini dan serahkan penilaian baru.', |
| 3151 | + 'articlefeedback-report-switch-label' => 'Lihat penilaian laman', |
| 3152 | + 'articlefeedback-report-panel-title' => 'Penilaian laman', |
| 3153 | + 'articlefeedback-report-panel-description' => 'Purata penilaian semasa.', |
| 3154 | + 'articlefeedback-report-empty' => 'Tiada penilaian', |
| 3155 | + 'articlefeedback-report-ratings' => '$1 penilaian', |
| 3156 | + 'articlefeedback-field-trustworthy-label' => 'Boleh dipercayai', |
| 3157 | + 'articlefeedback-field-trustworthy-tip' => 'Adakah anda berpendapat bahawa laman ini mempunyai petikan yang mencukupi, dan petikan-petikan itu datang dari sumber-sumber yang boleh dipercayai?', |
| 3158 | + 'articlefeedback-field-complete-label' => 'Lengkap', |
| 3159 | + 'articlefeedback-field-complete-tip' => 'Adakah anda berpendapat bahawa laman ini merangkumi bahan-bahan topik terpenting yang sewajarnya?', |
| 3160 | + 'articlefeedback-field-objective-label' => 'Objektif', |
| 3161 | + 'articlefeedback-field-objective-tip' => 'Adakah anda berpendapat bahawa laman ini menunjukkan pernyataan yang adil daripada semua sudut pandangan tentang isu ini?', |
| 3162 | + 'articlefeedback-field-wellwritten-label' => 'Kemas', |
| 3163 | + 'articlefeedback-field-wellwritten-tip' => 'Adakah anda berpendapat bahawa laman ini disusun dan ditulis dengan kemas?', |
| 3164 | + 'articlefeedback-pitch-reject' => 'Lain kalilah', |
| 3165 | + 'articlefeedback-pitch-or' => 'atau', |
| 3166 | + 'articlefeedback-pitch-thanks' => 'Terima kasih! Penilaian anda telah disimpan.', |
| 3167 | + 'articlefeedback-pitch-survey-message' => 'Sila mengambil sedikit masa untuk melengkapkan tinjauan yang ringkas ini.', |
| 3168 | + 'articlefeedback-pitch-survey-accept' => 'Mulakan tinjauan', |
| 3169 | + 'articlefeedback-pitch-join-message' => 'Adakah anda ingin membuka akaun?', |
| 3170 | + 'articlefeedback-pitch-join-body' => 'Akaun akan membantu anda menjejaki suntingan anda, melibatkan diri dalam perbincangan, dan menyertai komuniti.', |
| 3171 | + 'articlefeedback-pitch-join-accept' => 'Buka akaun', |
| 3172 | + 'articlefeedback-pitch-join-login' => 'Log masuk', |
| 3173 | + 'articlefeedback-pitch-edit-message' => 'Tahukah anda bahawa anda boleh menyunting laman ini?', |
| 3174 | + 'articlefeedback-pitch-edit-accept' => 'Sunting laman ini', |
| 3175 | + 'articlefeedback-survey-message-success' => 'Terima kasih kerana membalas tinjauan kami.', |
| 3176 | + 'articlefeedback-survey-message-error' => 'Berlakunya ralat. |
| 3177 | + Sila cuba lagi kemudian.', |
| 3178 | + 'articleFeedback-table-caption-dailyhighsandlows' => 'Penilaian tertinggi dan terendah hari ini', |
| 3179 | + 'articleFeedback-table-caption-dailyhighs' => 'Laman yang tertinggi penilaiannya: $1', |
| 3180 | + 'articleFeedback-table-caption-dailylows' => 'Laman yang terendah penilaiannya: $1', |
| 3181 | + 'articleFeedback-table-caption-weeklymostchanged' => 'Laman yang paling banyak berubah minggu ini', |
| 3182 | + 'articleFeedback-table-caption-recentlows' => 'Penilaian terendah terkini', |
| 3183 | + 'articleFeedback-table-heading-page' => 'Laman', |
| 3184 | + 'articleFeedback-table-heading-average' => 'Purata', |
| 3185 | + 'articleFeedback-copy-above-highlow-tables' => 'Ciri ini sedang diuji kaji. Sila berikan maklum balas di [$1 laman perbincangan].', |
| 3186 | + 'articlefeedback-dashboard-bottom' => "'''Perhatian''': Kami akan terus menguji kaji cara-cara lain untuk menimbulkan rencana di papan pemuka ini. Ketika ini, papan pemuka merangkumi rencana-rencana berikut: |
| 3187 | +* Laman yang tertinggi/terendah penilaiannya: rencana yang menerima sekurang-kurangnya 10 penilaian dalam masa 24 jam yang lalu. Puratanya dihitung dengan mengambil min semua penilaian yang diterima dalam masa 24 jam yang lalu. |
| 3188 | +* Penilaian terendah terkini: rencana yang menerima 70% atau lebih penilaian rendah (2 bintang ke bawah) dalam mana-mana kategori dalam masa 24 jam yang lalu; hanya mengambil kira rencana yang menerima sekurang-kurangnya 10 penilaian dalam masa 24 jam yang lalu.", |
| 3189 | + 'articlefeedback-disable-preference' => 'Jangan tunjukkan widget Maklum balas rencana pada laman', |
| 3190 | + 'articlefeedback-emailcapture-response-body' => 'Selamat sejahtera! |
| 3191 | + |
| 3192 | +Terima kasih kerana menunjukkan minat untuk membantu mempertingkatkan {{SITENAME}}. |
| 3193 | + |
| 3194 | +Sila luangkan sedikit masa untuk mengesahkan e-mel anda dengan mengklik pautan berikut: |
| 3195 | + |
| 3196 | +$1 |
| 3197 | + |
| 3198 | +Anda juga boleh melawati: |
| 3199 | + |
| 3200 | +$2 |
| 3201 | + |
| 3202 | +Dan isikan kod pengesahan yang berikut: |
| 3203 | + |
| 3204 | +$3 |
| 3205 | + |
| 3206 | +Kami akan menghubungi anda sebentar lagi dengan cara-cara untuk anda mempertingkat mutu {{SITENAME}}. |
| 3207 | + |
| 3208 | +Jika bukan anda yang membuat permohonan ini, sila abaikan e-mel ini dan kami tidak akan menghantar apa-apa lagi kepada anda. |
| 3209 | + |
| 3210 | +Sekian, terima kasih, |
| 3211 | +Pasukan {{SITENAME}}', |
2940 | 3212 | ); |
2941 | 3213 | |
2942 | 3214 | /** Erzya (Эрзянь) |
— | — | @@ -2986,6 +3258,7 @@ |
2987 | 3259 | * @author McDutchie |
2988 | 3260 | * @author SPQRobin |
2989 | 3261 | * @author Siebrand |
| 3262 | + * @author Tjcool007 |
2990 | 3263 | */ |
2991 | 3264 | $messages['nl'] = array( |
2992 | 3265 | 'articlefeedback' => 'Dashboard voor paginawaardering', |
— | — | @@ -3061,7 +3334,7 @@ |
3062 | 3335 | 'articleFeedback-table-heading-page' => 'Pagina', |
3063 | 3336 | 'articleFeedback-table-heading-average' => 'Gemiddelde', |
3064 | 3337 | 'articleFeedback-copy-above-highlow-tables' => 'Dit is experimentele functionaliteit. Geef alstublieft terugkoppeling op de [$1 overlegpagina].', |
3065 | | - 'articleFeedback-copy-below-highlow-tables' => "Deze tabellen bevatten pagina's die in de afgelopen 24 uur tenminste 10 waarderingen hebben gehad. De gemiddelden worden berekend door het gemiddelde te berekenen van alle waarderingen in de afgelopen 24 uur.", |
| 3338 | + 'articlefeedback-disable-preference' => "Widget paginaterugkoppeling niet op pagina's weergeven", |
3066 | 3339 | 'articlefeedback-emailcapture-response-body' => 'Hallo! |
3067 | 3340 | |
3068 | 3341 | Dank u wel voor uw interesse in het verbeteren van {{SITENAME}}. |
— | — | @@ -3449,6 +3722,7 @@ |
3450 | 3723 | /** Portuguese (Português) |
3451 | 3724 | * @author Giro720 |
3452 | 3725 | * @author Hamilton Abreu |
| 3726 | + * @author Helder.wiki |
3453 | 3727 | * @author Waldir |
3454 | 3728 | */ |
3455 | 3729 | $messages['pt'] = array( |
— | — | @@ -3472,7 +3746,7 @@ |
3473 | 3747 | 'articlefeedback-form-switch-label' => 'Avaliar esta página', |
3474 | 3748 | 'articlefeedback-form-panel-title' => 'Avaliar esta página', |
3475 | 3749 | 'articlefeedback-form-panel-explanation' => 'O que é isto?', |
3476 | | - 'articlefeedback-form-panel-explanation-link' => 'Project:ComentarArtigos', |
| 3750 | + 'articlefeedback-form-panel-explanation-link' => 'Project:Avaliação de Artigos', |
3477 | 3751 | 'articlefeedback-form-panel-clear' => 'Remover essa avaliação', |
3478 | 3752 | 'articlefeedback-form-panel-expertise' => 'Conheço este assunto muito profundamente (opcional)', |
3479 | 3753 | 'articlefeedback-form-panel-expertise-studies' => 'Tenho estudos relevantes do secundário/universidade', |
— | — | @@ -3497,7 +3771,7 @@ |
3498 | 3772 | 'articlefeedback-field-trustworthy-tip' => 'Considera que esta página tem citações suficientes e que essas citações provêm de fontes fiáveis?', |
3499 | 3773 | 'articlefeedback-field-complete-label' => 'Completa', |
3500 | 3774 | 'articlefeedback-field-complete-tip' => 'Considera que esta página aborda os temas essenciais que deviam ser cobertos?', |
3501 | | - 'articlefeedback-field-objective-label' => 'Imparcial', |
| 3775 | + 'articlefeedback-field-objective-label' => 'Objectivo', |
3502 | 3776 | 'articlefeedback-field-objective-tip' => 'Acha que esta página representa, de forma equilibrada, todos os pontos de vista sobre o assunto?', |
3503 | 3777 | 'articlefeedback-field-wellwritten-label' => 'Bem escrita', |
3504 | 3778 | 'articlefeedback-field-wellwritten-tip' => 'Acha que esta página está bem organizada e bem escrita?', |
— | — | @@ -3516,14 +3790,16 @@ |
3517 | 3791 | 'articlefeedback-survey-message-error' => 'Ocorreu um erro. |
3518 | 3792 | Tente novamente mais tarde, por favor.', |
3519 | 3793 | 'articleFeedback-table-caption-dailyhighsandlows' => 'Os melhores e piores de hoje', |
3520 | | - 'articleFeedback-table-caption-dailyhighs' => 'Artigos com as avaliações mais elevadas: $1', |
3521 | | - 'articleFeedback-table-caption-dailylows' => 'Artigos com as avaliações mais baixas: $1', |
| 3794 | + 'articleFeedback-table-caption-dailyhighs' => 'Páginas com as avaliações mais elevadas: $1', |
| 3795 | + 'articleFeedback-table-caption-dailylows' => 'Páginas com as avaliações mais baixas: $1', |
3522 | 3796 | 'articleFeedback-table-caption-weeklymostchanged' => 'Os mais alterados da semana', |
3523 | 3797 | 'articleFeedback-table-caption-recentlows' => 'Os piores mais recentes', |
3524 | 3798 | 'articleFeedback-table-heading-page' => 'Página', |
3525 | 3799 | 'articleFeedback-table-heading-average' => 'Média', |
3526 | 3800 | 'articleFeedback-copy-above-highlow-tables' => 'Esta funcionalidade é experimental. Deixe os seus comentários na [$1 página de discussão], por favor.', |
3527 | | - 'articleFeedback-copy-below-highlow-tables' => 'Estas tabelas contêm artigos que receberam pelo menos 10 avaliações nas últimas 24 horas. As médias são calculadas pela média aritmética de todas as avaliações enviadas nas últimas 24 horas.', |
| 3801 | + 'articlefeedback-dashboard-bottom' => "'''Nota''': Continuaremos a experimentar diferentes critérios de selecção de artigos para estes painéis. De momento, os painéis incluem os seguintes: |
| 3802 | +* Páginas com as avaliações mais altas e mais baixas: artigos que receberam pelo menos 10 avaliações nas últimas 24 horas. As médias são calculadas pela média de todas as avaliações recebidas nas últimas 24 horas. |
| 3803 | +* Os piores mais recentes: artigos com 70% ou mais de avaliações baixas (2 estrelas ou menos) em qualquer categoria nas últimas 24 horas. Só são incluídos os artigos que receberam pelo menos 10 avaliações nas últimas 24 horas.", |
3528 | 3804 | 'articlefeedback-disable-preference' => 'Não mostrar nas páginas o widget da avaliação de artigos', |
3529 | 3805 | 'articlefeedback-emailcapture-response-body' => 'Olá, |
3530 | 3806 | |
— | — | @@ -3770,7 +4046,7 @@ |
3771 | 4047 | 'articlefeedback-survey-thanks' => "Grazzie pè avè combilate 'u sondagge.", |
3772 | 4048 | 'articlefeedback-form-switch-label' => 'Valute sta pàgene', |
3773 | 4049 | 'articlefeedback-form-panel-title' => 'Valute sta pàgene', |
3774 | | - 'articlefeedback-form-panel-instructions' => "Pe piacere pigghiate 'nu mumende pe valutà sta pàgene.", |
| 4050 | + 'articlefeedback-form-panel-explanation' => 'Ce jè quiste?', |
3775 | 4051 | 'articlefeedback-form-panel-clear' => 'Live stu pundegge', |
3776 | 4052 | 'articlefeedback-form-panel-expertise-profession' => "Jè parte d'a professiona meje", |
3777 | 4053 | 'articlefeedback-form-panel-expertise-hobby' => "Queste jè 'na passiona profonda meje", |
— | — | @@ -3880,7 +4156,9 @@ |
3881 | 4157 | 'articleFeedback-table-heading-page' => 'Страница', |
3882 | 4158 | 'articleFeedback-table-heading-average' => 'Среднее', |
3883 | 4159 | 'articleFeedback-copy-above-highlow-tables' => 'Это экспериментальная возможность. Пожалуйста, оставьте отзыв на [$1 странице обсуждения].', |
3884 | | - 'articleFeedback-copy-below-highlow-tables' => 'В таблицах указаны страницы, получившие за последние 24 часа не менее 10 оценок. Средние показатели рассчитываются путём усреднения всех оценок за последние 24 часа.', |
| 4160 | + 'articlefeedback-dashboard-bottom' => "'''Примечание'''. Мы будем продолжать экспериментировать с различными способами наполнения этой панели. Сейчас на неё попадают следующие статьи: |
| 4161 | +* Страницы с самым высокими/низкими оценками: статьи, получившие не менее 10 оценок за последние 24 часа. Средние значения рассчитываются после обработки всех оценок за последние 24 часа. |
| 4162 | +* Последние минимумы: статьи, получившие 70% и ниже (2 звезды и ниже) в любой из категорий за последние 24 часа. Учитываются только статьи, получившие не менее 10 оценок за последние 24 часа.", |
3885 | 4163 | 'articlefeedback-disable-preference' => 'Не показывать на страницах виджет обратной связи', |
3886 | 4164 | 'articlefeedback-emailcapture-response-body' => 'Здравствуйте! |
3887 | 4165 | |
— | — | @@ -3940,8 +4218,9 @@ |
3941 | 4219 | * @author HalanTul |
3942 | 4220 | */ |
3943 | 4221 | $messages['sah'] = array( |
3944 | | - 'articlefeedback' => 'Ыстатыйаны сыаналааһын', |
| 4222 | + 'articlefeedback' => 'Ыстатыйаны сыаналааһын хаптаһына', |
3945 | 4223 | 'articlefeedback-desc' => 'Ыстатыйаны сыаналааһын (тургутуллар барыла)', |
| 4224 | + 'articlefeedback-survey-question-origin' => 'Бу ыйытыгы саҕалыыргар ханнык сирэйи көрө олорбуккунуй?', |
3946 | 4225 | 'articlefeedback-survey-question-whyrated' => 'Бука диэн эт эрэ, тоҕо бүгүн бу сирэйи сыаналаатыҥ (туох баар сөп түбэһэр барыллары бэлиэтээ):', |
3947 | 4226 | 'articlefeedback-survey-answer-whyrated-contribute-rating' => 'Бу сирэй түмүк рейтинин уларытаары', |
3948 | 4227 | 'articlefeedback-survey-answer-whyrated-development' => 'Сыанам бу сирэй тупсарыгар көмөлөһүө диэн санааттан', |
— | — | @@ -3955,16 +4234,23 @@ |
3956 | 4235 | 'articlefeedback-survey-submit' => 'Ыытарга', |
3957 | 4236 | 'articlefeedback-survey-title' => 'Бука диэн аҕыйах ыйытыыга хоруйдаа эрэ', |
3958 | 4237 | 'articlefeedback-survey-thanks' => 'Ыйытыыларга хоруйдаабыккар махтанабыт.', |
| 4238 | + 'articlefeedback-error' => 'Туох эрэ алҕас таҕыста. Хойутуу боруобалаар.', |
3959 | 4239 | 'articlefeedback-form-switch-label' => 'Бу сирэйи сыаналаа', |
3960 | 4240 | 'articlefeedback-form-panel-title' => 'Бу сирэйи сыаналаа', |
3961 | | - 'articlefeedback-form-panel-instructions' => 'Бука диэн бу сирэйгэ сыанабылла туруор эрэ.', |
| 4241 | + 'articlefeedback-form-panel-explanation' => 'Бу тугуй?', |
| 4242 | + 'articlefeedback-form-panel-explanation-link' => 'Project:ArticleFeedback', |
3962 | 4243 | 'articlefeedback-form-panel-clear' => 'Бу сыананы сот', |
3963 | | - 'articlefeedback-form-panel-expertise' => 'Бу тиэмэни бэркэ билэбин', |
| 4244 | + 'articlefeedback-form-panel-expertise' => 'Бу тиэмэни бэркэ билэбин (толоруу булгуччута суох)', |
3964 | 4245 | 'articlefeedback-form-panel-expertise-studies' => 'Бу тиэмэни колледжка/университекка үөрэппитим', |
3965 | 4246 | 'articlefeedback-form-panel-expertise-profession' => 'Идэм сорҕото', |
3966 | 4247 | 'articlefeedback-form-panel-expertise-hobby' => 'Мин дьарыктанар үлүһүйүүм, сүрүн дьулҕаным', |
3967 | 4248 | 'articlefeedback-form-panel-expertise-other' => 'Туох сыһыаннааҕым туһунан манна ыйыллыбатах', |
| 4249 | + 'articlefeedback-form-panel-helpimprove' => 'Бикипиэдьийэни тупсарарга көмө буолуом этэ, сурукта ыытыҥ (толорор булгуччута суох)', |
| 4250 | + 'articlefeedback-form-panel-helpimprove-note' => 'Бигэргэтэр сурук ыытыахпыт. Аадырыскын кимиэхэ да биэриэхпит суоҕа. $1', |
| 4251 | + 'articlefeedback-form-panel-helpimprove-privacy' => 'Кистээһин сиэрэ', |
| 4252 | + 'articlefeedback-form-panel-helpimprove-privacylink' => 'Project:Кистээһин сиэрэ', |
3968 | 4253 | 'articlefeedback-form-panel-submit' => 'Сыанабылы ыытыы', |
| 4254 | + 'articlefeedback-form-panel-pending' => 'Эн сыанабылыҥ өссө да ыытылла илик', |
3969 | 4255 | 'articlefeedback-form-panel-success' => 'Бигэргэтилиннэ', |
3970 | 4256 | 'articlefeedback-form-panel-expiry-title' => 'Сыанабылыҥ эргэрбит', |
3971 | 4257 | 'articlefeedback-form-panel-expiry-message' => 'Бука диэн бу сирэйи хат көр уонна саҥа сыаната быс.', |
— | — | @@ -3994,6 +4280,14 @@ |
3995 | 4281 | 'articlefeedback-survey-message-success' => 'Ыйытыыларга хоруйдаабыккар махтанабыт.', |
3996 | 4282 | 'articlefeedback-survey-message-error' => 'Алҕас таҕыста. |
3997 | 4283 | Бука диэн хойутуу хос боруобалаар.', |
| 4284 | + 'articleFeedback-table-caption-dailyhighsandlows' => 'Бүгүү тахсыылар уонна түһүүлэр', |
| 4285 | + 'articleFeedback-table-caption-dailyhighs' => 'Уһулуччу сыанабылы ылбыт ыстатыйалар: $1', |
| 4286 | + 'articleFeedback-table-caption-dailylows' => 'Саамай намыһах сыанабылы ылбыт ыстатыйалар: $1', |
| 4287 | + 'articleFeedback-table-caption-weeklymostchanged' => 'Бу нэдиэлэҕэ саамай элбэхтэ уларыйбыттар', |
| 4288 | + 'articleFeedback-table-caption-recentlows' => 'Соторутааҥы түһүүлэр', |
| 4289 | + 'articleFeedback-table-heading-page' => 'Сирэй', |
| 4290 | + 'articleFeedback-table-heading-average' => 'Орто', |
| 4291 | + 'articleFeedback-copy-above-highlow-tables' => 'Бу кыах тургутулла турар. Бука диэн, санааҕын [$1 сирэйгэ] суруй.', |
3998 | 4292 | ); |
3999 | 4293 | |
4000 | 4294 | /** Sicilian (Sicilianu) |
— | — | @@ -4083,7 +4377,7 @@ |
4084 | 4378 | */ |
4085 | 4379 | $messages['sl'] = array( |
4086 | 4380 | 'articlefeedback' => 'Pregledna plošča povratnih informacij člankov', |
4087 | | - 'articlefeedback-desc' => 'Ocenjevanje člankov (pilotska različica)', |
| 4381 | + 'articlefeedback-desc' => 'Povratna informacija članka', |
4088 | 4382 | 'articlefeedback-survey-question-origin' => 'Na kateri strani ste bili, ko ste začeli s to anketo?', |
4089 | 4383 | 'articlefeedback-survey-question-whyrated' => 'Prosimo, povejte nam, zakaj ste danes ocenili to stran (izberite vse, kar ustreza):', |
4090 | 4384 | 'articlefeedback-survey-answer-whyrated-contribute-rating' => 'Želel sem prispevati splošni oceni strani', |
— | — | @@ -4153,7 +4447,10 @@ |
4154 | 4448 | 'articleFeedback-table-heading-page' => 'Stran', |
4155 | 4449 | 'articleFeedback-table-heading-average' => 'Povprečje', |
4156 | 4450 | 'articleFeedback-copy-above-highlow-tables' => 'To je preizkusna funkcija. Prosimo, podajte povratno informacijo na [$1 pogovorni strani].', |
4157 | | - 'articleFeedback-copy-below-highlow-tables' => 'Te razpredelnice vsebujejo članke, ki so v zadnjih 24 urah prejeli vsaj 10 ocen. Povprečna so izračunana iz povprečja vseh ocen, podanih v zadnjih 24 urah.', |
| 4451 | + 'articlefeedback-dashboard-bottom' => "'''Opomba''': Nadaljevali bomo z raziskovanjem različnih načinov prikazovanja člankov na teh preglednih ploščah. Pregledna plošča trenutno vključuje naslednje članke: |
| 4452 | +* Strani z najvišjimi/najnižjimi ocenami: članki, ki so v zadnjih 24 urah prejeli vsaj 10 ocen. Povprečja predstavljajo sredino vseh ocen, podanih v zadnjih 24 urah. |
| 4453 | +* Nedavni padci: članki, ki so v zadnjih 24 urah prejeli 70 % ali več nizkih (dve zvezdici ali manj) ocen v kateri koli kategoriji. Vključeni so samo članki, ki so v zadnjih 24 urah prejeli vsaj 10 ocen.", |
| 4454 | + 'articlefeedback-disable-preference' => 'Na strani ne pokaži gradnika Povratna informacija članka', |
4158 | 4455 | 'articlefeedback-emailcapture-response-body' => 'Pozdravljeni! |
4159 | 4456 | |
4160 | 4457 | Zahvaljujemo se vam za izkazano zanimanje za pomoč pri izboljševanju {{GRAMMAR:rodilnik|{{SITENAME}}}}. |
— | — | @@ -4443,7 +4740,7 @@ |
4444 | 4741 | 'articlefeedback-error' => 'Naganap ang isang kamalian. Paki subukan uli mamaya.', |
4445 | 4742 | 'articlefeedback-form-switch-label' => 'Antasan ang pahinang ito', |
4446 | 4743 | 'articlefeedback-form-panel-title' => 'Antasan ang pahinang ito', |
4447 | | - 'articlefeedback-form-panel-instructions' => 'Mangyaring maglaan ng isang sandali upang antasan ang pahinang ito.', |
| 4744 | + 'articlefeedback-form-panel-explanation' => 'Ano ba ito?', |
4448 | 4745 | 'articlefeedback-form-panel-clear' => 'Alisin ang antas na ito', |
4449 | 4746 | 'articlefeedback-form-panel-expertise' => 'Talagang maalam ako hinggil sa paksang ito (maaaring wala ito)', |
4450 | 4747 | 'articlefeedback-form-panel-expertise-studies' => 'Mayroon akong kaugnay na baitang sa dalubhasaan/pamantasan', |
— | — | @@ -4529,21 +4826,58 @@ |
4530 | 4827 | $messages['tr'] = array( |
4531 | 4828 | 'articlefeedback' => 'Madde değerlendirmesi', |
4532 | 4829 | 'articlefeedback-desc' => 'Madde geribildirimi', |
| 4830 | + 'articlefeedback-survey-question-origin' => 'Bu ankete başladığında hangi sayfadaydınız?', |
| 4831 | + 'articlefeedback-survey-answer-whyrated-contribute-rating' => 'Sayfanın genel değerlendirilmesine katkıda bulunmak istedim', |
| 4832 | + 'articlefeedback-survey-answer-whyrated-development' => 'Değerlendirmemin sayfanın gelişimini olumlu yönde etkileyeceğini düşünüyorum', |
| 4833 | + 'articlefeedback-survey-answer-whyrated-contribute-wiki' => '{{SITENAME}} sitesine katkıda bulunmak istedim.', |
4533 | 4834 | 'articlefeedback-survey-answer-whyrated-sharing-opinion' => 'Fikirlerimi paylaşmayı seviyorum', |
4534 | 4835 | 'articlefeedback-survey-answer-whyrated-other' => 'Diğer', |
| 4836 | + 'articlefeedback-survey-question-useful' => 'Mevcut değerlendirmelerin kullanışlı ve anlaşılır olduğunu düşünüyor musunuz?', |
4535 | 4837 | 'articlefeedback-survey-question-useful-iffalse' => 'Neden?', |
| 4838 | + 'articlefeedback-survey-question-comments' => 'Herhangi ek bir yorumunuz var mı?', |
4536 | 4839 | 'articlefeedback-survey-submit' => 'Gönder', |
4537 | 4840 | 'articlefeedback-survey-title' => 'Lütfen birkaç soruya yanıt verin', |
4538 | 4841 | 'articlefeedback-survey-thanks' => 'Anketi doldurduğunuz için teşekkür ederiz.', |
| 4842 | + 'articlefeedback-form-switch-label' => 'Bu sayfayı değerlendirin', |
| 4843 | + 'articlefeedback-form-panel-title' => 'Bu sayfayı değerlendirin', |
| 4844 | + 'articlefeedback-form-panel-explanation' => 'Bu nedir?', |
| 4845 | + 'articlefeedback-form-panel-clear' => 'Bu değerlendirmeyi kaldır', |
| 4846 | + 'articlefeedback-form-panel-expertise-profession' => 'Mesleğimin bir parçasıdır', |
| 4847 | + 'articlefeedback-form-panel-helpimprove-privacy' => 'Gizlilik ilkesi', |
| 4848 | + 'articlefeedback-form-panel-helpimprove-privacylink' => 'Project:Gizlilik ilkesi', |
| 4849 | + 'articlefeedback-form-panel-submit' => 'Değerlendirmeleri kaydet', |
| 4850 | + 'articlefeedback-form-panel-pending' => 'Değerlendirmeleriniz henüz kaydedilmedi', |
| 4851 | + 'articlefeedback-form-panel-success' => 'Başarıyla kaydedildi', |
| 4852 | + 'articlefeedback-report-switch-label' => 'Sayfa değerlendirmelerini görüntüle', |
| 4853 | + 'articlefeedback-report-panel-title' => 'Sayfa değerlendirmeleri', |
| 4854 | + 'articlefeedback-report-panel-description' => 'Şu anki değerlendirme ortalaması', |
| 4855 | + 'articlefeedback-report-empty' => 'Değerlendirme yok', |
| 4856 | + 'articlefeedback-field-trustworthy-label' => 'Güvenilir', |
| 4857 | + 'articlefeedback-field-complete-label' => 'Tamamlanmış', |
| 4858 | + 'articlefeedback-field-complete-tip' => 'Bu sayfada konuyla ilgili yer alması gerekn tüm bilgilerin yer aldığını düşünüyor musunuz?', |
| 4859 | + 'articlefeedback-field-objective-label' => 'Tarafsız', |
| 4860 | + 'articlefeedback-field-objective-tip' => 'Bu sayfanın konu hakkındaki tüm bakış açılarını iyi bir şekilde yansıttığını düşünüyor musunuz?', |
| 4861 | + 'articlefeedback-field-wellwritten-label' => 'İyi yazılmış', |
| 4862 | + 'articlefeedback-pitch-reject' => 'Belki ileride', |
4539 | 4863 | 'articlefeedback-pitch-or' => 'veya', |
| 4864 | + 'articlefeedback-pitch-thanks' => 'Teşekkürler! Değerlendirmeleriniz kaydedildi.', |
| 4865 | + 'articlefeedback-pitch-survey-message' => 'Lütfen kısa bir anketi doldurmak için bir dakikanızı ayırın.', |
| 4866 | + 'articlefeedback-pitch-survey-accept' => 'Ankete başla', |
| 4867 | + 'articlefeedback-pitch-join-message' => 'Bir kullanıcı hesabı edinmek istiyor musunuz?', |
4540 | 4868 | 'articlefeedback-pitch-join-accept' => 'Yeni hesap edin', |
4541 | 4869 | 'articlefeedback-pitch-join-login' => 'Oturum aç', |
| 4870 | + 'articlefeedback-pitch-edit-message' => 'Bu sayfayı değiştirebileceğinizi biliyor muydunuz?', |
| 4871 | + 'articlefeedback-pitch-edit-accept' => 'Bu sayfayı değiştir', |
4542 | 4872 | 'articlefeedback-survey-message-success' => 'Anketi doldurduğunuz için teşekkür ederiz.', |
| 4873 | + 'articlefeedback-survey-message-error' => 'Bir hata meydana geldi. |
| 4874 | +Lütfen daha sonra tekrar deneyin.', |
4543 | 4875 | 'articleFeedback-table-heading-page' => 'Madde', |
| 4876 | + 'articleFeedback-table-heading-average' => 'Ortalama', |
4544 | 4877 | ); |
4545 | 4878 | |
4546 | 4879 | /** Ukrainian (Українська) |
4547 | 4880 | * @author Arturyatsko |
| 4881 | + * @author Microcell |
4548 | 4882 | * @author Тест |
4549 | 4883 | */ |
4550 | 4884 | $messages['uk'] = array( |
— | — | @@ -4563,11 +4897,27 @@ |
4564 | 4898 | 'articlefeedback-survey-title' => 'Будь ласка, дайте відповідь на кілька питань', |
4565 | 4899 | 'articlefeedback-survey-thanks' => 'Дякуємо за заповнення опитування.', |
4566 | 4900 | 'articlefeedback-error' => 'Сталася помилка. Будь ласка, повторіть спробу пізніше.', |
| 4901 | + 'articlefeedback-form-switch-label' => 'Оцінити цю сторінку', |
| 4902 | + 'articlefeedback-form-panel-explanation' => 'Що це таке?', |
| 4903 | + 'articlefeedback-form-panel-clear' => 'Вилучити оцінку', |
| 4904 | + 'articlefeedback-form-panel-expertise' => 'Я маю широкі знання в цій галузі (опціонально)', |
| 4905 | + 'articlefeedback-form-panel-expertise-studies' => 'В мене є відповідна ступінь від університету/коледжу', |
| 4906 | + 'articlefeedback-form-panel-expertise-profession' => 'Це стосується моєї професії', |
| 4907 | + 'articlefeedback-form-panel-expertise-hobby' => 'Це моє палке особисте захоплення', |
4567 | 4908 | 'articlefeedback-form-panel-helpimprove-privacy' => 'Політика конфіденційності', |
4568 | 4909 | 'articlefeedback-form-panel-helpimprove-privacylink' => 'Project:Політика конфіденційності', |
| 4910 | + 'articlefeedback-form-panel-pending' => 'Ваші оцінки ще не були відправлені', |
| 4911 | + 'articlefeedback-form-panel-success' => 'Успішно збережено', |
| 4912 | + 'articlefeedback-form-panel-expiry-title' => 'Ваші оцінки застарілі', |
| 4913 | + 'articlefeedback-form-panel-expiry-message' => 'Будь ласка, перегляньте сторінку та поставте нові оцінки.', |
4569 | 4914 | 'articlefeedback-report-switch-label' => 'Показати оцінки сторінки', |
| 4915 | + 'articlefeedback-report-panel-title' => 'Оцінки сторінки', |
| 4916 | + 'articlefeedback-report-panel-description' => 'Поточні середні оцінки.', |
| 4917 | + 'articlefeedback-report-empty' => 'Не оцінювалася', |
| 4918 | + 'articlefeedback-pitch-reject' => 'Можливо, пізніше', |
4570 | 4919 | 'articlefeedback-pitch-or' => 'або', |
4571 | 4920 | 'articlefeedback-pitch-join-accept' => 'Створити обліковий запис', |
| 4921 | + 'articlefeedback-pitch-join-login' => 'Увійти до системи', |
4572 | 4922 | 'articlefeedback-pitch-edit-accept' => 'Редагувати цю сторінку', |
4573 | 4923 | 'articleFeedback-table-heading-page' => 'Сторінка', |
4574 | 4924 | ); |
— | — | @@ -4668,7 +5018,9 @@ |
4669 | 5019 | 'articleFeedback-table-heading-page' => 'Trang', |
4670 | 5020 | 'articleFeedback-table-heading-average' => 'Trung bình', |
4671 | 5021 | 'articleFeedback-copy-above-highlow-tables' => 'Đây là một tính năng thử nghiệm. Xin vui lòng đưa ra phản hồi tại [$1 trang thảo luận].', |
4672 | | - 'articleFeedback-copy-below-highlow-tables' => 'Các bảng này chứa các bài đã được đánh giá 10 lần trở lên trong vòng 24 giờ qua. Các trung bình tính các đánh giá được nhận trong vòng 24 giờ qua.', |
| 5022 | + 'articlefeedback-dashboard-bottom' => "'''Lưu ý:''' Chúng tôi sẽ tiếp tục thử nghiệm những cách chọn lọc bài trong cách bảng điều khiển. Hiện nay các bảng điều khiển bao gồm các bài sau: |
| 5023 | +* Các trang được đánh giá cao nhất hoặc thấp nhất: các bài đã được đánh giá 10 lần trở lên trong 24 giờ trước. Trung bình tính tất cả các đánh giá được nhận trong 24 giờ trước. |
| 5024 | +* Các điểm thấp gần đây: các bài được đánh giá 70% (2 sao) trở xuống trong thể loại này trong 24 giờ trước. Chỉ tính các bài được đánh giá 10 lần trở lên trong 24 giờ trước.", |
4673 | 5025 | 'articlefeedback-disable-preference' => 'Ẩn bảng Phản hồi bài khỏi các trang', |
4674 | 5026 | 'articlefeedback-emailcapture-response-body' => 'Xin chào! |
4675 | 5027 | |
— | — | @@ -4710,12 +5062,11 @@ |
4711 | 5063 | 'articlefeedback-survey-question-useful' => '你认为提供的评价有用并清晰吗?', |
4712 | 5064 | 'articlefeedback-survey-question-useful-iffalse' => '为什么?', |
4713 | 5065 | 'articlefeedback-survey-question-comments' => '你还有什么想说的吗?', |
4714 | | - 'articlefeedback-survey-submit' => '提交', |
| 5066 | + 'articlefeedback-survey-submit' => 'Fúnsílẹ̀', |
4715 | 5067 | 'articlefeedback-survey-title' => '请回答几个问题', |
4716 | 5068 | 'articlefeedback-survey-thanks' => '谢谢您回答问卷。', |
4717 | 5069 | 'articlefeedback-form-switch-label' => '提供意见', |
4718 | 5070 | 'articlefeedback-form-panel-title' => '您的意见', |
4719 | | - 'articlefeedback-form-panel-instructions' => '请花些时间为这个条目打分', |
4720 | 5071 | 'articlefeedback-form-panel-submit' => '上载意见', |
4721 | 5072 | 'articlefeedback-field-complete-label' => '完成', |
4722 | 5073 | ); |
— | — | @@ -4725,7 +5076,7 @@ |
4726 | 5077 | * @author 阿pp |
4727 | 5078 | */ |
4728 | 5079 | $messages['zh-hans'] = array( |
4729 | | - 'articlefeedback' => '条目评级', |
| 5080 | + 'articlefeedback' => '文章反馈仪表板', |
4730 | 5081 | 'articlefeedback-desc' => '条目评级(测试版)', |
4731 | 5082 | 'articlefeedback-survey-question-origin' => '哪一页,你在你开始这项统计调查的时候?', |
4732 | 5083 | 'articlefeedback-survey-question-whyrated' => '请告诉我们今天你为何评价了此页面(选择所有符合的):', |
— | — | @@ -4744,7 +5095,8 @@ |
4745 | 5096 | 'articlefeedback-error' => '发生了一个错误。请稍后重试。', |
4746 | 5097 | 'articlefeedback-form-switch-label' => '评论此页', |
4747 | 5098 | 'articlefeedback-form-panel-title' => '评论此页', |
4748 | | - 'articlefeedback-form-panel-instructions' => '请花些时间为这个条目打分', |
| 5099 | + 'articlefeedback-form-panel-explanation' => '这是什么?', |
| 5100 | + 'articlefeedback-form-panel-explanation-link' => 'Project:文章反馈', |
4749 | 5101 | 'articlefeedback-form-panel-clear' => '删除此分级', |
4750 | 5102 | 'articlefeedback-form-panel-expertise' => '我非常了解本主题(可选)', |
4751 | 5103 | 'articlefeedback-form-panel-expertise-studies' => '我有与其有关的大学学位', |
— | — | @@ -4756,6 +5108,7 @@ |
4757 | 5109 | 'articlefeedback-form-panel-helpimprove-privacy' => '私隐政策', |
4758 | 5110 | 'articlefeedback-form-panel-helpimprove-privacylink' => 'Project:隐私政策', |
4759 | 5111 | 'articlefeedback-form-panel-submit' => '提交意见', |
| 5112 | + 'articlefeedback-form-panel-pending' => '没有尚未提交您的评级', |
4760 | 5113 | 'articlefeedback-form-panel-success' => '成功保存', |
4761 | 5114 | 'articlefeedback-form-panel-expiry-title' => '您的评级已过期', |
4762 | 5115 | 'articlefeedback-form-panel-expiry-message' => '请重新评估此页并提交新的评级。', |
— | — | @@ -4787,10 +5140,14 @@ |
4788 | 5141 | 'articlefeedback-survey-message-error' => '出现错误。 |
4789 | 5142 | 请稍后再试。', |
4790 | 5143 | 'articleFeedback-table-caption-dailyhighsandlows' => '今天的新鲜事', |
| 5144 | + 'articleFeedback-table-caption-dailyhighs' => '最高评级的页:$1', |
| 5145 | + 'articleFeedback-table-caption-dailylows' => '最低评级的页:$1', |
4791 | 5146 | 'articleFeedback-table-caption-weeklymostchanged' => '本周最多更改', |
4792 | 5147 | 'articleFeedback-table-caption-recentlows' => '近期低点', |
4793 | 5148 | 'articleFeedback-table-heading-page' => '页面', |
4794 | 5149 | 'articleFeedback-table-heading-average' => '平均', |
| 5150 | + 'articleFeedback-copy-above-highlow-tables' => '这是一个实验的功能。请在 [$1 讨论页] 提供反馈意见。', |
| 5151 | + 'articlefeedback-disable-preference' => '不在页面上显示条反馈构件', |
4795 | 5152 | ); |
4796 | 5153 | |
4797 | 5154 | /** Traditional Chinese (中文(繁體)) |