Index: branches/wmf-deployment/extensions/TitleKey/TitleKey.php |
— | — | @@ -43,9 +43,18 @@ |
44 | 44 | $wgHooks['LoadExtensionSchemaUpdates'][] = 'TitleKey::schemaUpdates'; |
45 | 45 | |
46 | 46 | // Search hooks... |
47 | | -$wgHooks['PrefixSearchBackend'][] = 'TitleKey::prefixSearchBackend'; |
48 | | -$wgHooks['SearchGetNearMatch' ][] = 'TitleKey::searchGetNearMatch'; |
| 47 | +// Delay setup to avoid compatibility problems with hook ordering |
| 48 | +// when coexisting with MWSearch... we want MWSearch to be able to |
| 49 | +// take over the PrefixSearchBackend hook without disabling the |
| 50 | +// SearchGetNearMatch hook point. |
| 51 | +$wgExtensionFunctions[] = 'efTitleKeySetup'; |
49 | 52 | |
| 53 | +function efTitleKeySetup() { |
| 54 | + global $wgHooks; |
| 55 | + $wgHooks['PrefixSearchBackend'][] = 'TitleKey::prefixSearchBackend'; |
| 56 | + $wgHooks['SearchGetNearMatch' ][] = 'TitleKey::searchGetNearMatch'; |
| 57 | +} |
| 58 | + |
50 | 59 | $dir = dirname(__FILE__) . '/'; |
51 | 60 | $wgExtensionMessagesFiles['TitleKey'] = $dir . 'TitleKey.i18n.php'; |
52 | 61 | $wgAutoloadClasses['TitleKey'] = $dir . 'TitleKey_body.php'; |
Index: branches/wmf-deployment/extensions/TitleKey/TitleKey.i18n.php |
— | — | @@ -171,6 +171,13 @@ |
172 | 172 | 'titlekey-desc' => 'शीर्षक उपपद खोज सजेशन बॅकएन्ड', |
173 | 173 | ); |
174 | 174 | |
| 175 | +/** Hiligaynon (Ilonggo) |
| 176 | + * @author Tagimata |
| 177 | + */ |
| 178 | +$messages['hil'] = array( |
| 179 | + 'titlekey-desc' => 'Titulo prefiks pangitaon sugestiyon bakend', |
| 180 | +); |
| 181 | + |
175 | 182 | /** Croatian (Hrvatski) |
176 | 183 | * @author Dalibor Bosits |
177 | 184 | */ |
— | — | @@ -229,6 +236,13 @@ |
230 | 237 | 'titlekey-desc' => 'Backend prosès panggolèkan irah-irahan préfiks', |
231 | 238 | ); |
232 | 239 | |
| 240 | +/** Georgian (ქართული) |
| 241 | + * @author გიორგიმელა |
| 242 | + */ |
| 243 | +$messages['ka'] = array( |
| 244 | + 'titlekey-desc' => 'საძიება დახმარებათა ძრავა სიტყვების პირველი ასოების გამოყენებით', |
| 245 | +); |
| 246 | + |
233 | 247 | /** Korean (한국어) |
234 | 248 | * @author Kwj2772 |
235 | 249 | */ |
— | — | @@ -257,6 +271,13 @@ |
258 | 272 | 'titlekey-desc' => 'Backend veur zeuksuggesties veur paginanaamveurvoegsels', |
259 | 273 | ); |
260 | 274 | |
| 275 | +/** Lithuanian (Lietuvių) |
| 276 | + * @author Matasg |
| 277 | + */ |
| 278 | +$messages['lt'] = array( |
| 279 | + 'titlekey-desc' => 'Pavadinimo prefikso paieška pasiūlymo sugrąžinimui', |
| 280 | +); |
| 281 | + |
261 | 282 | /** Marathi (मराठी) |
262 | 283 | * @author Kaustubh |
263 | 284 | */ |
— | — | @@ -376,6 +397,13 @@ |
377 | 398 | 'titlekey-desc' => 'Bakstycke för sökning efter titelprefix', |
378 | 399 | ); |
379 | 400 | |
| 401 | +/** Telugu (తెలుగు) |
| 402 | + * @author Kiranmayee |
| 403 | + */ |
| 404 | +$messages['te'] = array( |
| 405 | + 'titlekey-desc' => 'శీర్షిక ప్రీఫిక్స్ వెతుకు సలహా బ్యాక్ఎండ్', |
| 406 | +); |
| 407 | + |
380 | 408 | /** Tagalog (Tagalog) |
381 | 409 | * @author AnakngAraw |
382 | 410 | */ |
Property changes on: branches/wmf-deployment/extensions/TitleKey |
___________________________________________________________________ |
Name: svn:mergeinfo |
383 | 411 | + /branches/REL1_15/phase3/extensions/TitleKey:51646 |
/trunk/extensions/TitleKey:52089-54533 |
/trunk/phase3/TitleKey:52859,53272 |
/trunk/phase3/extensions/TitleKey:52290,52402,52404,52718,52737,52759,52776,52791,52800,52808,52812-52813,52815-52819,52822,52846,52850,52852-52853,52855-52857,52859,52924,52986,53128-53129,53190,53197,53199,53203-53204,53210-53211,53247,53249,53252,53267,53369,53502-53504,53506,54384,54494 |