Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1283,6 +1283,7 @@ |
1284 | 1284 | 'statistics-header-users', |
1285 | 1285 | 'statistics-articles', |
1286 | 1286 | 'statistics-pages', |
| 1287 | + 'statistics-pages-desc', |
1287 | 1288 | 'statistics-files', |
1288 | 1289 | 'statistics-edits', |
1289 | 1290 | 'statistics-edits-average', |
— | — | @@ -1291,6 +1292,7 @@ |
1292 | 1293 | 'statistics-jobqueue', |
1293 | 1294 | 'statistics-users', |
1294 | 1295 | 'statistics-users-active', |
| 1296 | + 'statistics-users-active-desc', |
1295 | 1297 | 'statistics-mostpopular', |
1296 | 1298 | 'statistics-footer', |
1297 | 1299 | ), |
Index: trunk/phase3/includes/AutoLoader.php |
— | — | @@ -487,6 +487,7 @@ |
488 | 488 | 'SpecialRecentchangeslinked' => 'includes/specials/SpecialRecentchangeslinked.php', |
489 | 489 | 'SpecialSearch' => 'includes/specials/SpecialSearch.php', |
490 | 490 | 'SpecialSearchOld' => 'includes/specials/SpecialSearch.php', |
| 491 | + 'SpecialStatistics' => 'includes/specials/SpecialStatistics.php', |
491 | 492 | 'SpecialVersion' => 'includes/specials/SpecialVersion.php', |
492 | 493 | 'UncategorizedCategoriesPage' => 'includes/specials/SpecialUncategorizedcategories.php', |
493 | 494 | 'UncategorizedPagesPage' => 'includes/specials/SpecialUncategorizedpages.php', |
Index: trunk/phase3/includes/specials/SpecialStatistics.php |
— | — | @@ -13,84 +13,149 @@ |
14 | 14 | * |
15 | 15 | * @param mixed $par (not used) |
16 | 16 | */ |
17 | | -function wfSpecialStatistics( $par = '' ) { |
18 | | - global $wgOut, $wgLang, $wgRequest, $wgUser, $wgContLang, $wgMessageCache; |
19 | | - global $wgDisableCounters, $wgMiserMode, $wgImplicitGroups, $wgGroupPermissions; |
20 | | - $wgMessageCache->loadAllMessages(); |
21 | | - $sk = $wgUser->getSkin(); |
22 | | - $dbr = wfGetDB( DB_SLAVE ); |
| 17 | +class SpecialStatistics extends SpecialPage { |
| 18 | + |
| 19 | + private $views, $edits, $good, $images, $total, $users, |
| 20 | + $activeUsers, $admins, $numJobs = 0; |
| 21 | + |
| 22 | + public function __construct() { |
| 23 | + parent::__construct( 'Statistics' ); |
| 24 | + } |
| 25 | + |
| 26 | + public function execute( $par ) { |
| 27 | + global $wgOut, $wgRequest, $wgMessageCache; |
| 28 | + global $wgDisableCounters, $wgMiserMode; |
| 29 | + $wgMessageCache->loadAllMessages(); |
| 30 | + |
| 31 | + $this->setHeaders(); |
| 32 | + |
| 33 | + $this->views = SiteStats::views(); |
| 34 | + $this->edits = SiteStats::edits(); |
| 35 | + $this->good = SiteStats::articles(); |
| 36 | + $this->images = SiteStats::images(); |
| 37 | + $this->total = SiteStats::pages(); |
| 38 | + $this->users = SiteStats::users(); |
| 39 | + $this->activeUsers = SiteStats::activeUsers(); |
| 40 | + $this->admins = SiteStats::numberingroup('sysop'); |
| 41 | + $this->numJobs = SiteStats::jobs(); |
| 42 | + |
| 43 | + # Staticic - views |
| 44 | + $viewsStats = ''; |
| 45 | + if( !$wgDisableCounters ) { |
| 46 | + $viewsStats = $this->getViewsStats(); |
| 47 | + } |
| 48 | + |
| 49 | + # Set active user count |
| 50 | + if( !$wgMiserMode ) { |
| 51 | + $dbw = wfGetDB( DB_MASTER ); |
| 52 | + SiteStatsUpdate::cacheUpdate( $dbw ); |
| 53 | + } |
| 54 | + |
| 55 | + # Do raw output |
| 56 | + if( $wgRequest->getVal( 'action' ) == 'raw' ) { |
| 57 | + $this->doRawOutput(); |
| 58 | + } |
23 | 59 | |
24 | | - $views = SiteStats::views(); |
25 | | - $edits = SiteStats::edits(); |
26 | | - $good = SiteStats::articles(); |
27 | | - $images = SiteStats::images(); |
28 | | - $total = SiteStats::pages(); |
29 | | - $users = SiteStats::users(); |
30 | | - $activeUsers = SiteStats::activeUsers(); |
31 | | - $admins = SiteStats::numberingroup('sysop'); |
32 | | - $numJobs = SiteStats::jobs(); |
| 60 | + $text = Xml::openElement( 'table', array( 'class' => 'mw-statistics-table' ) ); |
33 | 61 | |
34 | | - # Staticic - views |
35 | | - $viewsStats = ''; |
36 | | - if( !$wgDisableCounters ) { |
37 | | - $viewsStats = Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-header-views' ) ) . |
38 | | - formatRow( wfMsgExt( 'statistics-views-total', array( 'parseinline' ) ), |
39 | | - $wgLang->formatNum( $views ), |
40 | | - ' class="mw-statistics-views-total"' ) . |
41 | | - formatRow( wfMsgExt( 'statistics-views-peredit', array( 'parseinline' ) ), |
42 | | - $wgLang->formatNum( sprintf( '%.2f', $edits ? $views / $edits : 0 ) ), |
43 | | - ' class="mw-statistics-views-peredit"' ); |
44 | | - } |
45 | | - # Set active user count |
46 | | - if( !$wgMiserMode ) { |
47 | | - $dbw = wfGetDB( DB_MASTER ); |
48 | | - SiteStatsUpdate::cacheUpdate( $dbw ); |
49 | | - } |
| 62 | + # Statistic - pages |
| 63 | + $text .= $this->getPageStats(); |
50 | 64 | |
51 | | - if( $wgRequest->getVal( 'action' ) == 'raw' ) { |
52 | | - # Depreciated, kept for backwards compatibility |
53 | | - # http://lists.wikimedia.org/pipermail/wikitech-l/2008-August/039202.html |
54 | | - $wgOut->disable(); |
55 | | - header( 'Pragma: nocache' ); |
56 | | - echo "total=$total;good=$good;views=$views;edits=$edits;users=$users;"; |
57 | | - echo "activeusers=$activeUsers;admins=$admins;images=$images;jobs=$numJobs\n"; |
58 | | - return; |
59 | | - } else { |
60 | | - $text = Xml::openElement( 'table', array( 'class' => 'mw-statistics-table' ) ) . |
61 | | - # Statistic - pages |
62 | | - Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-header-pages' ) ) . |
63 | | - formatRow( wfMsgExt( 'statistics-articles', array( 'parseinline' ) ), |
64 | | - $wgLang->formatNum( $good ), |
65 | | - ' class="mw-statistics-articles"' ) . |
66 | | - formatRow( wfMsgExt( 'statistics-pages', array( 'parseinline' ) ), |
67 | | - $wgLang->formatNum( $total ), |
68 | | - ' class="mw-statistics-pages"' ) . |
69 | | - formatRow( wfMsgExt( 'statistics-files', array( 'parseinline' ) ), |
70 | | - $wgLang->formatNum( $images ), |
71 | | - ' class="mw-statistics-files"' ) . |
| 65 | + # Statistic - edits |
| 66 | + $text .= $this->getEditStats(); |
72 | 67 | |
73 | | - # Statistic - edits |
74 | | - Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-header-edits' ) ) . |
75 | | - formatRow( wfMsgExt( 'statistics-edits', array( 'parseinline' ) ), |
76 | | - $wgLang->formatNum( $edits ), |
77 | | - ' class="mw-statistics-edits"' ) . |
78 | | - formatRow( wfMsgExt( 'statistics-edits-average', array( 'parseinline' ) ), |
79 | | - $wgLang->formatNum( sprintf( '%.2f', $total ? $edits / $total : 0 ) ), |
80 | | - ' class="mw-statistics-edits-average"' ) . |
81 | | - formatRow( wfMsgExt( 'statistics-jobqueue', array( 'parseinline' ) ), |
82 | | - $wgLang->formatNum( $numJobs ), |
83 | | - ' class="mw-statistics-jobqueue"' ) . |
| 68 | + # Statistic - users |
| 69 | + $text .= $this->getUserStats(); |
84 | 70 | |
85 | | - # Statistic - users |
86 | | - Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-header-users' ) ) . |
87 | | - formatRow( wfMsgExt( 'statistics-users', array( 'parseinline' ) ), |
88 | | - $wgLang->formatNum( $users ), |
89 | | - ' class="mw-statistics-users"' ) . |
90 | | - formatRow( wfMsgExt( 'statistics-users-active', array( 'parseinline' ) ), |
91 | | - $wgLang->formatNum( $activeUsers ), |
92 | | - ' class="mw-statistics-users-active"' ); |
| 71 | + # Statistic - usergroups |
| 72 | + $text .= $this->getGroupStats(); |
| 73 | + $text .= $viewsStats; |
93 | 74 | |
94 | | - # Statistic - usergroups |
| 75 | + # Statistic - popular pages |
| 76 | + if( !$wgDisableCounters && !$wgMiserMode ) { |
| 77 | + $text .= $this->getMostViewedPages(); |
| 78 | + } |
| 79 | + |
| 80 | + $text .= Xml::closeElement( 'table' ); |
| 81 | + |
| 82 | + # Customizable footer |
| 83 | + $footer = wfMsgExt( 'statistics-footer', array('parseinline') ); |
| 84 | + if( !wfEmptyMsg( 'statistics-footer', $footer ) && $footer != '' ) { |
| 85 | + $text .= "\n" . $footer; |
| 86 | + } |
| 87 | + |
| 88 | + $wgOut->addHTML( $text ); |
| 89 | + } |
| 90 | + |
| 91 | + /** |
| 92 | + * Format a row |
| 93 | + * @param string $text description of the row |
| 94 | + * @param float $number a number |
| 95 | + * @return string table row in HTML format |
| 96 | + */ |
| 97 | + private function formatRow( $text, $number, $trExtraParams = array(), $descMsg = '' ) { |
| 98 | + global $wgStylePath; |
| 99 | + |
| 100 | + if( $descMsg ) { |
| 101 | + $descriptionText = wfMsg( $descMsg ); |
| 102 | + if ( !wfEmptyMsg( $descMsg, $descriptionText ) ) { |
| 103 | + $descriptionText = " ($descriptionText)"; |
| 104 | + $text = $text . "<br />" . Xml::element( 'small', array( 'class' => 'mw-statistic-desc'), $descriptionText ); |
| 105 | + } |
| 106 | + } |
| 107 | + |
| 108 | + return Xml::openElement( 'tr', $trExtraParams ) . |
| 109 | + Xml::openElement( 'td' ) . $text . Xml::closeElement( 'td' ) . |
| 110 | + Xml::openElement( 'td' ) . $number . Xml::closeElement( 'td' ) . |
| 111 | + Xml::closeElement( 'tr' ); |
| 112 | + } |
| 113 | + |
| 114 | + /** |
| 115 | + * Each of these methods is pretty self-explanatory, get a particular |
| 116 | + * row for the table of statistics |
| 117 | + * @return string |
| 118 | + */ |
| 119 | + private function getPageStats() { |
| 120 | + global $wgLang; |
| 121 | + return Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-header-pages' ) ) . |
| 122 | + $this->formatRow( wfMsgExt( 'statistics-articles', array( 'parseinline' ) ), |
| 123 | + $wgLang->formatNum( $this->good ), |
| 124 | + array( 'class' => 'mw-statistics-articles' ) ) . |
| 125 | + $this->formatRow( wfMsgExt( 'statistics-pages', array( 'parseinline' ) ), |
| 126 | + $wgLang->formatNum( $this->total ), |
| 127 | + array( 'class' => 'mw-statistics-pages' ), |
| 128 | + 'statistics-pages-desc' ) . |
| 129 | + $this->formatRow( wfMsgExt( 'statistics-files', array( 'parseinline' ) ), |
| 130 | + $wgLang->formatNum( $this->images ), |
| 131 | + array( 'class' => 'mw-statistics-files' ) ); |
| 132 | + } |
| 133 | + private function getEditStats() { |
| 134 | + global $wgLang; |
| 135 | + return Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-header-edits' ) ) . |
| 136 | + $this->formatRow( wfMsgExt( 'statistics-edits', array( 'parseinline' ) ), |
| 137 | + $wgLang->formatNum( $this->edits ), |
| 138 | + array( 'class' => 'mw-statistics-edits' ) ) . |
| 139 | + $this->formatRow( wfMsgExt( 'statistics-edits-average', array( 'parseinline' ) ), |
| 140 | + $wgLang->formatNum( sprintf( '%.2f', $this->total ? $this->edits / $this->total : 0 ) ), |
| 141 | + array( 'class' => 'mw-statistics-edits-average' ) ) . |
| 142 | + $this->formatRow( wfMsgExt( 'statistics-jobqueue', array( 'parseinline' ) ), |
| 143 | + $wgLang->formatNum( $this->numJobs ), |
| 144 | + array( 'class' => 'mw-statistics-jobqueue' ) ); |
| 145 | + } |
| 146 | + private function getUserStats() { |
| 147 | + global $wgLang; |
| 148 | + return Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-header-users' ) ) . |
| 149 | + $this->formatRow( wfMsgExt( 'statistics-users', array( 'parseinline' ) ), |
| 150 | + $wgLang->formatNum( $this->users ), |
| 151 | + array( 'class' => 'mw-statistics-users' ) ) . |
| 152 | + $this->formatRow( wfMsgExt( 'statistics-users-active', array( 'parseinline' ) ), |
| 153 | + $wgLang->formatNum( $this->activeUsers ), |
| 154 | + array( 'class' => 'mw-statistics-users-active' ), |
| 155 | + 'statistics-users-active-desc' ); |
| 156 | + } |
| 157 | + private function getGroupStats() { |
| 158 | + global $wgGroupPermissions, $wgImplicitGroups, $wgLang, $wgUser; |
| 159 | + $sk = $wgUser->getSkin(); |
95 | 160 | foreach( $wgGroupPermissions as $group => $permissions ) { |
96 | 161 | # Skip generic * and implicit groups |
97 | 162 | if ( in_array( $group, $wgImplicitGroups ) || $group == '*' ) { |
— | — | @@ -115,79 +180,79 @@ |
116 | 181 | array(), |
117 | 182 | array( 'group' => $group ), |
118 | 183 | 'known' ); |
119 | | - |
120 | | - # Add a class when a usergroup contains no members to allow hiding these rows |
| 184 | + # Add a class when a usergroup contains no members to allow hiding these rows |
121 | 185 | $classZero = ''; |
122 | 186 | $countUsers = SiteStats::numberingroup( $groupname ); |
123 | 187 | if( $countUsers == 0 ) { |
124 | 188 | $classZero = ' statistics-group-zero'; |
125 | 189 | } |
126 | | - $text .= formatRow( $grouppage . ' ' . $grouplink, |
| 190 | + $text .= $this->formatRow( $grouppage . ' ' . $grouplink, |
127 | 191 | $wgLang->formatNum( $countUsers ), |
128 | | - ' class="statistics-group-' . Sanitizer::escapeClass( $group ) . $classZero . '"' ); |
| 192 | + array( 'class' => 'statistics-group-' . Sanitizer::escapeClass( $group ) . $classZero ) ); |
129 | 193 | } |
| 194 | + return $text; |
130 | 195 | } |
131 | | - $text .= $viewsStats; |
132 | | - |
133 | | - # Statistic - popular pages |
134 | | - if( !$wgDisableCounters && !$wgMiserMode ) { |
| 196 | + private function getViewsStats() { |
| 197 | + global $wgLang; |
| 198 | + return Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-header-views' ) ) . |
| 199 | + $this->formatRow( wfMsgExt( 'statistics-views-total', array( 'parseinline' ) ), |
| 200 | + $wgLang->formatNum( $this->views ), |
| 201 | + array ( 'class' => 'mw-statistics-views-total' ) ) . |
| 202 | + $this->formatRow( wfMsgExt( 'statistics-views-peredit', array( 'parseinline' ) ), |
| 203 | + $wgLang->formatNum( sprintf( '%.2f', $this->edits ? |
| 204 | + $this->views / $this->edits : 0 ) ), |
| 205 | + array ( 'class' => 'mw-statistics-views-peredit' ) ); |
| 206 | + } |
| 207 | + private function getMostViewedPages() { |
| 208 | + global $wgLang, $wgUser; |
| 209 | + $text = ''; |
| 210 | + $dbr = wfGetDB( DB_SLAVE ); |
| 211 | + $sk = $wgUser->getSkin(); |
135 | 212 | $res = $dbr->select( |
136 | | - 'page', |
137 | | - array( |
138 | | - 'page_namespace', |
139 | | - 'page_title', |
140 | | - 'page_counter', |
141 | | - ), |
142 | | - array( |
143 | | - 'page_is_redirect' => 0, |
144 | | - 'page_counter > 0', |
145 | | - ), |
146 | | - __METHOD__, |
147 | | - array( |
148 | | - 'ORDER BY' => 'page_counter DESC', |
149 | | - 'LIMIT' => 10, |
150 | | - ) |
151 | | - ); |
152 | | - if( $res->numRows() > 0 ) { |
153 | | - $text .= Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-mostpopular' ) ); |
154 | | - while( $row = $res->fetchObject() ) { |
155 | | - $title = Title::makeTitleSafe( $row->page_namespace, $row->page_title ); |
156 | | - if( $title instanceof Title ) { |
157 | | - $text .= formatRow( $sk->link( $title ), |
158 | | - $wgLang->formatNum( $row->page_counter ) ); |
159 | | - |
| 213 | + 'page', |
| 214 | + array( |
| 215 | + 'page_namespace', |
| 216 | + 'page_title', |
| 217 | + 'page_counter', |
| 218 | + ), |
| 219 | + array( |
| 220 | + 'page_is_redirect' => 0, |
| 221 | + 'page_counter > 0', |
| 222 | + ), |
| 223 | + __METHOD__, |
| 224 | + array( |
| 225 | + 'ORDER BY' => 'page_counter DESC', |
| 226 | + 'LIMIT' => 10, |
| 227 | + ) |
| 228 | + ); |
| 229 | + if( $res->numRows() > 0 ) { |
| 230 | + $text .= Xml::tags( 'th', array( 'colspan' => '2' ), wfMsg( 'statistics-mostpopular' ) ); |
| 231 | + while( $row = $res->fetchObject() ) { |
| 232 | + $title = Title::makeTitleSafe( $row->page_namespace, $row->page_title ); |
| 233 | + if( $title instanceof Title ) { |
| 234 | + $text .= $this->formatRow( $sk->link( $title ), |
| 235 | + $wgLang->formatNum( $row->page_counter ) ); |
| 236 | + |
| 237 | + } |
160 | 238 | } |
| 239 | + $res->free(); |
161 | 240 | } |
162 | | - $res->free(); |
163 | | - } |
| 241 | + return $text; |
164 | 242 | } |
165 | | - |
166 | | - $text .= Xml::closeElement( 'table' ); |
167 | | - |
168 | | - # Customizable footer |
169 | | - $footer = wfMsgExt( 'statistics-footer', array('parseinline') ); |
170 | | - if( !wfEmptyMsg( 'statistics-footer', $footer ) && $footer != '' ) { |
171 | | - $text .= "\n" . $footer; |
| 243 | + |
| 244 | + /** |
| 245 | + * Do the action=raw output for this page. Legacy, but we support |
| 246 | + * it for backwards compatibility |
| 247 | + * http://lists.wikimedia.org/pipermail/wikitech-l/2008-August/039202.html |
| 248 | + */ |
| 249 | + private function doRawOutput() { |
| 250 | + global $wgOut; |
| 251 | + $wgOut->disable(); |
| 252 | + header( 'Pragma: nocache' ); |
| 253 | + echo "total=" . $this->total . ";good=" . $this->good . ";views=" . |
| 254 | + $this->views . ";edits=" . $this->edits . ";users=" . $this->users . ";"; |
| 255 | + echo "activeusers=" . $this->activeUsers . ";admins=" . $this->admins . |
| 256 | + ";images=" . $this->images . ";jobs=" . $this->numJobs . "\n"; |
| 257 | + return; |
172 | 258 | } |
173 | | - |
174 | | - $wgOut->addHTML( $text ); |
175 | | -} |
176 | | - |
177 | | -/** |
178 | | - * Format a row |
179 | | - * |
180 | | - * @param string $text description of the row |
181 | | - * @param float $number a number |
182 | | - * @return string table row in HTML format |
183 | | - */ |
184 | | -function formatRow( $text, $number, $trExtraParams = '' ) { |
185 | | - |
186 | | - return "<tr{$trExtraParams}> |
187 | | - <td>" . |
188 | | - $text . |
189 | | - '</td> |
190 | | - <td class="mw-statistics-numbers">' . |
191 | | - $number . |
192 | | - '</td> |
193 | | - </tr>'; |
194 | | -} |
| 259 | +} |
\ No newline at end of file |
Index: trunk/phase3/includes/SpecialPage.php |
— | — | @@ -99,7 +99,7 @@ |
100 | 100 | 'Listusers' => array( 'SpecialPage', 'Listusers' ), |
101 | 101 | 'Listgrouprights' => 'SpecialListGroupRights', |
102 | 102 | 'DeletedContributions' => 'DeletedContributionsPage', |
103 | | - 'Statistics' => array( 'SpecialPage', 'Statistics' ), |
| 103 | + 'Statistics' => 'SpecialStatistics', |
104 | 104 | 'Randompage' => 'Randompage', |
105 | 105 | 'Lonelypages' => array( 'SpecialPage', 'Lonelypages' ), |
106 | 106 | 'Uncategorizedpages' => array( 'SpecialPage', 'Uncategorizedpages' ), |
Index: trunk/phase3/languages/messages/MessagesIs.php |
— | — | @@ -1409,7 +1409,7 @@ |
1410 | 1410 | 'statistics-header-users' => 'Notandatölfræði', |
1411 | 1411 | 'statistics-articles' => 'Greinar alls', |
1412 | 1412 | 'statistics-pages' => 'Síður', |
1413 | | -'statistics-pages-tooltip' => 'Allar síður wiki-verkefnisins, þar á meðal spjallsíður, tilvísanir o.fl.', |
| 1413 | +'statistics-pages-desc' => 'Allar síður wiki-verkefnisins, þar á meðal spjallsíður, tilvísanir o.fl.', |
1414 | 1414 | 'statistics-files' => 'Skráafjöldi', |
1415 | 1415 | 'statistics-edits' => 'Síðubreytingar frá því {{SITENAME}} byrjaði', |
1416 | 1416 | 'statistics-edits-average' => 'Meðal breytingafjöldi á síðu', |
— | — | @@ -1418,7 +1418,7 @@ |
1419 | 1419 | 'statistics-jobqueue' => 'Lengd [http://www.mediawiki.org/wiki/Manual:Job_queue vinnuraðar]', |
1420 | 1420 | 'statistics-users' => 'Skráðir [[Special:ListUsers|notendur]]', |
1421 | 1421 | 'statistics-users-active' => 'Virkir notendur', |
1422 | | -'statistics-users-active-tooltip' => 'Notendur sem hafa gert minnst eina breytingu síðasta mánuðinn', |
| 1422 | +'statistics-users-active-desc' => 'Notendur sem hafa gert minnst eina breytingu síðasta mánuðinn', |
1423 | 1423 | 'statistics-mostpopular' => 'Mest skoðuðu síður', |
1424 | 1424 | |
1425 | 1425 | 'disambiguations' => 'Tenglar í aðgreiningarsíður', |
Index: trunk/phase3/languages/messages/MessagesQu.php |
— | — | @@ -1456,7 +1456,7 @@ |
1457 | 1457 | 'statistics-header-users' => 'Ruraqmanta ranuy', |
1458 | 1458 | 'statistics-articles' => "Samiq p'anqakuna", |
1459 | 1459 | 'statistics-pages' => "P'anqakuna", |
1460 | | -'statistics-pages-tooltip' => "Wikipi tukuy p'anqakuna, rimanakuykunapas pusapunapas hukkunapas", |
| 1460 | +'statistics-pages-desc' => "Wikipi tukuy p'anqakuna, rimanakuykunapas pusapunapas hukkunapas", |
1461 | 1461 | 'statistics-files' => 'Churkusqa willañiqikuna', |
1462 | 1462 | 'statistics-edits' => "P'anqa llamk'apusqakuna {{SITENAME}}-pa paqarisqanmanta", |
1463 | 1463 | 'statistics-edits-average' => "Kuskanchaku llamk'apusqakuna p'anqaman", |
— | — | @@ -1465,7 +1465,7 @@ |
1466 | 1466 | 'statistics-jobqueue' => "[http://www.mediawiki.org/wiki/Manual:Job_queue Llamk'ana sinru] chhikan", |
1467 | 1467 | 'statistics-users' => 'Rakiqunayuq [[Special:ListUsers|ruraqkuna]]', |
1468 | 1468 | 'statistics-users-active' => "Llamk'achkaq ruraqkuna", |
1469 | | -'statistics-users-active-tooltip' => "Ñaqha killapi llamk'apuq ruraqkuna", |
| 1469 | +'statistics-users-active-desc' => "Ñaqha killapi llamk'apuq ruraqkuna", |
1470 | 1470 | 'statistics-mostpopular' => "Lliwmanta astawan rikusqa p'anqakuna", |
1471 | 1471 | |
1472 | 1472 | 'disambiguations' => "Sut'ichana qillqakuna", |
Index: trunk/phase3/languages/messages/MessagesDsb.php |
— | — | @@ -1495,7 +1495,7 @@ |
1496 | 1496 | 'statistics-header-users' => 'Statistika wužywarjow', |
1497 | 1497 | 'statistics-articles' => 'Wopśimjeśowe boki', |
1498 | 1498 | 'statistics-pages' => 'Boki', |
1499 | | -'statistics-pages-tooltip' => 'Wše boki w toś tom wikiju, inkluziwnje diskusijne boki, dalejpósrědnjenja atd.', |
| 1499 | +'statistics-pages-desc' => 'Wše boki w toś tom wikiju, inkluziwnje diskusijne boki, dalejpósrědnjenja atd.', |
1500 | 1500 | 'statistics-files' => 'Nagrate dataje', |
1501 | 1501 | 'statistics-edits' => 'Změny bokow wót załoženja {{SITENAME}}', |
1502 | 1502 | 'statistics-edits-average' => 'Změny na bok w pśerězku', |
— | — | @@ -1504,7 +1504,7 @@ |
1505 | 1505 | 'statistics-jobqueue' => 'Dłujkosć [http://www.mediawiki.org/wiki/Manual:Job_queue Job queue]', |
1506 | 1506 | 'statistics-users' => 'Zregistrěrowane [[Special:ListUsers|wužywarje]]', |
1507 | 1507 | 'statistics-users-active' => 'Aktiwne wužywarje', |
1508 | | -'statistics-users-active-tooltip' => 'Wužywarje, kótarež su w zachadnym mjasecu aktiwne byli', |
| 1508 | +'statistics-users-active-desc' => 'Wužywarje, kótarež su w zachadnym mjasecu aktiwne byli', |
1509 | 1509 | 'statistics-mostpopular' => 'Nejwěcej woglědane boki', |
1510 | 1510 | |
1511 | 1511 | 'disambiguations' => 'Rozjasnjenja zapśimjeśow', |
Index: trunk/phase3/languages/messages/MessagesJv.php |
— | — | @@ -1366,7 +1366,7 @@ |
1367 | 1367 | 'statistics-header-users' => 'Statistik panganggo', |
1368 | 1368 | 'statistics-articles' => 'Kaca-kaca isi', |
1369 | 1369 | 'statistics-pages' => 'Gunggung kaca', |
1370 | | -'statistics-pages-tooltip' => 'Kabèh kaca ing wiki iki, klebu kaca wicara, pangalihan, lan liya-liyané.', |
| 1370 | +'statistics-pages-desc' => 'Kabèh kaca ing wiki iki, klebu kaca wicara, pangalihan, lan liya-liyané.', |
1371 | 1371 | 'statistics-files' => 'Berkas sing diunggahaké', |
1372 | 1372 | 'statistics-edits' => 'Gunggung suntingan wiwit {{SITENAME}} diwiwiti', |
1373 | 1373 | 'statistics-edits-average' => 'Rata-rata suntingan saben kaca', |
— | — | @@ -1375,7 +1375,7 @@ |
1376 | 1376 | 'statistics-jobqueue' => 'Dawaning [http://www.mediawiki.org/wiki/Manual:Job_queue antrian pegawéan]', |
1377 | 1377 | 'statistics-users' => 'Gunggung [[Special:ListUsers|panganggo kadaftar]]', |
1378 | 1378 | 'statistics-users-active' => 'Para panganggo aktif', |
1379 | | -'statistics-users-active-tooltip' => 'Panganggo sing nduwèni kontribusi jroning sewulan pungkasan', |
| 1379 | +'statistics-users-active-desc' => 'Panganggo sing nduwèni kontribusi jroning sewulan pungkasan', |
1380 | 1380 | 'statistics-mostpopular' => 'Kaca sing paling akèh dideleng', |
1381 | 1381 | |
1382 | 1382 | 'disambiguations' => 'Kaca disambiguasi', |
Index: trunk/phase3/languages/messages/MessagesQqq.php |
— | — | @@ -1305,7 +1305,7 @@ |
1306 | 1306 | 'statistics-header-users' => 'Used in [[Special:Statistics]]', |
1307 | 1307 | 'statistics-articles' => 'Used in [[Special:Statistics]]', |
1308 | 1308 | 'statistics-pages' => 'Used in [[Special:Statistics]]', |
1309 | | -'statistics-pages-tooltip' => "Tooltip shown over ''Pages*'' in [[Special:Statistics]]", |
| 1309 | +'statistics-pages-desc' => "Tooltip shown over ''Pages*'' in [[Special:Statistics]]", |
1310 | 1310 | 'statistics-files' => 'Used in [[Special:Statistics]]', |
1311 | 1311 | 'statistics-edits' => 'Used in [[Special:Statistics]]', |
1312 | 1312 | 'statistics-edits-average' => 'Used in [[Special:Statistics]]', |
— | — | @@ -1314,7 +1314,7 @@ |
1315 | 1315 | 'statistics-jobqueue' => 'Used in [[Special:Statistics]]', |
1316 | 1316 | 'statistics-users' => 'Used in [[Special:Statistics]]', |
1317 | 1317 | 'statistics-users-active' => 'Used in [[Special:Statistics]]', |
1318 | | -'statistics-users-active-tooltip' => "Tooltip shown over ''Active users*'' in [[Special:Statistics]]", |
| 1318 | +'statistics-users-active-desc' => "Tooltip shown over ''Active users*'' in [[Special:Statistics]]", |
1319 | 1319 | 'statistics-mostpopular' => 'Used in [[Special:Statistics]]', |
1320 | 1320 | |
1321 | 1321 | 'disambiguations' => 'Name of a special page displayed in [[Special:SpecialPages]].', |
Index: trunk/phase3/languages/messages/MessagesCs.php |
— | — | @@ -1675,7 +1675,7 @@ |
1676 | 1676 | 'statistics-header-users' => 'O uživatelích', |
1677 | 1677 | 'statistics-articles' => 'Obsahové stránky', |
1678 | 1678 | 'statistics-pages' => 'Stránky', |
1679 | | -'statistics-pages-tooltip' => 'Všechny stránky na wiki včetně diskusí, přesměrování apod.', |
| 1679 | +'statistics-pages-desc' => 'Všechny stránky na wiki včetně diskusí, přesměrování apod.', |
1680 | 1680 | 'statistics-files' => 'Načtené soubory', |
1681 | 1681 | 'statistics-edits' => 'Počet editací od založení wiki', |
1682 | 1682 | 'statistics-edits-average' => 'Průměrný počet editací na stránku', |
— | — | @@ -1684,7 +1684,7 @@ |
1685 | 1685 | 'statistics-jobqueue' => 'Délka [http://www.mediawiki.org/wiki/Manual:Job_queue fronty údržby]', |
1686 | 1686 | 'statistics-users' => 'Registrovaní [[Special:ListUsers|uživatelé]]', |
1687 | 1687 | 'statistics-users-active' => 'Aktivní uživatelé', |
1688 | | -'statistics-users-active-tooltip' => 'Uživatelé, kteří v posledním měsíci provedli nějakou operaci', |
| 1688 | +'statistics-users-active-desc' => 'Uživatelé, kteří v posledním měsíci provedli nějakou operaci', |
1689 | 1689 | 'statistics-mostpopular' => 'Nejčtenější stránky', |
1690 | 1690 | |
1691 | 1691 | 'disambiguations' => 'Stránky odkazující na rozcestníky', |
Index: trunk/phase3/languages/messages/MessagesKm.php |
— | — | @@ -1509,7 +1509,7 @@ |
1510 | 1510 | 'statistics-header-users' => 'ស្ថិតិអ្នកប្រើប្រាស់', |
1511 | 1511 | 'statistics-articles' => 'ទំព័រខ្លឹមសារ', |
1512 | 1512 | 'statistics-pages' => 'ចំនួនទំព័រសរុប', |
1513 | | -'statistics-pages-tooltip' => 'ទំព័រទាំងអស់នៅក្នុងវិគី រាប់បញ្ចូលទាំងទំព័រពិភាក្សា ទំព័របញ្ជូនបន្ត -ល-', |
| 1513 | +'statistics-pages-desc' => 'ទំព័រទាំងអស់នៅក្នុងវិគី រាប់បញ្ចូលទាំងទំព័រពិភាក្សា ទំព័របញ្ជូនបន្ត -ល-', |
1514 | 1514 | 'statistics-files' => 'ឯកសារបានផ្ទុកឡើង', |
1515 | 1515 | 'statistics-edits' => 'ការកែប្រែទំព័រចាប់តាំងពី{{SITENAME}}ត្រូវបានដំឡើង', |
1516 | 1516 | 'statistics-edits-average' => 'កំណែប្រែជាមធ្យមក្នុងមួយទំព័រ', |
Index: trunk/phase3/languages/messages/MessagesGrc.php |
— | — | @@ -1161,7 +1161,7 @@ |
1162 | 1162 | 'statistics-jobqueue' => 'Μάκρος [http://www.mediawiki.org/wiki/Manual:Job_queue καταλόγου ἀναμένοντων]', |
1163 | 1163 | 'statistics-users' => 'Ἐγγεγραμμένοι [[Special:ListUsers|χρώμενοι]]', |
1164 | 1164 | 'statistics-users-active' => 'Ἐνεργοὶ χρώμενοι <small>(χρώμενοι οἳ have edited or performed an action διάφορον τῆς ποιήσεως λογισμοῦ ἐν τῷ παρελθόντι μηνί)</small>', |
1165 | | -'statistics-users-active-tooltip' => 'Χρώμενοι δραστήριοι ἐν τῷ παρελθόντι μηνί', |
| 1165 | +'statistics-users-active-desc' => 'Χρώμενοι δραστήριοι ἐν τῷ παρελθόντι μηνί', |
1166 | 1166 | 'statistics-mostpopular' => 'Αἱ πλέον θεωρουμέναι δέλτοι', |
1167 | 1167 | |
1168 | 1168 | 'disambiguations' => 'Σαφηνίσεως δέλτοι', |
Index: trunk/phase3/languages/messages/MessagesSk.php |
— | — | @@ -1549,7 +1549,7 @@ |
1550 | 1550 | 'statistics-header-users' => 'Štatistika používateľov', |
1551 | 1551 | 'statistics-articles' => 'Stránok s obsahom', |
1552 | 1552 | 'statistics-pages' => 'Stránok', |
1553 | | -'statistics-pages-tooltip' => 'Všetky stránky na wiki vrátane diskusných stránok, presmerovaní atď.', |
| 1553 | +'statistics-pages-desc' => 'Všetky stránky na wiki vrátane diskusných stránok, presmerovaní atď.', |
1554 | 1554 | 'statistics-files' => 'Nahraných súborov', |
1555 | 1555 | 'statistics-edits' => 'Úprav stránok od založenia {{GRAMMAR:genitív|{{SITENAME}}}}', |
1556 | 1556 | 'statistics-edits-average' => 'Priemerný počet úprav na stránku', |
— | — | @@ -1558,7 +1558,7 @@ |
1559 | 1559 | 'statistics-jobqueue' => 'Dĺžka [http://www.mediawiki.org/wiki/Manual:Job_queue frontu úloh]', |
1560 | 1560 | 'statistics-users' => 'Registrovaných [[Special:ListUsers|používateľov]]', |
1561 | 1561 | 'statistics-users-active' => 'Aktívnych používateľov', |
1562 | | -'statistics-users-active-tooltip' => 'Používatelia, ktorí za posledný mesiac vykonali nejakú operáciu', |
| 1562 | +'statistics-users-active-desc' => 'Používatelia, ktorí za posledný mesiac vykonali nejakú operáciu', |
1563 | 1563 | 'statistics-mostpopular' => 'Najčastejšie prezerané stránky', |
1564 | 1564 | |
1565 | 1565 | 'disambiguations' => 'Stránky na rozlíšenie viacerých významov', |
Index: trunk/phase3/languages/messages/MessagesHe.php |
— | — | @@ -1709,7 +1709,7 @@ |
1710 | 1710 | 'statistics-header-users' => 'סטטיסטיקות משתמשים', |
1711 | 1711 | 'statistics-articles' => 'דפי תוכן', |
1712 | 1712 | 'statistics-pages' => 'דפים', |
1713 | | -'statistics-pages-tooltip' => 'כל הדפים באתר הוויקי, כולל דפי שיחה, הפניות, וכדומה', |
| 1713 | +'statistics-pages-desc' => 'כל הדפים באתר הוויקי, כולל דפי שיחה, הפניות, וכדומה', |
1714 | 1714 | 'statistics-files' => 'קבצים שהועלו', |
1715 | 1715 | 'statistics-edits' => 'העריכות מאז תחילת הפעולה של {{SITENAME}}', |
1716 | 1716 | 'statistics-edits-average' => 'מספר העריכות הממוצע לדף', |
— | — | @@ -1718,7 +1718,7 @@ |
1719 | 1719 | 'statistics-jobqueue' => 'אורך [http://www.mediawiki.org/wiki/Manual:Job_queue תור המשימות]', |
1720 | 1720 | 'statistics-users' => 'ה[[Special:ListUsers|משתמשים]] הרשומים', |
1721 | 1721 | 'statistics-users-active' => 'המשתמשים הפעילים', |
1722 | | -'statistics-users-active-tooltip' => 'משתמשים שביצעו פעולה כלשהי בחודש האחרון', |
| 1722 | +'statistics-users-active-desc' => 'משתמשים שביצעו פעולה כלשהי בחודש האחרון', |
1723 | 1723 | 'statistics-mostpopular' => 'הדפים הנצפים ביותר', |
1724 | 1724 | |
1725 | 1725 | 'disambiguations' => 'דפי פירושונים', |
Index: trunk/phase3/languages/messages/MessagesHu.php |
— | — | @@ -1649,7 +1649,7 @@ |
1650 | 1650 | 'statistics-header-users' => 'Szerkesztői statisztikák', |
1651 | 1651 | 'statistics-articles' => 'Tartalommal rendelkező lapok', |
1652 | 1652 | 'statistics-pages' => 'Lapok száma', |
1653 | | -'statistics-pages-tooltip' => 'A wikiben található összes lap, beleértve a vitalapokat és az átirányításokat is', |
| 1653 | +'statistics-pages-desc' => 'A wikiben található összes lap, beleértve a vitalapokat és az átirányításokat is', |
1654 | 1654 | 'statistics-files' => 'Feltöltött fájlok', |
1655 | 1655 | 'statistics-edits' => 'Szerkesztések száma a(z) {{SITENAME}} indulása óta', |
1656 | 1656 | 'statistics-edits-average' => 'Szerkesztések átlagos száma laponként', |
— | — | @@ -1658,7 +1658,7 @@ |
1659 | 1659 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue A szerver által végrehajtandó feladatok] száma', |
1660 | 1660 | 'statistics-users' => 'Regisztrált [[Speciális:Szerkesztők listája|szerkesztők]]', |
1661 | 1661 | 'statistics-users-active' => 'Aktív szerkesztők', |
1662 | | -'statistics-users-active-tooltip' => 'Szerkesztők, akik csináltak valamit az előző hónapban', |
| 1662 | +'statistics-users-active-desc' => 'Szerkesztők, akik csináltak valamit az előző hónapban', |
1663 | 1663 | 'statistics-mostpopular' => 'Legtöbbször megtekintett lapok', |
1664 | 1664 | |
1665 | 1665 | 'disambiguations' => 'Egyértelműsítő lapok', |
Index: trunk/phase3/languages/messages/MessagesLt.php |
— | — | @@ -1446,7 +1446,7 @@ |
1447 | 1447 | 'statistics-header-users' => 'Naudotojų statistika', |
1448 | 1448 | 'statistics-articles' => 'Turinio puslapiai', |
1449 | 1449 | 'statistics-pages' => 'Puslapiai', |
1450 | | -'statistics-pages-tooltip' => 'Visi puslapiai, tarp jų aptarimo, nukreipimų, ir kiti puslapiai.', |
| 1450 | +'statistics-pages-desc' => 'Visi puslapiai, tarp jų aptarimo, nukreipimų, ir kiti puslapiai.', |
1451 | 1451 | 'statistics-files' => 'Įkelti failai', |
1452 | 1452 | 'statistics-edits' => 'Puslapių redagavimų skaičius nuo {{SITENAME}} sukūrimo', |
1453 | 1453 | 'statistics-edits-average' => 'Vidutinis redakcijų kiekis puslapiui', |
— | — | @@ -1455,7 +1455,7 @@ |
1456 | 1456 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Užduočių eilės] ilgis', |
1457 | 1457 | 'statistics-users' => 'Registruotų [[Special:ListUsers|naudotojų]]', |
1458 | 1458 | 'statistics-users-active' => 'Aktyvių naudotojų', |
1459 | | -'statistics-users-active-tooltip' => 'Naudotojai kurie paskutinį mėnesį įdėjo savo indėlį', |
| 1459 | +'statistics-users-active-desc' => 'Naudotojai kurie paskutinį mėnesį įdėjo savo indėlį', |
1460 | 1460 | 'statistics-mostpopular' => 'Daugiausiai rodyti puslapiai', |
1461 | 1461 | |
1462 | 1462 | 'disambiguations' => 'Daugiaprasmių žodžių puslapiai', |
Index: trunk/phase3/languages/messages/MessagesKsh.php |
— | — | @@ -1711,7 +1711,7 @@ |
1712 | 1712 | 'statistics-header-users' => 'Statistike üvver de Metmaacher', |
1713 | 1713 | 'statistics-articles' => 'Atikele', |
1714 | 1714 | 'statistics-pages' => 'Sigge jesamp', |
1715 | | -'statistics-pages-tooltip' => 'All pages in the wiki, including talk pages, redirects, etc. |
| 1715 | +'statistics-pages-desc' => 'All pages in the wiki, including talk pages, redirects, etc. |
1716 | 1716 | All de Sigge em Wiki, och Klaafsigge, Ömleitunge, un esu jet', |
1717 | 1717 | 'statistics-files' => 'Huhjelade Dateie', |
1718 | 1718 | 'statistics-edits' => 'Änderunge aan Sigge', |
— | — | @@ -1721,7 +1721,7 @@ |
1722 | 1722 | 'statistics-jobqueue' => 'Endrääch en de [http://www.mediawiki.org/wiki/Manual:Job_queue Opjaveleß]', |
1723 | 1723 | 'statistics-users' => '[[Special:ListUsers|Metmaacher]] aajemelldt', |
1724 | 1724 | 'statistics-users-active' => 'Aktive Metmaacher', |
1725 | | -'statistics-users-active-tooltip' => 'Metmaacher, die em läzte Mohnd jät jemaat han.', |
| 1725 | +'statistics-users-active-desc' => 'Metmaacher, die em läzte Mohnd jät jemaat han.', |
1726 | 1726 | 'statistics-mostpopular' => 'De miets affjeroofe Sigge', |
1727 | 1727 | |
1728 | 1728 | 'disambiguations' => '„(Wat es dat?)“-Sigge', |
Index: trunk/phase3/languages/messages/MessagesTr.php |
— | — | @@ -1196,7 +1196,7 @@ |
1197 | 1197 | 'statistics-header-users' => 'Kullanıcı istatistikleri', |
1198 | 1198 | 'statistics-articles' => 'Maddeler', |
1199 | 1199 | 'statistics-pages' => 'Sayfalar', |
1200 | | -'statistics-pages-tooltip' => 'Vikipedideki tüm sayfalar, tartışma sayfaları, yönlendirmeler vs.', |
| 1200 | +'statistics-pages-desc' => 'Vikipedideki tüm sayfalar, tartışma sayfaları, yönlendirmeler vs.', |
1201 | 1201 | 'statistics-files' => 'Yüklenmiş dosyalar', |
1202 | 1202 | 'statistics-edits-average' => 'Her sayfadaki ortalama değişiklik', |
1203 | 1203 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue İş sırası] uzunluğu', |
Index: trunk/phase3/languages/messages/MessagesAf.php |
— | — | @@ -1332,7 +1332,7 @@ |
1333 | 1333 | 'statistics-header-users' => 'Gebruikerstatistiek', |
1334 | 1334 | 'statistics-articles' => 'Inhoudelike bladsye', |
1335 | 1335 | 'statistics-pages' => 'Bladsye', |
1336 | | -'statistics-pages-tooltip' => 'Alle bladsye in die wiki, insluitend besprekings-, aanstuur- en ander bladsye.', |
| 1336 | +'statistics-pages-desc' => 'Alle bladsye in die wiki, insluitend besprekings-, aanstuur- en ander bladsye.', |
1337 | 1337 | 'statistics-files' => 'Ongelaaide lêers', |
1338 | 1338 | 'statistics-edits' => 'Wysigings sedert {{SITENAME}} begin is', |
1339 | 1339 | 'statistics-edits-average' => 'Gemiddelde wysigings per bladsy', |
Index: trunk/phase3/languages/messages/MessagesZh_hans.php |
— | — | @@ -1402,7 +1402,7 @@ |
1403 | 1403 | 'statistics-header-users' => '用户统计', |
1404 | 1404 | 'statistics-articles' => '内容页面', |
1405 | 1405 | 'statistics-pages' => '页面', |
1406 | | -'statistics-pages-tooltip' => '在wiki上的所有页面,包括对话页面、重新定向等', |
| 1406 | +'statistics-pages-desc' => '在wiki上的所有页面,包括对话页面、重新定向等', |
1407 | 1407 | 'statistics-files' => '已经上载的文件', |
1408 | 1408 | 'statistics-edits' => '自从{{SITENAME}}设置的页面编辑数', |
1409 | 1409 | 'statistics-edits-average' => '每一页面的平均编辑数', |
— | — | @@ -1411,7 +1411,7 @@ |
1412 | 1412 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue 工作队列]长度', |
1413 | 1413 | 'statistics-users' => '已注册[[Special:ListUsers|用户]]', |
1414 | 1414 | 'statistics-users-active' => '活跃用户', |
1415 | | -'statistics-users-active-tooltip' => '在前一个月中操作过的用户', |
| 1415 | +'statistics-users-active-desc' => '在前一个月中操作过的用户', |
1416 | 1416 | 'statistics-mostpopular' => '浏览最多的页面', |
1417 | 1417 | |
1418 | 1418 | 'disambiguations' => '消含糊页', |
Index: trunk/phase3/languages/messages/MessagesId.php |
— | — | @@ -1614,7 +1614,7 @@ |
1615 | 1615 | 'statistics-header-users' => 'Statistik pengguna', |
1616 | 1616 | 'statistics-articles' => 'Halaman konten', |
1617 | 1617 | 'statistics-pages' => 'Jumlah halaman', |
1618 | | -'statistics-pages-tooltip' => 'Semua halaman di wiki ini, termasuk halaman pembicaraan, pengalihan, dan lain-lain.', |
| 1618 | +'statistics-pages-desc' => 'Semua halaman di wiki ini, termasuk halaman pembicaraan, pengalihan, dan lain-lain.', |
1619 | 1619 | 'statistics-files' => 'Berkas yang dimuatkan', |
1620 | 1620 | 'statistics-edits' => 'Jumlah suntingan sejak {{SITENAME}} dimulai', |
1621 | 1621 | 'statistics-edits-average' => 'Rata-rata suntingan per halaman', |
— | — | @@ -1623,7 +1623,7 @@ |
1624 | 1624 | 'statistics-jobqueue' => 'Jumlah [http://www.mediawiki.org/wiki/Manual:Job_queue antrian pekerjaan]', |
1625 | 1625 | 'statistics-users' => 'Jumlah [[Special:ListUsers|pengguna terdaftar]]', |
1626 | 1626 | 'statistics-users-active' => 'Jumlah pengguna aktif', |
1627 | | -'statistics-users-active-tooltip' => 'Pengguna yang memiliki kontribusi dalam satu bulan terakhir', |
| 1627 | +'statistics-users-active-desc' => 'Pengguna yang memiliki kontribusi dalam satu bulan terakhir', |
1628 | 1628 | 'statistics-mostpopular' => 'Halaman yang paling banyak ditampilkan', |
1629 | 1629 | |
1630 | 1630 | 'disambiguations' => 'Halaman disambiguasi', |
Index: trunk/phase3/languages/messages/MessagesAn.php |
— | — | @@ -1469,7 +1469,7 @@ |
1470 | 1470 | 'statistics-header-users' => "Estadisticas d'usuario", |
1471 | 1471 | 'statistics-articles' => 'Pachinas de contenito', |
1472 | 1472 | 'statistics-pages' => 'Pachinas', |
1473 | | -'statistics-pages-tooltip' => "Todas as pachinas d'o wiki, encluyendo pachinas de descusión, reendrezeras, etz.", |
| 1473 | +'statistics-pages-desc' => "Todas as pachinas d'o wiki, encluyendo pachinas de descusión, reendrezeras, etz.", |
1474 | 1474 | 'statistics-files' => 'Archibos cargatos', |
1475 | 1475 | 'statistics-edits' => 'Edizions en pachinas dende que se debantó {{SITENAME}}', |
1476 | 1476 | 'statistics-edits-average' => "Meya d'edizions por pachina", |
— | — | @@ -1478,7 +1478,7 @@ |
1479 | 1479 | 'statistics-jobqueue' => "Longaria d'a [http://www.mediawiki.org/wiki/Manual:Job_queue coda de treballos]", |
1480 | 1480 | 'statistics-users' => '[[Special:ListUsers|Usuarios]] rechistratos', |
1481 | 1481 | 'statistics-users-active' => 'Usuarios autibos', |
1482 | | -'statistics-users-active-tooltip' => 'Usuarios que han feito cualsiquier azión en o zaguer mes', |
| 1482 | +'statistics-users-active-desc' => 'Usuarios que han feito cualsiquier azión en o zaguer mes', |
1483 | 1483 | 'statistics-mostpopular' => 'Pachinas más bistas', |
1484 | 1484 | |
1485 | 1485 | 'disambiguations' => 'Pachinas de desambigazión', |
Index: trunk/phase3/languages/messages/MessagesAr.php |
— | — | @@ -1824,7 +1824,7 @@ |
1825 | 1825 | 'statistics-header-users' => 'إحصاءات المستخدمين', |
1826 | 1826 | 'statistics-articles' => 'صفحات المحتوى', |
1827 | 1827 | 'statistics-pages' => 'الصفحات', |
1828 | | -'statistics-pages-tooltip' => 'كل الصفحات في الويكي، بما في ذلك صفحات النقاش، التحويلات، إلى آخره.', |
| 1828 | +'statistics-pages-desc' => 'كل الصفحات في الويكي، بما في ذلك صفحات النقاش، التحويلات، إلى آخره.', |
1829 | 1829 | 'statistics-files' => 'الملفات المرفوعة', |
1830 | 1830 | 'statistics-edits' => 'تعديلات الصفحات منذ تنصيب {{SITENAME}}', |
1831 | 1831 | 'statistics-edits-average' => 'متوسط التعديلات لكل صفحة', |
— | — | @@ -1833,7 +1833,7 @@ |
1834 | 1834 | 'statistics-jobqueue' => 'طول [http://www.mediawiki.org/wiki/Manual:Job_queue طابور الشغل]', |
1835 | 1835 | 'statistics-users' => '[[Special:ListUsers|مستخدمون]] مسجلون', |
1836 | 1836 | 'statistics-users-active' => 'مستخدمون نشطون', |
1837 | | -'statistics-users-active-tooltip' => 'المستخدمون الذين قاموا بفعل في الشهر الماضي', |
| 1837 | +'statistics-users-active-desc' => 'المستخدمون الذين قاموا بفعل في الشهر الماضي', |
1838 | 1838 | 'statistics-mostpopular' => 'أكثر الصفحات مشاهدة', |
1839 | 1839 | |
1840 | 1840 | 'disambiguations' => 'صفحات التوضيح', |
Index: trunk/phase3/languages/messages/MessagesMk.php |
— | — | @@ -1604,7 +1604,7 @@ |
1605 | 1605 | 'statistics-header-users' => 'Статистики за корисници', |
1606 | 1606 | 'statistics-articles' => 'Статии', |
1607 | 1607 | 'statistics-pages' => 'Страници', |
1608 | | -'statistics-pages-tooltip' => 'Сите страници на викито, вклучувајќи и страници за разговор, пренасочувања, и.т.н.', |
| 1608 | +'statistics-pages-desc' => 'Сите страници на викито, вклучувајќи и страници за разговор, пренасочувања, и.т.н.', |
1609 | 1609 | 'statistics-files' => 'Подигнати податотеки', |
1610 | 1610 | 'statistics-edits' => 'Број на уредувања од започнувањето на {{SITENAME}}', |
1611 | 1611 | 'statistics-edits-average' => 'Просечен број на уредувања по страница', |
— | — | @@ -1613,7 +1613,7 @@ |
1614 | 1614 | 'statistics-jobqueue' => 'Должина на [http://www.mediawiki.org/wiki/Manual:Job_queue редица на чекање]', |
1615 | 1615 | 'statistics-users' => 'Регистрирани [[Special:ListUsers|корисници]]', |
1616 | 1616 | 'statistics-users-active' => 'Активни корисници', |
1617 | | -'statistics-users-active-tooltip' => 'Корисници кои имаат извршено некоја активност во последниот месец', |
| 1617 | +'statistics-users-active-desc' => 'Корисници кои имаат извршено некоја активност во последниот месец', |
1618 | 1618 | 'statistics-mostpopular' => 'Најпосетувани страници', |
1619 | 1619 | |
1620 | 1620 | 'disambiguations' => 'Страници за појаснување', |
Index: trunk/phase3/languages/messages/MessagesEu.php |
— | — | @@ -1320,7 +1320,7 @@ |
1321 | 1321 | 'statistics-header-users' => 'Erabiltzaile estatistikak', |
1322 | 1322 | 'statistics-articles' => 'Edukiak dituzten orrialdeak', |
1323 | 1323 | 'statistics-pages' => 'Orrialdeak', |
1324 | | -'statistics-pages-tooltip' => 'Wikian dauden orrialde guztiak, eztabaida orrialdeak, birzuzenketa, etab. barne.', |
| 1324 | +'statistics-pages-desc' => 'Wikian dauden orrialde guztiak, eztabaida orrialdeak, birzuzenketa, etab. barne.', |
1325 | 1325 | 'statistics-files' => 'Igotako fitxategiak', |
1326 | 1326 | 'statistics-edits' => '{{SITENAME}} sortu zenetik eginiko aldaketa kopurua', |
1327 | 1327 | 'statistics-edits-average' => 'Bataz-besteko aldaketak orrialdeko', |
— | — | @@ -1329,7 +1329,7 @@ |
1330 | 1330 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Lan zerrendaren] luzera', |
1331 | 1331 | 'statistics-users' => 'Izen-emandako [[Special:ListUsers|lankideak]]', |
1332 | 1332 | 'statistics-users-active' => 'Lankide aktiboak', |
1333 | | -'statistics-users-active-tooltip' => 'Aurreko hilabetean jardueraren bat gauzatu duten erabiltzaileak', |
| 1333 | +'statistics-users-active-desc' => 'Aurreko hilabetean jardueraren bat gauzatu duten erabiltzaileak', |
1334 | 1334 | 'statistics-mostpopular' => 'Orrialde bisitatuenak', |
1335 | 1335 | |
1336 | 1336 | 'disambiguations' => 'Argipen orrialdeak', |
Index: trunk/phase3/languages/messages/MessagesIt.php |
— | — | @@ -1512,7 +1512,7 @@ |
1513 | 1513 | 'statistics-header-users' => 'Statistiche relative agli utenti', |
1514 | 1514 | 'statistics-articles' => 'Pagine di contenuti', |
1515 | 1515 | 'statistics-pages' => 'Pagine', |
1516 | | -'statistics-pages-tooltip' => 'Tutte le pagina della wiki, comprese le pagina di discussione, i redirect, ecc.', |
| 1516 | +'statistics-pages-desc' => 'Tutte le pagina della wiki, comprese le pagina di discussione, i redirect, ecc.', |
1517 | 1517 | 'statistics-files' => 'File caricati', |
1518 | 1518 | 'statistics-edits' => "Modifiche a partire dall'installazione di {{SITENAME}}", |
1519 | 1519 | 'statistics-edits-average' => 'Media delle modifiche per pagina', |
— | — | @@ -1521,7 +1521,7 @@ |
1522 | 1522 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Coda dei processi] da eseguire in background', |
1523 | 1523 | 'statistics-users' => '[[Special:ListUsers|Utenti]] registrati', |
1524 | 1524 | 'statistics-users-active' => 'Utenti attivi', |
1525 | | -'statistics-users-active-tooltip' => "Utenti che hanno effettuato un'azione nel mese scorso", |
| 1525 | +'statistics-users-active-desc' => "Utenti che hanno effettuato un'azione nel mese scorso", |
1526 | 1526 | 'statistics-mostpopular' => 'Pagine più visitate', |
1527 | 1527 | |
1528 | 1528 | 'disambiguations' => 'Pagine di disambiguazione', |
Index: trunk/phase3/languages/messages/MessagesMs.php |
— | — | @@ -1512,7 +1512,7 @@ |
1513 | 1513 | 'statistics-header-users' => 'Statistik pengguna', |
1514 | 1514 | 'statistics-articles' => 'Laman kandungan', |
1515 | 1515 | 'statistics-pages' => 'Laman', |
1516 | | -'statistics-pages-tooltip' => 'Semua laman di wiki ini, termasuk laman perbincangan, lencongan, dan lain-lain.', |
| 1516 | +'statistics-pages-desc' => 'Semua laman di wiki ini, termasuk laman perbincangan, lencongan, dan lain-lain.', |
1517 | 1517 | 'statistics-files' => 'Fail dimuat naik', |
1518 | 1518 | 'statistics-edits' => 'Suntingan laman sejak {{SITENAME}} dibuka', |
1519 | 1519 | 'statistics-edits-average' => 'Purata suntingan bagi setiap laman', |
— | — | @@ -1521,7 +1521,7 @@ |
1522 | 1522 | 'statistics-jobqueue' => 'Jumlah [http://www.mediawiki.org/wiki/Manual:Job_queue tugas yang tertunggak]', |
1523 | 1523 | 'statistics-users' => '[[Special:ListUsers|Pengguna]] berdaftar', |
1524 | 1524 | 'statistics-users-active' => 'Pengguna aktif', |
1525 | | -'statistics-users-active-tooltip' => 'Pengguna yang aktif sejak sebulan lalu', |
| 1525 | +'statistics-users-active-desc' => 'Pengguna yang aktif sejak sebulan lalu', |
1526 | 1526 | 'statistics-mostpopular' => 'Laman dilihat terbanyak', |
1527 | 1527 | |
1528 | 1528 | 'disambiguations' => 'Laman penyahtaksaan', |
Index: trunk/phase3/languages/messages/MessagesBe.php |
— | — | @@ -1377,7 +1377,7 @@ |
1378 | 1378 | 'statistics-header-users' => 'Статыстыка ўдзельніка', |
1379 | 1379 | 'statistics-articles' => 'Змястоўныя старонкі', |
1380 | 1380 | 'statistics-pages' => 'Старонкі', |
1381 | | -'statistics-pages-tooltip' => 'Усе старонкі, разам з размовамі, перасылкамі і інш.', |
| 1381 | +'statistics-pages-desc' => 'Усе старонкі, разам з размовамі, перасылкамі і інш.', |
1382 | 1382 | 'statistics-files' => 'Укладзеныя файлы', |
1383 | 1383 | 'statistics-edits' => 'Праўкі старонак ад часу інсталяцыі {{SITENAME}}', |
1384 | 1384 | 'statistics-edits-average' => 'Колькасць правак на 1 старонку', |
— | — | @@ -1386,7 +1386,7 @@ |
1387 | 1387 | 'statistics-jobqueue' => 'Даўжыня [http://www.mediawiki.org/wiki/Manual:Job_queue чаргі задач]', |
1388 | 1388 | 'statistics-users' => 'Registered [[Special:ListUsers|users]]', |
1389 | 1389 | 'statistics-users-active' => 'Актыўныя ўдзельнікі', |
1390 | | -'statistics-users-active-tooltip' => 'Удзельнікі, якія хоць нешта зрабілі за месяц', |
| 1390 | +'statistics-users-active-desc' => 'Удзельнікі, якія хоць нешта зрабілі за месяц', |
1391 | 1391 | 'statistics-mostpopular' => 'Самыя папулярныя старонкі', |
1392 | 1392 | |
1393 | 1393 | 'disambiguations' => 'Неадназначнасці', |
Index: trunk/phase3/languages/messages/MessagesNn.php |
— | — | @@ -1570,7 +1570,7 @@ |
1571 | 1571 | 'statistics-header-users' => 'Brukarstatistikk', |
1572 | 1572 | 'statistics-articles' => 'Innhaldssider', |
1573 | 1573 | 'statistics-pages' => 'Sider', |
1574 | | -'statistics-pages-tooltip' => 'Alle sider på wikien, inkludert diskusjonssider, omdirigeringar o.l.', |
| 1574 | +'statistics-pages-desc' => 'Alle sider på wikien, inkludert diskusjonssider, omdirigeringar o.l.', |
1575 | 1575 | 'statistics-files' => 'Opplasta filer', |
1576 | 1576 | 'statistics-edits' => 'Endringar sidan {{SITENAME}} vart oppretta', |
1577 | 1577 | 'statistics-edits-average' => 'Gjennomsnittleg tal på endringar per side', |
— | — | @@ -1579,7 +1579,7 @@ |
1580 | 1580 | 'statistics-jobqueue' => 'Lengda på [http://www.mediawiki.org/wiki/Manual:Job_queue jobbkøen]', |
1581 | 1581 | 'statistics-users' => 'Registrerte [[Special:ListUsers|brukarar]]', |
1582 | 1582 | 'statistics-users-active' => 'Aktive brukarar', |
1583 | | -'statistics-users-active-tooltip' => 'Brukarar som har utført handlinger den siste månaden', |
| 1583 | +'statistics-users-active-desc' => 'Brukarar som har utført handlinger den siste månaden', |
1584 | 1584 | 'statistics-mostpopular' => 'Mest viste sider', |
1585 | 1585 | |
1586 | 1586 | 'disambiguations' => 'Fleirtydingssider', |
Index: trunk/phase3/languages/messages/MessagesRu.php |
— | — | @@ -1633,7 +1633,7 @@ |
1634 | 1634 | 'statistics-header-users' => 'Статистика по участникам', |
1635 | 1635 | 'statistics-articles' => 'Статей', |
1636 | 1636 | 'statistics-pages' => 'Страниц', |
1637 | | -'statistics-pages-tooltip' => 'Все страницы в вики, включая страницы обсуждения, перенаправления и прочее.', |
| 1637 | +'statistics-pages-desc' => 'Все страницы в вики, включая страницы обсуждения, перенаправления и прочее.', |
1638 | 1638 | 'statistics-files' => 'Загружено файлов', |
1639 | 1639 | 'statistics-edits' => 'Число правок с момента установки {{grammar:genitive|{{SITENAME}}}}', |
1640 | 1640 | 'statistics-edits-average' => 'Среднее число правок на страницу', |
— | — | @@ -1642,7 +1642,7 @@ |
1643 | 1643 | 'statistics-jobqueue' => 'Величина [http://www.mediawiki.org/wiki/Manual:Job_queue очереди заданий]', |
1644 | 1644 | 'statistics-users' => 'Зарегистрированные [[Special:ListUsers|участники]]', |
1645 | 1645 | 'statistics-users-active' => 'Активные участники', |
1646 | | -'statistics-users-active-tooltip' => 'Участники, совершившие какое-либо действие за прошедший месяц', |
| 1646 | +'statistics-users-active-desc' => 'Участники, совершившие какое-либо действие за прошедший месяц', |
1647 | 1647 | 'statistics-mostpopular' => 'Наиболее часто просматриваемые страницы', |
1648 | 1648 | |
1649 | 1649 | 'disambiguations' => 'Страницы со ссылками на многозначные термины', |
Index: trunk/phase3/languages/messages/MessagesBe_tarask.php |
— | — | @@ -1631,7 +1631,7 @@ |
1632 | 1632 | 'statistics-header-users' => 'Статыстыка ўдзелу', |
1633 | 1633 | 'statistics-articles' => 'Колькасьць старонак са зьместам', |
1634 | 1634 | 'statistics-pages' => 'Колькасьць старонак', |
1635 | | -'statistics-pages-tooltip' => 'Усе старонкі ў вікі, улучна з абмеркаваньнямі, перанакіраваньнямі і г.д.', |
| 1635 | +'statistics-pages-desc' => 'Усе старонкі ў вікі, улучна з абмеркаваньнямі, перанакіраваньнямі і г.д.', |
1636 | 1636 | 'statistics-files' => 'Колькасьць загружаных файлаў', |
1637 | 1637 | 'statistics-edits' => 'Колькасьць рэдагаваньняў старонак з моманту ўсталяваньня {{GRAMMAR:родны|{{SITENAME}}}}', |
1638 | 1638 | 'statistics-edits-average' => 'Сярэдняя колькасьць рэдагаваньняў на старонку', |
— | — | @@ -1640,7 +1640,7 @@ |
1641 | 1641 | 'statistics-jobqueue' => 'Даўжыня [http://www.mediawiki.org/wiki/Manual:Job_queue чаргі заданьняў]', |
1642 | 1642 | 'statistics-users' => '[[Special:ListUsers|Зарэгістраваныя удзельнікі]]', |
1643 | 1643 | 'statistics-users-active' => 'Актыўныя удзельнікі', |
1644 | | -'statistics-users-active-tooltip' => 'Удзельнікі, якія выканалі нейкае дзеяньне цягам мінулага месяца', |
| 1644 | +'statistics-users-active-desc' => 'Удзельнікі, якія выканалі нейкае дзеяньне цягам мінулага месяца', |
1645 | 1645 | 'statistics-mostpopular' => 'Найпапулярнейшыя старонкі', |
1646 | 1646 | |
1647 | 1647 | 'disambiguations' => 'Старонкі-неадназначнасьці', |
Index: trunk/phase3/languages/messages/MessagesYue.php |
— | — | @@ -1459,7 +1459,7 @@ |
1460 | 1460 | 'statistics-header-users' => '用戶統計', |
1461 | 1461 | 'statistics-articles' => '內容頁', |
1462 | 1462 | 'statistics-pages' => '頁', |
1463 | | -'statistics-pages-tooltip' => '響wiki上嘅全部頁,包埋討論頁、跳轉等', |
| 1463 | +'statistics-pages-desc' => '響wiki上嘅全部頁,包埋討論頁、跳轉等', |
1464 | 1464 | 'statistics-files' => '已經上載咗嘅檔案', |
1465 | 1465 | 'statistics-edits' => '自從{{SITENAME}}設定後嘅頁編輯數', |
1466 | 1466 | 'statistics-edits-average' => '每一版平均編輯數', |
— | — | @@ -1468,7 +1468,7 @@ |
1469 | 1469 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue 工作隊列]長度', |
1470 | 1470 | 'statistics-users' => '註冊咗嘅[[Special:ListUsers|用戶]]', |
1471 | 1471 | 'statistics-users-active' => '活躍用戶', |
1472 | | -'statistics-users-active-tooltip' => '響上個月做過動作嘅用戶', |
| 1472 | +'statistics-users-active-desc' => '響上個月做過動作嘅用戶', |
1473 | 1473 | 'statistics-mostpopular' => '最多人睇嘅頁', |
1474 | 1474 | |
1475 | 1475 | 'disambiguations' => '搞清楚頁', |
Index: trunk/phase3/languages/messages/MessagesNds.php |
— | — | @@ -1555,7 +1555,7 @@ |
1556 | 1556 | 'statistics-header-users' => 'Brukerstatistik', |
1557 | 1557 | 'statistics-articles' => 'Inholtssieden', |
1558 | 1558 | 'statistics-pages' => 'Sieden', |
1559 | | -'statistics-pages-tooltip' => 'All Sieden in dit Wiki, tohoop mit all Diskuschoonssieden, Redirects usw.', |
| 1559 | +'statistics-pages-desc' => 'All Sieden in dit Wiki, tohoop mit all Diskuschoonssieden, Redirects usw.', |
1560 | 1560 | 'statistics-files' => 'Hoochlaadt Datein', |
1561 | 1561 | 'statistics-edits' => 'Ännern, siet dat {{SITENAME}} gifft', |
1562 | 1562 | 'statistics-edits-average' => 'Dörsnittlich Ännern je Sied', |
— | — | @@ -1564,7 +1564,7 @@ |
1565 | 1565 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Job-Queue-Längd]', |
1566 | 1566 | 'statistics-users' => 'Anmellt [[Special:ListUsers|Brukers]]', |
1567 | 1567 | 'statistics-users-active' => 'Aktive Brukers', |
1568 | | -'statistics-users-active-tooltip' => 'Brukers, de in de vergahn 30 Daag wat daan hebbt', |
| 1568 | +'statistics-users-active-desc' => 'Brukers, de in de vergahn 30 Daag wat daan hebbt', |
1569 | 1569 | 'statistics-mostpopular' => 'opmehrst ankekene Sieden', |
1570 | 1570 | |
1571 | 1571 | 'disambiguations' => 'Mehrdüdige Begrepen', |
Index: trunk/phase3/languages/messages/MessagesLa.php |
— | — | @@ -1080,7 +1080,7 @@ |
1081 | 1081 | 'statistics-header-users' => 'Census usorum', |
1082 | 1082 | 'statistics-articles' => 'Paginae in spatio nominali principali', |
1083 | 1083 | 'statistics-pages' => 'Paginae', |
1084 | | -'statistics-pages-tooltip' => 'Omnes paginae. Hic numerus includit paginas disputationum, redirectiones, etc.', |
| 1084 | +'statistics-pages-desc' => 'Omnes paginae. Hic numerus includit paginas disputationum, redirectiones, etc.', |
1085 | 1085 | 'statistics-files' => 'Fasciculi impositi', |
1086 | 1086 | 'statistics-edits' => 'Recensiones paginarum factae ab initio {{grammar:genitive|{{SITENAME}}}}', |
1087 | 1087 | 'statistics-edits-average' => 'Recensiones per paginam', |
— | — | @@ -1089,7 +1089,7 @@ |
1090 | 1090 | 'statistics-jobqueue' => 'Numerus [http://www.mediawiki.org/wiki/Manual:Job_queue operationum qui etiam exspectant perfacier]', |
1091 | 1091 | 'statistics-users' => '[[Special:ListUsers|Usores]] relati', |
1092 | 1092 | 'statistics-users-active' => 'Usores activi', |
1093 | | -'statistics-users-active-tooltip' => 'Usores qui proxima mense actionem perfecerunt', |
| 1093 | +'statistics-users-active-desc' => 'Usores qui proxima mense actionem perfecerunt', |
1094 | 1094 | 'statistics-mostpopular' => 'Paginae plurimum visae', |
1095 | 1095 | |
1096 | 1096 | 'disambiguations' => 'Paginae disambiguationis', |
Index: trunk/phase3/languages/messages/MessagesHr.php |
— | — | @@ -1627,7 +1627,7 @@ |
1628 | 1628 | 'statistics-header-users' => 'Statistika suradnika', |
1629 | 1629 | 'statistics-articles' => 'Stranice sa sadržajem', |
1630 | 1630 | 'statistics-pages' => 'Stranice', |
1631 | | -'statistics-pages-tooltip' => 'Sve stranice na wikiju, uključujući stranice za razgovor, preusmjeravanja i dr.', |
| 1631 | +'statistics-pages-desc' => 'Sve stranice na wikiju, uključujući stranice za razgovor, preusmjeravanja i dr.', |
1632 | 1632 | 'statistics-files' => 'Postavljene datoteke', |
1633 | 1633 | 'statistics-edits' => 'Broj uređivanja od nastanka projekta {{SITENAME}}', |
1634 | 1634 | 'statistics-edits-average' => 'Prosječan broj uređivanja po stranici', |
— | — | @@ -1636,7 +1636,7 @@ |
1637 | 1637 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Red poslova]', |
1638 | 1638 | 'statistics-users' => 'Prijavljeni [[Special:ListUsers|suradnici]]', |
1639 | 1639 | 'statistics-users-active' => 'Aktivni suradnici', |
1640 | | -'statistics-users-active-tooltip' => 'Suradnici koji su napravili neku od radnji zadnjih mjesec dana', |
| 1640 | +'statistics-users-active-desc' => 'Suradnici koji su napravili neku od radnji zadnjih mjesec dana', |
1641 | 1641 | 'statistics-mostpopular' => 'Najposjećenije stranice', |
1642 | 1642 | |
1643 | 1643 | 'disambiguations' => 'Razdvojbene stranice', |
Index: trunk/phase3/languages/messages/MessagesPl.php |
— | — | @@ -1648,7 +1648,7 @@ |
1649 | 1649 | 'statistics-header-users' => 'Statystyka użytkowników', |
1650 | 1650 | 'statistics-articles' => 'Strony', |
1651 | 1651 | 'statistics-pages' => 'Strony', |
1652 | | -'statistics-pages-tooltip' => 'Wszystkie strony na wiki, w tym strony dyskusji, przekierowania, itd.', |
| 1652 | +'statistics-pages-desc' => 'Wszystkie strony na wiki, w tym strony dyskusji, przekierowania, itd.', |
1653 | 1653 | 'statistics-files' => 'Przesłane pliki', |
1654 | 1654 | 'statistics-edits' => 'Edycje wykonane od powstania {{grammar:D.lp|{{SITENAME}}}}', |
1655 | 1655 | 'statistics-edits-average' => 'Średnia liczba edycji na stronę', |
— | — | @@ -1657,7 +1657,7 @@ |
1658 | 1658 | 'statistics-jobqueue' => 'Rozmiar [http://www.mediawiki.org/wiki/Manual:Job_queue kolejki zadań]', |
1659 | 1659 | 'statistics-users' => 'Zarejestrowanych [[Special:ListUsers|użytkowników]]', |
1660 | 1660 | 'statistics-users-active' => 'Aktywnych użytkowników', |
1661 | | -'statistics-users-active-tooltip' => 'Użytkownicy, którzy byli aktywni w ciągu ostatniego miesiąca', |
| 1661 | +'statistics-users-active-desc' => 'Użytkownicy, którzy byli aktywni w ciągu ostatniego miesiąca', |
1662 | 1662 | 'statistics-mostpopular' => 'Najczęściej odwiedzane strony', |
1663 | 1663 | |
1664 | 1664 | 'disambiguations' => 'Strony ujednoznaczniające', |
Index: trunk/phase3/languages/messages/MessagesPt.php |
— | — | @@ -1555,7 +1555,7 @@ |
1556 | 1556 | 'statistics-header-users' => 'Estatísticas de utilizadores', |
1557 | 1557 | 'statistics-articles' => 'Páginas de conteúdo', |
1558 | 1558 | 'statistics-pages' => 'Páginas', |
1559 | | -'statistics-pages-tooltip' => 'Todas as páginas do wiki, incluindo páginas de discussão, redireccionamentos etc', |
| 1559 | +'statistics-pages-desc' => 'Todas as páginas do wiki, incluindo páginas de discussão, redireccionamentos etc', |
1560 | 1560 | 'statistics-files' => 'Ficheiros carregados', |
1561 | 1561 | 'statistics-edits' => 'Edições de página desde que {{SITENAME}} foi instalado', |
1562 | 1562 | 'statistics-edits-average' => 'Média de edições por página', |
— | — | @@ -1564,7 +1564,7 @@ |
1565 | 1565 | 'statistics-jobqueue' => 'Tamanho da [http://www.mediawiki.org/wiki/Manual:Job_queue fila de tarefas]', |
1566 | 1566 | 'statistics-users' => '[[Special:ListUsers|Utilizadores]] registados', |
1567 | 1567 | 'statistics-users-active' => 'Utilizadores activos', |
1568 | | -'statistics-users-active-tooltip' => 'Utilizadores que efectuaram uma acção no mês passado', |
| 1568 | +'statistics-users-active-desc' => 'Utilizadores que efectuaram uma acção no mês passado', |
1569 | 1569 | 'statistics-mostpopular' => 'Páginas mais vistas', |
1570 | 1570 | |
1571 | 1571 | 'disambiguations' => 'Página de desambiguações', |
Index: trunk/phase3/languages/messages/MessagesAst.php |
— | — | @@ -1402,7 +1402,7 @@ |
1403 | 1403 | 'statistics-header-users' => "Estadístiques d'usuariu", |
1404 | 1404 | 'statistics-articles' => 'Páxines de conteníu', |
1405 | 1405 | 'statistics-pages' => 'Páxines', |
1406 | | -'statistics-pages-tooltip' => "Toles páxines de la wiki, incluyendo páxines d'alderique, redireiciones, etc.", |
| 1406 | +'statistics-pages-desc' => "Toles páxines de la wiki, incluyendo páxines d'alderique, redireiciones, etc.", |
1407 | 1407 | 'statistics-files' => 'Archivos xubíos', |
1408 | 1408 | 'statistics-edits' => "Ediciones de páxines dende qu'entamó {{SITENAME}}", |
1409 | 1409 | 'statistics-edits-average' => "Media d'ediciones per páxina", |
— | — | @@ -1411,7 +1411,7 @@ |
1412 | 1412 | 'statistics-jobqueue' => 'Llonxitú de la [http://www.mediawiki.org/wiki/Manual:Job_queue cola de xeres]', |
1413 | 1413 | 'statistics-users' => '[[Special:ListUsers|Usuarios]] rexistraos', |
1414 | 1414 | 'statistics-users-active' => 'Usuarios activos', |
1415 | | -'statistics-users-active-tooltip' => 'Usuarios que realizaron una aición nel caberu mes', |
| 1415 | +'statistics-users-active-desc' => 'Usuarios que realizaron una aición nel caberu mes', |
1416 | 1416 | 'statistics-mostpopular' => 'Páxines más vistes', |
1417 | 1417 | |
1418 | 1418 | 'disambiguations' => 'Páxines de dixebra', |
Index: trunk/phase3/languages/messages/MessagesRoa_tara.php |
— | — | @@ -925,7 +925,7 @@ |
926 | 926 | 'statistics-header-users' => "Statisteche de l'utende", |
927 | 927 | 'statistics-articles' => 'Pàggene de le condenute', |
928 | 928 | 'statistics-pages' => 'Pàggene', |
929 | | -'statistics-pages-tooltip' => "Tutte le pàggene jndr'à Uicchi, mettènne le pàggene de le 'ngazzaminde, ridirezionaminde, ecc.", |
| 929 | +'statistics-pages-desc' => "Tutte le pàggene jndr'à Uicchi, mettènne le pàggene de le 'ngazzaminde, ridirezionaminde, ecc.", |
930 | 930 | 'statistics-files' => 'File carechete', |
931 | 931 | 'statistics-users' => '[[Special:ListUsers|Utinde reggistrete]]', |
932 | 932 | |
Index: trunk/phase3/languages/messages/MessagesIa.php |
— | — | @@ -1571,7 +1571,7 @@ |
1572 | 1572 | 'statistics-header-users' => 'Statisticas de usatores', |
1573 | 1573 | 'statistics-articles' => 'Paginas de contento', |
1574 | 1574 | 'statistics-pages' => 'Paginas', |
1575 | | -'statistics-pages-tooltip' => 'Tote le paginas del wiki, includente paginas de discussion, redirectiones, etc.', |
| 1575 | +'statistics-pages-desc' => 'Tote le paginas del wiki, includente paginas de discussion, redirectiones, etc.', |
1576 | 1576 | 'statistics-files' => 'Files cargate', |
1577 | 1577 | 'statistics-edits' => 'Modificationes de paginas depost le installation de {{SITENAME}}', |
1578 | 1578 | 'statistics-edits-average' => 'Media del modificationes per pagina', |
— | — | @@ -1580,7 +1580,7 @@ |
1581 | 1581 | 'statistics-jobqueue' => 'Longor del [http://www.mediawiki.org/wiki/Manual:Job_queue cauda de actiones]', |
1582 | 1582 | 'statistics-users' => '[[Special:ListUsers|Usatores]] registrate', |
1583 | 1583 | 'statistics-users-active' => 'Usatores active', |
1584 | | -'statistics-users-active-tooltip' => 'Usatores qui ha facite un action durante le mense passate', |
| 1584 | +'statistics-users-active-desc' => 'Usatores qui ha facite un action durante le mense passate', |
1585 | 1585 | 'statistics-mostpopular' => 'Le paginas plus visitate', |
1586 | 1586 | |
1587 | 1587 | 'disambiguations' => 'Paginas de disambiguation', |
Index: trunk/phase3/languages/messages/MessagesZh_hant.php |
— | — | @@ -1379,7 +1379,7 @@ |
1380 | 1380 | 'statistics-header-users' => '用戶統計', |
1381 | 1381 | 'statistics-articles' => '內容頁面', |
1382 | 1382 | 'statistics-pages' => '頁面', |
1383 | | -'statistics-pages-tooltip' => '在wiki上的所有頁面,包括對話頁面、重新定向等', |
| 1383 | +'statistics-pages-desc' => '在wiki上的所有頁面,包括對話頁面、重新定向等', |
1384 | 1384 | 'statistics-files' => '已經上載的檔案', |
1385 | 1385 | 'statistics-edits' => '自從{{SITENAME}}設定的頁面編輯數', |
1386 | 1386 | 'statistics-edits-average' => '每一頁面的平均編輯數', |
— | — | @@ -1388,7 +1388,7 @@ |
1389 | 1389 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue 工作隊列]長度', |
1390 | 1390 | 'statistics-users' => '已註冊[[Special:ListUsers|用戶]]', |
1391 | 1391 | 'statistics-users-active' => '活躍用戶', |
1392 | | -'statistics-users-active-tooltip' => '在前一個月中操作過的用戶', |
| 1392 | +'statistics-users-active-desc' => '在前一個月中操作過的用戶', |
1393 | 1393 | 'statistics-mostpopular' => '被查閱次數最多的頁面', |
1394 | 1394 | |
1395 | 1395 | 'disambiguations' => '消含糊頁', |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2017,7 +2017,8 @@ |
2018 | 2018 | 'statistics-header-views' => 'View statistics', |
2019 | 2019 | 'statistics-header-users' => 'User statistics', |
2020 | 2020 | 'statistics-articles' => 'Content pages', |
2021 | | -'statistics-pages' => 'Pages <small>(All pages in the wiki, including talk pages, redirects, etc.)</small>', |
| 2021 | +'statistics-pages' => 'Pages', |
| 2022 | +'statistics-pages-desc' => 'All pages in the wiki, including talk pages, redirects, etc.', |
2022 | 2023 | 'statistics-files' => 'Uploaded files', |
2023 | 2024 | 'statistics-edits' => 'Page edits since {{SITENAME}} was setup', |
2024 | 2025 | 'statistics-edits-average' => 'Average edits per page', |
— | — | @@ -2025,7 +2026,8 @@ |
2026 | 2027 | 'statistics-views-peredit' => 'Views per edit', |
2027 | 2028 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Job queue] length', |
2028 | 2029 | 'statistics-users' => 'Registered [[Special:ListUsers|users]]', |
2029 | | -'statistics-users-active' => 'Active users <small>(Users who have performed an action in the last month)</small>', |
| 2030 | +'statistics-users-active' => 'Active users', |
| 2031 | +'statistics-users-active-desc' => 'Users who have performed an action in the past month', |
2030 | 2032 | 'statistics-mostpopular' => 'Most viewed pages', |
2031 | 2033 | 'statistics-footer' => '', # do not translate or duplicate this message to other languages |
2032 | 2034 | |
Index: trunk/phase3/languages/messages/MessagesFa.php |
— | — | @@ -1758,7 +1758,7 @@ |
1759 | 1759 | 'statistics-header-users' => 'آمار کاربران', |
1760 | 1760 | 'statistics-articles' => 'صفحه محتویات', |
1761 | 1761 | 'statistics-pages' => 'صفحهها', |
1762 | | -'statistics-pages-tooltip' => 'تمام صفحههای این ویکی، از جمله صفحههای بحث، تغییر مسیر و غیره', |
| 1762 | +'statistics-pages-desc' => 'تمام صفحههای این ویکی، از جمله صفحههای بحث، تغییر مسیر و غیره', |
1763 | 1763 | 'statistics-files' => 'پروندههای بارگذاری شده', |
1764 | 1764 | 'statistics-edits' => 'از زمانی که نرمافزار ارتقا یافتهاست تعداد ویرایشات بر روی {{SITENAME}} این تعداد بوده است:', |
1765 | 1765 | 'statistics-edits-average' => 'متوسط ویرایشها بر روی صفحات', |
— | — | @@ -1767,7 +1767,7 @@ |
1768 | 1768 | 'statistics-jobqueue' => 'طول [http://www.mediawiki.org/wiki/Manual:Job_queue صف کار]', |
1769 | 1769 | 'statistics-users' => '[[ویژه:ListUsers|کاربران]] ثبتنام کرده', |
1770 | 1770 | 'statistics-users-active' => 'کاربران فعال', |
1771 | | -'statistics-users-active-tooltip' => 'کاربرانی که در یک ماه قبل فعالیتی داشتهاند', |
| 1771 | +'statistics-users-active-desc' => 'کاربرانی که در یک ماه قبل فعالیتی داشتهاند', |
1772 | 1772 | 'statistics-mostpopular' => 'صفحههایی که بیشترین تعداد بازدیدکننده را داشتهاند', |
1773 | 1773 | |
1774 | 1774 | 'disambiguations' => 'صفحههای ابهامزدایی', |
Index: trunk/phase3/languages/messages/MessagesBcc.php |
— | — | @@ -1564,7 +1564,7 @@ |
1565 | 1565 | 'statistics-header-users' => 'آمار کاربر', |
1566 | 1566 | 'statistics-articles' => 'صفحات محتوا', |
1567 | 1567 | 'statistics-pages' => 'صفحات', |
1568 | | -'statistics-pages-tooltip' => 'کل صفحات ته ویکی په داب صفحات بحث ،غیر مستقیمان و دگه چیز.', |
| 1568 | +'statistics-pages-desc' => 'کل صفحات ته ویکی په داب صفحات بحث ،غیر مستقیمان و دگه چیز.', |
1569 | 1569 | 'statistics-files' => 'آپلود بیتگین فایلان', |
1570 | 1570 | 'statistics-edits' => 'اصلاح صفحات چه وهدی که {{SITENAME}} شر بوتت', |
1571 | 1571 | 'statistics-edits-average' => 'میانگین اصلاحات ته هر صفحه ای', |
— | — | @@ -1573,7 +1573,7 @@ |
1574 | 1574 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue طول کار] ای', |
1575 | 1575 | 'statistics-users' => 'ثبت نامی [[Special:ListUsers|users]]', |
1576 | 1576 | 'statistics-users-active' => 'فعالین کاربر', |
1577 | | -'statistics-users-active-tooltip' => 'کاربرانی که ته پیشگین ماه کاری اش کتت', |
| 1577 | +'statistics-users-active-desc' => 'کاربرانی که ته پیشگین ماه کاری اش کتت', |
1578 | 1578 | 'statistics-mostpopular' => 'باز چار تگین صفحات', |
1579 | 1579 | |
1580 | 1580 | 'disambiguations' => 'صفحات رفع ابهام', |
Index: trunk/phase3/languages/messages/MessagesFi.php |
— | — | @@ -1482,7 +1482,7 @@ |
1483 | 1483 | 'statistics-header-users' => 'Käyttäjätilastot', |
1484 | 1484 | 'statistics-articles' => 'Sisältösivuja', |
1485 | 1485 | 'statistics-pages' => 'Sivuja', |
1486 | | -'statistics-pages-tooltip' => 'Kaikki sivut, sisältäen keskustelusivut, ohjaukset ja muut.', |
| 1486 | +'statistics-pages-desc' => 'Kaikki sivut, sisältäen keskustelusivut, ohjaukset ja muut.', |
1487 | 1487 | 'statistics-files' => 'Tallennettuja tiedostoja', |
1488 | 1488 | 'statistics-edits' => 'Muokkauksia {{GRAMMAR:genitive|{{SITENAME}}}} perustamisen jälkeen', |
1489 | 1489 | 'statistics-edits-average' => 'Keskimäärin yhtä sivua muokattu', |
— | — | @@ -1491,7 +1491,7 @@ |
1492 | 1492 | 'statistics-jobqueue' => 'Ohjelmiston suorittamia [http://www.mediawiki.org/wiki/Manual:Job_queue ylläpitotöitä jonossa]', |
1493 | 1493 | 'statistics-users' => 'Rekisteröityneitä [[Special:ListUsers|käyttäjiä]]', |
1494 | 1494 | 'statistics-users-active' => 'Aktiivisia käyttäjiä', |
1495 | | -'statistics-users-active-tooltip' => 'Käyttäjät, jotka ovat suorittaneet jonkin toiminnon viime kuukauden aikana.', |
| 1495 | +'statistics-users-active-desc' => 'Käyttäjät, jotka ovat suorittaneet jonkin toiminnon viime kuukauden aikana.', |
1496 | 1496 | 'statistics-mostpopular' => 'Katsotuimmat sivut', |
1497 | 1497 | |
1498 | 1498 | 'disambiguations' => 'Linkit täsmennyssivuihin', |
Index: trunk/phase3/languages/messages/MessagesSah.php |
— | — | @@ -1419,7 +1419,7 @@ |
1420 | 1420 | 'statistics-header-users' => 'Кыттааччы статистиката', |
1421 | 1421 | 'statistics-articles' => 'Ыстатыйа иһинээҕитэ', |
1422 | 1422 | 'statistics-pages' => 'Сирэйдэр', |
1423 | | -'statistics-pages-tooltip' => 'Биики бары сирэйдэрин (ырытыы сирэйдэрин, утаарыылары уо.д.а киллэрэн туран).', |
| 1423 | +'statistics-pages-desc' => 'Биики бары сирэйдэрин (ырытыы сирэйдэрин, утаарыылары уо.д.а киллэрэн туран).', |
1424 | 1424 | 'statistics-files' => 'Киллэриллибит билэлэр ахсааннара', |
1425 | 1425 | 'statistics-edits' => '{{SITENAME}} туруоҕуттан көннөрүү ахсаана', |
1426 | 1426 | 'statistics-edits-average' => 'Биир сирэйгэ ортотунан хас көннөрүү тиксэрэ', |
— | — | @@ -1428,7 +1428,7 @@ |
1429 | 1429 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Job queue] кээмэйэ', |
1430 | 1430 | 'statistics-users' => '[[Special:ListUsers|Кыттааччы]] бэлиэтэммит', |
1431 | 1431 | 'statistics-users-active' => 'Көхтөөх кыттааччылар', |
1432 | | -'statistics-users-active-tooltip' => 'Ааспыт ыйга тугу эмэ оҥорбут кыттааччылар', |
| 1432 | +'statistics-users-active-desc' => 'Ааспыт ыйга тугу эмэ оҥорбут кыттааччылар', |
1433 | 1433 | 'statistics-mostpopular' => 'Саамай элбэхтик көрүллэр ыстатыйалар', |
1434 | 1434 | |
1435 | 1435 | 'disambiguations' => 'Элбэх суолталаах өйдөбүллэр сирэйдэрэ', |
Index: trunk/phase3/languages/messages/MessagesHsb.php |
— | — | @@ -1464,7 +1464,7 @@ |
1465 | 1465 | 'statistics-header-users' => 'Statistika wužiwarjow', |
1466 | 1466 | 'statistics-articles' => 'Wobsahowe strony', |
1467 | 1467 | 'statistics-pages' => 'Strony', |
1468 | | -'statistics-pages-tooltip' => 'Wšě strony we wikiju, inkluziwnje diskusijnych stronow, daleposrědkowanja atd.', |
| 1468 | +'statistics-pages-desc' => 'Wšě strony we wikiju, inkluziwnje diskusijnych stronow, daleposrědkowanja atd.', |
1469 | 1469 | 'statistics-files' => 'Nahrate dataje', |
1470 | 1470 | 'statistics-edits' => 'Změny stronow wot załoženja {{SITENAME}}', |
1471 | 1471 | 'statistics-edits-average' => 'Změny na stronu w přerězku', |
— | — | @@ -1473,7 +1473,7 @@ |
1474 | 1474 | 'statistics-jobqueue' => 'Dołhosć [http://www.mediawiki.org/wiki/Manual:Job_queue Job queue]', |
1475 | 1475 | 'statistics-users' => 'Zregistrowani [[Special:ListUsers|wužiwarjo]]', |
1476 | 1476 | 'statistics-users-active' => 'Aktiwni wužiwarjo', |
1477 | | -'statistics-users-active-tooltip' => 'Wužiwarjo, kotřiž su w zańdźenym měsaću aktiwni byli', |
| 1477 | +'statistics-users-active-desc' => 'Wužiwarjo, kotřiž su w zańdźenym měsaću aktiwni byli', |
1478 | 1478 | 'statistics-mostpopular' => 'Najhusćišo wopytowane strony', |
1479 | 1479 | |
1480 | 1480 | 'disambiguations' => 'Rozjasnjenja wjacezmyslnosće', |
Index: trunk/phase3/languages/messages/MessagesNo.php |
— | — | @@ -1518,7 +1518,7 @@ |
1519 | 1519 | 'statistics-header-users' => 'Brukerstatistikk', |
1520 | 1520 | 'statistics-articles' => 'Innholdssider', |
1521 | 1521 | 'statistics-pages' => 'Sider', |
1522 | | -'statistics-pages-tooltip' => 'Alle sider på wikien, inkludert diskusjonssider, omdirigeringer o.l.', |
| 1522 | +'statistics-pages-desc' => 'Alle sider på wikien, inkludert diskusjonssider, omdirigeringer o.l.', |
1523 | 1523 | 'statistics-files' => 'Opplastede filer', |
1524 | 1524 | 'statistics-edits' => 'Redigeringer siden {{SITENAME}} ble opprettet', |
1525 | 1525 | 'statistics-edits-average' => 'Gjennomsnittlig antall redigeringer per side', |
— | — | @@ -1527,7 +1527,7 @@ |
1528 | 1528 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Jobbkøens] lengde', |
1529 | 1529 | 'statistics-users' => 'Registrerte [[Special:ListUsers|brukere]]', |
1530 | 1530 | 'statistics-users-active' => 'Aktive brukere', |
1531 | | -'statistics-users-active-tooltip' => 'Brukere som har utført handlinger den siste måneden', |
| 1531 | +'statistics-users-active-desc' => 'Brukere som har utført handlinger den siste måneden', |
1532 | 1532 | 'statistics-mostpopular' => 'Mest viste sider', |
1533 | 1533 | |
1534 | 1534 | 'disambiguations' => 'Artikler med flertydige titler', |
Index: trunk/phase3/languages/messages/MessagesVi.php |
— | — | @@ -1558,7 +1558,7 @@ |
1559 | 1559 | 'statistics-header-users' => 'Thống kê thành viên', |
1560 | 1560 | 'statistics-articles' => 'Số trang nội dung', |
1561 | 1561 | 'statistics-pages' => 'Số trang', |
1562 | | -'statistics-pages-tooltip' => 'Tất cả các trang tại wiki, bao gồm trang thảo luận, trang đổi hướng, v.v.', |
| 1562 | +'statistics-pages-desc' => 'Tất cả các trang tại wiki, bao gồm trang thảo luận, trang đổi hướng, v.v.', |
1563 | 1563 | 'statistics-files' => 'Số tập tin đã tải lên', |
1564 | 1564 | 'statistics-edits' => 'Số sửa đổi trang từ khi {{SITENAME}} được thành lập', |
1565 | 1565 | 'statistics-edits-average' => 'Số sửa đổi trung bình trên một trang', |
— | — | @@ -1567,7 +1567,7 @@ |
1568 | 1568 | 'statistics-jobqueue' => 'Chiều dài [http://www.mediawiki.org/wiki/Manual:Job_queue hàng đợi việc]', |
1569 | 1569 | 'statistics-users' => 'Số [[Special:ListUsers|thành viên]] đã đăng ký', |
1570 | 1570 | 'statistics-users-active' => 'Số thành viên tích cực', |
1571 | | -'statistics-users-active-tooltip' => 'Những thành viên đã hoạt động trong tháng qua', |
| 1571 | +'statistics-users-active-desc' => 'Những thành viên đã hoạt động trong tháng qua', |
1572 | 1572 | 'statistics-mostpopular' => 'Các trang được xem nhiều nhất', |
1573 | 1573 | |
1574 | 1574 | 'disambiguations' => 'Trang định hướng', |
Index: trunk/phase3/languages/messages/MessagesCa.php |
— | — | @@ -1534,7 +1534,7 @@ |
1535 | 1535 | 'statistics-header-users' => "Estadístiques d'usuari", |
1536 | 1536 | 'statistics-articles' => 'Pàgines de contingut', |
1537 | 1537 | 'statistics-pages' => 'Pàgines', |
1538 | | -'statistics-pages-tooltip' => 'Totes les pàgines del wiki, incloent les pàgines de discussió, redireccions, etc.', |
| 1538 | +'statistics-pages-desc' => 'Totes les pàgines del wiki, incloent les pàgines de discussió, redireccions, etc.', |
1539 | 1539 | 'statistics-files' => 'Arxius carregats', |
1540 | 1540 | 'statistics-edits' => 'Edicions en pàgines des que el projecte {{SITENAME}} fou instaŀlat', |
1541 | 1541 | 'statistics-edits-average' => 'Edicions per pàgina de mitjana', |
— | — | @@ -1543,7 +1543,7 @@ |
1544 | 1544 | 'statistics-jobqueue' => 'Longitud de la [http://www.mediawiki.org/wiki/Manual:Job_queue cua de treballs]', |
1545 | 1545 | 'statistics-users' => '[[Special:ListUsers|Usuaris]] registrats', |
1546 | 1546 | 'statistics-users-active' => 'Usuaris actius', |
1547 | | -'statistics-users-active-tooltip' => "Usuaris que han dut a terme alguna acció en l'últim mes", |
| 1547 | +'statistics-users-active-desc' => "Usuaris que han dut a terme alguna acció en l'últim mes", |
1548 | 1548 | 'statistics-mostpopular' => 'Pàgines més visualitzades', |
1549 | 1549 | |
1550 | 1550 | 'disambiguations' => 'Pàgines de desambiguació', |
Index: trunk/phase3/languages/messages/MessagesGl.php |
— | — | @@ -1535,7 +1535,7 @@ |
1536 | 1536 | 'statistics-header-users' => 'Estatísticas dos usuarios', |
1537 | 1537 | 'statistics-articles' => 'Páxinas de contido', |
1538 | 1538 | 'statistics-pages' => 'Páxinas', |
1539 | | -'statistics-pages-tooltip' => 'Todas as páxinas do wiki; isto inclúe as páxinas de conversa, redireccións, etc.', |
| 1539 | +'statistics-pages-desc' => 'Todas as páxinas do wiki; isto inclúe as páxinas de conversa, redireccións, etc.', |
1540 | 1540 | 'statistics-files' => 'Ficheiros cargados', |
1541 | 1541 | 'statistics-edits' => 'Edicións nas páxinas desde que se creou {{SITENAME}}', |
1542 | 1542 | 'statistics-edits-average' => 'Media de edicións por páxina', |
— | — | @@ -1544,7 +1544,7 @@ |
1545 | 1545 | 'statistics-jobqueue' => 'Lonxitude da [http://www.mediawiki.org/wiki/Manual:Job_queue cola de traballos]', |
1546 | 1546 | 'statistics-users' => '[[Special:ListUsers|Usuarios]] rexistrados', |
1547 | 1547 | 'statistics-users-active' => 'Usuarios activos', |
1548 | | -'statistics-users-active-tooltip' => 'Usuarios que teñen levado a cabo unha acción no mes pasado', |
| 1548 | +'statistics-users-active-desc' => 'Usuarios que teñen levado a cabo unha acción no mes pasado', |
1549 | 1549 | 'statistics-mostpopular' => 'Páxinas máis vistas', |
1550 | 1550 | |
1551 | 1551 | 'disambiguations' => 'Páxinas de homónimos', |
Index: trunk/phase3/languages/messages/MessagesKo.php |
— | — | @@ -1396,7 +1396,7 @@ |
1397 | 1397 | 'statistics-header-users' => '사용자 통계', |
1398 | 1398 | 'statistics-articles' => '일반 문서', |
1399 | 1399 | 'statistics-pages' => '전체 문서', |
1400 | | -'statistics-pages-tooltip' => '토론 문서, 넘겨주기 문서 등을 포함.', |
| 1400 | +'statistics-pages-desc' => '토론 문서, 넘겨주기 문서 등을 포함.', |
1401 | 1401 | 'statistics-files' => '올려져 있는 파일', |
1402 | 1402 | 'statistics-edits' => '{{SITENAME}} 설치 후 문서의 전체 편집 횟수', |
1403 | 1403 | 'statistics-edits-average' => '문서당 평균 편집 횟수', |
— | — | @@ -1404,7 +1404,7 @@ |
1405 | 1405 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Job queue]의 길이', |
1406 | 1406 | 'statistics-users' => '등록된 [[Special:ListUsers|사용자]]', |
1407 | 1407 | 'statistics-users-active' => '활동 중인 사용자', |
1408 | | -'statistics-users-active-tooltip' => '지난 1개월간 활동한 사용자', |
| 1408 | +'statistics-users-active-desc' => '지난 1개월간 활동한 사용자', |
1409 | 1409 | 'statistics-mostpopular' => '가장 많이 읽힌 문서', |
1410 | 1410 | |
1411 | 1411 | 'disambiguations' => '동음이의 문서 목록', |
Index: trunk/phase3/languages/messages/MessagesCy.php |
— | — | @@ -1393,7 +1393,7 @@ |
1394 | 1394 | 'statistics-header-users' => 'Ystadegau defnyddwyr', |
1395 | 1395 | 'statistics-articles' => 'Tudalennau cynnwys', |
1396 | 1396 | 'statistics-pages' => 'Tudalennau', |
1397 | | -'statistics-pages-tooltip' => 'Pob tudalen yn y wici, gan gynnwys tudalennau sgwrs, ailgyfeiriadau, ayb.', |
| 1397 | +'statistics-pages-desc' => 'Pob tudalen yn y wici, gan gynnwys tudalennau sgwrs, ailgyfeiriadau, ayb.', |
1398 | 1398 | 'statistics-files' => 'Ffeiliau wedi eu huwchlwytho', |
1399 | 1399 | 'statistics-edits' => 'Golygiadau ers y dechrau ar {{SITENAME}}', |
1400 | 1400 | 'statistics-edits-average' => "Golygiadau'r dudalen, ar gyfartaledd", |
— | — | @@ -1402,7 +1402,7 @@ |
1403 | 1403 | 'statistics-jobqueue' => 'Hyd y [http://www.mediawiki.org/wiki/Manual:Job_queue llinell tasgau]', |
1404 | 1404 | 'statistics-users' => '[[Special:ListUsers|Defnyddwyr]] cofrestredig', |
1405 | 1405 | 'statistics-users-active' => 'Defnyddwyr gweithgar', |
1406 | | -'statistics-users-active-tooltip' => 'Defnyddwyr sydd wedi gweithredu unwaith neu ragor yn ystod y mis diwethaf', |
| 1406 | +'statistics-users-active-desc' => 'Defnyddwyr sydd wedi gweithredu unwaith neu ragor yn ystod y mis diwethaf', |
1407 | 1407 | 'statistics-mostpopular' => "Tudalennau sy'n derbyn ymweliad amlaf", |
1408 | 1408 | |
1409 | 1409 | 'disambiguations' => 'Tudalennau gwahaniaethu', |
Index: trunk/phase3/languages/messages/MessagesSi.php |
— | — | @@ -1559,7 +1559,7 @@ |
1560 | 1560 | 'statistics-header-users' => 'පරිශීලකයන් පිළිබඳ සංඛ්යාන දත්ත', |
1561 | 1561 | 'statistics-articles' => 'අන්තර්ගත පිටු', |
1562 | 1562 | 'statistics-pages' => 'පිටු', |
1563 | | -'statistics-pages-tooltip' => 'සාකච්ඡා පිටු, යළි-යොමුවීම් ආදිය ඇතුළු විකියෙහි සියළු පිටු.', |
| 1563 | +'statistics-pages-desc' => 'සාකච්ඡා පිටු, යළි-යොමුවීම් ආදිය ඇතුළු විකියෙහි සියළු පිටු.', |
1564 | 1564 | 'statistics-files' => 'උඩුගතකරන ලද ගොනු', |
1565 | 1565 | 'statistics-edits' => '{{SITENAME}} පිහිටුවීමෙන් අනතුරුව සිදුවූ පිටු සංස්කරණයන්', |
1566 | 1566 | 'statistics-edits-average' => 'එක් පිටුවකට සංස්කරණයන්හි මධ්යක අගය', |
— | — | @@ -1568,7 +1568,7 @@ |
1569 | 1569 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue කාර්යය පෝලිමෙහි] දිග', |
1570 | 1570 | 'statistics-users' => 'ලේඛනගත [[Special:ListUsers|පරිශීලකයෝ]]', |
1571 | 1571 | 'statistics-users-active' => 'ක්රියාශීලි පරිශීලකයන්', |
1572 | | -'statistics-users-active-tooltip' => 'පසුගිය මාසයෙහි කිසියම් ක්රියාවක් සිදු කල පරිශීලකයන්', |
| 1572 | +'statistics-users-active-desc' => 'පසුගිය මාසයෙහි කිසියම් ක්රියාවක් සිදු කල පරිශීලකයන්', |
1573 | 1573 | 'statistics-mostpopular' => 'බෙහෙවින් නරඹනු ලබන පිටු', |
1574 | 1574 | |
1575 | 1575 | 'disambiguations' => 'වක්රෝත්තිහරණ පිටු', |
Index: trunk/phase3/languages/messages/MessagesArz.php |
— | — | @@ -1696,7 +1696,7 @@ |
1697 | 1697 | 'statistics-header-users' => 'الاحصاءات بتاعة اليوزر', |
1698 | 1698 | 'statistics-articles' => 'صفحات المحتوى', |
1699 | 1699 | 'statistics-pages' => 'الصفحات', |
1700 | | -'statistics-pages-tooltip' => 'كل الصفحات فى الويكى، بما فى ذلك صفحات النقاش، التحويلات، إلى آخره.', |
| 1700 | +'statistics-pages-desc' => 'كل الصفحات فى الويكى، بما فى ذلك صفحات النقاش، التحويلات، إلى آخره.', |
1701 | 1701 | 'statistics-files' => 'الملفات المرفوعة', |
1702 | 1702 | 'statistics-edits' => 'تعديلات الصفحات منذ تنصيب {{SITENAME}}', |
1703 | 1703 | 'statistics-edits-average' => 'متوسط التعديلات لكل صفحة', |
— | — | @@ -1705,7 +1705,7 @@ |
1706 | 1706 | 'statistics-jobqueue' => 'طول [http://www.mediawiki.org/wiki/Manual:Job_queue طابور الشغل]', |
1707 | 1707 | 'statistics-users' => '[[Special:ListUsers|يوزرز]] مسجلين', |
1708 | 1708 | 'statistics-users-active' => 'يوزرز نشطين', |
1709 | | -'statistics-users-active-tooltip' => 'اليوزرز اللى قاموا بفعل فى الشهر الماضى', |
| 1709 | +'statistics-users-active-desc' => 'اليوزرز اللى قاموا بفعل فى الشهر الماضى', |
1710 | 1710 | 'statistics-mostpopular' => 'اكتر صفحات اتشافت', |
1711 | 1711 | |
1712 | 1712 | 'disambiguations' => 'صفحات التوضيح', |
Index: trunk/phase3/languages/messages/MessagesLb.php |
— | — | @@ -1466,7 +1466,7 @@ |
1467 | 1467 | 'statistics-header-users' => 'Benotzerstatistik', |
1468 | 1468 | 'statistics-articles' => 'Säite mat Inhalt', |
1469 | 1469 | 'statistics-pages' => 'Säiten', |
1470 | | -'statistics-pages-tooltip' => 'All Säiten an der Wiki, inklusiv Diskussiounssäiten, Viruleedungen, asw.', |
| 1470 | +'statistics-pages-desc' => 'All Säiten an der Wiki, inklusiv Diskussiounssäiten, Viruleedungen, asw.', |
1471 | 1471 | 'statistics-files' => 'Eropgeluede Fichieren', |
1472 | 1472 | 'statistics-edits' => 'Säitenännerungen zënter datt et {{SITENAME}} gëtt', |
1473 | 1473 | 'statistics-edits-average' => 'Duerchschnëttlech Zuel vun Ännerunge pro Säit', |
— | — | @@ -1475,7 +1475,7 @@ |
1476 | 1476 | 'statistics-jobqueue' => 'Längt vun der [http://www.mediawiki.org/wiki/Manual:Job_queue Job queue]', |
1477 | 1477 | 'statistics-users' => 'Registréiert [[Special:ListUsers|Benotzer]]', |
1478 | 1478 | 'statistics-users-active' => 'Aktiv Benotzer', |
1479 | | -'statistics-users-active-tooltip' => 'Benotzer déi während dem leschte Mount eppes gemaach hunn', |
| 1479 | +'statistics-users-active-desc' => 'Benotzer déi während dem leschte Mount eppes gemaach hunn', |
1480 | 1480 | 'statistics-mostpopular' => 'Am meeschte gekuckte Säiten', |
1481 | 1481 | |
1482 | 1482 | 'disambiguations' => 'Homonymie Säiten', |
Index: trunk/phase3/languages/messages/MessagesNah.php |
— | — | @@ -746,7 +746,7 @@ |
747 | 747 | 'statistics-header-views' => 'Tlahpololiztli tlapōhualli', |
748 | 748 | 'statistics-header-users' => 'Tlatequitiltilīlli ītlapōhualiz', |
749 | 749 | 'statistics-pages' => 'Zāzaniltin', |
750 | | -'statistics-pages-tooltip' => 'Mochīntīn zāzaniltin huiquipan, mopiyah tēixnāmiquiliztli, tlacuepaliztli, etz.', |
| 750 | +'statistics-pages-desc' => 'Mochīntīn zāzaniltin huiquipan, mopiyah tēixnāmiquiliztli, tlacuepaliztli, etz.', |
751 | 751 | 'statistics-files' => 'Tlahcuilōlli ōmoquetz', |
752 | 752 | |
753 | 753 | 'disambiguations' => 'Ōmetōcāitl zāzaniltin', |
Index: trunk/phase3/languages/messages/MessagesTh.php |
— | — | @@ -1379,14 +1379,14 @@ |
1380 | 1380 | 'statistics-header-users' => 'สถิติผู้ใช้', |
1381 | 1381 | 'statistics-articles' => 'จำนวนเนื้อหา', |
1382 | 1382 | 'statistics-pages' => 'หน้าทั้งหมด', |
1383 | | -'statistics-pages-tooltip' => 'หน้าทั้งหมดในเว็บไซต์นี้ รวมไปถึงหน้าต่าง ๆ เช่น หน้าสนทนา และหน้าเปลี่ยนทาง เป็นต้น', |
| 1383 | +'statistics-pages-desc' => 'หน้าทั้งหมดในเว็บไซต์นี้ รวมไปถึงหน้าต่าง ๆ เช่น หน้าสนทนา และหน้าเปลี่ยนทาง เป็นต้น', |
1384 | 1384 | 'statistics-files' => 'จำนวนไฟล์ที่ถูกอัปโหลด', |
1385 | 1385 | 'statistics-edits' => 'แก้ไขทั้งหมดตั้งแต่{{SITENAME}}ภาษาไทยถูกก่อตั้งขึ้นมา', |
1386 | 1386 | 'statistics-edits-average' => 'จำนวนแก้ไขต่อหน้าโดยเฉลี่ย', |
1387 | 1387 | 'statistics-views-total' => 'จำนวนการเข้าชมทั้งหมด', |
1388 | 1388 | 'statistics-users' => '[[Special:ListUsers|ผู้ใช้]]ที่สมัครสมาชิกแล้ว', |
1389 | 1389 | 'statistics-users-active' => 'ผู้ใช้ที่ยังแก้ไขอยู่', |
1390 | | -'statistics-users-active-tooltip' => 'ผู้ใช้ที่ได้แก้ไขในเดือนที่ผ่านมา', |
| 1390 | +'statistics-users-active-desc' => 'ผู้ใช้ที่ได้แก้ไขในเดือนที่ผ่านมา', |
1391 | 1391 | 'statistics-mostpopular' => 'หน้าที่มีการเข้าชมมากที่สุด', |
1392 | 1392 | |
1393 | 1393 | 'disambiguations' => 'หน้าแก้ความกำกวม', |
Index: trunk/phase3/languages/messages/MessagesVec.php |
— | — | @@ -1479,7 +1479,7 @@ |
1480 | 1480 | 'statistics-header-users' => 'Statistiche dei utenti', |
1481 | 1481 | 'statistics-articles' => 'Pàxene de contenuti', |
1482 | 1482 | 'statistics-pages' => 'Pàxene', |
1483 | | -'statistics-pages-tooltip' => 'Tute quante le pàxene de la wiki, conprese le pàxene de discussion, i rimandi, ecc.', |
| 1483 | +'statistics-pages-desc' => 'Tute quante le pàxene de la wiki, conprese le pàxene de discussion, i rimandi, ecc.', |
1484 | 1484 | 'statistics-files' => 'File cargà', |
1485 | 1485 | 'statistics-edits' => "Modifiche a scuminsiar da l'istalassion de {{SITENAME}}", |
1486 | 1486 | 'statistics-edits-average' => 'Canbiamenti in media par pàxena', |
— | — | @@ -1488,7 +1488,7 @@ |
1489 | 1489 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Cóa dei processi] da far girar in background', |
1490 | 1490 | 'statistics-users' => '[[Special:ListUsers|Utenti]] registrà', |
1491 | 1491 | 'statistics-users-active' => 'Utenti atìvi', |
1492 | | -'statistics-users-active-tooltip' => "Utenti che gà fato un'azion nel mese pasà", |
| 1492 | +'statistics-users-active-desc' => "Utenti che gà fato un'azion nel mese pasà", |
1493 | 1493 | 'statistics-mostpopular' => 'Pagine piassè visità', |
1494 | 1494 | |
1495 | 1495 | 'disambiguations' => 'Pàxene de disanbiguazion', |
Index: trunk/phase3/languages/messages/MessagesScn.php |
— | — | @@ -1452,7 +1452,7 @@ |
1453 | 1453 | 'statistics-header-users' => "Li statìstichi di l'utilizzatura", |
1454 | 1454 | 'statistics-articles' => 'Pàggini di cuntinutu', |
1455 | 1455 | 'statistics-pages' => 'Pàggini', |
1456 | | -'statistics-pages-tooltip' => 'Tutti li pàggini dâ wiki, cu puru chiddi di discussioni, li rinnirizzamenti, ecc.', |
| 1456 | +'statistics-pages-desc' => 'Tutti li pàggini dâ wiki, cu puru chiddi di discussioni, li rinnirizzamenti, ecc.', |
1457 | 1457 | 'statistics-files' => 'File carricati', |
1458 | 1458 | 'statistics-edits' => 'Canci a pàrtiri di la nstallazzioni di {{SITENAME}}', |
1459 | 1459 | 'statistics-edits-average' => 'Media dî canci pi pàggina', |
— | — | @@ -1461,7 +1461,7 @@ |
1462 | 1462 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Cuda dî prucessi] a esiquiri n background', |
1463 | 1463 | 'statistics-users' => '[[Special:ListUsers|Utilizzatura]] riggistrati', |
1464 | 1464 | 'statistics-users-active' => 'Utilizzatura attivi', |
1465 | | -'statistics-users-active-tooltip' => "Utilizzatura chi fìciru n'azzioni lu misi passatu", |
| 1465 | +'statistics-users-active-desc' => "Utilizzatura chi fìciru n'azzioni lu misi passatu", |
1466 | 1466 | 'statistics-mostpopular' => 'Pàggini cchiù visitati', |
1467 | 1467 | |
1468 | 1468 | 'disambiguations' => 'Pàggini cu liami ambìgui', |
Index: trunk/phase3/languages/messages/MessagesZh_classical.php |
— | — | @@ -1251,7 +1251,7 @@ |
1252 | 1252 | 'statistics-header-users' => '有簿彙統', |
1253 | 1253 | 'statistics-articles' => '容頁', |
1254 | 1254 | 'statistics-pages' => '頁', |
1255 | | -'statistics-pages-tooltip' => 'wiki上之全頁,含議、轉等', |
| 1255 | +'statistics-pages-desc' => 'wiki上之全頁,含議、轉等', |
1256 | 1256 | 'statistics-files' => '已貢', |
1257 | 1257 | 'statistics-edits' => '自{{SITENAME}}設之頁纂數', |
1258 | 1258 | 'statistics-edits-average' => '每頁均纂數', |
— | — | @@ -1260,7 +1260,7 @@ |
1261 | 1261 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue 隊]長', |
1262 | 1262 | 'statistics-users' => '註[[Special:ListUsers|簿]]', |
1263 | 1263 | 'statistics-users-active' => '活簿', |
1264 | | -'statistics-users-active-tooltip' => '上月更動之簿', |
| 1264 | +'statistics-users-active-desc' => '上月更動之簿', |
1265 | 1265 | 'statistics-mostpopular' => '燴炙', |
1266 | 1266 | |
1267 | 1267 | 'disambiguations' => '釋義', |
Index: trunk/phase3/languages/messages/MessagesEo.php |
— | — | @@ -1550,7 +1550,7 @@ |
1551 | 1551 | 'statistics-header-users' => 'Pri la uzantaro', |
1552 | 1552 | 'statistics-articles' => 'Enhavaj paĝoj', |
1553 | 1553 | 'statistics-pages' => 'Paĝoj', |
1554 | | -'statistics-pages-tooltip' => 'Ĉiuj paĝoj en la vikio, inkluzivante diskuto-paĝojn, alidirektilojn, ktp.', |
| 1554 | +'statistics-pages-desc' => 'Ĉiuj paĝoj en la vikio, inkluzivante diskuto-paĝojn, alidirektilojn, ktp.', |
1555 | 1555 | 'statistics-files' => 'Alŝutitaj dosieroj', |
1556 | 1556 | 'statistics-edits' => 'Paĝaj redaktoj ekde {{SITENAME}} estis starigita', |
1557 | 1557 | 'statistics-edits-average' => 'Averaĝaj redaktoj po paĝo', |
— | — | @@ -1559,7 +1559,7 @@ |
1560 | 1560 | 'statistics-jobqueue' => 'Longeco de [http://www.mediawiki.org/wiki/Manual:Job_queue vico de prokrastita reenkategoriado]', |
1561 | 1561 | 'statistics-users' => 'Registritaj [[Special:ListUsers|uzantoj]]', |
1562 | 1562 | 'statistics-users-active' => 'Aktivaj uzantoj', |
1563 | | -'statistics-users-active-tooltip' => 'Uzantoj kiuj faris agon en la lasta monato', |
| 1563 | +'statistics-users-active-desc' => 'Uzantoj kiuj faris agon en la lasta monato', |
1564 | 1564 | 'statistics-mostpopular' => 'Plej ofte montrataj paĝoj', |
1565 | 1565 | |
1566 | 1566 | 'disambiguations' => 'Misligitaj apartigiloj', |
Index: trunk/phase3/languages/messages/MessagesMdf.php |
— | — | @@ -1398,7 +1398,7 @@ |
1399 | 1399 | 'statistics-header-users' => 'Тиить статистиксь', |
1400 | 1400 | 'statistics-articles' => 'Потма мархта лопатне', |
1401 | 1401 | 'statistics-pages' => 'Лопатне', |
1402 | | -'statistics-pages-tooltip' => 'Сембе Викинь лопасна, корхнема лопатне, шафтфксне ди с.т.', |
| 1402 | +'statistics-pages-desc' => 'Сембе Викинь лопасна, корхнема лопатне, шафтфксне ди с.т.', |
1403 | 1403 | 'statistics-files' => 'Тонкф файлхне', |
1404 | 1404 | 'statistics-edits' => 'Лопань петнемасна {{SITENAME}}ть ушедомста', |
1405 | 1405 | 'statistics-edits-average' => 'Петнемат фкя лопас ётксталувксста', |
— | — | @@ -1407,7 +1407,7 @@ |
1408 | 1408 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Покаматнень пулонь] кувалмоц', |
1409 | 1409 | 'statistics-users' => 'Сёрматфтф [[Special:ListUsers|тиихне]]', |
1410 | 1410 | 'statistics-users-active' => 'Покай тиихне', |
1411 | | -'statistics-users-active-tooltip' => 'Тиихне конатне тя тефть тисть ётай ковста', |
| 1411 | +'statistics-users-active-desc' => 'Тиихне конатне тя тефть тисть ётай ковста', |
1412 | 1412 | 'statistics-mostpopular' => 'Сидеста сувсеви лопат', |
1413 | 1413 | |
1414 | 1414 | 'disambiguations' => 'Лама смузьса лопат', |
Index: trunk/phase3/languages/messages/MessagesEs.php |
— | — | @@ -1541,7 +1541,7 @@ |
1542 | 1542 | 'statistics-header-users' => 'Estadísticas de usuario', |
1543 | 1543 | 'statistics-articles' => 'Páginas de contenido', |
1544 | 1544 | 'statistics-pages' => 'Páginas', |
1545 | | -'statistics-pages-tooltip' => 'Todas las páginas de la wiki, incluyendo discusiones, redirecciones, etc.', |
| 1545 | +'statistics-pages-desc' => 'Todas las páginas de la wiki, incluyendo discusiones, redirecciones, etc.', |
1546 | 1546 | 'statistics-files' => 'Ficheros subidos', |
1547 | 1547 | 'statistics-edits' => 'Ediciones en páginas desde que {{SITENAME}} fue instalado', |
1548 | 1548 | 'statistics-edits-average' => 'Media de ediciones por página', |
— | — | @@ -1550,7 +1550,7 @@ |
1551 | 1551 | 'statistics-jobqueue' => 'Longitud de la [http://www.mediawiki.org/wiki/Manual:Job_queue cola de trabajo]', |
1552 | 1552 | 'statistics-users' => '[[Special:ListUsers|Usuarios]] registrados', |
1553 | 1553 | 'statistics-users-active' => 'Usuarios activos', |
1554 | | -'statistics-users-active-tooltip' => 'Usuarios que han ejecutado una acción en el último mes', |
| 1554 | +'statistics-users-active-desc' => 'Usuarios que han ejecutado una acción en el último mes', |
1555 | 1555 | 'statistics-mostpopular' => 'Páginas más vistas', |
1556 | 1556 | |
1557 | 1557 | 'disambiguations' => 'Páginas de desambiguación', |
Index: trunk/phase3/languages/messages/MessagesUk.php |
— | — | @@ -1617,7 +1617,7 @@ |
1618 | 1618 | 'statistics-header-users' => 'Статистика користувачів', |
1619 | 1619 | 'statistics-articles' => 'Статей', |
1620 | 1620 | 'statistics-pages' => 'Сторінок', |
1621 | | -'statistics-pages-tooltip' => 'Усі сторінки у вікі, включаючи сторінки обговорень, перенаправлення тощо.', |
| 1621 | +'statistics-pages-desc' => 'Усі сторінки у вікі, включаючи сторінки обговорень, перенаправлення тощо.', |
1622 | 1622 | 'statistics-files' => 'Завантажено файлів', |
1623 | 1623 | 'statistics-edits' => 'Кількість редагувань з моменту установки {{grammar:genitive|{{SITENAME}}}}', |
1624 | 1624 | 'statistics-edits-average' => 'Середня кількість редагувань на сторінку', |
— | — | @@ -1626,7 +1626,7 @@ |
1627 | 1627 | 'statistics-jobqueue' => 'Величина [http://www.mediawiki.org/wiki/Manual:Job_queue черги завдань]', |
1628 | 1628 | 'statistics-users' => 'Зареєстрованих [[Special:ListUsers|користувачів]]', |
1629 | 1629 | 'statistics-users-active' => 'Активні користувачі', |
1630 | | -'statistics-users-active-tooltip' => 'Користувачі, що зробили хоча б одну дію протягом минулого місяця', |
| 1630 | +'statistics-users-active-desc' => 'Користувачі, що зробили хоча б одну дію протягом минулого місяця', |
1631 | 1631 | 'statistics-mostpopular' => 'Сторінки, які найчастіше переглядають', |
1632 | 1632 | |
1633 | 1633 | 'disambiguations' => 'Багатозначні статті', |
Index: trunk/phase3/languages/messages/MessagesBg.php |
— | — | @@ -1554,7 +1554,7 @@ |
1555 | 1555 | 'statistics-header-users' => 'Потребители', |
1556 | 1556 | 'statistics-articles' => 'Съдържателни страници', |
1557 | 1557 | 'statistics-pages' => 'Страници', |
1558 | | -'statistics-pages-tooltip' => 'Всички страници в уикито, включително дискусионни, пренасочващи страници и т.н.', |
| 1558 | +'statistics-pages-desc' => 'Всички страници в уикито, включително дискусионни, пренасочващи страници и т.н.', |
1559 | 1559 | 'statistics-files' => 'Качени файлове', |
1560 | 1560 | 'statistics-edits' => 'Брой редакции по страници от началото на {{SITENAME}}', |
1561 | 1561 | 'statistics-edits-average' => 'Средно редакции на страница', |
— | — | @@ -1563,7 +1563,7 @@ |
1564 | 1564 | 'statistics-jobqueue' => 'Дължина на [http://www.mediawiki.org/wiki/Manual:Job_queue работната опашка]', |
1565 | 1565 | 'statistics-users' => 'Регистрирани [[Special:ListUsers|потребители]]', |
1566 | 1566 | 'statistics-users-active' => 'Активни потребители', |
1567 | | -'statistics-users-active-tooltip' => 'Потребители, направили редакция пред последния месец', |
| 1567 | +'statistics-users-active-desc' => 'Потребители, направили редакция пред последния месец', |
1568 | 1568 | 'statistics-mostpopular' => 'Най-преглеждани страници', |
1569 | 1569 | |
1570 | 1570 | 'disambiguations' => 'Пояснителни страници', |
Index: trunk/phase3/languages/messages/MessagesJa.php |
— | — | @@ -1496,7 +1496,7 @@ |
1497 | 1497 | 'statistics-header-users' => '登録利用者に関する統計', |
1498 | 1498 | 'statistics-articles' => '記事数', |
1499 | 1499 | 'statistics-pages' => '総項目数', |
1500 | | -'statistics-pages-tooltip' => 'ノートページやリダイレクトを含んだこのWiki内全てのページです。', |
| 1500 | +'statistics-pages-desc' => 'ノートページやリダイレクトを含んだこのWiki内全てのページです。', |
1501 | 1501 | 'statistics-files' => 'アップロードされたファイル数', |
1502 | 1502 | 'statistics-edits' => '編集回数の総計', |
1503 | 1503 | 'statistics-edits-average' => '1項目あたりの編集回数', |
— | — | @@ -1505,7 +1505,7 @@ |
1506 | 1506 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue ジョブ・キュー]の長さ', |
1507 | 1507 | 'statistics-users' => '[[Special:ListUsers|登録利用者]]', |
1508 | 1508 | 'statistics-users-active' => '活動中の利用者', |
1509 | | -'statistics-users-active-tooltip' => '過去1ヶ月に編集など何らかの操作を行った利用者', |
| 1509 | +'statistics-users-active-desc' => '過去1ヶ月に編集など何らかの操作を行った利用者', |
1510 | 1510 | 'statistics-mostpopular' => '最も閲覧されているページ', |
1511 | 1511 | |
1512 | 1512 | 'disambiguations' => '曖昧さ回避ページ', |
Index: trunk/phase3/languages/messages/MessagesBs.php |
— | — | @@ -1603,7 +1603,7 @@ |
1604 | 1604 | 'statistics-header-users' => 'Statistike korisnika', |
1605 | 1605 | 'statistics-articles' => 'Stranice sadržaja', |
1606 | 1606 | 'statistics-pages' => 'Stranice', |
1607 | | -'statistics-pages-tooltip' => 'Sve stranice na wikiju, uključujući stranice za razgovor, preusmjerenja itd.', |
| 1607 | +'statistics-pages-desc' => 'Sve stranice na wikiju, uključujući stranice za razgovor, preusmjerenja itd.', |
1608 | 1608 | 'statistics-files' => 'Broj postavljenih datoteka', |
1609 | 1609 | 'statistics-edits' => 'Broj izmjena od kako je instalirana {{SITENAME}}', |
1610 | 1610 | 'statistics-edits-average' => 'Prosječno izmjena po stranici', |
— | — | @@ -1612,7 +1612,7 @@ |
1613 | 1613 | 'statistics-jobqueue' => 'Dužina [http://www.mediawiki.org/wiki/Manual:Job_queue akcija na čekanju]', |
1614 | 1614 | 'statistics-users' => 'Registrovani [[Special:ListUsers|korisnici]]', |
1615 | 1615 | 'statistics-users-active' => 'Aktivni korisnici', |
1616 | | -'statistics-users-active-tooltip' => 'Korisnici koju su izvršili akciju u toku prošlog mjeseca', |
| 1616 | +'statistics-users-active-desc' => 'Korisnici koju su izvršili akciju u toku prošlog mjeseca', |
1617 | 1617 | 'statistics-mostpopular' => 'Najviše pregledane stranice', |
1618 | 1618 | |
1619 | 1619 | 'disambiguations' => 'Stranice za višeznačne odrednice', |
Index: trunk/phase3/languages/messages/MessagesFr.php |
— | — | @@ -1593,7 +1593,7 @@ |
1594 | 1594 | 'statistics-header-users' => 'Statistiques utilisateur', |
1595 | 1595 | 'statistics-articles' => 'Pages de contenu', |
1596 | 1596 | 'statistics-pages' => 'Pages', |
1597 | | -'statistics-pages-tooltip' => 'Toutes les pages du wiki, y compris les pages de discussion, les redirections, ...', |
| 1597 | +'statistics-pages-desc' => 'Toutes les pages du wiki, y compris les pages de discussion, les redirections, ...', |
1598 | 1598 | 'statistics-files' => 'Fichiers importés', |
1599 | 1599 | 'statistics-edits' => 'Modification de pages depuis que {{SITENAME}} a été installé', |
1600 | 1600 | 'statistics-edits-average' => 'Modifications moyennes par page', |
— | — | @@ -1602,7 +1602,7 @@ |
1603 | 1603 | 'statistics-jobqueue' => 'Longueur de la [http://www.mediawiki.org/wiki/Manual:Job_queue liste d’attente de traitement]', |
1604 | 1604 | 'statistics-users' => '[[Special:ListUsers|Utilisateurs]] enregistrés', |
1605 | 1605 | 'statistics-users-active' => 'Utilisateurs actifs', |
1606 | | -'statistics-users-active-tooltip' => "Nombre d'utilisateurs ayant fait au moins une action durant le dernier mois", |
| 1606 | +'statistics-users-active-desc' => "Nombre d'utilisateurs ayant fait au moins une action durant le dernier mois", |
1607 | 1607 | 'statistics-mostpopular' => 'Pages les plus consultées', |
1608 | 1608 | |
1609 | 1609 | 'disambiguations' => 'Pages d’homonymie', |
Index: trunk/phase3/languages/messages/MessagesStq.php |
— | — | @@ -1356,7 +1356,7 @@ |
1357 | 1357 | 'statistics-header-users' => 'Benutserstatistik', |
1358 | 1358 | 'statistics-articles' => 'Inhooldssieden', |
1359 | 1359 | 'statistics-pages' => 'Sieden', |
1360 | | -'statistics-pages-tooltip' => 'Aal Sieden in dissen Wiki, iensluutend Diskussionssieden, Fäärelaitengen usw.', |
| 1360 | +'statistics-pages-desc' => 'Aal Sieden in dissen Wiki, iensluutend Diskussionssieden, Fäärelaitengen usw.', |
1361 | 1361 | 'statistics-files' => 'Hoochleedene Doatäie', |
1362 | 1362 | 'statistics-edits' => 'Siedenbeoarbaidengen siet {{SITENAME}} waas ounfangd', |
1363 | 1363 | 'statistics-edits-average' => 'Beoarbaidengen pro Siede in n Truchsleek', |
— | — | @@ -1365,7 +1365,7 @@ |
1366 | 1366 | 'statistics-jobqueue' => 'Laangte fon ju [http://www.mediawiki.org/wiki/Manual:Job_queue Jobqueue]', |
1367 | 1367 | 'statistics-users' => 'Registrierde [[Special:ListUsers|Benutsere]]', |
1368 | 1368 | 'statistics-users-active' => 'Aktive Benutsere', |
1369 | | -'statistics-users-active-tooltip' => 'Benutsere mäd Beoarbaidengen in do fergeene 30 Deege', |
| 1369 | +'statistics-users-active-desc' => 'Benutsere mäd Beoarbaidengen in do fergeene 30 Deege', |
1370 | 1370 | 'statistics-mostpopular' => 'Maast besoachte Sieden', |
1371 | 1371 | |
1372 | 1372 | 'disambiguations' => 'Begriepskläärengssieden', |
Index: trunk/phase3/languages/messages/MessagesNl.php |
— | — | @@ -1750,7 +1750,7 @@ |
1751 | 1751 | 'statistics-header-users' => 'Gebruikerstatistieken', |
1752 | 1752 | 'statistics-articles' => "Inhoudelijke pagina's", |
1753 | 1753 | 'statistics-pages' => "Pagina's", |
1754 | | -'statistics-pages-tooltip' => "Alle pagina's in de wiki, inclusief overlegpagina's, doorverwijzingen, enzovoort.", |
| 1754 | +'statistics-pages-desc' => "Alle pagina's in de wiki, inclusief overlegpagina's, doorverwijzingen, enzovoort.", |
1755 | 1755 | 'statistics-files' => 'Bestanden', |
1756 | 1756 | 'statistics-edits' => 'Paginabewerkingen sinds het begin van {{SITENAME}}', |
1757 | 1757 | 'statistics-edits-average' => 'Gemiddeld aantal bewerkingen per pagina', |
— | — | @@ -1759,7 +1759,7 @@ |
1760 | 1760 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Jobqueuelengte]', |
1761 | 1761 | 'statistics-users' => 'Geregistreerde [[Special:ListUsers|gebruikers]]', |
1762 | 1762 | 'statistics-users-active' => 'Actieve gebruikers', |
1763 | | -'statistics-users-active-tooltip' => 'Gebruikers die in de afgelopen maand een handeling hebben uitgevoerd', |
| 1763 | +'statistics-users-active-desc' => 'Gebruikers die in de afgelopen maand een handeling hebben uitgevoerd', |
1764 | 1764 | 'statistics-mostpopular' => "Meest bekeken pagina's", |
1765 | 1765 | |
1766 | 1766 | 'disambiguations' => "Doorverwijspagina's", |
Index: trunk/phase3/languages/messages/MessagesRo.php |
— | — | @@ -1497,7 +1497,7 @@ |
1498 | 1498 | 'statistics-header-users' => 'Statistici legate de utilizatori', |
1499 | 1499 | 'statistics-articles' => 'Articole', |
1500 | 1500 | 'statistics-pages' => 'Pagini', |
1501 | | -'statistics-pages-tooltip' => 'Toate paginile din wiki, inclusiv pagini de discuţie, redirectări etc.', |
| 1501 | +'statistics-pages-desc' => 'Toate paginile din wiki, inclusiv pagini de discuţie, redirectări etc.', |
1502 | 1502 | 'statistics-files' => 'Fişiere încărcate', |
1503 | 1503 | 'statistics-edits' => 'Editări de la instalarea {{SITENAME}}', |
1504 | 1504 | 'statistics-edits-average' => 'Media editărilor pe pagină', |
— | — | @@ -1505,7 +1505,7 @@ |
1506 | 1506 | 'statistics-views-peredit' => 'Vizualizări pe editare', |
1507 | 1507 | 'statistics-users' => '[[Special:ListUsers|Utilizatori]] înregistraţi', |
1508 | 1508 | 'statistics-users-active' => 'Utilizatori activi', |
1509 | | -'statistics-users-active-tooltip' => 'Utilizatori care au efectuat o acţiune în ultima lună', |
| 1509 | +'statistics-users-active-desc' => 'Utilizatori care au efectuat o acţiune în ultima lună', |
1510 | 1510 | 'statistics-mostpopular' => 'Paginile cele mai vizualizate', |
1511 | 1511 | |
1512 | 1512 | 'disambiguations' => 'Pagini de dezambiguizare', |
Index: trunk/phase3/languages/messages/MessagesOc.php |
— | — | @@ -1594,7 +1594,7 @@ |
1595 | 1595 | 'statistics-header-users' => "Estatisticas d'utilizaire", |
1596 | 1596 | 'statistics-articles' => 'Paginas de contengut', |
1597 | 1597 | 'statistics-pages' => 'Paginas', |
1598 | | -'statistics-pages-tooltip' => 'Totas las paginas del wiki, enclusas las paginas de discussion, las redireccions, ...', |
| 1598 | +'statistics-pages-desc' => 'Totas las paginas del wiki, enclusas las paginas de discussion, las redireccions, ...', |
1599 | 1599 | 'statistics-files' => 'Fichièrs importats', |
1600 | 1600 | 'statistics-edits' => 'Modificacions de paginas dempuèi que {{SITENAME}} foguèt installat', |
1601 | 1601 | 'statistics-edits-average' => 'Modificacions mejanas per pagina', |
— | — | @@ -1603,7 +1603,7 @@ |
1604 | 1604 | 'statistics-jobqueue' => 'Longor de la [http://www.mediawiki.org/wiki/Manual:Job_queue lista d’espèra de tractament]', |
1605 | 1605 | 'statistics-users' => '[[Special:ListUsers|Utilizaires]] enregistrats', |
1606 | 1606 | 'statistics-users-active' => 'Utilizaires actius', |
1607 | | -'statistics-users-active-tooltip' => "Nombre d'utilizaires qu'an fach al mens una accion durant lo darrièr mes", |
| 1607 | +'statistics-users-active-desc' => "Nombre d'utilizaires qu'an fach al mens una accion durant lo darrièr mes", |
1608 | 1608 | 'statistics-mostpopular' => 'Paginas mai consultadas', |
1609 | 1609 | |
1610 | 1610 | 'disambiguations' => "Paginas d'omonimia", |
Index: trunk/phase3/languages/messages/MessagesDe.php |
— | — | @@ -1696,7 +1696,7 @@ |
1697 | 1697 | 'statistics-header-users' => 'Benutzerstatistik', |
1698 | 1698 | 'statistics-articles' => 'Inhaltsseiten', |
1699 | 1699 | 'statistics-pages' => 'Seiten', |
1700 | | -'statistics-pages-tooltip' => 'Alle Seiten in diesem Wiki, inklusive Diskussionsseiten, Weiterleitungen usw.', |
| 1700 | +'statistics-pages-desc' => 'Alle Seiten in diesem Wiki, inklusive Diskussionsseiten, Weiterleitungen usw.', |
1701 | 1701 | 'statistics-files' => 'Hochgeladene Dateien', |
1702 | 1702 | 'statistics-edits' => 'Seitenbearbeitungen', |
1703 | 1703 | 'statistics-edits-average' => 'Bearbeitungen pro Seite im Durchschnitt', |
— | — | @@ -1705,7 +1705,7 @@ |
1706 | 1706 | 'statistics-jobqueue' => 'Länge der [http://www.mediawiki.org/wiki/Manual:Job_queue Job queue]', |
1707 | 1707 | 'statistics-users' => 'Registrierte [[Special:ListUsers|Benutzer]]', |
1708 | 1708 | 'statistics-users-active' => 'Aktive Benutzer', |
1709 | | -'statistics-users-active-tooltip' => 'Benutzer mit Bearbeitungen in den vergangenen 30 Tagen', |
| 1709 | +'statistics-users-active-desc' => 'Benutzer mit Bearbeitungen in den vergangenen 30 Tagen', |
1710 | 1710 | 'statistics-mostpopular' => 'Meistbesuchte Seiten', |
1711 | 1711 | |
1712 | 1712 | 'disambiguations' => 'Begriffsklärungsseiten', |
Index: trunk/phase3/languages/messages/MessagesSv.php |
— | — | @@ -1651,7 +1651,7 @@ |
1652 | 1652 | 'statistics-header-users' => 'Användarstatistik', |
1653 | 1653 | 'statistics-articles' => 'Sidor med innehåll', |
1654 | 1654 | 'statistics-pages' => 'Sidor', |
1655 | | -'statistics-pages-tooltip' => 'Alla sidor i wikin, inklusive diskussionssidor, omdirigeringar, m.m.', |
| 1655 | +'statistics-pages-desc' => 'Alla sidor i wikin, inklusive diskussionssidor, omdirigeringar, m.m.', |
1656 | 1656 | 'statistics-files' => 'Uppladdade filer', |
1657 | 1657 | 'statistics-edits' => 'Sidredigeringar sedan {{SITENAME}} startades', |
1658 | 1658 | 'statistics-edits-average' => 'Redigeringar per sida i genomsnitt', |
— | — | @@ -1660,7 +1660,7 @@ |
1661 | 1661 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Jobbköns] längd', |
1662 | 1662 | 'statistics-users' => 'Registrerade [[Special:ListUsers|användare]]', |
1663 | 1663 | 'statistics-users-active' => 'Aktiva användare', |
1664 | | -'statistics-users-active-tooltip' => 'Användare som utfört någon åtgärd under den senaste månaden', |
| 1664 | +'statistics-users-active-desc' => 'Användare som utfört någon åtgärd under den senaste månaden', |
1665 | 1665 | 'statistics-mostpopular' => 'Mest besökta sidor', |
1666 | 1666 | |
1667 | 1667 | 'disambiguations' => 'Sidor som länkar till förgreningssidor', |
Index: trunk/phase3/languages/messages/MessagesTe.php |
— | — | @@ -1346,7 +1346,7 @@ |
1347 | 1347 | 'statistics-header-users' => 'సభ్యుల గణాంకాలు', |
1348 | 1348 | 'statistics-articles' => 'విషయపు పేజీలు', |
1349 | 1349 | 'statistics-pages' => 'పేజీలు', |
1350 | | -'statistics-pages-tooltip' => 'ఈ వికీలోని అన్ని పేజీలు (చర్చా పేజీలు, దారిమార్పులు, మొదలైనవన్నీ కలుపుకొని).', |
| 1350 | +'statistics-pages-desc' => 'ఈ వికీలోని అన్ని పేజీలు (చర్చా పేజీలు, దారిమార్పులు, మొదలైనవన్నీ కలుపుకొని).', |
1351 | 1351 | 'statistics-files' => 'ఎగుమతైన ఫైళ్ళు', |
1352 | 1352 | 'statistics-edits' => '{{SITENAME}}ని మొదలుపెట్టినప్పటినుండి జరిగిన మార్పులు', |
1353 | 1353 | 'statistics-edits-average' => 'పేజీకి సగటు మార్పులు', |
— | — | @@ -1355,7 +1355,7 @@ |
1356 | 1356 | 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue పనుల వరుస] పొడవు', |
1357 | 1357 | 'statistics-users' => 'నమోదైన [[Special:ListUsers|వాడుకర్లు]]', |
1358 | 1358 | 'statistics-users-active' => 'క్రియాశీల వాడుకర్లు', |
1359 | | -'statistics-users-active-tooltip' => 'గత నెలలో ఒక్క మార్పైనా చేసిన వాడుకరులు', |
| 1359 | +'statistics-users-active-desc' => 'గత నెలలో ఒక్క మార్పైనా చేసిన వాడుకరులు', |
1360 | 1360 | 'statistics-mostpopular' => 'ఎక్కువగా చూసిన పేజీలు', |
1361 | 1361 | |
1362 | 1362 | 'disambiguations' => 'అయోమయ నివృత్తి పేజీలు', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -397,6 +397,8 @@ |
398 | 398 | title via the API |
399 | 399 | * (bug 4253, bug 16586) Revision ID is now given instead of title in URLs for |
400 | 400 | new pages in the recent changes IRC feed |
| 401 | +* Ugly tooltips in Special:Statistics were phased out in favor of more direct |
| 402 | + information. Went ahead and rewrote SpecialStatistics to subclass SpecialPage |
401 | 403 | |
402 | 404 | === API changes in 1.14 === |
403 | 405 | |