mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-21 22:59:27 +02:00
updated strings for buildlazdialog
git-svn-id: trunk@11281 -
This commit is contained in:
parent
be94d619f3
commit
4d7849a2d3
@ -1154,50 +1154,50 @@ procedure TBuildLazarusOptions.CreateDefaults;
|
||||
begin
|
||||
// LCL
|
||||
FItemLCL:=TBuildLazarusItem.Create(
|
||||
'LCL',lisBuildLCL,'lcl',mmCleanBuild);
|
||||
'LCL',lisLCL,'lcl',mmCleanBuild);
|
||||
FItems.Add(FItemLCL);
|
||||
|
||||
// SynEdit
|
||||
FItemSynEdit:=TBuildLazarusItem.Create(
|
||||
'SynEdit',lisBuildSynEdit,'components/synedit',mmBuild);
|
||||
'SynEdit',lisSynEdit,'components/synedit',mmBuild);
|
||||
FItems.Add(FItemSynEdit);
|
||||
|
||||
// CodeTools
|
||||
FItemCodeTools:=TBuildLazarusItem.Create(
|
||||
'CodeTools',lisBuildCodeTools,'components/codetools',mmBuild);
|
||||
'CodeTools',lisCodeTools,'components/codetools',mmBuild);
|
||||
FItems.Add(FItemCodeTools);
|
||||
|
||||
// package registration units
|
||||
FItemPkgReg:=TBuildLazarusItem.Create(
|
||||
'PackageRegistration',lisBuildPkgReg,'packager/registration',
|
||||
'PackageRegistration',lisPkgReg,'packager/registration',
|
||||
mmBuild);
|
||||
FItems.Add(FItemPkgReg);
|
||||
|
||||
// IDE Interface
|
||||
FItemIDEIntf:=TBuildLazarusItem.Create(
|
||||
'IDEIntf',lisBuildIDEIntf,'ideintf',mmBuild);
|
||||
'IDEIntf',lisIDEIntf,'ideintf',mmBuild);
|
||||
FItems.Add(FItemIDEIntf);
|
||||
|
||||
// JITForm
|
||||
FItemJITForm:=TBuildLazarusItem.Create(
|
||||
'JITForm',lisBuildJITForm,'designer/jitform',mmBuild);
|
||||
'JITForm',lisJITForm,'designer/jitform',mmBuild);
|
||||
FItems.Add(FItemJITForm);
|
||||
|
||||
// IDE
|
||||
FItemIDE:=TBuildLazarusItem.Create('IDE',lisBuildIDE,'',mmBuild);
|
||||
FItemIDE:=TBuildLazarusItem.Create('IDE',lisIDE,'',mmBuild);
|
||||
FItemIDE.Commands[mmBuild]:='ide';
|
||||
FItemIDE.Commands[mmCleanBuild]:='cleanide ide';
|
||||
FItems.Add(FItemIDE);
|
||||
|
||||
// Starter
|
||||
FItemStarter:=TBuildLazarusItem.Create('Starter',lisBuildStarter,'',mmBuild);
|
||||
FItemStarter:=TBuildLazarusItem.Create('Starter',lisStarter,'',mmBuild);
|
||||
FItemStarter.Commands[mmBuild]:='starter';
|
||||
FItemStarter.Commands[mmCleanBuild]:='starter';
|
||||
FItems.Add(FItemStarter);
|
||||
|
||||
// Examples
|
||||
FItemExamples:=TBuildLazarusItem.Create(
|
||||
'Examples',lisBuildExamples,'examples',mmBuild);
|
||||
'Examples',lisExamples,'examples',mmBuild);
|
||||
FItems.Add(FItemExamples);
|
||||
end;
|
||||
|
||||
|
@ -1885,19 +1885,18 @@ resourcestring
|
||||
lisTheProgramMakeWasNotFoundThisToolIsNeededToBuildLa = 'The program %smake%'
|
||||
+'s was not found.%sThis tool is needed to build lazarus.%s';
|
||||
lisCompileIDEWithoutLinking = 'Compile IDE (without linking)';
|
||||
lisBuildLCL = 'Build LCL';
|
||||
lisBuildComponent = 'Build Component';
|
||||
lisBuildCodeTools = 'Build CodeTools';
|
||||
lisBuildSynEdit = 'Build SynEdit';
|
||||
lisBuildIDEIntf = 'Build IDE Interface';
|
||||
lisBuildJITForm = 'Build JIT Form';
|
||||
lisBuildPkgReg = 'Build Package Registration';
|
||||
lisBuildIDE = 'Build IDE';
|
||||
lisBuildStarter = 'Build Starter';
|
||||
lisBuildExamples = 'Build Examples';
|
||||
lisLCL = 'LCL';
|
||||
lisComponent = 'Component';
|
||||
lisCodeTools = 'CodeTools';
|
||||
lisSynEdit = 'SynEdit';
|
||||
lisIDEIntf = 'IDE Interface';
|
||||
lisJITForm = 'JIT Form';
|
||||
lisPkgReg = 'Package Registration';
|
||||
lisIDE = 'IDE';
|
||||
lisStarter = 'Starter';
|
||||
lisExamples = 'Examples';
|
||||
lisConfigureBuildLazarus = 'Configure %sBuild Lazarus%s';
|
||||
lisLazBuildCleanAll = 'Clean all';
|
||||
lisLazBuildSetToBuildAll = 'Set to %sBuild All%s';
|
||||
lisLazBuildBuildComponentsSynEditCodeTools = 'Build Components (SynEdit, '
|
||||
+'CodeTools)';
|
||||
lisLazBuildBuildSynEdit = 'Build SynEdit';
|
||||
|
@ -8116,6 +8116,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9136,6 +9140,10 @@ msgstr ""
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -8113,6 +8113,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9133,6 +9137,10 @@ msgstr ""
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -8113,6 +8113,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "L'aplicació amfitriona %s%s%s no és executable"
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9133,6 +9137,10 @@ msgstr "Utilització"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Utilitza Ansi Strings"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -8115,6 +8115,10 @@ msgstr "Die folgenden Units wurden nicht gefunden: %s%s%s%s1) Entweder sind sie
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "Die Hostapplikation %s%s%s ist nicht ausführbar"
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr "Das ausführende Programm %s%s%s%sist nicht vorhanden oder nicht ausführbar.%s%sSiehe Start -> Startparameter -> Lokal"
|
||||
@ -9135,6 +9139,10 @@ msgstr "Bedienung"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Ansi-Strings verwenden"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr "Exclude-Filter anwenden"
|
||||
|
@ -8112,6 +8112,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "La aplicación huésped %s%s%s no es ejecutable."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9132,6 +9136,10 @@ msgstr "Uso"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Usar Ansi Strings"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -8102,6 +8102,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9122,6 +9126,10 @@ msgstr ""
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -8115,6 +8115,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "L'application hôte %s%s%s n'est pas exécutable."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9135,6 +9139,10 @@ msgstr "Utilisation"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Utiliser les chaînes ANSI"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -8113,6 +8113,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9133,6 +9137,10 @@ msgstr ""
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -8113,6 +8113,10 @@ msgstr "Unit berikut tidak ditemukan:%s%s%s%s1) Unit ini tidak dalam path unit,
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "Aplikasi induk %s%s%s bukan eksekutabel."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr "Menjalankan aplikasi %s%s%s%stidak ada atau bukan yang bisa dijalankan.%s%sLihat Jalankan -> Parameter menjalankan -> Lokal"
|
||||
@ -9133,6 +9137,10 @@ msgstr "Penggunaan"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Gunakan Ansi Strings"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr "Gunakan Filter Kekecualian"
|
||||
|
@ -8114,6 +8114,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "L'applicazione host %s%s%s non è eseguibile"
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr "L'applicazione di partenza %s%s%s%snon esiste o non è eseguibile.%s%sVedere Esegui -> parametri di esecuzione -> Locale"
|
||||
@ -9134,6 +9138,10 @@ msgstr "Uso"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Usa stringhe Ansi"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr "Utilizza il filtro di esclusione"
|
||||
|
@ -8112,6 +8112,10 @@ msgstr "以下のユニットが見つかりませんでした:%s%s%s%s1)そ
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "そのホストアプリケーション%s%s%sは実行ファイルではありません。"
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr "起動しようとしているアプリケーション%s%s%s%sは存在しないか、実行ファイルではありません。実行→実行パラメータ→ローカル を参照のこと"
|
||||
@ -9132,6 +9136,10 @@ msgstr "使用"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Ansi 文字列を使用"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr "除外フィルタを使用"
|
||||
|
@ -8113,6 +8113,10 @@ msgstr "De volgende units werden niet gevonden:%s%s%s%s1) Deze units bevinden zi
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "Het \"host\" programma %s%s%s is niet uitvoerbaar."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr "Het startende programma %s%s%s%sbestaat niet of is niet uitvoerbaar.%s%sZie Starten -> Start paramaters -> Lokaal"
|
||||
@ -9133,6 +9137,10 @@ msgstr "Gebruik"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Gebruik ANSI strings"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr "Gebruik \"uitsluit\" filter"
|
||||
|
@ -8105,6 +8105,10 @@ msgstr "As seguintes unidades não foram encontradas:%s%s%s%s1) Essas unidades
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "A Aplicação hospedeira %s%s%s não é um executável."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr "A aplicação %s%s%s%s não existe ou não é um executável.%s%sVeja Executar -> Parâmetros de Execução -> Local"
|
||||
@ -9125,6 +9129,10 @@ msgstr "Uso"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Usar Sequências de Caracteres Ansi"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr "Usar Filtro Exclusor"
|
||||
|
@ -8117,6 +8117,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "Aplikacja hosta %s%s%s nie jest wykonywalna."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9137,6 +9141,10 @@ msgstr "Użycie"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Używaj napisów typu Ansi"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -8113,6 +8113,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "Aplikacja hosta %s%s%s nie jest wykonywalna."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9133,6 +9137,10 @@ msgstr "U
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "U¿ywaj napisów typu Ansi"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -8113,6 +8113,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "Aplikacja hosta %s%s%s nie jest wykonywalna."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
@ -9133,6 +9137,10 @@ msgstr "U
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "U¿ywaj napisów typu Ansi"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr ""
|
||||
|
@ -3894,6 +3894,10 @@ msgstr ""
|
||||
msgid "Target file name:"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:dlgautocreateforms
|
||||
msgid "Auto-create forms:"
|
||||
msgstr ""
|
||||
@ -7482,6 +7486,10 @@ msgstr ""
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisdebuggerinvalid
|
||||
msgid "Debugger invalid"
|
||||
msgstr ""
|
||||
|
@ -8113,6 +8113,10 @@ msgstr "Следующие модули не были найдены:%s%s%s%s1)
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "Главное приложение %s%s%s - не исполняемый файл."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr "Запускающее приложение %s%s%s%не существует или не является исполнимым файлом.%s%sСм. Запуск -> Параметры запуска... -> Локальные"
|
||||
@ -9133,6 +9137,10 @@ msgstr "Использование"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Использовать строки Ansi"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr "Использовать Исключающий фильтр"
|
||||
|
@ -8102,6 +8102,10 @@ msgstr ""
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "Головна програма %s%s%s не є виконуваним файлом."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr "Виконувана програма %s%s%s%sне існує або не є виконуваною.%s%sДивіться -> Запуск -> Параметри запуску -> Локальні"
|
||||
@ -9122,6 +9126,10 @@ msgstr "Використання"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "Використовувати рядки Ansi"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr "Використовувати фільтр виключень"
|
||||
|
@ -8116,6 +8116,10 @@ msgstr "下面的单元未找到:%s%s%s%s1) 单元没有在单元目录下, 那
|
||||
msgid "The host application %s%s%s is not executable."
|
||||
msgstr "宿主程序 %s%s%s 不是可执行程序."
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationbundledoesnotexists
|
||||
msgid "The launching Application Bundle %s%s%s%sdoes not exist or is not executable.%s%sSee Project -> Project options -> Application."
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:listhelaunchingapplicationdoesnotexistsorisnotexecuta
|
||||
msgid "The launching application %s%s%s%sdoes not exist or is not executable.%s%sSee Run -> Run parameters -> Local"
|
||||
msgstr "运行的应用程序 %s%s%s%s不存在或者不是可执行程序.%s%s查看 运行-> 运行参数 -> 本地"
|
||||
@ -9136,6 +9140,10 @@ msgstr "用法"
|
||||
msgid "Use Ansi Strings"
|
||||
msgstr "使用 Ansi Strings"
|
||||
|
||||
#: lazarusidestrconsts:dlgpouseappbundle
|
||||
msgid "Use Application Bundle for running and debugging (darwin only)"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts:lisuseexcludefilter
|
||||
msgid "Use Exclude Filter"
|
||||
msgstr "使用排除过滤器"
|
||||
|
Loading…
Reference in New Issue
Block a user