gambas-source-code/app/other/MakeWebSite/.src/MTranslation.module
Benoît Minisini 2d3bd49194 [WEBSITE MAKER]
* NEW: Support for dutch language.


git-svn-id: svn://localhost/gambas/trunk@6504 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-09-23 00:45:14 +00:00

69 lines
3.9 KiB
Text

' Gambas module file
Private $cTr As New Collection
Public Sub Load()
$cTr.Clear
'{
$cTr["Architecture"] = ("Architecture")
$cTr["<b><i>Gambas</i></b> is a free development environment based on a <i>Basic</i> interpreter with object extensions, a bit like <i>Visual Basic&#8482;</i> (but it is <i><b>NOT</b></i> a clone&nbsp;!)."] = ("<b><i>Gambas</i></b> is a free development environment based on a <i>Basic</i> interpreter with object extensions, a bit like <i>Visual Basic&#8482;</i> (but it is <i><b>NOT</b></i> a clone&nbsp;!).")
$cTr["Read the <a href=\"$(WIKI:/doc/intro)\">introduction</a> for more information."] = ("Read the <a href=\"$(WIKI:/doc/intro)\">introduction</a> for more information.")
$cTr["Click there to see all news"] = ("Click there to see all news")
$cTr["Download"] = ("Download")
$cTr["Release Notes"] = ("Release Notes")
$cTr["Donate with PayPal"] = ("Donate with PayPal")
$cTr["Flattr this"] = ("Flattr this")
$cTr["You can support <b><i>Gambas</i></b> by making a small donation with"] = ("You can support <b><i>Gambas</i></b> by making a small donation with")
$cTr["or by using"] = ("or by using")
$cTr["Hall Of Fame"] = ("Hall Of Fame")
$cTr["Developers"] = ("Developers")
$cTr["Developer"] = ("Developer")
$cTr["Country"] = ("Country")
$cTr["Working or have worked on..."] = ("Working or have worked on...")
$cTr["If you are developing anything directly related to <b><i>Gambas</i></b> or its IDE, and not on the previous list, or if you find a mistake in this list, then write me! And explain me who you are and what you have done, so that I add you to the Hall Of Fame."] = ("If you are developing anything directly related to <b><i>Gambas</i></b> or its IDE, and not on the previous list, or if you find a mistake in this list, then write me! And explain me who you are and what you have done, so that I add you to the Hall Of Fame.")
$cTr["Translations"] = ("Translations")
$cTr["Language"] = ("Language")
$cTr["Translator(s)"] = ("Translator(s)")
$cTr["If you want to translate <b><i>Gambas</i></b>, write me so that I add you on the previous table, and read the <a href=\"$(WIKI:/howto/translate)\">How To</a> carefully."] = ("If you want to translate <b><i>Gambas</i></b>, write me so that I add you on the previous table, and read the <a href=\"$(WIKI:/howto/translate)\">How To</a> carefully.")
$cTr["If you want to work on an already existing translation, contact the translators."] = ("If you want to work on an already existing translation, contact the translators.")
$cTr["English"] = ("English")
$cTr["French"] = ("French")
$cTr["Spanish"] = ("Spanish")
$cTr["Catalonia"] = ("Catalonia")
$cTr["German"] = ("German")
$cTr["Dutch"] = ("Dutch")
$cTr["Czech Republic"] = ("Czech Republic")
$cTr["Turkish"] = ("Turkish")
$cTr["Arabic"] = ("Arabic")
$cTr["Korean"] = ("Korean")
$cTr["Chinese"] = ("Chinese")
$cTr["Home"] = ("Home")
$cTr["Introduction"] = ("Introduction")
$cTr["What is Gambas?"] = ("What is Gambas?")
$cTr["F. A. Q."] = ("F. A. Q.")
$cTr["Reporting a problem"] = ("Reporting a problem")
$cTr["Resources"] = ("Resources")
$cTr["Bug tracker"] = ("Bug tracker")
$cTr["Compilation &amp; Installation"] = ("Compilation &amp; Installation")
$cTr["Distributions &amp; O.S."] = ("Distributions &amp; O.S.")
$cTr["Mailing lists/Forums"] = ("Mailing lists/Forums")
$cTr["Screenshots"] = ("Screenshots")
$cTr["Some Applications"] = ("Some Applications")
$cTr["Documentation"] = ("Documentation")
$cTr["Books"] = ("Books")
$cTr["License"] = ("License")
$cTr["Wiki Encyclopaedia"] = ("Wiki Encyclopaedia")
$cTr["Browse Source Code"] = ("Browse Source Code")
$cTr["No software patents in Europe!"] = ("No software patents in Europe!")
$cTr["The greatest formula of the world!"] = ("The greatest formula of the world!")
'}
End
Public Sub _get(sStr As String) As String
If $cTr.Exist(sStr) Then Return $cTr[sStr]
Return sStr
End