Vít Zvánovec wrote:
Dear colleagues,
== LanguageCs.php ==
- Could anybody change these variables in the living copy of
LanguageCs.php?
# There are no month abbreviations in Czech language. /* private */ $wgMonthAbbreviationsCs = array("1.", "2.", "3.", "4.", "5.", "6.", "7.", "8.", "9.", "10.", "11.", "12.");
# Czech ISBN servers /* private */ $wgBookstoreListCs = array( "Národní knihovna" => "http://sigma.nkp.cz/F/?func=find- a&find_code=WRD&request=&request_op=AND&find_code=WAU&request=&request _op=AND&find_code=WTL&request=&request_op=AND&find_code=WYR& request=&request_op=AND&find_code=WPB&request=&request_op=AND&find_cod e=ISN&request=$1");
Hello Vit,
The english language use the first three characters of the month for abbreviations: /* private */ $wgMonthAbbreviationsEn = array( 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec' );
Can you confirm Czech language really use numbers for that purpose ?
The bookstore is now in cvs and will reach wikipedia live site soon.
- How to force caching of special pages in :cs? There is currently
no cached page at all.
Caching page, also known as misermode is managed in the server configuration. The normal (default) behaviour is to have special pages generated upon request, the cache is enabled when the wiki servers are under high load.
- The upload log file is missing.
The LanguageCs.php file in cvs use the following entries: "uploadlog" => "kniha nahrávek ", "uploadlogpage" => "kniha_nahrávek ",
I removed the ending spaces, that should fix it once the new file updated on the new site.
- To translate namespace Category into Kategorie. But there is
a lot of category pages in cs:, therefore they should be automatically changed from [[Category:]] into [[Kategorie:]].
The software should be able to understand both english and localised namespaces names. While we are fixing it, can you please provide translations for the following entries ?
NS_TEMPLATE => "Template", NS_TEMPLATE_TALK => "Template_talk", NS_HELP => "Help", NS_HELP_TALK => "Help_talk", NS_CATEGORY => "Category", NS_CATEGORY_TALK => "Category_talk",
- Wikipedie:Co je článek can't be deleted.
- Would it be useful to transfer All system messages in MediaWiki of
LanguageCs.php into the living copy of LanguageCs.php? Approximately half of all messages is in MediaWiki which may slow down perfomance.
System messages are set in the databases at installation and then cached in a big object. On page request the MediaWiki software just load that big object, if a change is made to a Mediawiki:something page, the database is updated and the big object is rebuild.
I heard about a script to sync wikipedia.mediawiki entries and the languageXX.php files. I am not sure if anything have been done yet.
== Rendering of layout (presumable Standard) ==
- There is too much space between end of an external link and non-
space characters. For instance: [http://aa.bb.cc First]. is shown as "First .", not as "First.". 2. All system messages (HTML) should have only 2 columns, because there is no difference between Default text and Current text.
Default text is the text set in LanguageCs.php while current text is the one set in the big object cache (see above) and seen by users.
- List of users (special pages) should distinguish between users
with their own pages (blue links) and without them (red links).
For 1/ and 3/ please create an account on sourceforge and fill bug reports at http://sourceforge.net/tracker/?group_id=34373&atid=411192 They will be looked at as time allow (aka I am not going to fix them right now).