Commit message was: "* (bug 18958) Added ability to disable entire variant conversion engine per user preferences (languages with language converter class only)" Reverted because of multiple issues on CodeReview, notably: * Unexplained rename of a configuration variable, with no backwards-compatibility code. * Suspected parser cache pollution. * Variant tabs flip-flop with parser cache misses and hits. * Hacky implementation: changing configuration variables on the fly is almost always a bad idea, unless you are writing a configuration extension. * Implementation of default is done as a special case in code accessing the preference, rather than by adding an entry to $wgDefaultUserOptions.
30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<?php
|
||
/** Serbian (Српски / Srpski)
|
||
*
|
||
* See MessagesQqq.php for message documentation incl. usage of parameters
|
||
* To improve a translation please visit http://translatewiki.net
|
||
*
|
||
* @ingroup Language
|
||
* @file
|
||
*
|
||
* @author Misos
|
||
* @author Terik
|
||
*/
|
||
|
||
$fallback = 'sr-ec';
|
||
$linkTrail = '/^([abvgdđežzijklljmnnjoprstćufhcčdžšабвгдђежзијклљмнњопрстћуфхцчџш]+)(.*)$/usD';
|
||
|
||
$messages = array(
|
||
# Special:LinkSearch
|
||
'linksearch' => 'Претрага интернет веза',
|
||
'linksearch-text' => 'Џокери као што су "*.wikipedia.org" могу да се користе.
|
||
Подржани протоколи: <tt>$1</tt>',
|
||
'linksearch-line' => '$1 повезана са $2',
|
||
'linksearch-error' => 'Џокери могу да се појављују само на почетку домена.',
|
||
|
||
# Special:Log/newusers
|
||
'newuserlogpage' => 'историја креирања корисника',
|
||
'newuserlogpagetext' => 'Ово је историја скорашњих креација корисника.',
|
||
'newuserlog-create2-entry' => 'направио налог за $1',
|
||
|
||
);
|