Index: branches/REL1_19/extensions/CentralAuth/CentralAuth.php |
— | — | @@ -260,6 +260,22 @@ |
261 | 261 | $wgResourceModules['ext.centralauth'] = array( |
262 | 262 | 'scripts' => 'ext.centralauth.js', |
263 | 263 | 'styles' => 'ext.centralauth.css', |
| 264 | + 'messages' => array( |
| 265 | + 'centralauth-merge-method-primary', |
| 266 | + 'centralauth-merge-method-primary-desc', |
| 267 | + 'centralauth-merge-method-new', |
| 268 | + 'centralauth-merge-method-new-desc', |
| 269 | + 'centralauth-merge-method-empty', |
| 270 | + 'centralauth-merge-method-empty-desc', |
| 271 | + 'centralauth-merge-method-password', |
| 272 | + 'centralauth-merge-method-password-desc', |
| 273 | + 'centralauth-merge-method-mail', |
| 274 | + 'centralauth-merge-method-mail-desc', |
| 275 | + 'centralauth-merge-method-admin', |
| 276 | + 'centralauth-merge-method-admin-desc', |
| 277 | + 'centralauth-merge-method-login', |
| 278 | + 'centralauth-merge-method-login-desc', |
| 279 | + ), |
264 | 280 | ) + $commonModuleInfo; |
265 | 281 | |
266 | 282 | $wgResourceModules['ext.centralauth.noflash'] = array( |
Index: branches/REL1_19/extensions/CentralAuth/specials/SpecialCentralAuth.php |
— | — | @@ -26,7 +26,7 @@ |
27 | 27 | |
28 | 28 | $this->getOutput()->addModules( 'ext.centralauth' ); |
29 | 29 | $this->getOutput()->addModuleStyles( 'ext.centralauth.noflash' ); |
30 | | - $this->addMergeMethodDescriptions(); |
| 30 | + $this->getOutput()->addJsConfigVars( 'wgMergeMethodDescriptions', $this->getMergeMethodDescriptions() ); |
31 | 31 | |
32 | 32 | $this->mUserName = |
33 | 33 | trim( |
— | — | @@ -416,11 +416,26 @@ |
417 | 417 | */ |
418 | 418 | function formatMergeMethod( $method ) { |
419 | 419 | global $wgExtensionAssetsPath; |
| 420 | + |
| 421 | + $brief = wfMessage( 'centralauth-merge-method-{$method}' )->text(); |
| 422 | + $html = |
| 423 | + Html::element( |
| 424 | + 'img', array( |
| 425 | + 'src' => "{$wgExtensionAssetsPath}/CentralAuth/icons/merged-{$method}.png", |
| 426 | + 'alt' => $brief, |
| 427 | + 'title' => $brief, |
| 428 | + ) |
| 429 | + ) |
| 430 | + . Html::element( |
| 431 | + 'span', array( |
| 432 | + 'class' => 'merge-method-help', |
| 433 | + 'title' => $brief, |
| 434 | + 'data-centralauth-mergemethod' => $method |
| 435 | + ), |
| 436 | + '(?)' |
| 437 | + ); |
420 | 438 | |
421 | | - $img = htmlspecialchars( "{$wgExtensionAssetsPath}/CentralAuth/icons/merged-{$method}.png" ); |
422 | | - $brief = wfMsgHtml( "centralauth-merge-method-{$method}" ); |
423 | | - return "<img src=\"{$img}\" alt=\"{$brief}\" title=\"{$brief}\"/>" . |
424 | | - "<span class=\"merge-method-help\" title=\"{$brief}\" onclick=\"showMethodHint('{$method}')\">(?)</span>"; |
| 439 | + return $html; |
425 | 440 | } |
426 | 441 | |
427 | 442 | /** |
— | — | @@ -701,15 +716,15 @@ |
702 | 717 | return $total; |
703 | 718 | } |
704 | 719 | |
705 | | - function addMergeMethodDescriptions() { |
706 | | - $js = "wgMergeMethodDescriptions = {\n"; |
| 720 | + function getMergeMethodDescriptions() { |
| 721 | + $mergeMethodDescriptions = array(); |
707 | 722 | foreach ( array( 'primary', 'new', 'empty', 'password', 'mail', 'admin', 'login' ) as $method ) { |
708 | | - $short = Xml::encodeJsVar( $this->getLanguage()->ucfirst( wfMsgHtml( "centralauth-merge-method-{$method}" ) ) ); |
709 | | - $desc = Xml::encodeJsVar( wfMsgWikiHtml( "centralauth-merge-method-{$method}-desc" ) ); |
710 | | - $js .= "\t'{$method}' : { 'short' : {$short}, 'desc' : {$desc} }\n"; |
| 723 | + $mergeMethodDescriptions[$method] = array( |
| 724 | + 'short' => $this->getLanguage()->ucfirst( wfMsgHtml( "centralauth-merge-method-{$method}" ) ), |
| 725 | + 'desc' => wfMsgWikiHtml( "centralauth-merge-method-{$method}-desc" ) |
| 726 | + ); |
711 | 727 | } |
712 | | - $js .= "}"; |
713 | | - $this->getOutput()->addInlineScript( $js ); |
| 728 | + return $mergeMethodDescriptions; |
714 | 729 | } |
715 | 730 | |
716 | 731 | /** |
Index: branches/REL1_19/extensions/CentralAuth/modules/ext.centralauth.css |
— | — | @@ -12,3 +12,8 @@ |
13 | 13 | .merge-method-help-name { |
14 | 14 | font-weight: bold; |
15 | 15 | } |
| 16 | + |
| 17 | +/* Hide them when javascript fails or isn't enabled */ |
| 18 | +.client-nojs .mw-centralauth-wikislist .merge-method-help { |
| 19 | + display: none; |
| 20 | +} |
Index: branches/REL1_19/extensions/CentralAuth/modules/ext.centralauth.js |
— | — | @@ -1,34 +1,57 @@ |
2 | | -wgCursorPosition = { x : 0, y : 0 }; |
3 | | -function updateCursorPosition( e ) { |
4 | | - e = e || window.event; |
5 | | - wgCursorPosition.x = e.clientX + ( document.documentElement.scrollLeft || document.body.scrollLeft ) |
6 | | - - document.documentElement.clientLeft; |
7 | | - wgCursorPosition.y = e.clientY + ( document.documentElement.scrollTop || document.body.scrollTop ) |
8 | | - - document.documentElement.clientTop; |
9 | | -} |
10 | | -document.onmousemove = updateCursorPosition; |
| 2 | +( function ( mw, $, undefined ) { |
| 3 | + var cursorPosition, $methodHint; |
11 | 4 | |
12 | | -methodHint = null; |
13 | | -function showMethodHint( methodName ) { |
14 | | - hideMethodHint(); |
| 5 | + cursorPosition = { |
| 6 | + x : 0, |
| 7 | + y : 0 |
| 8 | + }; |
15 | 9 | |
16 | | - method = wgMergeMethodDescriptions[methodName]; |
17 | | - helpHtml = "<p class='merge-method-help-name'>" + method.short + "</p>" + method.desc; |
| 10 | + $(document).on( 'mousemove', function updateCursorPosition( e ) { |
| 11 | + cursorPosition.x = |
| 12 | + e.clientX |
| 13 | + + ( document.documentElement.scrollLeft || document.body.scrollLeft ) |
| 14 | + - document.documentElement.clientLeft; |
18 | 15 | |
19 | | - methodHint = document.createElement( 'div' ); |
20 | | - methodHint.innerHTML = helpHtml; |
21 | | - methodHint.setAttribute( 'class', 'merge-method-help-div' ); |
22 | | - methodHint.style.left = wgCursorPosition.x + 'px'; |
23 | | - methodHint.style.top = wgCursorPosition.y + 'px'; |
24 | | - methodHint.setAttribute( 'onclick', 'hideMethodHint()' ); |
| 16 | + cursorPosition.y = |
| 17 | + e.clientY |
| 18 | + + ( document.documentElement.scrollTop || document.body.scrollTop ) |
| 19 | + - document.documentElement.clientTop; |
| 20 | + } ); |
25 | 21 | |
26 | | - var content = document.getElementById('content') || document.getElementById('mw_content') || document.body; |
27 | | - content.appendChild( methodHint ); |
28 | | -} |
| 22 | + function showMethodHint( methodName ) { |
| 23 | + var content, hintHtml; |
29 | 24 | |
30 | | -function hideMethodHint() { |
31 | | - if( methodHint ) { |
32 | | - methodHint.parentNode.removeChild( methodHint ); |
33 | | - methodHint = null; |
| 25 | + if ( !$methodHint ) { |
| 26 | + $methodHint = $( '<div>' ) |
| 27 | + .addClass( 'merge-method-help-div' ) |
| 28 | + .hide() |
| 29 | + .click( function () { |
| 30 | + $(this).fadeOut(); |
| 31 | + } ); |
| 32 | + |
| 33 | + content = document.getElementById( 'content' ) || document.getElementById( 'mw_content' ) || document.body; |
| 34 | + $(content).append( $methodHint ); |
| 35 | + } |
| 36 | + |
| 37 | + hintHtml = mw.html.element( 'p', { |
| 38 | + 'class': 'merge-method-help-name' |
| 39 | + }, mw.msg( 'centralauth-merge-method-' + methodName ) ) + mw.message( 'centralauth-merge-method-' + methodName + '-desc' ).escaped(); |
| 40 | + |
| 41 | + $methodHint |
| 42 | + .html( hintHtml ) |
| 43 | + .css({ |
| 44 | + left: cursorPosition.x + 'px', |
| 45 | + top: cursorPosition.y + 'px' |
| 46 | + }); |
| 47 | + |
| 48 | + $methodHint.fadeIn(); |
34 | 49 | } |
35 | | -} |
| 50 | + |
| 51 | + $( document ).ready( function () { |
| 52 | + // Bind an event listener to the common parent of all (?) elements |
| 53 | + $( '.mw-centralauth-wikislist' ).on( 'click', '.merge-method-help', function () { |
| 54 | + showMethodHint( $(this).data( 'centralauth-mergemethod' ) ); |
| 55 | + } ); |
| 56 | + } ); |
| 57 | + |
| 58 | +}( mediaWiki, jQuery ) ); |
Index: branches/REL1_19/extensions/CheckUser/CheckUser_body.php |
— | — | @@ -96,17 +96,17 @@ |
97 | 97 | /** |
98 | 98 | * @return Title |
99 | 99 | */ |
100 | | - public function getLogTitle() { |
101 | | - if ( !isset( $this->logSubpageTitle ) ) { |
102 | | - $this->logTitle = Title::makeTitle( NS_SPECIAL, 'CheckUserLog' ); |
| 100 | + public function getCheckUserLogTitle() { |
| 101 | + if ( !isset( $this->checkUserLogTitle ) ) { |
| 102 | + $this->checkUserLogTitle = SpecialPage::getTitleFor( 'CheckUserLog' ); |
103 | 103 | } |
104 | | - return $this->logTitle; |
| 104 | + return $this->checkUserLogTitle; |
105 | 105 | } |
106 | 106 | |
107 | 107 | protected function showGuide() { |
108 | 108 | global $wgOut; |
109 | 109 | $wgOut->addWikiText( wfMsg( 'checkuser-summary' ) . |
110 | | - "\n\n[[" . $this->getLogTitle()->getPrefixedText() . |
| 110 | + "\n\n[[" . $this->getCheckUserLogTitle()->getPrefixedText() . |
111 | 111 | '|' . wfMsg( 'checkuser-showlog' ) . ']]' |
112 | 112 | ); |
113 | 113 | } |
Index: branches/REL1_19/extensions/CheckUser/CheckUser.i18n.php |
— | — | @@ -78,8 +78,7 @@ |
79 | 79 | 'checkuser-search-initiator' => 'initiator', |
80 | 80 | 'checkuser-search-target' => 'target', |
81 | 81 | 'checkuser-ipeditcount' => '~$1 from all users', |
82 | | - 'checkuser-log-subpage' => 'Log', |
83 | | - 'checkuser-log-return' => 'Return to CheckUser main form', |
| 82 | + 'checkuser-log-return' => 'Switch to CheckUser main form', |
84 | 83 | |
85 | 84 | 'checkuser-limited' => '\'\'\'These results have been truncated for performance reasons.\'\'\'', |
86 | 85 | |
— | — | @@ -311,7 +310,6 @@ |
312 | 311 | 'checkuser-search-initiator' => 'aanvraer', |
313 | 312 | 'checkuser-search-target' => 'teiken', |
314 | 313 | 'checkuser-ipeditcount' => '~$1 van alle gebruikers', |
315 | | - 'checkuser-log-subpage' => 'Logboek', |
316 | 314 | 'checkuser-log-return' => 'Terug na Check User belangrikste vorm', |
317 | 315 | 'checkuser-limited' => "'''Hierdie resultate is vir prestasieredes afgekap.'''", |
318 | 316 | 'checkuser-log-userips' => '$1 het die IP-adresse deur $2 opgevra', |
— | — | @@ -373,7 +371,6 @@ |
374 | 372 | 'checkuser-search-initiator' => "o encetador d'a consulta", |
375 | 373 | 'checkuser-search-target' => 'obchectivo', |
376 | 374 | 'checkuser-ipeditcount' => '~$1 de totz os usuarios', |
377 | | - 'checkuser-log-subpage' => 'Rechistro', |
378 | 375 | 'checkuser-log-return' => "Tornar ta o formulario prencipal de CheckUser (Comprebación d'usuarios)", |
379 | 376 | 'checkuser-log-userips' => '$1 ha consultato as adrezas IP de $2', |
380 | 377 | 'checkuser-log-ipedits' => '$1 ha consultato as edicions de $2', |
— | — | @@ -458,7 +455,6 @@ |
459 | 456 | 'checkuser-search-initiator' => 'بادىء', |
460 | 457 | 'checkuser-search-target' => 'هدف', |
461 | 458 | 'checkuser-ipeditcount' => '~$1 من كل المستخدمين', |
462 | | - 'checkuser-log-subpage' => 'سجل', |
463 | 459 | 'checkuser-log-return' => 'ارجع إلى استمارة تدقيق المستخدم الرئيسية', |
464 | 460 | 'checkuser-limited' => "'''هذه النتائج تم اختصارها لأسباب تتعلق بالأداء.'''", |
465 | 461 | 'checkuser-log-userips' => '$1 حصل على آيبيهات $2', |
— | — | @@ -556,7 +552,6 @@ |
557 | 553 | 'checkuser-search-initiator' => 'البادي', |
558 | 554 | 'checkuser-search-target' => 'هدف', |
559 | 555 | 'checkuser-ipeditcount' => '~$1 من كل اليوزرز', |
560 | | - 'checkuser-log-subpage' => 'سجل', |
561 | 556 | 'checkuser-log-return' => 'ارجع للاستمارة الرئيسية بتاعة تشييك اليوزرز', |
562 | 557 | 'checkuser-limited' => "''' النتايج دى اتعملها اختصار لأسباب متعلقة بالأداء.'''", |
563 | 558 | 'checkuser-log-userips' => '$1 جاب الاى بى بتوع $2', |
— | — | @@ -647,7 +642,6 @@ |
648 | 643 | 'checkuser-search-initiator' => 'aniciador', |
649 | 644 | 'checkuser-search-target' => 'oxetivu', |
650 | 645 | 'checkuser-ipeditcount' => '~$1 de tolos usuarios', |
651 | | - 'checkuser-log-subpage' => 'Rexistru', |
652 | 646 | 'checkuser-log-return' => "Volver al formulariu principal de comprobador d'usuariu", |
653 | 647 | 'checkuser-limited' => "'''Estos resultaos fueron truncaos por motivos de rendimientu.'''", |
654 | 648 | 'checkuser-log-userips' => '$1 obtuvo les IP pa $2', |
— | — | @@ -778,7 +772,6 @@ |
779 | 773 | 'checkuser-search-initiator' => 'башлаусы', |
780 | 774 | 'checkuser-search-target' => 'маҡсат', |
781 | 775 | 'checkuser-ipeditcount' => 'бөтә ҡатнашыусыларҙан ~$1', |
782 | | - 'checkuser-log-subpage' => 'Журнал', |
783 | 776 | 'checkuser-log-return' => 'Ҡатнашыусыларҙы тикшереү битенә кире ҡайтырға', |
784 | 777 | 'checkuser-limited' => "'''Һөҙөмтәләр етештереүсәнлек маҡсаттарында киҫелде.'''", |
785 | 778 | 'checkuser-log-userips' => '$1 $2 өсөн IP адрестар алған', |
— | — | @@ -826,7 +819,6 @@ |
827 | 820 | 'checkuser-search-initiator' => 'شروع کنوک', |
828 | 821 | 'checkuser-search-target' => 'هدف', |
829 | 822 | 'checkuser-ipeditcount' => '~$1 چه کلی کابران', |
830 | | - 'checkuser-log-subpage' => 'آمار', |
831 | 823 | 'checkuser-log-return' => 'په فرم اصلی کنترل کاربر تر', |
832 | 824 | 'checkuser-log-userips' => '$1 گریت آی پی په $2', |
833 | 825 | 'checkuser-log-ipedits' => '$1 گریت اصلاح په $2', |
— | — | @@ -926,7 +918,6 @@ |
927 | 919 | 'checkuser-search-initiator' => 'ініцыятар', |
928 | 920 | 'checkuser-search-target' => 'мэта', |
929 | 921 | 'checkuser-ipeditcount' => '~$1 ад усіх удзельнікаў', |
930 | | - 'checkuser-log-subpage' => 'Журнал', |
931 | 922 | 'checkuser-log-return' => 'Вярнуцца да галоўнай формы праверкі ўдзельнікаў', |
932 | 923 | 'checkuser-limited' => "'''Гэты вынік быў скарочаны, з прычыны прадукцыйнасьці сыстэмы.'''", |
933 | 924 | 'checkuser-log-userips' => '$1 атрымаў IP-адрасы для $2', |
— | — | @@ -1004,7 +995,6 @@ |
1005 | 996 | 'checkuser-search-initiator' => 'инициатор', |
1006 | 997 | 'checkuser-search-target' => 'цел', |
1007 | 998 | 'checkuser-ipeditcount' => '~$1 от всички потребители', |
1008 | | - 'checkuser-log-subpage' => 'Дневник', |
1009 | 999 | 'checkuser-log-return' => 'Връщане към основния формуляр за проверка', |
1010 | 1000 | 'checkuser-limited' => "'''Резултатите бяха съкратени от съображения, свързани с производителността на системата.'''", |
1011 | 1001 | 'checkuser-log-userips' => '$1 е получил айпи адреси за $2', |
— | — | @@ -1073,7 +1063,6 @@ |
1074 | 1064 | 'checkuser-search-initiator' => 'আরম্ভকারী', |
1075 | 1065 | 'checkuser-search-target' => 'লক্ষ্য', |
1076 | 1066 | 'checkuser-ipeditcount' => '~$1 সমস্ত ব্যবহাকারী থেকে', |
1077 | | - 'checkuser-log-subpage' => 'লগ', |
1078 | 1067 | 'checkuser-log-return' => 'CheckUser মূল ফর্মে ফেরত যান', |
1079 | 1068 | 'checkuser-log-userips' => '$2 এর জন্য $1 আইপি সমূহ পেয়েছে', |
1080 | 1069 | 'checkuser-log-ipedits' => '$2 এর জন্য $1 সম্পাদনাসমূহ পেয়েছে', |
— | — | @@ -1152,7 +1141,6 @@ |
1153 | 1142 | 'checkuser-search-initiator' => 'deraouer', |
1154 | 1143 | 'checkuser-search-target' => 'pal', |
1155 | 1144 | 'checkuser-ipeditcount' => '~$1 gant an holl implijerien', |
1156 | | - 'checkuser-log-subpage' => 'Marilh', |
1157 | 1145 | 'checkuser-log-return' => "Distreiñ da furmskrid pennañ ar c'hontrolliñ implijerien", |
1158 | 1146 | 'checkuser-limited' => "'''Krennet eo bet an disoc'hoù-mañ evit abegoù efeduster.'''", |
1159 | 1147 | 'checkuser-log-userips' => '$1 en deus kavet IPoù evit $2', |
— | — | @@ -1232,7 +1220,6 @@ |
1233 | 1221 | 'checkuser-search-initiator' => 'pokretač', |
1234 | 1222 | 'checkuser-search-target' => 'cilj', |
1235 | 1223 | 'checkuser-ipeditcount' => '~$1 od svih korisnika', |
1236 | | - 'checkuser-log-subpage' => 'Zapisnik', |
1237 | 1224 | 'checkuser-log-return' => 'Povratak na glavni obrazac provjere korisnika', |
1238 | 1225 | 'checkuser-limited' => "'''Ovi rezultati su skraćeni iz razloga bolje performanse.'''", |
1239 | 1226 | 'checkuser-log-userips' => 'Korisnik $1 je našao IP adrese za $2', |
— | — | @@ -1319,7 +1306,6 @@ |
1320 | 1307 | 'checkuser-search-initiator' => "l'iniciador", |
1321 | 1308 | 'checkuser-search-target' => 'el consultat', |
1322 | 1309 | 'checkuser-ipeditcount' => '~$1 de tots els usuaris', |
1323 | | - 'checkuser-log-subpage' => 'Registre', |
1324 | 1310 | 'checkuser-log-return' => 'Retorna al formulari de CheckUser', |
1325 | 1311 | 'checkuser-limited' => "'''Els resultats s'han trucat per raons de rendiment.'''", |
1326 | 1312 | 'checkuser-log-userips' => '$1 consulta les IP de $2', |
— | — | @@ -1438,7 +1424,6 @@ |
1439 | 1425 | 'checkuser-search-initiator' => 'kontrolující', |
1440 | 1426 | 'checkuser-search-target' => 'kontrolováno', |
1441 | 1427 | 'checkuser-ipeditcount' => 'asi $1 od všech uživatelů', |
1442 | | - 'checkuser-log-subpage' => 'Záznamy', |
1443 | 1428 | 'checkuser-log-return' => 'Návrat na hlavní formulář Kontroly uživatele', |
1444 | 1429 | 'checkuser-limited' => "'''Výsledky byly z výkonnostních důvodů zkráceny.'''", |
1445 | 1430 | 'checkuser-log-userips' => '$1 zjišťuje IP adresy uživatele $2', |
— | — | @@ -1537,7 +1522,6 @@ |
1538 | 1523 | 'checkuser-search-initiator' => 'archwiliwr', |
1539 | 1524 | 'checkuser-search-target' => 'y targed', |
1540 | 1525 | 'checkuser-ipeditcount' => '~$1 gan holl ddefnyddwyr y cyfeiriad IP', |
1541 | | - 'checkuser-log-subpage' => 'Lòg', |
1542 | 1526 | 'checkuser-log-return' => 'Dychwelyd at brif ffurflen Archwilio Defnyddwyr', |
1543 | 1527 | 'checkuser-limited' => "'''Cwtogwyd ar y canlyniadau hyn er mwyn gallu perfformio'r dasg.'''", |
1544 | 1528 | 'checkuser-log-userips' => '$1 wedi nôl y cyfeiriadau IP ynghlwm wrth $2', |
— | — | @@ -1624,7 +1608,6 @@ |
1625 | 1609 | 'checkuser-search-initiator' => 'initiativtager', |
1626 | 1610 | 'checkuser-search-target' => 'mål', |
1627 | 1611 | 'checkuser-ipeditcount' => '~$1 fra alle brugere', |
1628 | | - 'checkuser-log-subpage' => 'Log', |
1629 | 1612 | 'checkuser-log-return' => 'Gå tilbage til hovedformularen for checkbruger', |
1630 | 1613 | 'checkuser-limited' => "'''Disse resultater er blevet afkortet af hensyn til ydeevnen.'''", |
1631 | 1614 | 'checkuser-log-userips' => "$1 fik IP'er for $2", |
— | — | @@ -1708,8 +1691,7 @@ |
1709 | 1692 | 'checkuser-search-initiator' => 'CheckUser-Berechtigter', |
1710 | 1693 | 'checkuser-search-target' => 'Abfrageziel (Benutzerkonto/IP-Adresse)', |
1711 | 1694 | 'checkuser-ipeditcount' => '~ $1 von allen Benutzern', |
1712 | | - 'checkuser-log-subpage' => 'Logbuch', |
1713 | | - 'checkuser-log-return' => 'Zurück zum CheckUser-Hauptformular', |
| 1695 | + 'checkuser-log-return' => 'Zum CheckUser-Hauptformular wechseln', |
1714 | 1696 | 'checkuser-limited' => "'''Die Ergebnisliste wurde aus Performancegründen gekürzt.'''", |
1715 | 1697 | 'checkuser-log-userips' => '$1 holte IP-Adressen für $2', |
1716 | 1698 | 'checkuser-log-ipedits' => '$1 holte Bearbeitungen für $2', |
— | — | @@ -1800,7 +1782,6 @@ |
1801 | 1783 | 'checkuser-search-initiator' => 'başlî kerdoğ', |
1802 | 1784 | 'checkuser-search-target' => 'hedef', |
1803 | 1785 | 'checkuser-ipeditcount' => '~$1 karberanê hemî ra', |
1804 | | - 'checkuser-log-subpage' => 'Log', |
1805 | 1786 | 'checkuser-log-return' => 'Farmê serî CheckUser rê reyna şî', |
1806 | 1787 | 'checkuser-limited' => "'''Ena neticeyan qe sebabanê performansî ra kilm kerd.'''", |
1807 | 1788 | 'checkuser-log-userips' => 'Qe $2, $1adresanê IPyan girewt', |
— | — | @@ -1880,7 +1861,6 @@ |
1881 | 1862 | 'checkuser-search-initiator' => 'iniciator', |
1882 | 1863 | 'checkuser-search-target' => 'cel', |
1883 | 1864 | 'checkuser-ipeditcount' => '~$1 ze wšych wužywarjow', |
1884 | | - 'checkuser-log-subpage' => 'Protokol', |
1885 | 1865 | 'checkuser-log-return' => 'Slědk ku głownemu formularoju CheckUser', |
1886 | 1866 | 'checkuser-limited' => "'''Toś te wuslědki su se z pśicynow wugbałosći wobrězali.'''", |
1887 | 1867 | 'checkuser-log-userips' => '$1 jo IP-adrese za $2 wobstarał', |
— | — | @@ -1977,7 +1957,6 @@ |
1978 | 1958 | 'checkuser-search-initiator' => 'ελεγκτής', |
1979 | 1959 | 'checkuser-search-target' => 'στόχος', |
1980 | 1960 | 'checkuser-ipeditcount' => '~$1 από όλους τους χρήστες', |
1981 | | - 'checkuser-log-subpage' => 'Αρχείο', |
1982 | 1961 | 'checkuser-log-return' => 'Επιστροφή στην κύρια φόρμα ελέγχου χρήστη', |
1983 | 1962 | 'checkuser-limited' => "'''Αυτά τα αποτελέσματα περικόπησαν για λόγους απόδοσης.'''", |
1984 | 1963 | 'checkuser-log-userips' => 'Ο $1 πήρε τις IP διευθύνσεις για τον $2', |
— | — | @@ -2062,7 +2041,6 @@ |
2063 | 2042 | 'checkuser-search-initiator' => 'inicianto', |
2064 | 2043 | 'checkuser-search-target' => 'celo', |
2065 | 2044 | 'checkuser-ipeditcount' => '~$1 de ĉiuj uzantoj', |
2066 | | - 'checkuser-log-subpage' => 'Protokolo', |
2067 | 2045 | 'checkuser-log-return' => 'Reiru al ĉefa kamparo por kontroli uzantojn', |
2068 | 2046 | 'checkuser-limited' => "'''Ĉi tiuj rezultoj estis stumpigitaj pro laborecaj kialoj.", |
2069 | 2047 | 'checkuser-log-userips' => '$1 akiris IP-adresojn por $2', |
— | — | @@ -2163,7 +2141,6 @@ |
2164 | 2142 | 'checkuser-search-initiator' => 'verificador', |
2165 | 2143 | 'checkuser-search-target' => 'usuario verificado', |
2166 | 2144 | 'checkuser-ipeditcount' => '~$1 de todos los usuarios', |
2167 | | - 'checkuser-log-subpage' => 'Registro', |
2168 | 2145 | 'checkuser-log-return' => 'Volver al formulario principal de CheckUser', |
2169 | 2146 | 'checkuser-limited' => "'''Estos resultados han sido truncados por motivos de rendimiento.'''", |
2170 | 2147 | 'checkuser-log-userips' => '$1 obtuvo las direcciones IP de $2', |
— | — | @@ -2239,7 +2216,6 @@ |
2240 | 2217 | 'checkuser-search-initiator' => 'kontrollija', |
2241 | 2218 | 'checkuser-search-target' => 'kontrollitav', |
2242 | 2219 | 'checkuser-ipeditcount' => '~$1 kõigilt kasutajatelt', |
2243 | | - 'checkuser-log-subpage' => 'Logi', |
2244 | 2220 | 'checkuser-log-return' => 'Naase kasutajakontrolli peavormi juurde', |
2245 | 2221 | 'checkuser-log-userips' => '$1 hankis kasutaja $2 IP-aadressid', |
2246 | 2222 | 'checkuser-log-ipedits' => '$1 hankis IP-aadressi $2 tehtud muudatused', |
— | — | @@ -2286,7 +2262,6 @@ |
2287 | 2263 | 'checkuser-block-limit' => 'Lankide gehiegi hautatu duzu.', |
2288 | 2264 | 'checkuser-search-submit' => 'Bilatu', |
2289 | 2265 | 'checkuser-search-target' => 'helburua', |
2290 | | - 'checkuser-log-subpage' => 'Erregistroa', |
2291 | 2266 | 'checkuser-autocreate-action' => 'automatikoki sortua izan da', |
2292 | 2267 | 'checkuser-email-action' => '"$1" lankideari posta elektroniko bat bidali', |
2293 | 2268 | 'checkuser-reset-action' => '"$1" lankideari pasahitza berrezarri', |
— | — | @@ -2372,7 +2347,6 @@ |
2373 | 2348 | 'checkuser-search-initiator' => 'آغازگر', |
2374 | 2349 | 'checkuser-search-target' => 'هدف', |
2375 | 2350 | 'checkuser-ipeditcount' => '~$1 از همهٔ کاربران', |
2376 | | - 'checkuser-log-subpage' => 'سیاهه', |
2377 | 2351 | 'checkuser-log-return' => 'بازگشت به فرم اصلی بازرسی کاربر', |
2378 | 2352 | 'checkuser-limited' => "'''این نتایج برای کارآیی سامانه کوتاه شدهاند.'''", |
2379 | 2353 | 'checkuser-log-userips' => '$1 نشانیهای آیپی $2 را گرفت', |
— | — | @@ -2462,7 +2436,6 @@ |
2463 | 2437 | 'checkuser-search-initiator' => 'alullepanija', |
2464 | 2438 | 'checkuser-search-target' => 'kohde', |
2465 | 2439 | 'checkuser-ipeditcount' => 'noin $1 muokkausta kaikilta käyttäjiltä', |
2466 | | - 'checkuser-log-subpage' => 'Loki', |
2467 | 2440 | 'checkuser-log-return' => 'Palaa osoitepaljastimen päälomakkeeseen', |
2468 | 2441 | 'checkuser-limited' => "'''Nämä tulokset on lyhennetty suorituskykysyistä.'''", |
2469 | 2442 | 'checkuser-log-userips' => '$1 haki käyttäjän $2 IP-osoitteet', |
— | — | @@ -2565,7 +2538,6 @@ |
2566 | 2539 | 'checkuser-search-initiator' => 'l’initiateur', |
2567 | 2540 | 'checkuser-search-target' => 'la cible', |
2568 | 2541 | 'checkuser-ipeditcount' => '~$1 par tous les utilisateurs', |
2569 | | - 'checkuser-log-subpage' => 'Journal', |
2570 | 2542 | 'checkuser-log-return' => 'Retourner au formulaire principal du vérificateur d’utilisateur', |
2571 | 2543 | 'checkuser-limited' => "'''Ces résultats ont été tronqués pour des raisons liées à la performance.'''", |
2572 | 2544 | 'checkuser-log-userips' => '$1 a obtenu des IP utilisées par « $2 »', |
— | — | @@ -2677,7 +2649,6 @@ |
2678 | 2650 | 'checkuser-search-initiator' => 'l’iniciator', |
2679 | 2651 | 'checkuser-search-target' => 'la ciba', |
2680 | 2652 | 'checkuser-ipeditcount' => '~$1 per tôs los usanciérs', |
2681 | | - 'checkuser-log-subpage' => 'Jornal', |
2682 | 2653 | 'checkuser-log-return' => 'Tornar u formulèro principâl du contrôlo d’usanciér', |
2683 | 2654 | 'checkuser-limited' => "'''Cetos rèsultats ont étâ tronchiês por des rêsons liyês a la pèrformence.'''", |
2684 | 2655 | 'checkuser-log-userips' => '$1 at obtegnu des IP por $2', |
— | — | @@ -2745,7 +2716,6 @@ |
2746 | 2717 | 'checkuser-search-initiator' => 'tionscnóir', |
2747 | 2718 | 'checkuser-search-target' => 'targaid', |
2748 | 2719 | 'checkuser-ipeditcount' => '~$1 as na n-úsáideoir go léir', |
2749 | | - 'checkuser-log-subpage' => 'Log', |
2750 | 2720 | 'checkuser-log-userips' => 'Fuair $1 seolaidh IP le $2', |
2751 | 2721 | 'checkuser-log-ipedits' => 'Fuair $1 athruithe le $2', |
2752 | 2722 | 'checkuser-log-ipusers' => 'Fuair $1 úsáideoirí le $2', |
— | — | @@ -2841,7 +2811,6 @@ |
2842 | 2812 | 'checkuser-search-initiator' => 'iniciador', |
2843 | 2813 | 'checkuser-search-target' => 'destino', |
2844 | 2814 | 'checkuser-ipeditcount' => '~$1 de todos os usuarios', |
2845 | | - 'checkuser-log-subpage' => 'Rexistro', |
2846 | 2815 | 'checkuser-log-return' => 'Volver ao formulario principal de verificador de usuarios', |
2847 | 2816 | 'checkuser-limited' => "'''Estes resultados foron truncados por motivos de rendemento.'''", |
2848 | 2817 | 'checkuser-log-userips' => '$1 obteu os enderezos IP de "$2"', |
— | — | @@ -2877,7 +2846,6 @@ |
2878 | 2847 | 'checkuser-search-submit' => 'Ζητεῖν', |
2879 | 2848 | 'checkuser-search-initiator' => 'ἐγκαινιαστής', |
2880 | 2849 | 'checkuser-search-target' => 'στόχος', |
2881 | | - 'checkuser-log-subpage' => 'Κατάλογος', |
2882 | 2850 | ); |
2883 | 2851 | |
2884 | 2852 | /** Swiss German (Alemannisch) |
— | — | @@ -2943,7 +2911,6 @@ |
2944 | 2912 | 'checkuser-search-initiator' => 'CheckUser-Berächtigter', |
2945 | 2913 | 'checkuser-search-target' => 'Abfrogziil (Benutzerkonto/IP)', |
2946 | 2914 | 'checkuser-ipeditcount' => '~$1 vu allene Benutzer', |
2947 | | - 'checkuser-log-subpage' => 'Logbuech', |
2948 | 2915 | 'checkuser-log-return' => 'Zruck zum CheckUser-Hauptformular', |
2949 | 2916 | 'checkuser-limited' => "'''D Ergebnislischt isch us Performancegrind gchirzt wore.'''", |
2950 | 2917 | 'checkuser-log-userips' => '$1 het IP-Adrässe fir $2 gholt', |
— | — | @@ -3071,7 +3038,6 @@ |
3072 | 3039 | 'checkuser-search-initiator' => 'בודק', |
3073 | 3040 | 'checkuser-search-target' => 'נבדק', |
3074 | 3041 | 'checkuser-ipeditcount' => 'בערך $1 מכל המשתמשים', |
3075 | | - 'checkuser-log-subpage' => 'יומן', |
3076 | 3042 | 'checkuser-log-return' => 'חזרה לטופס הבדיקה הכללי', |
3077 | 3043 | 'checkuser-limited' => "'''הדף נקטע כדי לחסוך במשאבים.'''", |
3078 | 3044 | 'checkuser-log-userips' => '$1 בדק את כתובות ה־IP של $2', |
— | — | @@ -3151,7 +3117,6 @@ |
3152 | 3118 | 'checkuser-search-initiator' => 'चालक', |
3153 | 3119 | 'checkuser-search-target' => 'लक्ष्य', |
3154 | 3120 | 'checkuser-ipeditcount' => '~$1 सभी सदस्योंसे', |
3155 | | - 'checkuser-log-subpage' => 'लॉग', |
3156 | 3121 | 'checkuser-log-return' => 'सदस्यजाँच मुखपृष्ठपर वापस जायें', |
3157 | 3122 | 'checkuser-log-userips' => '$1 के पास $2 के लिये आईपी हैं', |
3158 | 3123 | 'checkuser-log-ipedits' => '$1 के पास $2 के लिये बदलाव हैं', |
— | — | @@ -3239,7 +3204,6 @@ |
3240 | 3205 | 'checkuser-search-initiator' => 'provjeritelj', |
3241 | 3206 | 'checkuser-search-target' => 'cilj (traženi pojam)', |
3242 | 3207 | 'checkuser-ipeditcount' => '~$1 od svih suradnika', |
3243 | | - 'checkuser-log-subpage' => 'Evidencija', |
3244 | 3208 | 'checkuser-log-return' => 'Vrati se na stranicu za provjeru', |
3245 | 3209 | 'checkuser-limited' => "'''Ovi rezultati su skraćeni zbog veće učinkovitosti izvođenja.'''", |
3246 | 3210 | 'checkuser-log-userips' => '$1 tražio je IP adrese suradnika $2', |
— | — | @@ -3319,7 +3283,6 @@ |
3320 | 3284 | 'checkuser-search-initiator' => 'iniciator', |
3321 | 3285 | 'checkuser-search-target' => 'cil', |
3322 | 3286 | 'checkuser-ipeditcount' => '~$1 wot wšěch wužiwarjow', |
3323 | | - 'checkuser-log-subpage' => 'Protokol', |
3324 | 3287 | 'checkuser-log-return' => 'Wróćo k hłownemu formularej CheckUser', |
3325 | 3288 | 'checkuser-limited' => "'''Tute wuslědki buchu z wukonowych přičinow wobrězane.'''", |
3326 | 3289 | 'checkuser-log-userips' => '$1 dósta IP za $2', |
— | — | @@ -3410,7 +3373,6 @@ |
3411 | 3374 | 'checkuser-search-initiator' => 'kezdeményező', |
3412 | 3375 | 'checkuser-search-target' => 'Cél', |
3413 | 3376 | 'checkuser-ipeditcount' => '~$1 az összes szerkesztő által', |
3414 | | - 'checkuser-log-subpage' => 'Lista', |
3415 | 3377 | 'checkuser-log-return' => 'Vissza az IP-ellenőri oldalra', |
3416 | 3378 | 'checkuser-limited' => "'''Teljesítményi okok miatt nem az összes találat lett megjelenítve.'''", |
3417 | 3379 | 'checkuser-log-userips' => '$1 lekérte $2 IP-címeit', |
— | — | @@ -3502,7 +3464,6 @@ |
3503 | 3465 | 'checkuser-search-initiator' => 'initiator', |
3504 | 3466 | 'checkuser-search-target' => 'objectivo', |
3505 | 3467 | 'checkuser-ipeditcount' => '~$1 de tote le usatores', |
3506 | | - 'checkuser-log-subpage' => 'Registro', |
3507 | 3468 | 'checkuser-log-return' => 'Retornar al formulario principal del verification de usatores', |
3508 | 3469 | 'checkuser-limited' => "'''Iste resultatos ha essite truncate pro motivos de prestationes.'''", |
3509 | 3470 | 'checkuser-log-userips' => '$1 obteneva IPs pro $2', |
— | — | @@ -3589,7 +3550,6 @@ |
3590 | 3551 | 'checkuser-search-initiator' => 'pemeriksa', |
3591 | 3552 | 'checkuser-search-target' => 'target', |
3592 | 3553 | 'checkuser-ipeditcount' => '~$1 dari seluruh pengguna', |
3593 | | - 'checkuser-log-subpage' => 'Log', |
3594 | 3554 | 'checkuser-log-return' => 'Kembali ke halaman utama Pemeriksa', |
3595 | 3555 | 'checkuser-limited' => "'''Hasil berikut telah dipotong agar tidak menurunkan kinerja.'''", |
3596 | 3556 | 'checkuser-log-userips' => '$1 melihat IP dari $2', |
— | — | @@ -3627,7 +3587,6 @@ |
3628 | 3588 | 'checkuser-search-submit' => 'Chọwa', |
3629 | 3589 | 'checkuser-search-initiator' => 'onyé bịdòrò', |
3630 | 3590 | 'checkuser-search-target' => 'nkèọnejé', |
3631 | | - 'checkuser-log-subpage' => 'Ndetu-nchétá', |
3632 | 3591 | 'checkuser-log-useredits' => '$1 nwèrè orü màkà $2', |
3633 | 3592 | ); |
3634 | 3593 | |
— | — | @@ -3698,7 +3657,6 @@ |
3699 | 3658 | 'checkuser-search-initiator' => 'nangrugi', |
3700 | 3659 | 'checkuser-search-target' => 'puntaan', |
3701 | 3660 | 'checkuser-ipeditcount' => '~$1 manipud kadagiti agar-aramat', |
3702 | | - 'checkuser-log-subpage' => 'Listaan', |
3703 | 3661 | 'checkuser-log-return' => 'Agsubli idiay umuna a nakabuklan ti CheckUser', |
3704 | 3662 | 'checkuser-limited' => "'''Dagitoy a nagbanagan ket napasardeng para iti pannaka-aramid a rason.'''", |
3705 | 3663 | 'checkuser-log-userips' => '$1 ket nakaala ti IP a pagtaengan para iti $2', |
— | — | @@ -3755,7 +3713,6 @@ |
3756 | 3714 | 'checkuser-locked' => 'Læstur', |
3757 | 3715 | 'checkuser-accounts' => '$1 {{PLURAL:$1|nýr aðgangur|nýir aðgangar}}', |
3758 | 3716 | 'checkuser-search-submit' => 'Leita', |
3759 | | - 'checkuser-log-subpage' => 'Skrá', |
3760 | 3717 | ); |
3761 | 3718 | |
3762 | 3719 | /** Italian (Italiano) |
— | — | @@ -3833,7 +3790,6 @@ |
3834 | 3791 | 'checkuser-search-initiator' => 'iniziatore', |
3835 | 3792 | 'checkuser-search-target' => 'obiettivo', |
3836 | 3793 | 'checkuser-ipeditcount' => '~$1 complessivamente', |
3837 | | - 'checkuser-log-subpage' => 'Log', |
3838 | 3794 | 'checkuser-log-return' => 'Torna al modulo principale di Controllo utenze', |
3839 | 3795 | 'checkuser-limited' => "'''I risultati sono stati troncati per motivi di prestazioni.'''", |
3840 | 3796 | 'checkuser-log-userips' => '$1 ha ottenuto gli indirizzi IP di $2', |
— | — | @@ -3924,7 +3880,6 @@ |
3925 | 3881 | 'checkuser-search-initiator' => '調査実行者', |
3926 | 3882 | 'checkuser-search-target' => '調査対象者', |
3927 | 3883 | 'checkuser-ipeditcount' => '全利用者からの編集回数~$1', |
3928 | | - 'checkuser-log-subpage' => 'ログ', |
3929 | 3884 | 'checkuser-log-return' => '利用者調査のメインフォームへ戻る', |
3930 | 3885 | 'checkuser-limited' => "'''パフォーマンスの都合から結果は省略されています。'''", |
3931 | 3886 | 'checkuser-log-userips' => '$1 は $2 が使用したIPアドレスを取得', |
— | — | @@ -3973,7 +3928,6 @@ |
3974 | 3929 | 'checkuser-search-submit' => 'Søg', |
3975 | 3930 | 'checkuser-search-initiator' => 'initiatår', |
3976 | 3931 | 'checkuser-search-target' => 'mål', |
3977 | | - 'checkuser-log-subpage' => 'Log', |
3978 | 3932 | 'checkuser-log-return' => 'Gå tilbage til hovedformularen for checkbruger', |
3979 | 3933 | 'checkuser-log-userips' => "$1 fik IP'er for $2", |
3980 | 3934 | 'checkuser-log-ipedits' => '$1 fik redigeringer for $2', |
— | — | @@ -4042,7 +3996,6 @@ |
4043 | 3997 | 'checkuser-search-initiator' => 'pamriksa', |
4044 | 3998 | 'checkuser-search-target' => 'tujuan', |
4045 | 3999 | 'checkuser-ipeditcount' => '~$1 saka kabèh panganggo', |
4046 | | - 'checkuser-log-subpage' => 'Log', |
4047 | 4000 | 'checkuser-log-return' => 'Bali menyang kaca utama pamriksa', |
4048 | 4001 | 'checkuser-limited' => "'''Kasil iki wis dicekak amarga alesan kinerja.'''", |
4049 | 4002 | 'checkuser-log-userips' => '$1 ndeleng IP saka $2', |
— | — | @@ -4119,7 +4072,6 @@ |
4120 | 4073 | 'checkuser-search-initiator' => 'ინიციატორი', |
4121 | 4074 | 'checkuser-search-target' => 'მიზანი', |
4122 | 4075 | 'checkuser-ipeditcount' => '~$1 ყველა მომხმარებლისგან', |
4123 | | - 'checkuser-log-subpage' => 'ჟურნალი', |
4124 | 4076 | 'checkuser-log-return' => 'მომხმარებელთა შემოწმების გვერდზე დაბრუნება', |
4125 | 4077 | 'checkuser-limited' => "'''რეზულტატები შეიკუმშა სერვერზე დამატებითი დატვირთვის არ შექმნის მიზნით.'''", |
4126 | 4078 | 'checkuser-log-userips' => '$1 მიიღო IP $2-თვის', |
— | — | @@ -4165,7 +4117,6 @@ |
4166 | 4118 | 'checkuser-search-submit' => 'ىزدەۋ', |
4167 | 4119 | 'checkuser-search-initiator' => 'باستاماشى', |
4168 | 4120 | 'checkuser-search-target' => 'نىسانا', |
4169 | | - 'checkuser-log-subpage' => 'جۋرنال', |
4170 | 4121 | 'checkuser-log-return' => 'CheckUser باسقى پىشىنىنە ورالۋ', |
4171 | 4122 | 'checkuser-log-userips' => '$2 ٴۇشىن $1 IP جاي الىندى', |
4172 | 4123 | 'checkuser-log-ipedits' => '$2 ٴۇشىن $1 تۇزەتۋ الىندى', |
— | — | @@ -4205,7 +4156,6 @@ |
4206 | 4157 | 'checkuser-search-submit' => 'Іздеу', |
4207 | 4158 | 'checkuser-search-initiator' => 'бастамашы', |
4208 | 4159 | 'checkuser-search-target' => 'нысана', |
4209 | | - 'checkuser-log-subpage' => 'Журнал', |
4210 | 4160 | 'checkuser-log-return' => 'CheckUser басқы пішініне оралу', |
4211 | 4161 | 'checkuser-log-userips' => '$2 үшін $1 IP жай алынды', |
4212 | 4162 | 'checkuser-log-ipedits' => '$2 үшін $1 түзету алынды', |
— | — | @@ -4245,7 +4195,6 @@ |
4246 | 4196 | 'checkuser-search-submit' => 'İzdew', |
4247 | 4197 | 'checkuser-search-initiator' => 'bastamaşı', |
4248 | 4198 | 'checkuser-search-target' => 'nısana', |
4249 | | - 'checkuser-log-subpage' => 'Jwrnal', |
4250 | 4199 | 'checkuser-log-return' => 'CheckUser basqı pişinine oralw', |
4251 | 4200 | 'checkuser-log-userips' => '$2 üşin $1 IP jaý alındı', |
4252 | 4201 | 'checkuser-log-ipedits' => '$2 üşin $1 tüzetw alındı', |
— | — | @@ -4321,7 +4270,6 @@ |
4322 | 4271 | 'checkuser-search-initiator' => 'អ្នកផ្ដួចផ្ដើម', |
4323 | 4272 | 'checkuser-search-target' => 'គោលដៅ', |
4324 | 4273 | 'checkuser-ipeditcount' => '~$1 ពីគ្រប់អ្នកប្រើប្រាស់ទាំងអស់', |
4325 | | - 'checkuser-log-subpage' => 'កំណត់ហេតុ', |
4326 | 4274 | 'checkuser-log-return' => 'ត្រឡប់ទៅកាន់បែបបទដើមនៃការត្រួតពិនិត្យអ្នកប្រើប្រាស់', |
4327 | 4275 | 'checkuser-log-userips' => '$1បានទទួល IPs ដែល$2បានប្រើប្រាស់', |
4328 | 4276 | 'checkuser-log-ipedits' => '$1បានទទួលចំនួនកំណែប្រែពី$2', |
— | — | @@ -4416,7 +4364,6 @@ |
4417 | 4365 | 'checkuser-search-initiator' => '체크유저', |
4418 | 4366 | 'checkuser-search-target' => '대상', |
4419 | 4367 | 'checkuser-ipeditcount' => '모든 사용자로부터 $1개의 편집', |
4420 | | - 'checkuser-log-subpage' => '기록', |
4421 | 4368 | 'checkuser-log-return' => '체크유저 양식으로 돌아가기', |
4422 | 4369 | 'checkuser-limited' => "'''성능상의 이유로 결과 중 일부만 보여줍니다.'''", |
4423 | 4370 | 'checkuser-log-userips' => '$1 사용자는 $2 사용자가 사용한 IP 주소를 열람했습니다.', |
— | — | @@ -4522,7 +4469,6 @@ |
4523 | 4470 | 'checkuser-search-initiator' => 'Metmaacher-Pröfer', |
4524 | 4471 | 'checkuser-search-target' => 'Wat eß jefrooch? (Metmaacher-Name udder IP-Address)', |
4525 | 4472 | 'checkuser-ipeditcount' => '~$1 Änderonge fun alle Metmaacher', |
4526 | | - 'checkuser-log-subpage' => 'Logboch', |
4527 | 4473 | 'checkuser-log-return' => 'Zerök zor Sigg „Metmaacher Pröfe“', |
4528 | 4474 | 'checkuser-limited' => "'''De Leß es affjeschnedde, öm nit der Server unnüdesch ze belaste.'''", |
4529 | 4475 | 'checkuser-log-userips' => '$1 hät IP-Adresse jehollt för $2', |
— | — | @@ -4625,7 +4571,6 @@ |
4626 | 4572 | 'checkuser-search-initiator' => 'Initiator', |
4627 | 4573 | 'checkuser-search-target' => 'Zil', |
4628 | 4574 | 'checkuser-ipeditcount' => '~$1 vun alle Benotzer', |
4629 | | - 'checkuser-log-subpage' => 'Lëscht', |
4630 | 4575 | 'checkuser-log-return' => 'Zréck op den Haaptformulaire vun der Benotzerkontroll', |
4631 | 4576 | 'checkuser-limited' => "'''Dës Lëscht gouf aus Grënn vun der performance vun de Servere gekierzt.'''", |
4632 | 4577 | 'checkuser-log-userips' => '$1 krut IPen fir $2', |
— | — | @@ -4717,7 +4662,6 @@ |
4718 | 4663 | 'checkuser-search-initiator' => 'aanvraoger', |
4719 | 4664 | 'checkuser-search-target' => 'óngerwèrp', |
4720 | 4665 | 'checkuser-ipeditcount' => '~$1 van alle gebroekers', |
4721 | | - 'checkuser-log-subpage' => 'Logbook', |
4722 | 4666 | 'checkuser-log-return' => "Nao 't huidformeleer van KonterleerGebroeker trökgaon", |
4723 | 4667 | 'checkuser-limited' => "'''Dees rizzeltaote zeen neet gans óm perstaasjereeje.'''", |
4724 | 4668 | 'checkuser-log-userips' => '$1 haet IP-adresse veur $2', |
— | — | @@ -4789,7 +4733,6 @@ |
4790 | 4734 | 'checkuser-search-submit' => 'Ieškoti', |
4791 | 4735 | 'checkuser-search-target' => 'taikinys', |
4792 | 4736 | 'checkuser-ipeditcount' => '~$1 iš visų vartotojų', |
4793 | | - 'checkuser-log-subpage' => 'Sąrašas', |
4794 | 4737 | 'checkuser-log-userips' => '$1 gavo IP adresų $2', |
4795 | 4738 | 'checkuser-autocreate-action' => 'buvo automatiškai sukurtas', |
4796 | 4739 | 'checkuser-create-action' => 'buvo sukurta', |
— | — | @@ -4932,7 +4875,6 @@ |
4933 | 4876 | 'checkuser-search-initiator' => 'иницијатор', |
4934 | 4877 | 'checkuser-search-target' => 'цел', |
4935 | 4878 | 'checkuser-ipeditcount' => '~$1 од сите корисници', |
4936 | | - 'checkuser-log-subpage' => 'Дневник', |
4937 | 4879 | 'checkuser-log-return' => 'Назад на главниот образец за проверување корисници', |
4938 | 4880 | 'checkuser-limited' => "'''Резултатите се скратени од функционални причини.'''", |
4939 | 4881 | 'checkuser-log-userips' => '$1 добил(а) IP-адреси за $2', |
— | — | @@ -5016,7 +4958,6 @@ |
5017 | 4959 | 'checkuser-search-initiator' => 'മുൻകൈ എടുക്കുന്ന ആൾ', |
5018 | 4960 | 'checkuser-search-target' => 'ലക്ഷ്യം', |
5019 | 4961 | 'checkuser-ipeditcount' => '~$1എല്ലാ ഉപയോക്താക്കളിൽ നിന്നും', |
5020 | | - 'checkuser-log-subpage' => 'പ്രവർത്തനരേഖ', |
5021 | 4962 | 'checkuser-log-return' => 'ചെക്ക് യൂസറിന്റെ പ്രധാന ഫോമിലേക്ക് തിരിച്ചു പോവുക', |
5022 | 4963 | 'checkuser-limited' => "'''പ്രവർത്തന മികവു സംബന്ധിച്ച പ്രശ്നങ്ങളാൽ ഫലങ്ങൾ വെട്ടിച്ചുരുക്കിയിരിക്കുന്നു.'''", |
5023 | 4964 | 'checkuser-log-userips' => '$1നു $2ൽ ഐ.പി.കൾ ഉണ്ട്', |
— | — | @@ -5087,7 +5028,6 @@ |
5088 | 5029 | 'checkuser-search-initiator' => 'चालक (चालना देणारा)', |
5089 | 5030 | 'checkuser-search-target' => 'लक्ष्य', |
5090 | 5031 | 'checkuser-ipeditcount' => '~$1 सर्व सदस्यांकडून', |
5091 | | - 'checkuser-log-subpage' => 'नोंदी', |
5092 | 5032 | 'checkuser-log-return' => 'CheckUser मुख्य अर्जाकडे परत जा', |
5093 | 5033 | 'checkuser-log-userips' => '$1 कडे $2 साठीचे अंकपत्ते आहेत', |
5094 | 5034 | 'checkuser-log-ipedits' => '$1 कडे $2 साठीची संपादने आहेत', |
— | — | @@ -5163,7 +5103,6 @@ |
5164 | 5104 | 'checkuser-search-initiator' => 'pengasal', |
5165 | 5105 | 'checkuser-search-target' => 'sasaran', |
5166 | 5106 | 'checkuser-ipeditcount' => '~$1 daripada semua pengguna', |
5167 | | - 'checkuser-log-subpage' => 'Log', |
5168 | 5107 | 'checkuser-log-return' => 'Kembali ke borang utama Pemeriksa', |
5169 | 5108 | 'checkuser-limited' => 'Hasil-hasil berikut telah dipendekkan atas sebab-sebab prestasi.', |
5170 | 5109 | 'checkuser-log-userips' => '$1 mendapatkan senarai IP bagi $2', |
— | — | @@ -5294,7 +5233,6 @@ |
5295 | 5234 | 'checkuser-search-initiator' => 'IP-kontrolløren', |
5296 | 5235 | 'checkuser-search-target' => 'målet', |
5297 | 5236 | 'checkuser-ipeditcount' => '~$1 fra alle brukere', |
5298 | | - 'checkuser-log-subpage' => 'Logg', |
5299 | 5237 | 'checkuser-log-return' => 'Tilbake til hovedskjema for brukersjekking', |
5300 | 5238 | 'checkuser-limited' => "'''Disse resultatene har blitt avkortet av ytelsesgrunner.'''", |
5301 | 5239 | 'checkuser-log-userips' => '$1 fikk IP-adressene til $2', |
— | — | @@ -5372,7 +5310,6 @@ |
5373 | 5311 | 'checkuser-search-initiator' => 'Initiater', |
5374 | 5312 | 'checkuser-search-target' => 'Ziel', |
5375 | 5313 | 'checkuser-ipeditcount' => '~$1 vun all Brukers', |
5376 | | - 'checkuser-log-subpage' => 'Logbook', |
5377 | 5314 | 'checkuser-log-return' => 'Trüch na dat CheckUser-Hööftformular', |
5378 | 5315 | 'checkuser-limited' => "'''De List mit Resultaten is to lang wesen un körter maakt worrn.'''", |
5379 | 5316 | 'checkuser-log-userips' => '$1 hett IP-Adressen för $2 rutsöcht', |
— | — | @@ -5501,7 +5438,6 @@ |
5502 | 5439 | 'checkuser-search-initiator' => 'aanvrager', |
5503 | 5440 | 'checkuser-search-target' => 'onderwerp', |
5504 | 5441 | 'checkuser-ipeditcount' => '~$1 van alle gebruikers', |
5505 | | - 'checkuser-log-subpage' => 'Logboek', |
5506 | 5442 | 'checkuser-log-return' => 'Naar het hoofdformulier van GebruikerControleren terugkeren', |
5507 | 5443 | 'checkuser-limited' => "'''Deze resultaten zijn niet volledig om prestatieredenen.'''", |
5508 | 5444 | 'checkuser-log-userips' => '$1 heeft de IP-adressen door $2 opgevraagd', |
— | — | @@ -5585,7 +5521,6 @@ |
5586 | 5522 | 'checkuser-search-initiator' => 'igangsetjar', |
5587 | 5523 | 'checkuser-search-target' => 'mål', |
5588 | 5524 | 'checkuser-ipeditcount' => '~$1 frå alle brukarar', |
5589 | | - 'checkuser-log-subpage' => 'Logg', |
5590 | 5525 | 'checkuser-log-return' => 'Attende til hovudskjema for brukarsjekking', |
5591 | 5526 | 'checkuser-limited' => "'''Desse resultata har vortne avkorta av ytegrunnar.'''", |
5592 | 5527 | 'checkuser-log-userips' => '$1 fekk IP-adressene til $2', |
— | — | @@ -5693,7 +5628,6 @@ |
5694 | 5629 | 'checkuser-search-initiator' => 'l’iniciaire', |
5695 | 5630 | 'checkuser-search-target' => 'la cibla', |
5696 | 5631 | 'checkuser-ipeditcount' => '~$1 per totes los utilizaires', |
5697 | | - 'checkuser-log-subpage' => 'Jornal', |
5698 | 5632 | 'checkuser-log-return' => "Tornar al formulari principal de la verificacion d'utilizaire", |
5699 | 5633 | 'checkuser-limited' => "'''Aquestes resultats son estats troncats per de rasons ligadas a la performància.'''", |
5700 | 5634 | 'checkuser-log-userips' => "$1 a obtengut d'IP per $2", |
— | — | @@ -5769,7 +5703,6 @@ |
5770 | 5704 | 'checkuser-search-initiator' => 'ଆରମ୍ଭକାରୀ', |
5771 | 5705 | 'checkuser-search-target' => 'ଲକ୍ଷ', |
5772 | 5706 | 'checkuser-ipeditcount' => 'ସବୁ ବ୍ୟବହରକାରୀଙ୍କ ଠାରୁ ~$1', |
5773 | | - 'checkuser-log-subpage' => 'ଲଗ୍', |
5774 | 5707 | 'checkuser-log-return' => 'CheckUser ମୂଳ ଆବେଦନ ପତ୍ରକୁ ଫେରିଯାନ୍ତୁ', |
5775 | 5708 | 'checkuser-log-userips' => '$1ଙ୍କ ପାଖରେ $2 ପାଇଁ IP ଠିକଣା ରହିଛି', |
5776 | 5709 | 'checkuser-log-ipedits' => '$1, $2ଙ୍କ ପାଇଁ ସମ୍ପାଦନା କରିଛନ୍ତି', |
— | — | @@ -5895,8 +5828,7 @@ |
5896 | 5829 | 'checkuser-search-initiator' => 'sprawdzającym', |
5897 | 5830 | 'checkuser-search-target' => 'sprawdzanym', |
5898 | 5831 | 'checkuser-ipeditcount' => '~$1 od wszystkich użytkowników', |
5899 | | - 'checkuser-log-subpage' => 'Rejestr', |
5900 | | - 'checkuser-log-return' => 'Powrót do głównego formularza CheckUser', |
| 5832 | + 'checkuser-log-return' => 'Przejście do głównego formularza CheckUser', |
5901 | 5833 | 'checkuser-limited' => "'''Długość listy wyników została ograniczona ze względu na wydajność.'''", |
5902 | 5834 | 'checkuser-log-userips' => '$1 otrzymał adresy IP używane przez $2', |
5903 | 5835 | 'checkuser-log-ipedits' => '$1 otrzymał historię edycji dla $2', |
— | — | @@ -5979,7 +5911,6 @@ |
5980 | 5912 | 'checkuser-search-initiator' => 'inissiador', |
5981 | 5913 | 'checkuser-search-target' => 'obietiv', |
5982 | 5914 | 'checkuser-ipeditcount' => "~$1 da tùit j'utent", |
5983 | | - 'checkuser-log-subpage' => 'Registr', |
5984 | 5915 | 'checkuser-log-return' => "Torna a la forma prinsipal dël Controlor dj'utent", |
5985 | 5916 | 'checkuser-limited' => "'''Sti arzultà-sì a son ëstàit troncà për rason ëd prestassion.'''", |
5986 | 5917 | 'checkuser-log-userips' => "$1 a l'ha pijà j'adrësse IP da $2", |
— | — | @@ -6029,7 +5960,6 @@ |
6030 | 5961 | 'checkuser-search-initiator' => 'پېلوونکی', |
6031 | 5962 | 'checkuser-search-target' => 'موخه', |
6032 | 5963 | 'checkuser-ipeditcount' => '~$1 د ټولو کارنانو نه', |
6033 | | - 'checkuser-log-subpage' => 'يادښت', |
6034 | 5964 | 'checkuser-log-userips' => '$1 د $2 آی پي پتې ترلاسه کړې', |
6035 | 5965 | 'checkuser-autocreate-action' => 'په خپلکاره توګه جوړ شو', |
6036 | 5966 | 'checkuser-create-action' => 'جوړ شو', |
— | — | @@ -6107,7 +6037,6 @@ |
6108 | 6038 | 'checkuser-search-initiator' => 'iniciador', |
6109 | 6039 | 'checkuser-search-target' => 'alvo', |
6110 | 6040 | 'checkuser-ipeditcount' => '~$1 de todos os utilizadores', |
6111 | | - 'checkuser-log-subpage' => 'Registo', |
6112 | 6041 | 'checkuser-log-return' => 'Retornar ao formulário principal de CheckUser', |
6113 | 6042 | 'checkuser-limited' => "'''Estes resultados foram removidos por motivos de performance.'''", |
6114 | 6043 | 'checkuser-log-userips' => '$1 obteve IPs de $2', |
— | — | @@ -6194,7 +6123,6 @@ |
6195 | 6124 | 'checkuser-search-initiator' => 'iniciador', |
6196 | 6125 | 'checkuser-search-target' => 'alvo', |
6197 | 6126 | 'checkuser-ipeditcount' => '~$1 de todos os usuários', |
6198 | | - 'checkuser-log-subpage' => 'Registro', |
6199 | 6127 | 'checkuser-log-return' => 'Retornar ao formulário principal de CheckUser', |
6200 | 6128 | 'checkuser-limited' => "'''Estes resultados foram removidos por motivos de performance.'''", |
6201 | 6129 | 'checkuser-log-userips' => '$1 obteve IPs de $2', |
— | — | @@ -6251,7 +6179,6 @@ |
6252 | 6180 | 'checkuser-search-submit' => 'Maskay', |
6253 | 6181 | 'checkuser-search-initiator' => 'qallarichiq', |
6254 | 6182 | 'checkuser-search-target' => 'taripana', |
6255 | | - 'checkuser-log-subpage' => "Hallch'a", |
6256 | 6183 | ); |
6257 | 6184 | |
6258 | 6185 | /** Tarifit (Tarifit) |
— | — | @@ -6346,7 +6273,6 @@ |
6347 | 6274 | 'checkuser-search-initiator' => 'inițiator', |
6348 | 6275 | 'checkuser-search-target' => 'destinație', |
6349 | 6276 | 'checkuser-ipeditcount' => '~$1 de la toți utilizatorii', |
6350 | | - 'checkuser-log-subpage' => 'Jurnal', |
6351 | 6277 | 'checkuser-log-return' => 'Revenire la formularul principal Verifică Utilizatorul', |
6352 | 6278 | 'checkuser-limited' => "'''Aceste rezultate au fost sortate din motive de performanță.'''", |
6353 | 6279 | 'checkuser-log-userips' => '$1 a verificat IP-urile lui $2', |
— | — | @@ -6430,7 +6356,6 @@ |
6431 | 6357 | 'checkuser-search-initiator' => 'iniziatore', |
6432 | 6358 | 'checkuser-search-target' => 'destinazione', |
6433 | 6359 | 'checkuser-ipeditcount' => "~$1 da tutte l'utinde", |
6434 | | - 'checkuser-log-subpage' => 'Archivije', |
6435 | 6360 | 'checkuser-log-return' => "Tuèrne a 'u module prengepale de CheckUser", |
6436 | 6361 | 'checkuser-limited' => "'''Chiste resultate onne state tagghiate pe mutive de performance.'''", |
6437 | 6362 | 'checkuser-log-userips' => '$1 ha pigghiete le IP pe $2', |
— | — | @@ -6524,7 +6449,6 @@ |
6525 | 6450 | 'checkuser-search-initiator' => 'инициатор', |
6526 | 6451 | 'checkuser-search-target' => 'цель', |
6527 | 6452 | 'checkuser-ipeditcount' => '~$1 от всех участников', |
6528 | | - 'checkuser-log-subpage' => 'Журнал', |
6529 | 6453 | 'checkuser-log-return' => 'Возврат к странице проверки участников', |
6530 | 6454 | 'checkuser-limited' => "'''Результаты были усечены чтобы не создавать дополнительной нагрузки на сервер.'''", |
6531 | 6455 | 'checkuser-log-userips' => '$1 получил IP адреса для $2', |
— | — | @@ -6602,7 +6526,6 @@ |
6603 | 6527 | 'checkuser-search-initiator' => 'ініціатор', |
6604 | 6528 | 'checkuser-search-target' => 'ціль', |
6605 | 6529 | 'checkuser-ipeditcount' => 'асі $1 од вшыткых хоснователїв', |
6606 | | - 'checkuser-log-subpage' => 'Лоґ', |
6607 | 6530 | 'checkuser-log-return' => 'Навернутя на головный формуларь Перевіркы хоснователя', |
6608 | 6531 | 'checkuser-limited' => "'''Резултаты были з выконостных причін скорочены.'''", |
6609 | 6532 | 'checkuser-log-userips' => '$1 обтримав IP адресы про $2', |
— | — | @@ -6699,7 +6622,6 @@ |
6700 | 6623 | 'checkuser-search-initiator' => 'саҕалааччы', |
6701 | 6624 | 'checkuser-search-target' => 'сыал-сорук', |
6702 | 6625 | 'checkuser-ipeditcount' => '~$1 бары кыттааччылартан', |
6703 | | - 'checkuser-log-subpage' => 'Сурунаал', |
6704 | 6626 | 'checkuser-log-return' => 'Кытааччылары бэрэбиэркэлээһин сүрүн сирэйигэр төнүн', |
6705 | 6627 | 'checkuser-limited' => "'''Түмүк, сиэрбэри наһаа ноҕуруускалаамаары, сорҕото быһыллыбыт.'''", |
6706 | 6628 | 'checkuser-log-userips' => '$1 манна анаан $2 IP аадырыстаах', |
— | — | @@ -6793,7 +6715,6 @@ |
6794 | 6716 | 'checkuser-search-initiator' => 'Nizziaturi', |
6795 | 6717 | 'checkuser-search-target' => 'ubbiettivu', |
6796 | 6718 | 'checkuser-ipeditcount' => "~$1 pi tutti pari l'utenti", |
6797 | | - 'checkuser-log-subpage' => 'Log', |
6798 | 6719 | 'checkuser-log-return' => 'Torna ô mòdulu principali di Cuntrollu utenzi', |
6799 | 6720 | 'checkuser-limited' => "'''Li risurtati foru truncati pi mutivi di pristazzioni.'''", |
6800 | 6721 | 'checkuser-log-userips' => '$1 uttinìu li nnirizzi IP di $2', |
— | — | @@ -6865,7 +6786,6 @@ |
6866 | 6787 | 'checkuser-search-initiator' => 'ආරම්භකය', |
6867 | 6788 | 'checkuser-search-target' => 'ඉලක්කය', |
6868 | 6789 | 'checkuser-ipeditcount' => '~$1 සියලුම පරිශිලකයන්ගෙන්', |
6869 | | - 'checkuser-log-subpage' => 'ලඝු සටහන', |
6870 | 6790 | 'checkuser-log-return' => 'පරිශීලකපිරික්සුම් ප්රධාන ෆෝරමය වෙත නැවත යන්න', |
6871 | 6791 | 'checkuser-limited' => "'''කාර්ය සාධනය හේතුන් නිසා ප්රතිපල ලුප්ත කරන ලදී.'''", |
6872 | 6792 | 'checkuser-log-userips' => 'සංස්කරණය සඳහා $2 විසින් භාවිත කෙරුණු අන්තර්ජාල ලිපිනයන් $1 විසින් පරික්ෂා කොට දැනගෙන ඇත', |
— | — | @@ -6945,7 +6865,6 @@ |
6946 | 6866 | 'checkuser-search-initiator' => 'začínajúci', |
6947 | 6867 | 'checkuser-search-target' => 'cieľ', |
6948 | 6868 | 'checkuser-ipeditcount' => 'asi $1 zo všetkých používateľov', |
6949 | | - 'checkuser-log-subpage' => 'Záznam', |
6950 | 6869 | 'checkuser-log-return' => 'Vrátiť sa na hlavný formulár CheckUser', |
6951 | 6870 | 'checkuser-limited' => "'''Tieto výsledky boli z výkonnostných dôvodov skrátené.'''", |
6952 | 6871 | 'checkuser-log-userips' => '$1 má IP adresy $2', |
— | — | @@ -7027,7 +6946,6 @@ |
7028 | 6947 | 'checkuser-search-initiator' => 'sprožitelj', |
7029 | 6948 | 'checkuser-search-target' => 'cilj', |
7030 | 6949 | 'checkuser-ipeditcount' => '~$1 od vseh uporabnikov', |
7031 | | - 'checkuser-log-subpage' => 'Dnevnik', |
7032 | 6950 | 'checkuser-log-return' => 'Vrnitev na glavni obrazec CheckUser', |
7033 | 6951 | 'checkuser-limited' => "'''Rezultati so bili okrnjeni iz zmogljivostnih razlogov.'''", |
7034 | 6952 | 'checkuser-log-userips' => '$1 je pridobil(-a) IP-naslove $2', |
— | — | @@ -7131,7 +7049,6 @@ |
7132 | 7050 | 'checkuser-search-initiator' => 'покретач', |
7133 | 7051 | 'checkuser-search-target' => 'циљ', |
7134 | 7052 | 'checkuser-ipeditcount' => '~$1 од свих корисника', |
7135 | | - 'checkuser-log-subpage' => 'Дневник', |
7136 | 7053 | 'checkuser-log-return' => 'Повратак на основну форму чекјузера.', |
7137 | 7054 | 'checkuser-limited' => "'''Ови резултати су скраћени због перформанси.'''", |
7138 | 7055 | 'checkuser-log-userips' => '$1 је добио ИП адресе за $2', |
— | — | @@ -7212,7 +7129,6 @@ |
7213 | 7130 | 'checkuser-search-initiator' => 'pokretač', |
7214 | 7131 | 'checkuser-search-target' => 'cilj', |
7215 | 7132 | 'checkuser-ipeditcount' => '~$1 od svih korisnika', |
7216 | | - 'checkuser-log-subpage' => 'log', |
7217 | 7133 | 'checkuser-log-return' => 'Povratak na osnovnu formu čekjuzera.', |
7218 | 7134 | 'checkuser-limited' => "'''Ovi rezultati su skraćeni zbog performansi.'''", |
7219 | 7135 | 'checkuser-log-userips' => '$1 je dobio IP adrese za $2', |
— | — | @@ -7290,7 +7206,6 @@ |
7291 | 7207 | 'checkuser-search-initiator' => 'Initiator', |
7292 | 7208 | 'checkuser-search-target' => 'Siel', |
7293 | 7209 | 'checkuser-ipeditcount' => '~$1 fon aal Benutsere', |
7294 | | - 'checkuser-log-subpage' => 'Logbouk', |
7295 | 7210 | 'checkuser-log-return' => 'Tourääch ätter dät CheckUser-Haudformular', |
7296 | 7211 | 'checkuser-limited' => "'''Ju Resultoatelieste wuud uut Performancegruunden kuuted.'''", |
7297 | 7212 | 'checkuser-log-userips' => '$1 hoalde IP-Adressen foar $2', |
— | — | @@ -7337,7 +7252,6 @@ |
7338 | 7253 | 'checkuser-search-initiator' => 'inisiator', |
7339 | 7254 | 'checkuser-search-target' => 'tujul', |
7340 | 7255 | 'checkuser-ipeditcount' => '~$1 ti sakumna pamaké', |
7341 | | - 'checkuser-log-subpage' => 'Log', |
7342 | 7256 | 'checkuser-log-return' => 'Balik ka formulir utama PamakéPamariksa', |
7343 | 7257 | 'checkuser-log-userips' => '$1 manggih IP ti $2', |
7344 | 7258 | 'checkuser-log-ipedits' => '$1 manggih éditan ti $2', |
— | — | @@ -7418,7 +7332,6 @@ |
7419 | 7333 | 'checkuser-search-initiator' => 'kontrollanten', |
7420 | 7334 | 'checkuser-search-target' => 'kontrollmålet', |
7421 | 7335 | 'checkuser-ipeditcount' => '~$1 från alla användare', |
7422 | | - 'checkuser-log-subpage' => 'Logg', |
7423 | 7336 | 'checkuser-log-return' => 'Gå tillbaka till formuläret för användarkontroll', |
7424 | 7337 | 'checkuser-limited' => "'''Dessa resultat har av prestandaskäl blivit avkortade.'''", |
7425 | 7338 | 'checkuser-log-userips' => '$1 hämtade IP-adresser för $2', |
— | — | @@ -7462,7 +7375,6 @@ |
7463 | 7376 | 'checkuser-empty' => 'Kumbukumbu haina kitu.', |
7464 | 7377 | 'checkuser-check' => 'Chagua', |
7465 | 7378 | 'checkuser-search-submit' => 'Tafuta', |
7466 | | - 'checkuser-log-subpage' => 'Kumbukumbu', |
7467 | 7379 | ); |
7468 | 7380 | |
7469 | 7381 | /** Silesian (Ślůnski) |
— | — | @@ -7526,7 +7438,6 @@ |
7527 | 7439 | 'checkuser-search-submit' => 'தேடுக', |
7528 | 7440 | 'checkuser-search-initiator' => 'தொடக்கக்காரர்', |
7529 | 7441 | 'checkuser-search-target' => 'இலக்கு', |
7530 | | - 'checkuser-log-subpage' => 'பதிகை (உள்நுழைவு)', |
7531 | 7442 | 'checkuser-autocreate-action' => 'தானகவே உருவாக்கப்பட்டது', |
7532 | 7443 | ); |
7533 | 7444 | |
— | — | @@ -7585,7 +7496,6 @@ |
7586 | 7497 | 'checkuser-search-initiator' => 'ఆరంభకుడు', |
7587 | 7498 | 'checkuser-search-target' => 'లక్ష్యం', |
7588 | 7499 | 'checkuser-ipeditcount' => 'వాడుకరులందరి నుండి ~$1', |
7589 | | - 'checkuser-log-subpage' => 'చిట్టా', |
7590 | 7500 | 'checkuser-log-return' => 'CheckUser ముఖ్య ఫారముకు వెళ్ళు', |
7591 | 7501 | 'checkuser-log-userips' => '$2 కోసం $1 ఐపీలను తెచ్చింది', |
7592 | 7502 | 'checkuser-log-ipedits' => '$2 కోసం $1 దిద్దుబాట్లను తెచ్చింది', |
— | — | @@ -7672,7 +7582,6 @@ |
7673 | 7583 | 'checkuser-search-submit' => 'Ҷустуҷӯ', |
7674 | 7584 | 'checkuser-search-initiator' => 'оғозгар', |
7675 | 7585 | 'checkuser-search-target' => 'ҳадаф', |
7676 | | - 'checkuser-log-subpage' => 'Гузориш', |
7677 | 7586 | 'checkuser-log-return' => 'Бозгашт ба форми аслии бозрасии корбар', |
7678 | 7587 | 'checkuser-log-userips' => '$1 нишонаҳои интернетии IP-ҳои $2ро гирифт', |
7679 | 7588 | 'checkuser-log-ipedits' => '$1 вироишҳои $2ро гирифт', |
— | — | @@ -7730,7 +7639,6 @@ |
7731 | 7640 | 'checkuser-search-submit' => 'Çustuçū', |
7732 | 7641 | 'checkuser-search-initiator' => 'oƣozgar', |
7733 | 7642 | 'checkuser-search-target' => 'hadaf', |
7734 | | - 'checkuser-log-subpage' => 'Guzoriş', |
7735 | 7643 | 'checkuser-log-return' => 'Bozgaşt ba formi asliji bozrasiji korbar', |
7736 | 7644 | 'checkuser-log-userips' => '$1 nişonahoi internetiji IP-hoi $2ro girift', |
7737 | 7645 | 'checkuser-log-ipedits' => '$1 viroişhoi $2ro girift', |
— | — | @@ -7838,7 +7746,6 @@ |
7839 | 7747 | 'checkuser-search-initiator' => 'başladan', |
7840 | 7748 | 'checkuser-search-target' => 'niýetlenilýän', |
7841 | 7749 | 'checkuser-ipeditcount' => 'ähli ulanyjylardan ~$1', |
7842 | | - 'checkuser-log-subpage' => 'Gündelik', |
7843 | 7750 | 'checkuser-log-userips' => '$1, $2 üçin IP adresleri aldy', |
7844 | 7751 | 'checkuser-log-ipedits' => '$1, $2 üçin özgerdişleri aldy', |
7845 | 7752 | 'checkuser-log-ipusers' => '$1, $2 üçin ulanyjylary aldy', |
— | — | @@ -7916,7 +7823,6 @@ |
7917 | 7824 | 'checkuser-search-initiator' => 'tagapagsimula', |
7918 | 7825 | 'checkuser-search-target' => 'puntirya', |
7919 | 7826 | 'checkuser-ipeditcount' => '~$1 mula sa lahat ng mga tagagamit', |
7920 | | - 'checkuser-log-subpage' => 'Itala', |
7921 | 7827 | 'checkuser-log-return' => 'Bumalik sa pangunahing pormularyong SuriinTagagamit<!--CheckUser-->', |
7922 | 7828 | 'checkuser-limited' => "'''Pinutol o pinungusan ang mga resulta dahil sa mga kadahilanang panggawain (pagsasagawa).'''", |
7923 | 7829 | 'checkuser-log-userips' => 'Nakakuha si $1 ng mga IP para kay $2', |
— | — | @@ -8016,7 +7922,6 @@ |
8017 | 7923 | 'checkuser-search-initiator' => 'Başlatan', |
8018 | 7924 | 'checkuser-search-target' => 'Hedef', |
8019 | 7925 | 'checkuser-ipeditcount' => 'tüm kullanıcılardan ~$1', |
8020 | | - 'checkuser-log-subpage' => 'Kayıt', |
8021 | 7926 | 'checkuser-log-return' => 'KullancıDenetle ana formuna geri dön', |
8022 | 7927 | 'checkuser-limited' => "'''Performans nedeniyle sonuçlar kırpıldı.'''", |
8023 | 7928 | 'checkuser-log-userips' => '$1, $2 için IPleri aldı', |
— | — | @@ -8113,7 +8018,6 @@ |
8114 | 8019 | 'checkuser-search-initiator' => 'ініціатор', |
8115 | 8020 | 'checkuser-search-target' => 'ціль', |
8116 | 8021 | 'checkuser-ipeditcount' => '~$1 від усіх користувачів', |
8117 | | - 'checkuser-log-subpage' => 'Журнал', |
8118 | 8022 | 'checkuser-log-return' => 'Повернення до головної форми перевірки користувачів', |
8119 | 8023 | 'checkuser-limited' => "'''Результати урізано, щоб не обтяжувати сервер.'''", |
8120 | 8024 | 'checkuser-log-userips' => '$1 отримав IP-адреси для $2', |
— | — | @@ -8195,7 +8099,6 @@ |
8196 | 8100 | 'checkuser-search-initiator' => 'iniziator', |
8197 | 8101 | 'checkuser-search-target' => 'obietivo', |
8198 | 8102 | 'checkuser-ipeditcount' => '~$1 par tuti i utenti', |
8199 | | - 'checkuser-log-subpage' => 'Registro', |
8200 | 8103 | 'checkuser-log-return' => 'Torna al modulo prinçipal de Controlo utenze', |
8201 | 8104 | 'checkuser-limited' => "'''Sti risultati i xe stà tajà a metà par motivi de prestazion.'''", |
8202 | 8105 | 'checkuser-log-userips' => '$1 el gà otegnù i indirizi IP de $2', |
— | — | @@ -8295,7 +8198,6 @@ |
8296 | 8199 | 'checkuser-search-initiator' => 'người khởi đầu', |
8297 | 8200 | 'checkuser-search-target' => 'mục tiêu', |
8298 | 8201 | 'checkuser-ipeditcount' => '~$1 khỏi tất cả các thành viên', |
8299 | | - 'checkuser-log-subpage' => 'Nhật trình', |
8300 | 8202 | 'checkuser-log-return' => 'Quay lại mẫu CheckUser chính', |
8301 | 8203 | 'checkuser-limited' => "'''Các kết quả đã được lược bớt để tăng hiệu suất hoạt động.'''", |
8302 | 8204 | 'checkuser-log-userips' => '$1 lấy địa chỉ IP của $2', |
— | — | @@ -8368,7 +8270,6 @@ |
8369 | 8271 | 'checkuser-search-initiator' => 'flagan', |
8370 | 8272 | 'checkuser-search-target' => 'zeil', |
8371 | 8273 | 'checkuser-ipeditcount' => '~$1 de gebans valik', |
8372 | | - 'checkuser-log-subpage' => 'Jenotalised', |
8373 | 8274 | 'checkuser-log-return' => 'Geikön lü cifafomet', |
8374 | 8275 | 'checkuser-log-userips' => '$1 labon ladetis-IP ela $2', |
8375 | 8276 | 'checkuser-log-ipedits' => '$1 labon redakamis ela $2', |
— | — | @@ -8447,7 +8348,6 @@ |
8448 | 8349 | 'checkuser-search-initiator' => 'בודק', |
8449 | 8350 | 'checkuser-search-target' => 'ציל', |
8450 | 8351 | 'checkuser-ipeditcount' => '~$1 פון אלע באניצער', |
8451 | | - 'checkuser-log-subpage' => 'לאגבוך', |
8452 | 8352 | 'checkuser-create-action' => 'איז געווארן געשאפן', |
8453 | 8353 | 'checkuser-email-action' => 'געשיקט א בליצבריוו צו באניצער "$1"', |
8454 | 8354 | 'checkuser-reset-action' => 'צוריקשטעלן פאסווארט פאר באניצער "$1"', |
— | — | @@ -8488,7 +8388,6 @@ |
8489 | 8389 | 'checkuser-search-initiator' => '創始者', |
8490 | 8390 | 'checkuser-search-target' => '目標', |
8491 | 8391 | 'checkuser-ipeditcount' => '~響全部用戶度搵$1', |
8492 | | - 'checkuser-log-subpage' => '日誌', |
8493 | 8392 | 'checkuser-log-return' => '返去核對用戶主要表格', |
8494 | 8393 | 'checkuser-log-userips' => '$1 拎到 $2 嘅 IP', |
8495 | 8394 | 'checkuser-log-ipedits' => '$1 拎到 $2 嘅編輯', |
— | — | @@ -8569,7 +8468,6 @@ |
8570 | 8469 | 'checkuser-search-initiator' => '操作者', |
8571 | 8470 | 'checkuser-search-target' => '目标', |
8572 | 8471 | 'checkuser-ipeditcount' => '~在全部用户中$1', |
8573 | | - 'checkuser-log-subpage' => '日志', |
8574 | 8472 | 'checkuser-log-return' => '回到查核主表单', |
8575 | 8473 | 'checkuser-limited' => "'''结果已因效率原因而被删减。'''", |
8576 | 8474 | 'checkuser-log-userips' => '$1取得$2的IP信息', |
— | — | @@ -8653,7 +8551,6 @@ |
8654 | 8552 | 'checkuser-search-initiator' => '創始者', |
8655 | 8553 | 'checkuser-search-target' => '目標', |
8656 | 8554 | 'checkuser-ipeditcount' => '~在全部用戶中$1', |
8657 | | - 'checkuser-log-subpage' => '日誌', |
8658 | 8555 | 'checkuser-log-return' => '回到主表單', |
8659 | 8556 | 'checkuser-limited' => "'''結果已因效率原因而被刪減。'''", |
8660 | 8557 | 'checkuser-log-userips' => '$1取得$2的IP訊息', |
Index: branches/REL1_19/extensions/CheckUser/SpecialCheckUserLog.php |
— | — | @@ -5,6 +5,13 @@ |
6 | 6 | parent::__construct( 'CheckUserLog', 'checkuser-log' ); |
7 | 7 | } |
8 | 8 | |
| 9 | + function getCheckUserFormTitle() { |
| 10 | + if ( !isset( $this->checkUserFormTitle ) ) { |
| 11 | + $this->checkUserFormTitle = SpecialPage::getTitleFor('CheckUser'); |
| 12 | + } |
| 13 | + return $this->checkUserFormTitle; |
| 14 | + } |
| 15 | + |
9 | 16 | function execute( $par ) { |
10 | 17 | $this->checkPermissions(); |
11 | 18 | |
— | — | @@ -61,9 +68,9 @@ |
62 | 69 | } |
63 | 70 | } |
64 | 71 | |
65 | | - $out->addHTML( $this->getSkin()->makeKnownLinkObj( |
66 | | - Title::makeTitle( NS_SPECIAL, 'CheckUser' ), |
67 | | - wfMsgHtml( 'checkuser-log-return' ) ) ); |
| 72 | + $out->addHTML( Linker::linkKnown( |
| 73 | + $this->getCheckUserFormTitle(), |
| 74 | + $this->msg( 'checkuser-log-return' ) ) ); |
68 | 75 | |
69 | 76 | $searchTypes = array( 'initiator', 'target' ); |
70 | 77 | $select = "<select name=\"cuSearchType\" style='margin-top:.2em;'>\n"; |
Index: branches/REL1_19/extensions/NewUserMessage/NewUserMessage.class.php |
— | — | @@ -153,6 +153,7 @@ |
154 | 154 | static function createNewUserMessage( $user ) { |
155 | 155 | $talk = $user->getTalkPage(); |
156 | 156 | |
| 157 | + // Only leave message if user doesn't have a talk page yet |
157 | 158 | if ( !$talk->exists() ) { |
158 | 159 | $article = new Article( $talk ); |
159 | 160 | $subject = self::fetchSubject(); |
— | — | @@ -223,7 +224,7 @@ |
224 | 225 | $flags = $article->checkFlags( $flags ); |
225 | 226 | |
226 | 227 | if ( $flags & EDIT_UPDATE ) { |
227 | | - $text = $article->getRawText() . $text; |
| 228 | + $text = $article->getRawText() . "\n" . $text; |
228 | 229 | } |
229 | 230 | |
230 | 231 | $dbw = wfGetDB( DB_MASTER ); |
— | — | @@ -255,13 +256,13 @@ |
256 | 257 | * @param $signature String the signature, if provided. |
257 | 258 | */ |
258 | 259 | static protected function formatUserMessage( $subject, $text, $signature ) { |
259 | | - $contents = "\n"; |
| 260 | + $contents = ""; |
260 | 261 | $signature = empty( $signature ) ? "~~~~" : "{$signature} ~~~~~"; |
261 | 262 | |
262 | 263 | if ( $subject ) { |
263 | | - $contents .= "== $subject ==\n"; |
| 264 | + $contents .= "== $subject ==\n\n"; |
264 | 265 | } |
265 | | - $contents .= "\n$text\n\n-- $signature\n"; |
| 266 | + $contents .= "$text\n\n-- $signature\n"; |
266 | 267 | |
267 | 268 | return $contents; |
268 | 269 | } |
Property changes on: branches/REL1_19/extensions |
___________________________________________________________________ |
Modified: svn:mergeinfo |
269 | 270 | Merged /trunk/extensions:r112586,112926,112930,113352 |