summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2009-06-26 15:09:12 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2009-06-26 15:09:12 +0200
commit66b7ce77d23cd3e71996ec19464b87cb92468b87 (patch)
tree72ab70733d6f0a265f522acf9b1b5a4aa4f80dfb /src/corelib
parent7bb681392de3415e3c4529040d8ac18657fa7b39 (diff)
downloadfpGUI-66b7ce77d23cd3e71996ec19464b87cb92468b87.tar.xz
Updated translations with True/False constants
- Added new resource strings for True/False - Translated new resouce strings for all languages - On application initialization the RTL true/false strings are set according to the current active translation so BoolToStr() method will be localized.
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/fpg_main.pas5
-rw-r--r--src/corelib/lang_af.inc2
-rw-r--r--src/corelib/lang_de.inc2
-rw-r--r--src/corelib/lang_en.inc2
-rw-r--r--src/corelib/lang_es.inc2
-rw-r--r--src/corelib/lang_fr.inc10
-rw-r--r--src/corelib/lang_it.inc2
-rw-r--r--src/corelib/lang_pt.inc2
-rw-r--r--src/corelib/lang_ru.inc2
9 files changed, 24 insertions, 5 deletions
diff --git a/src/corelib/fpg_main.pas b/src/corelib/fpg_main.pas
index db57822b..bdcdc277 100644
--- a/src/corelib/fpg_main.pas
+++ b/src/corelib/fpg_main.pas
@@ -1119,8 +1119,11 @@ begin
LongMonthNames[10] := rsLongOct;
LongMonthNames[11] := rsLongNov;
LongMonthNames[12] := rsLongDec;
-
+ SetLength(TrueBoolStrs,1);
+ SetLength(FalseBoolStrs,1);
+ TrueBoolStrs[0] := rsTrue;
+ FalseBoolStrs[0] := rsFalse;
end;
procedure TfpgApplication.SetHintPause(const AValue: Integer);
diff --git a/src/corelib/lang_af.inc b/src/corelib/lang_af.inc
index b4283c42..5617ef91 100644
--- a/src/corelib/lang_af.inc
+++ b/src/corelib/lang_af.inc
@@ -43,6 +43,7 @@ rserror = 'Fout';
rsexampletext = 'Teks Voorbeeld';
rsexit = 'Staak';
rserrfailedtocreatedir = 'Kon nie die lêergids <%s> skep nie';
+rsfalse = 'Onwaar';
rscollectionfavourites = 'Gunstelinge';
rsshortfeb = 'Feb';
rslongfeb = 'Februarie';
@@ -112,6 +113,7 @@ rslongsun = 'Sondag';
rsshortthu = 'Do';
rslongthu = 'Donderdag';
rstoday = 'Vandag';
+rstrue = 'Waar';
rsshorttue = 'Di';
rslongtue = 'Dinsdag';
rsfiletype = 'Tipe Leêr';
diff --git a/src/corelib/lang_de.inc b/src/corelib/lang_de.inc
index c8690b97..e48739e2 100644
--- a/src/corelib/lang_de.inc
+++ b/src/corelib/lang_de.inc
@@ -43,6 +43,7 @@ rserror = 'Fehler';
rsexampletext = 'Beispieltext';
rsexit = 'Verlassen';
rserrfailedtocreatedir = 'Konnte Verzeichnis <%s> nicht anlegen';
+rsfalse = 'Falsch';
rscollectionfavourites = 'Favoriten';
rsshortfeb = 'Feb';
rslongfeb = 'Februar';
@@ -112,6 +113,7 @@ rslongsun = 'Sonntag';
rsshortthu = 'Don';
rslongthu = 'Donnerstag';
rstoday = 'Heute';
+rstrue = 'Wahr';
rsshorttue = 'Die';
rslongtue = 'Dienstag';
rsfiletype = 'Art der Datei';
diff --git a/src/corelib/lang_en.inc b/src/corelib/lang_en.inc
index a3d6508a..792f3694 100644
--- a/src/corelib/lang_en.inc
+++ b/src/corelib/lang_en.inc
@@ -43,6 +43,7 @@ rserror = 'Error';
rsexampletext = 'Example Text';
rsexit = 'Exit';
rserrfailedtocreatedir = 'Failed to create the directory <%s>';
+rsfalse = 'False';
rscollectionfavourites = 'Favourites';
rsshortfeb = 'Feb';
rslongfeb = 'February';
@@ -112,6 +113,7 @@ rslongsun = 'Sunday';
rsshortthu = 'Thu';
rslongthu = 'Thursday';
rstoday = 'Today';
+rstrue = 'True';
rsshorttue = 'Tue';
rslongtue = 'Tuesday';
rsfiletype = 'Type of file';
diff --git a/src/corelib/lang_es.inc b/src/corelib/lang_es.inc
index 93dededb..37ae2836 100644
--- a/src/corelib/lang_es.inc
+++ b/src/corelib/lang_es.inc
@@ -43,6 +43,7 @@ rserror = 'Error';
rsexampletext = 'Texto de Ejemplo';
rsexit = 'Salir';
rserrfailedtocreatedir = 'No se ha podido crear la carpeta <%s>';
+rsfalse = 'Falso';
rscollectionfavourites = 'Favoritos';
rsshortfeb = 'Feb';
rslongfeb = 'February';
@@ -112,6 +113,7 @@ rslongsun = 'Domingo';
rsshortthu = 'Jun';
rslongthu = 'Jueves';
rstoday = 'Today';
+rstrue = 'Verdadero';
rsshorttue = 'Mar';
rslongtue = 'Martes';
rsfiletype = 'Tipo de archivo';
diff --git a/src/corelib/lang_fr.inc b/src/corelib/lang_fr.inc
index 9e379613..bac60936 100644
--- a/src/corelib/lang_fr.inc
+++ b/src/corelib/lang_fr.inc
@@ -43,7 +43,8 @@ rserror = 'Erreur';
rsexampletext = 'Texte exemple';
rsexit = 'Sortir';
rserrfailedtocreatedir = 'Le répertoire <%s> n''''a pas pu être ouvert';
-rscollectionfavourites = 'Favorites';
+rsfalse = 'False';
+rscollectionfavourites = 'Favoris';
rsshortfeb = 'Fév';
rslongfeb = 'Février';
rsfileselection = 'Sélection fichier';
@@ -72,7 +73,7 @@ rsshortmar = 'Mar';
rslongmar = 'Mars';
rsshortmay = 'Mai';
rsLongMay = 'Mai';
-rsmessage = 'Messagev';
+rsmessage = 'Message';
rsfilemodifiedtime = 'Date modif.';
rsshortmon = 'Lun';
rslongmon = 'Lundi';
@@ -83,7 +84,7 @@ rsshortnov = 'Nov';
rslongnov = 'Novembre';
rsok = 'OK';
rsshortoct = 'Oct';
-rslongoct = 'Oct';
+rslongoct = 'Octobre';
rsopen = 'Ouvrir';
rsopenafile = 'Ouvrir un fichier';
rsfileowner = 'Propriétaire';
@@ -98,7 +99,7 @@ rsshortsat = 'Sam';
rslongsat = 'Samedi';
rssave = 'Sauver';
rssaveafile = 'Sauver sous';
-rssearch = 'Sauver';
+rssearch = 'Chercher';
rsselect = 'Selectionner';
rsselectafont = 'Choisir la police';
rsshortsep = 'Sep';
@@ -112,6 +113,7 @@ rslongsun = 'Dimanche';
rsshortthu = 'Jeu';
rslongthu = 'Jeudi';
rstoday = 'Aujourd''''hui';
+rstrue = 'Vrai';
rsshorttue = 'Mar';
rslongtue = 'Mardi';
rsfiletype = 'Type de fichier';
diff --git a/src/corelib/lang_it.inc b/src/corelib/lang_it.inc
index d23106dd..f3223386 100644
--- a/src/corelib/lang_it.inc
+++ b/src/corelib/lang_it.inc
@@ -43,6 +43,7 @@ rserror = 'Errore';
rsexampletext = 'Testo di Esempio';
rsexit = 'Esci';
rserrfailedtocreatedir = 'Impossibile creare la cartella <%s>';
+rsfalse = 'Falso';
rscollectionfavourites = 'Preferiti';
rsshortfeb = 'Feb';
rslongfeb = 'Febbraio';
@@ -112,6 +113,7 @@ rslongsun = 'Domenica';
rsshortthu = 'Gio';
rslongthu = 'Giovedì';
rstoday = 'Oggi';
+rstrue = 'Vero';
rsshorttue = 'Mar';
rslongtue = 'Martedì';
rsfiletype = 'Tipo di file';
diff --git a/src/corelib/lang_pt.inc b/src/corelib/lang_pt.inc
index 839ee369..0863168f 100644
--- a/src/corelib/lang_pt.inc
+++ b/src/corelib/lang_pt.inc
@@ -43,6 +43,7 @@ rserror = 'Erro';
rsexampletext = 'Texto de Exemplo';
rsexit = 'Sair';
rserrfailedtocreatedir = 'Failed to create the directory <%s>';
+rsfalse = 'Falso';
rscollectionfavourites = 'Favourites';
rsshortfeb = 'Feb';
rslongfeb = 'February';
@@ -112,6 +113,7 @@ rslongsun = 'Sunday';
rsshortthu = 'Thu';
rslongthu = 'Thursday';
rstoday = 'Today';
+rstrue = 'Verdadeiro';
rsshorttue = 'Tue';
rslongtue = 'Tuesday';
rsfiletype = 'Tipo de arquivo';
diff --git a/src/corelib/lang_ru.inc b/src/corelib/lang_ru.inc
index 9892574f..86ed9478 100644
--- a/src/corelib/lang_ru.inc
+++ b/src/corelib/lang_ru.inc
@@ -43,6 +43,7 @@ rserror = 'Ошибка';
rsexampletext = 'Пример текста';
rsexit = 'Выход';
rserrfailedtocreatedir = 'Невозможно создать директорию <%s>';
+rsfalse = 'ложный';
rscollectionfavourites = 'Избранные';
rsshortfeb = 'Фев';
rslongfeb = 'Февраль';
@@ -112,6 +113,7 @@ rslongsun = 'Воскресенье';
rsshortthu = 'Чт';
rslongthu = 'Четверг';
rstoday = 'Сегодня';
+rstrue = 'верный';
rsshorttue = 'Вт';
rslongtue = 'Вторник';
rsfiletype = 'Тип файла';