Index: trunk/extensions/CentralAuth/central-auth.sql |
— | — | @@ -74,9 +74,6 @@ |
75 | 75 | -- Used for "deleting" accounts without breaking referential integrity. |
76 | 76 | gu_hidden bool not null default 0, |
77 | 77 | |
78 | | - -- If account is marked as in migration, bureaucrats may rename users under it. |
79 | | - gu_inmigration bool not null default 0, |
80 | | - |
81 | 78 | -- Registration time |
82 | 79 | gu_registration varchar(14) binary, |
83 | 80 | |
Index: trunk/extensions/CentralAuth/db_patches/patch-gu_inmigration.sql |
— | — | @@ -1 +0,0 @@ |
2 | | -ALTER TABLE globaluser ADD gu_inmigration bool not null default 0 AFTER gu_hidden; |
\ No newline at end of file |
Index: trunk/extensions/CentralAuth/CentralAuthUser.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | */ |
20 | 20 | /*private*/ var $mName; |
21 | 21 | /*private*/ var $mStateDirty = false; |
22 | | - /*private*/ var $mVersion = 2; |
| 22 | + /*private*/ var $mVersion = 1; |
23 | 23 | /*private*/ var $mDelayInvalidation = 0; |
24 | 24 | |
25 | 25 | static $mCacheVars = array( |
— | — | @@ -28,7 +28,6 @@ |
29 | 29 | 'mAuthToken', |
30 | 30 | 'mLocked', |
31 | 31 | 'mHidden', |
32 | | - 'mInMigration', |
33 | 32 | 'mRegistration', |
34 | 33 | 'mEmail', |
35 | 34 | 'mAuthenticationTimestamp', |
— | — | @@ -132,7 +131,7 @@ |
133 | 132 | |
134 | 133 | $sql = |
135 | 134 | "SELECT gu_id, lu_wiki, gu_salt, gu_password,gu_auth_token, " . |
136 | | - "gu_locked,gu_hidden,gu_inmigration,gu_registration,gu_email,gu_email_authenticated " . |
| 135 | + "gu_locked,gu_hidden,gu_registration,gu_email,gu_email_authenticated " . |
137 | 136 | "FROM $globaluser " . |
138 | 137 | "LEFT OUTER JOIN $localuser ON gu_name=lu_name AND lu_wiki=? " . |
139 | 138 | "WHERE gu_name=?"; |
— | — | @@ -190,7 +189,6 @@ |
191 | 190 | $this->mAuthToken = $row->gu_auth_token; |
192 | 191 | $this->mLocked = $row->gu_locked; |
193 | 192 | $this->mHidden = $row->gu_hidden; |
194 | | - $this->mInMigration = $row->gu_inmigration; |
195 | 193 | $this->mRegistration = wfTimestamp( TS_MW, $row->gu_registration ); |
196 | 194 | $this->mEmail = $row->gu_email; |
197 | 195 | $this->mAuthenticationTimestamp = |
— | — | @@ -361,14 +359,6 @@ |
362 | 360 | } |
363 | 361 | |
364 | 362 | /** |
365 | | - * @return bool |
366 | | - */ |
367 | | - public function isInMigration() { |
368 | | - $this->loadState(); |
369 | | - return (bool)$this->mInMigration; |
370 | | - } |
371 | | - |
372 | | - /** |
373 | 363 | * @return string timestamp |
374 | 364 | */ |
375 | 365 | public function getRegistration() { |
— | — | @@ -397,7 +387,6 @@ |
398 | 388 | |
399 | 389 | 'gu_locked' => 0, |
400 | 390 | 'gu_hidden' => 0, |
401 | | - 'gu_inmigration' => 0, |
402 | 391 | |
403 | 392 | 'gu_registration' => $dbw->timestamp(), |
404 | 393 | ), |
— | — | @@ -797,6 +786,113 @@ |
798 | 787 | } |
799 | 788 | |
800 | 789 | /** |
| 790 | + * Unattach a list of local accounts from the global account |
| 791 | + * @param array $list List of wiki names |
| 792 | + * @return Status |
| 793 | + */ |
| 794 | + public function adminUnattach( $list ) { |
| 795 | + global $wgMemc; |
| 796 | + if ( !count( $list ) ) { |
| 797 | + return Status::newFatal( 'centralauth-admin-none-selected' ); |
| 798 | + } |
| 799 | + $status = new Status; |
| 800 | + $valid = $this->validateList( $list ); |
| 801 | + $invalid = array_diff( $list, $valid ); |
| 802 | + foreach ( $invalid as $wikiName ) { |
| 803 | + $status->error( 'centralauth-invalid-wiki', $wikiName ); |
| 804 | + $status->failCount++; |
| 805 | + } |
| 806 | + |
| 807 | + $invalidCount = count( $list ) - count( $valid ); |
| 808 | + $missingCount = 0; |
| 809 | + $dbcw = self::getCentralDB(); |
| 810 | + $password = $this->getPassword(); |
| 811 | + |
| 812 | + foreach ( $valid as $wikiName ) { |
| 813 | + # Delete the user from the central localuser table |
| 814 | + $dbcw->delete( 'localuser', |
| 815 | + array( |
| 816 | + 'lu_name' => $this->mName, |
| 817 | + 'lu_wiki' => $wikiName ), |
| 818 | + __METHOD__ ); |
| 819 | + if ( !$dbcw->affectedRows() ) { |
| 820 | + $wiki = WikiMap::getWiki( $wikiName ); |
| 821 | + $status->error( 'centralauth-admin-already-unmerged', $wiki->getDisplayName() ); |
| 822 | + $status->failCount++; |
| 823 | + continue; |
| 824 | + } |
| 825 | + |
| 826 | + # Touch the local user row, update the password |
| 827 | + $lb = wfGetLB( $wikiName ); |
| 828 | + $dblw = $lb->getConnection( DB_MASTER, array(), $wikiName ); |
| 829 | + $dblw->update( 'user', |
| 830 | + array( |
| 831 | + 'user_touched' => wfTimestampNow(), |
| 832 | + 'user_password' => $password |
| 833 | + ), array( 'user_name' => $this->mName ), __METHOD__ |
| 834 | + ); |
| 835 | + $id = $dblw->selectField( 'user', 'user_id', array( 'user_name' => $this->mName ), __METHOD__ ); |
| 836 | + $wgMemc->delete( "$wikiName:user:id:$id" ); |
| 837 | + |
| 838 | + $lb->reuseConnection( $dblw ); |
| 839 | + |
| 840 | + $status->successCount++; |
| 841 | + } |
| 842 | + |
| 843 | + if( in_array( wfWikiID(), $valid ) ) { |
| 844 | + $this->resetState(); |
| 845 | + } |
| 846 | + |
| 847 | + $this->invalidateCache(); |
| 848 | + |
| 849 | + return $status; |
| 850 | + } |
| 851 | + |
| 852 | + /** |
| 853 | + * Delete a global account |
| 854 | + */ |
| 855 | + function adminDelete() { |
| 856 | + global $wgMemc; |
| 857 | + wfDebugLog( 'CentralAuth', "Deleting global account for user {$this->mName}" ); |
| 858 | + $centralDB = self::getCentralDB(); |
| 859 | + |
| 860 | + # Synchronise passwords |
| 861 | + $password = $this->getPassword(); |
| 862 | + $localUserRes = $centralDB->select( 'localuser', '*', |
| 863 | + array( 'lu_name' => $this->mName ), __METHOD__ ); |
| 864 | + $name = $this->getName(); |
| 865 | + foreach ( $localUserRes as $localUserRow ) { |
| 866 | + $wiki = $localUserRow->lu_wiki; |
| 867 | + wfDebug( __METHOD__.": Fixing password on $wiki\n" ); |
| 868 | + $lb = wfGetLB( $wiki ); |
| 869 | + $localDB = $lb->getConnection( DB_MASTER, array(), $wiki ); |
| 870 | + $localDB->update( 'user', |
| 871 | + array( 'user_password' => $password ), |
| 872 | + array( 'user_name' => $name ), |
| 873 | + __METHOD__ |
| 874 | + ); |
| 875 | + $id = $localDB->selectField( 'user', 'user_id', array( 'user_name' => $this->mName ), __METHOD__ ); |
| 876 | + $wgMemc->delete( "$wiki:user:id:$id" ); |
| 877 | + $lb->reuseConnection( $localDB ); |
| 878 | + } |
| 879 | + |
| 880 | + $centralDB->begin(); |
| 881 | + # Delete and lock the globaluser row |
| 882 | + $centralDB->delete( 'globaluser', array( 'gu_name' => $this->mName ), __METHOD__ ); |
| 883 | + if ( !$centralDB->affectedRows() ) { |
| 884 | + $centralDB->commit(); |
| 885 | + return Status::newFatal( 'centralauth-admin-delete-nonexistent', $this->mName ); |
| 886 | + } |
| 887 | + # Delete the localuser rows |
| 888 | + $centralDB->delete( 'localuser', array( 'lu_name' => $this->mName ), __METHOD__ ); |
| 889 | + $centralDB->commit(); |
| 890 | + |
| 891 | + $this->invalidateCache(); |
| 892 | + |
| 893 | + return Status::newGood(); |
| 894 | + } |
| 895 | + |
| 896 | + /** |
801 | 897 | * Lock a global account |
802 | 898 | */ |
803 | 899 | function adminLock() { |
— | — | @@ -873,25 +969,6 @@ |
874 | 970 | } |
875 | 971 | |
876 | 972 | /** |
877 | | - * Mark a global account as in migration |
878 | | - */ |
879 | | - function adminSetInMigration( $newstatus, $actionType ) { |
880 | | - $dbw = self::getCentralDB(); |
881 | | - $dbw->begin(); |
882 | | - $dbw->update( 'globaluser', array( 'gu_inmigration' => (bool)$newstatus ), |
883 | | - array( 'gu_name' => $this->mName ), __METHOD__ ); |
884 | | - if ( !$dbw->affectedRows() ) { |
885 | | - $dbw->commit(); |
886 | | - return Status::newFatal( "centralauth-admin-{$actionType}-nonexistent", $this->mName ); |
887 | | - } |
888 | | - $dbw->commit(); |
889 | | - |
890 | | - $this->invalidateCache(); |
891 | | - |
892 | | - return Status::newGood(); |
893 | | - } |
894 | | - |
895 | | - /** |
896 | 973 | * Add a local account record for the given wiki to the central database. |
897 | 974 | * @param string $wikiID |
898 | 975 | * @param int $localid |
— | — | @@ -1520,7 +1597,6 @@ |
1521 | 1598 | 'gu_auth_token' => $this->mAuthToken, |
1522 | 1599 | 'gu_locked' => $this->mLocked, |
1523 | 1600 | 'gu_hidden' => $this->mHidden, |
1524 | | - 'gu_inmigration' => $this->mInMigration, |
1525 | 1601 | 'gu_email' => $this->mEmail, |
1526 | 1602 | 'gu_email_authenticated' => $dbw->timestampOrNull( $this->mAuthenticationTimestamp ) |
1527 | 1603 | ), |
Index: trunk/extensions/CentralAuth/CentralAuth.php |
— | — | @@ -171,16 +171,14 @@ |
172 | 172 | $wgSpecialPages['GlobalUsers'] = 'SpecialGlobalUsers'; |
173 | 173 | $wgSpecialPageGroups['GlobalUsers'] = 'users'; |
174 | 174 | |
175 | | -$wgLogTypes[] = 'globalauth'; |
176 | | -$wgLogNames['globalauth'] = 'centralauth-log-name'; |
177 | | -$wgLogHeaders['globalauth'] = 'centralauth-log-header'; |
178 | | -$wgLogActions['globalauth/delete'] = 'centralauth-log-entry-delete'; //Legacy |
179 | | -$wgLogActions['globalauth/lock'] = 'centralauth-log-entry-lock'; |
180 | | -$wgLogActions['globalauth/unlock'] = 'centralauth-log-entry-unlock'; |
181 | | -$wgLogActions['globalauth/hide'] = 'centralauth-log-entry-hide'; |
182 | | -$wgLogActions['globalauth/unhide'] = 'centralauth-log-entry-unhide'; |
183 | | -$wgLogActions['globalauth/markasmigrating'] = 'centralauth-log-entry-markasmigrating'; |
184 | | -$wgLogActions['globalauth/unmarkasmigrating'] = 'centralauth-log-entry-unmarkasmigrating'; |
| 175 | +$wgLogTypes[] = 'globalauth'; |
| 176 | +$wgLogNames['globalauth'] = 'centralauth-log-name'; |
| 177 | +$wgLogHeaders['globalauth'] = 'centralauth-log-header'; |
| 178 | +$wgLogActions['globalauth/delete'] = 'centralauth-log-entry-delete'; |
| 179 | +$wgLogActions['globalauth/lock'] = 'centralauth-log-entry-lock'; |
| 180 | +$wgLogActions['globalauth/unlock'] = 'centralauth-log-entry-unlock'; |
| 181 | +$wgLogActions['globalauth/hide'] = 'centralauth-log-entry-hide'; |
| 182 | +$wgLogActions['globalauth/unhide'] = 'centralauth-log-entry-unhide'; |
185 | 183 | |
186 | 184 | $wgLogTypes[] = 'gblrights'; |
187 | 185 | $wgLogNames['gblrights'] = 'centralauth-rightslog-name'; |
Index: trunk/extensions/CentralAuth/SpecialCentralAuth.php |
— | — | @@ -66,12 +66,31 @@ |
67 | 67 | return; |
68 | 68 | } |
69 | 69 | |
70 | | - $locked = $unlocked = $hidden = $unhidden = |
71 | | - $markedAsInMigration = $unmarkedAsInMigration = false; |
| 70 | + $deleted = $locked = $unlocked = $hidden = $unhidden = false; |
72 | 71 | |
73 | 72 | if( $this->mPosted ) { |
74 | 73 | if ( !$wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) ) ) { |
75 | 74 | $this->showError( 'centralauth-token-mismatch' ); |
| 75 | + } elseif( $this->mMethod == 'unmerge' ) { |
| 76 | + $status = $globalUser->adminUnattach( $this->mWikis ); |
| 77 | + if ( !$status->isGood() ) { |
| 78 | + $this->showStatusError( $status->getWikiText() ); |
| 79 | + } else { |
| 80 | + global $wgLang; |
| 81 | + $this->showSuccess( 'centralauth-admin-unmerge-success', |
| 82 | + $wgLang->formatNum( $status->successCount ), |
| 83 | + /* deprecated */ $status->successCount ); |
| 84 | + } |
| 85 | + } elseif ( $this->mMethod == 'delete' ) { |
| 86 | + $status = $globalUser->adminDelete(); |
| 87 | + if ( !$status->isGood() ) { |
| 88 | + $this->showStatusError( $status->getWikiText() ); |
| 89 | + } else { |
| 90 | + global $wgLang; |
| 91 | + $this->showSuccess( 'centralauth-admin-delete-success', $this->mUserName ); |
| 92 | + $deleted = true; |
| 93 | + $this->logAction( 'delete', $this->mUserName, $wgRequest->getVal( 'reason' ) ); |
| 94 | + } |
76 | 95 | } elseif( $this->mMethod == 'lock' ) { |
77 | 96 | $status = $globalUser->adminLock(); |
78 | 97 | if ( !$status->isGood() ) { |
— | — | @@ -112,26 +131,6 @@ |
113 | 132 | $unhidden = true; |
114 | 133 | $this->logAction( 'unhide', $this->mUserName, $wgRequest->getVal( 'reason' ) ); |
115 | 134 | } |
116 | | - } elseif( $this->mMethod == 'markasmigrating' ) { |
117 | | - $status = $globalUser->adminSetInMigration( 1, 'markasmigrating' ); |
118 | | - if ( !$status->isGood() ) { |
119 | | - $this->showStatusError( $status->getWikiText() ); |
120 | | - } else { |
121 | | - global $wgLang; |
122 | | - $this->showSuccess( 'centralauth-admin-markasmigrating-success', $this->mUserName ); |
123 | | - $unhidden = true; |
124 | | - $this->logAction( 'markasmigrating', $this->mUserName, $wgRequest->getVal( 'reason' ) ); |
125 | | - } |
126 | | - } elseif( $this->mMethod == 'unmarkasmigrating' ) { |
127 | | - $status = $globalUser->adminSetInMigration( 0, 'unmarkasmigrating' ); |
128 | | - if ( !$status->isGood() ) { |
129 | | - $this->showStatusError( $status->getWikiText() ); |
130 | | - } else { |
131 | | - global $wgLang; |
132 | | - $this->showSuccess( 'centralauth-admin-unmarkasmigrating-success', $this->mUserName ); |
133 | | - $unhidden = true; |
134 | | - $this->logAction( 'unmarkasmigrating', $this->mUserName, $wgRequest->getVal( 'reason' ) ); |
135 | | - } |
136 | 135 | } else { |
137 | 136 | $this->showError( 'centralauth-admin-bad-input' ); |
138 | 137 | } |
— | — | @@ -139,19 +138,20 @@ |
140 | 139 | } |
141 | 140 | |
142 | 141 | $this->showUsernameForm(); |
143 | | - $this->showInfo(); |
144 | | - if( !$globalUser->isLocked() && !$locked ) |
145 | | - $this->showActionForm( 'lock' ); |
146 | | - if( $globalUser->isLocked() && !$unlocked ) |
147 | | - $this->showActionForm( 'unlock' ); |
148 | | - if( !$globalUser->isHidden() && !$hidden ) |
149 | | - $this->showActionForm( 'hide' ); |
150 | | - if( $globalUser->isHidden() && !$unhidden ) |
151 | | - $this->showActionForm( 'unhide' ); |
152 | | - if( !$globalUser->isInMigration() && !$markedAsInMigration ) |
153 | | - $this->showActionForm( 'markasmigrating' ); |
154 | | - if( $globalUser->isInMigration() && !$unmarkedAsInMigration ) |
155 | | - $this->showActionForm( 'unmarkasmigrating' ); |
| 142 | + if ( !$deleted ) { |
| 143 | + $this->showInfo(); |
| 144 | + $this->showActionForm( 'delete' ); |
| 145 | + if( !$globalUser->isLocked() && !$locked ) |
| 146 | + $this->showActionForm( 'lock' ); |
| 147 | + if( $globalUser->isLocked() && !$unlocked ) |
| 148 | + $this->showActionForm( 'unlock' ); |
| 149 | + if( !$globalUser->isHidden() && !$hidden ) { |
| 150 | + $this->showActionForm( 'hide' ); |
| 151 | + } |
| 152 | + if( $globalUser->isHidden() && !$unhidden ) { |
| 153 | + $this->showActionForm( 'unhide' ); |
| 154 | + } |
| 155 | + } |
156 | 156 | } |
157 | 157 | |
158 | 158 | function showStatusError( $wikitext ) { |
— | — | @@ -267,6 +267,12 @@ |
268 | 268 | global $wgUser; |
269 | 269 | ksort( $list ); |
270 | 270 | return |
| 271 | + Xml::openElement( 'form', |
| 272 | + array( |
| 273 | + 'method' => 'post', |
| 274 | + 'action' => $this->getTitle( $this->mUserName )->getLocalUrl( 'action=submit' ) ) ) . |
| 275 | + Xml::hidden( 'wpMethod', $action ) . |
| 276 | + Xml::hidden( 'wpEditToken', $wgUser->editToken() ) . |
271 | 277 | '<table>' . |
272 | 278 | '<thead>' . |
273 | 279 | $this->tableRow( 'th', |
— | — | @@ -276,8 +282,15 @@ |
277 | 283 | implode( "\n", |
278 | 284 | array_map( array( $this, $listMethod ), |
279 | 285 | $list ) ) . |
| 286 | + '<tr>' . |
| 287 | + '<td></td>' . |
| 288 | + '<td>' . |
| 289 | + Xml::submitButton( $buttonText ) . |
| 290 | + '</td>' . |
| 291 | + '</tr>' . |
280 | 292 | '</tbody>' . |
281 | | - '</table>'; |
| 293 | + '</table>' . |
| 294 | + Xml::closeElement( 'form' ); |
282 | 295 | } |
283 | 296 | |
284 | 297 | function listMergedWikiItem( $row ) { |
— | — | @@ -319,7 +332,7 @@ |
320 | 333 | |
321 | 334 | function adminCheck( $wikiID ) { |
322 | 335 | return |
323 | | - '';//Xml::check( 'wpWikis[]', false, array( 'value' => $wikiID ) ); |
| 336 | + Xml::check( 'wpWikis[]', false, array( 'value' => $wikiID ) ); |
324 | 337 | } |
325 | 338 | |
326 | 339 | function showActionForm( $action ) { |
Index: trunk/extensions/CentralAuth/CentralAuthHooks.php |
— | — | @@ -287,7 +287,7 @@ |
288 | 288 | return false; |
289 | 289 | } |
290 | 290 | $newCentral = new CentralAuthUser( $newName ); |
291 | | - if ( $newCentral->exists() && !$newCentral->isInMigration() ) { |
| 291 | + if ( $newCentral->exists() ) { |
292 | 292 | global $wgOut; |
293 | 293 | wfLoadExtensionMessages('SpecialCentralAuth'); |
294 | 294 | $wgOut->addWikiMsg( 'centralauth-renameuser-exists', $oldName, $newName ); |
Index: trunk/extensions/CentralAuth/CentralAuth.i18n.php |
— | — | @@ -79,7 +79,7 @@ |
80 | 80 | 'centralauth-list-home-dryrun' => 'The password and e-mail address set at this wiki will be used for your unified account. |
81 | 81 | You will be able to change which is your home wiki later.', |
82 | 82 | 'centralauth-list-attached-title' => 'Attached accounts', |
83 | | - 'centralauth-list-attached' => 'The account named "$1" on each of the following sites have been automatically attached to the unified account:', |
| 83 | + 'centralauth-list-attached' => 'The account named "$1" on each the following sites have been automatically attached to the unified account:', |
84 | 84 | 'centralauth-list-attached-dryrun' => 'The account named "$1" on each of the following sites will be automatically attached to the unified account:', |
85 | 85 | 'centralauth-list-unattached-title' => 'Unattached accounts', |
86 | 86 | 'centralauth-list-unattached' => 'The account "$1" could not be automatically confirmed as belonging to you on the following sites; |
— | — | @@ -118,61 +118,60 @@ |
119 | 119 | 'centralauth-attach-success' => 'The account was migrated to the unified account.', |
120 | 120 | |
121 | 121 | // Administrator's console |
122 | | - 'centralauth' => 'Unified login administration', |
123 | | - 'centralauth-admin-manage' => 'Manage user data', |
124 | | - 'centralauth-admin-username' => 'User name:', |
125 | | - 'centralauth-admin-lookup' => 'View or edit user data', |
126 | | - 'centralauth-admin-permission' => "Only stewards may merge other people's accounts for them.", |
127 | | - 'centralauth-admin-no-unified' => 'No unified account for this username.', |
128 | | - 'centralauth-admin-info-id' => 'User ID:', |
129 | | - 'centralauth-admin-info-registered' => 'Registered:', |
130 | | - 'centralauth-admin-info-locked' => 'Locked:', |
131 | | - 'centralauth-admin-info-hidden' => 'Hidden:', |
132 | | - 'centralauth-admin-yes' => 'yes', |
133 | | - 'centralauth-admin-no' => 'no', |
134 | | - 'centralauth-admin-attached' => 'Fully merged accounts', |
135 | | - 'centralauth-admin-unattached' => 'Unattached accounts', |
136 | | - 'centralauth-admin-no-unattached' => 'No unmerged accounts remain.', |
137 | | - 'centralauth-admin-list-localwiki' => 'Local wiki', |
138 | | - 'centralauth-admin-list-attached-on' => 'Attached on', |
139 | | - 'centralauth-admin-list-method' => 'Method', |
140 | | - 'centralauth-admin-unmerge' => 'Unmerge selected', |
141 | | - 'centralauth-admin-merge' => 'Merge selected', |
142 | | - 'centralauth-admin-bad-input' => 'Invalid merge selection', |
143 | | - 'centralauth-admin-none-selected' => 'No accounts selected to modify.', |
144 | | - 'centralauth-admin-nonexistent' => 'There is no global account for "<nowiki>$1</nowiki>"', |
145 | | - 'centralauth-token-mismatch' => 'Sorry, we could not process your form submission due to a loss of session data.', |
146 | | - 'centralauth-admin-lock-title' => 'Lock account', |
147 | | - 'centralauth-admin-lock-description' => 'Locking account will make impossible to log under it in any wiki.', |
148 | | - 'centralauth-admin-lock-button' => 'Lock this account', |
149 | | - 'centralauth-admin-lock-success' => 'Successfully locked the global account for "<nowiki>$1</nowiki>"', |
150 | | - 'centralauth-admin-lock-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
151 | | - 'centralauth-admin-unlock-title' => 'Unlock account', |
152 | | - 'centralauth-admin-unlock-description' => 'Unlocking account will make it possible again to log under it.', |
153 | | - 'centralauth-admin-unlock-button' => 'Unlock this account', |
154 | | - 'centralauth-admin-unlock-success' => 'Successfully unlocked the global account for "<nowiki>$1</nowiki>"', |
155 | | - 'centralauth-admin-unlock-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
156 | | - 'centralauth-admin-hide-title' => 'Hide account', |
157 | | - 'centralauth-admin-hide-description' => 'Hidden accounts are not shown on [[Special:GlobalUsers|Global users]].', |
158 | | - 'centralauth-admin-hide-button' => 'Hide this account', |
159 | | - 'centralauth-admin-hide-success' => 'Successfully hid the global account for "<nowiki>$1</nowiki>"', |
160 | | - 'centralauth-admin-hide-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
161 | | - 'centralauth-admin-unhide-title' => 'Unhide account', |
162 | | - 'centralauth-admin-unhide-description' => 'Unhiding account will make it again appear on [[Special:GlobalUsers|Global users]].', |
163 | | - 'centralauth-admin-unhide-button' => 'Unhide this account', |
164 | | - 'centralauth-admin-unhide-success' => 'Successfully unhid the global account for "<nowiki>$1</nowiki>"', |
165 | | - 'centralauth-admin-unhide-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
166 | | - 'centralauth-admin-markasmigrating-title' => 'Mark account as migrating', |
167 | | - 'centralauth-admin-markasmigrating-description' => 'If account is in migration state, local bureaucrats may rename other accounts to its name.', |
168 | | - 'centralauth-admin-markasmigrating-button' => 'Mark account as migrating', |
169 | | - 'centralauth-admin-markasmigrating-success' => 'Successfully marked the global account for "<nowiki>$1</nowiki>" as migrating', |
170 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
171 | | - 'centralauth-admin-unmarkasmigrating-title' => 'Unmark this account as migrating', |
172 | | - 'centralauth-admin-unmarkasmigrating-description' => 'Allows to remove migration mark from the account.', |
173 | | - 'centralauth-admin-unmarkasmigrating-button' => 'Umark this account as migrating', |
174 | | - 'centralauth-admin-unmarkasmigrating-success' => 'Successfully unmarked the global account for "<nowiki>$1</nowiki>" as migrating', |
175 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
176 | | - 'centralauth-admin-reason' => 'Reason:', |
| 122 | + 'centralauth' => 'Unified login administration', |
| 123 | + 'centralauth-admin-manage' => 'Manage user data', |
| 124 | + 'centralauth-admin-username' => 'User name:', |
| 125 | + 'centralauth-admin-lookup' => 'View or edit user data', |
| 126 | + 'centralauth-admin-permission' => "Only stewards may merge other people's accounts for them.", |
| 127 | + 'centralauth-admin-no-unified' => 'No unified account for this username.', |
| 128 | + 'centralauth-admin-info-id' => 'User ID:', |
| 129 | + 'centralauth-admin-info-registered' => 'Registered:', |
| 130 | + 'centralauth-admin-info-locked' => 'Locked:', |
| 131 | + 'centralauth-admin-info-hidden' => 'Hidden:', |
| 132 | + 'centralauth-admin-yes' => 'yes', |
| 133 | + 'centralauth-admin-no' => 'no', |
| 134 | + 'centralauth-admin-attached' => 'Fully merged accounts', |
| 135 | + 'centralauth-admin-unattached' => 'Unattached accounts', |
| 136 | + 'centralauth-admin-no-unattached' => 'No unmerged accounts remain.', |
| 137 | + 'centralauth-admin-list-localwiki' => 'Local wiki', |
| 138 | + 'centralauth-admin-list-attached-on' => 'Attached on', |
| 139 | + 'centralauth-admin-list-method' => 'Method', |
| 140 | + 'centralauth-admin-unmerge' => 'Unmerge selected', |
| 141 | + 'centralauth-admin-merge' => 'Merge selected', |
| 142 | + 'centralauth-admin-bad-input' => 'Invalid merge selection', |
| 143 | + 'centralauth-admin-none-selected' => 'No accounts selected to modify.', |
| 144 | + 'centralauth-admin-already-unmerged' => 'Skipping $1, already unmerged', |
| 145 | + 'centralauth-admin-unmerge-success' => 'Successfully unmerged $1 {{PLURAL:$1|account|accounts}}', |
| 146 | + 'centralauth-admin-delete-title' => 'Delete account', |
| 147 | + 'centralauth-admin-delete-description' => 'Deleting the global account will delete any global preferences, unattach all local accounts, and leave the global name free for another user to take. |
| 148 | +All local accounts will continue to exist. |
| 149 | +The passwords for local accounts created before the merge will revert to their pre-merge values.', |
| 150 | + 'centralauth-admin-delete-button' => 'Delete this account', |
| 151 | + 'centralauth-admin-delete-success' => 'Successfully deleted the global account for "<nowiki>$1</nowiki>"', |
| 152 | + 'centralauth-admin-nonexistent' => 'There is no global account for "<nowiki>$1</nowiki>"', |
| 153 | + 'centralauth-admin-delete-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
| 154 | + 'centralauth-token-mismatch' => 'Sorry, we could not process your form submission due to a loss of session data.', |
| 155 | + 'centralauth-admin-lock-title' => 'Lock account', |
| 156 | + 'centralauth-admin-lock-description' => 'Locking account will make impossible to log under it in any wiki.', |
| 157 | + 'centralauth-admin-lock-button' => 'Lock this account', |
| 158 | + 'centralauth-admin-lock-success' => 'Successfully locked the global account for "<nowiki>$1</nowiki>"', |
| 159 | + 'centralauth-admin-lock-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
| 160 | + 'centralauth-admin-unlock-title' => 'Unlock account', |
| 161 | + 'centralauth-admin-unlock-description' => 'Unlocking account will make it possible again to log under it.', |
| 162 | + 'centralauth-admin-unlock-button' => 'Unlock this account', |
| 163 | + 'centralauth-admin-unlock-success' => 'Successfully unlocked the global account for "<nowiki>$1</nowiki>"', |
| 164 | + 'centralauth-admin-unlock-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
| 165 | + 'centralauth-admin-hide-title' => 'Hide account', |
| 166 | + 'centralauth-admin-hide-description' => 'Hidden accounts are not shown on [[Special:GlobalUsers|Global users]].', |
| 167 | + 'centralauth-admin-hide-button' => 'Hide this account', |
| 168 | + 'centralauth-admin-hide-success' => 'Successfully hid the global account for "<nowiki>$1</nowiki>"', |
| 169 | + 'centralauth-admin-hide-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
| 170 | + 'centralauth-admin-unhide-title' => 'Unhide account', |
| 171 | + 'centralauth-admin-unhide-description' => 'Unhiding account will make it again appear on [[Special:GlobalUsers|Global users]].', |
| 172 | + 'centralauth-admin-unhide-button' => 'Unhide this account', |
| 173 | + 'centralauth-admin-unhide-success' => 'Successfully unhid the global account for "<nowiki>$1</nowiki>"', |
| 174 | + 'centralauth-admin-unhide-nonexistent' => 'Error: the global account "<nowiki>$1</nowiki>" does not exist.', |
| 175 | + 'centralauth-admin-reason' => 'Reason:', |
177 | 176 | |
178 | 177 | // List of global users |
179 | 178 | 'globalusers' => 'Global user list', |
— | — | @@ -206,27 +205,25 @@ |
207 | 206 | // Other messages |
208 | 207 | 'centralauth-invalid-wiki' => 'No such wiki DB: $1', |
209 | 208 | 'centralauth-account-exists' => 'Cannot create account: the requested username is already taken in the unified login system.', |
210 | | - 'centralauth-autologin-desc' => 'This special page is used internally by MediaWiki. |
| 209 | + 'centralauth-autologin-desc' => 'This special page is used internally by MediaWiki. |
211 | 210 | When you [[Special:UserLogin|log in]], the central login system instructs your browser to request this page from all linked domains, using image links. |
212 | 211 | You have requested this page without providing any authentication data, so it does nothing.', |
213 | 212 | 'centralauth-login-progress' => 'Logging you in to Wikimedia\'s other projects:', |
214 | 213 | 'centralauth-logout-progress' => 'Logging you out from Wikimedia\'s other projects:', |
215 | 214 | |
216 | 215 | // Logging |
217 | | - 'centralauth-log-name' => 'Global account log', |
218 | | - 'centralauth-log-header' => 'This log contains operations under global accounts: deletions, locking and unlocking.', |
219 | | - 'centralauth-log-entry-delete' => 'deleted global account "<nowiki>$1</nowiki>"', |
220 | | - 'centralauth-log-entry-lock' => 'locked global account "<nowiki>$1</nowiki>"', |
221 | | - 'centralauth-log-entry-unlock' => 'unlocked global account "<nowiki>$1</nowiki>"', |
222 | | - 'centralauth-log-entry-hide' => 'hid global account "<nowiki>$1</nowiki>"', |
223 | | - 'centralauth-log-entry-unhide' => 'unhid global account "<nowiki>$1</nowiki>"', |
224 | | - 'centralauth-log-entry-markasmigrating' => 'marked global account "<nowiki>$1</nowiki>" as migrating', |
225 | | - 'centralauth-log-entry-unmarkasmigrating' => 'unmarked global account "<nowiki>$1</nowiki>" as migrating', |
| 216 | + 'centralauth-log-name' => 'Global account log', |
| 217 | + 'centralauth-log-header' => 'This log contains operations under global accounts: deletions, locking and unlocking.', |
| 218 | + 'centralauth-log-entry-delete' => 'deleted global account "<nowiki>$1</nowiki>"', |
| 219 | + 'centralauth-log-entry-lock' => 'locked global account "<nowiki>$1</nowiki>"', |
| 220 | + 'centralauth-log-entry-unlock' => 'unlocked global account "<nowiki>$1</nowiki>"', |
| 221 | + 'centralauth-log-entry-hide' => 'hid global account "<nowiki>$1</nowiki>"', |
| 222 | + 'centralauth-log-entry-unhide' => 'unhid global account "<nowiki>$1</nowiki>"', |
226 | 223 | |
227 | 224 | 'centralauth-rightslog-name' => 'Global rights log', |
228 | 225 | 'centralauth-rightslog-entry-usergroups' => 'changed global group membership for $1 from $2 to $3', |
229 | 226 | 'centralauth-rightslog-entry-groupperms' => 'changed group permissions for $1 from $2 to $3', |
230 | | - 'centralauth-rightslog-header' => 'This log contains operations on global groups: membership and permissions changes.', |
| 227 | + 'centralauth-rightslog-header' => 'This log contains operations on global groups: membership and permissions changes', |
231 | 228 | |
232 | 229 | // Global group membership |
233 | 230 | 'globalgroupmembership' => 'Membership in global groups', |
— | — | @@ -491,7 +488,6 @@ |
492 | 489 | 'centralauth-blocked-text' => 'الويكي الرئيسي الخاص بك (معروض بالأسفل) ممنوع من التعديل. من فضلك اتصل بمدير نظام في هذا الويكي لرفع المنع عنه. بينما هو ممنوع، لا يمكنك دمج حساباتك.', |
493 | 490 | 'centralauth-notice-dryrun' => "<div class='successbox'>نمط التجربة فقط</div><br clear='all'/>", |
494 | 491 | 'centralauth-disabled-dryrun' => 'توحيد الحساب حاليا في طور التجربة/تصحيح الأخطاء، لذا عمليات الدمج الفعلية معطلة. عذرا!', |
495 | | - 'centralauth-error-locked' => 'لا يمكنك التعديل لأن حسابك مغلق.', |
496 | 492 | 'centralauth-readmore-text' => ":''[[meta:Help:Unified login|اقرأ المزيد حول '''الدخول الموحد''']]...''", |
497 | 493 | 'centralauth-list-home-title' => 'موقع الويكي الرئيسي', |
498 | 494 | 'centralauth-list-home-dryrun' => 'كلمة السر وعنوان البريد الإلكتروني المحدد في هذا الويكي سيتم استخدامهما لحسابك الموحد. سيمكنك تغيير أيها هي موقع الويكي الرئيسي الخاص بك فيما بعد.', |
— | — | @@ -544,7 +540,16 @@ |
545 | 541 | 'centralauth-admin-merge' => 'تم اختيار الدمج', |
546 | 542 | 'centralauth-admin-bad-input' => 'اختيار دمج غير صحيح', |
547 | 543 | 'centralauth-admin-none-selected' => 'لم يتم اختيار حسابات للدمج', |
| 544 | + 'centralauth-admin-already-unmerged' => 'تجاوز $1، غير مدمج بالفعل', |
| 545 | + 'centralauth-admin-unmerge-success' => 'بنجاح أزال دمج $1 {{PLURAL:$1|حساب|حساب}}', |
| 546 | + 'centralauth-admin-delete-title' => 'حذف الحساب', |
| 547 | + 'centralauth-admin-delete-description' => 'حذف الحساب العام سيحذف أية تفضيلات عامة، فصل ارتباط كل الحسابات المحلية، ويترك الاسم العام حرا لأي مستخدم ليأخذه. |
| 548 | +كل الحسابات المحلية ستستمر في الوجود. |
| 549 | +كلمات السر للحسابات المحلية المنشأة قبل الدمج ستسترجع إلى قيمها قبل الدمج.', |
| 550 | + 'centralauth-admin-delete-button' => 'حذف هذا الحساب', |
| 551 | + 'centralauth-admin-delete-success' => 'بنجاح حذف الحساب العام ل "<nowiki>$1</nowiki>"', |
548 | 552 | 'centralauth-admin-nonexistent' => 'لا يوجد حساب عام ل "<nowiki>$1</nowiki>"', |
| 553 | + 'centralauth-admin-delete-nonexistent' => 'خطأ: الحساب العام "<nowiki>$1</nowiki>" غير موجود.', |
549 | 554 | 'centralauth-token-mismatch' => 'عذرا، لم نستطع معالجة طلبك نتيجة لفقد بيانات الجلسة.', |
550 | 555 | 'centralauth-admin-lock-title' => 'غلق حساب', |
551 | 556 | 'centralauth-admin-lock-description' => 'غلق الحساب سيجعل من المستحيل الدخول به في أي ويكي.', |
— | — | @@ -556,26 +561,6 @@ |
557 | 562 | 'centralauth-admin-unlock-button' => 'رفع غلق هذا الحساب', |
558 | 563 | 'centralauth-admin-unlock-success' => 'بنجاح تم رفع غلق الحساب العام ل "<nowiki>$1</nowiki>"', |
559 | 564 | 'centralauth-admin-unlock-nonexistent' => 'خطأ: الحساب العام "<nowiki>$1</nowiki>" غير موجود.', |
560 | | - 'centralauth-admin-hide-title' => 'إخفاء الحساب', |
561 | | - 'centralauth-admin-hide-description' => 'الحسابات المخفية لا تعرض في [[Special:GlobalUsers|المستخدمين العامين]].', |
562 | | - 'centralauth-admin-hide-button' => 'أخف هذا الحساب', |
563 | | - 'centralauth-admin-hide-success' => 'بنجاح أخفى الحساب العام ل"<nowiki>$1</nowiki>"', |
564 | | - 'centralauth-admin-hide-nonexistent' => 'خطأ: الحساب العام "<nowiki>$1</nowiki>" غير موجود.', |
565 | | - 'centralauth-admin-unhide-title' => 'إظهار الحساب', |
566 | | - 'centralauth-admin-unhide-description' => 'إظهار الحساب سيجعله يظهر مرة أخرى في [[Special:GlobalUsers|المستخدمين العامين]].', |
567 | | - 'centralauth-admin-unhide-button' => 'أظهر هذا الحساب', |
568 | | - 'centralauth-admin-unhide-success' => 'بنجاح أظهر الحساب العام ل"<nowiki>$1</nowiki>"', |
569 | | - 'centralauth-admin-unhide-nonexistent' => 'خطأ: الحساب العام "<nowiki>$1</nowiki>" غير موجود.', |
570 | | - 'centralauth-admin-markasmigrating-title' => 'علم على الحساب كمهاجر', |
571 | | - 'centralauth-admin-markasmigrating-description' => 'لو أن الحساب في حالة هجرة، البيروقراطيون المحليون يمكنهم إعادة تسمية الحسابات الأخرى لاسمه.', |
572 | | - 'centralauth-admin-markasmigrating-button' => 'التعليم على الحساب كمهاجر', |
573 | | - 'centralauth-admin-markasmigrating-success' => 'بنجاح علم على الحساب العام ل "<nowiki>$1</nowiki>" كمهاجر', |
574 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'خطأ: الحساب العام "<nowiki>$1</nowiki>" غير موجود.', |
575 | | - 'centralauth-admin-unmarkasmigrating-title' => 'إزالة تعليم هذا الحساب كمهاجر', |
576 | | - 'centralauth-admin-unmarkasmigrating-description' => 'يسمح بإزالة علامة الهجرة من الحساب.', |
577 | | - 'centralauth-admin-unmarkasmigrating-button' => 'إزالة تعليم هذا الحساب كمراجع', |
578 | | - 'centralauth-admin-unmarkasmigrating-success' => 'بنجاح أزال تعليم الحساب العام ل "<nowiki>$1</nowiki>" كمهاجر', |
579 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => 'خطأ: الحساب العام "<nowiki>$1</nowiki>" غير موجود.', |
580 | 565 | 'centralauth-admin-reason' => 'السبب:', |
581 | 566 | 'globalusers' => 'قائمة المستخدمين العامة', |
582 | 567 | 'centralauth-listusers-locked' => 'مغلق', |
— | — | @@ -610,10 +595,6 @@ |
611 | 596 | 'centralauth-log-entry-delete' => 'حذف الحساب العام "<nowiki>$1</nowiki>"', |
612 | 597 | 'centralauth-log-entry-lock' => 'أغلق الحساب العام "<nowiki>$1</nowiki>"', |
613 | 598 | 'centralauth-log-entry-unlock' => 'رفع غلق الحساب العام "<nowiki>$1</nowiki>"', |
614 | | - 'centralauth-log-entry-hide' => 'أخفى الحساب العام "<nowiki>$1</nowiki>"', |
615 | | - 'centralauth-log-entry-unhide' => 'أظهر الحساب العام "<nowiki>$1</nowiki>"', |
616 | | - 'centralauth-log-entry-markasmigrating' => 'علم على الحساب العام "<nowiki>$1</nowiki>" كمهاجر', |
617 | | - 'centralauth-log-entry-unmarkasmigrating' => 'أزال تعليم الحساب العام "<nowiki>$1</nowiki>" كمهاجر', |
618 | 599 | 'centralauth-rightslog-name' => 'سجل الصلاحيات العام', |
619 | 600 | 'centralauth-rightslog-entry-usergroups' => 'غير عضوية المجموعة العامة ل$1 من $2 إلى $3', |
620 | 601 | 'centralauth-rightslog-entry-groupperms' => 'غير سماحات المجموعة ل$1 من $2 إلى $3', |
— | — | @@ -968,7 +949,16 @@ |
969 | 950 | 'centralauth-admin-merge' => 'Сливане на избраните', |
970 | 951 | 'centralauth-admin-bad-input' => 'Невалиден избор за сливане', |
971 | 952 | 'centralauth-admin-none-selected' => 'Не са избрани сметки за промяна.', |
| 953 | + 'centralauth-admin-already-unmerged' => 'Прескачане на $1, вече е отделена', |
| 954 | + 'centralauth-admin-unmerge-success' => 'Беше извършено успешно разделяне на $1 {{PLURAL:$1|сметка|сметки}}', |
| 955 | + 'centralauth-admin-delete-title' => 'Изтриване на сметка', |
| 956 | + 'centralauth-admin-delete-description' => 'Изтриването на глобалната сметка ще изтрие всички глобални настройки, ще разкачи всички локални сметки и ще остави глобалното име свободно за друг потребител. |
| 957 | +Всички локални сметки ще продължат да съществуват. |
| 958 | +Паролите за локалните сметки, създадени преди сливането ще бъдат върнати към стойностите преди сливането.', |
| 959 | + 'centralauth-admin-delete-button' => 'Изтриване на сметката', |
| 960 | + 'centralauth-admin-delete-success' => 'Глобалната сметка за „<nowiki>$1</nowiki>“ беше изтрита успешно', |
972 | 961 | 'centralauth-admin-nonexistent' => 'Не съществува глобална сметка за „<nowiki>$1</nowiki>”', |
| 962 | + 'centralauth-admin-delete-nonexistent' => 'Грешка: Не съществува глобална сметка „<nowiki>$1</nowiki>”.', |
973 | 963 | 'centralauth-token-mismatch' => 'За съжаление не успяхме да обработим изпратения формуляр поради загуба на данните за текущата ви сесия.', |
974 | 964 | 'centralauth-admin-lock-title' => 'Заключване на сметка', |
975 | 965 | 'centralauth-admin-lock-description' => 'Заключването на сметка ще направи невъзможно влизането в кое да е уики.', |
— | — | @@ -981,10 +971,6 @@ |
982 | 972 | 'centralauth-admin-unlock-success' => 'Успешно отключена глобална сметка за „<nowiki>$1</nowiki>“', |
983 | 973 | 'centralauth-admin-unlock-nonexistent' => 'Грешка: Не съществува глобална сметка „<nowiki>$1</nowiki>“.', |
984 | 974 | 'centralauth-admin-hide-title' => 'Скриване на сметка', |
985 | | - 'centralauth-admin-hide-description' => 'Скритите сметки не се показват на страницата [[Special:GlobalUsers|Глобални потребители]].', |
986 | | - 'centralauth-admin-hide-button' => 'Скриване на сметката', |
987 | | - 'centralauth-admin-hide-nonexistent' => 'Грешка: не съществува глобална сметка „<nowiki>$1</nowiki>“.', |
988 | | - 'centralauth-admin-unhide-nonexistent' => 'Грешка: не съществува глобална сметка „<nowiki>$1</nowiki>“.', |
989 | 975 | 'centralauth-admin-reason' => 'Причина:', |
990 | 976 | 'globalusers' => 'Списък на глобалните сметки', |
991 | 977 | 'centralauth-listusers-locked' => 'заключена', |
— | — | @@ -1012,8 +998,8 @@ |
1013 | 999 | 'centralauth-autologin-desc' => 'Тази специална страница се използва вътрешно от МедияУики. |
1014 | 1000 | Когато [[Special:UserLogin|влизате]], централната система по влизането казва на браузъра ви да поиска тази страница от всички свързани домейни, като се използват препратки към изображения. |
1015 | 1001 | Извикали сте настоящата страница, без да посочите удостоверяващи данни, затова нищо повече няма да се случи.', |
1016 | | - 'centralauth-login-progress' => 'Влизате автоматично и в следните проекти на Уикимедия:', |
1017 | | - 'centralauth-logout-progress' => 'Излизате автоматично и от следните проекти на Уикимедия:', |
| 1002 | + 'centralauth-login-progress' => 'Влизане и в другите проекти на Уикимедия:', |
| 1003 | + 'centralauth-logout-progress' => 'Излизане и от другите проекти на Уикимедия:', |
1018 | 1004 | 'centralauth-log-name' => 'Дневник на глобалното управление на сметки', |
1019 | 1005 | 'centralauth-log-header' => 'Този дневник съдържа запис на операциите по глобалните сметки: изтривания, заключвания и отключвания.', |
1020 | 1006 | 'centralauth-log-entry-delete' => 'изтрита глобална сметка „<nowiki>$1</nowiki>“', |
— | — | @@ -1645,40 +1631,12 @@ |
1646 | 1632 | 'right-globalgrouppermissions' => 'Spravování globálních skupin', |
1647 | 1633 | ); |
1648 | 1634 | |
1649 | | -/** Church Slavic (Словѣньскъ) |
1650 | | - * @author ОйЛ |
1651 | | - */ |
1652 | | -$messages['cu'] = array( |
1653 | | - 'centralauth-admin-username' => 'по́льꙃєватєлꙗ и́мѧ :', |
1654 | | -); |
1655 | | - |
1656 | 1635 | /** Welsh (Cymraeg) |
1657 | 1636 | * @author Lloffiwr |
1658 | 1637 | */ |
1659 | 1638 | $messages['cy'] = array( |
1660 | | - 'centralauth-merge-step3-submit' => "Uno'r cyfrifon", |
1661 | | - 'centralauth-list-home-title' => 'Wici cartref', |
1662 | | - 'centralauth-admin-info-id' => 'ID y defnyddiwr:', |
1663 | | - 'centralauth-admin-info-registered' => 'Wedi cofrestri:', |
1664 | | - 'centralauth-admin-info-locked' => 'Wedi cloi:', |
1665 | | - 'centralauth-admin-info-hidden' => 'Wedi cuddio:', |
1666 | | - 'centralauth-prefs-status' => 'Statws y cyfrif wici-gyfan:', |
1667 | | - 'centralauth-prefs-not-managed' => 'Ddim yn defnyddio cyfrif unedig', |
1668 | | - 'centralauth-prefs-unattached' => 'Heb ei gadarnhau', |
1669 | | - 'centralauth-prefs-complete' => 'Popeth yn iawn!', |
1670 | | - 'centralauth-prefs-count-attached' => "Mae'ch cyfrif ar waith ar $1 {{plural:$1|safle|safle|safle|safle|safle|safle}} prosiect.", |
1671 | | - 'centralauth-prefs-detail-unattached' => "Ni chadarnhawyd bod y safle prosiect hwn yn aelod o'r cyfrif wici-gyfan.", |
1672 | | - 'centralauth-prefs-manage' => "Rheoli'ch cyfrif wici-gyfan", |
1673 | | - 'centralauth-login-progress' => 'Yn mewngofnodi i brosiectau eraill Wikimedia hefyd:', |
1674 | | - 'centralauth-logout-progress' => 'Yn allgofnodi o brosiectau eraill Wikimedia hefyd:', |
1675 | | - 'centralauth-log-name' => 'Lòg cyfrifon wici-gyfan', |
1676 | | - 'centralauth-log-entry-delete' => 'wedi dileu cyfrif wici-gyfan "<nowiki>$1</nowiki>"', |
1677 | | - 'centralauth-log-entry-lock' => 'wedi cloi cyfrif wici-gyfan "<nowiki>$1</nowiki>"', |
1678 | | - 'centralauth-log-entry-unlock' => 'wedi datgloi cyfrif wici-gyfan "<nowiki>$1</nowiki>"', |
1679 | | - 'centralauth-log-entry-hide' => 'wedi cuddio cyfrif wici-gyfan "<nowiki>$1</nowiki>"', |
1680 | | - 'centralauth-rightslog-name' => 'Lòg galluoedd wici-gyfan', |
1681 | | - 'centralauth-rightslog-entry-usergroups' => 'newidiwyd aelodaeth grŵp wici-gyfan $1 o $2 i $3', |
1682 | | - 'centralauth-rightslog-entry-groupperms' => 'newidiwyd galluoedd y grŵp $1 o $2 i $3', |
| 1639 | + 'centralauth-login-progress' => 'Yn mewngofnodi i brosiectau eraill Wikimedia hefyd:', |
| 1640 | + 'centralauth-logout-progress' => 'Yn allgofnodi o brosiectau eraill Wikimedia hefyd:', |
1683 | 1641 | ); |
1684 | 1642 | |
1685 | 1643 | /** Danish (Dansk) |
— | — | @@ -1891,16 +1849,6 @@ |
1892 | 1850 | 'centralauth-admin-unhide-button' => 'Benutzerkonto wieder sichtbar machen', |
1893 | 1851 | 'centralauth-admin-unhide-success' => 'Das globale Benutzerkonto „<nowiki>$1</nowiki>“ wurde erfolgreich wieder sichtbar gemacht.', |
1894 | 1852 | 'centralauth-admin-unhide-nonexistent' => 'Fehler: Das globale Benutzerkonto „<nowiki>$1</nowiki>“ ist nicht vorhanden.', |
1895 | | - 'centralauth-admin-markasmigrating-title' => 'Markiere Benutzerkonto als in Migration befindlich', |
1896 | | - 'centralauth-admin-markasmigrating-description' => 'Wenn sich das Benutzerkonto im Migrationsstatus befindet, können lokale Bürokraten andere Benutzerkonto auf dieses umbenennen.', |
1897 | | - 'centralauth-admin-markasmigrating-button' => 'Markiere Benutzerkonto als in Migration befindlich', |
1898 | | - 'centralauth-admin-markasmigrating-success' => 'Das globale Benutzerkonto „<nowiki>$1</nowiki>“ wurde erfolgreich als in Migration befindlich markiert.', |
1899 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'Fehler: Das globale Benutzerkonto „<nowiki>$1</nowiki>“ ist nicht vorhanden.', |
1900 | | - 'centralauth-admin-unmarkasmigrating-title' => 'Migrationsstatus des Benutzerkontos aufheben', |
1901 | | - 'centralauth-admin-unmarkasmigrating-description' => 'Ermöglicht die Aufhebeung des Migrations-Status.', |
1902 | | - 'centralauth-admin-unmarkasmigrating-button' => 'Migrationsstatus des Benutzerkontos aufheben', |
1903 | | - 'centralauth-admin-unmarkasmigrating-success' => 'Der Migrationsstatus für das globale Benutzerkonto „<nowiki>$1</nowiki>“ wurde erfolgreich aufgehoben.', |
1904 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => 'Fehler: Das globale Benutzerkonto „<nowiki>$1</nowiki>“ ist nicht vorhanden.', |
1905 | 1853 | 'centralauth-admin-block-title' => 'Benutzerkonto sperren', |
1906 | 1854 | 'centralauth-admin-block-description' => 'Mit diesem Formular kannst du ein globales Benutzerkonto sperren. Gesperrte globale Benutzer können sich weiterhin anmelden, aber keine Seiten bearbeiten.', |
1907 | 1855 | 'centralauth-admin-block-button' => 'Benutzerkonto sperren', |
— | — | @@ -1949,10 +1897,6 @@ |
1950 | 1898 | 'centralauth-log-entry-unlock' => 'entsperrte das globale Benutzerkonto „<nowiki>$1</nowiki>“', |
1951 | 1899 | 'centralauth-log-entry-hide' => 'versteckte das globale Benutzerkonto „<nowiki>$1</nowiki>“', |
1952 | 1900 | 'centralauth-log-entry-unhide' => 'machte das globale Benutzerkonto „<nowiki>$1</nowiki>“ wieder sichtbar', |
1953 | | - 'centralauth-log-entry-markasmigrating' => 'markierte das globale Benutzerkonto „<nowiki>$1</nowiki>“ als in Migration befindlich', |
1954 | | - 'centralauth-log-entry-unmarkasmigrating' => 'hob den Migrationsstatus für das globale Benutzerkonto „<nowiki>$1</nowiki>“ auf', |
1955 | | - 'centralauth-log-entry-block' => 'sperrte das globale Benutzerkonto „<nowiki>$1</nowiki>“. Sperrende: $2', |
1956 | | - 'centralauth-log-entry-unblock' => 'entsperrte das globale Benutzerkonto „<nowiki>$1</nowiki>“', |
1957 | 1901 | 'centralauth-rightslog-name' => 'Globales Rechte-Logbuch', |
1958 | 1902 | 'centralauth-rightslog-entry-usergroups' => 'änderte die globale Gruppenzugehörigkeit für „$1“ von $2 auf $3', |
1959 | 1903 | 'centralauth-rightslog-entry-groupperms' => 'änderte die Gruppenrechte für „$1“ von $2 auf $3', |
— | — | @@ -2017,9 +1961,7 @@ |
2018 | 1962 | |
2019 | 1963 | Εάν κάποιος άλλος έχει ήδη πάρει το όνομα χρήστη σας σε άλλον ιστοχώρο, αυτό δεν θα τον ενοχλήσει, θα σας δώσει όμως την ευκαιρία αργότερα να λύσετε το πρόβλημα μαζί του ή με κάποιον διαχειριστή.", |
2020 | 1964 | 'centralauth-merge-step1-title' => 'Έναρξη ενοποίησης των λογαριασμών', |
2021 | | - 'centralauth-merge-step1-detail' => 'Παρακαλώ εισάγεται τον κωδικό του λογαριασμού σας. |
2022 | | -Ο κωδικός σας και η ηλεκτρονική διεύθυνση που έχετε δηλώσει θα υποβληθούν σε έλεγχο με τους λογαριασμούς σε άλλα εγχειρήματα για να επιβεβαιωθεί ότι ταιριάζουν. |
2023 | | -Δεν θα γίνει καμία αλλαγή έως ότου επιβεβαιώσετε ότι τα πάντα είναι εντάξει.', |
| 1965 | + 'centralauth-merge-step1-detail' => 'Ο κωδικός σας και η ηλεκτρονική διεύθυνση που έχετε δηλώσει θα υποβληθούν σε έλεγχο με τους λογαριασμούς σε άλλα εγχειρήματα για να επιβεβαιωθεί ότι ταιριάζουν. Δεν θα γίνει καμία αλλαγή έως ότου επιβεβαιώσετε ότι τα πάντα είναι εντάξει.', |
2024 | 1966 | 'centralauth-merge-step1-submit' => 'Επαλήθευση των πληροφοριών σύνδεσης', |
2025 | 1967 | 'centralauth-merge-step2-title' => 'Επιβεβαίωση περισσότερων λογαριασμών', |
2026 | 1968 | 'centralauth-merge-step2-detail' => 'Μερικοί λογαριασμοί δεν έγινε δυνατό να συνταιριάξουν αυτόματα με το αρχικό προκαθορισμένο εγχείρημα. Εάν αυτοί οι λογαριασμοί σας ανήκουν, μπορείτε να επιβεβαιώσετε ότι είναι δικοί σας παρέχοντας τον κωδικό τους.', |
— | — | @@ -2459,10 +2401,8 @@ |
2460 | 2402 | 'centralauth-not-owner-text' => 'حساب کاربری «$1» به طور خودکار به صاحب حساب کاربری در $2 اختصاص داده شد. |
2461 | 2403 | |
2462 | 2404 | اگر شما صاحب این حساب هستید، شما میتوانید روند یکی کردن حسابهای کاربری را با وارد کردن کلمه عبور سراسری در اینجا به پایان برسانید:', |
2463 | | - 'centralauth-blocked-text' => 'دسترسی ویرایش در ویکی خانهٔ شما (که در زیر فهرست شدهاست) بسته است. لطفاً با یکی از مدیران تماس بگیرید تا آن را باز کند. تا زمانی که این دسترسی بسته باشد نمیتوانید حسابهای کاربریتان را یکی کنید.', |
2464 | 2405 | 'centralauth-notice-dryrun' => "<div class='successbox'>فقط مدل نمایشی</div><br clear='all'/>", |
2465 | 2406 | 'centralauth-disabled-dryrun' => 'سامانه یکی کردن حسابهای کاربری در حال حاضر به طور آزمایشی و برای رفع ایراد فعال است، بنابراین یکی کردن واقعی حسابهای کاربری هنوز فعال نیست. متاسفیم!', |
2466 | | - 'centralauth-error-locked' => 'شما نمیتوانید ویرایش کنید چون حساب کاربری شما قفل شدهاست.', |
2467 | 2407 | 'centralauth-readmore-text' => ":''[[meta:Help:Unified login|اطلاعات بیشتر دربارهٔ '''حساب کاربری مشترک''']]...''", |
2468 | 2408 | 'centralauth-list-home-title' => 'ویکی اصلی', |
2469 | 2409 | 'centralauth-list-home-dryrun' => 'کلمه عبور و نشانی پست الکترونیکی انتخاب شده در این ویکی برای حساب کاربری مشترک شما مورد استفاده قرار خواهد گرفت، و حساب کاربری شما در دیگر ویکیها به طور خودکار به این ویکی پیوند خواهد شد. شما میتوانید بعداً ویکی اصلی خود را تغییر دهید.', |
— | — | @@ -2516,7 +2456,16 @@ |
2517 | 2457 | 'centralauth-admin-merge' => 'انتخاب ادغام', |
2518 | 2458 | 'centralauth-admin-bad-input' => 'انتخاب غیرمجاز برای ادغام', |
2519 | 2459 | 'centralauth-admin-none-selected' => 'هیچ حساب کاربری برای تغییر انتخاب نشدهاست.', |
| 2460 | + 'centralauth-admin-already-unmerged' => 'پریدن از روی $1، به دلیل این که از ادغام در آورده شده', |
| 2461 | + 'centralauth-admin-unmerge-success' => '$1 {{PLURAL:$1|حساب کاربری|حساب کاربری}} را با موفقیت از ادغام در آورد', |
| 2462 | + 'centralauth-admin-delete-title' => 'حذف حساب کاربری', |
| 2463 | + 'centralauth-admin-delete-description' => 'حذف حساب کاربری مشترک باعث حذف تنظیمات مشترک و از ادغام در آمدن حسابهای محلی میشود و نام کاربری مشترک را برای استفاده دیگر کاربرها آزاد میگذارد. |
| 2464 | +حسابهای کاربری محلی باقی خواهند ماند. |
| 2465 | +گذرواژهٔ حسابهای کاربری که قبل از ادغام ایجاد شده بودند به مقدار قبل از ادغام بازگشت خواهد کرد.', |
| 2466 | + 'centralauth-admin-delete-button' => 'حذف این حساب کاربری', |
| 2467 | + 'centralauth-admin-delete-success' => 'حساب کاربری مشترک «<nowiki>$1</nowiki>» را با موفقیت حذف کرد.', |
2520 | 2468 | 'centralauth-admin-nonexistent' => 'حساب کاربری مشترکی برای «<nowiki>$1</nowiki>» وجود ندارد.', |
| 2469 | + 'centralauth-admin-delete-nonexistent' => 'خطا: حساب کاربری مشترک «<nowiki>$1</nowiki>» وجود ندارد.', |
2521 | 2470 | 'centralauth-token-mismatch' => 'شرمنده! به علت از دست رفتن اطلاعات نشست کاربری، نمیتوانیم فرم شما را پردازش کنیم.', |
2522 | 2471 | 'centralauth-admin-lock-title' => 'حساب را ببند', |
2523 | 2472 | 'centralauth-admin-lock-description' => 'بستن حساب کاربری باعث میشود که امکان ورود به هیچ ویکی با استفاده از آن وجود نداشته باشد.', |
— | — | @@ -2528,26 +2477,6 @@ |
2529 | 2478 | 'centralauth-admin-unlock-button' => 'این حساب را باز کن', |
2530 | 2479 | 'centralauth-admin-unlock-success' => 'حساب کاربری «<nowiki>$1</nowiki>» با موفقیت باز شد', |
2531 | 2480 | 'centralauth-admin-unlock-nonexistent' => 'خطا: حساب کاربری مشترک «<nowiki>$1</nowiki>» وجود ندارد.', |
2532 | | - 'centralauth-admin-hide-title' => 'پنهان کردن حساب کاربری', |
2533 | | - 'centralauth-admin-hide-description' => 'حسابهای کاربری پنهان شده در [[Special:GlobalUsers|فهرست کاربرهای مشترک]] نمایش داده نمیشوند.', |
2534 | | - 'centralauth-admin-hide-button' => 'این حساب را پنهانکن', |
2535 | | - 'centralauth-admin-hide-success' => 'حساب کاربری مشترک برای «<nowiki>$1</nowiki>» را با موفقیت پنهان کرد', |
2536 | | - 'centralauth-admin-hide-nonexistent' => 'خطا: حساب کاربری مشترک «<nowiki>$1</nowiki>» وجود ندارد.', |
2537 | | - 'centralauth-admin-unhide-title' => 'از پنهانی به در آوردن حساب کاربری', |
2538 | | - 'centralauth-admin-unhide-description' => 'از پنهانی به در آوردن حساب کاربری باعث میشود که دوباره در [[Special:GlobalUsers|فهرست کاربرهای مشترک]] نمایش داده شود.', |
2539 | | - 'centralauth-admin-unhide-button' => 'از پنهانی به در آوردن این حساب کاربری', |
2540 | | - 'centralauth-admin-unhide-success' => 'حساب کاربری مشترک «<nowiki>$1</nowiki>» را با موفقیت از پنهانی به در آورد', |
2541 | | - 'centralauth-admin-unhide-nonexistent' => 'خطا: حساب کاربری مشترک «<nowiki>$1</nowiki>» وجود ندارد.', |
2542 | | - 'centralauth-admin-markasmigrating-title' => 'علامت زدن حساب کاربری به عنوان در حال انتقال', |
2543 | | - 'centralauth-admin-markasmigrating-description' => 'اگر حساب کاربری در وضعیت انتقال باشد، دیوانسالاران محلی میتوانند حسابهای دیگری را به آن نام تغییر دهند.', |
2544 | | - 'centralauth-admin-markasmigrating-button' => 'حساب را به عنوان در حال انتقال علامت بزن', |
2545 | | - 'centralauth-admin-markasmigrating-success' => 'حساب کاربری مشترک «<nowiki>$1</nowiki>» را با موفقیت به عنوان در حال انتقال علامت زد', |
2546 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'خطا: حساب کاربری مشترک «<nowiki>$1</nowiki>» وجود ندارد.', |
2547 | | - 'centralauth-admin-unmarkasmigrating-title' => 'برداشتن علامت انتقال از این حساب کاربری', |
2548 | | - 'centralauth-admin-unmarkasmigrating-description' => 'اجازه میدهد که علامت انتقال از حساب کاربری برداشته شود.', |
2549 | | - 'centralauth-admin-unmarkasmigrating-button' => 'علامت انتقال این حساب را بردار', |
2550 | | - 'centralauth-admin-unmarkasmigrating-success' => 'علامت انتقال حساب کاربری مشترک «<nowiki>$1</nowiki>» را با موفقیت برداشت', |
2551 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => 'خطا: حساب کاربری مشترک «<nowiki>$1</nowiki>» وجود ندارد.', |
2552 | 2481 | 'centralauth-admin-reason' => 'دلیل:', |
2553 | 2482 | 'globalusers' => 'فهرست کاربری مشترک', |
2554 | 2483 | 'centralauth-listusers-locked' => 'قفل شده', |
— | — | @@ -2572,20 +2501,11 @@ |
2573 | 2502 | 'centralauth-renameuser-exists' => '<div class="errorbox">نام حساب کاربری $2 را نمیتوان تغییر داد زیرا این حساب کاربری برای یک حساب مشترک کنار گذاشته شدهاست.</div>', |
2574 | 2503 | 'centralauth-invalid-wiki' => 'چنین پایگاه اطلاعاتی وجود ندارد: $1', |
2575 | 2504 | 'centralauth-account-exists' => 'امکان ایجاد حساب کاربری وجود ندارد: حساب کاربری مورد نظر پیش از این در سامانه حساب کاربری مشترک به کار گرفته شدهاست.', |
2576 | | - 'centralauth-autologin-desc' => 'این صفحهٔ ویژه به طور داخلی توسط مدیاویکی استفاده میشود. |
2577 | | -وقتی شما [[Special:UserLogin|به سیستم وارد میشوید]]، سامانهٔ ورود مرکزی به مرورگر شما دستور میدهد که این صفحه را از تمام دامنههای پیوند شده، با استفاده از پیوند تصاویر، دریافت کند. |
2578 | | -شما این صفحه را بدون هیچگونه دادهٔ تصدیق درخواست کردهاید، پس اتفاقی نمیافتد.', |
2579 | | - 'centralauth-login-progress' => 'شما وارد حساب خود در پروژههای دیگر ویکیمدیا نیز میشوید:', |
2580 | | - 'centralauth-logout-progress' => 'شما از دیگر پروژههای ویکیمدیا خارج میشوید:', |
2581 | 2505 | 'centralauth-log-name' => 'سیاههً مدیریت حسابهای کاربری مشترک', |
2582 | 2506 | 'centralauth-log-header' => 'این سیاهه شامل عملکردهای مربوط به حسابهای کاربری مشترک است: حذف، بستن و باز کردن.', |
2583 | 2507 | 'centralauth-log-entry-delete' => 'حساب کاربری مشترک «<nowiki>$1</nowiki>» را حذف کرد', |
2584 | 2508 | 'centralauth-log-entry-lock' => 'حساب کاربری مشترک «<nowiki>$1</nowiki>» را بست', |
2585 | 2509 | 'centralauth-log-entry-unlock' => 'حساب کاربری مشترک «<nowiki>$1</nowiki>» را باز کرد', |
2586 | | - 'centralauth-log-entry-hide' => 'حساب کاربری مشترک «<nowiki>$1</nowiki>» را پنهان کرد', |
2587 | | - 'centralauth-log-entry-unhide' => 'حساب کاربری مشترک «<nowiki>$1</nowiki>» را از پنهانی به در آورد', |
2588 | | - 'centralauth-log-entry-markasmigrating' => 'به حساب کاربری مشترک «<nowiki>$1</nowiki>» علامت انتقال زد', |
2589 | | - 'centralauth-log-entry-unmarkasmigrating' => 'علامت انتقال حساب کاربری «<nowiki>$1</nowiki>» را برداشت', |
2590 | 2510 | 'centralauth-rightslog-name' => 'سیاههٔ اختیارات سراسری', |
2591 | 2511 | 'centralauth-rightslog-entry-usergroups' => 'عضویت $1 در گروههای سراسری را از $2 به $3 تغییر داد', |
2592 | 2512 | 'centralauth-rightslog-entry-groupperms' => 'اختیارات گروه سراسری $1 را از $2 به $3 تغییر داد', |
— | — | @@ -2881,7 +2801,14 @@ |
2882 | 2802 | 'centralauth-admin-merge' => 'Fusionner la sélection', |
2883 | 2803 | 'centralauth-admin-bad-input' => 'Sélection invalide', |
2884 | 2804 | 'centralauth-admin-none-selected' => 'Aucun compte sélectionné.', |
| 2805 | + 'centralauth-admin-already-unmerged' => 'Sauter $1, déjà défusionné', |
| 2806 | + 'centralauth-admin-unmerge-success' => '$1 {{PLURAL:$1|compte|comptes}} défusionnés avec succès', |
| 2807 | + 'centralauth-admin-delete-title' => 'Supprimer le compte', |
| 2808 | + 'centralauth-admin-delete-description' => "La suppression du compte global détruiera toutes les références globales, détachera l'ensemble des comptes locaux, et laissera le nom global disponible pour tout autre utilisateur. Les mots de passe pour les comptes créés localement, avant la fusion, annuleront toutes leurs valeurs avant la fusion.", |
| 2809 | + 'centralauth-admin-delete-button' => 'Supprimer ce compte', |
| 2810 | + 'centralauth-admin-delete-success' => 'Le compte global pour « <nowiki>$1</nowiki> » a été supprimé avec succès', |
2885 | 2811 | 'centralauth-admin-nonexistent' => "Il n'existe aucun compte global pour « <nowiki>$1</nowiki> »", |
| 2812 | + 'centralauth-admin-delete-nonexistent' => 'Erreur : le compte global « <nowiki>$1</nowiki> » n’existe pas.', |
2886 | 2813 | 'centralauth-token-mismatch' => 'Désolé, nous ne pouvons soumettre votre formulaire à cause de la perte des données de votre session.', |
2887 | 2814 | 'centralauth-admin-lock-title' => 'Verrouiller le compte', |
2888 | 2815 | 'centralauth-admin-lock-description' => 'Le verrouillage du compte rendra impossible toute connexion sous son nom dans n’importe quel wiki.', |
— | — | @@ -2903,12 +2830,6 @@ |
2904 | 2831 | 'centralauth-admin-unhide-button' => 'Faire réapparaître ce compte', |
2905 | 2832 | 'centralauth-admin-unhide-success' => 'Réapparition du compte global « <nowiki>$1</nowiki> » réalisée avec succès', |
2906 | 2833 | 'centralauth-admin-unhide-nonexistent' => 'Erreur : le compte global « <nowiki>$1</nowiki> » n’existe pas.', |
2907 | | - 'centralauth-admin-markasmigrating-title' => 'Marquer le compte comme étant en migration', |
2908 | | - 'centralauth-admin-markasmigrating-description' => 'Si un compte est en migration, les bureaucrates locaux peuvent renommer des autres compte vers son nom.', |
2909 | | - 'centralauth-admin-markasmigrating-button' => 'Marquer ce compte comme étant en migration', |
2910 | | - 'centralauth-admin-markasmigrating-success' => 'Le compte global « <nowiki>$1</nowiki> » a été marqué en migration avec succès', |
2911 | | - 'centralauth-admin-markasmigrating-nonexistent' => "Erreur : le compte global « <nowiki>$1</nowiki> » n'existe pas.", |
2912 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => "Erreur : le compte global « <nowiki>$1</nowiki> » n'existe pas.", |
2913 | 2834 | 'centralauth-admin-reason' => 'Motif :', |
2914 | 2835 | 'globalusers' => 'Liste globale des utilisateurs', |
2915 | 2836 | 'centralauth-listusers-locked' => 'verrouillé', |
— | — | @@ -2944,8 +2865,7 @@ |
2945 | 2866 | 'centralauth-log-entry-lock' => 'a verrouillé le compte global « <nowiki>$1</nowiki> »', |
2946 | 2867 | 'centralauth-log-entry-unlock' => 'a déverrouillé le compte global « <nowiki>$1</nowiki> »', |
2947 | 2868 | 'centralauth-log-entry-hide' => 'a caché le compte global « <nowiki>$1</nowiki> »', |
2948 | | - 'centralauth-log-entry-unhide' => 'a fait réapparaître le compte global « <nowiki>$1</nowiki> »', |
2949 | | - 'centralauth-log-entry-markasmigrating' => 'a marqué le compte global « <nowiki>$1</nowiki> » comme étant en migration', |
| 2869 | + 'centralauth-log-entry-unhide' => 'a fait réapparaître le compte global « nowiki>$1</nowiki> »', |
2950 | 2870 | 'centralauth-rightslog-name' => 'Historique des modifications de statut globaux', |
2951 | 2871 | 'centralauth-rightslog-entry-usergroups' => 'a modifié les droits globaux de l’utilisateur « $1 » de $2 à $3', |
2952 | 2872 | 'centralauth-rightslog-entry-groupperms' => 'a modifié les droits du groupe $1 de $2 à $3', |
— | — | @@ -3394,7 +3314,14 @@ |
3395 | 3315 | 'centralauth-admin-merge' => 'מיזוג החשבונות שנבחרו', |
3396 | 3316 | 'centralauth-admin-bad-input' => 'בחירה שגויה של מיזוג', |
3397 | 3317 | 'centralauth-admin-none-selected' => 'לא נבחרו חשבונות לשינוי.', |
| 3318 | + 'centralauth-admin-already-unmerged' => 'החשבון $1 כבר מוזג', |
| 3319 | + 'centralauth-admin-unmerge-success' => '{{PLURAL:$1|חשבון אחד|$1 חשבונות}} מוזגו בהצלחה', |
| 3320 | + 'centralauth-admin-delete-title' => 'מחיקת חשבון', |
| 3321 | + 'centralauth-admin-delete-description' => 'מחיקת החשבון הכללי תמחק את כל ההעדפות הכלליות, תבטל את מיזוגם של כל החשבונות המקומיים, ותשאיר את השם הכללי חופשי למשתמשים אחרים. כל החשבונות הקיימים ימשיכו להתקיים. הסיסמאות לחשבונות מקומיים שנוצרו לפני המיזוג יוחזרו לערכיהם לפני המיזוג.', |
| 3322 | + 'centralauth-admin-delete-button' => 'מחיקת חשבון זה', |
| 3323 | + 'centralauth-admin-delete-success' => 'החשבון הראשי"<nowiki>$1</nowiki>" נמחק בהצלחה', |
3398 | 3324 | 'centralauth-admin-nonexistent' => 'אין חשבון כללי בשם "<nowiki>$1</nowiki>"', |
| 3325 | + 'centralauth-admin-delete-nonexistent' => 'שגיאה: החשבון הכללי "<nowiki>$1</nowiki>" אינו קיים.', |
3399 | 3326 | 'centralauth-token-mismatch' => 'מצטערים, לא יכולנו לעבד את בקשתכם עקב אובדן מידע הכניסה.', |
3400 | 3327 | 'centralauth-admin-lock-title' => 'נעילת חשבון', |
3401 | 3328 | 'centralauth-admin-lock-description' => 'נעילת חשבון תגרום לכך שאי אפשר יהיה להיכנס אליו באף אתר.', |
— | — | @@ -3416,16 +3343,6 @@ |
3417 | 3344 | 'centralauth-admin-unhide-button' => 'ביטול הסתרת חשבון זה', |
3418 | 3345 | 'centralauth-admin-unhide-success' => 'ביטול הסתרת החשבון הכללי בשם "<nowiki>$1</nowiki>" הושלמה בהצלחה.', |
3419 | 3346 | 'centralauth-admin-unhide-nonexistent' => 'שגיאה: לא קיים חשבון כללי בשם "<nowiki>$1</nowiki>".', |
3420 | | - 'centralauth-admin-markasmigrating-title' => 'סימון כחשבון במיזוג', |
3421 | | - 'centralauth-admin-markasmigrating-description' => 'אם החשבון במצב מיזוג, ביורוקרטים מקומיים יכולים לשנות שמות של חשבונות אחרים לשם המשתמש שלו.', |
3422 | | - 'centralauth-admin-markasmigrating-button' => 'סימון כחשבון במיזוג', |
3423 | | - 'centralauth-admin-markasmigrating-success' => 'סימון החשבון הכללי בשם "<nowiki>$1</nowiki>" כחשבון במיזוג הושלם בהצלחה.', |
3424 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'שגיאה: לא קיים חשבון כללי בשם "<nowiki>$1</nowiki>".', |
3425 | | - 'centralauth-admin-unmarkasmigrating-title' => 'ביטול הסימון כחשבון במיזוג', |
3426 | | - 'centralauth-admin-unmarkasmigrating-description' => 'מאפשר לבטל את סימון החשבון במצב מיזוג.', |
3427 | | - 'centralauth-admin-unmarkasmigrating-button' => 'ביטול הסימון כחשבון במיזוג', |
3428 | | - 'centralauth-admin-unmarkasmigrating-success' => 'ביטול סימון החשבון הכללי בשם "<nowiki>$1</nowiki>" כחשבון במיזוג הושלם בהצלחה.', |
3429 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => 'שגיאה: לא קיים חשבון כללי בשם "<nowiki>$1</nowiki>".', |
3430 | 3347 | 'centralauth-admin-reason' => 'סיבה:', |
3431 | 3348 | 'globalusers' => 'רשימת חשבונות כלליים', |
3432 | 3349 | 'centralauth-listusers-locked' => 'נעול', |
— | — | @@ -3460,8 +3377,6 @@ |
3461 | 3378 | 'centralauth-log-entry-unlock' => 'ביטל את נעילת החשבון הכללי "<nowiki>$1</nowiki>"', |
3462 | 3379 | 'centralauth-log-entry-hide' => 'הסתיר את החשבון הכללי "<nowiki>$1</nowiki>"', |
3463 | 3380 | 'centralauth-log-entry-unhide' => 'ביטול את הסתרת החשבון הכללי "<nowiki>$1</nowiki>"', |
3464 | | - 'centralauth-log-entry-markasmigrating' => 'סימן את החשבון הכללי "<nowiki>$1</nowiki>" כחשבון במיזוג', |
3465 | | - 'centralauth-log-entry-unmarkasmigrating' => 'ביטל את סימון החשבון הכללי "<nowiki>$1</nowiki>" כחשבון במיזוג', |
3466 | 3381 | 'centralauth-rightslog-name' => 'יומן הרשאות כלליות', |
3467 | 3382 | 'centralauth-rightslog-entry-usergroups' => 'שינה את ההרשאות הכלליות של $1 מ-$2 ל-$3', |
3468 | 3383 | 'centralauth-rightslog-entry-groupperms' => 'שינה את הרשאות הקבוצה $1 מ-$2 ל-$3', |
— | — | @@ -4423,8 +4338,6 @@ |
4424 | 4339 | * @author BrokenArrow |
4425 | 4340 | * @author Cruccone |
4426 | 4341 | * @author Siebrand |
4427 | | - * @author Cruccone |
4428 | | - * @author Siebrand |
4429 | 4342 | */ |
4430 | 4343 | $messages['it'] = array( |
4431 | 4344 | 'mergeaccount' => 'Processo di unificazione delle utenze - status', |
— | — | @@ -4434,9 +4347,7 @@ |
4435 | 4348 | 'centralauth-merge-notlogged' => 'Si prega di <span class="plainlinks">[{{fullurl:Special:Userlogin|returnto=Special%3AMergeAccount}} effettuare il login]</span> per verificare se il processo di unificazione delle proprie utenze è completo.', |
4436 | 4349 | 'centralauth-merge-welcome' => "'''Il tuo account utente non è ancora stato importato nel sistema di identificazione unificato di Wikimedia (Wikimedia's unified login system).''' Se decidi di unificare i tuoi account, potrai usare lo stesso nome utente e la stessa password per accedere a tutti i progetti wiki di Wikimedia in tutte le lingue disponibili. Questo faciliterà il lavoro con i progetti comuni, ad esempio caricare file su [http://commons.wikimedia.org/ Wikimedia Commons], ed eviterà la confusione ed i conflitti che nascerebbero se due o più utenti scegliessero lo stesso nome utente su più progetti. Se qualcun altro ha già preso il tuo nome utente su un altro sito, questo non lo disturberà, ma l'unificazione darà a te la possibilità di sottoporre in futuro il problema all'altro utente o ad un amministratore.", |
4437 | 4350 | 'centralauth-merge-step1-title' => "Avvia l'unificazione dei login", |
4438 | | - 'centralauth-merge-step1-detail' => "Inserisci qui la password del tuo account. |
4439 | | -La tua password e l'indirizzo e-mail registrato saranno ora controllati sugli account in altre wiki per confermare che corrispondano. |
4440 | | -Nessuna modifica sarà effettuata prima della tua conferma che tutto appare in regola.", |
| 4351 | + 'centralauth-merge-step1-detail' => "La tua password e l'indirizzo e-mail registrato saranno ora controllati sugli account in altre wiki per confermare che corrispondano. Nessuna modifica sarà effettuata prima della tua conferma che tutto appare in regola.", |
4441 | 4352 | 'centralauth-merge-step1-submit' => 'Conferma le informazioni per il login', |
4442 | 4353 | 'centralauth-merge-step2-title' => 'Conferma altri account', |
4443 | 4354 | 'centralauth-merge-step2-detail' => 'Non è stato possibile collegare automaticamente alcuni account a quello sulla tua wiki principale. Se sei il titolare di questi account, prova che ti appartengono indicando le password per ciascuno di essi.', |
— | — | @@ -4516,14 +4427,23 @@ |
4517 | 4428 | 'centralauth-admin-merge' => 'Collega gli account selezionati', |
4518 | 4429 | 'centralauth-admin-bad-input' => "Selezione per l'unificazione NON valida", |
4519 | 4430 | 'centralauth-admin-none-selected' => 'Non sono stati selezionati account da modificare', |
| 4431 | + 'centralauth-admin-already-unmerged' => 'Salto $1, già separato', |
| 4432 | + 'centralauth-admin-unmerge-success' => '$1 account {{PLURAL:$1|separato|separati}} con successo', |
| 4433 | + 'centralauth-admin-delete-title' => 'Elimina account', |
| 4434 | + 'centralauth-admin-delete-description' => "La cancellazione dell'account globale eliminerà tutte le preferenze globali, disgiungerà tutti gli account locali e lascerà il nome globale libero perché un altro utente lo prenda. |
| 4435 | +Tutti gli account locali continueranno ad esistere. |
| 4436 | +Le password per gli account locali create prima della fusione torneranno ai loro valori precedenti la fusione.", |
| 4437 | + 'centralauth-admin-delete-button' => 'Elimina questo account', |
| 4438 | + 'centralauth-admin-delete-success' => 'Account globale per "<nowiki>$1</nowiki>" eliminato con successo', |
4520 | 4439 | 'centralauth-admin-nonexistent' => 'Non esiste un account globale per "<nowiki>$1</nowiki>"', |
| 4440 | + 'centralauth-admin-delete-nonexistent' => 'Errore: l\'account globale "<nowiki>$1</nowiki>" non esiste.', |
4521 | 4441 | 'centralauth-admin-lock-title' => "Blocca l'account", |
4522 | | - 'centralauth-seconds-ago' => '$1 {{PLURAL:$1|secondo|secondi}} fa', |
4523 | | - 'centralauth-minutes-ago' => '$1 {{PLURAL:$1|minuto|minuti}} fa', |
4524 | | - 'centralauth-hours-ago' => '$1 {{PLURAL:$1|ora|ore}} fa', |
4525 | | - 'centralauth-days-ago' => '$1 {{PLURAL:$1|giorno|giorni}} fa', |
4526 | | - 'centralauth-months-ago' => '$1 {{PLURAL:$1|mese|mesi}} fa', |
4527 | | - 'centralauth-years-ago' => '$1 {{PLURAL:$1|anno|anni}} fa', |
| 4442 | + 'centralauth-seconds-ago' => '$1 secondi fa', |
| 4443 | + 'centralauth-minutes-ago' => '$1 minuti fa', |
| 4444 | + 'centralauth-hours-ago' => '$1 ore fa', |
| 4445 | + 'centralauth-days-ago' => '$1 giorni fa', |
| 4446 | + 'centralauth-months-ago' => '$1 mesi fa', |
| 4447 | + 'centralauth-years-ago' => '$1 anni fa', |
4528 | 4448 | 'centralauth-prefs-status' => "Situazione dell'account globale:", |
4529 | 4449 | 'centralauth-prefs-not-managed' => 'Account unificato non in uso', |
4530 | 4450 | 'centralauth-prefs-unattached' => 'Non confermato', |
— | — | @@ -4534,8 +4454,6 @@ |
4535 | 4455 | 'centralauth-prefs-detail-unattached' => "Questo sito non è stato confermato come appartenente all'account globale.", |
4536 | 4456 | 'centralauth-prefs-manage' => 'Gestione del tuo account globale', |
4537 | 4457 | 'centralauth-renameuser-abort' => '<div class="errorbox">Impossibile rinominare localmente l\'utente $1 perché questa utenza è stata trasferita al sistema unificato di identificazione (unified login system).</div>', |
4538 | | - 'centralauth-login-progress' => 'Accesso effettuato negli altri progetti Wikimedia:', |
4539 | | - 'centralauth-logout-progress' => 'Uscita effettuata dagli altri progetti Wikimedia:', |
4540 | 4458 | ); |
4541 | 4459 | |
4542 | 4460 | /** Japanese (日本語) |
— | — | @@ -5764,7 +5682,6 @@ |
5765 | 5683 | Bis elo sinn nach keng Ännerungen un äre Benotzerkonte gemaach ginn.', |
5766 | 5684 | 'centralauth-merge-dryrun-or' => "'''oder'''", |
5767 | 5685 | 'centralauth-notice-dryrun' => "<div class='successbox'>Demonstratiounsmodus</div><br clear='all'/>", |
5768 | | - 'centralauth-error-locked' => 'Dir kënnt näischt ännere well Dir gespaart sidd.', |
5769 | 5686 | 'centralauth-list-home-title' => 'Heemechts-Wiki', |
5770 | 5687 | 'centralauth-list-attached-title' => 'Verbonne Benotzerkonten', |
5771 | 5688 | 'centralauth-list-unattached-title' => 'Net verbonne Benotzerkonten', |
— | — | @@ -5777,8 +5694,6 @@ |
5778 | 5695 | 'centralauth-finish-password' => 'Passwuert:', |
5779 | 5696 | 'centralauth-finish-login' => 'Umeldung', |
5780 | 5697 | 'centralauth-finish-send-confirmation' => 'Passwuert per E-Mail zouschécken', |
5781 | | - 'centralauth-finish-noconfirms' => 'Kee Benotzerkont konnt mat dësem Passwuert confirméiert ginn.', |
5782 | | - 'centralauth-attach-list-attached' => 'De globale Benotzerkont mam Numm "$1" besteet aus dëse Konten:', |
5783 | 5698 | 'centralauth-attach-title' => 'Benotzerkont confirméieren', |
5784 | 5699 | 'centralauth-attach-submit' => 'Benotzerkont migréieren', |
5785 | 5700 | 'centralauth-admin-manage' => 'Benotzerdate verwalten', |
— | — | @@ -5795,7 +5710,11 @@ |
5796 | 5711 | 'centralauth-admin-list-localwiki' => 'Lokal Wiki', |
5797 | 5712 | 'centralauth-admin-list-method' => 'Method', |
5798 | 5713 | 'centralauth-admin-none-selected' => "Et goufe keng Benotzerkonten ausgewielt fir z'änneren.", |
| 5714 | + 'centralauth-admin-delete-title' => 'Kont läschen', |
| 5715 | + 'centralauth-admin-delete-button' => 'Dëse Kont läschen', |
| 5716 | + 'centralauth-admin-delete-success' => 'De globale Benotzerkont "<nowiki>$1</nowiki>" gouf geläscht', |
5799 | 5717 | 'centralauth-admin-nonexistent' => 'Et gëtt kee globale Benotzerkont fir "<nowiki>$1</nowiki>"', |
| 5718 | + 'centralauth-admin-delete-nonexistent' => 'Feeler: de globale Benotzerkont "<nowiki>$1</nowiki>" gëtt et net.', |
5800 | 5719 | 'centralauth-token-mismatch' => "Pardon, mir konnten d'Donnéeën vun ärer Demande (Formulaire) net verschaffen wëll Date vun ärer Sessioun verluer gi sinn.", |
5801 | 5720 | 'centralauth-admin-lock-title' => 'Benotzerkont spären', |
5802 | 5721 | 'centralauth-admin-lock-description' => "D'Späre vum Benotzerkont mécht et onméiglech sech an iergendenger Wiki anzeloggen.", |
— | — | @@ -6176,13 +6095,6 @@ |
6177 | 6096 | 'centralauth-editgroup-members' => 'Narių sąrašas:', |
6178 | 6097 | ); |
6179 | 6098 | |
6180 | | -/** Latvian (Latviešu) |
6181 | | - * @author Yyy |
6182 | | - */ |
6183 | | -$messages['lv'] = array( |
6184 | | - 'globalusers' => 'Globālo lietotāju uzskaitījums', |
6185 | | -); |
6186 | | - |
6187 | 6099 | /** Malayalam (മലയാളം) |
6188 | 6100 | * @author Shijualex |
6189 | 6101 | * @author Praveenp |
— | — | @@ -6855,7 +6767,16 @@ |
6856 | 6768 | 'centralauth-admin-merge' => 'Geselecteerde gebruikers samenvoegen', |
6857 | 6769 | 'centralauth-admin-bad-input' => 'Onjuiste samenvoegselectie', |
6858 | 6770 | 'centralauth-admin-none-selected' => 'Er zijn geen gebruikers geselecteerd om te wijzigen', |
| 6771 | + 'centralauth-admin-already-unmerged' => '$1 overgeslagen. Is al niet meer samengevoegd', |
| 6772 | + 'centralauth-admin-unmerge-success' => 'Het ongedaan maken van het samenvoegen is geslaagd voor $1 {{PLURAL:$1|gebruiker|gebruikers}}', |
| 6773 | + 'centralauth-admin-delete-title' => 'Verwijder gebruiker', |
| 6774 | + 'centralauth-admin-delete-description' => 'Met het verwijderen van de globale gebruiker worden alle globale voorkeuren verwijderd, alle lokale gebruikers ontkoppeld, en de globale gebruiker komt beschikbaar voor een andere gebruiker. |
| 6775 | +Alle lokale gebruikers blijven bestaan. |
| 6776 | +De wachtwoorden voor de lokale gebruikers worden teruggezet naar de wachtwoorden zoals die waren voor het samenvoegen.', |
| 6777 | + 'centralauth-admin-delete-button' => 'Verwijder deze gebruiker', |
| 6778 | + 'centralauth-admin-delete-success' => 'Het verwijderen van de globale gebruiker "<nowiki>$1</nowiki>" is geslaagd', |
6859 | 6779 | 'centralauth-admin-nonexistent' => 'Er is geen globale gebruiker voor "<nowiki>$1</nowiki>"', |
| 6780 | + 'centralauth-admin-delete-nonexistent' => 'Fout: de globale gebruiker "<nowiki>$1</nowiki>" bestaat niet.', |
6860 | 6781 | 'centralauth-token-mismatch' => 'Vanwege verlies van de sessiegegevens kon uw verzoek niet verwerkt worden.', |
6861 | 6782 | 'centralauth-admin-lock-title' => 'Gebruiker afsluiten', |
6862 | 6783 | 'centralauth-admin-lock-description' => 'Afgesloten gebruikers kunnen niet meer gebruikt worden om bij een wiki aan te melden.', |
— | — | @@ -6877,16 +6798,6 @@ |
6878 | 6799 | 'centralauth-admin-unhide-button' => 'Deze gebruiker zichtbaar maken', |
6879 | 6800 | 'centralauth-admin-unhide-success' => 'De globale gebruiker "<nowiki>$1</nowiki>" is weer zichtbaar', |
6880 | 6801 | 'centralauth-admin-unhide-nonexistent' => 'Fout: de globale gebruiker "<nowiki>$1</nowiki>" bestaat niet.', |
6881 | | - 'centralauth-admin-markasmigrating-title' => 'Gebruiker als in migratie markeren', |
6882 | | - 'centralauth-admin-markasmigrating-description' => 'Als de gebruiker in migratie is, kunnen lokale bureaucraten andere gebruikers naar deze naam hernoemen.', |
6883 | | - 'centralauth-admin-markasmigrating-button' => 'Gebruiker als in migratie markeren', |
6884 | | - 'centralauth-admin-markasmigrating-success' => 'De globale gebruiker "<nowiki>$1</nowiki>" is in migratie gemarkeerd', |
6885 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'Fout: de globale gebruiker "<nowiki>$1</nowiki>" bestaat niet.', |
6886 | | - 'centralauth-admin-unmarkasmigrating-title' => 'Deze gebruiker niet langer als in migratie aanmerken', |
6887 | | - 'centralauth-admin-unmarkasmigrating-description' => 'Maakt het mogelijk om de markering in migratie van een gebruiker te verwijderen', |
6888 | | - 'centralauth-admin-unmarkasmigrating-button' => 'Deze gebruiker niet langer als in migratie aanmerken', |
6889 | | - 'centralauth-admin-unmarkasmigrating-success' => 'De globale gebruiker "<nowiki>$1</nowiki>" is niet langer gemarkeerd als in migratie', |
6890 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => 'Fout: de globale gebruiker "<nowiki>$1</nowiki>" bestaat niet.', |
6891 | 6802 | 'centralauth-admin-reason' => 'Reden:', |
6892 | 6803 | 'globalusers' => 'Gebruikerslijst (globaal)', |
6893 | 6804 | 'centralauth-listusers-locked' => 'afgeschermd', |
— | — | @@ -6923,8 +6834,6 @@ |
6924 | 6835 | 'centralauth-log-entry-unlock' => 'heeft de globale gebruiker "<nowiki>$1</nowiki>" vrijgegeven', |
6925 | 6836 | 'centralauth-log-entry-hide' => 'heeft de globale gebruiker "<nowiki>$1</nowiki>" verborgen', |
6926 | 6837 | 'centralauth-log-entry-unhide' => 'heeft de globale gebruiker "<nowiki>$1</nowiki>" zichtbaar gemaakt', |
6927 | | - 'centralauth-log-entry-markasmigrating' => 'heeft de globale gebruiker "<nowiki>$1</nowiki>" als in migratie gemarkeerd', |
6928 | | - 'centralauth-log-entry-unmarkasmigrating' => 'heeft de markering in migratie voor de globale gebruiker "<nowiki>$1</nowiki>" verwijderd', |
6929 | 6838 | 'centralauth-rightslog-name' => 'Globaal rechtenlogboek', |
6930 | 6839 | 'centralauth-rightslog-entry-usergroups' => 'wijzigde globaal groepslidmaatschap voor $1 van $2 naar $3', |
6931 | 6840 | 'centralauth-rightslog-entry-groupperms' => 'wijzigde groepsrechten voor $1 van $2 naar $3', |
— | — | @@ -7120,7 +7029,7 @@ |
7121 | 7030 | 'centralauth-admin-manage' => 'Behandle brukerdata', |
7122 | 7031 | 'centralauth-admin-username' => 'Brukernavn:', |
7123 | 7032 | 'centralauth-admin-lookup' => 'Vis eller rediger brukerdata', |
7124 | | - 'centralauth-admin-permission' => 'Kun forvaltere kan slå sammen andres kontoer for dem.', |
| 7033 | + 'centralauth-admin-permission' => 'Kun stewarder kan slå sammen andres kontoer for dem.', |
7125 | 7034 | 'centralauth-admin-no-unified' => 'Ingen sammenslått konto for dette brukernavnet.', |
7126 | 7035 | 'centralauth-admin-info-id' => 'Bruker-ID:', |
7127 | 7036 | 'centralauth-admin-info-registered' => 'Registrert:', |
— | — | @@ -7138,7 +7047,14 @@ |
7139 | 7048 | 'centralauth-admin-merge' => 'Slå sammen valgte', |
7140 | 7049 | 'centralauth-admin-bad-input' => 'Ugyldig valg for sammenslåing', |
7141 | 7050 | 'centralauth-admin-none-selected' => 'Har ikke valgt noen kontoer å endre.', |
| 7051 | + 'centralauth-admin-already-unmerged' => 'Hopper over $1, utskilt fra før', |
| 7052 | + 'centralauth-admin-unmerge-success' => 'Skilte ut $1 {{PLURAL:$1|konto|kontoer}}', |
| 7053 | + 'centralauth-admin-delete-title' => 'Slett konto', |
| 7054 | + 'centralauth-admin-delete-description' => 'Sletting av den globale kontoen vil slette globale innstillinger, skille ut alle kontoer, og gjøre det globale navnet tilgjengelig for andre brukere. Alle lokale kontoer vil fortsette å eksistere. Passordene til lokale kontoer laget før sammenslåingen vil gå tilbake til verdiene de var før sammenslåingen.', |
| 7055 | + 'centralauth-admin-delete-button' => 'Slett denne kontoen', |
| 7056 | + 'centralauth-admin-delete-success' => 'Slettet den globale kontoen for «<nowiki>$1</nowiki>»', |
7142 | 7057 | 'centralauth-admin-nonexistent' => 'Det er ingen global konto for «<nowiki>$1</nowiki>»', |
| 7058 | + 'centralauth-admin-delete-nonexistent' => 'Feil: Den globale kontoen «<nowiki>$1</nowiki>» finnes ikke.', |
7143 | 7059 | 'centralauth-token-mismatch' => 'Beklager, skjemaet kunne ikke lagres på grunn av et tap av øktdata.', |
7144 | 7060 | 'centralauth-admin-lock-title' => 'Lås konto', |
7145 | 7061 | 'centralauth-admin-lock-description' => 'Låsing av en konto vil gjøre det umulig å logge inn med den på noen wikier.', |
— | — | @@ -7338,7 +7254,14 @@ |
7339 | 7255 | 'centralauth-admin-merge' => 'Acampar la seleccion', |
7340 | 7256 | 'centralauth-admin-bad-input' => 'Seleccion invalida', |
7341 | 7257 | 'centralauth-admin-none-selected' => 'Cap de compte seleccionat.', |
| 7258 | + 'centralauth-admin-already-unmerged' => 'Sautar $1, ja desfusionat', |
| 7259 | + 'centralauth-admin-unmerge-success' => '$1 {{PLURAL:$1|compte|comptes}} desfusionats amb succès', |
| 7260 | + 'centralauth-admin-delete-title' => 'Suprimir lo compte', |
| 7261 | + 'centralauth-admin-delete-description' => "La supression del compte global destrusirà totas las referéncias globalas, destacarà l'ensemble dels comptes locals, e daissarà lo nom global disponible per tot autre utilizaire. Los senhals pels comptes creats localament, abans la fusion, anullaràn totas lors valors abans la fusion.", |
| 7262 | + 'centralauth-admin-delete-button' => 'Suprimir aqueste compte', |
| 7263 | + 'centralauth-admin-delete-success' => 'Lo compte global per « <nowiki>$1</nowiki> » es estat suprimit amb succès', |
7342 | 7264 | 'centralauth-admin-nonexistent' => 'Existís pas cap de compte global per « <nowiki>$1</nowiki> »', |
| 7265 | + 'centralauth-admin-delete-nonexistent' => 'Error : lo compte global « <nowiki>$1</nowiki> » existís pas.', |
7343 | 7266 | 'centralauth-token-mismatch' => 'O planhèm, podèm sometre vòstre formulari a causa de la pèrda de donadas de vòstra sesilha.', |
7344 | 7267 | 'centralauth-admin-lock-title' => 'Varrolhar lo compte', |
7345 | 7268 | 'centralauth-admin-lock-description' => 'Lo varrolhatge del compte rendrà impossible tota connexion jos son nom dins un wiki que que siá.', |
— | — | @@ -7360,11 +7283,6 @@ |
7361 | 7284 | 'centralauth-admin-unhide-button' => 'Far tornar aparéisser aqueste compte', |
7362 | 7285 | 'centralauth-admin-unhide-success' => 'Reaparicion del compte global « <nowiki>$1</nowiki> » realizada amb succès', |
7363 | 7286 | 'centralauth-admin-unhide-nonexistent' => 'Error : lo compte global « <nowiki>$1</nowiki> » existís pas.', |
7364 | | - 'centralauth-admin-markasmigrating-title' => 'Marcar lo compte coma essent en migracion', |
7365 | | - 'centralauth-admin-markasmigrating-description' => "Se un compte es en migracion, los burocratas locals pòdon tornar nomenar d'autres comptes vèrs son nom.", |
7366 | | - 'centralauth-admin-markasmigrating-button' => 'Marcar aqueste compte coma essent en migracion', |
7367 | | - 'centralauth-admin-markasmigrating-success' => 'Lo compte global « <nowiki>$1</nowiki> » es estat marcat en migracion amb succès', |
7368 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'Error : lo compte global « <nowiki>$1</nowiki> » existís pas.', |
7369 | 7287 | 'centralauth-admin-reason' => 'Motiu :', |
7370 | 7288 | 'globalusers' => 'Lista globala dels utilizaires', |
7371 | 7289 | 'centralauth-listusers-locked' => 'varrolhat', |
— | — | @@ -7503,7 +7421,7 @@ |
7504 | 7422 | 'centralauth-not-owner-text' => 'Nazwa użytkownika „$1” została automatycznie przypisana właścicielowi konta uniwersalnego na $2. |
7505 | 7423 | |
7506 | 7424 | Jeśli chcesz przyłączyć konto użytkownika „$1” do konta uniwersalnego podaj hasło konta na $2:', |
7507 | | - 'centralauth-blocked-text' => 'Możliwość edycji na Twojej macierzystej wiki (wymieniona poniżej) została zablokowana. Skontaktuj się z administratorem tej wiki, aby zdjął blokadę. W czasie, gdy jest zablokowana nie masz możliwości połączenia kont.', |
| 7425 | + 'centralauth-blocked-text' => 'Możliwość edycji na Twojej macierzystej wiki (wymieniona poniżej) została zablokowana. Proszę skontaktować się z administratorem tej wiki, aby zdjął blokadę. W czasie, gdy jest zablokowana nie masz możliwości połączenia kont.', |
7508 | 7426 | 'centralauth-notice-dryrun' => '<div class="successbox">Tylko tryb demonstracyjny</div><br style="clear:both" />', |
7509 | 7427 | 'centralauth-disabled-dryrun' => 'Tworzenie konta uniwersalnego jest dostępne tylko w trybie demonstracyjnym / usuwania usterek. Właściwe operacje łączenia kont są obecnie wyłączone.', |
7510 | 7428 | 'centralauth-error-locked' => 'Nie możesz edytować, ponieważ Twoje konto jest zablokowane.', |
— | — | @@ -7563,7 +7481,14 @@ |
7564 | 7482 | 'centralauth-admin-merge' => 'Przyłącz zaznaczone', |
7565 | 7483 | 'centralauth-admin-bad-input' => 'Nieprawidłowe zaznaczenia dla wykonania przyłączenia', |
7566 | 7484 | 'centralauth-admin-none-selected' => 'Nie zaznaczono kont do modyfikacji.', |
| 7485 | + 'centralauth-admin-already-unmerged' => 'Pominięto $1, ponieważ jest już rozłączone', |
| 7486 | + 'centralauth-admin-unmerge-success' => 'Rozłączono z powodzeniem $1 {{PLURAL:$1|konto|konta|kont}}', |
| 7487 | + 'centralauth-admin-delete-title' => 'Usuwanie konta', |
| 7488 | + 'centralauth-admin-delete-description' => 'Usunięcie konta uniwersalnego spowoduje usunięcie wszystkich wspólnych preferencji, odłączenie wszystkich kont lokalnych oraz zwolnienie nazwy konta uniwersalnego do wykorzystania przez innego użytkownika. Lokalne konta nadal będą istniały. Hasła kont lokalnych utworzonych przed przyłączeniem ich do konta uniwersalnego zostaną przywrócone do wartości sprzed momentu przyłączenia.', |
| 7489 | + 'centralauth-admin-delete-button' => 'Usuń to konto', |
| 7490 | + 'centralauth-admin-delete-success' => 'Usunięto konto uniwersalne „<nowiki>$1</nowiki>”', |
7567 | 7491 | 'centralauth-admin-nonexistent' => 'Brak konta uniwersalnego „<nowiki>$1</nowiki>”', |
| 7492 | + 'centralauth-admin-delete-nonexistent' => 'Błąd: nie istnieje konto uniwersalne „<nowiki>$1</nowiki>”.', |
7568 | 7493 | 'centralauth-token-mismatch' => 'Niemożliwe było wykonanie polecenia ze względu na utratę danych sesji.', |
7569 | 7494 | 'centralauth-admin-lock-title' => 'Zablokuj konto', |
7570 | 7495 | 'centralauth-admin-lock-description' => 'Zablokowanie konta użytkownika uniemożliwi zalogowanie się na to konto na wszystkich wiki.', |
— | — | @@ -7585,16 +7510,6 @@ |
7586 | 7511 | 'centralauth-admin-unhide-button' => 'Zakończ ukrywanie konta', |
7587 | 7512 | 'centralauth-admin-unhide-success' => 'Zakończono ukrywanie konta uniwersalnego „<nowiki>$1</nowiki>”', |
7588 | 7513 | 'centralauth-admin-unhide-nonexistent' => 'Błąd: nie istnieje konto uniwersalne „<nowiki>$1</nowiki>”.', |
7589 | | - 'centralauth-admin-markasmigrating-title' => 'Oznacz konto jako podlegające migracji', |
7590 | | - 'centralauth-admin-markasmigrating-description' => 'Lokalni biurokraci mogą zmienić nazwę dowolnego konta na nazwę konta, które jest w stanie migracji.', |
7591 | | - 'centralauth-admin-markasmigrating-button' => 'Oznacz konto jako podlegające migracji', |
7592 | | - 'centralauth-admin-markasmigrating-success' => 'Dla konta uniwersalnego oznaczono „<nowiki>$1</nowiki>” jako podlegające migracji', |
7593 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'Błąd: konto uniwersalne „<nowiki>$1</nowiki>” nie istnieje.', |
7594 | | - 'centralauth-admin-unmarkasmigrating-title' => 'Usuń zaznaczenie konta, jako podlegającego migracji', |
7595 | | - 'centralauth-admin-unmarkasmigrating-description' => 'Pozwala na usunięcie dla konta znacznika migracji.', |
7596 | | - 'centralauth-admin-unmarkasmigrating-button' => 'Usuń zaznaczenie konta jako podlegającego migracji', |
7597 | | - 'centralauth-admin-unmarkasmigrating-success' => 'Dla konta uniwersalnego usunięto oznaczenie „<nowiki>$1</nowiki>” jako podlegającego migracji', |
7598 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => 'Błąd: konto uniwersalne „<nowiki>$1</nowiki>” nie istnieje.', |
7599 | 7514 | 'centralauth-admin-reason' => 'Powód', |
7600 | 7515 | 'globalusers' => 'Spis kont uniwersalnych', |
7601 | 7516 | 'centralauth-listusers-locked' => 'zablokowane', |
— | — | @@ -7622,7 +7537,7 @@ |
7623 | 7538 | 'centralauth-autologin-desc' => 'Ta strona specjalna jest wykorzystywana wewnętrznie przez oprogramowanie MediaWiki. |
7624 | 7539 | Po [[Special:UserLogin|zalogowaniu się]], przeglądarka na polecenie systemu centralnego logowania, wczytuje tę stronę z każdej obsługiwanej domeny, używając linku jak do grafiki. |
7625 | 7540 | Zażądałeś tej strony bez podania informacji o uwierzytelnieniu, stąd brak obsługi.', |
7626 | | - 'centralauth-login-progress' => 'Zostałeś zalogowany także do innych projektów Wikimedia:', |
| 7541 | + 'centralauth-login-progress' => 'Zalogowano także do innych projektów Wikimedia:', |
7627 | 7542 | 'centralauth-logout-progress' => 'Wylogowano także z innych projektów Wikimedia:', |
7628 | 7543 | 'centralauth-log-name' => 'Rejestr zarządzania kontami uniwersalnymi', |
7629 | 7544 | 'centralauth-log-header' => 'Rejestr zawiera zdarzenia dotyczące kont uniwersalnych: usunięcia, zablokowania i odblokowania.', |
— | — | @@ -7631,8 +7546,6 @@ |
7632 | 7547 | 'centralauth-log-entry-unlock' => 'odblokował konto uniwersalne „<nowiki>$1</nowiki>”', |
7633 | 7548 | 'centralauth-log-entry-hide' => 'ukrył konto uniwersalne „<nowiki>$1</nowiki>”', |
7634 | 7549 | 'centralauth-log-entry-unhide' => 'zakończył ukrywanie konta uniwersalnego „<nowiki>$1</nowiki>”', |
7635 | | - 'centralauth-log-entry-markasmigrating' => 'oznaczył konto uniwersalne „<nowiki>$1</nowiki>”, jako podlegające migracji', |
7636 | | - 'centralauth-log-entry-unmarkasmigrating' => 'usunął oznaczenie konta uniwersalnego „<nowiki>$1</nowiki>”, jako podlegającego migracji', |
7637 | 7550 | 'centralauth-rightslog-name' => 'Globalny rejestr uprawnień', |
7638 | 7551 | 'centralauth-rightslog-entry-usergroups' => 'zmienił wszędzie przynależność $1 do grup ($2 → $3)', |
7639 | 7552 | 'centralauth-rightslog-entry-groupperms' => 'zmienił wszędzie uprawnienia $1 ($2 → $3)', |
— | — | @@ -7747,11 +7660,13 @@ |
7748 | 7661 | 'centralauth-merge-method-new' => 'نوی کارن-حساب', |
7749 | 7662 | 'centralauth-finish-password' => 'پټنوم:', |
7750 | 7663 | 'centralauth-finish-login' => 'ننوتل', |
7751 | | - 'centralauth-finish-send-confirmation' => 'پټنوم رابرېښليک کول', |
| 7664 | + 'centralauth-finish-send-confirmation' => 'د برېښناليک پټنوم', |
7752 | 7665 | 'centralauth-admin-username' => 'کارن-نوم:', |
7753 | 7666 | 'centralauth-admin-info-id' => 'د کارونکي پېژندنه:', |
7754 | 7667 | 'centralauth-admin-yes' => 'هو', |
7755 | 7668 | 'centralauth-admin-no' => 'نه', |
| 7669 | + 'centralauth-admin-delete-title' => 'کارن-حساب ړنګول', |
| 7670 | + 'centralauth-admin-delete-button' => 'همدا کارن-حساب ړنګول', |
7756 | 7671 | 'centralauth-admin-reason' => 'سبب:', |
7757 | 7672 | 'centralauth-seconds-ago' => '$1 {{PLURAL:$1|ثانيه|ثانيې}} دمخه', |
7758 | 7673 | 'centralauth-minutes-ago' => '$1 {{PLURAL:$1|دقيقه|دقيقې}} دمخه', |
— | — | @@ -7759,12 +7674,11 @@ |
7760 | 7675 | 'centralauth-days-ago' => '$1 {{PLURAL:$1|ورځ|ورځې}} دمخه', |
7761 | 7676 | 'centralauth-months-ago' => '$1 {{PLURAL:$1|مياشت|مياشتې}} دمخه', |
7762 | 7677 | 'centralauth-years-ago' => '$1 {{PLURAL:$1|کال|کاله}} پخوا', |
7763 | | - 'centralauth-prefs-count-attached' => 'ستاسو کارن-حساب د $1 {{plural:$1|پروژې په ويبځي|پروژو په ويبځايونو}} باندې فعاله دی .', |
| 7678 | + 'centralauth-prefs-count-attached' => 'ستاسو کارن حساب په $1 پروژو باندې فعاله دی {{plural:$1|ويبځای|ويبځايونه}}.', |
7764 | 7679 | 'centralauth-newgroup-legend' => 'يوه نوې ډله جوړول', |
7765 | 7680 | 'centralauth-globalgroupperms-newgroupname' => 'د نوې ډلې نوم:', |
7766 | 7681 | 'centralauth-editgroup-name' => 'د ډلې نوم:', |
7767 | 7682 | 'centralauth-editgroup-members' => 'د غړي لړليک:', |
7768 | | - 'centralauth-editgroup-reason' => 'د بدلون سبب:', |
7769 | 7683 | ); |
7770 | 7684 | |
7771 | 7685 | /** Portuguese (Português) |
— | — | @@ -8161,7 +8075,16 @@ |
8162 | 8076 | 'centralauth-admin-merge' => 'Объединить выбранные', |
8163 | 8077 | 'centralauth-admin-bad-input' => 'Ошибочный выбор объединения', |
8164 | 8078 | 'centralauth-admin-none-selected' => 'Не были выбраны учётные записи для изменения.', |
| 8079 | + 'centralauth-admin-already-unmerged' => 'Пропуск $1, уже разделён', |
| 8080 | + 'centralauth-admin-unmerge-success' => 'Успешно разделена $1 {{PLURAL:$1|учётная запись|учётных записи|учётных записей}}', |
| 8081 | + 'centralauth-admin-delete-title' => 'Удаление учётной записи', |
| 8082 | + 'centralauth-admin-delete-description' => 'Удаление глобальной учётной записи приведёт к удалению глобальных настроек, отсоединению всех учётных записей и освобождению глобального имени, что позволит занять его другому участнику. |
| 8083 | +Все локальные учётные записи продолжат существовать. |
| 8084 | +Пароли локальных учётных записей, созданные до объединения, вернут свои старые значения.', |
| 8085 | + 'centralauth-admin-delete-button' => 'Удалить учётную запись', |
| 8086 | + 'centralauth-admin-delete-success' => 'Успешно удалена глобальная учётная запись «<nowiki>$1</nowiki>»', |
8165 | 8087 | 'centralauth-admin-nonexistent' => 'Не существует глобальной учётной записи «<nowiki>$1</nowiki>»', |
| 8088 | + 'centralauth-admin-delete-nonexistent' => 'Ошибка. Глобальной учётной записи «<nowiki>$1</nowiki>» не существует.', |
8166 | 8089 | 'centralauth-token-mismatch' => 'К сожалению, мы не можем продолжить обработку вашей формы, так как были потеряны данные сеанса.', |
8167 | 8090 | 'centralauth-admin-lock-title' => 'Заморозка учётной записи', |
8168 | 8091 | 'centralauth-admin-lock-description' => 'Если учётная запись заморожена, то ни в одной вики под ней нельзя представиться системе.', |
— | — | @@ -8183,16 +8106,6 @@ |
8184 | 8107 | 'centralauth-admin-unhide-button' => 'Раскрыть эту учётную запись', |
8185 | 8108 | 'centralauth-admin-unhide-success' => 'Успешно раскрыта глобальная учётная запись «<nowiki>$1</nowiki>»', |
8186 | 8109 | 'centralauth-admin-unhide-nonexistent' => 'Ошибка. Глобальной учётной записи «<nowiki>$1</nowiki>» не существует.', |
8187 | | - 'centralauth-admin-markasmigrating-title' => 'Отметить учётную запись как мигрирующую', |
8188 | | - 'centralauth-admin-markasmigrating-description' => 'Если учётная запись отмечена как мигрирующая, локальные бюрократы могут переименовывать другие учётные записи в это имя.', |
8189 | | - 'centralauth-admin-markasmigrating-button' => 'Отметить учётную запись как мигрирующую', |
8190 | | - 'centralauth-admin-markasmigrating-success' => 'Глобальная учётная запись для «<nowiki>$1</nowiki>» успешно отмечена как мигрирующая', |
8191 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'Ошибка. Глобальной учётной записи «<nowiki>$1</nowiki>» не существует.', |
8192 | | - 'centralauth-admin-unmarkasmigrating-title' => 'Снять отметку мигрирования с этой учётной записи', |
8193 | | - 'centralauth-admin-unmarkasmigrating-description' => 'Разрешить удалять отметку о миграции с этой учётной записи.', |
8194 | | - 'centralauth-admin-unmarkasmigrating-button' => 'Снять отметку о мигрировании', |
8195 | | - 'centralauth-admin-unmarkasmigrating-success' => 'С глобальной учётной записи для «$1» успешно снята отметка о мигрировании', |
8196 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => 'Ошибка. Глобальной учётной записи »<nowiki>$1</nowiki> не существует.', |
8197 | 8110 | 'centralauth-admin-reason' => 'Причина:', |
8198 | 8111 | 'globalusers' => 'Глобальный список участников', |
8199 | 8112 | 'centralauth-listusers-locked' => 'заморозить', |
— | — | @@ -8229,8 +8142,6 @@ |
8230 | 8143 | 'centralauth-log-entry-unlock' => 'разморозил глобальную учётную запись «<nowiki>$1</nowiki>»', |
8231 | 8144 | 'centralauth-log-entry-hide' => 'скрыл глобальную учётную запись «<nowiki>$1</nowiki>»', |
8232 | 8145 | 'centralauth-log-entry-unhide' => 'раскрыл глобальную учётную запись «<nowiki>$1</nowiki>»', |
8233 | | - 'centralauth-log-entry-markasmigrating' => 'отметил глобальную учётную запись «<nowiki>$1</nowiki>» как мигрирующую', |
8234 | | - 'centralauth-log-entry-unmarkasmigrating' => 'снял отметку о мигрировании с глобальной учётной записи «<nowiki>$1</nowiki>»', |
8235 | 8146 | 'centralauth-rightslog-name' => 'Журнал глобальных прав', |
8236 | 8147 | 'centralauth-rightslog-entry-usergroups' => 'изменил глобальное членство в группе для $1 с $2 на $3', |
8237 | 8148 | 'centralauth-rightslog-entry-groupperms' => 'изменил права группы для $1 с $2 на $3', |
— | — | @@ -8482,7 +8393,6 @@ |
8483 | 8394 | 'centralauth-blocked-text' => 'Vaša domovská wiki (uvedená dolu) má zablokované úpravy. Prosím, kontaktujte správcu z tejto wiki, aby ju odblokoval. Pokým je zablokovaná, nemôžete zlúčiť svoje účty.', |
8484 | 8395 | 'centralauth-notice-dryrun' => "<div class='successbox'>Toto je iba demonštračný režim</div><br clear='all'/>", |
8485 | 8396 | 'centralauth-disabled-dryrun' => 'Zjednotenie účtov prebieha momentálne iba v demonštračnom / ladiacom režime, takže samotné operácie spojenia sú vypnuté. Prepáčte!', |
8486 | | - 'centralauth-error-locked' => 'Nemôžete vykonávať úpravy, pretože váš účet je zamknutý.', |
8487 | 8397 | 'centralauth-readmore-text' => ":''[[meta:Help:Unified login|Prečítajte si viac o '''zjednotení prihlasovacích účtov''']]...''", |
8488 | 8398 | 'centralauth-list-home-title' => 'Domovská wiki', |
8489 | 8399 | 'centralauth-list-home-dryrun' => 'Heslo a emailová adresa nastavená na tejto wiki sa použije pre váš zjednotený účet. |
— | — | @@ -8536,7 +8446,14 @@ |
8537 | 8447 | 'centralauth-admin-merge' => 'Zlúčenie zvolených', |
8538 | 8448 | 'centralauth-admin-bad-input' => 'Neplatný výber pre zlúčenie', |
8539 | 8449 | 'centralauth-admin-none-selected' => 'Neboli vybrané účty, ktoré sa majú zmeniť.', |
| 8450 | + 'centralauth-admin-already-unmerged' => 'Preskakuje sa $1, už bol odlúčený', |
| 8451 | + 'centralauth-admin-unmerge-success' => '$1 {{PLURAL:$1|účet úspešne odlúčený|účty úspešne odlúčené|účov úspešne odlúčených}}', |
| 8452 | + 'centralauth-admin-delete-title' => 'Zmazať účet', |
| 8453 | + 'centralauth-admin-delete-description' => 'Zmazaním globálneho účetu zmažete všetky globélne nastavenia, odpojíte všetky účty a uvoľníte globálne meno, teda si ho bude môcť zobrať iný používateľ. Všetky lokálne účty budú naďalej existovať. Heslá lokálnych účtov vytvorené pre zlúčením sa vrátia na svoje pôvodné hodnoty, ktoré mali pred zlúčením.', |
| 8454 | + 'centralauth-admin-delete-button' => 'Zmazať tento účet', |
| 8455 | + 'centralauth-admin-delete-success' => 'Bol úspešne zmazaný globálny účet „<nowiki>$1</nowiki>“', |
8540 | 8456 | 'centralauth-admin-nonexistent' => 'Globálny účet „<nowiki>$1</nowiki>“ neexistuje', |
| 8457 | + 'centralauth-admin-delete-nonexistent' => 'Chyba: globálny účet „<nowiki>$1</nowiki>“ neexistuje.', |
8541 | 8458 | 'centralauth-token-mismatch' => 'Je nám ľúto, nebolo možné spracovať údaje formulára, ktoré ste poslali, z dôvodu straty informácií o vašej relácii.', |
8542 | 8459 | 'centralauth-admin-lock-title' => 'Zamknúť účet', |
8543 | 8460 | 'centralauth-admin-lock-description' => 'Zamknutím účtu znemožníte prihlásenie sa k nemu na všetkých wiki.', |
— | — | @@ -8548,26 +8465,6 @@ |
8549 | 8466 | 'centralauth-admin-unlock-button' => 'Odomknúť tento účet', |
8550 | 8467 | 'centralauth-admin-unlock-success' => 'Globálny účet „<nowiki>$1</nowiki>“ bol úspešne odomknutý', |
8551 | 8468 | 'centralauth-admin-unlock-nonexistent' => 'Chyba: Globálny účet „<nowiki>$1</nowiki>“ neexistuje.', |
8552 | | - 'centralauth-admin-hide-title' => 'Skryť účet', |
8553 | | - 'centralauth-admin-hide-description' => 'Skryté účty sa nezobrazujú na stránke [[Special:GlobalUsers|Globálni používatelia]].', |
8554 | | - 'centralauth-admin-hide-button' => 'Skryť tento účet', |
8555 | | - 'centralauth-admin-hide-success' => 'Globálny účet „<nowiki>$1</nowiki>” bol úspešne skrytý.', |
8556 | | - 'centralauth-admin-hide-nonexistent' => 'Chyba: globálny účet „<nowiki>$1</nowiki>” neexistuje.', |
8557 | | - 'centralauth-admin-unhide-title' => 'Zrušiť skrytie účtu', |
8558 | | - 'centralauth-admin-unhide-description' => 'Po zrušení skrytia sa účet znova objaví na stránke [[Special:GlobalUsers|Globálni používatelia]].', |
8559 | | - 'centralauth-admin-unhide-button' => 'Zrušiť skrytie tohto účtu', |
8560 | | - 'centralauth-admin-unhide-success' => 'Skrytie globálneho účtu „<nowiki>$1</nowiki>” bolo úspešne zrušené.', |
8561 | | - 'centralauth-admin-unhide-nonexistent' => 'Chyba: globálny účet „<nowiki>$1</nowiki>” neexistuje.', |
8562 | | - 'centralauth-admin-markasmigrating-title' => 'Označiť účet ako migrujúci', |
8563 | | - 'centralauth-admin-markasmigrating-description' => 'Aj je účet v stave migrácie, miestni byrokrati môžu na jeho názov premenovať iné účty.', |
8564 | | - 'centralauth-admin-markasmigrating-button' => 'Označiť účet ako migrujúci', |
8565 | | - 'centralauth-admin-markasmigrating-success' => 'Globálny účet „$1” bol úspešne označený ako migrujúci.', |
8566 | | - 'centralauth-admin-markasmigrating-nonexistent' => 'Chyba: globálny účet „<nowiki>$1</nowiki>” neexistuje.', |
8567 | | - 'centralauth-admin-unmarkasmigrating-title' => 'Zrušiť označenie účtu ako migrujúci', |
8568 | | - 'centralauth-admin-unmarkasmigrating-description' => 'Umožňuje odstrániť príznak migrujúceho účtu.', |
8569 | | - 'centralauth-admin-unmarkasmigrating-button' => 'Zrušiť označenie tohto účtu ako migrujúci', |
8570 | | - 'centralauth-admin-unmarkasmigrating-success' => 'Označenie globálneho účtu „<nowiki>$1</nowiki>” ako migrujúci bolo úspešne zrušené.', |
8571 | | - 'centralauth-admin-unmarkasmigrating-nonexistent' => 'Chyba: globálny účet „<nowiki>$1</nowiki>” neexistuje.', |
8572 | 8469 | 'centralauth-admin-reason' => 'Dôvod:', |
8573 | 8470 | 'globalusers' => 'Zoznam globálnych používateľov', |
8574 | 8471 | 'centralauth-listusers-locked' => 'zamknutý', |
— | — | @@ -8602,10 +8499,6 @@ |
8603 | 8500 | 'centralauth-log-entry-delete' => 'zmazal globálny účet „<nowiki>$1</nowiki>“', |
8604 | 8501 | 'centralauth-log-entry-lock' => 'zamkol globálny účet „<nowiki>$1</nowiki>“', |
8605 | 8502 | 'centralauth-log-entry-unlock' => 'odomkol globálny účet „<nowiki>$1</nowiki>“', |
8606 | | - 'centralauth-log-entry-hide' => 'skryl globálny účet „<nowiki>$1</nowiki>”', |
8607 | | - 'centralauth-log-entry-unhide' => 'zrušil skrytie globálneho účtu „<nowiki>$1</nowiki>”', |
8608 | | - 'centralauth-log-entry-markasmigrating' => 'označil globálny účet „<nowiki>$1</nowiki>” ako migrujúci', |
8609 | | - 'centralauth-log-entry-unmarkasmigrating' => 'zrušil označenie globálneho účtu „<nowiki>$1</nowiki>” ako migrujúci', |
8610 | 8503 | 'centralauth-rightslog-name' => 'Záznam globálnych blokovaní', |
8611 | 8504 | 'centralauth-rightslog-entry-usergroups' => 'členstvo v globálnej skupine zmenené pre $1 z $2 na $3', |
8612 | 8505 | 'centralauth-rightslog-entry-groupperms' => 'oprávnenia skupiny $1 zmenené z $2 na $3', |
— | — | @@ -9166,7 +9059,14 @@ |
9167 | 9060 | 'centralauth-admin-merge' => 'Slå samman valda', |
9168 | 9061 | 'centralauth-admin-bad-input' => 'Ogiltigt val för sammanslagning', |
9169 | 9062 | 'centralauth-admin-none-selected' => 'Har inte valt några konton att modifiera.', |
| 9063 | + 'centralauth-admin-already-unmerged' => 'Hoppar över $1, redan skild', |
| 9064 | + 'centralauth-admin-unmerge-success' => 'Skilde $1 {{PLURAL:$1|konto|konton}}', |
| 9065 | + 'centralauth-admin-delete-title' => 'Radera konto', |
| 9066 | + 'centralauth-admin-delete-description' => 'Radering av det globala kontot kommer ta bort globala inställningar, skilja ut alla konton, och göra det globala namnet tillgängligt för andra användare. Alla lokala konton kommer fortsätta att existera. Lösenorden till lokala konton sparat för sammanslagningen kommer gå tillbaka till värdena dom var före sammanslagningen.', |
| 9067 | + 'centralauth-admin-delete-button' => 'Radera detta konto', |
| 9068 | + 'centralauth-admin-delete-success' => 'Raderade det globala kontot för "<nowiki>$1</nowiki>"', |
9170 | 9069 | 'centralauth-admin-nonexistent' => 'Det är inget globalt konto för "<nowiki>$1</nowiki>"', |
| 9070 | + 'centralauth-admin-delete-nonexistent' => 'Fel: Det globala kontot "<nowiki>$1</nowiki>" finns inte.', |
9171 | 9071 | 'centralauth-token-mismatch' => 'Beklagar, formuläret kunde inte lagras på grund av förlorad sessionsdata.', |
9172 | 9072 | 'centralauth-admin-lock-title' => 'Lås kontot', |
9173 | 9073 | 'centralauth-admin-lock-description' => 'Låsning av ett konto kommmer göra det omöjligt att logga in med det på någon wiki.', |
— | — | @@ -9184,9 +9084,6 @@ |
9185 | 9085 | 'centralauth-admin-hide-success' => 'Det globala kontot för "<nowiki>$1</nowiki>" doldes', |
9186 | 9086 | 'centralauth-admin-hide-nonexistent' => 'Fel: det globala kontot "<nowiki>$1</nowiki>" existerar inte.', |
9187 | 9087 | 'centralauth-admin-unhide-title' => 'Synliggör konto', |
9188 | | - 'centralauth-admin-unhide-description' => 'Synliggöring av konton kommer göra att det dyker upp igen i listan över [[Special:GlobalUsers|globala användare]].', |
9189 | | - 'centralauth-admin-unhide-button' => 'Synliggör det här kontot', |
9190 | | - 'centralauth-admin-unhide-success' => 'Synliggjorde det globala kontot för "<nowiki>$1</nowiki>"', |
9191 | 9088 | 'centralauth-admin-reason' => 'Anledning:', |
9192 | 9089 | 'globalusers' => 'Global användarlista', |
9193 | 9090 | 'centralauth-listusers-locked' => 'låst', |
— | — | @@ -9376,7 +9273,13 @@ |
9377 | 9274 | 'centralauth-admin-merge' => 'ఎంచుకున్నవాటిని విలీనం చేయి', |
9378 | 9275 | 'centralauth-admin-bad-input' => 'తప్పుడు విలీనపు ఎంపిక', |
9379 | 9276 | 'centralauth-admin-none-selected' => 'మార్చడానికి ఖాతాలేమీ ఎంచుకోలేదు.', |
| 9277 | + 'centralauth-admin-already-unmerged' => '$1 ను ఇప్పటికే విడదీసాం; అంచేత వదిలేస్తున్నాం', |
| 9278 | + 'centralauth-admin-unmerge-success' => '$1 {{PLURAL:$1|ఖాతాను|ఖాతాలను}} జయప్రదంగా విడదీసాం', |
| 9279 | + 'centralauth-admin-delete-title' => 'ఖాతాని తొలగించు', |
| 9280 | + 'centralauth-admin-delete-button' => 'ఈ ఖాతాని తొలగించు', |
| 9281 | + 'centralauth-admin-delete-success' => '"<nowiki>$1</nowiki>" కు చెందిన సార్వత్రిక ఖాతాను జయప్రదంగా తొలగించాం', |
9380 | 9282 | 'centralauth-admin-nonexistent' => '"<nowiki>$1</nowiki>" కు సార్వత్రిక ఖాతా లేదు', |
| 9283 | + 'centralauth-admin-delete-nonexistent' => 'లోపం: "<nowiki>$1</nowiki>" అనే సార్వత్రిక ఖాతా లేదు.', |
9381 | 9284 | 'centralauth-token-mismatch' => 'సారీ, సెషను డేటా పోవడం వలన మీ ఫారమును సమర్పణను ప్రాసెస్ చెయ్యలేకపోతున్నాం.', |
9382 | 9285 | 'centralauth-admin-lock-title' => 'ఖాతాను లాకు చెయ్యి', |
9383 | 9286 | 'centralauth-admin-lock-button' => 'ఈ ఖాతాను లాకు చెయ్యి', |
— | — | @@ -9387,7 +9290,6 @@ |
9388 | 9291 | 'centralauth-admin-unlock-button' => 'ఖాతాను అన్లాకు చెయ్యి', |
9389 | 9292 | 'centralauth-admin-unlock-success' => '"<nowiki>$1</nowiki>" కోసం సార్వత్రిక ఖాతాను అన్లాకు చేసాం', |
9390 | 9293 | 'centralauth-admin-unlock-nonexistent' => 'లోపం: సార్వత్రిక ఖాతా "<nowiki>$1</nowiki>" లేదు.', |
9391 | | - 'centralauth-admin-hide-button' => 'ఈ ఖాతాని దాచు', |
9392 | 9294 | 'centralauth-admin-reason' => 'కారణం:', |
9393 | 9295 | 'globalusers' => 'సార్వత్రిక వాడుకరుల జాబితా', |
9394 | 9296 | 'centralauth-listusers-locked' => 'లాకు అయింది', |
— | — | @@ -9634,14 +9536,13 @@ |
9635 | 9537 | 'centralauth-admin-info-hidden' => 'ซ่อน:', |
9636 | 9538 | 'centralauth-admin-yes' => 'ใช่', |
9637 | 9539 | 'centralauth-admin-no' => 'ไม่ใช่', |
| 9540 | + 'centralauth-admin-delete-title' => 'ลบบัญชีผู้ใช้', |
| 9541 | + 'centralauth-admin-delete-button' => 'ลบบัญชีผู้ใช้นี้', |
9638 | 9542 | 'centralauth-admin-lock-title' => 'ล็อกบัญชีผู้ใช้นี้', |
9639 | 9543 | 'centralauth-admin-lock-button' => 'ล็อกบัญชีผู้ใช้นี้', |
9640 | 9544 | 'centralauth-admin-unlock-title' => 'ปลดล็อกบัญชีผู้ใช้', |
9641 | 9545 | 'centralauth-admin-unlock-button' => 'ปลดล็อกบัญชีผู้ใช้นี้', |
9642 | 9546 | 'centralauth-admin-reason' => 'เหตุผล:', |
9643 | | - 'centralauth-prefs-status' => 'สถานะชื่อบัญชีทั้งระบบ:', |
9644 | | - 'centralauth-prefs-count-attached' => 'ชื่อผู้ใช้ของคุณใช้งานได้ใน $1 โครงการ', |
9645 | | - 'centralauth-prefs-manage' => 'จัดการชื่อบัญชีทั้งระบบ', |
9646 | 9547 | 'centralauth-login-progress' => 'ขณะนี้คุณล็อกอินเข้าสู่โครงการอื่นในวิกิมีเดีย:', |
9647 | 9548 | 'centralauth-logout-progress' => 'ขณะนี้ล็อกเอาต์ออกจากโครงการในวิกิมีเดีย:', |
9648 | 9549 | 'centralauth-existinggroup-legend' => 'กลุ่มที่มีอยู่', |
— | — | @@ -10773,6 +10674,7 @@ |
10774 | 10675 | /** Traditional Chinese (中文(繁體)) |
10775 | 10676 | * @author Alexsh |
10776 | 10677 | * @author Jasonzhuocn |
| 10678 | + * @suthor Πrate (百楽兎) |
10777 | 10679 | */ |
10778 | 10680 | $messages['zh-hant'] = array( |
10779 | 10681 | 'mergeaccount' => '使用者帳號整合', |
— | — | @@ -10821,7 +10723,6 @@ |
10822 | 10724 | 'centralauth-notice-dryrun' => "<div class='successbox'>目前為示範模式</div><br clear='all'/>", |
10823 | 10725 | 'centralauth-disabled-dryrun' => '目前為示範模式, |
10824 | 10726 | 實際的整合動作已停用。', |
10825 | | - 'centralauth-error-locked' => '由於您的帳戶已被鎖住,您目前無法編輯', |
10826 | 10727 | 'centralauth-readmore-text' => ":''[[meta:Help:Unified login|了解更多'''帳號整合'''細節]]...''", |
10827 | 10728 | 'centralauth-list-home-title' => '主要維基計劃', |
10828 | 10729 | 'centralauth-list-home-dryrun' => '您在這個計劃中使用的密碼以及電子郵件地址將會用來做您的整合帳號,同時您在這裡的用戶頁會由其它的計劃中自動連結過來。您可以稍後更改你的主要項目。', |
— | — | @@ -10876,7 +10777,16 @@ |
10877 | 10778 | 'centralauth-admin-merge' => '整合已選取的', |
10878 | 10779 | 'centralauth-admin-bad-input' => '不正確的整合選擇', |
10879 | 10780 | 'centralauth-admin-none-selected' => '選擇的帳戶沒有被修改。', |
| 10781 | + 'centralauth-admin-already-unmerged' => '正在跳過$1,已經取消合併', |
| 10782 | + 'centralauth-admin-unmerge-success' => '已經取消合併$1個帳戶', |
| 10783 | + 'centralauth-admin-delete-title' => '刪除帳戶', |
| 10784 | + 'centralauth-admin-delete-description' => '刪除個全域帳戶會刪除任何的全域參數設置,解除全部附加上去的帳戶,保留全域名稱給另一位用戶使用。 |
| 10785 | +全部的本地戶口會繼續存在。 |
| 10786 | +在合併之前已經建立了的本地帳戶會還原他們以前的值。', |
| 10787 | + 'centralauth-admin-delete-button' => '刪除這個帳戶', |
| 10788 | + 'centralauth-admin-delete-success' => '已經刪除"<nowiki>$1</nowiki>"的全域帳戶', |
10880 | 10789 | 'centralauth-admin-nonexistent' => '全域帳戶"<nowiki>$1</nowiki>"不存在。', |
| 10790 | + 'centralauth-admin-delete-nonexistent' => '錯誤: 該全域帳戶"<nowiki>$1</nowiki>"不存在。', |
10881 | 10791 | 'centralauth-token-mismatch' => '對不起,由於階段資料遺失,我們不可以處理你的表格遞交', |
10882 | 10792 | 'centralauth-admin-lock-title' => '鎖定帳戶', |
10883 | 10793 | 'centralauth-admin-lock-description' => '鎖定這個帳戶會讓這個帳四在任何的wiki中均不可能登入。', |
— | — | @@ -10888,16 +10798,6 @@ |
10889 | 10799 | 'centralauth-admin-unlock-button' => '解除鎖定這個帳戶', |
10890 | 10800 | 'centralauth-admin-unlock-success' => '已經成功地解除鎖定"<nowiki>$1</nowiki>"的全域帳戶', |
10891 | 10801 | 'centralauth-admin-unlock-nonexistent' => '錯誤: 該全域帳戶"<nowiki>$1</nowiki>"不存在。', |
10892 | | - 'centralauth-admin-hide-title' => '隱藏帳戶', |
10893 | | - 'centralauth-admin-hide-description' => '隱藏的帳戶將不會顯示在[[Special:GlobalUsers|{{int:Globalusers}}]]中', |
10894 | | - 'centralauth-admin-hide-button' => '隱藏這個帳戶', |
10895 | | - 'centralauth-admin-hide-success' => '隱藏全域帳戶"<nowiki>$1</nowiki>"已完成', |
10896 | | - 'centralauth-admin-hide-nonexistent' => '錯誤:全域帳戶"<nowiki>$1</nowiki>"不存在。', |
10897 | | - 'centralauth-admin-unhide-title' => '解除隱藏帳戶', |
10898 | | - 'centralauth-admin-unhide-description' => '解除隱藏的帳戶將會重新顯示於[[Special:GlobalUsers|{{int:Globalusers}}]]中', |
10899 | | - 'centralauth-admin-unhide-button' => '解除隱藏這個帳戶', |
10900 | | - 'centralauth-admin-unhide-success' => '解除隱藏全域帳戶"<nowiki>$1</nowiki>"已完成', |
10901 | | - 'centralauth-admin-unhide-nonexistent' => '{{int:Centralauth-admin-hide-nonexistent}}', |
10902 | 10802 | 'centralauth-admin-reason' => '理由: ', |
10903 | 10803 | 'globalusers' => '全域帳戶名單', |
10904 | 10804 | 'centralauth-listusers-locked' => '鎖定', |
— | — | @@ -10932,8 +10832,6 @@ |
10933 | 10833 | 'centralauth-log-entry-delete' => '已經刪除全域帳戶"<nowiki>$1</nowiki>"', |
10934 | 10834 | 'centralauth-log-entry-lock' => '已經鎖定全域帳戶"<nowiki>$1</nowiki>"', |
10935 | 10835 | 'centralauth-log-entry-unlock' => '已經解除鎖定全域帳戶"<nowiki>$1</nowiki>"', |
10936 | | - 'centralauth-log-entry-hide' => '隱藏全域帳戶 "<nowiki>$1</nowiki>"', |
10937 | | - 'centralauth-log-entry-unhide' => '解除隱藏全域帳戶 "<nowiki>$1</nowiki>"', |
10938 | 10836 | 'centralauth-rightslog-name' => '全域權限日誌', |
10939 | 10837 | 'centralauth-rightslog-entry-usergroups' => '已經更改$1的全域成員組由$2到$3', |
10940 | 10838 | 'centralauth-rightslog-entry-groupperms' => '已經更改$1的成員組許可由$2到$3', |