Index: trunk/wap/settings.php |
— | — | @@ -31,7 +31,6 @@ |
32 | 32 | $emptyLine = new HAW_text(""); |
33 | 33 | $wp_image = new HAW_image(HAWIKI_WIKIPEDIA_ICON . ".wbmp", |
34 | 34 | HAWIKI_WIKIPEDIA_ICON . ".gif", ""); |
35 | | -#$wp_image->set_voice_text(""); |
36 | 35 | $deck->add_image($wp_image); |
37 | 36 | |
38 | 37 | $deck->add_text($emptyLine); |
— | — | @@ -56,13 +55,17 @@ |
57 | 56 | global $supportedLanguages; |
58 | 57 | |
59 | 58 | $lang_code = Array( |
60 | | - "bar" => "bavarian", |
61 | | - "de" => "german", |
62 | | - "en" => "english", |
63 | | - "es" => "spanish", |
64 | | - "fr" => "french", |
65 | | - 'nds' => 'low german', |
66 | | - 'ksh' => 'ripuarian' |
| 59 | + "bar" => "Boarisch", |
| 60 | + "cs" => "Česky", |
| 61 | + "de" => "Deutsch", |
| 62 | + "en" => "English", |
| 63 | + "es" => "Español", |
| 64 | + "fr" => "Français", |
| 65 | + "hu" => "Magyar", |
| 66 | + "ksh" => "Ripoarisch", |
| 67 | + "nds" => "Plattdüütsch", |
| 68 | + "pt" => "Português", |
| 69 | + "sr" => "Српски / Srpski", |
67 | 70 | ); |
68 | 71 | |
69 | 72 | $subtitle = new HAW_text(hawtra("Language"), HAW_TEXTFORMAT_BOLD); |
— | — | @@ -80,7 +83,7 @@ |
81 | 84 | else |
82 | 85 | $selected = HAW_NOTSELECTED; |
83 | 86 | |
84 | | - $selection->add_option(hawtra($lang_code[$key]), $key, $selected); |
| 87 | + $selection->add_option($lang_code[$key], $key, $selected); |
85 | 88 | } |
86 | 89 | } |
87 | 90 | |
Index: trunk/wap/config.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | * $Date: 2007/04/14 20:38:30 $ |
6 | 6 | */ |
7 | 7 | |
8 | | -define("HAWPEDIA_VERSION", "1.0"); |
| 8 | +define("HAWPEDIA_VERSION", "1.2B"); |
9 | 9 | |
10 | 10 | define("HAWIKI_TITLE", "Wikipedia"); // browser window title |
11 | 11 | define("DEFAULT_LANGUAGE", "es"); |
— | — | @@ -27,12 +27,16 @@ |
28 | 28 | |
29 | 29 | $supportedLanguages = Array( |
30 | 30 | "bar" => 1, |
| 31 | +"cs" => 1, |
31 | 32 | "de" => 1, |
32 | 33 | "en" => 1, |
33 | 34 | "es" => 1, |
34 | 35 | "fr" => 0, |
| 36 | +"hu" => 1, |
| 37 | +"ksh" => 1, |
35 | 38 | "nds" => 1, |
36 | | -"ksh" => 1, |
| 39 | +"pt" => 1, |
| 40 | +"sr" => 1, |
37 | 41 | "zxx" => 0); |
38 | 42 | |
39 | 43 | ?> |
Index: trunk/wap/hawiki/hawiki_parser_hawpedia.inc |
— | — | @@ -89,8 +89,10 @@ |
90 | 90 | return($po); |
91 | 91 | } |
92 | 92 | |
93 | | - if (preg_match("/^\[\[([^\[\]]+)\]\]/", $input, $matches)) |
94 | | - #if (preg_match("/^\[\[(([^\[\]]+)|(\[[^\[\]]*\])*|(\[\[[^\[\]]*\]\])*)+\]\]/", $input, $matches)) |
| 93 | + #if (preg_match("/^\[\[([^\[\]]+)\]\]/", $input, $matches)) |
| 94 | + // this breaks the parser and creates "invalid wiki syntax" errors! |
| 95 | + // reactivated old HawPedia regex: |
| 96 | + if (preg_match("/^\[\[(([^\[\]]+)|(\[[^\[\]]*\])*|(\[\[[^\[\]]*\]\])*)+\]\]/", $input, $matches)) |
95 | 97 | { |
96 | 98 | // Forced WikiName ((a_page_with_any_name)) |
97 | 99 | |
Index: trunk/wap/README |
— | — | @@ -94,3 +94,14 @@ |
95 | 95 | |
96 | 96 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= |
97 | 97 | |
| 98 | +Merge with HawPedia V1.1 |
| 99 | +(by Norbert Huffschmid - http://en.wikipedia.org/wiki/User:H2fen) |
| 100 | + |
| 101 | +- added language support for |
| 102 | + o czech |
| 103 | + o hungarian |
| 104 | + o portuguese |
| 105 | + o serbian |
| 106 | +- completed spanish translation file |
| 107 | +- settings: display available languages in localized style |
| 108 | +- fixed wiki parser (hawiki_parser_hawpedia.inc) for image handling |
Index: trunk/wap/lang/pt/translations.php |
— | — | @@ -0,0 +1,30 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * english -> portuguese translation file for hawpedia
|
| 5 | + * $Date: 2007/02/05 20:12:22 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$translation = Array(
|
| 9 | +"About" => "Sobre",
|
| 10 | +"Back" => "Voltar",
|
| 11 | +"Call" => "Chamar",
|
| 12 | +"Contents" => "Conteúdo",
|
| 13 | +"Continue" => "Continuar",
|
| 14 | +"Copyright" => "Copyright",
|
| 15 | +"external link" => "link externo",
|
| 16 | +"for" => "para",
|
| 17 | +"Found articles for:" => "Artigos encontrados para:",
|
| 18 | +"Home" => "Início", // meaning here is "homepage"
|
| 19 | +"Language" => "Língua",
|
| 20 | +"MP3 conversion failed" => "Conversão MP3 falhou",
|
| 21 | +"No wikipedia article found for:" => "Não foi encontrado um artigo wikipedia para:",
|
| 22 | +"Not available" => "Não disponível",
|
| 23 | +"please press" => "Por favor carregar",
|
| 24 | +"Save" => "Guardar",
|
| 25 | +"Settings" => "Configurações",
|
| 26 | +"Spoken Wikipedia" => "Wikipedia falada",
|
| 27 | +"Wikipedia currently not available" => "Wikipedia de momento não disponível",
|
| 28 | +"wikipedia export error" => "Erro de exportação Wikipedia",
|
| 29 | +"###end###"=>"###end###");
|
| 30 | +
|
| 31 | +?>
|
Index: trunk/wap/lang/pt/phonenumbers.php |
— | — | @@ -0,0 +1,10 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * phonenumbers for portuguese hawpedia
|
| 5 | + * $Date: 2006/11/27 21:00:42 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$phonenumbers = Array(
|
| 9 | +);
|
| 10 | +
|
| 11 | +?>
|
Index: trunk/wap/lang/pt/keywords.php |
— | — | @@ -0,0 +1,21 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * english -> portuguese translations of wikipedia keywords
|
| 5 | + * $Date: 2006/11/27 21:00:42 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$keywords = Array(
|
| 9 | +"Go" => " Ir ", // submit button for article request
|
| 10 | +"Special:Export" => "Especial:Export",
|
| 11 | +"Special:Search" => "Especial:Search",
|
| 12 | +'Special:ExpandTemplates' => 'Especial:ExpandTemplates',
|
| 13 | +'Image:' => 'Imagem:',
|
| 14 | +'http://upload.wikimedia.org/wikipedia/' => 'http://upload.wikimedia.org/wikipedia/',
|
| 15 | +'left' => 'left',
|
| 16 | +'center' => 'center',
|
| 17 | +'right' => 'right',
|
| 18 | +'thumb' => 'thumb',
|
| 19 | +'px' => 'px',
|
| 20 | +"###end###"=>"###end###");
|
| 21 | +
|
| 22 | +?>
|
Index: trunk/wap/lang/pt/copyright_text.php |
— | — | @@ -0,0 +1,15 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * portuguese copyright texts for hawpedia
|
| 5 | + * $Date: 2006/11/27 21:00:42 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$copyright = Array(
|
| 9 | +"Copyright" => "Copyright",
|
| 10 | +"gfdlText" => "Este artigo é derivado da Wikipedia e está disponível sobre os termos da Licença de Documentação Livre GNU (GFDL).",
|
| 11 | +"gfdlLinkText" => "GFDL",
|
| 12 | +"gfdlLinkPage" => "Wikipedia:GNU_Free_Documentation_License",
|
| 13 | +"Source" => "Fonte",
|
| 14 | +"History" => "História");
|
| 15 | +
|
| 16 | +?>
|
Index: trunk/wap/lang/pt/about_text.php |
— | — | @@ -0,0 +1,22 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * portuguese about texts for hawpedia
|
| 5 | + * $Date: 2006/11/27 21:00:42 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +// to be provided ...
|
| 9 | +
|
| 10 | +$about = Array(
|
| 11 | +"title" => "Sobre a Wikpedia",
|
| 12 | +"text" => 'Wikipedia is a free content encyclopedia written by a global community of volunteers. Sometimes, false information is added to Wikipedia. Do not trust information in Wikipedia - use additional references',
|
| 13 | +"imp1" => "Wikipedia is operated by:",
|
| 14 | +"imp2" => "Wikimedia Foundation Inc.",
|
| 15 | +"imp3" => "200 2nd Ave. South #358",
|
| 16 | +"imp4" => "St. Petersburg, FL 33701-4313, USA",
|
| 17 | +# Phone: +1-727-231-0101
|
| 18 | +# http://wikimediafoundation.org/wiki/Contact_us",
|
| 19 | +"imp5" => 'mobile@wikimedia.org',
|
| 20 | +"wpLinkUrl" => "http://pt.wikipedia.org/",
|
| 21 | +"wpLinkLabel" => "Wikipedia");
|
| 22 | +
|
| 23 | +?>
|
Index: trunk/wap/lang/nds/about_text.php |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | */ |
7 | 7 | |
8 | 8 | $about = Array( |
9 | | -"title" => "Über die", |
| 9 | +"title" => "Über die Wikipedia", |
10 | 10 | "text" => 'Die Wikipedia ist eine Enzyklopädie mit freien Inhalten, die von Freiwilligen auf der ganzen Welt beigesteuerte wurden. Gelegentlich wird auch Unrichtiges zugefügt. Darum sollte man sich auf die Angaben nicht verlassen und immer weitere Quellen hinzuziehen.', |
11 | 11 | "imp1" => 'Wikipedia wird betrieben von:', |
12 | 12 | "imp2" => "Wikimedia Foundation Inc.", |
Index: trunk/wap/lang/nds/translations.php |
— | — | @@ -25,15 +25,6 @@ |
26 | 26 | "Spoken Wikipedia" => "Wikipedija snakt", |
27 | 27 | "Wikipedia currently not available" => "Wikipedia antwort nich", |
28 | 28 | "wikipedia export error" => "Wikipedia Export is nich gahn", |
29 | | -"you hear an article from the wikipedia" => "Ehr hört en Artikel ut de Wikipedia", |
30 | | -# languages: |
31 | | -"bavarian" => "bayerisch", |
32 | | -"english" => "engelsch", |
33 | | -"french" => "französ'sch", |
34 | | -"german" => "düütsch", |
35 | | -"low german" => "plattdöütsch", |
36 | | -"ripuarian" => "ripoarch", |
37 | | -'spanish' => 'span\'sch', |
38 | 29 | "###end###"=>"###end###"); |
39 | 30 | |
40 | 31 | ?> |
Index: trunk/wap/lang/sr/phonenumbers.php |
— | — | @@ -0,0 +1,10 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * phonenumbers for serbian hawpedia
|
| 5 | + * $Date: 2007/03/12 21:12:36 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$phonenumbers = Array(
|
| 9 | +);
|
| 10 | +
|
| 11 | +?>
|
Index: trunk/wap/lang/sr/keywords.php |
— | — | @@ -0,0 +1,21 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * english -> serbian translations of wikipedia keywords
|
| 5 | + * $Date: 2007/03/12 21:12:36 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$keywords = Array(
|
| 9 | +"Go" => "Idi", // submit button for article request
|
| 10 | +"Special:Export" => "%D0%9F%D0%BE%D1%81%D0%B5%D0%B1%D0%BD%D0%BE:Export",
|
| 11 | +"Special:Search" => "%D0%9F%D0%BE%D1%81%D0%B5%D0%B1%D0%BD%D0%BE:Search",
|
| 12 | +'Special:ExpandTemplates' => '%D0%9F%D0%BE%D1%81%D0%B5%D0%B1%D0%BD%D0%BE:ExpandTemplates',
|
| 13 | +'Image:' => 'Bild:',
|
| 14 | +'http://upload.wikimedia.org/wikipedia/' => 'http://upload.wikimedia.org/wikipedia/',
|
| 15 | +'left' => 'left',
|
| 16 | +'center' => 'center',
|
| 17 | +'right' => 'right',
|
| 18 | +'thumb' => 'thumb',
|
| 19 | +'px' => 'px',
|
| 20 | +"###end###"=>"###end###");
|
| 21 | +
|
| 22 | +?>
|
Index: trunk/wap/lang/sr/copyright_text.php |
— | — | @@ -0,0 +1,15 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * serbian copyright texts for hawpedia
|
| 5 | + * $Date: 2007/03/12 21:12:36 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$copyright = Array(
|
| 9 | +"Copyright" => "Kopirajt",
|
| 10 | +"gfdlText" => "Ovaj članak je izveden iz Wikipedije i dostupan je pod uslovima GNU Free Documentation Licence (GFDL).",
|
| 11 | +"gfdlLinkText" => "GFDL",
|
| 12 | +"gfdlLinkPage" => "http://www.gnu.org/copyleft/fdl.html",
|
| 13 | +"Source" => "Izvor",
|
| 14 | +"History" => "Istorija");
|
| 15 | +
|
| 16 | +?>
|
Index: trunk/wap/lang/sr/about_text.php |
— | — | @@ -0,0 +1,22 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * serbian about texts for hawpedia
|
| 5 | + * $Date: 2007/03/12 21:12:36 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +// to be completed ...
|
| 9 | +
|
| 10 | +$about = Array(
|
| 11 | +"title" => "O Wikipediji",
|
| 12 | +"text" => 'Wikipedia is a free content encyclopedia written by a global community of volunteers. Sometimes, false information is added to Wikipedia. Do not trust information in Wikipedia - use additional references',
|
| 13 | +"imp1" => "Wikipedia is operated by:",
|
| 14 | +"imp2" => "Wikimedia Foundation Inc.",
|
| 15 | +"imp3" => "200 2nd Ave. South #358",
|
| 16 | +"imp4" => "St. Petersburg, FL 33701-4313, USA",
|
| 17 | +# Phone: +1-727-231-0101
|
| 18 | +# http://wikimediafoundation.org/wiki/Contact_us",
|
| 19 | +"imp5" => 'mobile@wikimedia.org',
|
| 20 | +"wpLinkUrl" => "http://sr.wikipedia.org/",
|
| 21 | +"wpLinkLabel" => "Wikipedia");
|
| 22 | +
|
| 23 | +?>
|
Index: trunk/wap/lang/sr/translations.php |
— | — | @@ -0,0 +1,30 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * english -> serbian translation file for hawpedia
|
| 5 | + * $Date: 2007/03/12 21:12:36 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$translation = Array(
|
| 9 | +"About" => "O nama",
|
| 10 | +"Back" => "Nazad",
|
| 11 | +"Call" => "Poziv",
|
| 12 | +"Contents" => "Sadržaj",
|
| 13 | +"Continue" => "Nastavi",
|
| 14 | +"Copyright" => "Kopirajt",
|
| 15 | +"external link" => "Vanjska veza",
|
| 16 | +"for" => "za",
|
| 17 | +"Found articles for:" => "Pronađeni članci za ",
|
| 18 | +"Home" => "Kućna strana", // meaning here is "homepage"
|
| 19 | +"Language" => "Jezik",
|
| 20 | +"MP3 conversion failed" => "MP3 konverzija nije uspela",
|
| 21 | +"No wikipedia article found for:" => "Nije nađen wikipedija članak za:",
|
| 22 | +"Not available" => "Nije dostupno",
|
| 23 | +"please press" => "molim vas pritisnite",
|
| 24 | +"Save" => "Sačuvaj",
|
| 25 | +"Settings" => "Postavke",
|
| 26 | +"Spoken Wikipedia" => "Izgovorena wikipedija",
|
| 27 | +"Wikipedia currently not available" => "Wikipedija nije trnutno dostupna",
|
| 28 | +"wikipedia export error" => "wikipedija greška pri izvozu",
|
| 29 | +"###end###"=>"###end###");
|
| 30 | +
|
| 31 | +?>
|
Index: trunk/wap/lang/cs/phonenumbers.php |
— | — | @@ -0,0 +1,10 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * phonenumbers for czech hawpedia
|
| 5 | + * $Date: 2007/02/16 15:20:05 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$phonenumbers = Array(
|
| 9 | +);
|
| 10 | +
|
| 11 | +?>
|
Index: trunk/wap/lang/cs/keywords.php |
— | — | @@ -0,0 +1,21 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * english -> czech translations of wikipedia keywords
|
| 5 | + * $Date: 2007/02/16 15:20:06 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$keywords = Array(
|
| 9 | +"Go" => "Jít na", // submit button for article request
|
| 10 | +"Special:Export" => "Speci%C3%A1ln%C3%AD:Export",
|
| 11 | +"Special:Search" => "Speci%C3%A1ln%C3%AD:Search",
|
| 12 | +'Special:ExpandTemplates' => 'Speci%C3%A1ln%C3%AD:ExpandTemplates',
|
| 13 | +'Image:' => 'Bild:',
|
| 14 | +'http://upload.wikimedia.org/wikipedia/' => 'http://upload.wikimedia.org/wikipedia/',
|
| 15 | +'left' => 'left',
|
| 16 | +'center' => 'center',
|
| 17 | +'right' => 'right',
|
| 18 | +'thumb' => 'thumb',
|
| 19 | +'px' => 'px',
|
| 20 | +"###end###"=>"###end###");
|
| 21 | +
|
| 22 | +?>
|
Index: trunk/wap/lang/cs/copyright_text.php |
— | — | @@ -0,0 +1,15 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * czech copyright texts for hawpedia
|
| 5 | + * $Date: 2007/02/16 15:20:06 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$copyright = Array(
|
| 9 | +"Copyright" => "Copyright",
|
| 10 | +"gfdlText" => "Tento článek byl získán z Wikipedie, otevřené encyklopedie, a je k dispozici pod licencí GNU Free Documentation License (GFDL).",
|
| 11 | +"gfdlLinkText" => "GFDL",
|
| 12 | +"gfdlLinkPage" => "Wikipedie:GNU_Free_Documentation_License",
|
| 13 | +"Source" => "Zdroj",
|
| 14 | +"History" => "Historie");
|
| 15 | +
|
| 16 | +?>
|
Index: trunk/wap/lang/cs/about_text.php |
— | — | @@ -0,0 +1,22 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * czech about texts for hawpedia
|
| 5 | + * $Date: 2007/02/16 15:20:06 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +// to be completed ...
|
| 9 | +
|
| 10 | +$about = Array(
|
| 11 | +"title" => "O Wikipedie",
|
| 12 | +"text" => 'Wikipedia is a free content encyclopedia written by a global community of volunteers. Sometimes, false information is added to Wikipedia. Do not trust information in Wikipedia - use additional references',
|
| 13 | +"imp1" => "Wikipedia is operated by:",
|
| 14 | +"imp2" => "Wikimedia Foundation Inc.",
|
| 15 | +"imp3" => "200 2nd Ave. South #358",
|
| 16 | +"imp4" => "St. Petersburg, FL 33701-4313, USA",
|
| 17 | +# Phone: +1-727-231-0101
|
| 18 | +# http://wikimediafoundation.org/wiki/Contact_us",
|
| 19 | +"imp5" => 'mobile@wikimedia.org',
|
| 20 | +"wpLinkUrl" => "http://cs.wikipedia.org/",
|
| 21 | +"wpLinkLabel" => "Wikipedie");
|
| 22 | +
|
| 23 | +?>
|
Index: trunk/wap/lang/cs/translations.php |
— | — | @@ -0,0 +1,30 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * english -> czech translation file for hawpedia
|
| 5 | + * $Date: 2007/02/16 15:20:05 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$translation = Array(
|
| 9 | +"About" => "O aplikaci",
|
| 10 | +"Back" => "Zpět",
|
| 11 | +"Call" => "Volat",
|
| 12 | +"Contents" => "Obsah",
|
| 13 | +"Continue" => "Pokračovat",
|
| 14 | +"Copyright" => "Copyright",
|
| 15 | +"external link" => "externí odkaz",
|
| 16 | +"for" => "pro",
|
| 17 | +"Found articles for:" => "Nalezené články pro výraz:",
|
| 18 | +"Home" => "Úvod",
|
| 19 | +"Language" => "Jazyk",
|
| 20 | +"MP3 conversion failed" => "Převod MP3 selhal",
|
| 21 | +"No wikipedia article found for:" => "Nebyl nalezen žádný článek pro výraz:",
|
| 22 | +"Not available" => "Není k dispozici",
|
| 23 | +"please press" => "prosím stiskněte",
|
| 24 | +"Save" => "Uložit",
|
| 25 | +"Settings" => "Nastavení",
|
| 26 | +"Spoken Wikipedia" => "Mluvená Wikipedie",
|
| 27 | +"Wikipedia currently not available" => "Wikipedie momentálně není dostupná",
|
| 28 | +"wikipedia export error" => "chyba při exportu z wikipedie",
|
| 29 | +"###end###"=>"###end###");
|
| 30 | +
|
| 31 | +?>
|
Index: trunk/wap/lang/ksh/keywords.php |
— | — | @@ -1,12 +1,12 @@ |
2 | 2 | <?php |
3 | 3 | /* |
4 | | - * english -> german translations of wikipedia keywords |
5 | | - * $Date: 2006/11/22 19:59:25 $ |
| 4 | + * english -> ripuarian translations of wikipedia keywords |
| 5 | + * $Date: 2006/11/22 19: 59: 25 $ |
6 | 6 | */ |
7 | 7 | |
8 | 8 | $keywords = Array( |
9 | 9 | "Go" => "Artikel", // submit button for article request |
10 | | -"Special:Export" => "Spezial:Export", |
| 10 | +"Special:Export" => "Spezial:Exportieren", |
11 | 11 | "Special:Search" => "Spezial:Search", |
12 | 12 | 'Special:ExpandTemplates' => 'Spezial:ExpandTemplates', |
13 | 13 | 'Image:' => 'Bild:', |
Index: trunk/wap/lang/ksh/about_text.php |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | */ |
7 | 7 | |
8 | 8 | $about = Array( |
9 | | -"title" => "Über de", |
| 9 | +"title" => "Über de Wikipedia", |
10 | 10 | "text" => 'De Wikipedia is e Nohkixel un ier Ennhald sen freij. Se woote fun Freiwellijje op de janze Welt beijjedraare. Et kumme och ens fokiehrte Saache aan. Dröm doot Üsch nit onbedingk drop foloohsse un dooht och anndere Quelle beijtrekke.', |
11 | 11 | "imp1" => 'De Wikipedia weed bedrevve fun:', |
12 | 12 | "imp2" => "Wikimedia Foundation Inc.", |
Index: trunk/wap/lang/ksh/translations.php |
— | — | @@ -25,15 +25,6 @@ |
26 | 26 | "Spoken Wikipedia" => "Wikipedija jewschwaadt", |
27 | 27 | "Wikipedia currently not available" => "de Wikipedia es jrad nit ze hann", |
28 | 28 | "wikipedia export error" => "Fäähler beijem Wikipedia Expocht", |
29 | | -"you hear an article from the wikipedia" => "Ehr hüürd ene Attikel us de Wikipedija", |
30 | | -# languages: |
31 | | -"bavarian" => "bayerisch", |
32 | | -"english" => "änglesch", |
33 | | -"french" => "franzüüsisch", |
34 | | -"german" => "döütsch", |
35 | | -"low german" => "nederdöütsch", |
36 | | -"ripuarian" => "ripoarisch", |
37 | | -'spanish' => 'shpanisch', |
38 | 29 | "###end###"=>"###end###"); |
39 | 30 | |
40 | 31 | ?> |
Index: trunk/wap/lang/es/translations.php |
— | — | @@ -6,34 +6,25 @@ |
7 | 7 | |
8 | 8 | $translation = Array( |
9 | 9 | "About" => 'Acerca de', |
10 | | -'Back' => 'Tornar', |
11 | | -"Call" => "Anruf", |
| 10 | +'Back' => 'atrás', |
| 11 | +"Call" => "llamada", |
12 | 12 | "Contents" => 'Contenidos', |
13 | | -'Continue' => "m\303\241s lejos", |
| 13 | +'Continue' => "Continúe", |
14 | 14 | "Copyright" => "Copyright", |
15 | | -"external link" => "externer Verweis", |
| 15 | +"external link" => "enlaces externos", |
16 | 16 | "for" => "para", |
17 | 17 | "Found articles for:" => "Articulos encontrados:", |
18 | | -"Home" => "Portal", |
19 | | -'Language' => 'Idioma', |
20 | | -"MP3 conversion failed" => "MP3-Konvertierung nicht erfolgreich", |
21 | | -"No wikipedia article found for:" => "Kein Wikipedia Artikel gefunden für:", |
22 | | -"Not available" => "Nicht verfügbar", |
23 | | -"please press" => "bitte drücken Sie", |
24 | | -'Save' => 'Grabar', |
25 | | -'Settings' => 'Preferencias', |
26 | | -"Spoken Wikipedia" => "Gesprochene Wikipedia", |
27 | | -"Wikipedia currently not available" => "Wikipedia momentan nicht verfügbar", |
28 | | -"wikipedia export error" => "Wikipedia Export Fehler", |
29 | | -"you hear an article from the wikipedia" => "Sie hören einen Artikel aus der Wikipedia", |
30 | | -# languages: |
31 | | -'bavarian' => "b\303\241varo", |
32 | | -"english" => "ingl\303\251se", |
33 | | -"french" => "franc\303\251s", |
34 | | -"german" => "alem\303\241n", |
35 | | -"low german" => "bas alemand", |
36 | | -"ripuarian" => "francique ripuaire", |
37 | | -'spanish' => 'espanol', |
| 18 | +"Home" => "Inicio", |
| 19 | +'Language' => 'Lenguaje', |
| 20 | +"MP3 conversion failed" => "conversión MP3 falló", |
| 21 | +"No wikipedia article found for:" => "Ningún artículo del wikipedia encontró para:", |
| 22 | +"Not available" => "No disponible", |
| 23 | +"please press" => "por favor toca", |
| 24 | +'Save' => 'Guardar', |
| 25 | +'Settings' => 'Opciones', |
| 26 | +"Spoken Wikipedia" => "Wikipedia hablado", |
| 27 | +"Wikipedia currently not available" => "Wikipedia actualmente no disponible", |
| 28 | +"wikipedia export error" => "error de la exportación del wikipedia", |
38 | 29 | "###end###"=>"###end###"); |
39 | 30 | |
40 | 31 | ?> |
Index: trunk/wap/lang/de/about_text.php |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | */ |
7 | 7 | |
8 | 8 | $about = Array( |
9 | | -"title" => "Über die", |
| 9 | +"title" => "Über die Wikipedia", |
10 | 10 | "text" => 'Die Wikipedia ist eine Enzyklopädie mit freien Inhalten, die von Freiwilligen auf der ganzen Welt beigesteuerte wurden. Gelegentlich wird auch Unrichtiges zugefügt. Darum sollte man sich auf die Angaben nicht verlassen und immer weitere Quellen hinzuziehen.', |
11 | 11 | "imp1" => 'Wikipedia wird betrieben von:', |
12 | 12 | "imp2" => "Wikimedia Foundation Inc.", |
Index: trunk/wap/lang/de/translations.php |
— | — | @@ -25,15 +25,6 @@ |
26 | 26 | "Spoken Wikipedia" => "Gesprochene Wikipedia", |
27 | 27 | "Wikipedia currently not available" => "Wikipedia momentan nicht verfügbar", |
28 | 28 | "wikipedia export error" => "Wikipedia Export Fehler", |
29 | | -"you hear an article from the wikipedia" => "Sie hören einen Artikel aus der Wikipedia", |
30 | | -# languages: |
31 | | -"bavarian" => "bayrisch", |
32 | | -"english" => "englisch", |
33 | | -"french" => "französisch", |
34 | | -"german" => "deutsch", |
35 | | -"low german" => "plattdüütsch", |
36 | | -"ripuarian" => "ripuarisch", |
37 | | -'spanish' => 'spanisch', |
38 | 29 | "###end###"=>"###end###"); |
39 | 30 | |
40 | 31 | ?> |
Index: trunk/wap/lang/hu/translations.php |
— | — | @@ -0,0 +1,30 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * english -> hungarian translation file for hawpedia
|
| 5 | + * $Date: 2007/02/05 20:12:22 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$translation = Array(
|
| 9 | +"About" => "Mi ez?",
|
| 10 | +"Back" => "Vissza",
|
| 11 | +"Call" => "Hivás",
|
| 12 | +"Contents" => "Tartalom",
|
| 13 | +"Continue" => "Folytatás",
|
| 14 | +"Copyright" => "Szerzői Jogvédelem",
|
| 15 | +"external link" => "külső hivatkozás",
|
| 16 | +"for" => "számára",
|
| 17 | +"Found articles for:" => "Talált cikkek:",
|
| 18 | +"Home" => "Főoldal", // meaning here is "homepage"
|
| 19 | +"Language" => "Nyelv",
|
| 20 | +"MP3 conversion failed" => "sikertelen MP3 konverzió",
|
| 21 | +"No wikipedia article found for:" => "Nem találtunk wikipedia cikket: ",
|
| 22 | +"Not available" => "Nem elérhető",
|
| 23 | +"please press" => "Kérjük nyomjon",
|
| 24 | +"Save" => "Mentés",
|
| 25 | +"Settings" => "Beállítások",
|
| 26 | +"Spoken Wikipedia" => "Hangos Wikipedia",
|
| 27 | +"Wikipedia currently not available" => "Wikipedia nem elérhető",
|
| 28 | +"wikipedia export error" => "Wikipedia exportálási hiba",
|
| 29 | +"###end###"=>"###end###");
|
| 30 | +
|
| 31 | +?>
|
Index: trunk/wap/lang/hu/phonenumbers.php |
— | — | @@ -0,0 +1,10 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * phonenumbers for hungarian hawpedia
|
| 5 | + * $Date: 2006/11/28 18:29:48 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$phonenumbers = Array(
|
| 9 | +);
|
| 10 | +
|
| 11 | +?>
|
Index: trunk/wap/lang/hu/keywords.php |
— | — | @@ -0,0 +1,21 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * english -> hungarian translations of wikipedia keywords
|
| 5 | + * $Date: 2006/11/28 18:29:48 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$keywords = Array(
|
| 9 | +"Go" => "Menj", // submit button for article request
|
| 10 | +"Special:Export" => "Speci%C3%A1lis:Lapok_export%C3%A1l%C3%A1sa",
|
| 11 | +"Special:Search" => "Speci%C3%A1lis:Search",
|
| 12 | +'Special:ExpandTemplates' => 'Speci%C3%A1lis:ExpandTemplates',
|
| 13 | +'Image:' => 'Bild:',
|
| 14 | +'http://upload.wikimedia.org/wikipedia/' => 'http://upload.wikimedia.org/wikipedia/',
|
| 15 | +'left' => 'left',
|
| 16 | +'center' => 'center',
|
| 17 | +'right' => 'right',
|
| 18 | +'thumb' => 'thumb',
|
| 19 | +'px' => 'px',
|
| 20 | +"###end###"=>"###end###");
|
| 21 | +
|
| 22 | +?>
|
Index: trunk/wap/lang/hu/copyright_text.php |
— | — | @@ -0,0 +1,15 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * hungarian copyright texts for hawpedia
|
| 5 | + * $Date: 2006/11/28 18:29:48 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +$copyright = Array(
|
| 9 | +"Copyright" => "Minden jog fenntartva",
|
| 10 | +"gfdlText" => "Ez a cikk a Wikipediaról származik és hozzáférhető a GNU Free Documentation Licensz (GFDL) feltételei mellett.",
|
| 11 | +"gfdlLinkText" => "GFDL",
|
| 12 | +"gfdlLinkPage" => "Wikipedia:GNU_Free_Documentation_License",
|
| 13 | +"Source" => "Forrás",
|
| 14 | +"History" => "laptörténet"); //as shown as history/version tab on the wikipedia (who edited and when has been edited)
|
| 15 | +
|
| 16 | +?>
|
Index: trunk/wap/lang/hu/about_text.php |
— | — | @@ -0,0 +1,22 @@ |
| 2 | +<?php
|
| 3 | +/*
|
| 4 | + * hungarian about texts for hawpedia
|
| 5 | + * $Date: 2006/11/28 18:29:48 $
|
| 6 | + */
|
| 7 | +
|
| 8 | +// to be provided ...
|
| 9 | +
|
| 10 | +$about = Array(
|
| 11 | +"title" => "About Wikipedia",
|
| 12 | +"text" => 'Wikipedia is a free content encyclopedia written by a global community of volunteers. Sometimes, false information is added to Wikipedia. Do not trust information in Wikipedia - use additional references',
|
| 13 | +"imp1" => "Wikipedia is operated by:",
|
| 14 | +"imp2" => "Wikimedia Foundation Inc.",
|
| 15 | +"imp3" => "200 2nd Ave. South #358",
|
| 16 | +"imp4" => "St. Petersburg, FL 33701-4313, USA",
|
| 17 | +# Phone: +1-727-231-0101
|
| 18 | +# http://wikimediafoundation.org/wiki/Contact_us",
|
| 19 | +"imp5" => 'mobile@wikimedia.org',
|
| 20 | +"wpLinkUrl" => "http://hu.wikipedia.org/",
|
| 21 | +"wpLinkLabel" => "Wikipedia");
|
| 22 | +
|
| 23 | +?>
|