Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -26,6 +26,7 @@ |
27 | 27 | /** Will be same as you set @see $wgSitename */ |
28 | 28 | $wgMetaNamespace = FALSE; |
29 | 29 | |
| 30 | + |
30 | 31 | /** URL of the server. It will be automaticly build including https mode */ |
31 | 32 | $wgServer = ''; |
32 | 33 | |
— | — | @@ -536,6 +537,15 @@ |
537 | 538 | $wgZhdaemonHost="localhost"; |
538 | 539 | $wgZhdaemonPort=2004; |
539 | 540 | |
| 541 | +/** Normally you can ignore this and it will be something |
| 542 | + like $wgMetaNamespace . "_talk". In some languages, you |
| 543 | + may want to set this manually for grammatical reasons. |
| 544 | + It is currently only respected by those languages |
| 545 | + where it might be relevant and where no automatic |
| 546 | + grammar converter exists. |
| 547 | +*/ |
| 548 | +$wgMetaNamespaceTalk = false; |
| 549 | + |
540 | 550 | # Miscellaneous configuration settings |
541 | 551 | # |
542 | 552 | |
Index: trunk/phase3/languages/LanguageSr.php |
— | — | @@ -21,7 +21,7 @@ |
22 | 22 | 2 => "Корисник", |
23 | 23 | 3 => "Разговор_са_корисником", |
24 | 24 | 4 => $wgMetaNamespace, |
25 | | - 5 => "Разговор_о_".$wgMetaNamespace, |
| 25 | + 5 => ($wgMetaNamespaceTalk ? $wgMetaNamespaceTalk : "Разговор_о_".$wgMetaNamespace ), |
26 | 26 | 6 => "Слика", |
27 | 27 | 7 => "Разговор_о_слици", |
28 | 28 | 8 => "МедијаВики", |