gambas-source-code/app/other/MakeWebSite/.src/MTranslation.module
Benoît Minisini 9d7e77214b [WEB SITE MAKER]
* NEW: New look.

[WIKI CGI SCRIPT]
* NEW: Hall of fame is now generated from the wiki.
* NEW: Accounts are now managed by the bugtracker.
* NEW: Registration is now managed by the bugtracker.


git-svn-id: svn://localhost/gambas/trunk@7448 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2015-11-03 13:09:23 +00:00

52 lines
1.6 KiB
Text

' Gambas module file
Private $cTr As New Collection
Public Sub Load()
$cTr.Clear
'{
$cTr["No software patents in Europe!"] = ("No software patents in Europe!")
$cTr["The greatest formula of the world!"] = ("The greatest formula of the world!")
$cTr["Donate with PayPal"] = ("Donate with PayPal")
$cTr["Flattr this"] = ("Flattr this")
$cTr["Download"] = ("Download")
$cTr["Release Notes"] = ("Release Notes")
$cTr["Other downloads"] = ("Other downloads")
$cTr["Browse source code"] = ("Browse source code")
$cTr["Wiki"] = ("Wiki")
$cTr["Bugtracker"] = ("Bugtracker")
$cTr["Help"] = ("Help")
$cTr["F.A.Q."] = ("F.A.Q.")
$cTr["Compilation & Installation"] = ("Compilation & Installation")
$cTr["Reporting a problem"] = ("Reporting a problem")
$cTr["Mailing lists/Forums"] = ("Mailing lists/Forums")
$cTr["Books"] = ("Books")
$cTr["About"] = ("About")
$cTr["Introduction"] = ("Introduction")
$cTr["What is Gambas?"] = ("What is Gambas?")
$cTr["Screenshots"] = ("Screenshots")
$cTr["Benchmarks"] = ("Benchmarks")
$cTr["License"] = ("License")
$cTr["Hall Of Fame"] = ("Hall Of Fame")
$cTr["English"] = ("English")
$cTr["French"] = ("French")
$cTr["Spanish"] = ("Spanish")
$cTr["Catalonia"] = ("Catalonia")
$cTr["German"] = ("German")
$cTr["Dutch"] = ("Dutch")
$cTr["Czech"] = ("Czech")
$cTr["Turkish"] = ("Turkish")
$cTr["Arabic"] = ("Arabic")
$cTr["Korean"] = ("Korean")
$cTr["Chinese"] = ("Chinese")
'}
End
Public Sub _get(sStr As String) As String
If $cTr.Exist(sStr) Then Return $cTr[sStr]
Return sStr
End