Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/populateAFStatistics.php |
— | — | @@ -12,65 +12,65 @@ |
13 | 13 | * @var int |
14 | 14 | */ |
15 | 15 | public $insert_batch_size = 100; |
16 | | - |
| 16 | + |
17 | 17 | /** |
18 | 18 | * The period (in seconds) before now for which to gather stats |
19 | 19 | * @var int |
20 | 20 | */ |
21 | 21 | public $polling_period = 86400; |
22 | | - |
| 22 | + |
23 | 23 | /** |
24 | 24 | * The formatted timestamp from which to determine stats |
25 | 25 | * @var int |
26 | 26 | */ |
27 | 27 | protected $lowerBoundTimestamp; |
28 | | - |
| 28 | + |
29 | 29 | /** |
30 | 30 | * DB slave |
31 | 31 | * @var object |
32 | 32 | */ |
33 | 33 | protected $dbr; |
34 | | - |
| 34 | + |
35 | 35 | /** |
36 | 36 | * DB master |
37 | 37 | * @var object |
38 | 38 | */ |
39 | 39 | protected $dbw; |
40 | | - |
| 40 | + |
41 | 41 | /** |
42 | 42 | * Valid operations and their execution methods for this script to perform |
43 | | - * |
| 43 | + * |
44 | 44 | * Operations are passed in as options during run-time - only valid options, |
45 | 45 | * which are defined here, can be executed. Valid operations are mapped here |
46 | 46 | * to a corresponding method ( array( 'operation' => 'method' )) |
47 | 47 | * @var array |
48 | 48 | */ |
49 | | - protected $operation_map = array( |
50 | | - 'highslows' => 'populateHighsLows', |
| 49 | + protected $operation_map = array( |
| 50 | + 'highslows' => 'populateHighsLows', |
51 | 51 | 'problems' => 'populateProblems', |
52 | 52 | ); |
53 | | - |
| 53 | + |
54 | 54 | /** |
55 | 55 | * Operations to execute |
56 | 56 | * @var array |
57 | 57 | */ |
58 | 58 | public $operations = array(); |
59 | | - |
| 59 | + |
60 | 60 | /** |
61 | 61 | * The minimum number of rating sets required before taking some action |
62 | 62 | * @var int |
63 | 63 | */ |
64 | 64 | public $rating_set_threshold = 10; |
65 | | - |
| 65 | + |
66 | 66 | public function __construct() { |
67 | 67 | parent::__construct(); |
68 | 68 | $this->mDescription = "Populates the article feedback stats tables"; |
69 | | - |
| 69 | + |
70 | 70 | $this->addOption( 'op', 'The ArticleFeedback stats gathering operation to run (eg "highslows"). Can specify multiple operations, separated by comma.', true, true ); |
71 | 71 | $this->addOption( 'rating_sets', 'The minimum number of rating sets before taking an action.', false, true ); |
72 | 72 | $this->addOption( 'poll_period', 'The polling period for fetching data, in seconds.', false, true ); |
73 | 73 | } |
74 | | - |
| 74 | + |
75 | 75 | public function syncDBs() { |
76 | 76 | // FIXME: Copied from populateAFRevisions.php, which coppied from updateCollation.php, should be centralized somewhere |
77 | 77 | $lb = wfGetLB(); |
— | — | @@ -82,11 +82,11 @@ |
83 | 83 | $lb->waitForAll( $pos ); |
84 | 84 | } |
85 | 85 | } |
86 | | - |
| 86 | + |
87 | 87 | /** |
88 | 88 | * Bootstrap this maintenance script |
89 | | - * |
90 | | - * Performs operations necessary for this maintenance script to run which |
| 89 | + * |
| 90 | + * Performs operations necessary for this maintenance script to run which |
91 | 91 | * cannot or do not make sense to run in the constructor. |
92 | 92 | */ |
93 | 93 | public function bootstrap() { |
— | — | @@ -120,18 +120,18 @@ |
121 | 121 | } else { |
122 | 122 | $this->polling_period = $polling_period; |
123 | 123 | } |
124 | | - |
| 124 | + |
125 | 125 | // set db objects |
126 | 126 | $this->dbr = wfGetDB( DB_SLAVE ); |
127 | 127 | $this->dbw = wfGetDB( DB_MASTER ); |
128 | 128 | } |
129 | | - |
| 129 | + |
130 | 130 | /** |
131 | 131 | * Check whether or not specified operations are valid. |
132 | | - * |
| 132 | + * |
133 | 133 | * A specified operation is considered valid if it exists |
134 | 134 | * as a key in the operation map. |
135 | | - * |
| 135 | + * |
136 | 136 | * @param array $ops An array of operations to check |
137 | 137 | * @return bool |
138 | 138 | */ |
— | — | @@ -143,21 +143,21 @@ |
144 | 144 | } |
145 | 145 | return true; |
146 | 146 | } |
147 | | - |
| 147 | + |
148 | 148 | public function execute() { |
149 | 149 | // finish bootstrapping the script |
150 | 150 | $this->bootstrap(); |
151 | | - |
| 151 | + |
152 | 152 | // execute requested operations |
153 | 153 | foreach ( $this->operations as $operation ) { |
154 | 154 | $method = $this->operation_map[ $operation ]; |
155 | 155 | $this->$method(); |
156 | 156 | } |
157 | 157 | } |
158 | | - |
| 158 | + |
159 | 159 | public function populateProblems() { |
160 | 160 | global $wgMemc; |
161 | | - |
| 161 | + |
162 | 162 | /** |
163 | 163 | * Chck to see if we already have a collection of pages to operate on. |
164 | 164 | * If not, generate the collection of pages and their associated ratings. |
— | — | @@ -174,19 +174,19 @@ |
175 | 175 | if ( $page->rating_set_count < $this->rating_set_threshold ) { |
176 | 176 | continue; |
177 | 177 | } |
178 | | - |
| 178 | + |
179 | 179 | if ( $page->isProblematic() ) { |
180 | 180 | $problems[] = $page->page_id; |
181 | 181 | } |
182 | 182 | } |
183 | | - |
| 183 | + |
184 | 184 | // populate stats table with problem articles & associated data |
185 | 185 | // fetch stats type id - add stat type if it's non-existent |
186 | 186 | $stats_type_id = SpecialArticleFeedback::getStatsTypeId( 'problems' ); |
187 | 187 | if ( !$stats_type_id ) { |
188 | 188 | $stats_type_id = $this->addStatType( 'problems' ); |
189 | 189 | } |
190 | | - |
| 190 | + |
191 | 191 | $rows = array(); |
192 | 192 | $cur_ts = $this->dbw->timestamp(); |
193 | 193 | $count = 0; |
— | — | @@ -199,7 +199,7 @@ |
200 | 200 | 'afs_ts' => $cur_ts, |
201 | 201 | 'afs_stats_type_id' => $stats_type_id, |
202 | 202 | ); |
203 | | - |
| 203 | + |
204 | 204 | $count++; |
205 | 205 | if ( $count >= 50 ) { |
206 | 206 | // No more than 50 |
— | — | @@ -208,7 +208,7 @@ |
209 | 209 | } |
210 | 210 | } |
211 | 211 | $this->output( "Done.\n" ); |
212 | | - |
| 212 | + |
213 | 213 | // Insert the problem rows into the database |
214 | 214 | $this->output( "Writing data to article_feedback_stats ...\n" ); |
215 | 215 | $rowsInserted = 0; |
— | — | @@ -216,7 +216,7 @@ |
217 | 217 | $rowsCopy = $rows; |
218 | 218 | while( $rows ) { |
219 | 219 | $batch = array_splice( $rows, 0, $this->insert_batch_size ); |
220 | | - $this->dbw->insert( |
| 220 | + $this->dbw->insert( |
221 | 221 | 'article_feedback_stats', |
222 | 222 | $batch, |
223 | 223 | __METHOD__ |
— | — | @@ -226,7 +226,7 @@ |
227 | 227 | $this->output( "Inserted " . $rowsInserted . " rows\n" ); |
228 | 228 | } |
229 | 229 | $this->output( "Done.\n" ); |
230 | | - |
| 230 | + |
231 | 231 | // populate cache with current problem articles |
232 | 232 | $this->output( "Caching latest problems (if cache present).\n" ); |
233 | 233 | // grab the article feedback special page so we can reuse the data structure building code |
— | — | @@ -237,15 +237,15 @@ |
238 | 238 | $wgMemc->set( $key, $problems, 86400 ); |
239 | 239 | $this->output( "Done.\n" ); |
240 | 240 | } |
241 | | - |
| 241 | + |
242 | 242 | /** |
243 | 243 | * Populate stats about highest/lowest rated articles |
244 | 244 | */ |
245 | 245 | public function populateHighsLows() { |
246 | 246 | global $wgMemc; |
247 | | - |
| 247 | + |
248 | 248 | $averages = array(); // store overall averages for a given page |
249 | | - |
| 249 | + |
250 | 250 | /** |
251 | 251 | * Chck to see if we already have a collection of pages to operate on. |
252 | 252 | * If not, generate the collection of pages and their associated ratings. |
— | — | @@ -262,12 +262,12 @@ |
263 | 263 | if ( $page->rating_set_count < $this->rating_set_threshold ) { |
264 | 264 | continue; |
265 | 265 | } |
266 | | - |
| 266 | + |
267 | 267 | // calculate the rating averages if they haven't already been calculated |
268 | 268 | if ( !count( $page->rating_averages )) { |
269 | 269 | $page->calculateRatingAverages(); |
270 | 270 | } |
271 | | - |
| 271 | + |
272 | 272 | // store overall average rating seperately so we can easily sort |
273 | 273 | $averages[ $page->page_id ] = $page->overall_average; |
274 | 274 | } |
— | — | @@ -285,13 +285,13 @@ |
286 | 286 | $highest_and_lowest_page_ids += array_slice( $averages, -50, 50, true ); |
287 | 287 | } |
288 | 288 | $this->output( "Done\n" ); |
289 | | - |
| 289 | + |
290 | 290 | // fetch stats type id - add stat type if it's non-existant |
291 | 291 | $stats_type_id = SpecialArticleFeedback::getStatsTypeId( 'highs_and_lows' ); |
292 | 292 | if ( !$stats_type_id ) { |
293 | 293 | $stats_type_id = $this->addStatType( 'highs_and_lows' ); |
294 | 294 | } |
295 | | - |
| 295 | + |
296 | 296 | // prepare data for insert into db |
297 | 297 | $this->output( "Preparing data for db insertion ...\n"); |
298 | 298 | $cur_ts = $this->dbw->timestamp(); |
— | — | @@ -315,7 +315,7 @@ |
316 | 316 | $rowsCopy = $rows; |
317 | 317 | while( $rows ) { |
318 | 318 | $batch = array_splice( $rows, 0, $this->insert_batch_size ); |
319 | | - $this->dbw->insert( |
| 319 | + $this->dbw->insert( |
320 | 320 | 'article_feedback_stats', |
321 | 321 | $batch, |
322 | 322 | __METHOD__ |
— | — | @@ -325,7 +325,7 @@ |
326 | 326 | $this->output( "Inserted " . $rowsInserted . " rows\n" ); |
327 | 327 | } |
328 | 328 | $this->output( "Done.\n" ); |
329 | | - |
| 329 | + |
330 | 330 | // loading data into cache |
331 | 331 | $this->output( "Caching latest highs/lows (if cache present).\n" ); |
332 | 332 | $key = wfMemcKey( 'article_feedback_stats_highs_lows' ); |
— | — | @@ -336,10 +336,10 @@ |
337 | 337 | $wgMemc->set( $key, $highs_lows, 86400 ); |
338 | 338 | $this->output( "Done\n" ); |
339 | 339 | } |
340 | | - |
| 340 | + |
341 | 341 | /** |
342 | 342 | * Fetch ratings newer than a given time stamp. |
343 | | - * |
| 343 | + * |
344 | 344 | * If no timestamp is provided, relies on $this->lowerBoundTimestamp |
345 | 345 | * @param numeric $ts |
346 | 346 | * @return database result object |
— | — | @@ -348,60 +348,60 @@ |
349 | 349 | if ( !$ts ) { |
350 | 350 | $ts = $this->getLowerBoundTimestamp(); |
351 | 351 | } |
352 | | - |
| 352 | + |
353 | 353 | if ( !is_numeric( $ts )) { |
354 | 354 | throw new InvalidArgumentException( 'Timestamp expected to be numeric.' ); |
355 | 355 | } |
356 | | - |
| 356 | + |
357 | 357 | $res = $this->dbr->select( |
358 | | - 'article_feedback', |
359 | | - array( |
| 358 | + 'article_feedback', |
| 359 | + array( |
360 | 360 | 'aa_revision', |
361 | 361 | 'aa_user_text', |
362 | 362 | 'aa_rating_id', |
363 | 363 | 'aa_user_anon_token', |
364 | | - 'aa_page_id', |
| 364 | + 'aa_page_id', |
365 | 365 | 'aa_rating_value', |
366 | | - ), |
| 366 | + ), |
367 | 367 | array( 'aa_timestamp >= ' . $this->dbr->addQuotes( $this->dbr->timestamp( $ts ) ) ), |
368 | 368 | __METHOD__, |
369 | 369 | array() |
370 | 370 | ); |
371 | | - |
| 371 | + |
372 | 372 | return $res; |
373 | 373 | } |
374 | | - |
| 374 | + |
375 | 375 | /** |
376 | 376 | * Construct collection of pages and their ratings since a given time stamp |
377 | 377 | * @param $ts |
378 | 378 | * @return object The colelction of pages |
379 | 379 | */ |
380 | 380 | public function populatePageRatingsSince( $ts ) { |
381 | | - $pages = new Pages(); |
| 381 | + $pages = new AFPages(); |
382 | 382 | // fetch the ratings since the lower bound timestamp |
383 | 383 | $this->output( 'Fetching page ratings between now and ' . date( 'Y-m-d H:i:s', strtotime( $ts )) . "...\n" ); |
384 | 384 | $res = $this->fetchRatingsNewerThanTs( $ts ); |
385 | 385 | $this->output( "Done.\n" ); |
386 | | - |
| 386 | + |
387 | 387 | // assign the rating data to our data structure |
388 | 388 | $this->output( "Assigning fetched ratings to internal data structure ...\n" ); |
389 | 389 | foreach ( $res as $row ) { |
390 | 390 | // fetch the page from the page store referentially so we can |
391 | 391 | // perform actions on it that will automagically be saved in the |
392 | 392 | // object for easy access later |
393 | | - |
| 393 | + |
394 | 394 | $page =& $pages->getPage( $row->aa_page_id ); |
395 | | - |
| 395 | + |
396 | 396 | // determine the unique hash for a given rating set (page rev + user identifying info) |
397 | 397 | $rating_hash = $row->aa_revision . "|" . $row->aa_user_text . "|" . $row->aa_user_anon_token; |
398 | | - |
| 398 | + |
399 | 399 | // add rating data for this page |
400 | | - $page->addRating( $row->aa_rating_id, $row->aa_rating_value, $rating_hash ); |
| 400 | + $page->addRating( $row->aa_rating_id, $row->aa_rating_value, $rating_hash ); |
401 | 401 | } |
402 | 402 | $this->output( "Done.\n" ); |
403 | 403 | return $pages; |
404 | 404 | } |
405 | | - |
| 405 | + |
406 | 406 | /** |
407 | 407 | * Set $this->timestamp |
408 | 408 | * @param int $ts |
— | — | @@ -412,13 +412,13 @@ |
413 | 413 | } |
414 | 414 | $this->lowerBoundTimestamp = $ts; |
415 | 415 | } |
416 | | - |
417 | 416 | |
| 417 | + |
418 | 418 | /** |
419 | 419 | * Get $this->lowerBoundTimestamp |
420 | | - * |
| 420 | + * |
421 | 421 | * If it hasn't been set yet, set it based on the defined polling period. |
422 | | - * |
| 422 | + * |
423 | 423 | * @return int |
424 | 424 | */ |
425 | 425 | public function getLowerBoundTimestamp() { |
— | — | @@ -428,13 +428,13 @@ |
429 | 429 | } |
430 | 430 | return $this->lowerBoundTimestamp; |
431 | 431 | } |
432 | | - |
| 432 | + |
433 | 433 | /** |
434 | 434 | * Add stat type record to article_feedbak_stats_types |
435 | 435 | * @param string $stat_type The identifying name of the stat type (eg 'highs_lows') |
436 | 436 | */ |
437 | 437 | public function addStatType( $stat_type ) { |
438 | | - $this->dbw->insert( |
| 438 | + $this->dbw->insert( |
439 | 439 | 'article_feedback_stats', |
440 | 440 | array( 'afst_type' => $stat_type ), |
441 | 441 | __METHOD__ |
— | — | @@ -446,15 +446,15 @@ |
447 | 447 | /** |
448 | 448 | * A class to represent a page and data about its ratings |
449 | 449 | */ |
450 | | -class Page { |
| 450 | +class AFPage { |
451 | 451 | public $page_id; |
452 | | - |
| 452 | + |
453 | 453 | /** |
454 | 454 | * The number of rating sets recorded for this page |
455 | 455 | * @var int |
456 | 456 | */ |
457 | 457 | public $rating_set_count = 0; |
458 | | - |
| 458 | + |
459 | 459 | /** |
460 | 460 | * An array of ratings for this page |
461 | 461 | * @var array |
— | — | @@ -466,27 +466,27 @@ |
467 | 467 | * @var array |
468 | 468 | */ |
469 | 469 | public $rating_averages = array(); |
470 | | - |
| 470 | + |
471 | 471 | /** |
472 | 472 | * Mean of all ratings for this page |
473 | 473 | * @var float |
474 | 474 | */ |
475 | 475 | public $overall_average; |
476 | | - |
| 476 | + |
477 | 477 | /** |
478 | 478 | * An array of rating set hashes, which are used to identify unique sets of |
479 | 479 | * ratings |
480 | 480 | * @var array |
481 | 481 | */ |
482 | 482 | protected $rating_set_hashes = array(); |
483 | | - |
| 483 | + |
484 | 484 | public function __construct( $page_id ) { |
485 | 485 | if ( !is_numeric( $page_id )) { |
486 | 486 | throw new Exception( 'Page id must be numeric.' ); |
487 | 487 | } |
488 | 488 | $this->page_id = $page_id; |
489 | 489 | } |
490 | | - |
| 490 | + |
491 | 491 | /** |
492 | 492 | * Add a new rating for this particular page |
493 | 493 | * @param int $rating_id |
— | — | @@ -495,15 +495,15 @@ |
496 | 496 | */ |
497 | 497 | public function addRating( $rating_id, $rating_value, $rating_set_hash = null ) { |
498 | 498 | $this->ratings[ $rating_id ][] = $rating_value; |
499 | | - |
| 499 | + |
500 | 500 | if ( $rating_set_hash ) { |
501 | | - $this->trackRatingSet( $rating_set_hash ); |
| 501 | + $this->trackRatingSet( $rating_set_hash ); |
502 | 502 | } |
503 | 503 | } |
504 | | - |
| 504 | + |
505 | 505 | /** |
506 | 506 | * Keep track of rating sets |
507 | | - * |
| 507 | + * |
508 | 508 | * Record when we see a new rating set and increment the set count |
509 | 509 | * @param string $rating_set_hash |
510 | 510 | */ |
— | — | @@ -511,11 +511,11 @@ |
512 | 512 | if ( isset( $this->rating_set_hashes[ $rating_set_hash ] )) { |
513 | 513 | return; |
514 | 514 | } |
515 | | - |
| 515 | + |
516 | 516 | $this->rating_set_hashes[ $rating_set_hash ] = 1; |
517 | 517 | $this->rating_set_count += 1; |
518 | 518 | } |
519 | | - |
| 519 | + |
520 | 520 | public function calculateRatingAverages() { |
521 | 521 | // determine averages for each rating type |
522 | 522 | foreach( $this->ratings as $rating_id => $rating ) { |
— | — | @@ -523,8 +523,8 @@ |
524 | 524 | $rating_avg = $rating_sum / count( $rating ); |
525 | 525 | $this->rating_averages[ $rating_id ] = $rating_avg; |
526 | 526 | } |
527 | | - |
528 | | - // determine overall rating average for this page |
| 527 | + |
| 528 | + // determine overall rating average for this page |
529 | 529 | if ( count( $this->rating_averages )) { |
530 | 530 | $overall_rating_sum = array_sum( $this->rating_averages ); |
531 | 531 | $overall_rating_average = $overall_rating_sum / count( $this->rating_averages ); |
— | — | @@ -533,7 +533,7 @@ |
534 | 534 | } |
535 | 535 | $this->overall_average = $overall_rating_average; |
536 | 536 | } |
537 | | - |
| 537 | + |
538 | 538 | /** |
539 | 539 | * Returns whether or not this page is considered problematic |
540 | 540 | * @return bool |
— | — | @@ -544,11 +544,11 @@ |
545 | 545 | } |
546 | 546 | return $this->problematic; |
547 | 547 | } |
548 | | - |
| 548 | + |
549 | 549 | /** |
550 | 550 | * Determine whether this article is 'problematic' |
551 | 551 | * |
552 | | - * If a page has one or more rating categories where 70% of the ratings are |
| 552 | + * If a page has one or more rating categories where 70% of the ratings are |
553 | 553 | * <= 2, it is considered problematic. |
554 | 554 | */ |
555 | 555 | public function determineProblematicStatus() { |
— | — | @@ -559,14 +559,14 @@ |
560 | 560 | $count += 1; |
561 | 561 | } |
562 | 562 | } |
563 | | - |
| 563 | + |
564 | 564 | $threshold = round( 0.7 * count( $ratings )); |
565 | 565 | if ( $count >= $threshold ) { |
566 | 566 | $this->problematic = true; |
567 | 567 | return; |
568 | 568 | } |
569 | 569 | } |
570 | | - |
| 570 | + |
571 | 571 | $this->problematic = false; |
572 | 572 | return; |
573 | 573 | } |
— | — | @@ -574,27 +574,27 @@ |
575 | 575 | |
576 | 576 | /** |
577 | 577 | * A storage class to keep track of PageRatings object by page |
578 | | - * |
| 578 | + * |
579 | 579 | * Iterable on array of pages. |
580 | 580 | */ |
581 | | -class Pages implements IteratorAggregate { |
| 581 | +class AFPages implements IteratorAggregate { |
582 | 582 | /** |
583 | 583 | * An array of page rating objects |
584 | 584 | * @var array |
585 | 585 | */ |
586 | 586 | public $pages = array(); |
587 | | - |
| 587 | + |
588 | 588 | public function &getPage( $page_id ) { |
589 | 589 | if ( !isset( $this->pages[ $page_id ] )) { |
590 | 590 | $this->addPage( $page_id ); |
591 | 591 | } |
592 | 592 | return $this->pages[ $page_id ]; |
593 | 593 | } |
594 | | - |
| 594 | + |
595 | 595 | public function addPage( $page_id ) { |
596 | | - $this->pages[ $page_id ] = new Page( $page_id ); |
| 596 | + $this->pages[ $page_id ] = new AFPage( $page_id ); |
597 | 597 | } |
598 | | - |
| 598 | + |
599 | 599 | public function getIterator() { |
600 | 600 | return new ArrayIterator( $this->pages ); |
601 | 601 | } |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/modules/jquery.articleFeedback/jquery.articleFeedback.js |
— | — | @@ -112,7 +112,9 @@ |
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 | + <div class="articleFeedback-visibleWith-form">\ |
| 117 | + <div class="articleFeedback-rating-tooltip"></div>\ |
| 118 | + </div>\ |
117 | 119 | <div class="articleFeedback-rating-average articleFeedback-visibleWith-report"></div>\ |
118 | 120 | <div class="articleFeedback-rating-meter articleFeedback-visibleWith-report"><div></div></div>\ |
119 | 121 | <div class="articleFeedback-rating-count articleFeedback-visibleWith-report"></div>\ |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/modules/jquery.articleFeedback/jquery.articleFeedback.css |
— | — | @@ -227,7 +227,7 @@ |
228 | 228 | |
229 | 229 | .articleFeedback-rating-tooltip { |
230 | 230 | float: left; |
231 | | - width: 170px; |
| 231 | + width: 12em; |
232 | 232 | margin-left: 12px; |
233 | 233 | color: #999999; |
234 | 234 | font-size: 0.9em; |
Index: branches/wmf/1.17wmf1/extensions/ArticleFeedback/ArticleFeedback.i18n.php |
— | — | @@ -379,10 +379,25 @@ |
380 | 380 | 'articlefeedback-report-ratings' => '$1 {{PLURAL:$1|адзнака|адзнакі|адзнакаў}}', |
381 | 381 | 'articlefeedback-field-trustworthy-label' => 'Надзейны', |
382 | 382 | 'articlefeedback-field-trustworthy-tip' => 'Вы лічыце, што гэтая старонка мае дастаткова цытатаў, і яны паходзяць з крыніц вартых даверу?', |
| 383 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Няма аўтарытэтных крыніцаў', |
| 384 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Няшмат аўтарытэтных крыніцаў', |
| 385 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Дастаткова аўтарытэтных крыніцаў', |
| 386 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Добрыя аўтарытэтныя крыніцы', |
| 387 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Выдатныя аўтарытэтныя крыніцы', |
383 | 388 | 'articlefeedback-field-complete-label' => 'Скончанасьць', |
384 | 389 | 'articlefeedback-field-complete-tip' => 'Вы лічыце, што гэтая старонка раскрывае асноўныя пытаньні тэмы як сьлед?', |
| 390 | + 'articlefeedback-field-complete-tooltip-1' => 'Большая частка інфармацыі адсутнічае', |
| 391 | + 'articlefeedback-field-complete-tooltip-2' => 'Утрымлівае некаторую інфармацыю', |
| 392 | + 'articlefeedback-field-complete-tooltip-3' => 'Утрымлівае ключавую інфармацыю, але ёсьць пропускі', |
| 393 | + 'articlefeedback-field-complete-tooltip-4' => 'Утрымлівае самую важную інфармацыю', |
| 394 | + 'articlefeedback-field-complete-tooltip-5' => 'Вычарпальны ахоп тэмы', |
385 | 395 | 'articlefeedback-field-objective-label' => "Аб'ектыўны", |
386 | 396 | 'articlefeedback-field-objective-tip' => 'Вы лічыце, што на гэтай старонцы адлюстраваныя усе пункты гледжаньня на пытаньне?', |
| 397 | + 'articlefeedback-field-objective-tooltip-1' => 'Вельмі тэндэнцыйны', |
| 398 | + 'articlefeedback-field-objective-tooltip-2' => 'Памяркоўна тэндэнцыйны', |
| 399 | + 'articlefeedback-field-objective-tooltip-3' => 'Крыху тэндэнцыйны', |
| 400 | + 'articlefeedback-field-objective-tooltip-4' => 'Няма адназначнай тэндэнцыйнасьці', |
| 401 | + 'articlefeedback-field-objective-tooltip-5' => 'Поўнасьцю бесстароньні', |
387 | 402 | 'articlefeedback-field-wellwritten-label' => 'Добра напісаны', |
388 | 403 | 'articlefeedback-field-wellwritten-tip' => 'Вы лічыце, што гэтая старонка добра арганізаваная і добра напісаная?', |
389 | 404 | 'articlefeedback-pitch-reject' => 'Можа потым', |
— | — | @@ -939,12 +954,32 @@ |
940 | 955 | 'articlefeedback-report-ratings' => '$1 Einschätzungen', |
941 | 956 | 'articlefeedback-field-trustworthy-label' => 'Vertrauenswürdig', |
942 | 957 | 'articlefeedback-field-trustworthy-tip' => 'Hast du den Eindruck, dass diese Seite über genügend Quellenangaben verfügt und diese zudem aus vertrauenswürdigen Quellen stammen?', |
| 958 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Enthält keine seriösen Quellenangaben', |
| 959 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Enthält wenig seriöse Quellenangaben', |
| 960 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Enthält angemessen seriöse Quellen', |
| 961 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Enthält seriöse Quellenangaben', |
| 962 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Enthält sehr seriöse Quellenangaben', |
943 | 963 | 'articlefeedback-field-complete-label' => 'Vollständig', |
944 | 964 | 'articlefeedback-field-complete-tip' => 'Hast du den Eindruck, dass diese Seite alle wichtigen Aspekte enthält, die mit dessen Inhalt zusammenhängen?', |
| 965 | + 'articlefeedback-field-complete-tooltip-1' => 'Enthält kaum Informationen', |
| 966 | + 'articlefeedback-field-complete-tooltip-2' => 'Enthält einige Informationen', |
| 967 | + 'articlefeedback-field-complete-tooltip-3' => 'Enthält wichtige Informationen, weist aber Lücken auf', |
| 968 | + 'articlefeedback-field-complete-tooltip-4' => 'Enthält die meisten wichtigen Informationen', |
| 969 | + 'articlefeedback-field-complete-tooltip-5' => 'Enthält umfassende Informationen', |
945 | 970 | 'articlefeedback-field-objective-label' => 'Unvoreingenommen', |
946 | 971 | 'articlefeedback-field-objective-tip' => 'Hast du den Eindruck, dass diese Seite eine ausgewogene Darstellung aller mit deren Inhalt verbundenen Aspekte enthält?', |
| 972 | + 'articlefeedback-field-objective-tooltip-1' => 'Ist sehr einseitig', |
| 973 | + 'articlefeedback-field-objective-tooltip-2' => 'Ist mäßig einseitig', |
| 974 | + 'articlefeedback-field-objective-tooltip-3' => 'Ist kaum einseitig', |
| 975 | + 'articlefeedback-field-objective-tooltip-4' => 'Ist nicht offensichtlich einseitig', |
| 976 | + 'articlefeedback-field-objective-tooltip-5' => 'Ist nicht einseitig', |
947 | 977 | 'articlefeedback-field-wellwritten-label' => 'Gut geschrieben', |
948 | 978 | 'articlefeedback-field-wellwritten-tip' => 'Hast du den Eindruck, dass diese Seite gut strukturiert sowie geschrieben wurde?', |
| 979 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Ist unverständlich', |
| 980 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Ist schwer verständlich', |
| 981 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Ist ausreichend verständlich', |
| 982 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Ist gut verständlich', |
| 983 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Ist außergewöhnlich gut verständlich', |
949 | 984 | 'articlefeedback-pitch-reject' => 'Vielleicht später', |
950 | 985 | 'articlefeedback-pitch-or' => 'oder', |
951 | 986 | 'articlefeedback-pitch-thanks' => 'Vielen Dank! Deine Einschätzung wurde gespeichert.', |
— | — | @@ -1731,12 +1766,32 @@ |
1732 | 1767 | 'articlefeedback-report-ratings' => '$1 avaliacións', |
1733 | 1768 | 'articlefeedback-field-trustworthy-label' => 'Fidedigno', |
1734 | 1769 | 'articlefeedback-field-trustworthy-tip' => 'Cre que esta páxina ten citas suficientes e que estas son de fontes fiables?', |
| 1770 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Carece de fontes fidedignas', |
| 1771 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Ten poucas fontes respectables', |
| 1772 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'As fontes son suficientes', |
| 1773 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'As fontes son boas', |
| 1774 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'As fontes son excelentes', |
1735 | 1775 | 'articlefeedback-field-complete-label' => 'Completo', |
1736 | 1776 | 'articlefeedback-field-complete-tip' => 'Cre que esta páxina aborda as áreas esenciais do tema que debería?', |
| 1777 | + 'articlefeedback-field-complete-tooltip-1' => 'Carece da información máis importante', |
| 1778 | + 'articlefeedback-field-complete-tooltip-2' => 'Contén información parcial', |
| 1779 | + 'articlefeedback-field-complete-tooltip-3' => 'Contén a información clave, pero aínda faltan datos', |
| 1780 | + 'articlefeedback-field-complete-tooltip-4' => 'Contén a meirande parte da información clave', |
| 1781 | + 'articlefeedback-field-complete-tooltip-5' => 'Contén toda a información importante', |
1737 | 1782 | 'articlefeedback-field-objective-label' => 'Imparcial', |
1738 | 1783 | 'articlefeedback-field-objective-tip' => 'Cre que esta páxina mostra unha representación xusta de todas as perspectivas do tema?', |
| 1784 | + 'articlefeedback-field-objective-tooltip-1' => 'Moi parcial', |
| 1785 | + 'articlefeedback-field-objective-tooltip-2' => 'Moderadamente parcial', |
| 1786 | + 'articlefeedback-field-objective-tooltip-3' => 'Minimamente parcial', |
| 1787 | + 'articlefeedback-field-objective-tooltip-4' => 'Sen parcialidades obvias', |
| 1788 | + 'articlefeedback-field-objective-tooltip-5' => 'Completamente imparcial', |
1739 | 1789 | 'articlefeedback-field-wellwritten-label' => 'Ben escrito', |
1740 | 1790 | 'articlefeedback-field-wellwritten-tip' => 'Cre que esta páxina está ben organizada e escrita?', |
| 1791 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Incomprensible', |
| 1792 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Difícil de entender', |
| 1793 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Claridade adecuada', |
| 1794 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Claridade boa', |
| 1795 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Claridade excepcional', |
1741 | 1796 | 'articlefeedback-pitch-reject' => 'Talvez logo', |
1742 | 1797 | 'articlefeedback-pitch-or' => 'ou', |
1743 | 1798 | 'articlefeedback-pitch-thanks' => 'Grazas! Gardáronse as súas valoracións.', |
— | — | @@ -1898,12 +1953,32 @@ |
1899 | 1954 | 'articlefeedback-report-ratings' => '$1 דירוגים', |
1900 | 1955 | 'articlefeedback-field-trustworthy-label' => 'אמין', |
1901 | 1956 | 'articlefeedback-field-trustworthy-tip' => 'האם אתם מרגישים שבדף הזה יש הפניות מספיקות למקורות ושהמקורות מהימנים?', |
| 1957 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'חסרים מקורות מהימנים', |
| 1958 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'מעט מקורות מהימנים', |
| 1959 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'מקורות מהימנים מהימנים', |
| 1960 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'מקורות מהימנים טובים', |
| 1961 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'מקורות מהימנים מעולים', |
1902 | 1962 | 'articlefeedback-field-complete-label' => 'להשלים', |
1903 | 1963 | 'articlefeedback-field-complete-tip' => 'האם אתם מרגישים שהדף הזה סוקר את התחומים החיוניים הנוגעים בנושא?', |
| 1964 | + 'articlefeedback-field-complete-tooltip-1' => 'רוב המידע חסר', |
| 1965 | + 'articlefeedback-field-complete-tooltip-2' => 'קיים חלק מהמידע', |
| 1966 | + 'articlefeedback-field-complete-tooltip-3' => 'מכיל מידע עיקרי, אבל יש חוסרים', |
| 1967 | + 'articlefeedback-field-complete-tooltip-4' => 'מכיל את רוב המידע העיקרי', |
| 1968 | + 'articlefeedback-field-complete-tooltip-5' => 'סיקור מקיף', |
1904 | 1969 | 'articlefeedback-field-objective-label' => 'לא מוטה', |
1905 | 1970 | 'articlefeedback-field-objective-tip' => 'האם אתם מרגישים שהדף הזה מייצג באופן הולם את כל נקודות המבט על הנושא?', |
| 1971 | + 'articlefeedback-field-objective-tooltip-1' => 'מוטה מאוד', |
| 1972 | + 'articlefeedback-field-objective-tooltip-2' => 'קיימת הטיה מסוימת', |
| 1973 | + 'articlefeedback-field-objective-tooltip-3' => 'קיימת הטיה מזערית', |
| 1974 | + 'articlefeedback-field-objective-tooltip-4' => 'אין הטיה מובהקת', |
| 1975 | + 'articlefeedback-field-objective-tooltip-5' => 'אין שום הטיה', |
1906 | 1976 | 'articlefeedback-field-wellwritten-label' => 'כתוב היטב', |
1907 | 1977 | 'articlefeedback-field-wellwritten-tip' => 'האם אתם מרגישים שהדף הזה מאורגן וכתוב היטב?', |
| 1978 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'לא ברור כלל', |
| 1979 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'קשה להבנה', |
| 1980 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'ברור באופן סביר', |
| 1981 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'ברור', |
| 1982 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'ברור מאוד', |
1908 | 1983 | 'articlefeedback-pitch-reject' => 'אולי מאוחר יותר', |
1909 | 1984 | 'articlefeedback-pitch-or' => 'או', |
1910 | 1985 | 'articlefeedback-pitch-thanks' => 'תודה! הדירוגים שלכם נשמרו.', |
— | — | @@ -2153,12 +2228,32 @@ |
2154 | 2229 | 'articlefeedback-report-ratings' => '$1 evalutationes', |
2155 | 2230 | 'articlefeedback-field-trustworthy-label' => 'Digne de fide', |
2156 | 2231 | 'articlefeedback-field-trustworthy-tip' => 'Pensa tu que iste pagina ha sufficiente citationes e que iste citationes refere a fontes digne de fide?', |
| 2232 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Care de fontes digne de fide', |
| 2233 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Pauc fontes digne de fide', |
| 2234 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Adequate fontes digne de fide', |
| 2235 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Bon fontes digne de fide', |
| 2236 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Excellente fontes digne de fide', |
2157 | 2237 | 'articlefeedback-field-complete-label' => 'Complete', |
2158 | 2238 | 'articlefeedback-field-complete-tip' => 'Pensa tu que iste pagina coperi le themas essential que illo deberea coperir?', |
| 2239 | + 'articlefeedback-field-complete-tooltip-1' => 'Manca le major parte del information', |
| 2240 | + 'articlefeedback-field-complete-tooltip-2' => 'Contine alcun information', |
| 2241 | + 'articlefeedback-field-complete-tooltip-3' => 'Contine information importante, ma con lacunas', |
| 2242 | + 'articlefeedback-field-complete-tooltip-4' => 'Contine le major parte del information importante', |
| 2243 | + 'articlefeedback-field-complete-tooltip-5' => 'Contine information comprehensive', |
2159 | 2244 | 'articlefeedback-field-objective-label' => 'Impartial', |
2160 | 2245 | 'articlefeedback-field-objective-tip' => 'Pensa tu que iste pagina monstra un representation juste de tote le perspectivas super le question?', |
| 2246 | + 'articlefeedback-field-objective-tooltip-1' => 'Multo partial', |
| 2247 | + 'articlefeedback-field-objective-tooltip-2' => 'Moderatemente partial', |
| 2248 | + 'articlefeedback-field-objective-tooltip-3' => 'Minimalmente partial', |
| 2249 | + 'articlefeedback-field-objective-tooltip-4' => 'Non obviemente partial', |
| 2250 | + 'articlefeedback-field-objective-tooltip-5' => 'Completemente impartial', |
2161 | 2251 | 'articlefeedback-field-wellwritten-label' => 'Ben scribite', |
2162 | 2252 | 'articlefeedback-field-wellwritten-tip' => 'Pensa tu que iste pagina es ben organisate e ben scribite?', |
| 2253 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Incomprehensibile', |
| 2254 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Difficile a comprender', |
| 2255 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Adequatemente clar', |
| 2256 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Ben clar', |
| 2257 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Exceptionalmente clar', |
2163 | 2258 | 'articlefeedback-pitch-reject' => 'Forsan plus tarde', |
2164 | 2259 | 'articlefeedback-pitch-or' => 'o', |
2165 | 2260 | 'articlefeedback-pitch-thanks' => 'Gratias! Tu evalutation ha essite salveguardate.', |
— | — | @@ -2358,12 +2453,28 @@ |
2359 | 2454 | 'articlefeedback-report-ratings' => '$1 voti', |
2360 | 2455 | 'articlefeedback-field-trustworthy-label' => 'Affidabile', |
2361 | 2456 | 'articlefeedback-field-trustworthy-tip' => 'Ritieni che questa pagina abbia citazioni sufficienti e che queste citazioni provengano da fonti attendibili?', |
| 2457 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Manca di fonti affidabili', |
| 2458 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Poche fonti affidabili', |
| 2459 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Adeguate fonti affidabili', |
| 2460 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Buone fonti affidabili', |
| 2461 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Eccellenti fonti affidabili', |
2362 | 2462 | 'articlefeedback-field-complete-label' => 'Completa', |
2363 | 2463 | 'articlefeedback-field-complete-tip' => 'Ritieni che questa pagina copra le aree tematiche essenziali che dovrebbe?', |
| 2464 | + 'articlefeedback-field-complete-tooltip-1' => 'Manca la maggior parte delle informazioni', |
| 2465 | + 'articlefeedback-field-complete-tooltip-2' => 'Contiene alcune informazioni', |
| 2466 | + 'articlefeedback-field-complete-tooltip-3' => 'Contiene le informazioni chiave, ma con lacune', |
| 2467 | + 'articlefeedback-field-complete-tooltip-4' => 'Contiene la maggior parte delle informazioni chiave', |
| 2468 | + 'articlefeedback-field-complete-tooltip-5' => 'Trattazione completa', |
2364 | 2469 | 'articlefeedback-field-objective-label' => 'Obiettiva', |
2365 | 2470 | 'articlefeedback-field-objective-tip' => 'Ritieni che questa pagina mostri una rappresentazione equa di tutti i punti di vista sul tema?', |
| 2471 | + 'articlefeedback-field-objective-tooltip-5' => 'Completamente imparziale', |
2366 | 2472 | 'articlefeedback-field-wellwritten-label' => 'Ben scritta', |
2367 | 2473 | 'articlefeedback-field-wellwritten-tip' => 'Ritieni che questa pagina sia ben organizzata e ben scritta?', |
| 2474 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Incomprensibile', |
| 2475 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Difficile da capire', |
| 2476 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Abbastanza chiaro', |
| 2477 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Molto chiaro', |
| 2478 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Eccezionalmente comprensibile', |
2368 | 2479 | 'articlefeedback-pitch-reject' => 'Forse più tardi', |
2369 | 2480 | 'articlefeedback-pitch-or' => 'o', |
2370 | 2481 | 'articlefeedback-pitch-thanks' => 'Grazie! Le tue valutazioni sono state salvate.', |
— | — | @@ -2383,7 +2494,7 @@ |
2384 | 2495 | 'articleFeedback-table-heading-page' => 'Pagina', |
2385 | 2496 | 'articleFeedback-table-heading-average' => 'Media', |
2386 | 2497 | 'articleFeedback-copy-above-highlow-tables' => 'Questa è una funzione sperimentale. Lascia un feedback sulla [$1 pagina di discussione].', |
2387 | | - 'articleFeedback-copy-below-highlow-tables' => 'Queste tabelle contengono gli articoli che hanno ricevuto almeno 10 voti nelle ultime 24 ore. Le medie sono calcolate prendendo in considerazione tutte le valutazioni presentate nelle ultime 24 ore.', |
| 2498 | + 'articlefeedback-disable-preference' => 'Non mostrare il widget di valutazione sulle pagine (Article Feedback)', |
2388 | 2499 | ); |
2389 | 2500 | |
2390 | 2501 | /** Japanese (日本語) |
— | — | @@ -2943,12 +3054,32 @@ |
2944 | 3055 | 'articlefeedback-report-ratings' => '$1 оценки', |
2945 | 3056 | 'articlefeedback-field-trustworthy-label' => 'Веродостојност', |
2946 | 3057 | 'articlefeedback-field-trustworthy-tip' => 'Дали сметате дека страницава има доволно наводи и дека изворите се веродостојни?', |
| 3058 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Нема меродавни извори', |
| 3059 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Малку меродавни извори', |
| 3060 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Достатни меродавни извори', |
| 3061 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Солидни меродавни извори', |
| 3062 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Одлични меродавни извори', |
2947 | 3063 | 'articlefeedback-field-complete-label' => 'Исцрпност', |
2948 | 3064 | 'articlefeedback-field-complete-tip' => 'Дали сметате дека статијава ги обработува најважните основни теми што треба да се обработат?', |
| 3065 | + 'articlefeedback-field-complete-tooltip-1' => 'Недостасуваат највеќето информации', |
| 3066 | + 'articlefeedback-field-complete-tooltip-2' => 'Содржи извесни информации', |
| 3067 | + 'articlefeedback-field-complete-tooltip-3' => 'Содржи клучни информации, но со празнини или пропусти', |
| 3068 | + 'articlefeedback-field-complete-tooltip-4' => 'Го содржи поголемиот дел клучните информации', |
| 3069 | + 'articlefeedback-field-complete-tooltip-5' => 'Сеопфатна покриеност', |
2949 | 3070 | 'articlefeedback-field-objective-label' => 'Непристрасност', |
2950 | 3071 | 'articlefeedback-field-objective-tip' => 'Дали сметате дека статијава на праведен начин ги застапува сите гледишта по оваа проблематика?', |
| 3072 | + 'articlefeedback-field-objective-tooltip-1' => 'Многу пристрасна', |
| 3073 | + 'articlefeedback-field-objective-tooltip-2' => 'Умерено пристрасна', |
| 3074 | + 'articlefeedback-field-objective-tooltip-3' => 'Минимално пристрасна', |
| 3075 | + 'articlefeedback-field-objective-tooltip-4' => 'Нема воочлива пристрасност', |
| 3076 | + 'articlefeedback-field-objective-tooltip-5' => 'Сосема непристрасна', |
2951 | 3077 | 'articlefeedback-field-wellwritten-label' => 'Добро напишана', |
2952 | 3078 | 'articlefeedback-field-wellwritten-tip' => 'Дали сметате дека страницава е добро организирана и убаво напишана?', |
| 3079 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Неразбирлива', |
| 3080 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Тешко се разбира', |
| 3081 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Достатно јасна', |
| 3082 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Мошне јасна', |
| 3083 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Исклучително јасна', |
2953 | 3084 | 'articlefeedback-pitch-reject' => 'Можеби подоцна', |
2954 | 3085 | 'articlefeedback-pitch-or' => 'или', |
2955 | 3086 | 'articlefeedback-pitch-thanks' => 'Ви благодариме! Вашите оценки се зачувани.', |
— | — | @@ -3046,12 +3177,32 @@ |
3047 | 3178 | 'articlefeedback-report-ratings' => '$1 നിലവാരമിടലുകൾ', |
3048 | 3179 | 'articlefeedback-field-trustworthy-label' => 'വിശ്വാസയോഗ്യം', |
3049 | 3180 | 'articlefeedback-field-trustworthy-tip' => 'ഈ താളിൽ വിശ്വസനീയങ്ങളായ സ്രോതസ്സുകളെ ആശ്രയിക്കുന്ന ആവശ്യമായത്ര അവലംബങ്ങൾ ഉണ്ടെന്ന് താങ്കൾ കരുതുന്നുണ്ടോ?', |
| 3181 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'ഗണനീയമായ സ്രോതസ്സുകളില്ല', |
| 3182 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'ഗണനീയമായ കുറച്ച് സ്രോതസ്സുകൾ മാത്രം', |
| 3183 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'ഗണനീയമായ സ്രോതസ്സുകൾ സാമാന്യമുണ്ട്', |
| 3184 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'ഗണനീയമായ സ്രോതസ്സുകൾ നല്ലവണ്ണമുണ്ട്', |
| 3185 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'ഗണനീയമായ സ്രോതസ്സുകൾ നിരവധി', |
3050 | 3186 | 'articlefeedback-field-complete-label' => 'സമ്പൂർണ്ണം', |
3051 | 3187 | 'articlefeedback-field-complete-tip' => 'ഈ താൾ അത് ഉൾക്കൊള്ളേണ്ട എല്ലാ മേഖലകളും ഉൾക്കൊള്ളുന്നതായി താങ്കൾ കരുതുന്നുണ്ടോ?', |
| 3188 | + 'articlefeedback-field-complete-tooltip-1' => 'ബഹുഭൂരിഭാഗം വിവരങ്ങളും ഇല്ല', |
| 3189 | + 'articlefeedback-field-complete-tooltip-2' => 'കുറച്ചു വിവരങ്ങൾ മാത്രം', |
| 3190 | + 'articlefeedback-field-complete-tooltip-3' => 'അടിസ്ഥാന വിവരങ്ങളുണ്ട്, പക്ഷേ തുടർച്ചയില്ല', |
| 3191 | + 'articlefeedback-field-complete-tooltip-4' => 'ബഹുഭൂരിഭാഗം അടിസ്ഥാനവിവരങ്ങളും ഉണ്ട്', |
| 3192 | + 'articlefeedback-field-complete-tooltip-5' => 'വിസ്തൃതമായ പരിധിയിലുൾപ്പെടുത്തിയിട്ടുണ്ട്.', |
3052 | 3193 | 'articlefeedback-field-objective-label' => 'പക്ഷപാതരഹിതം', |
3053 | 3194 | 'articlefeedback-field-objective-tip' => 'ഈ താളിൽ വിഷയത്തിന്റെ എല്ലാ വശത്തിനും അർഹമായ പ്രാതിനിധ്യം ലഭിച്ചതായി താങ്കൾ കരുതുന്നുണ്ടോ?', |
| 3195 | + 'articlefeedback-field-objective-tooltip-1' => 'അത്യധികം പക്ഷപാതമുണ്ട്', |
| 3196 | + 'articlefeedback-field-objective-tooltip-2' => 'സാമാന്യം പക്ഷപാതമുണ്ട്', |
| 3197 | + 'articlefeedback-field-objective-tooltip-3' => 'കുറച്ചു പക്ഷപാതമുണ്ട്', |
| 3198 | + 'articlefeedback-field-objective-tooltip-4' => 'പക്ഷപാതം വ്യക്തമല്ല', |
| 3199 | + 'articlefeedback-field-objective-tooltip-5' => 'പൂർണ്ണമായും പക്ഷപാതരഹിതം', |
3054 | 3200 | 'articlefeedback-field-wellwritten-label' => 'നന്നായി രചിച്ചത്', |
3055 | 3201 | 'articlefeedback-field-wellwritten-tip' => 'ഈ താൾ നന്നായി ക്രമീകരിക്കപ്പെട്ടതും നന്നായി എഴുതപ്പെട്ടതുമാണെന്ന് താങ്കൾ കരുതുന്നുണ്ടോ?', |
| 3202 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'തീർത്തും ദുർഗ്രഹം', |
| 3203 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'മനസ്സിലാക്കാൻ ബുദ്ധിമുട്ടുള്ളത്', |
| 3204 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'ആവശ്യത്തിനു വ്യക്തതയുണ്ട്', |
| 3205 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'നല്ല വ്യക്തതയുണ്ട്', |
| 3206 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'അസാമാന്യ വ്യക്തതയുണ്ട്', |
3056 | 3207 | 'articlefeedback-pitch-reject' => 'പിന്നീട് ആലോചിക്കാം', |
3057 | 3208 | 'articlefeedback-pitch-or' => 'അഥവാ', |
3058 | 3209 | 'articlefeedback-pitch-thanks' => 'നന്ദി! താങ്കൾ നടത്തിയ മൂല്യനിർണ്ണയം സേവ് ചെയ്തിരിക്കുന്നു.', |
— | — | @@ -3074,7 +3225,6 @@ |
3075 | 3226 | 'articleFeedback-table-heading-page' => 'താൾ', |
3076 | 3227 | 'articleFeedback-table-heading-average' => 'ശരാശരി', |
3077 | 3228 | 'articleFeedback-copy-above-highlow-tables' => 'ഇത് പരീക്ഷണാടിസ്ഥാനത്തിലുള്ള സൗകര്യമാണ്. അഭിപ്രായങ്ങൾ [$1 സംവാദം താളിൽ] തീർച്ചയായും അറിയിക്കുക.', |
3078 | | - 'articleFeedback-copy-below-highlow-tables' => 'കഴിഞ്ഞ 24 മണിക്കൂറിനുള്ളിൽ കുറഞ്ഞത് 10 നിലവാരമിടലുകൾ ലഭിച്ച ലേഖനങ്ങൾ ഈ പട്ടികകളിൽ ഉൾക്കൊള്ളിച്ചിരിക്കുന്നു. കഴിഞ്ഞ 14 മണിക്കൂറിനുള്ളിൽ ലഭിച്ച എല്ലാ നിലവാരമിടലുകളുടേയും മധ്യമവിലയെടുത്താണ് ശരാശരി കണക്കുകൂട്ടിയിരിക്കുന്നത്.', |
3079 | 3229 | 'articlefeedback-emailcapture-response-body' => 'നമസ്കാരം! |
3080 | 3230 | |
3081 | 3231 | {{SITENAME}} മെച്ചപ്പെടുത്താനുള്ള സഹായം ചെയ്യാൻ സന്നദ്ധത പ്രകടിപ്പിച്ചതിന് ആത്മാർത്ഥമായ നന്ദി. |
— | — | @@ -3154,12 +3304,32 @@ |
3155 | 3305 | 'articlefeedback-report-ratings' => '$1 penilaian', |
3156 | 3306 | 'articlefeedback-field-trustworthy-label' => 'Boleh dipercayai', |
3157 | 3307 | '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?', |
| 3308 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Ketandusan sumber yang bereputasi baik', |
| 3309 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Kekurangan sumber yang bereputasi baik', |
| 3310 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Cukup sumber yang bereputasi baik', |
| 3311 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Banyak sumber yang bereputasi baik', |
| 3312 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Banyak sekali sumber yang bereputasi baik', |
3158 | 3313 | 'articlefeedback-field-complete-label' => 'Lengkap', |
3159 | 3314 | 'articlefeedback-field-complete-tip' => 'Adakah anda berpendapat bahawa laman ini merangkumi bahan-bahan topik terpenting yang sewajarnya?', |
| 3315 | + 'articlefeedback-field-complete-tooltip-1' => 'Ketandusan maklumat', |
| 3316 | + 'articlefeedback-field-complete-tooltip-2' => 'Sedikit maklumat', |
| 3317 | + 'articlefeedback-field-complete-tooltip-3' => 'Mengandungi maklumat penting, tetapi berlompang', |
| 3318 | + 'articlefeedback-field-complete-tooltip-4' => 'Mengandungi kebanyakan maklumat penting', |
| 3319 | + 'articlefeedback-field-complete-tooltip-5' => 'Liputan menyeluruh', |
3160 | 3320 | 'articlefeedback-field-objective-label' => 'Objektif', |
3161 | 3321 | 'articlefeedback-field-objective-tip' => 'Adakah anda berpendapat bahawa laman ini menunjukkan pernyataan yang adil daripada semua sudut pandangan tentang isu ini?', |
| 3322 | + 'articlefeedback-field-objective-tooltip-1' => 'Terlalu berat sebelah', |
| 3323 | + 'articlefeedback-field-objective-tooltip-2' => 'Sederhana berat sebelah', |
| 3324 | + 'articlefeedback-field-objective-tooltip-3' => 'Sedikit berat sebelah', |
| 3325 | + 'articlefeedback-field-objective-tooltip-4' => 'Tiada berat sebelah yang ketara', |
| 3326 | + 'articlefeedback-field-objective-tooltip-5' => 'Langsung tidak berat sebelah', |
3162 | 3327 | 'articlefeedback-field-wellwritten-label' => 'Kemas', |
3163 | 3328 | 'articlefeedback-field-wellwritten-tip' => 'Adakah anda berpendapat bahawa laman ini disusun dan ditulis dengan kemas?', |
| 3329 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Tidak boleh difahami', |
| 3330 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Sukar difahami', |
| 3331 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Cukup boleh difahami', |
| 3332 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Mudah difahami', |
| 3333 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Amat mudah difahami', |
3164 | 3334 | 'articlefeedback-pitch-reject' => 'Lain kalilah', |
3165 | 3335 | 'articlefeedback-pitch-or' => 'atau', |
3166 | 3336 | 'articlefeedback-pitch-thanks' => 'Terima kasih! Penilaian anda telah disimpan.', |
— | — | @@ -3305,12 +3475,32 @@ |
3306 | 3476 | 'articlefeedback-report-ratings' => '$1 beoordelingen', |
3307 | 3477 | 'articlefeedback-field-trustworthy-label' => 'Betrouwbaar', |
3308 | 3478 | 'articlefeedback-field-trustworthy-tip' => 'Vindt u dat deze pagina voldoende bronvermeldingen heeft en dat de bronvermeldingen betrouwbaar zijn?', |
| 3479 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Zonder betrouwbare bronnen', |
| 3480 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Weinig betrouwbare bronnen', |
| 3481 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Voldoende betrouwbare bronnen', |
| 3482 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Goede betrouwbare bronnen', |
| 3483 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Uitstekend betrouwbare bronnen', |
3309 | 3484 | 'articlefeedback-field-complete-label' => 'Afgerond', |
3310 | 3485 | 'articlefeedback-field-complete-tip' => 'Vindt u dat deze pagina de essentie van dit onderwerp bestrijkt?', |
| 3486 | + 'articlefeedback-field-complete-tooltip-1' => 'Meeste informatie ontbreekt', |
| 3487 | + 'articlefeedback-field-complete-tooltip-2' => 'Bevat enige informatie', |
| 3488 | + 'articlefeedback-field-complete-tooltip-3' => 'Bevat belangrijke informatie, maar met gaten', |
| 3489 | + 'articlefeedback-field-complete-tooltip-4' => 'Bevat de meeste belangrijke informatie', |
| 3490 | + 'articlefeedback-field-complete-tooltip-5' => 'Uitgebreide dekking', |
3311 | 3491 | 'articlefeedback-field-objective-label' => 'Onbevooroordeeld', |
3312 | 3492 | 'articlefeedback-field-objective-tip' => 'Vindt u dat deze pagina een eerlijke weergave is van alle invalshoeken voor dit onderwerp?', |
| 3493 | + 'articlefeedback-field-objective-tooltip-1' => 'Zeer partijdig', |
| 3494 | + 'articlefeedback-field-objective-tooltip-2' => 'Matig partijdig', |
| 3495 | + 'articlefeedback-field-objective-tooltip-3' => 'Beetje partijdig', |
| 3496 | + 'articlefeedback-field-objective-tooltip-4' => 'Geen duidelijke partijdigheid', |
| 3497 | + 'articlefeedback-field-objective-tooltip-5' => 'Helemaal niet partijdig', |
3313 | 3498 | 'articlefeedback-field-wellwritten-label' => 'Goed geschreven', |
3314 | 3499 | 'articlefeedback-field-wellwritten-tip' => 'Vindt u dat deze pagina een correcte opbouw heeft een goed is geschreven?', |
| 3500 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Onbegrijpelijk', |
| 3501 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Moeilijk te begrijpen', |
| 3502 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Voldoende duidelijk', |
| 3503 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Heel duidelijk', |
| 3504 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Uitzonderlijk duidelijk', |
3315 | 3505 | 'articlefeedback-pitch-reject' => 'Nu niet', |
3316 | 3506 | 'articlefeedback-pitch-or' => 'of', |
3317 | 3507 | 'articlefeedback-pitch-thanks' => 'Bedankt! |
— | — | @@ -3579,12 +3769,32 @@ |
3580 | 3770 | 'articlefeedback-report-ratings' => '$1 {{PLURAL:$1|ocena|oceny|ocen}}', |
3581 | 3771 | 'articlefeedback-field-trustworthy-label' => 'Godny zaufania', |
3582 | 3772 | 'articlefeedback-field-trustworthy-tip' => 'Czy uważasz, że strona ma wystarczającą liczbę odnośników i że odnoszą się one do wiarygodnych źródeł?', |
| 3773 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Brak wiarygodnych źródeł', |
| 3774 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Niewiele wiarygodnych źródeł', |
| 3775 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Wystarczająca liczba wiarygodnych źródeł', |
| 3776 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Dobra liczba wiarygodnych źródeł', |
| 3777 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Bardzo wiele wiarygodnych źródeł', |
3583 | 3778 | 'articlefeedback-field-complete-label' => 'Wyczerpanie tematu', |
3584 | 3779 | 'articlefeedback-field-complete-tip' => 'Czy uważasz, że strona porusza wszystkie istotne aspekty, które powinna?', |
| 3780 | + 'articlefeedback-field-complete-tooltip-1' => 'Brak wielu informacji', |
| 3781 | + 'articlefeedback-field-complete-tooltip-2' => 'Zawiera trochę informacji', |
| 3782 | + 'articlefeedback-field-complete-tooltip-3' => 'Zawiera najważniejsze informacje, ale ma braki', |
| 3783 | + 'articlefeedback-field-complete-tooltip-4' => 'Zawiera większość najważniejszych informacji', |
| 3784 | + 'articlefeedback-field-complete-tooltip-5' => 'Wyczerpuje temat', |
3585 | 3785 | 'articlefeedback-field-objective-label' => 'Neutralny', |
3586 | 3786 | 'articlefeedback-field-objective-tip' => 'Czy uważasz, że strona prezentuje wszystkie punkty widzenia na to zagadnienie?', |
| 3787 | + 'articlefeedback-field-objective-tooltip-1' => 'Bardzo tendencyjny', |
| 3788 | + 'articlefeedback-field-objective-tooltip-2' => 'Umiarkowanie tendencyjny', |
| 3789 | + 'articlefeedback-field-objective-tooltip-3' => 'Minimalnie tendencyjny', |
| 3790 | + 'articlefeedback-field-objective-tooltip-4' => 'Brak jednoznacznej tendencyjności', |
| 3791 | + 'articlefeedback-field-objective-tooltip-5' => 'Całkowicie bezstronny', |
3587 | 3792 | 'articlefeedback-field-wellwritten-label' => 'Dobrze napisany', |
3588 | 3793 | 'articlefeedback-field-wellwritten-tip' => 'Czy uważasz, że strona jest właściwie sformatowana oraz zrozumiale napisana?', |
| 3794 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Niezrozumiały', |
| 3795 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Trudny do zrozumienia', |
| 3796 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'W miarę zrozumiały', |
| 3797 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Dobrze zrozumiały', |
| 3798 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Wyjątkowo dobrze zrozumiały', |
3589 | 3799 | 'articlefeedback-pitch-reject' => 'Może później', |
3590 | 3800 | 'articlefeedback-pitch-or' => 'lub', |
3591 | 3801 | 'articlefeedback-pitch-thanks' => 'Dziękujemy! Wystawione przez Ciebie oceny zostały zapisane.', |
— | — | @@ -3607,7 +3817,6 @@ |
3608 | 3818 | 'articleFeedback-table-heading-page' => 'Strona', |
3609 | 3819 | 'articleFeedback-table-heading-average' => 'Średnio', |
3610 | 3820 | 'articleFeedback-copy-above-highlow-tables' => 'To jest rozwiązanie eksperymentalne. Wyraź swoją opinię na jego temat na [$1 stronie dyskusji].', |
3611 | | - 'articleFeedback-copy-below-highlow-tables' => 'Tabele uwzględniają strony, które otrzymały co najmniej 10 głosów w ciągu ostatnich 24 godzin. Średnie są obliczane ze wszystkich ocen wystawionych w ciągu ostatnich 24 godzin.', |
3612 | 3821 | 'articlefeedback-disable-preference' => 'Nie pokazuj na stronach widżetu opinii o artykule', |
3613 | 3822 | ); |
3614 | 3823 | |
— | — | @@ -3749,7 +3958,7 @@ |
3750 | 3959 | 'articlefeedback-form-panel-explanation-link' => 'Project:Avaliação de Artigos', |
3751 | 3960 | 'articlefeedback-form-panel-clear' => 'Remover essa avaliação', |
3752 | 3961 | 'articlefeedback-form-panel-expertise' => 'Conheço este assunto muito profundamente (opcional)', |
3753 | | - 'articlefeedback-form-panel-expertise-studies' => 'Tenho estudos relevantes do secundário/universidade', |
| 3962 | + 'articlefeedback-form-panel-expertise-studies' => 'Tenho estudos relevantes do secundário ou universidade', |
3754 | 3963 | 'articlefeedback-form-panel-expertise-profession' => 'Faz parte dos meus conhecimentos profissionais', |
3755 | 3964 | 'articlefeedback-form-panel-expertise-hobby' => 'É uma das minhas paixões pessoais', |
3756 | 3965 | 'articlefeedback-form-panel-expertise-other' => 'A fonte do meu conhecimento não está listada aqui', |
— | — | @@ -3768,13 +3977,33 @@ |
3769 | 3978 | 'articlefeedback-report-empty' => 'Não existem avaliações', |
3770 | 3979 | 'articlefeedback-report-ratings' => '$1 avaliações', |
3771 | 3980 | 'articlefeedback-field-trustworthy-label' => 'De confiança', |
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?', |
| 3981 | + 'articlefeedback-field-trustworthy-tip' => 'Considera que esta página tem citações suficientes e que essas citações provêm de fontes fidedignas?', |
| 3982 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Não tem fontes fidedignas', |
| 3983 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Tem poucas fontes fidedignas', |
| 3984 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Adequado em fontes fidedignas', |
| 3985 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Bom em fontes fidedignas', |
| 3986 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Excelente em fontes fidedignas', |
3773 | 3987 | 'articlefeedback-field-complete-label' => 'Completa', |
3774 | 3988 | 'articlefeedback-field-complete-tip' => 'Considera que esta página aborda os temas essenciais que deviam ser cobertos?', |
| 3989 | + 'articlefeedback-field-complete-tooltip-1' => 'Muita informação em falta', |
| 3990 | + 'articlefeedback-field-complete-tooltip-2' => 'Contém alguma informação', |
| 3991 | + 'articlefeedback-field-complete-tooltip-3' => 'Contém a informação importante, mas com falhas', |
| 3992 | + 'articlefeedback-field-complete-tooltip-4' => 'Contém a maioria da informação importante', |
| 3993 | + 'articlefeedback-field-complete-tooltip-5' => 'Contém toda a informação importante', |
3775 | 3994 | 'articlefeedback-field-objective-label' => 'Objectivo', |
3776 | 3995 | 'articlefeedback-field-objective-tip' => 'Acha que esta página representa, de forma equilibrada, todos os pontos de vista sobre o assunto?', |
| 3996 | + 'articlefeedback-field-objective-tooltip-1' => 'Muito parcial', |
| 3997 | + 'articlefeedback-field-objective-tooltip-2' => 'Moderadamente parcial', |
| 3998 | + 'articlefeedback-field-objective-tooltip-3' => 'Minimamente parcial', |
| 3999 | + 'articlefeedback-field-objective-tooltip-4' => 'Sem parcialidades óbvias', |
| 4000 | + 'articlefeedback-field-objective-tooltip-5' => 'Completamente imparcial', |
3777 | 4001 | 'articlefeedback-field-wellwritten-label' => 'Bem escrita', |
3778 | 4002 | 'articlefeedback-field-wellwritten-tip' => 'Acha que esta página está bem organizada e bem escrita?', |
| 4003 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Incompreensível', |
| 4004 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Difícil de entender', |
| 4005 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Adequadamente claro', |
| 4006 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Bastante claro', |
| 4007 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Extremamente claro', |
3779 | 4008 | 'articlefeedback-pitch-reject' => 'Talvez mais tarde', |
3780 | 4009 | 'articlefeedback-pitch-or' => 'ou', |
3781 | 4010 | 'articlefeedback-pitch-thanks' => 'Obrigado! As suas avaliações foram gravadas.', |
— | — | @@ -4128,12 +4357,32 @@ |
4129 | 4358 | 'articlefeedback-report-ratings' => '$1 {{PLURAL:$1|оценка|оценки|оценок}}', |
4130 | 4359 | 'articlefeedback-field-trustworthy-label' => 'Достоверность', |
4131 | 4360 | 'articlefeedback-field-trustworthy-tip' => 'Считаете ли вы, что на этой странице достаточно ссылок на источники, что источники являются достоверными?', |
| 4361 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Нет авторитетных источников', |
| 4362 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Мало авторитетных источников', |
| 4363 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Адекватные авторитетные источники', |
| 4364 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Хорошие авторитетные источники', |
| 4365 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Отличные авторитетные источники', |
4132 | 4366 | 'articlefeedback-field-complete-label' => 'Полнота', |
4133 | 4367 | 'articlefeedback-field-complete-tip' => 'Считаете ли вы, что эта страница в достаточной мере раскрывает основные вопросы темы?', |
| 4368 | + 'articlefeedback-field-complete-tooltip-1' => 'Отсутствует большая часть сведений', |
| 4369 | + 'articlefeedback-field-complete-tooltip-2' => 'Содержит некоторые сведения', |
| 4370 | + 'articlefeedback-field-complete-tooltip-3' => 'Содержит основные сведения, есть пропуски', |
| 4371 | + 'articlefeedback-field-complete-tooltip-4' => 'Содержит основные сведения', |
| 4372 | + 'articlefeedback-field-complete-tooltip-5' => 'Всеобъемлющий охват', |
4134 | 4373 | 'articlefeedback-field-objective-label' => 'Беспристрастность', |
4135 | 4374 | 'articlefeedback-field-objective-tip' => 'Считаете ли вы, что эта страница объективно отражает все точки зрения по данной теме?', |
| 4375 | + 'articlefeedback-field-objective-tooltip-1' => 'Сильно предвзятая', |
| 4376 | + 'articlefeedback-field-objective-tooltip-2' => 'Умеренно предвзятая', |
| 4377 | + 'articlefeedback-field-objective-tooltip-3' => 'Минимально предвзятая', |
| 4378 | + 'articlefeedback-field-objective-tooltip-4' => 'Нет очевидной предвзятости', |
| 4379 | + 'articlefeedback-field-objective-tooltip-5' => 'Полностью беспристрастная', |
4136 | 4380 | 'articlefeedback-field-wellwritten-label' => 'Стиль изложения', |
4137 | 4381 | 'articlefeedback-field-wellwritten-tip' => 'Считаете ли вы, что эта страница хорошо организована и хорошо написана?', |
| 4382 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Непонятная', |
| 4383 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Сложная для понимания', |
| 4384 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Нормальная ясность изложения', |
| 4385 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Хорошая ясность изложения', |
| 4386 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Исключительная ясность изложения', |
4138 | 4387 | 'articlefeedback-pitch-reject' => 'Может быть, позже', |
4139 | 4388 | 'articlefeedback-pitch-or' => 'или', |
4140 | 4389 | 'articlefeedback-pitch-thanks' => 'Спасибо! Ваши оценки сохранены.', |
— | — | @@ -4419,12 +4668,32 @@ |
4420 | 4669 | 'articlefeedback-report-ratings' => '$1 ocen', |
4421 | 4670 | 'articlefeedback-field-trustworthy-label' => 'Zanesljivo', |
4422 | 4671 | 'articlefeedback-field-trustworthy-tip' => 'Menite, da ima ta stran dovolj navedkov in da ta navajanja prihajajo iz zanesljivih virov?', |
| 4672 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Manjkajo ugledni viri', |
| 4673 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Nekaj uglednih virov', |
| 4674 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Ustrezno število uglednih virov', |
| 4675 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Dobri ugledni viri', |
| 4676 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Odlični ugledni viri', |
4423 | 4677 | 'articlefeedback-field-complete-label' => 'Celovito', |
4424 | 4678 | 'articlefeedback-field-complete-tip' => 'Menite, da ta stran zajema temeljna tematska področja, ki bi jih naj?', |
| 4679 | + 'articlefeedback-field-complete-tooltip-1' => 'Manjka večina informacij', |
| 4680 | + 'articlefeedback-field-complete-tooltip-2' => 'Vsebuje nekatere informacije', |
| 4681 | + 'articlefeedback-field-complete-tooltip-3' => 'Vsebuje ključne informacije, vendar z vrzelmi', |
| 4682 | + 'articlefeedback-field-complete-tooltip-4' => 'Vsebuje večino ključnih informacij', |
| 4683 | + 'articlefeedback-field-complete-tooltip-5' => 'Celovita pokritost', |
4425 | 4684 | 'articlefeedback-field-objective-label' => 'Nepristransko', |
4426 | 4685 | 'articlefeedback-field-objective-tip' => 'Menite, da ta stran prikazuje pravično zastopanost vseh pogledov na obravnavano temo?', |
| 4686 | + 'articlefeedback-field-objective-tooltip-1' => 'Močno pristransko', |
| 4687 | + 'articlefeedback-field-objective-tooltip-2' => 'Zmerno pristransko', |
| 4688 | + 'articlefeedback-field-objective-tooltip-3' => 'Minimalno pristransko', |
| 4689 | + 'articlefeedback-field-objective-tooltip-4' => 'Brez očitne pristranskosti', |
| 4690 | + 'articlefeedback-field-objective-tooltip-5' => 'Popolnoma nepristransko', |
4427 | 4691 | 'articlefeedback-field-wellwritten-label' => 'Dobro napisano', |
4428 | 4692 | 'articlefeedback-field-wellwritten-tip' => 'Menite, da je ta stran dobro organizirana in dobro napisana?', |
| 4693 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Nerazumljivo', |
| 4694 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Težko razumljivo', |
| 4695 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Zadostno jasno', |
| 4696 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Dobro jasno', |
| 4697 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Izjemno jasno', |
4429 | 4698 | 'articlefeedback-pitch-reject' => 'Morda kasneje', |
4430 | 4699 | 'articlefeedback-pitch-or' => 'ali', |
4431 | 4700 | 'articlefeedback-pitch-thanks' => 'Hvala! Vaše ocene so zabeležene.', |
— | — | @@ -4990,12 +5259,32 @@ |
4991 | 5260 | 'articlefeedback-report-ratings' => '$1 đánh giá', |
4992 | 5261 | 'articlefeedback-field-trustworthy-label' => 'Đáng tin', |
4993 | 5262 | 'articlefeedback-field-trustworthy-tip' => 'Bạn có cảm thấy rằng bày này chú thích nguồn gốc đầy đủ và đáng tin các nguồn?', |
| 5263 | + 'articlefeedback-field-trustworthy-tooltip-1' => 'Thiếu những nguồn đáng tin', |
| 5264 | + 'articlefeedback-field-trustworthy-tooltip-2' => 'Ít nguồn đáng tin', |
| 5265 | + 'articlefeedback-field-trustworthy-tooltip-3' => 'Đủ nguồn đáng tin', |
| 5266 | + 'articlefeedback-field-trustworthy-tooltip-4' => 'Nhiều nguồn đáng tin', |
| 5267 | + 'articlefeedback-field-trustworthy-tooltip-5' => 'Rất nhiều nguồn đáng tin', |
4994 | 5268 | 'articlefeedback-field-complete-label' => 'Đầy đủ', |
4995 | 5269 | 'articlefeedback-field-complete-tip' => 'Bạn có cảm thấy rằng bài này bao gồm các đề tài cần thiết?', |
| 5270 | + 'articlefeedback-field-complete-tooltip-1' => 'Thiếu hầu hết thông tin', |
| 5271 | + 'articlefeedback-field-complete-tooltip-2' => 'Có một số thông tin', |
| 5272 | + 'articlefeedback-field-complete-tooltip-3' => 'Có những thông tin quan trọng nhưng với một số lỗ hổng', |
| 5273 | + 'articlefeedback-field-complete-tooltip-4' => 'Có phần nhiều thông tin quan trọng', |
| 5274 | + 'articlefeedback-field-complete-tooltip-5' => 'Có thông tin đầy đủ', |
4996 | 5275 | 'articlefeedback-field-objective-label' => 'Trung lập', |
4997 | 5276 | 'articlefeedback-field-objective-tip' => 'Bạn có cảm thấy rằng bài này đại diện công bằng cho tất cả các quan điểm về các vấn đề?', |
| 5277 | + 'articlefeedback-field-objective-tooltip-1' => 'Hoàn toàn mang tính thiên vị', |
| 5278 | + 'articlefeedback-field-objective-tooltip-2' => 'Mang tính thiên vị vừa vừa', |
| 5279 | + 'articlefeedback-field-objective-tooltip-3' => 'Ít mang tính thiên vị', |
| 5280 | + 'articlefeedback-field-objective-tooltip-4' => 'Không rõ ràng mang tính thiên vị', |
| 5281 | + 'articlefeedback-field-objective-tooltip-5' => 'Hoàn toàn không có mang tính thiên vị', |
4998 | 5282 | 'articlefeedback-field-wellwritten-label' => 'Viết hay', |
4999 | 5283 | 'articlefeedback-field-wellwritten-tip' => 'Bạn có cảm thấy rằng bài này được sắp xếp đàng hoàng có văn bản hay?', |
| 5284 | + 'articlefeedback-field-wellwritten-tooltip-1' => 'Không thể hiểu nổi', |
| 5285 | + 'articlefeedback-field-wellwritten-tooltip-2' => 'Khó hiểu', |
| 5286 | + 'articlefeedback-field-wellwritten-tooltip-3' => 'Đủ rõ ràng', |
| 5287 | + 'articlefeedback-field-wellwritten-tooltip-4' => 'Khá rõ ràng', |
| 5288 | + 'articlefeedback-field-wellwritten-tooltip-5' => 'Rất là rõ ràng', |
5000 | 5289 | 'articlefeedback-pitch-reject' => 'Không bây giờ', |
5001 | 5290 | 'articlefeedback-pitch-or' => 'hoặc', |
5002 | 5291 | 'articlefeedback-pitch-thanks' => 'Cám ơn! Đánh giá của bạn đã được lưu.', |