' Gambas module file Private $cTr As New Collection Public Sub Load() $cTr.Clear '{ $cTr["Architecture"] = ("Architecture") $cTr["Road Map"] = ("Road Map") $cTr["This is a map of the possible future of Gambas made with FreeMind."] = ("This is a map of the possible future of Gambas made with FreeMind.") $cTr["I don't say that I will do everything on this map. But if you are looking for something to program, pick an idea and come on! :-)"] = ("I don't say that I will do everything on this map. But if you are looking for something to program, pick an idea and come on! :-)") $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["Distributions & O.S."] = ("Distributions & O.S.") $cTr["Links"] = ("Links") $cTr["Mailing lists/Forums"] = ("Mailing lists/Forums") $cTr["Screenshots"] = ("Screenshots") $cTr["Some Applications"] = ("Some Applications") $cTr["Documentation"] = ("Documentation") $cTr["Books"] = ("Books") $cTr["Getting Started"] = ("Getting Started") $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["German"] = ("German") $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["Download"] = ("Download") $cTr[" READ THESE IMPORTANT NOTES AND THIS PAGE FIRST."] = (" READ THESE IMPORTANT NOTES AND THIS PAGE FIRST.") $cTr["Current Developer Snapshots"] = ("Current Developer Snapshots") $cTr["You get them from the Subversion repository. To get a snapshot of the future 3.0 version, do:"] = ("You get them from the Subversion repository. To get a snapshot of the future 3.0 version, do:") $cTr["To get a snapshot of the 2.x development version, do:"] = ("To get a snapshot of the 2.x development version, do:") $cTr["Do not forget to install automake and autoconf, otherwise the ./reconf-all script will not work."] = ("Do not forget to install automake and autoconf, otherwise the ./reconf-all script will not work.") $cTr["Stable Version Source Packages"] = ("Stable Version Source Packages") $cTr["ChangeLog"] = ("ChangeLog") $cTr["Package"] = ("Package") $cTr["Version"] = ("Version") $cTr["Format"] = ("Format") $cTr["How to compile and install Gambas"] = ("How to compile and install Gambas") $cTr["Go to that page if you want specific instructions for your distribution."] = ("Go to that page if you want specific instructions for your distribution.") $cTr["Gambas Presentation"] = ("Gambas Presentation") $cTr["Here is the last presentation I made in Palermo. You can open it with OpenOffice, or use the PDF version with the PdfPresentation OpenGL example included in the Gambas sources."] = ("Here is the last presentation I made in Palermo. You can open it with OpenOffice, or use the PDF version with the PdfPresentation OpenGL example included in the Gambas sources.") $cTr["Presentation"] = ("Presentation") $cTr["Type"] = ("Type") $cTr["Binary Packages"] = ("Binary Packages") $cTr["Go to that page for a list of binary packages for each distribution."] = ("Go to that page for a list of binary packages for each distribution.") $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 Gambas 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 Gambas 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 Gambas, write me so that I add you on the previous table, and read the How To carefully."] = ("If you want to translate Gambas, write me so that I add you on the previous table, and read the How To 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["Release Notes"] = ("Release Notes") $cTr["Last stable version is"] = ("Last stable version is") $cTr["Gambas is a free development environment based on a Basic interpreter with object extensions, a bit like Visual Basic™ (but it is NOT a clone !)."] = ("Gambas is a free development environment based on a Basic interpreter with object extensions, a bit like Visual Basic™ (but it is NOT a clone !).") $cTr["Read the introduction for more information."] = ("Read the introduction for more information.") $cTr["With Gambas, you can quickly design your program GUI with QT4 or GTK+, access MySQL, PostgreSQL, ODBC and SQLite databases, pilot applications with D-Bus, translate your program into any language, create network applications easily, make 3D OpenGL applications, make CGI web applications, and so on..."] = ("With Gambas, you can quickly design your program GUI with QT4 or GTK+, access MySQL, PostgreSQL, ODBC and SQLite databases, pilot applications with D-Bus, 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 Gambas by making a small donation with"] = ("You can support Gambas by making a small donation with") $cTr["or by using"] = ("or by using") $cTr["The greatest formula of the world!"] = ("The greatest formula of the world!") $cTr["Thanks for the support of gnuLinex!"] = ("Thanks for the support of gnuLinex!") $cTr["News Archive"] = ("News Archive") '} End Public Sub _get(sStr As String) As String If $cTr.Exist(sStr) Then Return $cTr[sStr] Return sStr End