baf2ac8e59
* OPT: Draw editor cursor position outside of the editor, otherwise it slows down editor refresh. [WEBSITE MAKER] * NEW: Support for new web site translations. [GB.QT4.EXT] * OPT: Do not draw Editor cursor position. It slows down editor refresh. * OPT: Do not use Qt4 double-buffering, it slows down editor refresh a lot, especially with Oxygen theme. A dirty hack was needed for that. git-svn-id: svn://localhost/gambas/trunk@3781 867c0c6c-44f3-4631-809d-bfa615b0a4ec
67 lines
4.5 KiB
Text
67 lines
4.5 KiB
Text
' Gambas module file
|
|
|
|
Private $cTr As New Collection
|
|
|
|
Public Sub Load()
|
|
|
|
$cTr.Clear
|
|
'{
|
|
$cTr["Architecture"] = ("Architecture")
|
|
$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 & Installation"] = ("Compilation & Installation")
|
|
$cTr["Distributions & O.S."] = ("Distributions & 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["Developer"] = ("Developer")
|
|
$cTr["Browse Source Code"] = ("Browse Source Code")
|
|
$cTr["Hall Of Fame"] = ("Hall Of Fame")
|
|
$cTr["English"] = ("English")
|
|
$cTr["French"] = ("French")
|
|
$cTr["Spanish"] = ("Spanish")
|
|
$cTr["Catalonia"] = ("Catalonia")
|
|
$cTr["German"] = ("German")
|
|
$cTr["Czech Republic"] = ("Czech Republic")
|
|
$cTr["Turkish"] = ("Turkish")
|
|
$cTr["Arabic"] = ("Arabic")
|
|
$cTr["Korean"] = ("Korean")
|
|
$cTr["Chinese"] = ("Chinese")
|
|
$cTr["No software patents in Europe!"] = ("No software patents in Europe!")
|
|
$cTr["Donate with PayPal"] = ("Donate with PayPal")
|
|
$cTr["Flattr this"] = ("Flattr this")
|
|
$cTr["The greatest formula of the world!"] = ("The greatest formula of the world!")
|
|
$cTr["Developers"] = ("Developers")
|
|
$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=\"http://gambasdoc.org/help/howto/translate?view&en\">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=\"http://gambasdoc.org/help/howto/translate?view&en\">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["Download"] = ("Download")
|
|
$cTr["Release Notes"] = ("Release Notes")
|
|
$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™</i> (but it is <i><b>NOT</b></i> a clone !)."] = ("<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™</i> (but it is <i><b>NOT</b></i> a clone !).")
|
|
$cTr["Read the <a href=\"http://gambasdoc.org/help/doc/intro?view&$(LANG)\">introduction</a> for more information."] = ("Read the <a href=\"http://gambasdoc.org/help/doc/intro?view&$(LANG)\">introduction</a> for more information.")
|
|
$cTr["With <b><i>Gambas</i></b>, you can quickly design your program GUI with QT4 or GTK+, access MySQL, PostgreSQL, ODBC and SQLite databases, pilot applications with <i>D-Bus</i>, translate your program into any language, create network applications easily, make 3D OpenGL applications, make CGI web applications, and so on..."] = ("With <b><i>Gambas</i></b>, you can quickly design your program GUI with QT4 or GTK+, access MySQL, PostgreSQL, ODBC and SQLite databases, pilot applications with <i>D-Bus</i>, translate your program into any language, create network applications easily, make 3D OpenGL applications, make CGI web applications, and so on...")
|
|
$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")
|
|
'}
|
|
|
|
End
|
|
|
|
Public Sub _get(sStr As String) As String
|
|
|
|
If $cTr.Exist(sStr) Then Return $cTr[sStr]
|
|
Return sStr
|
|
|
|
End
|