From b29f2c65bf07a8c80e84c25c832493f1e62ed6e2 Mon Sep 17 00:00:00 2001 From: vincents Date: Tue, 26 Jun 2007 13:42:24 +0000 Subject: [PATCH] IDE: added resource strings for ctrl, alt and shift key in the keymapping dialog (bug #8066) git-svn-id: trunk@11384 - --- ide/keymapping.pp | 14 +- ide/lazarusidestrconsts.pas | 4 +- languages/lazaruside.af_ZA.po | 8 +- languages/lazaruside.ar.po | 8 +- languages/lazaruside.ca.po | 8 +- languages/lazaruside.de.po | 8 +- languages/lazaruside.es.po | 8 +- languages/lazaruside.fi.po | 8 +- languages/lazaruside.fr.po | 8 +- languages/lazaruside.he.po | 8 +- languages/lazaruside.id.po | 8 +- languages/lazaruside.it.po | 8 +- languages/lazaruside.ja.po | 8 +- languages/lazaruside.nl.po | 8 +- languages/lazaruside.pb.po | 8 +- languages/lazaruside.pl.po | 8 +- languages/lazaruside.pliso.po | 8 +- languages/lazaruside.plwin.po | 8 +- languages/lazaruside.po | 12 + languages/lazaruside.ru.po | 8 +- languages/lazaruside.ua.po | 8 +- languages/lazaruside.zh_CN.po | 8 +- lcl/languages/lclstrconsts.ca.po | 4 + lcl/languages/lclstrconsts.de.po | 4 + lcl/languages/lclstrconsts.es.po | 4 + lcl/languages/lclstrconsts.fi.po | 4 + lcl/languages/lclstrconsts.fr.po | 4 + lcl/languages/lclstrconsts.id.po | 4 + lcl/languages/lclstrconsts.it.po | 4 + lcl/languages/lclstrconsts.nl.po | 4 + lcl/languages/lclstrconsts.pb.po | 4 + lcl/languages/lclstrconsts.pl.po | 4 + lcl/languages/lclstrconsts.pliso.po | 4 + lcl/languages/lclstrconsts.plwin.po | 4 + lcl/languages/lclstrconsts.po | 1388 +++++++++++++-------------- lcl/languages/lclstrconsts.ru.po | 4 + lcl/languages/lclstrconsts.ua.po | 4 + lcl/languages/lclstrconsts.zh-cn.po | 4 + 38 files changed, 886 insertions(+), 744 deletions(-) diff --git a/ide/keymapping.pp b/ide/keymapping.pp index 4b06ff2f08..543c7b033b 100644 --- a/ide/keymapping.pp +++ b/ide/keymapping.pp @@ -1544,9 +1544,9 @@ var procedure AddAttributes; begin - if ssCtrl in ShiftState then AddAttribute('Ctrl'); - if ssAlt in ShiftState then AddAttribute('Alt'); - if ssShift in ShiftState then AddAttribute('Shift'); + if ssCtrl in ShiftState then AddAttribute(srkm_Ctrl); + if ssAlt in ShiftState then AddAttribute(srkm_Alt); + if ssShift in ShiftState then AddAttribute(srVK_SHIFT); end; // Tricky routine. This only works for western languages @@ -1715,7 +1715,7 @@ begin with KeyCtrlCheckBox[n] do begin Name := 'KeyCtrlCheckBox' + IntToStr(n); Parent := KeyGroupBox[j]; - Caption := 'Ctrl'; + Caption := srkm_Ctrl; Left := 5 + (k * (TGroupBox(Parent).Width div 2)); Top := 2; Width := 55; @@ -1726,7 +1726,7 @@ begin with KeyAltCheckBox[n] do begin Name := 'KeyAltCheckBox' + IntToStr(n); Parent := KeyGroupBox[j]; - Caption := 'Alt'; + Caption := srkm_Alt; Left := KeyCtrlCheckBox[n].Left + KeyCtrlCheckBox[n].Width+10; Top := KeyCtrlCheckBox[n].Top; Height := 20; @@ -1737,7 +1737,7 @@ begin with KeyShiftCheckBox[n] do begin Name := 'KeyShiftCheckBox' + IntToStr(n); Parent := KeyGroupBox[j]; - Caption := 'Shift'; + Caption := srVK_SHIFT; Left := KeyAltCheckBox[n].Left + KeyAltCheckBox[n].Width+10; Top := KeyCtrlCheckBox[n].Top; Height := 20; @@ -1752,7 +1752,7 @@ begin Top := KeyCtrlCheckBox[n].Top + KeyCtrlCheckBox[n].Height+5; Width := 190; Items.BeginUpdate; - Items.Add('none'); + Items.Add(lisNone2); for a := 1 to 145 do begin s := KeyAndShiftStateToEditorKeyString(a, []); diff --git a/ide/lazarusidestrconsts.pas b/ide/lazarusidestrconsts.pas index eb35ec11b8..7716c9a035 100644 --- a/ide/lazarusidestrconsts.pas +++ b/ide/lazarusidestrconsts.pas @@ -1793,7 +1793,9 @@ resourcestring srVK_NUMLOCK = 'Numlock'; srVK_SCROLL = 'Scroll'; srVK_IRREGULAR = 'Irregular '; - + srkm_Alt = 'Alt'; + srkm_Ctrl = 'Ctrl'; + // Category srkmCatCursorMoving = 'Cursor moving commands'; srkmCatSelection = 'Text selection commands'; diff --git a/languages/lazaruside.af_ZA.po b/languages/lazaruside.af_ZA.po index 75cb4dfb4b..4fc2546d44 100644 --- a/languages/lazaruside.af_ZA.po +++ b/languages/lazaruside.af_ZA.po @@ -576,7 +576,7 @@ msgstr "" msgid "Alphabetically" msgstr "" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1944,7 +1944,7 @@ msgstr "" msgid "Creation" msgstr "" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9184,6 +9184,10 @@ msgstr "" msgid "Use launching application" msgstr "" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "" diff --git a/languages/lazaruside.ar.po b/languages/lazaruside.ar.po index dcaba3d064..2bb6c98c63 100644 --- a/languages/lazaruside.ar.po +++ b/languages/lazaruside.ar.po @@ -573,7 +573,7 @@ msgstr "" msgid "Alphabetically" msgstr "" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "" @@ -1941,7 +1941,7 @@ msgstr "" msgid "Creation" msgstr "" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "" @@ -9181,6 +9181,10 @@ msgstr "" msgid "Use launching application" msgstr "" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "" diff --git a/languages/lazaruside.ca.po b/languages/lazaruside.ca.po index 415cffb4fc..f9da7c8a6a 100644 --- a/languages/lazaruside.ca.po +++ b/languages/lazaruside.ca.po @@ -573,7 +573,7 @@ msgstr "Permet la recerca per múltiples línies" msgid "Alphabetically" msgstr "Alfabèticament" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1941,7 +1941,7 @@ msgstr "" msgid "Creation" msgstr "Creació" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9181,6 +9181,10 @@ msgstr "Utilitza la pantalla" msgid "Use launching application" msgstr "Utilitza l'aplicació llançadora" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "Utilitza el fitxer de configuració normalitzat (fpc.cfg)" diff --git a/languages/lazaruside.de.po b/languages/lazaruside.de.po index a39e099979..2234ea3dfc 100644 --- a/languages/lazaruside.de.po +++ b/languages/lazaruside.de.po @@ -575,7 +575,7 @@ msgstr "Suche nach mehrfachen Zeilen erlauben" msgid "Alphabetically" msgstr "Alphabetisch" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1943,7 +1943,7 @@ msgstr "Neues Projekt beginnen" msgid "Creation" msgstr "Erzeugung" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Strg" @@ -9183,6 +9183,10 @@ msgstr "Display verwenden" msgid "Use launching application" msgstr "Startprogramm verwenden" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "Standard-Compilerkonfigurationsdatei (fpc.cfg) verwenden" diff --git a/languages/lazaruside.es.po b/languages/lazaruside.es.po index ad3fff086e..d5608d1041 100644 --- a/languages/lazaruside.es.po +++ b/languages/lazaruside.es.po @@ -572,7 +572,7 @@ msgstr "Permitir búsqueda para múltiples líneas" msgid "Alphabetically" msgstr "Alfabéticamente" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1940,7 +1940,7 @@ msgstr "" msgid "Creation" msgstr "Creación" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9180,6 +9180,10 @@ msgstr "Usar pantalla" msgid "Use launching application" msgstr "Usar lanzando aplicación" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "" diff --git a/languages/lazaruside.fi.po b/languages/lazaruside.fi.po index c401c3321a..3e6d1160ea 100644 --- a/languages/lazaruside.fi.po +++ b/languages/lazaruside.fi.po @@ -562,7 +562,7 @@ msgstr "" msgid "Alphabetically" msgstr "" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "" @@ -1930,7 +1930,7 @@ msgstr "Luodaan uusi projekti" msgid "Creation" msgstr "Luonti" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "" @@ -9170,6 +9170,10 @@ msgstr "" msgid "Use launching application" msgstr "" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "" diff --git a/languages/lazaruside.fr.po b/languages/lazaruside.fr.po index 46776d8f12..756ae6a8b0 100644 --- a/languages/lazaruside.fr.po +++ b/languages/lazaruside.fr.po @@ -575,7 +575,7 @@ msgstr "Autoriser la recherche de lignes multiples" msgid "Alphabetically" msgstr "Par ordre alphabétique" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1943,7 +1943,7 @@ msgstr "Créer un nouveau projet" msgid "Creation" msgstr "Création" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9183,6 +9183,10 @@ msgstr "Utiliser l'affichage" msgid "Use launching application" msgstr "Utiliser une application de démarrage" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "Utiliser le fichier de configuration standard du compilateur (fpc.cfg)" diff --git a/languages/lazaruside.he.po b/languages/lazaruside.he.po index 5260b8b1ba..8863104572 100644 --- a/languages/lazaruside.he.po +++ b/languages/lazaruside.he.po @@ -573,7 +573,7 @@ msgstr "" msgid "Alphabetically" msgstr "בסדר הא\"ב" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1941,7 +1941,7 @@ msgstr "" msgid "Creation" msgstr "" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "" @@ -9181,6 +9181,10 @@ msgstr "" msgid "Use launching application" msgstr "" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "" diff --git a/languages/lazaruside.id.po b/languages/lazaruside.id.po index a57c9784b7..2a78ffe3c9 100644 --- a/languages/lazaruside.id.po +++ b/languages/lazaruside.id.po @@ -573,7 +573,7 @@ msgstr "Ijinkan pencarian untuk multipel baris" msgid "Alphabetically" msgstr "Secara alfabetik" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1941,7 +1941,7 @@ msgstr "Buat proyek baru" msgid "Creation" msgstr "Pembuatan" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9181,6 +9181,10 @@ msgstr "Gunakan tampilan" msgid "Use launching application" msgstr "Gunakan aplikasi peluncuran" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "Gunakan File Konfig Kompilator standar (fpc.cfg)" diff --git a/languages/lazaruside.it.po b/languages/lazaruside.it.po index c6eaff3f36..1531f36e15 100644 --- a/languages/lazaruside.it.po +++ b/languages/lazaruside.it.po @@ -574,7 +574,7 @@ msgstr "Permetti la ricerca per righe multiple" msgid "Alphabetically" msgstr "Alfabeticamente" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1942,7 +1942,7 @@ msgstr "Crea un nuovo progetto" msgid "Creation" msgstr "Creazione" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9182,6 +9182,10 @@ msgstr "Usa DISPLAY" msgid "Use launching application" msgstr "Usa applicazione di lancio" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "Usa file di configurazione compilatore standard (fpc.cfg)" diff --git a/languages/lazaruside.ja.po b/languages/lazaruside.ja.po index ebd7c79a07..7328f2e4fa 100644 --- a/languages/lazaruside.ja.po +++ b/languages/lazaruside.ja.po @@ -572,7 +572,7 @@ msgstr "複数行の検索を許可する" msgid "Alphabetically" msgstr "アルファベット順に" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "" @@ -1940,7 +1940,7 @@ msgstr "" msgid "Creation" msgstr "作成" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "" @@ -9180,6 +9180,10 @@ msgstr "ディスプレイを使用" msgid "Use launching application" msgstr "アプリケーション起動を使用" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "標準コンパイラ設定ファイル(fpc.cfg)を使用" diff --git a/languages/lazaruside.nl.po b/languages/lazaruside.nl.po index 15efca971b..f5a6ce5aa1 100644 --- a/languages/lazaruside.nl.po +++ b/languages/lazaruside.nl.po @@ -573,7 +573,7 @@ msgstr "Sta het zoeken naar meerdere lijnen toe" msgid "Alphabetically" msgstr "Alfabetisch" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1941,7 +1941,7 @@ msgstr "Maak nieuw bestand" msgid "Creation" msgstr "Creatie" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9181,6 +9181,10 @@ msgstr "Gebruik display" msgid "Use launching application" msgstr "Gebruik start programma" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "Gebruik standaard compiler configuratie bestand (fpc.cfg)" diff --git a/languages/lazaruside.pb.po b/languages/lazaruside.pb.po index 7130c279cb..8432f6d30c 100644 --- a/languages/lazaruside.pb.po +++ b/languages/lazaruside.pb.po @@ -565,7 +565,7 @@ msgstr "Permitir busca por multiplas linhas" msgid "Alphabetically" msgstr "Alfabeticamente" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1933,7 +1933,7 @@ msgstr "Criar novo projeto" msgid "Creation" msgstr "Criação" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9173,6 +9173,10 @@ msgstr "Usar Exibição" msgid "Use launching application" msgstr "Usar inicialização de aplicação" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "Usar arquivo padrão de configuração do compilador (fpc.cfg)" diff --git a/languages/lazaruside.pl.po b/languages/lazaruside.pl.po index 416ea0b1f6..63df434bbd 100644 --- a/languages/lazaruside.pl.po +++ b/languages/lazaruside.pl.po @@ -577,7 +577,7 @@ msgstr "" msgid "Alphabetically" msgstr "Alfabetycznie" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1945,7 +1945,7 @@ msgstr "" msgid "Creation" msgstr "Tworzenie" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9185,6 +9185,10 @@ msgstr "Użyj ekranu" msgid "Use launching application" msgstr "Użyj programu ładującego" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "" diff --git a/languages/lazaruside.pliso.po b/languages/lazaruside.pliso.po index ef783bb7bd..c0b750dcc9 100644 --- a/languages/lazaruside.pliso.po +++ b/languages/lazaruside.pliso.po @@ -573,7 +573,7 @@ msgstr "" msgid "Alphabetically" msgstr "Alfabetycznie" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1941,7 +1941,7 @@ msgstr "" msgid "Creation" msgstr "Tworzenie" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9181,6 +9181,10 @@ msgstr "U msgid "Use launching application" msgstr "Uyj programu adujcego" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "" diff --git a/languages/lazaruside.plwin.po b/languages/lazaruside.plwin.po index 2cd890bba1..06d1f49ec2 100644 --- a/languages/lazaruside.plwin.po +++ b/languages/lazaruside.plwin.po @@ -573,7 +573,7 @@ msgstr "" msgid "Alphabetically" msgstr "Alfabetycznie" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1941,7 +1941,7 @@ msgstr "" msgid "Creation" msgstr "Tworzenie" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9181,6 +9181,10 @@ msgstr "U msgid "Use launching application" msgstr "Uyj programu adujcego" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "" diff --git a/languages/lazaruside.po b/languages/lazaruside.po index 9d4604054c..aabc23c139 100644 --- a/languages/lazaruside.po +++ b/languages/lazaruside.po @@ -3898,6 +3898,10 @@ msgstr "" msgid "Use Application Bundle for running and debugging (darwin only)" msgstr "" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgautocreateforms msgid "Auto-create forms:" msgstr "" @@ -5674,6 +5678,14 @@ msgstr "" msgid "Irregular " msgstr "" +#: lazarusidestrconsts:srkm_alt +msgid "Alt" +msgstr "" + +#: lazarusidestrconsts:srkm_ctrl +msgid "Ctrl" +msgstr "" + #: lazarusidestrconsts:srkmcatcursormoving msgid "Cursor moving commands" msgstr "" diff --git a/languages/lazaruside.ru.po b/languages/lazaruside.ru.po index 5f27c9245a..7f1e80a362 100644 --- a/languages/lazaruside.ru.po +++ b/languages/lazaruside.ru.po @@ -573,7 +573,7 @@ msgstr "Разрешить поиск для нескольких строк" msgid "Alphabetically" msgstr "По алфавиту" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1941,7 +1941,7 @@ msgstr "Создать новый проект" msgid "Creation" msgstr "Создание" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9181,6 +9181,10 @@ msgstr "Использовать дисплей" msgid "Use launching application" msgstr "Использовать приложение для запуска" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "Использовать стандартный файл настроек (fpc.cfg)" diff --git a/languages/lazaruside.ua.po b/languages/lazaruside.ua.po index 200a819bbf..faf6a7178c 100644 --- a/languages/lazaruside.ua.po +++ b/languages/lazaruside.ua.po @@ -562,7 +562,7 @@ msgstr "Дозволити пошук для декількох рядків" msgid "Alphabetically" msgstr "За алфавітом" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1930,7 +1930,7 @@ msgstr "Створити новий проект" msgid "Creation" msgstr "Створення" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9170,6 +9170,10 @@ msgstr "Використовувати дисплей" msgid "Use launching application" msgstr "Використовувати програму для запуску" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "Використовувати стандартний файл налаштувань (fpc.cfg)" diff --git a/languages/lazaruside.zh_CN.po b/languages/lazaruside.zh_CN.po index 1a49ceebb8..73bb83dd4c 100644 --- a/languages/lazaruside.zh_CN.po +++ b/languages/lazaruside.zh_CN.po @@ -576,7 +576,7 @@ msgstr "允许多行搜索" msgid "Alphabetically" msgstr "按字母顺序排列" -#: lazarusidestrconsts:lisedtexttoolalt +#: lazarusidestrconsts:srkm_alt msgid "Alt" msgstr "Alt" @@ -1944,7 +1944,7 @@ msgstr "" msgid "Creation" msgstr "创建" -#: lazarusidestrconsts:lisedtexttoolctrl +#: lazarusidestrconsts:srkm_ctrl msgid "Ctrl" msgstr "Ctrl" @@ -9184,6 +9184,10 @@ msgstr "使用显示" msgid "Use launching application" msgstr "使用运行应用程序" +#: lazarusidestrconsts:dlgpousemanifest +msgid "Use manifest file to enable themes (windows only)" +msgstr "" + #: lazarusidestrconsts:dlgusefpccfg msgid "Use standard Compiler Config File (fpc.cfg)" msgstr "使用标准编译器配置文件 (fpc.cfg)" diff --git a/lcl/languages/lclstrconsts.ca.po b/lcl/languages/lclstrconsts.ca.po index 800671e968..ced796f556 100644 --- a/lcl/languages/lclstrconsts.ca.po +++ b/lcl/languages/lclstrconsts.ca.po @@ -65,6 +65,10 @@ msgstr "" msgid "&Close" msgstr "" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "" diff --git a/lcl/languages/lclstrconsts.de.po b/lcl/languages/lclstrconsts.de.po index b1d3947208..8e63a0f9d2 100644 --- a/lcl/languages/lclstrconsts.de.po +++ b/lcl/languages/lclstrconsts.de.po @@ -68,6 +68,10 @@ msgstr "&Alle" msgid "&Close" msgstr "&Schließen" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "&Hilfe" diff --git a/lcl/languages/lclstrconsts.es.po b/lcl/languages/lclstrconsts.es.po index 4dac727193..7d48cf0ece 100644 --- a/lcl/languages/lclstrconsts.es.po +++ b/lcl/languages/lclstrconsts.es.po @@ -64,6 +64,10 @@ msgstr "Todo" msgid "&Close" msgstr "&Cerrar" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "Ayuda" diff --git a/lcl/languages/lclstrconsts.fi.po b/lcl/languages/lclstrconsts.fi.po index ca67cf2403..36b689e935 100644 --- a/lcl/languages/lclstrconsts.fi.po +++ b/lcl/languages/lclstrconsts.fi.po @@ -54,6 +54,10 @@ msgstr "Kaikki" msgid "&Close" msgstr "&Sulje" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "&Ohje" diff --git a/lcl/languages/lclstrconsts.fr.po b/lcl/languages/lclstrconsts.fr.po index 054c862e24..f3328c38a4 100644 --- a/lcl/languages/lclstrconsts.fr.po +++ b/lcl/languages/lclstrconsts.fr.po @@ -66,6 +66,10 @@ msgstr "&Tout" msgid "&Close" msgstr "&Fermer" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "&Aide" diff --git a/lcl/languages/lclstrconsts.id.po b/lcl/languages/lclstrconsts.id.po index 87fea7a877..f2942c579e 100644 --- a/lcl/languages/lclstrconsts.id.po +++ b/lcl/languages/lclstrconsts.id.po @@ -67,6 +67,10 @@ msgstr "&Semua" msgid "&Close" msgstr "&Tutup" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "&Panduan" diff --git a/lcl/languages/lclstrconsts.it.po b/lcl/languages/lclstrconsts.it.po index e3cc74cf01..5b8b1dc3f2 100644 --- a/lcl/languages/lclstrconsts.it.po +++ b/lcl/languages/lclstrconsts.it.po @@ -64,6 +64,10 @@ msgstr "&Tutti" msgid "&Close" msgstr "&Chiudi" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "&Aiuto" diff --git a/lcl/languages/lclstrconsts.nl.po b/lcl/languages/lclstrconsts.nl.po index ced07d4045..132704ea27 100644 --- a/lcl/languages/lclstrconsts.nl.po +++ b/lcl/languages/lclstrconsts.nl.po @@ -54,6 +54,10 @@ msgstr "&Alles" msgid "&Close" msgstr "&Sluiten" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "&Help" diff --git a/lcl/languages/lclstrconsts.pb.po b/lcl/languages/lclstrconsts.pb.po index 2f8cdbe77e..bdbe715db2 100644 --- a/lcl/languages/lclstrconsts.pb.po +++ b/lcl/languages/lclstrconsts.pb.po @@ -54,6 +54,10 @@ msgstr "&Tudo" msgid "&Close" msgstr "&Fechar" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "&Ajuda" diff --git a/lcl/languages/lclstrconsts.pl.po b/lcl/languages/lclstrconsts.pl.po index 530c0a23f2..56bbda0b39 100644 --- a/lcl/languages/lclstrconsts.pl.po +++ b/lcl/languages/lclstrconsts.pl.po @@ -69,6 +69,10 @@ msgstr "&Wszystkie" msgid "&Close" msgstr "Z&amknij" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "P&omoc" diff --git a/lcl/languages/lclstrconsts.pliso.po b/lcl/languages/lclstrconsts.pliso.po index 2fb725e801..0264a17cb2 100644 --- a/lcl/languages/lclstrconsts.pliso.po +++ b/lcl/languages/lclstrconsts.pliso.po @@ -65,6 +65,10 @@ msgstr "&Wszystkie" msgid "&Close" msgstr "Z&amknij" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "P&omoc" diff --git a/lcl/languages/lclstrconsts.plwin.po b/lcl/languages/lclstrconsts.plwin.po index bef3f84a7b..7d6b132fc2 100644 --- a/lcl/languages/lclstrconsts.plwin.po +++ b/lcl/languages/lclstrconsts.plwin.po @@ -65,6 +65,10 @@ msgstr "&Wszystkie" msgid "&Close" msgstr "Z&amknij" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "P&omoc" diff --git a/lcl/languages/lclstrconsts.po b/lcl/languages/lclstrconsts.po index 6d11f4cd65..25300a4ee2 100644 --- a/lcl/languages/lclstrconsts.po +++ b/lcl/languages/lclstrconsts.po @@ -1,157 +1,17 @@ -#: lclstrconsts:snomdiform -msgid "No MDI form present." +#: lclstrconsts:rsmodified +msgid " modified " msgstr "" -#: lclstrconsts:rsmbyes -msgid "&Yes" +#: lclstrconsts:rssize +msgid " size " msgstr "" -#: lclstrconsts:rsmbno -msgid "&No" +#: lclstrconsts:rswarningunreleasedtimerinfos +msgid " WARNING: There are %d TimerInfo structures left, I'll free them" msgstr "" -#: lclstrconsts:rsmbok -msgid "&OK" -msgstr "" - -#: lclstrconsts:rsmbcancel -msgid "Cancel" -msgstr "" - -#: lclstrconsts:rsmbabort -msgid "Abort" -msgstr "" - -#: lclstrconsts:rsmbretry -msgid "&Retry" -msgstr "" - -#: lclstrconsts:rsmbignore -msgid "&Ignore" -msgstr "" - -#: lclstrconsts:rsmball -msgid "&All" -msgstr "" - -#: lclstrconsts:rsmbnotoall -msgid "No to all" -msgstr "" - -#: lclstrconsts:rsmbyestoall -msgid "Yes to &All" -msgstr "" - -#: lclstrconsts:rsmbhelp -msgid "&Help" -msgstr "" - -#: lclstrconsts:rsmbclose -msgid "&Close" -msgstr "" - -#: lclstrconsts:rsmtwarning -msgid "Warning" -msgstr "" - -#: lclstrconsts:rsmterror -msgid "Error" -msgstr "" - -#: lclstrconsts:rsmtinformation -msgid "Information" -msgstr "" - -#: lclstrconsts:rsmtconfirmation -msgid "Confirmation" -msgstr "" - -#: lclstrconsts:rsmtcustom -msgid "Custom" -msgstr "" - -#: lclstrconsts:rsfdopenfile -msgid "Open existing file" -msgstr "" - -#: lclstrconsts:rsfdoverwritefile -msgid "Overwrite file ?" -msgstr "" - -#: lclstrconsts:rsfdfilealreadyexists -msgid "The file \"%s\" already exists. Overwrite ?" -msgstr "" - -#: lclstrconsts:rsfdpathmustexist -msgid "Path must exist" -msgstr "" - -#: lclstrconsts:rsfdpathnoexist -msgid "The path \"%s\" does not exist." -msgstr "" - -#: lclstrconsts:rsfdfilemustexist -msgid "File must exist" -msgstr "" - -#: lclstrconsts:rsfddirectorymustexist -msgid "Directory must exist" -msgstr "" - -#: lclstrconsts:rsfdfilenotexist -msgid "The file \"%s\" does not exist." -msgstr "" - -#: lclstrconsts:rsfddirectorynotexist -msgid "The directory \"%s\" does not exist." -msgstr "" - -#: lclstrconsts:rsfind -msgid "Find" -msgstr "" - -#: lclstrconsts:rsfdfilereadonlytitle -msgid "File is not writable" -msgstr "" - -#: lclstrconsts:rsfdfilereadonly -msgid "The file \"%s\" is not writable." -msgstr "" - -#: lclstrconsts:rsfdfilesaveas -msgid "Save file as" -msgstr "" - -#: lclstrconsts:rsallfiles -msgid "All files (%s)|%s|%s" -msgstr "" - -#: lclstrconsts:rsfdselectdirectory -msgid "Select Directory" -msgstr "" - -#: lclstrconsts:rsselectcolortitle -msgid "Select color" -msgstr "" - -#: lclstrconsts:rsselectfonttitle -msgid "Select a font" -msgstr "" - -#: lclstrconsts:rsfindmore -msgid "Find more" -msgstr "" - -#: lclstrconsts:rsreplace -msgid "Replace" -msgstr "" - -#: lclstrconsts:rsreplaceall -msgid "Replace all" -msgstr "" - -#: lclstrconsts:rswarningunremovedpaintmessages -msgid " WARNING: There are %s unremoved LM_PAINT/LM_GtkPAINT message links left." +#: lclstrconsts:rswarningunreleasedmessagesinqueue +msgid " WARNING: There are %d messages left in the queue! I'll free them" msgstr "" #: lclstrconsts:rswarningunreleaseddcsdump @@ -162,542 +22,22 @@ msgstr "" msgid " WARNING: There are %d unreleased GDIObjects, a detailed dump follows:" msgstr "" -#: lclstrconsts:rswarningunreleasedmessagesinqueue -msgid " WARNING: There are %d messages left in the queue! I'll free them" -msgstr "" - -#: lclstrconsts:rswarningunreleasedtimerinfos -msgid " WARNING: There are %d TimerInfo structures left, I'll free them" -msgstr "" - -#: lclstrconsts:rsfileinformation -msgid "File information" -msgstr "" - -#: lclstrconsts:rsgtkfilter -msgid "Filter:" -msgstr "" - -#: lclstrconsts:rsgtkhistory -msgid "History:" -msgstr "" - -#: lclstrconsts:rsdefaultfileinfovalue -msgid "permissions user group size date time" -msgstr "" - -#: lclstrconsts:rsblank -msgid "Blank" -msgstr "" - -#: lclstrconsts:rsunabletoloaddefaultfont -msgid "Unable to load default font" -msgstr "" - -#: lclstrconsts:rsfileinfofilenotfound -msgid "(file not found: \"%s\")" -msgstr "" - -#: lclstrconsts:rsgtkoptionnotransient -msgid "--lcl-no-transient Do not set transient order for modal forms" -msgstr "" - -#: lclstrconsts:rsgtkoptionmodule -msgid "--gtk-module module Load the specified module at startup." -msgstr "" - -#: lclstrconsts:rsgoptionfatalwarnings -msgid "--g-fatal-warnings Warnings and errors generated by Gtk+/GDK will halt the application." -msgstr "" - -#: lclstrconsts:rsgtkoptiondebug -msgid "--gtk-debug flags Turn on specific Gtk+ trace/debug messages." -msgstr "" - -#: lclstrconsts:rsgtkoptionnodebug -msgid "--gtk-no-debug flags Turn off specific Gtk+ trace/debug messages." -msgstr "" - -#: lclstrconsts:rsgdkoptiondebug -msgid "--gdk-debug flags Turn on specific GDK trace/debug messages." -msgstr "" - -#: lclstrconsts:rsgdkoptionnodebug -msgid "--gdk-no-debug flags Turn off specific GDK trace/debug messages." -msgstr "" - -#: lclstrconsts:rsgtkoptiondisplay -msgid "--display h:s:d Connect to the specified X server, where \"h\" is the hostname, \"s\" is the server number (usually 0), and \"d\" is the display number (typically omitted). If --display is not specified, the DISPLAY environment variable is used." -msgstr "" - -#: lclstrconsts:rsgtkoptionsync -msgid "--sync Call XSynchronize (display, True) after the Xserver connection has been established. This makes debugging X protocol errors easier, because X request buffering will be disabled and X errors will be received immediatey after the protocol request that generated the error has been processed by the X server." -msgstr "" - -#: lclstrconsts:rsgtkoptionnoxshm -msgid "--no-xshm Disable use of the X Shared Memory Extension." -msgstr "" - -#: lclstrconsts:rsgtkoptionname -msgid "--name programe Set program name to \"progname\". If not specified, program name will be set to ParamStr(0)." -msgstr "" - -#: lclstrconsts:rsgtkoptionclass -msgid "--class classname Following Xt conventions, the class of a program is the program name with the initial character capitalized. For example, the classname for gimp is \"Gimp\". If --class is specified, the class of the program will be set to \"classname\"." -msgstr "" - -#: lclstrconsts:rswin32warning -msgid "Warning:" -msgstr "" - -#: lclstrconsts:rswin32error -msgid "Error:" -msgstr "" - -#: lclstrconsts:sinvalidactionregistration -msgid "Invalid action registration" -msgstr "" - -#: lclstrconsts:sinvalidactionunregistration -msgid "Invalid action unregistration" -msgstr "" - -#: lclstrconsts:sinvalidactionenumeration -msgid "Invalid action enumeration" -msgstr "" - -#: lclstrconsts:sinvalidactioncreation -msgid "Invalid action creation" -msgstr "" - -#: lclstrconsts:smenunotfound -msgid "Sub-menu is not in menu" -msgstr "" - -#: lclstrconsts:smenuindexerror -msgid "Menu index out of range" -msgstr "" - -#: lclstrconsts:smenuitemisnil -msgid "MenuItem is nil" -msgstr "" - -#: lclstrconsts:snotimers -msgid "No timers available" -msgstr "" - -#: lclstrconsts:sinvalidindex -msgid "Invalid ImageList Index" -msgstr "" - -#: lclstrconsts:sinvalidimagesize -msgid "Invalid image size" -msgstr "" - -#: lclstrconsts:sduplicatemenus -msgid "Duplicate menus" -msgstr "" - -#: lclstrconsts:scannotfocus -msgid "Cannot focus a disabled or invisible window" -msgstr "" - -#: lclstrconsts:rslistmustbeempty -msgid "List must be empty" -msgstr "" - -#: lclstrconsts:rsinvalidpropertyvalue -msgid "Invalid property value" -msgstr "" - -#: lclstrconsts:rspropertydoesnotexist -msgid "Property %s does not exist" -msgstr "" - -#: lclstrconsts:rsinvalidstreamformat -msgid "Invalid stream format" -msgstr "" - -#: lclstrconsts:rserrorreadingproperty -msgid "Error reading %s%s%s: %s" -msgstr "" - -#: lclstrconsts:rsinvalidformobjectstream -msgid "invalid Form object stream" -msgstr "" - -#: lclstrconsts:rsscrollbaroutofrange -msgid "ScrollBar property out of range" -msgstr "" - -#: lclstrconsts:rsinvaliddate -msgid "Invalid Date : %s" -msgstr "" - -#: lclstrconsts:rsinvaliddaterangehint -msgid "Invalid Date: %s. Must be between %s and %s" -msgstr "" - -#: lclstrconsts:rserroroccurredinataddressframe -msgid "Error occurred in %s at %sAddress %s%s Frame %s" -msgstr "" - -#: lclstrconsts:rsexception -msgid "Exception" -msgstr "" - -#: lclstrconsts:rsformstreamingerror -msgid "Form streaming \"%s\" error: %s" -msgstr "" - -#: lclstrconsts:rsfixedcolstoobig -msgid "FixedCols can't be >= ColCount" -msgstr "" - -#: lclstrconsts:rsfixedrowstoobig -msgid "FixedRows can't be >= RowCount" -msgstr "" - -#: lclstrconsts:rsgridfiledoesnotexists -msgid "Grid file doesn't exists" -msgstr "" - -#: lclstrconsts:rsnotavalidgridfile -msgid "Not a valid grid file" -msgstr "" - -#: lclstrconsts:rsindexoutofrange -msgid "Index Out of range Cell[Col=%d Row=%d]" -msgstr "" - -#: lclstrconsts:rsgridindexoutofrange -msgid "Grid index out of range." -msgstr "" - -#: lclstrconsts:rserrorinlcl -msgid "ERROR in LCL: " -msgstr "" - -#: lclstrconsts:rscreatinggdbcatchableerror -msgid "Creating gdb catchable error:" -msgstr "" - -#: lclstrconsts:rsacontrolcannothaveitselfasparent -msgid "A control can't have itself as parent" -msgstr "" - -#: lclstrconsts:lislclresourcesnotfound -msgid "Resource %s not found" -msgstr "" - -#: lclstrconsts:rserrorcreatingdevicecontext -msgid "Error creating device context for %s.%s" +#: lclstrconsts:rswarningunremovedpaintmessages +msgid " WARNING: There are %s unremoved LM_PAINT/LM_GtkPAINT message links left." msgstr "" #: lclstrconsts:rsindexoutofbounds msgid "%s Index %d out of bounds 0-%d" msgstr "" -#: lclstrconsts:rsunknownpictureextension -msgid "Unknown picture extension" -msgstr "" - -#: lclstrconsts:rsbitmaps -msgid "Bitmaps" -msgstr "" - -#: lclstrconsts:rspixmap -msgid "Pixmap" -msgstr "" - -#: lclstrconsts:rsportablenetworkgraphic -msgid "Portable Network Graphic" -msgstr "" - -#: lclstrconsts:rsicon -msgid "Icon" -msgstr "" - -#: lclstrconsts:rsunsupportedclipboardformat -msgid "Unsupported clipboard format: %s" -msgstr "" - -#: lclstrconsts:rsgroupindexcannotbelessthanprevious -msgid "GroupIndex cannot be less than a previous menu item's GroupIndex" -msgstr "" - #: lclstrconsts:rsisalreadyassociatedwith msgid "%s is already associated with %s" msgstr "" -#: lclstrconsts:rscanvasdoesnotallowdrawing -msgid "Canvas does not allow drawing" -msgstr "" - -#: lclstrconsts:rsunsupportedbitmapformat -msgid "Unsupported bitmap format." -msgstr "" - -#: lclstrconsts:rsnowidgetset -msgid "No widgetset object. Plz check if the unit \"interfaces\" was added to the programs uses clause." -msgstr "" - #: lclstrconsts:rspressoktoignoreandriskdatacorruptionpresscanceltok msgid "%s%sPress Ok to ignore and risk data corruption.%sPress Cancel to kill the program." msgstr "" -#: lclstrconsts:rscannotfocus -msgid "Can not focus" -msgstr "" - -#: lclstrconsts:rslistindexexceedsbounds -msgid "List index exceeds bounds (%d)" -msgstr "" - -#: lclstrconsts:rsresourcenotfound -msgid "Resource %s not found" -msgstr "" - -#: lclstrconsts:rscalculator -msgid "Calculator" -msgstr "" - -#: lclstrconsts:rserror -msgid "Error" -msgstr "" - -#: lclstrconsts:rspickdate -msgid "Select a date" -msgstr "" - -#: lclstrconsts:rssize -msgid " size " -msgstr "" - -#: lclstrconsts:rsmodified -msgid " modified " -msgstr "" - -#: lclstrconsts:ifsvk_unknown -msgid "Unknown" -msgstr "" - -#: lclstrconsts:ifsvk_lbutton -msgid "Mouse Button Left" -msgstr "" - -#: lclstrconsts:ifsvk_rbutton -msgid "Mouse Button Right" -msgstr "" - -#: lclstrconsts:ifsvk_cancel -msgid "Cancel" -msgstr "" - -#: lclstrconsts:ifsvk_mbutton -msgid "Mouse Button Middle" -msgstr "" - -#: lclstrconsts:ifsvk_back -msgid "Backspace" -msgstr "" - -#: lclstrconsts:ifsvk_tab -msgid "Tab" -msgstr "" - -#: lclstrconsts:ifsvk_clear -msgid "Clear" -msgstr "" - -#: lclstrconsts:ifsvk_return -msgid "Return" -msgstr "" - -#: lclstrconsts:ifsvk_shift -msgid "Shift" -msgstr "" - -#: lclstrconsts:ifsvk_control -msgid "Control" -msgstr "" - -#: lclstrconsts:ifsvk_menu -msgid "Menu" -msgstr "" - -#: lclstrconsts:ifsvk_pause -msgid "Pause key" -msgstr "" - -#: lclstrconsts:ifsvk_capital -msgid "Capital" -msgstr "" - -#: lclstrconsts:ifsvk_kana -msgid "Kana" -msgstr "" - -#: lclstrconsts:ifsvk_junja -msgid "Junja" -msgstr "" - -#: lclstrconsts:ifsvk_final -msgid "Final" -msgstr "" - -#: lclstrconsts:ifsvk_hanja -msgid "Hanja" -msgstr "" - -#: lclstrconsts:ifsvk_escape -msgid "Escape" -msgstr "" - -#: lclstrconsts:ifsvk_convert -msgid "Convert" -msgstr "" - -#: lclstrconsts:ifsvk_nonconvert -msgid "Nonconvert" -msgstr "" - -#: lclstrconsts:ifsvk_accept -msgid "Accept" -msgstr "" - -#: lclstrconsts:ifsvk_modechange -msgid "Mode Change" -msgstr "" - -#: lclstrconsts:ifsvk_space -msgid "Space key" -msgstr "" - -#: lclstrconsts:ifsvk_prior -msgid "Prior" -msgstr "" - -#: lclstrconsts:ifsvk_next -msgid "Next" -msgstr "" - -#: lclstrconsts:ifsvk_end -msgid "End" -msgstr "" - -#: lclstrconsts:ifsvk_home -msgid "Home" -msgstr "" - -#: lclstrconsts:ifsvk_left -msgid "Left" -msgstr "" - -#: lclstrconsts:ifsvk_up -msgid "Up" -msgstr "" - -#: lclstrconsts:ifsvk_right -msgid "Right" -msgstr "" - -#: lclstrconsts:ifsvk_down -msgid "Down" -msgstr "" - -#: lclstrconsts:ifsvk_select -msgid "Select" -msgstr "" - -#: lclstrconsts:ifsvk_print -msgid "Print" -msgstr "" - -#: lclstrconsts:ifsvk_execute -msgid "Execute" -msgstr "" - -#: lclstrconsts:ifsvk_snapshot -msgid "Snapshot" -msgstr "" - -#: lclstrconsts:ifsvk_insert -msgid "Insert" -msgstr "" - -#: lclstrconsts:ifsvk_delete -msgid "Delete" -msgstr "" - -#: lclstrconsts:ifsvk_help -msgid "Help" -msgstr "" - -#: lclstrconsts:rswholewordsonly -msgid "Whole words only" -msgstr "" - -#: lclstrconsts:rscasesensitive -msgid "Case sensitive" -msgstr "" - -#: lclstrconsts:rstext -msgid "Text" -msgstr "" - -#: lclstrconsts:rsdirection -msgid "Direction" -msgstr "" - -#: lclstrconsts:rsforward -msgid "Forward" -msgstr "" - -#: lclstrconsts:rsbackward -msgid "Backward" -msgstr "" - -#: lclstrconsts:ifsvk_lwin -msgid "left windows key" -msgstr "" - -#: lclstrconsts:ifsvk_rwin -msgid "right windows key" -msgstr "" - -#: lclstrconsts:ifsvk_apps -msgid "application key" -msgstr "" - -#: lclstrconsts:ifsvk_numpad -msgid "Numpad %d" -msgstr "" - -#: lclstrconsts:ifsvk_numlock -msgid "Numlock" -msgstr "" - -#: lclstrconsts:ifsvk_scroll -msgid "Scroll" -msgstr "" - -#: lclstrconsts:rsdocking -msgid "Docking" -msgstr "" - -#: lclstrconsts:rshelphelpnodehasnohelpdatabase -msgid "Help node %s%s%s has no Help Database" -msgstr "" - -#: lclstrconsts:rshelpthereisnoviewerforhelptype -msgid "There is no viewer for help type %s%s%s" -msgstr "" - -#: lclstrconsts:rshelphelpdatabasedidnotfoundaviewerforahelppageoftype -msgid "Help Database %s%s%s did not found a viewer for a help page of type %s" -msgstr "" - #: lclstrconsts:rshelpalreadyregistered msgid "%s: Already registered" msgstr "" @@ -706,16 +46,348 @@ msgstr "" msgid "%s: Not registered" msgstr "" +#: lclstrconsts:rsmball +msgid "&All" +msgstr "" + +#: lclstrconsts:rsmbclose +msgid "&Close" +msgstr "" + +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + +#: lclstrconsts:rsmbhelp +msgid "&Help" +msgstr "" + +#: lclstrconsts:rsmbignore +msgid "&Ignore" +msgstr "" + +#: lclstrconsts:rsmbno +msgid "&No" +msgstr "" + +#: lclstrconsts:rsmbok +msgid "&OK" +msgstr "" + +#: lclstrconsts:rsmbretry +msgid "&Retry" +msgstr "" + +#: lclstrconsts:rsmbyes +msgid "&Yes" +msgstr "" + +#: lclstrconsts:rsfileinfofilenotfound +msgid "(file not found: \"%s\")" +msgstr "" + +#: lclstrconsts:rsgtkoptionclass +msgid "--class classname Following Xt conventions, the class of a program is the program name with the initial character capitalized. For example, the classname for gimp is \"Gimp\". If --class is specified, the class of the program will be set to \"classname\"." +msgstr "" + +#: lclstrconsts:rsgtkoptiondisplay +msgid "--display h:s:d Connect to the specified X server, where \"h\" is the hostname, \"s\" is the server number (usually 0), and \"d\" is the display number (typically omitted). If --display is not specified, the DISPLAY environment variable is used." +msgstr "" + +#: lclstrconsts:rsgoptionfatalwarnings +msgid "--g-fatal-warnings Warnings and errors generated by Gtk+/GDK will halt the application." +msgstr "" + +#: lclstrconsts:rsgdkoptiondebug +msgid "--gdk-debug flags Turn on specific GDK trace/debug messages." +msgstr "" + +#: lclstrconsts:rsgdkoptionnodebug +msgid "--gdk-no-debug flags Turn off specific GDK trace/debug messages." +msgstr "" + +#: lclstrconsts:rsgtkoptiondebug +msgid "--gtk-debug flags Turn on specific Gtk+ trace/debug messages." +msgstr "" + +#: lclstrconsts:rsgtkoptionmodule +msgid "--gtk-module module Load the specified module at startup." +msgstr "" + +#: lclstrconsts:rsgtkoptionnodebug +msgid "--gtk-no-debug flags Turn off specific Gtk+ trace/debug messages." +msgstr "" + +#: lclstrconsts:rsgtkoptionnotransient +msgid "--lcl-no-transient Do not set transient order for modal forms" +msgstr "" + +#: lclstrconsts:rsgtkoptionname +msgid "--name programe Set program name to \"progname\". If not specified, program name will be set to ParamStr(0)." +msgstr "" + +#: lclstrconsts:rsgtkoptionnoxshm +msgid "--no-xshm Disable use of the X Shared Memory Extension." +msgstr "" + +#: lclstrconsts:rsgtkoptionsync +msgid "--sync Call XSynchronize (display, True) after the Xserver connection has been established. This makes debugging X protocol errors easier, because X request buffering will be disabled and X errors will be received immediatey after the protocol request that generated the error has been processed by the X server." +msgstr "" + +#: lclstrconsts:rsacontrolcannothaveitselfasparent +msgid "A control can't have itself as parent" +msgstr "" + +#: lclstrconsts:rsmbabort +msgid "Abort" +msgstr "" + +#: lclstrconsts:ifsvk_accept +msgid "Accept" +msgstr "" + +#: lclstrconsts:rsallfiles +msgid "All files (%s)|%s|%s" +msgstr "" + +#: lclstrconsts:ifsvk_back +msgid "Backspace" +msgstr "" + +#: lclstrconsts:rsbackward +msgid "Backward" +msgstr "" + +#: lclstrconsts:rsbitmaps +msgid "Bitmaps" +msgstr "" + +#: lclstrconsts:rsblank +msgid "Blank" +msgstr "" + +#: lclstrconsts:hhshelpbrowsernotexecutable +msgid "Browser %s%s%s not executable." +msgstr "" + +#: lclstrconsts:hhshelpbrowsernotfound +msgid "Browser %s%s%s not found." +msgstr "" + +#: lclstrconsts:rscalculator +msgid "Calculator" +msgstr "" + +#: lclstrconsts:rscannotfocus +msgid "Can not focus" +msgstr "" + +#: lclstrconsts:rsmbcancel +msgid "Cancel" +msgstr "" + +#: lclstrconsts:scannotfocus +msgid "Cannot focus a disabled or invisible window" +msgstr "" + +#: lclstrconsts:rscanvasdoesnotallowdrawing +msgid "Canvas does not allow drawing" +msgstr "" + +#: lclstrconsts:ifsvk_capital +msgid "Capital" +msgstr "" + +#: lclstrconsts:rscasesensitive +msgid "Case sensitive" +msgstr "" + +#: lclstrconsts:ifsvk_clear +msgid "Clear" +msgstr "" + +#: lclstrconsts:rsmtconfirmation +msgid "Confirmation" +msgstr "" + +#: lclstrconsts:ifsvk_control +msgid "Control" +msgstr "" + +#: lclstrconsts:ifsvk_convert +msgid "Convert" +msgstr "" + +#: lclstrconsts:rscreatinggdbcatchableerror +msgid "Creating gdb catchable error:" +msgstr "" + +#: lclstrconsts:rsmtcustom +msgid "Custom" +msgstr "" + +#: lclstrconsts:ifsvk_delete +msgid "Delete" +msgstr "" + +#: lclstrconsts:rsdirection +msgid "Direction" +msgstr "" + +#: lclstrconsts:rsfddirectorymustexist +msgid "Directory must exist" +msgstr "" + +#: lclstrconsts:rsdocking +msgid "Docking" +msgstr "" + +#: lclstrconsts:ifsvk_down +msgid "Down" +msgstr "" + +#: lclstrconsts:sduplicatemenus +msgid "Duplicate menus" +msgstr "" + +#: lclstrconsts:rserrorinlcl +msgid "ERROR in LCL: " +msgstr "" + +#: lclstrconsts:ifsvk_end +msgid "End" +msgstr "" + +#: lclstrconsts:rsmterror +msgid "Error" +msgstr "" + +#: lclstrconsts:rserrorcreatingdevicecontext +msgid "Error creating device context for %s.%s" +msgstr "" + +#: lclstrconsts:rserroroccurredinataddressframe +msgid "Error occurred in %s at %sAddress %s%s Frame %s" +msgstr "" + +#: lclstrconsts:rserrorreadingproperty +msgid "Error reading %s%s%s: %s" +msgstr "" + +#: lclstrconsts:hhshelperrorwhileexecuting +msgid "Error while executing %s%s%s:%s%s" +msgstr "" + +#: lclstrconsts:rswin32error +msgid "Error:" +msgstr "" + +#: lclstrconsts:ifsvk_escape +msgid "Escape" +msgstr "" + +#: lclstrconsts:rsexception +msgid "Exception" +msgstr "" + +#: lclstrconsts:ifsvk_execute +msgid "Execute" +msgstr "" + +#: lclstrconsts:rsfileinformation +msgid "File information" +msgstr "" + +#: lclstrconsts:rsfdfilereadonlytitle +msgid "File is not writable" +msgstr "" + +#: lclstrconsts:rsfdfilemustexist +msgid "File must exist" +msgstr "" + +#: lclstrconsts:rsgtkfilter +msgid "Filter:" +msgstr "" + +#: lclstrconsts:ifsvk_final +msgid "Final" +msgstr "" + +#: lclstrconsts:rsfind +msgid "Find" +msgstr "" + +#: lclstrconsts:rsfindmore +msgid "Find more" +msgstr "" + +#: lclstrconsts:rsfixedcolstoobig +msgid "FixedCols can't be >= ColCount" +msgstr "" + +#: lclstrconsts:rsfixedrowstoobig +msgid "FixedRows can't be >= RowCount" +msgstr "" + +#: lclstrconsts:rsformstreamingerror +msgid "Form streaming \"%s\" error: %s" +msgstr "" + +#: lclstrconsts:rsforward +msgid "Forward" +msgstr "" + +#: lclstrconsts:rsgridfiledoesnotexists +msgid "Grid file doesn't exists" +msgstr "" + +#: lclstrconsts:rsgridindexoutofrange +msgid "Grid index out of range." +msgstr "" + +#: lclstrconsts:rsgroupindexcannotbelessthanprevious +msgid "GroupIndex cannot be less than a previous menu item's GroupIndex" +msgstr "" + +#: lclstrconsts:ifsvk_hanja +msgid "Hanja" +msgstr "" + +#: lclstrconsts:ifsvk_help +msgid "Help" +msgstr "" + +#: lclstrconsts:rshelpcontextnotfound +msgid "Help Context not found" +msgstr "" + +#: lclstrconsts:rshelphelpdatabasedidnotfoundaviewerforahelppageoftype +msgid "Help Database %s%s%s did not found a viewer for a help page of type %s" +msgstr "" + #: lclstrconsts:rshelphelpdatabasenotfound msgid "Help Database %s%s%s not found" msgstr "" -#: lclstrconsts:rshelphelpkeywordnotfoundindatabase -msgid "Help keyword %s%s%s not found in Database %s%s%s." +#: lclstrconsts:rshelpdatabasenotfound +msgid "Help Database not found" msgstr "" -#: lclstrconsts:rshelphelpkeywordnotfound -msgid "Help keyword %s%s%s not found." +#: lclstrconsts:rshelperror +msgid "Help Error" +msgstr "" + +#: lclstrconsts:rshelpselectorerror +msgid "Help Selector Error" +msgstr "" + +#: lclstrconsts:rshelpviewererror +msgid "Help Viewer Error" +msgstr "" + +#: lclstrconsts:rshelpviewernotfound +msgid "Help Viewer not found" msgstr "" #: lclstrconsts:rshelphelpcontextnotfoundindatabase @@ -726,6 +398,146 @@ msgstr "" msgid "Help context %s not found." msgstr "" +#: lclstrconsts:rshelphelpkeywordnotfoundindatabase +msgid "Help keyword %s%s%s not found in Database %s%s%s." +msgstr "" + +#: lclstrconsts:rshelphelpkeywordnotfound +msgid "Help keyword %s%s%s not found." +msgstr "" + +#: lclstrconsts:rshelphelpnodehasnohelpdatabase +msgid "Help node %s%s%s has no Help Database" +msgstr "" + +#: lclstrconsts:rshelpnotfound +msgid "Help not found" +msgstr "" + +#: lclstrconsts:rsgtkhistory +msgid "History:" +msgstr "" + +#: lclstrconsts:ifsvk_home +msgid "Home" +msgstr "" + +#: lclstrconsts:rsicon +msgid "Icon" +msgstr "" + +#: lclstrconsts:rsindexoutofrange +msgid "Index Out of range Cell[Col=%d Row=%d]" +msgstr "" + +#: lclstrconsts:rsmtinformation +msgid "Information" +msgstr "" + +#: lclstrconsts:ifsvk_insert +msgid "Insert" +msgstr "" + +#: lclstrconsts:rsinvaliddate +msgid "Invalid Date : %s" +msgstr "" + +#: lclstrconsts:rsinvaliddaterangehint +msgid "Invalid Date: %s. Must be between %s and %s" +msgstr "" + +#: lclstrconsts:sinvalidindex +msgid "Invalid ImageList Index" +msgstr "" + +#: lclstrconsts:sinvalidactioncreation +msgid "Invalid action creation" +msgstr "" + +#: lclstrconsts:sinvalidactionenumeration +msgid "Invalid action enumeration" +msgstr "" + +#: lclstrconsts:sinvalidactionregistration +msgid "Invalid action registration" +msgstr "" + +#: lclstrconsts:sinvalidactionunregistration +msgid "Invalid action unregistration" +msgstr "" + +#: lclstrconsts:sinvalidimagesize +msgid "Invalid image size" +msgstr "" + +#: lclstrconsts:rsinvalidpropertyvalue +msgid "Invalid property value" +msgstr "" + +#: lclstrconsts:rsinvalidstreamformat +msgid "Invalid stream format" +msgstr "" + +#: lclstrconsts:ifsvk_junja +msgid "Junja" +msgstr "" + +#: lclstrconsts:ifsvk_kana +msgid "Kana" +msgstr "" + +#: lclstrconsts:ifsvk_left +msgid "Left" +msgstr "" + +#: lclstrconsts:rslistindexexceedsbounds +msgid "List index exceeds bounds (%d)" +msgstr "" + +#: lclstrconsts:rslistmustbeempty +msgid "List must be empty" +msgstr "" + +#: lclstrconsts:ifsvk_menu +msgid "Menu" +msgstr "" + +#: lclstrconsts:smenuindexerror +msgid "Menu index out of range" +msgstr "" + +#: lclstrconsts:smenuitemisnil +msgid "MenuItem is nil" +msgstr "" + +#: lclstrconsts:ifsvk_modechange +msgid "Mode Change" +msgstr "" + +#: lclstrconsts:ifsvk_lbutton +msgid "Mouse Button Left" +msgstr "" + +#: lclstrconsts:ifsvk_mbutton +msgid "Mouse Button Middle" +msgstr "" + +#: lclstrconsts:ifsvk_rbutton +msgid "Mouse Button Right" +msgstr "" + +#: lclstrconsts:ifsvk_next +msgid "Next" +msgstr "" + +#: lclstrconsts:hhshelpnohtmlbrowserfoundpleasedefineoneinhelpconfigurehe +msgid "No HTML Browser found.%sPlease define one in Help -> Configure Help -> Viewers" +msgstr "" + +#: lclstrconsts:snomdiform +msgid "No MDI form present." +msgstr "" + #: lclstrconsts:rshelpnohelpfoundforsource msgid "No help found for line %d, column %d of %s." msgstr "" @@ -734,36 +546,160 @@ msgstr "" msgid "No help nodes available" msgstr "" -#: lclstrconsts:rshelperror -msgid "Help Error" +#: lclstrconsts:snotimers +msgid "No timers available" msgstr "" -#: lclstrconsts:rshelpdatabasenotfound -msgid "Help Database not found" +#: lclstrconsts:rsmbnotoall +msgid "No to all" msgstr "" -#: lclstrconsts:rshelpcontextnotfound -msgid "Help Context not found" +#: lclstrconsts:rsnowidgetset +msgid "No widgetset object. Plz check if the unit \"interfaces\" was added to the programs uses clause." msgstr "" -#: lclstrconsts:rshelpviewernotfound -msgid "Help Viewer not found" +#: lclstrconsts:ifsvk_nonconvert +msgid "Nonconvert" msgstr "" -#: lclstrconsts:rshelpnotfound -msgid "Help not found" +#: lclstrconsts:rsnotavalidgridfile +msgid "Not a valid grid file" msgstr "" -#: lclstrconsts:rshelpviewererror -msgid "Help Viewer Error" +#: lclstrconsts:ifsvk_numlock +msgid "Numlock" msgstr "" -#: lclstrconsts:rshelpselectorerror -msgid "Help Selector Error" +#: lclstrconsts:ifsvk_numpad +msgid "Numpad %d" msgstr "" -#: lclstrconsts:rsunknownerrorpleasereportthisbug -msgid "Unknown Error, please report this bug" +#: lclstrconsts:rsfdopenfile +msgid "Open existing file" +msgstr "" + +#: lclstrconsts:rsfdoverwritefile +msgid "Overwrite file ?" +msgstr "" + +#: lclstrconsts:rsfdpathmustexist +msgid "Path must exist" +msgstr "" + +#: lclstrconsts:ifsvk_pause +msgid "Pause key" +msgstr "" + +#: lclstrconsts:rspixmap +msgid "Pixmap" +msgstr "" + +#: lclstrconsts:rsportablenetworkgraphic +msgid "Portable Network Graphic" +msgstr "" + +#: lclstrconsts:ifsvk_print +msgid "Print" +msgstr "" + +#: lclstrconsts:ifsvk_prior +msgid "Prior" +msgstr "" + +#: lclstrconsts:rspropertydoesnotexist +msgid "Property %s does not exist" +msgstr "" + +#: lclstrconsts:rsreplace +msgid "Replace" +msgstr "" + +#: lclstrconsts:rsreplaceall +msgid "Replace all" +msgstr "" + +#: lclstrconsts:lislclresourcesnotfound +msgid "Resource %s not found" +msgstr "" + +#: lclstrconsts:ifsvk_return +msgid "Return" +msgstr "" + +#: lclstrconsts:ifsvk_right +msgid "Right" +msgstr "" + +#: lclstrconsts:rsfdfilesaveas +msgid "Save file as" +msgstr "" + +#: lclstrconsts:ifsvk_scroll +msgid "Scroll" +msgstr "" + +#: lclstrconsts:rsscrollbaroutofrange +msgid "ScrollBar property out of range" +msgstr "" + +#: lclstrconsts:ifsvk_select +msgid "Select" +msgstr "" + +#: lclstrconsts:rsfdselectdirectory +msgid "Select Directory" +msgstr "" + +#: lclstrconsts:rspickdate +msgid "Select a date" +msgstr "" + +#: lclstrconsts:rsselectfonttitle +msgid "Select a font" +msgstr "" + +#: lclstrconsts:rsselectcolortitle +msgid "Select color" +msgstr "" + +#: lclstrconsts:ifsvk_shift +msgid "Shift" +msgstr "" + +#: lclstrconsts:ifsvk_snapshot +msgid "Snapshot" +msgstr "" + +#: lclstrconsts:ifsvk_space +msgid "Space key" +msgstr "" + +#: lclstrconsts:smenunotfound +msgid "Sub-menu is not in menu" +msgstr "" + +#: lclstrconsts:ifsvk_tab +msgid "Tab" +msgstr "" + +#: lclstrconsts:rstext +msgid "Text" +msgstr "" + +#: lclstrconsts:rsfddirectorynotexist +msgid "The directory \"%s\" does not exist." +msgstr "" + +#: lclstrconsts:rsfdfilealreadyexists +msgid "The file \"%s\" already exists. Overwrite ?" +msgstr "" + +#: lclstrconsts:rsfdfilenotexist +msgid "The file \"%s\" does not exist." +msgstr "" + +#: lclstrconsts:rsfdfilereadonly +msgid "The file \"%s\" is not writable." msgstr "" #: lclstrconsts:hhshelpthehelpdatabasewasunabletofindfile @@ -774,23 +710,79 @@ msgstr "" msgid "The macro %s in BrowserParams will be replaced by the URL." msgstr "" -#: lclstrconsts:hhshelpnohtmlbrowserfoundpleasedefineoneinhelpconfigurehe -msgid "No HTML Browser found.%sPlease define one in Help -> Configure Help -> Viewers" +#: lclstrconsts:rsfdpathnoexist +msgid "The path \"%s\" does not exist." +msgstr "" + +#: lclstrconsts:rshelpthereisnoviewerforhelptype +msgid "There is no viewer for help type %s%s%s" msgstr "" #: lclstrconsts:hhshelpnohtmlbrowserfound msgid "Unable to find a HTML browser." msgstr "" -#: lclstrconsts:hhshelpbrowsernotfound -msgid "Browser %s%s%s not found." +#: lclstrconsts:rsunabletoloaddefaultfont +msgid "Unable to load default font" msgstr "" -#: lclstrconsts:hhshelpbrowsernotexecutable -msgid "Browser %s%s%s not executable." +#: lclstrconsts:ifsvk_unknown +msgid "Unknown" msgstr "" -#: lclstrconsts:hhshelperrorwhileexecuting -msgid "Error while executing %s%s%s:%s%s" +#: lclstrconsts:rsunknownerrorpleasereportthisbug +msgid "Unknown Error, please report this bug" +msgstr "" + +#: lclstrconsts:rsunknownpictureextension +msgid "Unknown picture extension" +msgstr "" + +#: lclstrconsts:rsunsupportedbitmapformat +msgid "Unsupported bitmap format." +msgstr "" + +#: lclstrconsts:rsunsupportedclipboardformat +msgid "Unsupported clipboard format: %s" +msgstr "" + +#: lclstrconsts:ifsvk_up +msgid "Up" +msgstr "" + +#: lclstrconsts:rsmtwarning +msgid "Warning" +msgstr "" + +#: lclstrconsts:rswin32warning +msgid "Warning:" +msgstr "" + +#: lclstrconsts:rswholewordsonly +msgid "Whole words only" +msgstr "" + +#: lclstrconsts:rsmbyestoall +msgid "Yes to &All" +msgstr "" + +#: lclstrconsts:ifsvk_apps +msgid "application key" +msgstr "" + +#: lclstrconsts:rsinvalidformobjectstream +msgid "invalid Form object stream" +msgstr "" + +#: lclstrconsts:ifsvk_lwin +msgid "left windows key" +msgstr "" + +#: lclstrconsts:rsdefaultfileinfovalue +msgid "permissions user group size date time" +msgstr "" + +#: lclstrconsts:ifsvk_rwin +msgid "right windows key" msgstr "" diff --git a/lcl/languages/lclstrconsts.ru.po b/lcl/languages/lclstrconsts.ru.po index 2037c0cf03..248b3ab239 100644 --- a/lcl/languages/lclstrconsts.ru.po +++ b/lcl/languages/lclstrconsts.ru.po @@ -65,6 +65,10 @@ msgstr "&Все" msgid "&Close" msgstr "&Закрыть" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "&Справка" diff --git a/lcl/languages/lclstrconsts.ua.po b/lcl/languages/lclstrconsts.ua.po index 6be71b3ca1..0d0180716c 100644 --- a/lcl/languages/lclstrconsts.ua.po +++ b/lcl/languages/lclstrconsts.ua.po @@ -54,6 +54,10 @@ msgstr "&Всі" msgid "&Close" msgstr "&Закрити" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "&Довідка" diff --git a/lcl/languages/lclstrconsts.zh-cn.po b/lcl/languages/lclstrconsts.zh-cn.po index 34fffde1c7..ef10e13cf1 100644 --- a/lcl/languages/lclstrconsts.zh-cn.po +++ b/lcl/languages/lclstrconsts.zh-cn.po @@ -67,6 +67,10 @@ msgstr "所有(&A)" msgid "&Close" msgstr "关闭(&C)" +#: lclstrconsts:rsdirectory +msgid "&Directory" +msgstr "" + #: lclstrconsts:rsmbhelp msgid "&Help" msgstr "帮助(&H)"