mirror of
https://github.com/vcmi/vcmi.git
synced 2025-08-08 22:26:51 +02:00
Fixed CR LF -> LF
This commit is contained in:
@@ -1,73 +1,73 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title VCMI Installer Builder
|
title VCMI Installer Builder
|
||||||
setlocal enabledelayedexpansion
|
setlocal enabledelayedexpansion
|
||||||
cls
|
cls
|
||||||
|
|
||||||
REM Define variables dynamically relative to the normalized base directory
|
REM Define variables dynamically relative to the normalized base directory
|
||||||
set AppVersion=1.6.0
|
set AppVersion=1.6.0
|
||||||
set AppBuild=ec25eb5
|
set AppBuild=ec25eb5
|
||||||
set InstallerArch=x64
|
set InstallerArch=x64
|
||||||
|
|
||||||
REM Define Inno Setup version
|
REM Define Inno Setup version
|
||||||
set InnoSetupVer=6
|
set InnoSetupVer=6
|
||||||
|
|
||||||
REM Normally, there is no need to modify anything below this line.
|
REM Normally, there is no need to modify anything below this line.
|
||||||
|
|
||||||
REM Determine the base directory two levels up from the installer location
|
REM Determine the base directory two levels up from the installer location
|
||||||
set "ScriptDir=%~dp0"
|
set "ScriptDir=%~dp0"
|
||||||
set "BaseDir=%ScriptDir%..\..\"
|
set "BaseDir=%ScriptDir%..\..\"
|
||||||
|
|
||||||
REM Normalize the base directory
|
REM Normalize the base directory
|
||||||
for %%i in ("%BaseDir%") do set "BaseDir=%%~fi"
|
for %%i in ("%BaseDir%") do set "BaseDir=%%~fi"
|
||||||
|
|
||||||
REM Define specific subdirectories relative to the base directory
|
REM Define specific subdirectories relative to the base directory
|
||||||
set "SourceFilesPath=%BaseDir%bin\Release"
|
set "SourceFilesPath=%BaseDir%bin\Release"
|
||||||
set "LangPath=%BaseDir%CI\wininstaller\lang"
|
set "LangPath=%BaseDir%CI\wininstaller\lang"
|
||||||
set "LicenseFile=%BaseDir%license.txt"
|
set "LicenseFile=%BaseDir%license.txt"
|
||||||
set "IconFile=%BaseDir%clientapp\icons\vcmi.ico"
|
set "IconFile=%BaseDir%clientapp\icons\vcmi.ico"
|
||||||
set "SmallLogo=%BaseDir%CI\wininstaller\vcmismalllogo.bmp"
|
set "SmallLogo=%BaseDir%CI\wininstaller\vcmismalllogo.bmp"
|
||||||
set "WizardLogo=%BaseDir%CI\wininstaller\vcmilogo.bmp"
|
set "WizardLogo=%BaseDir%CI\wininstaller\vcmilogo.bmp"
|
||||||
set "InstallerScript=%BaseDir%CI\wininstaller\installer.iss"
|
set "InstallerScript=%BaseDir%CI\wininstaller\installer.iss"
|
||||||
|
|
||||||
REM Determine Program Files directory based on system architecture
|
REM Determine Program Files directory based on system architecture
|
||||||
if exist "%WinDir%\SysWow64" (
|
if exist "%WinDir%\SysWow64" (
|
||||||
set "ProgFiles=%programfiles(x86)%"
|
set "ProgFiles=%programfiles(x86)%"
|
||||||
) else (
|
) else (
|
||||||
set "ProgFiles=%programfiles%"
|
set "ProgFiles=%programfiles%"
|
||||||
)
|
)
|
||||||
|
|
||||||
REM Verify Inno Setup is installed
|
REM Verify Inno Setup is installed
|
||||||
if not exist "%ProgFiles%\Inno Setup %InnoSetupVer%\ISCC.exe" (
|
if not exist "%ProgFiles%\Inno Setup %InnoSetupVer%\ISCC.exe" (
|
||||||
echo.
|
echo.
|
||||||
echo ERROR: Inno Setup !InnoSetupVer! was not found in !ProgFiles!.
|
echo ERROR: Inno Setup !InnoSetupVer! was not found in !ProgFiles!.
|
||||||
echo Please install it or specify the correct path.
|
echo Please install it or specify the correct path.
|
||||||
echo.
|
echo.
|
||||||
pause
|
pause
|
||||||
goto :eof
|
goto :eof
|
||||||
)
|
)
|
||||||
|
|
||||||
REM Verify critical paths
|
REM Verify critical paths
|
||||||
if not exist "%InstallerScript%" (
|
if not exist "%InstallerScript%" (
|
||||||
echo ERROR: Installer script not found: !InstallerScript!
|
echo ERROR: Installer script not found: !InstallerScript!
|
||||||
pause
|
pause
|
||||||
goto :eof
|
goto :eof
|
||||||
)
|
)
|
||||||
if not exist "%SourceFilesPath%" (
|
if not exist "%SourceFilesPath%" (
|
||||||
echo ERROR: Source files path not found: !SourceFilesPath!
|
echo ERROR: Source files path not found: !SourceFilesPath!
|
||||||
pause
|
pause
|
||||||
goto :eof
|
goto :eof
|
||||||
)
|
)
|
||||||
|
|
||||||
REM Call Inno Setup Compiler
|
REM Call Inno Setup Compiler
|
||||||
"%ProgFiles%\Inno Setup %InnoSetupVer%\ISCC.exe" "%InstallerScript%" ^
|
"%ProgFiles%\Inno Setup %InnoSetupVer%\ISCC.exe" "%InstallerScript%" ^
|
||||||
/DAppVersion="%AppVersion%" ^
|
/DAppVersion="%AppVersion%" ^
|
||||||
/DAppBuild="%AppBuild%" ^
|
/DAppBuild="%AppBuild%" ^
|
||||||
/DInstallerArch="%InstallerArch%" ^
|
/DInstallerArch="%InstallerArch%" ^
|
||||||
/DSourceFilesPath="%SourceFilesPath%" ^
|
/DSourceFilesPath="%SourceFilesPath%" ^
|
||||||
/DLangPath="%LangPath%" ^
|
/DLangPath="%LangPath%" ^
|
||||||
/DLicenseFile="%LicenseFile%" ^
|
/DLicenseFile="%LicenseFile%" ^
|
||||||
/DIconFile="%IconFile%" ^
|
/DIconFile="%IconFile%" ^
|
||||||
/DSmallLogo="%SmallLogo%" ^
|
/DSmallLogo="%SmallLogo%" ^
|
||||||
/DWizardLogo="%WizardLogo%"
|
/DWizardLogo="%WizardLogo%"
|
||||||
|
|
||||||
pause
|
pause
|
File diff suppressed because it is too large
Load Diff
@@ -1,414 +1,414 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Brazilian Portuguese messages made by Cesar82 cesar.zanetti.82@gmail.com ***
|
; *** Inno Setup version 6.1.0+ Brazilian Portuguese messages made by Cesar82 cesar.zanetti.82@gmail.com ***
|
||||||
;
|
;
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=Portugu�s Brasileiro
|
LanguageName=Portugu�s Brasileiro
|
||||||
LanguageID=$0416
|
LanguageID=$0416
|
||||||
LanguageCodePage=1252
|
LanguageCodePage=1252
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Instalador
|
SetupAppTitle=Instalador
|
||||||
SetupWindowTitle=%1 - Instalador
|
SetupWindowTitle=%1 - Instalador
|
||||||
UninstallAppTitle=Desinstalar
|
UninstallAppTitle=Desinstalar
|
||||||
UninstallAppFullTitle=Desinstalar %1
|
UninstallAppFullTitle=Desinstalar %1
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Informa��o
|
InformationTitle=Informa��o
|
||||||
ConfirmTitle=Confirmar
|
ConfirmTitle=Confirmar
|
||||||
ErrorTitle=Erro
|
ErrorTitle=Erro
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=Isto instalar� o %1. Voc� deseja continuar?
|
SetupLdrStartupMessage=Isto instalar� o %1. Voc� deseja continuar?
|
||||||
LdrCannotCreateTemp=Incapaz de criar um arquivo tempor�rio. Instala��o abortada
|
LdrCannotCreateTemp=Incapaz de criar um arquivo tempor�rio. Instala��o abortada
|
||||||
LdrCannotExecTemp=Incapaz de executar o arquivo no diret�rio tempor�rio. Instala��o abortada
|
LdrCannotExecTemp=Incapaz de executar o arquivo no diret�rio tempor�rio. Instala��o abortada
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nErro %2: %3
|
LastErrorMessage=%1.%n%nErro %2: %3
|
||||||
SetupFileMissing=Est� faltando o arquivo %1 do diret�rio de instala��o. Por favor corrija o problema ou obtenha uma nova c�pia do programa.
|
SetupFileMissing=Est� faltando o arquivo %1 do diret�rio de instala��o. Por favor corrija o problema ou obtenha uma nova c�pia do programa.
|
||||||
SetupFileCorrupt=Os arquivos de instala��o est�o corrompidos. Por favor obtenha uma nova c�pia do programa.
|
SetupFileCorrupt=Os arquivos de instala��o est�o corrompidos. Por favor obtenha uma nova c�pia do programa.
|
||||||
SetupFileCorruptOrWrongVer=Os arquivos de instala��o est�o corrompidos ou s�o incompat�veis com esta vers�o do instalador. Por favor corrija o problema ou obtenha uma nova c�pia do programa.
|
SetupFileCorruptOrWrongVer=Os arquivos de instala��o est�o corrompidos ou s�o incompat�veis com esta vers�o do instalador. Por favor corrija o problema ou obtenha uma nova c�pia do programa.
|
||||||
InvalidParameter=Um par�metro inv�lido foi passado na linha de comando:%n%n%1
|
InvalidParameter=Um par�metro inv�lido foi passado na linha de comando:%n%n%1
|
||||||
SetupAlreadyRunning=O instalador j� est� em execu��o.
|
SetupAlreadyRunning=O instalador j� est� em execu��o.
|
||||||
WindowsVersionNotSupported=Este programa n�o suporta a vers�o do Windows que seu computador est� executando.
|
WindowsVersionNotSupported=Este programa n�o suporta a vers�o do Windows que seu computador est� executando.
|
||||||
WindowsServicePackRequired=Este programa requer o %1 Service Pack %2 ou superior.
|
WindowsServicePackRequired=Este programa requer o %1 Service Pack %2 ou superior.
|
||||||
NotOnThisPlatform=Este programa n�o executar� no %1.
|
NotOnThisPlatform=Este programa n�o executar� no %1.
|
||||||
OnlyOnThisPlatform=Este programa deve ser executado no %1.
|
OnlyOnThisPlatform=Este programa deve ser executado no %1.
|
||||||
OnlyOnTheseArchitectures=Este programa s� pode ser instalado em vers�es do Windows projetadas para as seguintes arquiteturas de processadores:%n%n% 1
|
OnlyOnTheseArchitectures=Este programa s� pode ser instalado em vers�es do Windows projetadas para as seguintes arquiteturas de processadores:%n%n% 1
|
||||||
WinVersionTooLowError=Este programa requer a %1 vers�o %2 ou superior.
|
WinVersionTooLowError=Este programa requer a %1 vers�o %2 ou superior.
|
||||||
WinVersionTooHighError=Este programa n�o pode ser instalado na %1 vers�o %2 ou superior.
|
WinVersionTooHighError=Este programa n�o pode ser instalado na %1 vers�o %2 ou superior.
|
||||||
AdminPrivilegesRequired=Voc� deve estar logado como administrador quando instalar este programa.
|
AdminPrivilegesRequired=Voc� deve estar logado como administrador quando instalar este programa.
|
||||||
PowerUserPrivilegesRequired=Voc� deve estar logado como administrador ou como um membro do grupo de Usu�rios Power quando instalar este programa.
|
PowerUserPrivilegesRequired=Voc� deve estar logado como administrador ou como um membro do grupo de Usu�rios Power quando instalar este programa.
|
||||||
SetupAppRunningError=O instalador detectou que o %1 est� atualmente em execu��o.%n%nPor favor feche todas as inst�ncias dele agora, ent�o clique em OK pra continuar ou em Cancelar pra sair.
|
SetupAppRunningError=O instalador detectou que o %1 est� atualmente em execu��o.%n%nPor favor feche todas as inst�ncias dele agora, ent�o clique em OK pra continuar ou em Cancelar pra sair.
|
||||||
UninstallAppRunningError=O Desinstalador detectou que o %1 est� atualmente em execu��o.%n%nPor favor feche todas as inst�ncias dele agora, ent�o clique em OK pra continuar ou em Cancelar pra sair.
|
UninstallAppRunningError=O Desinstalador detectou que o %1 est� atualmente em execu��o.%n%nPor favor feche todas as inst�ncias dele agora, ent�o clique em OK pra continuar ou em Cancelar pra sair.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Selecione o Modo de Instala��o do Instalador
|
PrivilegesRequiredOverrideTitle=Selecione o Modo de Instala��o do Instalador
|
||||||
PrivilegesRequiredOverrideInstruction=Selecione o modo de instala��o
|
PrivilegesRequiredOverrideInstruction=Selecione o modo de instala��o
|
||||||
PrivilegesRequiredOverrideText1=O %1 pode ser instalado pra todos os usu�rios (requer privil�gios administrativos) ou s� pra voc�.
|
PrivilegesRequiredOverrideText1=O %1 pode ser instalado pra todos os usu�rios (requer privil�gios administrativos) ou s� pra voc�.
|
||||||
PrivilegesRequiredOverrideText2=O %1 pode ser instalado s� pra voc� ou pra todos os usu�rios (requer privil�gios administrativos).
|
PrivilegesRequiredOverrideText2=O %1 pode ser instalado s� pra voc� ou pra todos os usu�rios (requer privil�gios administrativos).
|
||||||
PrivilegesRequiredOverrideAllUsers=Instalar pra &todos os usu�rios
|
PrivilegesRequiredOverrideAllUsers=Instalar pra &todos os usu�rios
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Instalar pra &todos os usu�rios (recomendado)
|
PrivilegesRequiredOverrideAllUsersRecommended=Instalar pra &todos os usu�rios (recomendado)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Instalar s� &pra mim
|
PrivilegesRequiredOverrideCurrentUser=Instalar s� &pra mim
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Instalar s� &pra mim (recomendado)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Instalar s� &pra mim (recomendado)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=O instalador foi incapaz de criar o diret�rio "%1"
|
ErrorCreatingDir=O instalador foi incapaz de criar o diret�rio "%1"
|
||||||
ErrorTooManyFilesInDir=Incapaz de criar um arquivo no diret�rio "%1" porque ele cont�m arquivos demais
|
ErrorTooManyFilesInDir=Incapaz de criar um arquivo no diret�rio "%1" porque ele cont�m arquivos demais
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Sair do Instalador
|
ExitSetupTitle=Sair do Instalador
|
||||||
ExitSetupMessage=A Instala��o n�o est� completa. Se voc� sair agora o programa n�o ser� instalado.%n%nVoc� pode executar o instalador de novo outra hora pra completar a instala��o.%n%nSair do instalador?
|
ExitSetupMessage=A Instala��o n�o est� completa. Se voc� sair agora o programa n�o ser� instalado.%n%nVoc� pode executar o instalador de novo outra hora pra completar a instala��o.%n%nSair do instalador?
|
||||||
AboutSetupMenuItem=&Sobre o Instalador...
|
AboutSetupMenuItem=&Sobre o Instalador...
|
||||||
AboutSetupTitle=Sobre o Instalador
|
AboutSetupTitle=Sobre o Instalador
|
||||||
AboutSetupMessage=%1 vers�o %2%n%3%n%n%1 home page:%n%4
|
AboutSetupMessage=%1 vers�o %2%n%3%n%n%1 home page:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=
|
TranslatorNote=
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Voltar
|
ButtonBack=< &Voltar
|
||||||
ButtonNext=&Avan�ar >
|
ButtonNext=&Avan�ar >
|
||||||
ButtonInstall=&Instalar
|
ButtonInstall=&Instalar
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Cancelar
|
ButtonCancel=Cancelar
|
||||||
ButtonYes=&Sim
|
ButtonYes=&Sim
|
||||||
ButtonYesToAll=Sim pra &Todos
|
ButtonYesToAll=Sim pra &Todos
|
||||||
ButtonNo=&N�o
|
ButtonNo=&N�o
|
||||||
ButtonNoToAll=N�&o pra Todos
|
ButtonNoToAll=N�&o pra Todos
|
||||||
ButtonFinish=&Concluir
|
ButtonFinish=&Concluir
|
||||||
ButtonBrowse=&Procurar...
|
ButtonBrowse=&Procurar...
|
||||||
ButtonWizardBrowse=P&rocurar...
|
ButtonWizardBrowse=P&rocurar...
|
||||||
ButtonNewFolder=&Criar Nova Pasta
|
ButtonNewFolder=&Criar Nova Pasta
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Selecione o Idioma do Instalador
|
SelectLanguageTitle=Selecione o Idioma do Instalador
|
||||||
SelectLanguageLabel=Selecione o idioma pra usar durante a instala��o:
|
SelectLanguageLabel=Selecione o idioma pra usar durante a instala��o:
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=Clique em Avan�ar pra continuar ou em Cancelar pra sair do instalador.
|
ClickNext=Clique em Avan�ar pra continuar ou em Cancelar pra sair do instalador.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Procurar Pasta
|
BrowseDialogTitle=Procurar Pasta
|
||||||
BrowseDialogLabel=Selecione uma pasta na lista abaixo, ent�o clique em OK.
|
BrowseDialogLabel=Selecione uma pasta na lista abaixo, ent�o clique em OK.
|
||||||
NewFolderName=Nova Pasta
|
NewFolderName=Nova Pasta
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Bem-vindo ao Assistente do Instalador do [name]
|
WelcomeLabel1=Bem-vindo ao Assistente do Instalador do [name]
|
||||||
WelcomeLabel2=Isto instalar� o [name/ver] no seu computador.%n%n� recomendado que voc� feche todos os outros aplicativos antes de continuar.
|
WelcomeLabel2=Isto instalar� o [name/ver] no seu computador.%n%n� recomendado que voc� feche todos os outros aplicativos antes de continuar.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Senha
|
WizardPassword=Senha
|
||||||
PasswordLabel1=Esta instala��o est� protegida por senha.
|
PasswordLabel1=Esta instala��o est� protegida por senha.
|
||||||
PasswordLabel3=Por favor forne�a a senha, ent�o clique em Avan�ar pra continuar. As senhas s�o caso-sensitivo.
|
PasswordLabel3=Por favor forne�a a senha, ent�o clique em Avan�ar pra continuar. As senhas s�o caso-sensitivo.
|
||||||
PasswordEditLabel=&Senha:
|
PasswordEditLabel=&Senha:
|
||||||
IncorrectPassword=A senha que voc� inseriu n�o est� correta. Por favor tente de novo.
|
IncorrectPassword=A senha que voc� inseriu n�o est� correta. Por favor tente de novo.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=Acordo de Licen�a
|
WizardLicense=Acordo de Licen�a
|
||||||
LicenseLabel=Por favor leia as seguintes informa��es importantes antes de continuar.
|
LicenseLabel=Por favor leia as seguintes informa��es importantes antes de continuar.
|
||||||
LicenseLabel3=Por favor leia o seguinte Acordo de Licen�a. Voc� deve aceitar os termos deste acordo antes de continuar com a instala��o.
|
LicenseLabel3=Por favor leia o seguinte Acordo de Licen�a. Voc� deve aceitar os termos deste acordo antes de continuar com a instala��o.
|
||||||
LicenseAccepted=Eu &aceito o acordo
|
LicenseAccepted=Eu &aceito o acordo
|
||||||
LicenseNotAccepted=Eu &n�o aceito o acordo
|
LicenseNotAccepted=Eu &n�o aceito o acordo
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Informa��o
|
WizardInfoBefore=Informa��o
|
||||||
InfoBeforeLabel=Por favor leia as seguintes informa��es importantes antes de continuar.
|
InfoBeforeLabel=Por favor leia as seguintes informa��es importantes antes de continuar.
|
||||||
InfoBeforeClickLabel=Quando voc� estiver pronto pra continuar com o instalador, clique em Avan�ar.
|
InfoBeforeClickLabel=Quando voc� estiver pronto pra continuar com o instalador, clique em Avan�ar.
|
||||||
WizardInfoAfter=Informa��o
|
WizardInfoAfter=Informa��o
|
||||||
InfoAfterLabel=Por favor leia as seguintes informa��es importantes antes de continuar.
|
InfoAfterLabel=Por favor leia as seguintes informa��es importantes antes de continuar.
|
||||||
InfoAfterClickLabel=Quando voc� estiver pronto pra continuar com o instalador, clique em Avan�ar.
|
InfoAfterClickLabel=Quando voc� estiver pronto pra continuar com o instalador, clique em Avan�ar.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=Informa��o do Usu�rio
|
WizardUserInfo=Informa��o do Usu�rio
|
||||||
UserInfoDesc=Por favor insira suas informa��es.
|
UserInfoDesc=Por favor insira suas informa��es.
|
||||||
UserInfoName=&Nome do Usu�rio:
|
UserInfoName=&Nome do Usu�rio:
|
||||||
UserInfoOrg=&Organiza��o:
|
UserInfoOrg=&Organiza��o:
|
||||||
UserInfoSerial=&N�mero de S�rie:
|
UserInfoSerial=&N�mero de S�rie:
|
||||||
UserInfoNameRequired=Voc� deve inserir um nome.
|
UserInfoNameRequired=Voc� deve inserir um nome.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Selecione o Local de Destino
|
WizardSelectDir=Selecione o Local de Destino
|
||||||
SelectDirDesc=Aonde o [name] deve ser instalado?
|
SelectDirDesc=Aonde o [name] deve ser instalado?
|
||||||
SelectDirLabel3=O instalador instalar� o [name] na seguinte pasta.
|
SelectDirLabel3=O instalador instalar� o [name] na seguinte pasta.
|
||||||
SelectDirBrowseLabel=Pra continuar clique em Avan�ar. Se voc� gostaria de selecionar uma pasta diferente, clique em Procurar.
|
SelectDirBrowseLabel=Pra continuar clique em Avan�ar. Se voc� gostaria de selecionar uma pasta diferente, clique em Procurar.
|
||||||
DiskSpaceGBLabel=Pelo menos [gb] MBs de espa�o livre em disco s�o requeridos.
|
DiskSpaceGBLabel=Pelo menos [gb] MBs de espa�o livre em disco s�o requeridos.
|
||||||
DiskSpaceMBLabel=Pelo menos [mb] MBs de espa�o livre em disco s�o requeridos.
|
DiskSpaceMBLabel=Pelo menos [mb] MBs de espa�o livre em disco s�o requeridos.
|
||||||
CannotInstallToNetworkDrive=O instalador n�o pode instalar em um drive de rede.
|
CannotInstallToNetworkDrive=O instalador n�o pode instalar em um drive de rede.
|
||||||
CannotInstallToUNCPath=O instalador n�o pode instalar em um caminho UNC.
|
CannotInstallToUNCPath=O instalador n�o pode instalar em um caminho UNC.
|
||||||
InvalidPath=Voc� deve inserir um caminho completo com a letra do drive; por exemplo:%n%nC:\APP%n%n�o um caminho UNC no formul�rio:%n%n\\server\share
|
InvalidPath=Voc� deve inserir um caminho completo com a letra do drive; por exemplo:%n%nC:\APP%n%n�o um caminho UNC no formul�rio:%n%n\\server\share
|
||||||
InvalidDrive=O drive ou compartilhamento UNC que voc� selecionou n�o existe ou n�o est� acess�vel. Por favor selecione outro.
|
InvalidDrive=O drive ou compartilhamento UNC que voc� selecionou n�o existe ou n�o est� acess�vel. Por favor selecione outro.
|
||||||
DiskSpaceWarningTitle=Sem Espa�o em Disco o Bastante
|
DiskSpaceWarningTitle=Sem Espa�o em Disco o Bastante
|
||||||
DiskSpaceWarning=O instalador requer pelo menos %1 KBs de espa�o livre pra instalar mas o drive selecionado s� tem %2 KBs dispon�veis.%n%nVoc� quer continuar de qualquer maneira?
|
DiskSpaceWarning=O instalador requer pelo menos %1 KBs de espa�o livre pra instalar mas o drive selecionado s� tem %2 KBs dispon�veis.%n%nVoc� quer continuar de qualquer maneira?
|
||||||
DirNameTooLong=O nome ou caminho da pasta � muito longo.
|
DirNameTooLong=O nome ou caminho da pasta � muito longo.
|
||||||
InvalidDirName=O nome da pasta n�o � v�lido.
|
InvalidDirName=O nome da pasta n�o � v�lido.
|
||||||
BadDirName32=Os nomes das pastas n�o pode incluir quaisquer dos seguintes caracteres:%n%n%1
|
BadDirName32=Os nomes das pastas n�o pode incluir quaisquer dos seguintes caracteres:%n%n%1
|
||||||
DirExistsTitle=A Pasta Existe
|
DirExistsTitle=A Pasta Existe
|
||||||
DirExists=A pasta:%n%n%1%n%nj� existe. Voc� gostaria de instalar nesta pasta de qualquer maneira?
|
DirExists=A pasta:%n%n%1%n%nj� existe. Voc� gostaria de instalar nesta pasta de qualquer maneira?
|
||||||
DirDoesntExistTitle=A Pasta N�o Existe
|
DirDoesntExistTitle=A Pasta N�o Existe
|
||||||
DirDoesntExist=A pasta:%n%n%1%n%nn�o existe. Voc� gostaria quer a pasta fosse criada?
|
DirDoesntExist=A pasta:%n%n%1%n%nn�o existe. Voc� gostaria quer a pasta fosse criada?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Selecionar Componentes
|
WizardSelectComponents=Selecionar Componentes
|
||||||
SelectComponentsDesc=Quais componentes devem ser instalados?
|
SelectComponentsDesc=Quais componentes devem ser instalados?
|
||||||
SelectComponentsLabel2=Selecione os componentes que voc� quer instalar; desmarque os componentes que voc� n�o quer instalar. Clique em Avan�ar quando voc� estiver pronto pra continuar.
|
SelectComponentsLabel2=Selecione os componentes que voc� quer instalar; desmarque os componentes que voc� n�o quer instalar. Clique em Avan�ar quando voc� estiver pronto pra continuar.
|
||||||
FullInstallation=Instala��o completa
|
FullInstallation=Instala��o completa
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Instala��o compacta
|
CompactInstallation=Instala��o compacta
|
||||||
CustomInstallation=Instala��o personalizada
|
CustomInstallation=Instala��o personalizada
|
||||||
NoUninstallWarningTitle=O Componente Existe
|
NoUninstallWarningTitle=O Componente Existe
|
||||||
NoUninstallWarning=O instalador detectou que os seguintes componentes j� est�o instalados no seu computador:%n%n%1%n%nN�o selecionar estes componentes n�o desinstalar� eles.%n%nVoc� gostaria de continuar de qualquer maneira?
|
NoUninstallWarning=O instalador detectou que os seguintes componentes j� est�o instalados no seu computador:%n%n%1%n%nN�o selecionar estes componentes n�o desinstalar� eles.%n%nVoc� gostaria de continuar de qualquer maneira?
|
||||||
ComponentSize1=%1 KBs
|
ComponentSize1=%1 KBs
|
||||||
ComponentSize2=%1 MBs
|
ComponentSize2=%1 MBs
|
||||||
ComponentsDiskSpaceGBLabel=A sele��o atual requer pelo menos [gb] MBs de espa�o em disco.
|
ComponentsDiskSpaceGBLabel=A sele��o atual requer pelo menos [gb] MBs de espa�o em disco.
|
||||||
ComponentsDiskSpaceMBLabel=A sele��o atual requer pelo menos [mb] MBs de espa�o em disco.
|
ComponentsDiskSpaceMBLabel=A sele��o atual requer pelo menos [mb] MBs de espa�o em disco.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Selecionar Tarefas Adicionais
|
WizardSelectTasks=Selecionar Tarefas Adicionais
|
||||||
SelectTasksDesc=Quais tarefas adicionais devem ser executadas?
|
SelectTasksDesc=Quais tarefas adicionais devem ser executadas?
|
||||||
SelectTasksLabel2=Selecione as tarefas adicionais que voc� gostaria que o instalador executasse enquanto instala o [name], ent�o clique em Avan�ar.
|
SelectTasksLabel2=Selecione as tarefas adicionais que voc� gostaria que o instalador executasse enquanto instala o [name], ent�o clique em Avan�ar.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Selecionar a Pasta do Menu Iniciar
|
WizardSelectProgramGroup=Selecionar a Pasta do Menu Iniciar
|
||||||
SelectStartMenuFolderDesc=Aonde o instalador deve colocar os atalhos do programa?
|
SelectStartMenuFolderDesc=Aonde o instalador deve colocar os atalhos do programa?
|
||||||
SelectStartMenuFolderLabel3=O instalador criar� os atalhos do programa na seguinte pasta do Menu Iniciar.
|
SelectStartMenuFolderLabel3=O instalador criar� os atalhos do programa na seguinte pasta do Menu Iniciar.
|
||||||
SelectStartMenuFolderBrowseLabel=Pra continuar clique em Avan�ar. Se voc� gostaria de selecionar uma pasta diferente, clique em Procurar.
|
SelectStartMenuFolderBrowseLabel=Pra continuar clique em Avan�ar. Se voc� gostaria de selecionar uma pasta diferente, clique em Procurar.
|
||||||
MustEnterGroupName=Voc� deve inserir um nome de pasta.
|
MustEnterGroupName=Voc� deve inserir um nome de pasta.
|
||||||
GroupNameTooLong=O nome ou caminho da pasta � muito longo.
|
GroupNameTooLong=O nome ou caminho da pasta � muito longo.
|
||||||
InvalidGroupName=O nome da pasta n�o � v�lido.
|
InvalidGroupName=O nome da pasta n�o � v�lido.
|
||||||
BadGroupName=O nome da pasta n�o pode incluir quaisquer dos seguintes caracteres:%n%n%1
|
BadGroupName=O nome da pasta n�o pode incluir quaisquer dos seguintes caracteres:%n%n%1
|
||||||
NoProgramGroupCheck2=&N�o criar uma pasta no Menu Iniciar
|
NoProgramGroupCheck2=&N�o criar uma pasta no Menu Iniciar
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Pronto pra Instalar
|
WizardReady=Pronto pra Instalar
|
||||||
ReadyLabel1=O instalador est� agora pronto pra come�ar a instalar o [name] no seu computador.
|
ReadyLabel1=O instalador est� agora pronto pra come�ar a instalar o [name] no seu computador.
|
||||||
ReadyLabel2a=Clique em Instalar pra continuar com a instala��o ou clique em Voltar se voc� quer revisar ou mudar quaisquer configura��es.
|
ReadyLabel2a=Clique em Instalar pra continuar com a instala��o ou clique em Voltar se voc� quer revisar ou mudar quaisquer configura��es.
|
||||||
ReadyLabel2b=Clique em Instalar pra continuar com a instala��o.
|
ReadyLabel2b=Clique em Instalar pra continuar com a instala��o.
|
||||||
ReadyMemoUserInfo=Informa��o do usu�rio:
|
ReadyMemoUserInfo=Informa��o do usu�rio:
|
||||||
ReadyMemoDir=Local de destino:
|
ReadyMemoDir=Local de destino:
|
||||||
ReadyMemoType=Tipo de instala��o:
|
ReadyMemoType=Tipo de instala��o:
|
||||||
ReadyMemoComponents=Componentes selecionados:
|
ReadyMemoComponents=Componentes selecionados:
|
||||||
ReadyMemoGroup=Pasta do Menu Iniciar:
|
ReadyMemoGroup=Pasta do Menu Iniciar:
|
||||||
ReadyMemoTasks=Tarefas adicionais:
|
ReadyMemoTasks=Tarefas adicionais:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Baixando arquivos adicionais...
|
DownloadingLabel=Baixando arquivos adicionais...
|
||||||
ButtonStopDownload=&Parar download
|
ButtonStopDownload=&Parar download
|
||||||
StopDownload=Tem certeza que deseja parar o download?
|
StopDownload=Tem certeza que deseja parar o download?
|
||||||
ErrorDownloadAborted=Download abortado
|
ErrorDownloadAborted=Download abortado
|
||||||
ErrorDownloadFailed=Download falhou: %1 %2
|
ErrorDownloadFailed=Download falhou: %1 %2
|
||||||
ErrorDownloadSizeFailed=Falha ao obter o tamanho: %1 %2
|
ErrorDownloadSizeFailed=Falha ao obter o tamanho: %1 %2
|
||||||
ErrorFileHash1=Falha no hash do arquivo: %1
|
ErrorFileHash1=Falha no hash do arquivo: %1
|
||||||
ErrorFileHash2=Hash de arquivo inv�lido: esperado %1, encontrado %2
|
ErrorFileHash2=Hash de arquivo inv�lido: esperado %1, encontrado %2
|
||||||
ErrorProgress=Progresso inv�lido: %1 de %2
|
ErrorProgress=Progresso inv�lido: %1 de %2
|
||||||
ErrorFileSize=Tamanho de arquivo inv�lido: esperado %1, encontrado %2
|
ErrorFileSize=Tamanho de arquivo inv�lido: esperado %1, encontrado %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Preparando pra Instalar
|
WizardPreparing=Preparando pra Instalar
|
||||||
PreparingDesc=O instalador est� se preparando pra instalar o [name] no seu computador.
|
PreparingDesc=O instalador est� se preparando pra instalar o [name] no seu computador.
|
||||||
PreviousInstallNotCompleted=A instala��o/remo��o de um programa anterior n�o foi completada. Voc� precisar� reiniciar o computador pra completar essa instala��o.%n%nAp�s reiniciar seu computador execute o instalador de novo pra completar a instala��o do [name].
|
PreviousInstallNotCompleted=A instala��o/remo��o de um programa anterior n�o foi completada. Voc� precisar� reiniciar o computador pra completar essa instala��o.%n%nAp�s reiniciar seu computador execute o instalador de novo pra completar a instala��o do [name].
|
||||||
CannotContinue=O instalador n�o pode continuar. Por favor clique em Cancelar pra sair.
|
CannotContinue=O instalador n�o pode continuar. Por favor clique em Cancelar pra sair.
|
||||||
ApplicationsFound=Os aplicativos a seguir est�o usando arquivos que precisam ser atualizados pelo instalador. � recomendados que voc� permita ao instalador fechar automaticamente estes aplicativos.
|
ApplicationsFound=Os aplicativos a seguir est�o usando arquivos que precisam ser atualizados pelo instalador. � recomendados que voc� permita ao instalador fechar automaticamente estes aplicativos.
|
||||||
ApplicationsFound2=Os aplicativos a seguir est�o usando arquivos que precisam ser atualizados pelo instalador. � recomendados que voc� permita ao instalador fechar automaticamente estes aplicativos. Ap�s a instala��o ter completado, o instalador tentar� reiniciar os aplicativos.
|
ApplicationsFound2=Os aplicativos a seguir est�o usando arquivos que precisam ser atualizados pelo instalador. � recomendados que voc� permita ao instalador fechar automaticamente estes aplicativos. Ap�s a instala��o ter completado, o instalador tentar� reiniciar os aplicativos.
|
||||||
CloseApplications=&Fechar os aplicativos automaticamente
|
CloseApplications=&Fechar os aplicativos automaticamente
|
||||||
DontCloseApplications=&N�o fechar os aplicativos
|
DontCloseApplications=&N�o fechar os aplicativos
|
||||||
ErrorCloseApplications=O instalador foi incapaz de fechar automaticamente todos os aplicativos. � recomendado que voc� feche todos os aplicativos usando os arquivos que precisam ser atualizados pelo instalador antes de continuar.
|
ErrorCloseApplications=O instalador foi incapaz de fechar automaticamente todos os aplicativos. � recomendado que voc� feche todos os aplicativos usando os arquivos que precisam ser atualizados pelo instalador antes de continuar.
|
||||||
PrepareToInstallNeedsRestart=A instala��o deve reiniciar seu computador. Depois de reiniciar o computador, execute a Instala��o novamente para concluir a instala��o de [name].%n%nDeseja reiniciar agora?
|
PrepareToInstallNeedsRestart=A instala��o deve reiniciar seu computador. Depois de reiniciar o computador, execute a Instala��o novamente para concluir a instala��o de [name].%n%nDeseja reiniciar agora?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Instalando
|
WizardInstalling=Instalando
|
||||||
InstallingLabel=Por favor espere enquanto o instalador instala o [name] no seu computador.
|
InstallingLabel=Por favor espere enquanto o instalador instala o [name] no seu computador.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=Completando o Assistente do Instalador do [name]
|
FinishedHeadingLabel=Completando o Assistente do Instalador do [name]
|
||||||
FinishedLabelNoIcons=O instalador terminou de instalar o [name] no seu computador.
|
FinishedLabelNoIcons=O instalador terminou de instalar o [name] no seu computador.
|
||||||
FinishedLabel=O instalador terminou de instalar o [name] no seu computador. O aplicativo pode ser iniciado selecionando os atalhos instalados.
|
FinishedLabel=O instalador terminou de instalar o [name] no seu computador. O aplicativo pode ser iniciado selecionando os atalhos instalados.
|
||||||
ClickFinish=Clique em Concluir pra sair do Instalador.
|
ClickFinish=Clique em Concluir pra sair do Instalador.
|
||||||
FinishedRestartLabel=Pra completar a instala��o do [name], o instalador deve reiniciar seu computador. Voc� gostaria de reiniciar agora?
|
FinishedRestartLabel=Pra completar a instala��o do [name], o instalador deve reiniciar seu computador. Voc� gostaria de reiniciar agora?
|
||||||
FinishedRestartMessage=Pra completar a instala��o do [name], o instalador deve reiniciar seu computador.%n%nVoc� gostaria de reiniciar agora?
|
FinishedRestartMessage=Pra completar a instala��o do [name], o instalador deve reiniciar seu computador.%n%nVoc� gostaria de reiniciar agora?
|
||||||
ShowReadmeCheck=Sim, eu gostaria de visualizar o arquivo README
|
ShowReadmeCheck=Sim, eu gostaria de visualizar o arquivo README
|
||||||
YesRadio=&Sim, reiniciar o computador agora
|
YesRadio=&Sim, reiniciar o computador agora
|
||||||
NoRadio=&N�o, eu reiniciarei o computador depois
|
NoRadio=&N�o, eu reiniciarei o computador depois
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=Executar %1
|
RunEntryExec=Executar %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=Visualizar %1
|
RunEntryShellExec=Visualizar %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=O Instalador Precisa do Pr�ximo Disco
|
ChangeDiskTitle=O Instalador Precisa do Pr�ximo Disco
|
||||||
SelectDiskLabel2=Por favor insira o Disco %1 e clique em OK.%n%nSe os arquivos neste disco podem ser achados numa pasta diferente do que a exibida abaixo, insira o caminho correto ou clique em Procurar.
|
SelectDiskLabel2=Por favor insira o Disco %1 e clique em OK.%n%nSe os arquivos neste disco podem ser achados numa pasta diferente do que a exibida abaixo, insira o caminho correto ou clique em Procurar.
|
||||||
PathLabel=&Caminho:
|
PathLabel=&Caminho:
|
||||||
FileNotInDir2=O arquivo "%1" n�o p�de ser localizado em "%2". Por favor insira o disco correto ou selecione outra pasta.
|
FileNotInDir2=O arquivo "%1" n�o p�de ser localizado em "%2". Por favor insira o disco correto ou selecione outra pasta.
|
||||||
SelectDirectoryLabel=Por favor especifique o local do pr�ximo disco.
|
SelectDirectoryLabel=Por favor especifique o local do pr�ximo disco.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=A instala��o n�o foi completada.%n%nPor favor corrija o problema e execute o instalador de novo.
|
SetupAborted=A instala��o n�o foi completada.%n%nPor favor corrija o problema e execute o instalador de novo.
|
||||||
AbortRetryIgnoreSelectAction=Selecionar a��o
|
AbortRetryIgnoreSelectAction=Selecionar a��o
|
||||||
AbortRetryIgnoreRetry=&Tentar de novo
|
AbortRetryIgnoreRetry=&Tentar de novo
|
||||||
AbortRetryIgnoreIgnore=&Ignorar o erro e continuar
|
AbortRetryIgnoreIgnore=&Ignorar o erro e continuar
|
||||||
AbortRetryIgnoreCancel=Cancelar instala��o
|
AbortRetryIgnoreCancel=Cancelar instala��o
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Fechando aplicativos...
|
StatusClosingApplications=Fechando aplicativos...
|
||||||
StatusCreateDirs=Criando diret�rios...
|
StatusCreateDirs=Criando diret�rios...
|
||||||
StatusExtractFiles=Extraindo arquivos...
|
StatusExtractFiles=Extraindo arquivos...
|
||||||
StatusCreateIcons=Criando atalhos...
|
StatusCreateIcons=Criando atalhos...
|
||||||
StatusCreateIniEntries=Criando entradas INI...
|
StatusCreateIniEntries=Criando entradas INI...
|
||||||
StatusCreateRegistryEntries=Criando entradas do registro...
|
StatusCreateRegistryEntries=Criando entradas do registro...
|
||||||
StatusRegisterFiles=Registrando arquivos...
|
StatusRegisterFiles=Registrando arquivos...
|
||||||
StatusSavingUninstall=Salvando informa��es de desinstala��o...
|
StatusSavingUninstall=Salvando informa��es de desinstala��o...
|
||||||
StatusRunProgram=Concluindo a instala��o...
|
StatusRunProgram=Concluindo a instala��o...
|
||||||
StatusRestartingApplications=Reiniciando os aplicativos...
|
StatusRestartingApplications=Reiniciando os aplicativos...
|
||||||
StatusRollback=Desfazendo as mudan�as...
|
StatusRollback=Desfazendo as mudan�as...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Erro interno: %1
|
ErrorInternal2=Erro interno: %1
|
||||||
ErrorFunctionFailedNoCode=%1 falhou
|
ErrorFunctionFailedNoCode=%1 falhou
|
||||||
ErrorFunctionFailed=%1 falhou; c�digo %2
|
ErrorFunctionFailed=%1 falhou; c�digo %2
|
||||||
ErrorFunctionFailedWithMessage=%1 falhou; c�digo %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 falhou; c�digo %2.%n%3
|
||||||
ErrorExecutingProgram=Incapaz de executar o arquivo:%n%1
|
ErrorExecutingProgram=Incapaz de executar o arquivo:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Erro ao abrir a chave do registro:%n%1\%2
|
ErrorRegOpenKey=Erro ao abrir a chave do registro:%n%1\%2
|
||||||
ErrorRegCreateKey=Erro ao criar a chave do registro:%n%1\%2
|
ErrorRegCreateKey=Erro ao criar a chave do registro:%n%1\%2
|
||||||
ErrorRegWriteKey=Erro ao gravar a chave do registro:%n%1\%2
|
ErrorRegWriteKey=Erro ao gravar a chave do registro:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Erro ao criar a entrada INI no arquivo "%1".
|
ErrorIniEntry=Erro ao criar a entrada INI no arquivo "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Ignorar este arquivo (n�o recomendado)
|
FileAbortRetryIgnoreSkipNotRecommended=&Ignorar este arquivo (n�o recomendado)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorar o erro e continuar (n�o recomendado)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorar o erro e continuar (n�o recomendado)
|
||||||
SourceIsCorrupted=O arquivo de origem est� corrompido
|
SourceIsCorrupted=O arquivo de origem est� corrompido
|
||||||
SourceDoesntExist=O arquivo de origem "%1" n�o existe
|
SourceDoesntExist=O arquivo de origem "%1" n�o existe
|
||||||
ExistingFileReadOnly2=O arquivo existente n�o p�de ser substitu�do porque est� marcado como somente-leitura.
|
ExistingFileReadOnly2=O arquivo existente n�o p�de ser substitu�do porque est� marcado como somente-leitura.
|
||||||
ExistingFileReadOnlyRetry=&Remover o atributo somente-leitura e tentar de novo
|
ExistingFileReadOnlyRetry=&Remover o atributo somente-leitura e tentar de novo
|
||||||
ExistingFileReadOnlyKeepExisting=&Manter o arquivo existente
|
ExistingFileReadOnlyKeepExisting=&Manter o arquivo existente
|
||||||
ErrorReadingExistingDest=Um erro ocorreu enquanto tentava ler o arquivo existente:
|
ErrorReadingExistingDest=Um erro ocorreu enquanto tentava ler o arquivo existente:
|
||||||
FileExistsSelectAction=Selecione a a��o
|
FileExistsSelectAction=Selecione a a��o
|
||||||
FileExists2=O arquivo j� existe.
|
FileExists2=O arquivo j� existe.
|
||||||
FileExistsOverwriteExisting=&Sobrescrever o arquivo existente
|
FileExistsOverwriteExisting=&Sobrescrever o arquivo existente
|
||||||
FileExistsKeepExisting=&Mantenha o arquivo existente
|
FileExistsKeepExisting=&Mantenha o arquivo existente
|
||||||
FileExistsOverwriteOrKeepAll=&Fa�a isso para os pr�ximos conflitos
|
FileExistsOverwriteOrKeepAll=&Fa�a isso para os pr�ximos conflitos
|
||||||
ExistingFileNewerSelectAction=Selecione a a��o
|
ExistingFileNewerSelectAction=Selecione a a��o
|
||||||
ExistingFileNewer2=O arquivo existente � mais recente do que aquele que o Setup est� tentando instalar.
|
ExistingFileNewer2=O arquivo existente � mais recente do que aquele que o Setup est� tentando instalar.
|
||||||
ExistingFileNewerOverwriteExisting=&Sobrescrever o arquivo existente
|
ExistingFileNewerOverwriteExisting=&Sobrescrever o arquivo existente
|
||||||
ExistingFileNewerKeepExisting=&Mantenha o arquivo existente (recomendado)
|
ExistingFileNewerKeepExisting=&Mantenha o arquivo existente (recomendado)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Fa�a isso para os pr�ximos conflitos
|
ExistingFileNewerOverwriteOrKeepAll=&Fa�a isso para os pr�ximos conflitos
|
||||||
ErrorChangingAttr=Um erro ocorreu enquanto tentava mudar os atributos do arquivo existente:
|
ErrorChangingAttr=Um erro ocorreu enquanto tentava mudar os atributos do arquivo existente:
|
||||||
ErrorCreatingTemp=Um erro ocorreu enquanto tentava criar um arquivo no diret�rio destino:
|
ErrorCreatingTemp=Um erro ocorreu enquanto tentava criar um arquivo no diret�rio destino:
|
||||||
ErrorReadingSource=Um erro ocorreu enquanto tentava ler o arquivo de origem:
|
ErrorReadingSource=Um erro ocorreu enquanto tentava ler o arquivo de origem:
|
||||||
ErrorCopying=Um erro ocorreu enquanto tentava copiar um arquivo:
|
ErrorCopying=Um erro ocorreu enquanto tentava copiar um arquivo:
|
||||||
ErrorReplacingExistingFile=Um erro ocorreu enquanto tentava substituir o arquivo existente:
|
ErrorReplacingExistingFile=Um erro ocorreu enquanto tentava substituir o arquivo existente:
|
||||||
ErrorRestartReplace=ReiniciarSubstituir falhou:
|
ErrorRestartReplace=ReiniciarSubstituir falhou:
|
||||||
ErrorRenamingTemp=Um erro ocorreu enquanto tentava renomear um arquivo no diret�rio destino:
|
ErrorRenamingTemp=Um erro ocorreu enquanto tentava renomear um arquivo no diret�rio destino:
|
||||||
ErrorRegisterServer=Incapaz de registrar a DLL/OCX: %1
|
ErrorRegisterServer=Incapaz de registrar a DLL/OCX: %1
|
||||||
ErrorRegSvr32Failed=O RegSvr32 falhou com o c�digo de sa�da %1
|
ErrorRegSvr32Failed=O RegSvr32 falhou com o c�digo de sa�da %1
|
||||||
ErrorRegisterTypeLib=Incapaz de registrar a biblioteca de tipos: %1
|
ErrorRegisterTypeLib=Incapaz de registrar a biblioteca de tipos: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32 bits
|
UninstallDisplayNameMark32Bit=32 bits
|
||||||
UninstallDisplayNameMark64Bit=64 bits
|
UninstallDisplayNameMark64Bit=64 bits
|
||||||
UninstallDisplayNameMarkAllUsers=Todos os usu�rios
|
UninstallDisplayNameMarkAllUsers=Todos os usu�rios
|
||||||
UninstallDisplayNameMarkCurrentUser=Usu�rio atual
|
UninstallDisplayNameMarkCurrentUser=Usu�rio atual
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Um erro ocorreu enquanto tentava abrir o arquivo README.
|
ErrorOpeningReadme=Um erro ocorreu enquanto tentava abrir o arquivo README.
|
||||||
ErrorRestartingComputer=O instalador foi incapaz de reiniciar o computador. Por favor fa�a isto manualmente.
|
ErrorRestartingComputer=O instalador foi incapaz de reiniciar o computador. Por favor fa�a isto manualmente.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=O arquivo "%1" n�o existe. N�o consegue desinstalar.
|
UninstallNotFound=O arquivo "%1" n�o existe. N�o consegue desinstalar.
|
||||||
UninstallOpenError=O arquivo "%1" n�o p�de ser aberto. N�o consegue desinstalar
|
UninstallOpenError=O arquivo "%1" n�o p�de ser aberto. N�o consegue desinstalar
|
||||||
UninstallUnsupportedVer=O arquivo do log da desinstala��o "%1" est� num formato n�o reconhecido por esta vers�o do desinstalador. N�o consegue desinstalar
|
UninstallUnsupportedVer=O arquivo do log da desinstala��o "%1" est� num formato n�o reconhecido por esta vers�o do desinstalador. N�o consegue desinstalar
|
||||||
UninstallUnknownEntry=Uma entrada desconhecida (%1) foi encontrada no log da desinstala��o
|
UninstallUnknownEntry=Uma entrada desconhecida (%1) foi encontrada no log da desinstala��o
|
||||||
ConfirmUninstall=Tem certeza de que deseja executar o assistente de desinstala��o %1?
|
ConfirmUninstall=Tem certeza de que deseja executar o assistente de desinstala��o %1?
|
||||||
UninstallOnlyOnWin64=Esta instala��o s� pode ser desinstalada em Windows 64 bits.
|
UninstallOnlyOnWin64=Esta instala��o s� pode ser desinstalada em Windows 64 bits.
|
||||||
OnlyAdminCanUninstall=Esta instala��o s� pode ser desinstalada por um usu�rio com privil�gios administrativos.
|
OnlyAdminCanUninstall=Esta instala��o s� pode ser desinstalada por um usu�rio com privil�gios administrativos.
|
||||||
UninstallStatusLabel=Por favor espere enquanto o %1 � removido do seu computador.
|
UninstallStatusLabel=Por favor espere enquanto o %1 � removido do seu computador.
|
||||||
UninstalledAll=O %1 foi removido com sucesso do seu computador.
|
UninstalledAll=O %1 foi removido com sucesso do seu computador.
|
||||||
UninstalledMost=Desinstala��o do %1 completa.%n%nAlguns elementos n�o puderam ser removidos. Estes podem ser removidos manualmente.
|
UninstalledMost=Desinstala��o do %1 completa.%n%nAlguns elementos n�o puderam ser removidos. Estes podem ser removidos manualmente.
|
||||||
UninstalledAndNeedsRestart=Pra completar a desinstala��o do %1, seu computador deve ser reiniciado.%n%nVoc� gostaria de reiniciar agora?
|
UninstalledAndNeedsRestart=Pra completar a desinstala��o do %1, seu computador deve ser reiniciado.%n%nVoc� gostaria de reiniciar agora?
|
||||||
UninstallDataCorrupted=O arquivo "%1" est� corrompido. N�o consegue desinstalar
|
UninstallDataCorrupted=O arquivo "%1" est� corrompido. N�o consegue desinstalar
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Remover Arquivo Compartilhado?
|
ConfirmDeleteSharedFileTitle=Remover Arquivo Compartilhado?
|
||||||
ConfirmDeleteSharedFile2=O sistema indica que o seguinte arquivo compartilhado n�o est� mais em uso por quaisquer programas. Voc� gostaria que a Desinstala��o removesse este arquivo compartilhado?%n%nSe quaisquer programas ainda est�o usando este arquivo e ele � removido, esses programas podem n�o funcionar apropriadamente. Se voc� n�o tiver certeza escolha N�o. Deixar o arquivo no seu sistema n�o causar� qualquer dano.
|
ConfirmDeleteSharedFile2=O sistema indica que o seguinte arquivo compartilhado n�o est� mais em uso por quaisquer programas. Voc� gostaria que a Desinstala��o removesse este arquivo compartilhado?%n%nSe quaisquer programas ainda est�o usando este arquivo e ele � removido, esses programas podem n�o funcionar apropriadamente. Se voc� n�o tiver certeza escolha N�o. Deixar o arquivo no seu sistema n�o causar� qualquer dano.
|
||||||
SharedFileNameLabel=Nome do arquivo:
|
SharedFileNameLabel=Nome do arquivo:
|
||||||
SharedFileLocationLabel=Local:
|
SharedFileLocationLabel=Local:
|
||||||
WizardUninstalling=Status da Desinstala��o
|
WizardUninstalling=Status da Desinstala��o
|
||||||
StatusUninstalling=Desinstalando o %1...
|
StatusUninstalling=Desinstalando o %1...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Instalando o %1.
|
ShutdownBlockReasonInstallingApp=Instalando o %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Desinstalando o %1.
|
ShutdownBlockReasonUninstallingApp=Desinstalando o %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 vers�o %2
|
NameAndVersion=%1 vers�o %2
|
||||||
AdditionalIcons=Atalhos adicionais:
|
AdditionalIcons=Atalhos adicionais:
|
||||||
CreateDesktopIcon=Criar um atalho &na �rea de trabalho
|
CreateDesktopIcon=Criar um atalho &na �rea de trabalho
|
||||||
CreateQuickLaunchIcon=Criar um atalho na &barra de inicializa��o r�pida
|
CreateQuickLaunchIcon=Criar um atalho na &barra de inicializa��o r�pida
|
||||||
ProgramOnTheWeb=%1 na Web
|
ProgramOnTheWeb=%1 na Web
|
||||||
UninstallProgram=Desinstalar o %1
|
UninstallProgram=Desinstalar o %1
|
||||||
LaunchProgram=Iniciar o %1
|
LaunchProgram=Iniciar o %1
|
||||||
AssocFileExtension=&Associar o %1 com a extens�o do arquivo %2
|
AssocFileExtension=&Associar o %1 com a extens�o do arquivo %2
|
||||||
AssocingFileExtension=Associando o %1 com a extens�o do arquivo %2...
|
AssocingFileExtension=Associando o %1 com a extens�o do arquivo %2...
|
||||||
AutoStartProgramGroupDescription=Inicializa��o:
|
AutoStartProgramGroupDescription=Inicializa��o:
|
||||||
AutoStartProgram=Iniciar o %1 automaticamente
|
AutoStartProgram=Iniciar o %1 automaticamente
|
||||||
AddonHostProgramNotFound=O %1 n�o p�de ser localizado na pasta que voc� selecionou.%n%nVoc� quer continuar de qualquer maneira?
|
AddonHostProgramNotFound=O %1 n�o p�de ser localizado na pasta que voc� selecionou.%n%nVoc� quer continuar de qualquer maneira?
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Escolher modo de instala��o
|
SelectSetupInstallModeTitle=Escolher modo de instala��o
|
||||||
SelectSetupInstallModeDesc=VCMI pode ser instalado para todos os usu�rios ou apenas para voc�.
|
SelectSetupInstallModeDesc=VCMI pode ser instalado para todos os usu�rios ou apenas para voc�.
|
||||||
SelectSetupInstallModeSubTitle=Selecione o modo de instala��o desejado:
|
SelectSetupInstallModeSubTitle=Selecione o modo de instala��o desejado:
|
||||||
InstallForAllUsers=Instalar para todos os usu�rios
|
InstallForAllUsers=Instalar para todos os usu�rios
|
||||||
InstallForAllUsers1=Requer privil�gios administrativos
|
InstallForAllUsers1=Requer privil�gios administrativos
|
||||||
InstallForMeOnly=Instalar apenas para mim
|
InstallForMeOnly=Instalar apenas para mim
|
||||||
InstallForMeOnly1=Um aviso do firewall aparecer� ao iniciar o jogo pela primeira vez.
|
InstallForMeOnly1=Um aviso do firewall aparecer� ao iniciar o jogo pela primeira vez.
|
||||||
InstallForMeOnly2=Aten��o: Jogos em LAN n�o funcionar�o se a regra do firewall n�o for permitida.
|
InstallForMeOnly2=Aten��o: Jogos em LAN n�o funcionar�o se a regra do firewall n�o for permitida.
|
||||||
CreateDesktopShortcuts=Criar atalhos na �rea de trabalho
|
CreateDesktopShortcuts=Criar atalhos na �rea de trabalho
|
||||||
ShortcutsOptions=Op��es de atalhos
|
ShortcutsOptions=Op��es de atalhos
|
||||||
CreateStartMenuShortcuts=Criar atalhos no menu Iniciar
|
CreateStartMenuShortcuts=Criar atalhos no menu Iniciar
|
||||||
FirewallOptions=Configura��es de firewall
|
FirewallOptions=Configura��es de firewall
|
||||||
AddFirewallRules=Adicionar regras de firewall para VCMI
|
AddFirewallRules=Adicionar regras de firewall para VCMI
|
||||||
FileAssociations=Associa��es de arquivos
|
FileAssociations=Associa��es de arquivos
|
||||||
AssociateH3MFiles=Associar arquivos .h3m ao Editor de Mapas do VCMI
|
AssociateH3MFiles=Associar arquivos .h3m ao Editor de Mapas do VCMI
|
||||||
AssociateVMapFiles=Associar arquivos .vmap ao Editor de Mapas do VCMI
|
AssociateVMapFiles=Associar arquivos .vmap ao Editor de Mapas do VCMI
|
||||||
RunVCMILauncherAfterInstall=Iniciar o Launcher do VCMI
|
RunVCMILauncherAfterInstall=Iniciar o Launcher do VCMI
|
||||||
ShortcutMapEditor=Editor de Mapas VCMI
|
ShortcutMapEditor=Editor de Mapas VCMI
|
||||||
ShortcutLauncher=Launcher do VCMI
|
ShortcutLauncher=Launcher do VCMI
|
||||||
ShortcutWebPage=Site oficial do VCMI
|
ShortcutWebPage=Site oficial do VCMI
|
||||||
ShortcutDiscord=Discord oficial do VCMI
|
ShortcutDiscord=Discord oficial do VCMI
|
||||||
ShortcutLauncherComment=Iniciar o Launcher do VCMI
|
ShortcutLauncherComment=Iniciar o Launcher do VCMI
|
||||||
ShortcutMapEditorComment=Abrir o Editor de Mapas do VCMI
|
ShortcutMapEditorComment=Abrir o Editor de Mapas do VCMI
|
||||||
ShortcutWebPageComment=Visitar o site oficial do VCMI
|
ShortcutWebPageComment=Visitar o site oficial do VCMI
|
||||||
ShortcutDiscordComment=Visitar o Discord oficial do VCMI
|
ShortcutDiscordComment=Visitar o Discord oficial do VCMI
|
||||||
DeleteUserData=Excluir dados do usu�rio
|
DeleteUserData=Excluir dados do usu�rio
|
||||||
Uninstall=Desinstalar
|
Uninstall=Desinstalar
|
||||||
VMAPDescription=Arquivo de mapa VCMI
|
VMAPDescription=Arquivo de mapa VCMI
|
||||||
H3MDescription=Arquivo de mapa Heroes 3
|
H3MDescription=Arquivo de mapa Heroes 3
|
@@ -1,424 +1,424 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Chinese Simplified messages ***
|
; *** Inno Setup version 6.1.0+ Chinese Simplified messages ***
|
||||||
;
|
;
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
;
|
;
|
||||||
; Maintained by Zhenghan Yang
|
; Maintained by Zhenghan Yang
|
||||||
; Email: 847320916@QQ.com
|
; Email: 847320916@QQ.com
|
||||||
; Translation based on network resource
|
; Translation based on network resource
|
||||||
; The latest Translation is on https://github.com/kira-96/Inno-Setup-Chinese-Simplified-Translation
|
; The latest Translation is on https://github.com/kira-96/Inno-Setup-Chinese-Simplified-Translation
|
||||||
;
|
;
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=简体中文
|
LanguageName=简体中文
|
||||||
; If Language Name display incorrect, uncomment next line
|
; If Language Name display incorrect, uncomment next line
|
||||||
; LanguageName=<7B80><4F53><4E2D><6587>
|
; LanguageName=<7B80><4F53><4E2D><6587>
|
||||||
; About LanguageID, to reference link:
|
; About LanguageID, to reference link:
|
||||||
; https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-lcid/a9eac961-e77d-41a6-90a5-ce1a8b0cdb9c
|
; https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-lcid/a9eac961-e77d-41a6-90a5-ce1a8b0cdb9c
|
||||||
LanguageID=$0804
|
LanguageID=$0804
|
||||||
LanguageCodePage=936
|
LanguageCodePage=936
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
DialogFontName=Microsoft YaHei UI
|
DialogFontName=Microsoft YaHei UI
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
WelcomeFontName=Microsoft YaHei UI
|
WelcomeFontName=Microsoft YaHei UI
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
TitleFontName=Microsoft YaHei UI
|
TitleFontName=Microsoft YaHei UI
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** 应用程序标题
|
; *** 应用程序标题
|
||||||
SetupAppTitle=安装
|
SetupAppTitle=安装
|
||||||
SetupWindowTitle=安装 - %1
|
SetupWindowTitle=安装 - %1
|
||||||
UninstallAppTitle=卸载
|
UninstallAppTitle=卸载
|
||||||
UninstallAppFullTitle=%1 卸载
|
UninstallAppFullTitle=%1 卸载
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=信息
|
InformationTitle=信息
|
||||||
ConfirmTitle=确认
|
ConfirmTitle=确认
|
||||||
ErrorTitle=错误
|
ErrorTitle=错误
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=现在将安装 %1。您想要继续吗?
|
SetupLdrStartupMessage=现在将安装 %1。您想要继续吗?
|
||||||
LdrCannotCreateTemp=不能创建临时文件。安装中断。
|
LdrCannotCreateTemp=不能创建临时文件。安装中断。
|
||||||
LdrCannotExecTemp=不能执行临时目录中的文件。安装中断。
|
LdrCannotExecTemp=不能执行临时目录中的文件。安装中断。
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** 启动错误消息
|
; *** 启动错误消息
|
||||||
LastErrorMessage=%1.%n%n错误 %2: %3
|
LastErrorMessage=%1.%n%n错误 %2: %3
|
||||||
SetupFileMissing=安装目录中的文件 %1 丢失。请修正这个问题或者获取程序的新副本。
|
SetupFileMissing=安装目录中的文件 %1 丢失。请修正这个问题或者获取程序的新副本。
|
||||||
SetupFileCorrupt=安装文件已损坏。请获取程序的新副本。
|
SetupFileCorrupt=安装文件已损坏。请获取程序的新副本。
|
||||||
SetupFileCorruptOrWrongVer=安装文件已损坏,或是与这个安装程序的版本不兼容。请修正这个问题或获取新的程序副本。
|
SetupFileCorruptOrWrongVer=安装文件已损坏,或是与这个安装程序的版本不兼容。请修正这个问题或获取新的程序副本。
|
||||||
InvalidParameter=无效的命令行参数:%n%n%1
|
InvalidParameter=无效的命令行参数:%n%n%1
|
||||||
SetupAlreadyRunning=安装程序正在运行。
|
SetupAlreadyRunning=安装程序正在运行。
|
||||||
WindowsVersionNotSupported=这个程序不支持当前计算机运行的 Windows 版本。
|
WindowsVersionNotSupported=这个程序不支持当前计算机运行的 Windows 版本。
|
||||||
WindowsServicePackRequired=这个程序需要 %1 服务包 %2 或更高。
|
WindowsServicePackRequired=这个程序需要 %1 服务包 %2 或更高。
|
||||||
NotOnThisPlatform=这个程序将不能运行于 %1。
|
NotOnThisPlatform=这个程序将不能运行于 %1。
|
||||||
OnlyOnThisPlatform=这个程序必须运行于 %1。
|
OnlyOnThisPlatform=这个程序必须运行于 %1。
|
||||||
OnlyOnTheseArchitectures=这个程序只能在为下列处理器架构的 Windows 版本中进行安装:%n%n%1
|
OnlyOnTheseArchitectures=这个程序只能在为下列处理器架构的 Windows 版本中进行安装:%n%n%1
|
||||||
WinVersionTooLowError=这个程序需要 %1 版本 %2 或更高。
|
WinVersionTooLowError=这个程序需要 %1 版本 %2 或更高。
|
||||||
WinVersionTooHighError=这个程序不能安装于 %1 版本 %2 或更高。
|
WinVersionTooHighError=这个程序不能安装于 %1 版本 %2 或更高。
|
||||||
AdminPrivilegesRequired=在安装这个程序时您必须以管理员身份登录。
|
AdminPrivilegesRequired=在安装这个程序时您必须以管理员身份登录。
|
||||||
PowerUserPrivilegesRequired=在安装这个程序时您必须以管理员身份或有权限的用户组身份登录。
|
PowerUserPrivilegesRequired=在安装这个程序时您必须以管理员身份或有权限的用户组身份登录。
|
||||||
SetupAppRunningError=安装程序发现 %1 当前正在运行。%n%n请先关闭所有运行的窗口,然后点击“确定”继续,或按“取消”退出。
|
SetupAppRunningError=安装程序发现 %1 当前正在运行。%n%n请先关闭所有运行的窗口,然后点击“确定”继续,或按“取消”退出。
|
||||||
UninstallAppRunningError=卸载程序发现 %1 当前正在运行。%n%n请先关闭所有运行的窗口,然后点击“确定”继续,或按“取消”退出。
|
UninstallAppRunningError=卸载程序发现 %1 当前正在运行。%n%n请先关闭所有运行的窗口,然后点击“确定”继续,或按“取消”退出。
|
||||||
|
|
||||||
; *** 启动问题
|
; *** 启动问题
|
||||||
PrivilegesRequiredOverrideTitle=选择安装程序模式
|
PrivilegesRequiredOverrideTitle=选择安装程序模式
|
||||||
PrivilegesRequiredOverrideInstruction=选择安装模式
|
PrivilegesRequiredOverrideInstruction=选择安装模式
|
||||||
PrivilegesRequiredOverrideText1=%1 可以为所有用户安装(需要管理员权限),或仅为您安装。
|
PrivilegesRequiredOverrideText1=%1 可以为所有用户安装(需要管理员权限),或仅为您安装。
|
||||||
PrivilegesRequiredOverrideText2=%1 只能为您安装,或为所有用户安装(需要管理员权限)。
|
PrivilegesRequiredOverrideText2=%1 只能为您安装,或为所有用户安装(需要管理员权限)。
|
||||||
PrivilegesRequiredOverrideAllUsers=为所有用户安装(&A)
|
PrivilegesRequiredOverrideAllUsers=为所有用户安装(&A)
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=为所有用户安装(&A) (建议选项)
|
PrivilegesRequiredOverrideAllUsersRecommended=为所有用户安装(&A) (建议选项)
|
||||||
PrivilegesRequiredOverrideCurrentUser=仅为我安装(&M)
|
PrivilegesRequiredOverrideCurrentUser=仅为我安装(&M)
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=仅为我安装(&M) (建议选项)
|
PrivilegesRequiredOverrideCurrentUserRecommended=仅为我安装(&M) (建议选项)
|
||||||
|
|
||||||
; *** 其它错误
|
; *** 其它错误
|
||||||
ErrorCreatingDir=安装程序不能创建目录“%1”。
|
ErrorCreatingDir=安装程序不能创建目录“%1”。
|
||||||
ErrorTooManyFilesInDir=不能在目录“%1”中创建文件,因为里面的文件太多
|
ErrorTooManyFilesInDir=不能在目录“%1”中创建文件,因为里面的文件太多
|
||||||
|
|
||||||
; *** 安装程序公共消息
|
; *** 安装程序公共消息
|
||||||
ExitSetupTitle=退出安装程序
|
ExitSetupTitle=退出安装程序
|
||||||
ExitSetupMessage=安装程序尚未完成安装。如果您现在退出,程序将不能安装。%n%n您可以以后再运行安装程序完成安装。%n%n现在退出安装程序吗?
|
ExitSetupMessage=安装程序尚未完成安装。如果您现在退出,程序将不能安装。%n%n您可以以后再运行安装程序完成安装。%n%n现在退出安装程序吗?
|
||||||
AboutSetupMenuItem=关于安装程序(&A)...
|
AboutSetupMenuItem=关于安装程序(&A)...
|
||||||
AboutSetupTitle=关于安装程序
|
AboutSetupTitle=关于安装程序
|
||||||
AboutSetupMessage=%1 版本 %2%n%3%n%n%1 主页:%n%4
|
AboutSetupMessage=%1 版本 %2%n%3%n%n%1 主页:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Translated by Zhenghan Yang.
|
TranslatorNote=Translated by Zhenghan Yang.
|
||||||
|
|
||||||
; *** 按钮
|
; *** 按钮
|
||||||
ButtonBack=< 上一步(&B)
|
ButtonBack=< 上一步(&B)
|
||||||
ButtonNext=下一步(&N) >
|
ButtonNext=下一步(&N) >
|
||||||
ButtonInstall=安装(&I)
|
ButtonInstall=安装(&I)
|
||||||
ButtonOK=确定
|
ButtonOK=确定
|
||||||
ButtonCancel=取消
|
ButtonCancel=取消
|
||||||
ButtonYes=是(&Y)
|
ButtonYes=是(&Y)
|
||||||
ButtonYesToAll=全是(&A)
|
ButtonYesToAll=全是(&A)
|
||||||
ButtonNo=否(&N)
|
ButtonNo=否(&N)
|
||||||
ButtonNoToAll=全否(&O)
|
ButtonNoToAll=全否(&O)
|
||||||
ButtonFinish=完成(&F)
|
ButtonFinish=完成(&F)
|
||||||
ButtonBrowse=浏览(&B)...
|
ButtonBrowse=浏览(&B)...
|
||||||
ButtonWizardBrowse=浏览(&R)...
|
ButtonWizardBrowse=浏览(&R)...
|
||||||
ButtonNewFolder=新建文件夹(&M)
|
ButtonNewFolder=新建文件夹(&M)
|
||||||
|
|
||||||
; *** “选择语言”对话框消息
|
; *** “选择语言”对话框消息
|
||||||
SelectLanguageTitle=选择安装语言
|
SelectLanguageTitle=选择安装语言
|
||||||
SelectLanguageLabel=选择安装时要使用的语言。
|
SelectLanguageLabel=选择安装时要使用的语言。
|
||||||
|
|
||||||
; *** 公共向导文字
|
; *** 公共向导文字
|
||||||
ClickNext=点击“下一步”继续,或点击“取消”退出安装程序。
|
ClickNext=点击“下一步”继续,或点击“取消”退出安装程序。
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=浏览文件夹
|
BrowseDialogTitle=浏览文件夹
|
||||||
BrowseDialogLabel=在下列列表中选择一个文件夹,然后点击“确定”。
|
BrowseDialogLabel=在下列列表中选择一个文件夹,然后点击“确定”。
|
||||||
NewFolderName=新建文件夹
|
NewFolderName=新建文件夹
|
||||||
|
|
||||||
; *** “欢迎”向导页
|
; *** “欢迎”向导页
|
||||||
WelcomeLabel1=欢迎使用 [name] 安装向导
|
WelcomeLabel1=欢迎使用 [name] 安装向导
|
||||||
WelcomeLabel2=现在将安装 [name/ver] 到您的电脑中。%n%n推荐您在继续安装前关闭所有其它应用程序。
|
WelcomeLabel2=现在将安装 [name/ver] 到您的电脑中。%n%n推荐您在继续安装前关闭所有其它应用程序。
|
||||||
|
|
||||||
; *** “密码”向导页
|
; *** “密码”向导页
|
||||||
WizardPassword=密码
|
WizardPassword=密码
|
||||||
PasswordLabel1=这个安装程序有密码保护。
|
PasswordLabel1=这个安装程序有密码保护。
|
||||||
PasswordLabel3=请输入密码,然后点击“下一步”继续。密码区分大小写。
|
PasswordLabel3=请输入密码,然后点击“下一步”继续。密码区分大小写。
|
||||||
PasswordEditLabel=密码(&P):
|
PasswordEditLabel=密码(&P):
|
||||||
IncorrectPassword=您所输入的密码不正确,请重试。
|
IncorrectPassword=您所输入的密码不正确,请重试。
|
||||||
|
|
||||||
; *** “许可协议”向导页
|
; *** “许可协议”向导页
|
||||||
WizardLicense=许可协议
|
WizardLicense=许可协议
|
||||||
LicenseLabel=继续安装前请阅读下列重要信息。
|
LicenseLabel=继续安装前请阅读下列重要信息。
|
||||||
LicenseLabel3=请仔细阅读下列许可协议。您在继续安装前必须同意这些协议条款。
|
LicenseLabel3=请仔细阅读下列许可协议。您在继续安装前必须同意这些协议条款。
|
||||||
LicenseAccepted=我同意此协议(&A)
|
LicenseAccepted=我同意此协议(&A)
|
||||||
LicenseNotAccepted=我拒绝此协议(&D)
|
LicenseNotAccepted=我拒绝此协议(&D)
|
||||||
|
|
||||||
; *** “信息”向导页
|
; *** “信息”向导页
|
||||||
WizardInfoBefore=信息
|
WizardInfoBefore=信息
|
||||||
InfoBeforeLabel=请在继续安装前阅读下列重要信息。
|
InfoBeforeLabel=请在继续安装前阅读下列重要信息。
|
||||||
InfoBeforeClickLabel=如果您想继续安装,点击“下一步”。
|
InfoBeforeClickLabel=如果您想继续安装,点击“下一步”。
|
||||||
WizardInfoAfter=信息
|
WizardInfoAfter=信息
|
||||||
InfoAfterLabel=请在继续安装前阅读下列重要信息。
|
InfoAfterLabel=请在继续安装前阅读下列重要信息。
|
||||||
InfoAfterClickLabel=如果您想继续安装,点击“下一步”。
|
InfoAfterClickLabel=如果您想继续安装,点击“下一步”。
|
||||||
|
|
||||||
; *** “用户信息”向导页
|
; *** “用户信息”向导页
|
||||||
WizardUserInfo=用户信息
|
WizardUserInfo=用户信息
|
||||||
UserInfoDesc=请输入您的信息。
|
UserInfoDesc=请输入您的信息。
|
||||||
UserInfoName=用户名(&U):
|
UserInfoName=用户名(&U):
|
||||||
UserInfoOrg=组织(&O):
|
UserInfoOrg=组织(&O):
|
||||||
UserInfoSerial=序列号(&S):
|
UserInfoSerial=序列号(&S):
|
||||||
UserInfoNameRequired=您必须输入用户名。
|
UserInfoNameRequired=您必须输入用户名。
|
||||||
|
|
||||||
; *** “选择目标目录”向导页
|
; *** “选择目标目录”向导页
|
||||||
WizardSelectDir=选择目标位置
|
WizardSelectDir=选择目标位置
|
||||||
SelectDirDesc=您想将 [name] 安装在哪里?
|
SelectDirDesc=您想将 [name] 安装在哪里?
|
||||||
SelectDirLabel3=安装程序将安装 [name] 到下列文件夹中。
|
SelectDirLabel3=安装程序将安装 [name] 到下列文件夹中。
|
||||||
SelectDirBrowseLabel=点击“下一步”继续。如果您想选择其它文件夹,点击“浏览”。
|
SelectDirBrowseLabel=点击“下一步”继续。如果您想选择其它文件夹,点击“浏览”。
|
||||||
DiskSpaceGBLabel=至少需要有 [gb] GB 的可用磁盘空间。
|
DiskSpaceGBLabel=至少需要有 [gb] GB 的可用磁盘空间。
|
||||||
DiskSpaceMBLabel=至少需要有 [mb] MB 的可用磁盘空间。
|
DiskSpaceMBLabel=至少需要有 [mb] MB 的可用磁盘空间。
|
||||||
CannotInstallToNetworkDrive=安装程序无法安装到一个网络驱动器。
|
CannotInstallToNetworkDrive=安装程序无法安装到一个网络驱动器。
|
||||||
CannotInstallToUNCPath=安装程序无法安装到一个UNC路径。
|
CannotInstallToUNCPath=安装程序无法安装到一个UNC路径。
|
||||||
InvalidPath=您必须输入一个带驱动器卷标的完整路径,例如:%n%nC:\APP%n%n或下列形式的UNC路径:%n%n\\server\share
|
InvalidPath=您必须输入一个带驱动器卷标的完整路径,例如:%n%nC:\APP%n%n或下列形式的UNC路径:%n%n\\server\share
|
||||||
InvalidDrive=您选定的驱动器或 UNC 共享不存在或不能访问。请选选择其它位置。
|
InvalidDrive=您选定的驱动器或 UNC 共享不存在或不能访问。请选选择其它位置。
|
||||||
DiskSpaceWarningTitle=没有足够的磁盘空间
|
DiskSpaceWarningTitle=没有足够的磁盘空间
|
||||||
DiskSpaceWarning=安装程序至少需要 %1 KB 的可用空间才能安装,但选定驱动器只有 %2 KB 的可用空间。%n%n您一定要继续吗?
|
DiskSpaceWarning=安装程序至少需要 %1 KB 的可用空间才能安装,但选定驱动器只有 %2 KB 的可用空间。%n%n您一定要继续吗?
|
||||||
DirNameTooLong=文件夹名称或路径太长。
|
DirNameTooLong=文件夹名称或路径太长。
|
||||||
InvalidDirName=文件夹名称无效。
|
InvalidDirName=文件夹名称无效。
|
||||||
BadDirName32=文件夹名称不能包含下列任何字符:%n%n%1
|
BadDirName32=文件夹名称不能包含下列任何字符:%n%n%1
|
||||||
DirExistsTitle=文件夹已存在
|
DirExistsTitle=文件夹已存在
|
||||||
DirExists=文件夹:%n%n%1%n%n已经存在。您一定要安装到这个文件夹中吗?
|
DirExists=文件夹:%n%n%1%n%n已经存在。您一定要安装到这个文件夹中吗?
|
||||||
DirDoesntExistTitle=文件夹不存在
|
DirDoesntExistTitle=文件夹不存在
|
||||||
DirDoesntExist=文件夹:%n%n%1%n%n不存在。您想要创建此文件夹吗?
|
DirDoesntExist=文件夹:%n%n%1%n%n不存在。您想要创建此文件夹吗?
|
||||||
|
|
||||||
; *** “选择组件”向导页
|
; *** “选择组件”向导页
|
||||||
WizardSelectComponents=选择组件
|
WizardSelectComponents=选择组件
|
||||||
SelectComponentsDesc=您想安装哪些程序的组件?
|
SelectComponentsDesc=您想安装哪些程序的组件?
|
||||||
SelectComponentsLabel2=选择您想要安装的组件;清除您不想安装的组件。然后点击“下一步”继续。
|
SelectComponentsLabel2=选择您想要安装的组件;清除您不想安装的组件。然后点击“下一步”继续。
|
||||||
FullInstallation=完全安装
|
FullInstallation=完全安装
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=简洁安装
|
CompactInstallation=简洁安装
|
||||||
CustomInstallation=自定义安装
|
CustomInstallation=自定义安装
|
||||||
NoUninstallWarningTitle=组件已存在
|
NoUninstallWarningTitle=组件已存在
|
||||||
NoUninstallWarning=安装程序检测到下列组件已在您的电脑中安装:%n%n%1%n%n取消选定这些组件将不能卸载它们。%n%n您一定要继续吗?
|
NoUninstallWarning=安装程序检测到下列组件已在您的电脑中安装:%n%n%1%n%n取消选定这些组件将不能卸载它们。%n%n您一定要继续吗?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=当前选择的组件至少需要 [gb] GB 的磁盘空间。
|
ComponentsDiskSpaceGBLabel=当前选择的组件至少需要 [gb] GB 的磁盘空间。
|
||||||
ComponentsDiskSpaceMBLabel=当前选择的组件至少需要 [mb] MB 的磁盘空间。
|
ComponentsDiskSpaceMBLabel=当前选择的组件至少需要 [mb] MB 的磁盘空间。
|
||||||
|
|
||||||
; *** “选择附加任务”向导页
|
; *** “选择附加任务”向导页
|
||||||
WizardSelectTasks=选择附加任务
|
WizardSelectTasks=选择附加任务
|
||||||
SelectTasksDesc=您想要安装程序执行哪些附加任务?
|
SelectTasksDesc=您想要安装程序执行哪些附加任务?
|
||||||
SelectTasksLabel2=选择您想要安装程序在安装 [name] 时执行的附加任务,然后点击“下一步”。
|
SelectTasksLabel2=选择您想要安装程序在安装 [name] 时执行的附加任务,然后点击“下一步”。
|
||||||
|
|
||||||
; *** “选择开始菜单文件夹”向导页
|
; *** “选择开始菜单文件夹”向导页
|
||||||
WizardSelectProgramGroup=选择开始菜单文件夹
|
WizardSelectProgramGroup=选择开始菜单文件夹
|
||||||
SelectStartMenuFolderDesc=安装程序应该在哪里放置程序的快捷方式?
|
SelectStartMenuFolderDesc=安装程序应该在哪里放置程序的快捷方式?
|
||||||
SelectStartMenuFolderLabel3=安装程序现在将在下列开始菜单文件夹中创建程序的快捷方式。
|
SelectStartMenuFolderLabel3=安装程序现在将在下列开始菜单文件夹中创建程序的快捷方式。
|
||||||
SelectStartMenuFolderBrowseLabel=点击“下一步”继续。如果您想选择其它文件夹,点击“浏览”。
|
SelectStartMenuFolderBrowseLabel=点击“下一步”继续。如果您想选择其它文件夹,点击“浏览”。
|
||||||
MustEnterGroupName=您必须输入一个文件夹名。
|
MustEnterGroupName=您必须输入一个文件夹名。
|
||||||
GroupNameTooLong=文件夹名或路径太长。
|
GroupNameTooLong=文件夹名或路径太长。
|
||||||
InvalidGroupName=文件夹名无效。
|
InvalidGroupName=文件夹名无效。
|
||||||
BadGroupName=文件夹名不能包含下列任何字符:%n%n%1
|
BadGroupName=文件夹名不能包含下列任何字符:%n%n%1
|
||||||
NoProgramGroupCheck2=不创建开始菜单文件夹(&D)
|
NoProgramGroupCheck2=不创建开始菜单文件夹(&D)
|
||||||
|
|
||||||
; *** “准备安装”向导页
|
; *** “准备安装”向导页
|
||||||
WizardReady=准备安装
|
WizardReady=准备安装
|
||||||
ReadyLabel1=安装程序现在准备开始安装 [name] 到您的电脑中。
|
ReadyLabel1=安装程序现在准备开始安装 [name] 到您的电脑中。
|
||||||
ReadyLabel2a=点击“安装”继续此安装程序。如果您想要回顾或修改设置,请点击“上一步”。
|
ReadyLabel2a=点击“安装”继续此安装程序。如果您想要回顾或修改设置,请点击“上一步”。
|
||||||
ReadyLabel2b=点击“安装”继续此安装程序?
|
ReadyLabel2b=点击“安装”继续此安装程序?
|
||||||
ReadyMemoUserInfo=用户信息:
|
ReadyMemoUserInfo=用户信息:
|
||||||
ReadyMemoDir=目标位置:
|
ReadyMemoDir=目标位置:
|
||||||
ReadyMemoType=安装类型:
|
ReadyMemoType=安装类型:
|
||||||
ReadyMemoComponents=选定组件:
|
ReadyMemoComponents=选定组件:
|
||||||
ReadyMemoGroup=开始菜单文件夹:
|
ReadyMemoGroup=开始菜单文件夹:
|
||||||
ReadyMemoTasks=附加任务:
|
ReadyMemoTasks=附加任务:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=正在下载附加文件...
|
DownloadingLabel=正在下载附加文件...
|
||||||
ButtonStopDownload=停止下载(&S)
|
ButtonStopDownload=停止下载(&S)
|
||||||
StopDownload=您确定要停止下载吗?
|
StopDownload=您确定要停止下载吗?
|
||||||
ErrorDownloadAborted=下载已中止
|
ErrorDownloadAborted=下载已中止
|
||||||
ErrorDownloadFailed=下载失败:%1 %2
|
ErrorDownloadFailed=下载失败:%1 %2
|
||||||
ErrorDownloadSizeFailed=获取下载大小失败:%1 %2
|
ErrorDownloadSizeFailed=获取下载大小失败:%1 %2
|
||||||
ErrorFileHash1=校验文件哈希失败:%1
|
ErrorFileHash1=校验文件哈希失败:%1
|
||||||
ErrorFileHash2=无效的文件哈希:预期为 %1,实际为 %2
|
ErrorFileHash2=无效的文件哈希:预期为 %1,实际为 %2
|
||||||
ErrorProgress=无效的进度:%1,总共%2
|
ErrorProgress=无效的进度:%1,总共%2
|
||||||
ErrorFileSize=文件大小错误:预期为 %1,实际为 %2
|
ErrorFileSize=文件大小错误:预期为 %1,实际为 %2
|
||||||
|
|
||||||
; *** “正在准备安装”向导页
|
; *** “正在准备安装”向导页
|
||||||
WizardPreparing=正在准备安装
|
WizardPreparing=正在准备安装
|
||||||
PreparingDesc=安装程序正在准备安装 [name] 到您的电脑中。
|
PreparingDesc=安装程序正在准备安装 [name] 到您的电脑中。
|
||||||
PreviousInstallNotCompleted=先前程序的安装/卸载未完成。您需要重新启动您的电脑才能完成安装。%n%n在重新启动电脑后,再运行安装完成 [name] 的安装。
|
PreviousInstallNotCompleted=先前程序的安装/卸载未完成。您需要重新启动您的电脑才能完成安装。%n%n在重新启动电脑后,再运行安装完成 [name] 的安装。
|
||||||
CannotContinue=安装程序不能继续。请点击“取消”退出。
|
CannotContinue=安装程序不能继续。请点击“取消”退出。
|
||||||
ApplicationsFound=下列应用程序正在使用的文件需要更新设置。它是建议您允许安装程序自动关闭这些应用程序。
|
ApplicationsFound=下列应用程序正在使用的文件需要更新设置。它是建议您允许安装程序自动关闭这些应用程序。
|
||||||
ApplicationsFound2=下列应用程序正在使用的文件需要更新设置。它是建议您允许安装程序自动关闭这些应用程序。安装完成后,安装程序将尝试重新启动应用程序。
|
ApplicationsFound2=下列应用程序正在使用的文件需要更新设置。它是建议您允许安装程序自动关闭这些应用程序。安装完成后,安装程序将尝试重新启动应用程序。
|
||||||
CloseApplications=自动关闭该应用程序(&A)
|
CloseApplications=自动关闭该应用程序(&A)
|
||||||
DontCloseApplications=不要关闭该应用程序(&D)
|
DontCloseApplications=不要关闭该应用程序(&D)
|
||||||
ErrorCloseApplications=安装程序无法自动关闭所有应用程序。在继续之前,我们建议您关闭所有使用需要更新的安装程序文件。
|
ErrorCloseApplications=安装程序无法自动关闭所有应用程序。在继续之前,我们建议您关闭所有使用需要更新的安装程序文件。
|
||||||
PrepareToInstallNeedsRestart=安装程序必须重新启动计算机。重新启动计算机后,请再次运行安装程序以完成 [name] 的安装。%n%n是否立即重新启动?
|
PrepareToInstallNeedsRestart=安装程序必须重新启动计算机。重新启动计算机后,请再次运行安装程序以完成 [name] 的安装。%n%n是否立即重新启动?
|
||||||
|
|
||||||
; *** “正在安装”向导页
|
; *** “正在安装”向导页
|
||||||
WizardInstalling=正在安装
|
WizardInstalling=正在安装
|
||||||
InstallingLabel=安装程序正在安装 [name] 到您的电脑中,请稍等。
|
InstallingLabel=安装程序正在安装 [name] 到您的电脑中,请稍等。
|
||||||
|
|
||||||
; *** “安装完成”向导页
|
; *** “安装完成”向导页
|
||||||
FinishedHeadingLabel=[name] 安装完成
|
FinishedHeadingLabel=[name] 安装完成
|
||||||
FinishedLabelNoIcons=安装程序已在您的电脑中安装了 [name]。
|
FinishedLabelNoIcons=安装程序已在您的电脑中安装了 [name]。
|
||||||
FinishedLabel=安装程序已在您的电脑中安装了 [name]。此应用程序可以通过选择安装的快捷方式运行。
|
FinishedLabel=安装程序已在您的电脑中安装了 [name]。此应用程序可以通过选择安装的快捷方式运行。
|
||||||
ClickFinish=点击“完成”退出安装程序。
|
ClickFinish=点击“完成”退出安装程序。
|
||||||
FinishedRestartLabel=要完成 [name] 的安装,安装程序必须重新启动您的电脑。您想要立即重新启动吗?
|
FinishedRestartLabel=要完成 [name] 的安装,安装程序必须重新启动您的电脑。您想要立即重新启动吗?
|
||||||
FinishedRestartMessage=要完成 [name] 的安装,安装程序必须重新启动您的电脑。%n%n您想要立即重新启动吗?
|
FinishedRestartMessage=要完成 [name] 的安装,安装程序必须重新启动您的电脑。%n%n您想要立即重新启动吗?
|
||||||
ShowReadmeCheck=是,我想查阅自述文件
|
ShowReadmeCheck=是,我想查阅自述文件
|
||||||
YesRadio=是,立即重新启动电脑(&Y)
|
YesRadio=是,立即重新启动电脑(&Y)
|
||||||
NoRadio=否,稍后重新启动电脑(&N)
|
NoRadio=否,稍后重新启动电脑(&N)
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=运行 %1
|
RunEntryExec=运行 %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=查阅 %1
|
RunEntryShellExec=查阅 %1
|
||||||
|
|
||||||
; *** “安装程序需要下一张磁盘”提示
|
; *** “安装程序需要下一张磁盘”提示
|
||||||
ChangeDiskTitle=安装程序需要下一张磁盘
|
ChangeDiskTitle=安装程序需要下一张磁盘
|
||||||
SelectDiskLabel2=请插入磁盘 %1 并点击“确定”。%n%n如果这个磁盘中的文件可以在下列文件夹之外的文件夹中找到,请输入正确的路径或点击“浏览”。
|
SelectDiskLabel2=请插入磁盘 %1 并点击“确定”。%n%n如果这个磁盘中的文件可以在下列文件夹之外的文件夹中找到,请输入正确的路径或点击“浏览”。
|
||||||
PathLabel=路径(&P):
|
PathLabel=路径(&P):
|
||||||
FileNotInDir2=文件“%1”不能在“%2”定位。请插入正确的磁盘或选择其它文件夹。
|
FileNotInDir2=文件“%1”不能在“%2”定位。请插入正确的磁盘或选择其它文件夹。
|
||||||
SelectDirectoryLabel=请指定下一张磁盘的位置。
|
SelectDirectoryLabel=请指定下一张磁盘的位置。
|
||||||
|
|
||||||
; *** 安装状态消息
|
; *** 安装状态消息
|
||||||
SetupAborted=安装程序未完成安装。%n%n请修正这个问题并重新运行安装程序。
|
SetupAborted=安装程序未完成安装。%n%n请修正这个问题并重新运行安装程序。
|
||||||
AbortRetryIgnoreSelectAction=选择操作
|
AbortRetryIgnoreSelectAction=选择操作
|
||||||
AbortRetryIgnoreRetry=重试(&T)
|
AbortRetryIgnoreRetry=重试(&T)
|
||||||
AbortRetryIgnoreIgnore=忽略错误并继续(&I)
|
AbortRetryIgnoreIgnore=忽略错误并继续(&I)
|
||||||
AbortRetryIgnoreCancel=关闭安装程序
|
AbortRetryIgnoreCancel=关闭安装程序
|
||||||
|
|
||||||
; *** 安装状态消息
|
; *** 安装状态消息
|
||||||
StatusClosingApplications=正在关闭应用程序...
|
StatusClosingApplications=正在关闭应用程序...
|
||||||
StatusCreateDirs=正在创建目录...
|
StatusCreateDirs=正在创建目录...
|
||||||
StatusExtractFiles=正在解压缩文件...
|
StatusExtractFiles=正在解压缩文件...
|
||||||
StatusCreateIcons=正在创建快捷方式...
|
StatusCreateIcons=正在创建快捷方式...
|
||||||
StatusCreateIniEntries=正在创建 INI 条目...
|
StatusCreateIniEntries=正在创建 INI 条目...
|
||||||
StatusCreateRegistryEntries=正在创建注册表条目...
|
StatusCreateRegistryEntries=正在创建注册表条目...
|
||||||
StatusRegisterFiles=正在注册文件...
|
StatusRegisterFiles=正在注册文件...
|
||||||
StatusSavingUninstall=正在保存卸载信息...
|
StatusSavingUninstall=正在保存卸载信息...
|
||||||
StatusRunProgram=正在完成安装...
|
StatusRunProgram=正在完成安装...
|
||||||
StatusRestartingApplications=正在重启应用程序...
|
StatusRestartingApplications=正在重启应用程序...
|
||||||
StatusRollback=正在撤销更改...
|
StatusRollback=正在撤销更改...
|
||||||
|
|
||||||
; *** 其它错误
|
; *** 其它错误
|
||||||
ErrorInternal2=内部错误:%1
|
ErrorInternal2=内部错误:%1
|
||||||
ErrorFunctionFailedNoCode=%1 失败
|
ErrorFunctionFailedNoCode=%1 失败
|
||||||
ErrorFunctionFailed=%1 失败;错误代码 %2
|
ErrorFunctionFailed=%1 失败;错误代码 %2
|
||||||
ErrorFunctionFailedWithMessage=%1 失败;错误代码 %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 失败;错误代码 %2.%n%3
|
||||||
ErrorExecutingProgram=不能执行文件:%n%1
|
ErrorExecutingProgram=不能执行文件:%n%1
|
||||||
|
|
||||||
; *** 注册表错误
|
; *** 注册表错误
|
||||||
ErrorRegOpenKey=打开注册表项时出错:%n%1\%2
|
ErrorRegOpenKey=打开注册表项时出错:%n%1\%2
|
||||||
ErrorRegCreateKey=创建注册表项时出错:%n%1\%2
|
ErrorRegCreateKey=创建注册表项时出错:%n%1\%2
|
||||||
ErrorRegWriteKey=写入注册表项时出错:%n%1\%2
|
ErrorRegWriteKey=写入注册表项时出错:%n%1\%2
|
||||||
|
|
||||||
; *** INI 错误
|
; *** INI 错误
|
||||||
ErrorIniEntry=在文件“%1”中创建INI条目时出错。
|
ErrorIniEntry=在文件“%1”中创建INI条目时出错。
|
||||||
|
|
||||||
; *** 文件复制错误
|
; *** 文件复制错误
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=跳过这个文件(&S) (不推荐)
|
FileAbortRetryIgnoreSkipNotRecommended=跳过这个文件(&S) (不推荐)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=忽略错误并继续(&I) (不推荐)
|
FileAbortRetryIgnoreIgnoreNotRecommended=忽略错误并继续(&I) (不推荐)
|
||||||
SourceIsCorrupted=源文件已损坏
|
SourceIsCorrupted=源文件已损坏
|
||||||
SourceDoesntExist=源文件“%1”不存在
|
SourceDoesntExist=源文件“%1”不存在
|
||||||
ExistingFileReadOnly2=无法替换现有文件,因为它是只读的。
|
ExistingFileReadOnly2=无法替换现有文件,因为它是只读的。
|
||||||
ExistingFileReadOnlyRetry=移除只读属性并重试(&R)
|
ExistingFileReadOnlyRetry=移除只读属性并重试(&R)
|
||||||
ExistingFileReadOnlyKeepExisting=保留现有文件(&K)
|
ExistingFileReadOnlyKeepExisting=保留现有文件(&K)
|
||||||
ErrorReadingExistingDest=尝试读取现有文件时出错:
|
ErrorReadingExistingDest=尝试读取现有文件时出错:
|
||||||
FileExistsSelectAction=选择操作
|
FileExistsSelectAction=选择操作
|
||||||
FileExists2=文件已经存在。
|
FileExists2=文件已经存在。
|
||||||
FileExistsOverwriteExisting=覆盖已经存在的文件(&O)
|
FileExistsOverwriteExisting=覆盖已经存在的文件(&O)
|
||||||
FileExistsKeepExisting=保留现有的文件(&K)
|
FileExistsKeepExisting=保留现有的文件(&K)
|
||||||
FileExistsOverwriteOrKeepAll=为所有的冲突文件执行此操作(&D)
|
FileExistsOverwriteOrKeepAll=为所有的冲突文件执行此操作(&D)
|
||||||
ExistingFileNewerSelectAction=选择操作
|
ExistingFileNewerSelectAction=选择操作
|
||||||
ExistingFileNewer2=现有的文件比安装程序将要安装的文件更新。
|
ExistingFileNewer2=现有的文件比安装程序将要安装的文件更新。
|
||||||
ExistingFileNewerOverwriteExisting=覆盖已经存在的文件(&O)
|
ExistingFileNewerOverwriteExisting=覆盖已经存在的文件(&O)
|
||||||
ExistingFileNewerKeepExisting=保留现有的文件(&K) (推荐)
|
ExistingFileNewerKeepExisting=保留现有的文件(&K) (推荐)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=为所有的冲突文件执行此操作(&D)
|
ExistingFileNewerOverwriteOrKeepAll=为所有的冲突文件执行此操作(&D)
|
||||||
ErrorChangingAttr=尝试改变下列现有的文件的属性时出错:
|
ErrorChangingAttr=尝试改变下列现有的文件的属性时出错:
|
||||||
ErrorCreatingTemp=尝试在目标目录创建文件时出错:
|
ErrorCreatingTemp=尝试在目标目录创建文件时出错:
|
||||||
ErrorReadingSource=尝试读取下列源文件时出错:
|
ErrorReadingSource=尝试读取下列源文件时出错:
|
||||||
ErrorCopying=尝试复制下列文件时出错:
|
ErrorCopying=尝试复制下列文件时出错:
|
||||||
ErrorReplacingExistingFile=尝试替换现有的文件时出错:
|
ErrorReplacingExistingFile=尝试替换现有的文件时出错:
|
||||||
ErrorRestartReplace=重新启动替换失败:
|
ErrorRestartReplace=重新启动替换失败:
|
||||||
ErrorRenamingTemp=尝试重新命名以下目标目录中的一个文件时出错:
|
ErrorRenamingTemp=尝试重新命名以下目标目录中的一个文件时出错:
|
||||||
ErrorRegisterServer=无法注册 DLL/OCX:%1
|
ErrorRegisterServer=无法注册 DLL/OCX:%1
|
||||||
ErrorRegSvr32Failed=RegSvr32 失败;退出代码 %1
|
ErrorRegSvr32Failed=RegSvr32 失败;退出代码 %1
|
||||||
ErrorRegisterTypeLib=无法注册类型库:%1
|
ErrorRegisterTypeLib=无法注册类型库:%1
|
||||||
|
|
||||||
; *** 卸载显示名字标记
|
; *** 卸载显示名字标记
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32位
|
UninstallDisplayNameMark32Bit=32位
|
||||||
UninstallDisplayNameMark64Bit=64位
|
UninstallDisplayNameMark64Bit=64位
|
||||||
UninstallDisplayNameMarkAllUsers=所有用户
|
UninstallDisplayNameMarkAllUsers=所有用户
|
||||||
UninstallDisplayNameMarkCurrentUser=当前用户
|
UninstallDisplayNameMarkCurrentUser=当前用户
|
||||||
|
|
||||||
; *** 安装后错误
|
; *** 安装后错误
|
||||||
ErrorOpeningReadme=尝试打开自述文件时出错。
|
ErrorOpeningReadme=尝试打开自述文件时出错。
|
||||||
ErrorRestartingComputer=安装程序不能重新启动电脑,请手动重启。
|
ErrorRestartingComputer=安装程序不能重新启动电脑,请手动重启。
|
||||||
|
|
||||||
; *** 卸载消息
|
; *** 卸载消息
|
||||||
UninstallNotFound=文件“%1”不存在。无法卸载。
|
UninstallNotFound=文件“%1”不存在。无法卸载。
|
||||||
UninstallOpenError=文件“%1”不能打开。无法卸载。
|
UninstallOpenError=文件“%1”不能打开。无法卸载。
|
||||||
UninstallUnsupportedVer=此版本的卸载程序无法识别卸载日志文件“%1”的格式。无法卸载
|
UninstallUnsupportedVer=此版本的卸载程序无法识别卸载日志文件“%1”的格式。无法卸载
|
||||||
UninstallUnknownEntry=在卸载日志中遇到一个未知的条目 (%1)
|
UninstallUnknownEntry=在卸载日志中遇到一个未知的条目 (%1)
|
||||||
ConfirmUninstall=您确定要运行 %1 卸载向导吗?
|
ConfirmUninstall=您确定要运行 %1 卸载向导吗?
|
||||||
UninstallOnlyOnWin64=这个安装程序只能在64位Windows中进行卸载。
|
UninstallOnlyOnWin64=这个安装程序只能在64位Windows中进行卸载。
|
||||||
OnlyAdminCanUninstall=这个安装的程序需要有管理员权限的用户才能卸载。
|
OnlyAdminCanUninstall=这个安装的程序需要有管理员权限的用户才能卸载。
|
||||||
UninstallStatusLabel=正在从您的电脑中删除 %1,请稍等。
|
UninstallStatusLabel=正在从您的电脑中删除 %1,请稍等。
|
||||||
UninstalledAll=%1 已顺利地从您的电脑中删除。
|
UninstalledAll=%1 已顺利地从您的电脑中删除。
|
||||||
UninstalledMost=%1 卸载完成。%n%n有一些内容无法被删除。您可以手动删除它们。
|
UninstalledMost=%1 卸载完成。%n%n有一些内容无法被删除。您可以手动删除它们。
|
||||||
UninstalledAndNeedsRestart=要完成 %1 的卸载,您的电脑必须重新启动。%n%n您想立即重新启动电脑吗?
|
UninstalledAndNeedsRestart=要完成 %1 的卸载,您的电脑必须重新启动。%n%n您想立即重新启动电脑吗?
|
||||||
UninstallDataCorrupted=文件“%1”已损坏,无法卸载
|
UninstallDataCorrupted=文件“%1”已损坏,无法卸载
|
||||||
|
|
||||||
; *** 卸载状态消息
|
; *** 卸载状态消息
|
||||||
ConfirmDeleteSharedFileTitle=删除共享文件吗?
|
ConfirmDeleteSharedFileTitle=删除共享文件吗?
|
||||||
ConfirmDeleteSharedFile2=系统中包含的下列共享文件已经不再被其它程序使用。您想要卸载程序删除这些共享文件吗?%n%n如果这些文件被删除,但还有程序正在使用这些文件,这些程序可能不能正确执行。如果您不能确定,选择“否”。把这些文件保留在系统中以免引起问题。
|
ConfirmDeleteSharedFile2=系统中包含的下列共享文件已经不再被其它程序使用。您想要卸载程序删除这些共享文件吗?%n%n如果这些文件被删除,但还有程序正在使用这些文件,这些程序可能不能正确执行。如果您不能确定,选择“否”。把这些文件保留在系统中以免引起问题。
|
||||||
SharedFileNameLabel=文件名:
|
SharedFileNameLabel=文件名:
|
||||||
SharedFileLocationLabel=位置:
|
SharedFileLocationLabel=位置:
|
||||||
WizardUninstalling=卸载状态
|
WizardUninstalling=卸载状态
|
||||||
StatusUninstalling=正在卸载 %1...
|
StatusUninstalling=正在卸载 %1...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=正在安装 %1。
|
ShutdownBlockReasonInstallingApp=正在安装 %1。
|
||||||
ShutdownBlockReasonUninstallingApp=正在卸载 %1。
|
ShutdownBlockReasonUninstallingApp=正在卸载 %1。
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 版本 %2
|
NameAndVersion=%1 版本 %2
|
||||||
AdditionalIcons=附加快捷方式:
|
AdditionalIcons=附加快捷方式:
|
||||||
CreateDesktopIcon=创建桌面快捷方式(&D)
|
CreateDesktopIcon=创建桌面快捷方式(&D)
|
||||||
CreateQuickLaunchIcon=创建快速运行栏快捷方式(&Q)
|
CreateQuickLaunchIcon=创建快速运行栏快捷方式(&Q)
|
||||||
ProgramOnTheWeb=%1 网站
|
ProgramOnTheWeb=%1 网站
|
||||||
UninstallProgram=卸载 %1
|
UninstallProgram=卸载 %1
|
||||||
LaunchProgram=运行 %1
|
LaunchProgram=运行 %1
|
||||||
AssocFileExtension=将 %2 文件扩展名与 %1 建立关联(&A)
|
AssocFileExtension=将 %2 文件扩展名与 %1 建立关联(&A)
|
||||||
AssocingFileExtension=正在将 %2 文件扩展名与 %1 建立关联...
|
AssocingFileExtension=正在将 %2 文件扩展名与 %1 建立关联...
|
||||||
AutoStartProgramGroupDescription=启动组:
|
AutoStartProgramGroupDescription=启动组:
|
||||||
AutoStartProgram=自动启动 %1
|
AutoStartProgram=自动启动 %1
|
||||||
AddonHostProgramNotFound=%1无法找到您所选择的文件夹。%n%n您想要继续吗?
|
AddonHostProgramNotFound=%1无法找到您所选择的文件夹。%n%n您想要继续吗?
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=选择安装模式
|
SelectSetupInstallModeTitle=选择安装模式
|
||||||
SelectSetupInstallModeDesc=VCMI 可以为所有用户安装,也可以仅为您安装。
|
SelectSetupInstallModeDesc=VCMI 可以为所有用户安装,也可以仅为您安装。
|
||||||
SelectSetupInstallModeSubTitle=请选择您偏好的安装模式:
|
SelectSetupInstallModeSubTitle=请选择您偏好的安装模式:
|
||||||
InstallForAllUsers=为所有用户安装
|
InstallForAllUsers=为所有用户安装
|
||||||
InstallForAllUsers1=需要管理员权限
|
InstallForAllUsers1=需要管理员权限
|
||||||
InstallForMeOnly=仅为我安装
|
InstallForMeOnly=仅为我安装
|
||||||
InstallForMeOnly1=首次启动游戏时将显示防火墙提示。
|
InstallForMeOnly1=首次启动游戏时将显示防火墙提示。
|
||||||
InstallForMeOnly2=警告:如果无法允许防火墙规则,局域网游戏将无法运行。
|
InstallForMeOnly2=警告:如果无法允许防火墙规则,局域网游戏将无法运行。
|
||||||
CreateDesktopShortcuts=创建桌面快捷方式
|
CreateDesktopShortcuts=创建桌面快捷方式
|
||||||
ShortcutsOptions=快捷方式选项
|
ShortcutsOptions=快捷方式选项
|
||||||
CreateStartMenuShortcuts=创建开始菜单快捷方式
|
CreateStartMenuShortcuts=创建开始菜单快捷方式
|
||||||
FirewallOptions=防火墙设置
|
FirewallOptions=防火墙设置
|
||||||
AddFirewallRules=为 VCMI 添加防火墙规则
|
AddFirewallRules=为 VCMI 添加防火墙规则
|
||||||
FileAssociations=文件关联
|
FileAssociations=文件关联
|
||||||
AssociateH3MFiles=将 .h3m 文件关联到 VCMI 地图编辑器
|
AssociateH3MFiles=将 .h3m 文件关联到 VCMI 地图编辑器
|
||||||
AssociateVMapFiles=将 .vmap 文件关联到 VCMI 地图编辑器
|
AssociateVMapFiles=将 .vmap 文件关联到 VCMI 地图编辑器
|
||||||
RunVCMILauncherAfterInstall=启动 VCMI 启动器
|
RunVCMILauncherAfterInstall=启动 VCMI 启动器
|
||||||
ShortcutMapEditor=VCMI 地图编辑器
|
ShortcutMapEditor=VCMI 地图编辑器
|
||||||
ShortcutLauncher=VCMI 启动器
|
ShortcutLauncher=VCMI 启动器
|
||||||
ShortcutWebPage=VCMI 网站
|
ShortcutWebPage=VCMI 网站
|
||||||
ShortcutDiscord=VCMI Discord
|
ShortcutDiscord=VCMI Discord
|
||||||
ShortcutLauncherComment=启动 VCMI 启动器
|
ShortcutLauncherComment=启动 VCMI 启动器
|
||||||
ShortcutMapEditorComment=打开 VCMI 地图编辑器
|
ShortcutMapEditorComment=打开 VCMI 地图编辑器
|
||||||
ShortcutWebPageComment=访问官方 VCMI 网站
|
ShortcutWebPageComment=访问官方 VCMI 网站
|
||||||
ShortcutDiscordComment=访问官方 VCMI Discord
|
ShortcutDiscordComment=访问官方 VCMI Discord
|
||||||
DeleteUserData=删除用户数据
|
DeleteUserData=删除用户数据
|
||||||
Uninstall=卸载
|
Uninstall=卸载
|
||||||
VMAPDescription=VCMI 地图文件
|
VMAPDescription=VCMI 地图文件
|
||||||
H3MDescription=Heroes 3 地图文件
|
H3MDescription=Heroes 3 地图文件
|
||||||
|
@@ -1,409 +1,409 @@
|
|||||||
; *******************************************************
|
; *******************************************************
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Inno Setup version 6.1.0+ Czech messages ***
|
; *** Inno Setup version 6.1.0+ Czech messages ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Original Author: ***
|
; *** Original Author: ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Ivo Bauer (bauer@ozm.cz) ***
|
; *** Ivo Bauer (bauer@ozm.cz) ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Contributors: ***
|
; *** Contributors: ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Lubos Stanek (lubek@users.sourceforge.net) ***
|
; *** Lubos Stanek (lubek@users.sourceforge.net) ***
|
||||||
; *** Vitezslav Svejdar (vitezslav.svejdar@cuni.cz) ***
|
; *** Vitezslav Svejdar (vitezslav.svejdar@cuni.cz) ***
|
||||||
; *** Jiri Fenz (jirifenz@gmail.com) ***
|
; *** Jiri Fenz (jirifenz@gmail.com) ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *******************************************************
|
; *******************************************************
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
LanguageName=<010C>e<0161>tina
|
LanguageName=<010C>e<0161>tina
|
||||||
LanguageID=$0405
|
LanguageID=$0405
|
||||||
LanguageCodePage=1250
|
LanguageCodePage=1250
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Průvodce instalací
|
SetupAppTitle=Průvodce instalací
|
||||||
SetupWindowTitle=Průvodce instalací - %1
|
SetupWindowTitle=Průvodce instalací - %1
|
||||||
UninstallAppTitle=Průvodce odinstalací
|
UninstallAppTitle=Průvodce odinstalací
|
||||||
UninstallAppFullTitle=Průvodce odinstalací - %1
|
UninstallAppFullTitle=Průvodce odinstalací - %1
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Informace
|
InformationTitle=Informace
|
||||||
ConfirmTitle=Potvrzení
|
ConfirmTitle=Potvrzení
|
||||||
ErrorTitle=Chyba
|
ErrorTitle=Chyba
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=Vítá Vás průvodce instalací produktu %1. Chcete pokračovat?
|
SetupLdrStartupMessage=Vítá Vás průvodce instalací produktu %1. Chcete pokračovat?
|
||||||
LdrCannotCreateTemp=Nelze vytvořit dočasný soubor. Průvodce instalací bude ukončen
|
LdrCannotCreateTemp=Nelze vytvořit dočasný soubor. Průvodce instalací bude ukončen
|
||||||
LdrCannotExecTemp=Nelze spustit soubor v dočasné složce. Průvodce instalací bude ukončen
|
LdrCannotExecTemp=Nelze spustit soubor v dočasné složce. Průvodce instalací bude ukončen
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nChyba %2: %3
|
LastErrorMessage=%1.%n%nChyba %2: %3
|
||||||
SetupFileMissing=Instalační složka neobsahuje soubor %1. Opravte prosím tuto chybu nebo si opatřete novou kopii tohoto produktu.
|
SetupFileMissing=Instalační složka neobsahuje soubor %1. Opravte prosím tuto chybu nebo si opatřete novou kopii tohoto produktu.
|
||||||
SetupFileCorrupt=Soubory průvodce instalací jsou poškozeny. Opatřete si prosím novou kopii tohoto produktu.
|
SetupFileCorrupt=Soubory průvodce instalací jsou poškozeny. Opatřete si prosím novou kopii tohoto produktu.
|
||||||
SetupFileCorruptOrWrongVer=Soubory průvodce instalací jsou poškozeny nebo se neslučují s touto verzí průvodce instalací. Opravte prosím tuto chybu nebo si opatřete novou kopii tohoto produktu.
|
SetupFileCorruptOrWrongVer=Soubory průvodce instalací jsou poškozeny nebo se neslučují s touto verzí průvodce instalací. Opravte prosím tuto chybu nebo si opatřete novou kopii tohoto produktu.
|
||||||
InvalidParameter=Příkazový řádek obsahuje neplatný parametr:%n%n%1
|
InvalidParameter=Příkazový řádek obsahuje neplatný parametr:%n%n%1
|
||||||
SetupAlreadyRunning=Průvodce instalací je již spuštěn.
|
SetupAlreadyRunning=Průvodce instalací je již spuštěn.
|
||||||
WindowsVersionNotSupported=Tento produkt nepodporuje verzi MS Windows, která běží na Vašem počítači.
|
WindowsVersionNotSupported=Tento produkt nepodporuje verzi MS Windows, která běží na Vašem počítači.
|
||||||
WindowsServicePackRequired=Tento produkt vyžaduje %1 Service Pack %2 nebo vyšší.
|
WindowsServicePackRequired=Tento produkt vyžaduje %1 Service Pack %2 nebo vyšší.
|
||||||
NotOnThisPlatform=Tento produkt nelze spustit ve %1.
|
NotOnThisPlatform=Tento produkt nelze spustit ve %1.
|
||||||
OnlyOnThisPlatform=Tento produkt musí být spuštěn ve %1.
|
OnlyOnThisPlatform=Tento produkt musí být spuštěn ve %1.
|
||||||
OnlyOnTheseArchitectures=Tento produkt lze nainstalovat pouze ve verzích MS Windows s podporou architektury procesorů:%n%n%1
|
OnlyOnTheseArchitectures=Tento produkt lze nainstalovat pouze ve verzích MS Windows s podporou architektury procesorů:%n%n%1
|
||||||
WinVersionTooLowError=Tento produkt vyžaduje %1 verzi %2 nebo vyšší.
|
WinVersionTooLowError=Tento produkt vyžaduje %1 verzi %2 nebo vyšší.
|
||||||
WinVersionTooHighError=Tento produkt nelze nainstalovat ve %1 verzi %2 nebo vyšší.
|
WinVersionTooHighError=Tento produkt nelze nainstalovat ve %1 verzi %2 nebo vyšší.
|
||||||
AdminPrivilegesRequired=K instalaci tohoto produktu musíte být přihlášeni s oprávněními správce.
|
AdminPrivilegesRequired=K instalaci tohoto produktu musíte být přihlášeni s oprávněními správce.
|
||||||
PowerUserPrivilegesRequired=K instalaci tohoto produktu musíte být přihlášeni s oprávněními správce nebo člena skupiny Power Users.
|
PowerUserPrivilegesRequired=K instalaci tohoto produktu musíte být přihlášeni s oprávněními správce nebo člena skupiny Power Users.
|
||||||
SetupAppRunningError=Průvodce instalací zjistil, že produkt %1 je nyní spuštěn.%n%nZavřete prosím všechny instance tohoto produktu a pak pokračujte klepnutím na tlačítko OK, nebo ukončete instalaci tlačítkem Zrušit.
|
SetupAppRunningError=Průvodce instalací zjistil, že produkt %1 je nyní spuštěn.%n%nZavřete prosím všechny instance tohoto produktu a pak pokračujte klepnutím na tlačítko OK, nebo ukončete instalaci tlačítkem Zrušit.
|
||||||
UninstallAppRunningError=Průvodce odinstalací zjistil, že produkt %1 je nyní spuštěn.%n%nZavřete prosím všechny instance tohoto produktu a pak pokračujte klepnutím na tlačítko OK, nebo ukončete odinstalaci tlačítkem Zrušit.
|
UninstallAppRunningError=Průvodce odinstalací zjistil, že produkt %1 je nyní spuštěn.%n%nZavřete prosím všechny instance tohoto produktu a pak pokračujte klepnutím na tlačítko OK, nebo ukončete odinstalaci tlačítkem Zrušit.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Výběr režimu průvodce instalací
|
PrivilegesRequiredOverrideTitle=Výběr režimu průvodce instalací
|
||||||
PrivilegesRequiredOverrideInstruction=Zvolte režim instalace
|
PrivilegesRequiredOverrideInstruction=Zvolte režim instalace
|
||||||
PrivilegesRequiredOverrideText1=Produkt %1 lze nainstalovat pro všechny uživatele (musíte být přihlášeni s oprávněními správce), nebo pouze pro Vás.
|
PrivilegesRequiredOverrideText1=Produkt %1 lze nainstalovat pro všechny uživatele (musíte být přihlášeni s oprávněními správce), nebo pouze pro Vás.
|
||||||
PrivilegesRequiredOverrideText2=Produkt %1 lze nainstalovat pouze pro Vás, nebo pro všechny uživatele (musíte být přihlášeni s oprávněními správce).
|
PrivilegesRequiredOverrideText2=Produkt %1 lze nainstalovat pouze pro Vás, nebo pro všechny uživatele (musíte být přihlášeni s oprávněními správce).
|
||||||
PrivilegesRequiredOverrideAllUsers=Nainstalovat pro &všechny uživatele
|
PrivilegesRequiredOverrideAllUsers=Nainstalovat pro &všechny uživatele
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Nainstalovat pro &všechny uživatele (doporučuje se)
|
PrivilegesRequiredOverrideAllUsersRecommended=Nainstalovat pro &všechny uživatele (doporučuje se)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Nainstalovat pouze pro &mě
|
PrivilegesRequiredOverrideCurrentUser=Nainstalovat pouze pro &mě
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Nainstalovat pouze pro &mě (doporučuje se)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Nainstalovat pouze pro &mě (doporučuje se)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=Průvodci instalací se nepodařilo vytvořit složku "%1"
|
ErrorCreatingDir=Průvodci instalací se nepodařilo vytvořit složku "%1"
|
||||||
ErrorTooManyFilesInDir=Nelze vytvořit soubor ve složce "%1", protože tato složka již obsahuje příliš mnoho souborů
|
ErrorTooManyFilesInDir=Nelze vytvořit soubor ve složce "%1", protože tato složka již obsahuje příliš mnoho souborů
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Ukončit průvodce instalací
|
ExitSetupTitle=Ukončit průvodce instalací
|
||||||
ExitSetupMessage=Instalace nebyla zcela dokončena. Jestliže nyní průvodce instalací ukončíte, produkt nebude nainstalován.%n%nPrůvodce instalací můžete znovu spustit kdykoliv jindy a instalaci dokončit.%n%nChcete průvodce instalací ukončit?
|
ExitSetupMessage=Instalace nebyla zcela dokončena. Jestliže nyní průvodce instalací ukončíte, produkt nebude nainstalován.%n%nPrůvodce instalací můžete znovu spustit kdykoliv jindy a instalaci dokončit.%n%nChcete průvodce instalací ukončit?
|
||||||
AboutSetupMenuItem=&O průvodci instalací...
|
AboutSetupMenuItem=&O průvodci instalací...
|
||||||
AboutSetupTitle=O průvodci instalací
|
AboutSetupTitle=O průvodci instalací
|
||||||
AboutSetupMessage=%1 verze %2%n%3%n%n%1 domovská stránka:%n%4
|
AboutSetupMessage=%1 verze %2%n%3%n%n%1 domovská stránka:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Czech translation maintained by Ivo Bauer (bauer@ozm.cz), Lubos Stanek (lubek@users.sourceforge.net), Vitezslav Svejdar (vitezslav.svejdar@cuni.cz) and Jiri Fenz (jirifenz@gmail.com)
|
TranslatorNote=Czech translation maintained by Ivo Bauer (bauer@ozm.cz), Lubos Stanek (lubek@users.sourceforge.net), Vitezslav Svejdar (vitezslav.svejdar@cuni.cz) and Jiri Fenz (jirifenz@gmail.com)
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Zpět
|
ButtonBack=< &Zpět
|
||||||
ButtonNext=&Další >
|
ButtonNext=&Další >
|
||||||
ButtonInstall=&Instalovat
|
ButtonInstall=&Instalovat
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Zrušit
|
ButtonCancel=Zrušit
|
||||||
ButtonYes=&Ano
|
ButtonYes=&Ano
|
||||||
ButtonYesToAll=Ano &všem
|
ButtonYesToAll=Ano &všem
|
||||||
ButtonNo=&Ne
|
ButtonNo=&Ne
|
||||||
ButtonNoToAll=N&e všem
|
ButtonNoToAll=N&e všem
|
||||||
ButtonFinish=&Dokončit
|
ButtonFinish=&Dokončit
|
||||||
ButtonBrowse=&Procházet...
|
ButtonBrowse=&Procházet...
|
||||||
ButtonWizardBrowse=&Procházet...
|
ButtonWizardBrowse=&Procházet...
|
||||||
ButtonNewFolder=&Vytvořit novou složku
|
ButtonNewFolder=&Vytvořit novou složku
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Výběr jazyka průvodce instalací
|
SelectLanguageTitle=Výběr jazyka průvodce instalací
|
||||||
SelectLanguageLabel=Zvolte jazyk, který se má použít během instalace.
|
SelectLanguageLabel=Zvolte jazyk, který se má použít během instalace.
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=Pokračujte klepnutím na tlačítko Další, nebo ukončete průvodce instalací tlačítkem Zrušit.
|
ClickNext=Pokračujte klepnutím na tlačítko Další, nebo ukončete průvodce instalací tlačítkem Zrušit.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Vyhledat složku
|
BrowseDialogTitle=Vyhledat složku
|
||||||
BrowseDialogLabel=Z níže uvedeného seznamu vyberte složku a klepněte na tlačítko OK.
|
BrowseDialogLabel=Z níže uvedeného seznamu vyberte složku a klepněte na tlačítko OK.
|
||||||
NewFolderName=Nová složka
|
NewFolderName=Nová složka
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Vítá Vás průvodce instalací produktu [name].
|
WelcomeLabel1=Vítá Vás průvodce instalací produktu [name].
|
||||||
WelcomeLabel2=Produkt [name/ver] bude nainstalován na Váš počítač.%n%nDříve než budete pokračovat, doporučuje se zavřít veškeré spuštěné aplikace.
|
WelcomeLabel2=Produkt [name/ver] bude nainstalován na Váš počítač.%n%nDříve než budete pokračovat, doporučuje se zavřít veškeré spuštěné aplikace.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Heslo
|
WizardPassword=Heslo
|
||||||
PasswordLabel1=Tato instalace je chráněna heslem.
|
PasswordLabel1=Tato instalace je chráněna heslem.
|
||||||
PasswordLabel3=Zadejte prosím heslo a pokračujte klepnutím na tlačítko Další. Při zadávání hesla rozlišujte malá a velká písmena.
|
PasswordLabel3=Zadejte prosím heslo a pokračujte klepnutím na tlačítko Další. Při zadávání hesla rozlišujte malá a velká písmena.
|
||||||
PasswordEditLabel=&Heslo:
|
PasswordEditLabel=&Heslo:
|
||||||
IncorrectPassword=Zadané heslo není správné. Zkuste to prosím znovu.
|
IncorrectPassword=Zadané heslo není správné. Zkuste to prosím znovu.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=Licenční smlouva
|
WizardLicense=Licenční smlouva
|
||||||
LicenseLabel=Dříve než budete pokračovat, přečtěte si prosím pozorně následující důležité informace.
|
LicenseLabel=Dříve než budete pokračovat, přečtěte si prosím pozorně následující důležité informace.
|
||||||
LicenseLabel3=Přečtěte si prosím následující licenční smlouvu. Aby instalace mohla pokračovat, musíte souhlasit s podmínkami této smlouvy.
|
LicenseLabel3=Přečtěte si prosím následující licenční smlouvu. Aby instalace mohla pokračovat, musíte souhlasit s podmínkami této smlouvy.
|
||||||
LicenseAccepted=&Souhlasím s podmínkami licenční smlouvy
|
LicenseAccepted=&Souhlasím s podmínkami licenční smlouvy
|
||||||
LicenseNotAccepted=&Nesouhlasím s podmínkami licenční smlouvy
|
LicenseNotAccepted=&Nesouhlasím s podmínkami licenční smlouvy
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Informace
|
WizardInfoBefore=Informace
|
||||||
InfoBeforeLabel=Dříve než budete pokračovat, přečtěte si prosím pozorně následující důležité informace.
|
InfoBeforeLabel=Dříve než budete pokračovat, přečtěte si prosím pozorně následující důležité informace.
|
||||||
InfoBeforeClickLabel=Pokračujte v instalaci klepnutím na tlačítko Další.
|
InfoBeforeClickLabel=Pokračujte v instalaci klepnutím na tlačítko Další.
|
||||||
WizardInfoAfter=Informace
|
WizardInfoAfter=Informace
|
||||||
InfoAfterLabel=Dříve než budete pokračovat, přečtěte si prosím pozorně následující důležité informace.
|
InfoAfterLabel=Dříve než budete pokračovat, přečtěte si prosím pozorně následující důležité informace.
|
||||||
InfoAfterClickLabel=Pokračujte v instalaci klepnutím na tlačítko Další.
|
InfoAfterClickLabel=Pokračujte v instalaci klepnutím na tlačítko Další.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=Informace o uživateli
|
WizardUserInfo=Informace o uživateli
|
||||||
UserInfoDesc=Zadejte prosím požadované údaje.
|
UserInfoDesc=Zadejte prosím požadované údaje.
|
||||||
UserInfoName=&Uživatelské jméno:
|
UserInfoName=&Uživatelské jméno:
|
||||||
UserInfoOrg=&Společnost:
|
UserInfoOrg=&Společnost:
|
||||||
UserInfoSerial=Sé&riové číslo:
|
UserInfoSerial=Sé&riové číslo:
|
||||||
UserInfoNameRequired=Musíte zadat uživatelské jméno.
|
UserInfoNameRequired=Musíte zadat uživatelské jméno.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Zvolte cílové umístění
|
WizardSelectDir=Zvolte cílové umístění
|
||||||
SelectDirDesc=Kam má být produkt [name] nainstalován?
|
SelectDirDesc=Kam má být produkt [name] nainstalován?
|
||||||
SelectDirLabel3=Průvodce nainstaluje produkt [name] do následující složky.
|
SelectDirLabel3=Průvodce nainstaluje produkt [name] do následující složky.
|
||||||
SelectDirBrowseLabel=Pokračujte klepnutím na tlačítko Další. Chcete-li zvolit jinou složku, klepněte na tlačítko Procházet.
|
SelectDirBrowseLabel=Pokračujte klepnutím na tlačítko Další. Chcete-li zvolit jinou složku, klepněte na tlačítko Procházet.
|
||||||
DiskSpaceGBLabel=Instalace vyžaduje nejméně [gb] GB volného místa na disku.
|
DiskSpaceGBLabel=Instalace vyžaduje nejméně [gb] GB volného místa na disku.
|
||||||
DiskSpaceMBLabel=Instalace vyžaduje nejméně [mb] MB volného místa na disku.
|
DiskSpaceMBLabel=Instalace vyžaduje nejméně [mb] MB volného místa na disku.
|
||||||
CannotInstallToNetworkDrive=Průvodce instalací nemůže instalovat do síťové jednotky.
|
CannotInstallToNetworkDrive=Průvodce instalací nemůže instalovat do síťové jednotky.
|
||||||
CannotInstallToUNCPath=Průvodce instalací nemůže instalovat do cesty UNC.
|
CannotInstallToUNCPath=Průvodce instalací nemůže instalovat do cesty UNC.
|
||||||
InvalidPath=Musíte zadat úplnou cestu včetně písmene jednotky; například:%n%nC:\Aplikace%n%nnebo cestu UNC ve tvaru:%n%n\\server\sdílená složka
|
InvalidPath=Musíte zadat úplnou cestu včetně písmene jednotky; například:%n%nC:\Aplikace%n%nnebo cestu UNC ve tvaru:%n%n\\server\sdílená složka
|
||||||
InvalidDrive=Vámi zvolená jednotka nebo cesta UNC neexistuje nebo není dostupná. Zvolte prosím jiné umístění.
|
InvalidDrive=Vámi zvolená jednotka nebo cesta UNC neexistuje nebo není dostupná. Zvolte prosím jiné umístění.
|
||||||
DiskSpaceWarningTitle=Nedostatek místa na disku
|
DiskSpaceWarningTitle=Nedostatek místa na disku
|
||||||
DiskSpaceWarning=Průvodce instalací vyžaduje nejméně %1 KB volného místa pro instalaci produktu, ale na zvolené jednotce je dostupných pouze %2 KB.%n%nChcete přesto pokračovat?
|
DiskSpaceWarning=Průvodce instalací vyžaduje nejméně %1 KB volného místa pro instalaci produktu, ale na zvolené jednotce je dostupných pouze %2 KB.%n%nChcete přesto pokračovat?
|
||||||
DirNameTooLong=Název složky nebo cesta jsou příliš dlouhé.
|
DirNameTooLong=Název složky nebo cesta jsou příliš dlouhé.
|
||||||
InvalidDirName=Název složky není platný.
|
InvalidDirName=Název složky není platný.
|
||||||
BadDirName32=Název složky nemůže obsahovat žádný z následujících znaků:%n%n%1
|
BadDirName32=Název složky nemůže obsahovat žádný z následujících znaků:%n%n%1
|
||||||
DirExistsTitle=Složka existuje
|
DirExistsTitle=Složka existuje
|
||||||
DirExists=Složka:%n%n%1%n%njiž existuje. Má se přesto instalovat do této složky?
|
DirExists=Složka:%n%n%1%n%njiž existuje. Má se přesto instalovat do této složky?
|
||||||
DirDoesntExistTitle=Složka neexistuje
|
DirDoesntExistTitle=Složka neexistuje
|
||||||
DirDoesntExist=Složka:%n%n%1%n%nneexistuje. Má být tato složka vytvořena?
|
DirDoesntExist=Složka:%n%n%1%n%nneexistuje. Má být tato složka vytvořena?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Zvolte součásti
|
WizardSelectComponents=Zvolte součásti
|
||||||
SelectComponentsDesc=Jaké součásti mají být nainstalovány?
|
SelectComponentsDesc=Jaké součásti mají být nainstalovány?
|
||||||
SelectComponentsLabel2=Zaškrtněte součásti, které mají být nainstalovány; součásti, které se nemají instalovat, ponechte nezaškrtnuté. Pokračujte klepnutím na tlačítko Další.
|
SelectComponentsLabel2=Zaškrtněte součásti, které mají být nainstalovány; součásti, které se nemají instalovat, ponechte nezaškrtnuté. Pokračujte klepnutím na tlačítko Další.
|
||||||
FullInstallation=Úplná instalace
|
FullInstallation=Úplná instalace
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Kompaktní instalace
|
CompactInstallation=Kompaktní instalace
|
||||||
CustomInstallation=Volitelná instalace
|
CustomInstallation=Volitelná instalace
|
||||||
NoUninstallWarningTitle=Součásti existují
|
NoUninstallWarningTitle=Součásti existují
|
||||||
NoUninstallWarning=Průvodce instalací zjistil, že následující součásti jsou již na Vašem počítači nainstalovány:%n%n%1%n%nNezahrnete-li tyto součásti do výběru, nebudou nyní odinstalovány.%n%nChcete přesto pokračovat?
|
NoUninstallWarning=Průvodce instalací zjistil, že následující součásti jsou již na Vašem počítači nainstalovány:%n%n%1%n%nNezahrnete-li tyto součásti do výběru, nebudou nyní odinstalovány.%n%nChcete přesto pokračovat?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=Vybrané součásti vyžadují nejméně [gb] GB místa na disku.
|
ComponentsDiskSpaceGBLabel=Vybrané součásti vyžadují nejméně [gb] GB místa na disku.
|
||||||
ComponentsDiskSpaceMBLabel=Vybrané součásti vyžadují nejméně [mb] MB místa na disku.
|
ComponentsDiskSpaceMBLabel=Vybrané součásti vyžadují nejméně [mb] MB místa na disku.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Zvolte další úlohy
|
WizardSelectTasks=Zvolte další úlohy
|
||||||
SelectTasksDesc=Které další úlohy mají být provedeny?
|
SelectTasksDesc=Které další úlohy mají být provedeny?
|
||||||
SelectTasksLabel2=Zvolte další úlohy, které mají být provedeny v průběhu instalace produktu [name], a pak pokračujte klepnutím na tlačítko Další.
|
SelectTasksLabel2=Zvolte další úlohy, které mají být provedeny v průběhu instalace produktu [name], a pak pokračujte klepnutím na tlačítko Další.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Vyberte složku v nabídce Start
|
WizardSelectProgramGroup=Vyberte složku v nabídce Start
|
||||||
SelectStartMenuFolderDesc=Kam má průvodce instalací umístit zástupce aplikace?
|
SelectStartMenuFolderDesc=Kam má průvodce instalací umístit zástupce aplikace?
|
||||||
SelectStartMenuFolderLabel3=Průvodce instalací vytvoří zástupce aplikace v následující složce nabídky Start.
|
SelectStartMenuFolderLabel3=Průvodce instalací vytvoří zástupce aplikace v následující složce nabídky Start.
|
||||||
SelectStartMenuFolderBrowseLabel=Pokračujte klepnutím na tlačítko Další. Chcete-li zvolit jinou složku, klepněte na tlačítko Procházet.
|
SelectStartMenuFolderBrowseLabel=Pokračujte klepnutím na tlačítko Další. Chcete-li zvolit jinou složku, klepněte na tlačítko Procházet.
|
||||||
MustEnterGroupName=Musíte zadat název složky.
|
MustEnterGroupName=Musíte zadat název složky.
|
||||||
GroupNameTooLong=Název složky nebo cesta jsou příliš dlouhé.
|
GroupNameTooLong=Název složky nebo cesta jsou příliš dlouhé.
|
||||||
InvalidGroupName=Název složky není platný.
|
InvalidGroupName=Název složky není platný.
|
||||||
BadGroupName=Název složky nemůže obsahovat žádný z následujících znaků:%n%n%1
|
BadGroupName=Název složky nemůže obsahovat žádný z následujících znaků:%n%n%1
|
||||||
NoProgramGroupCheck2=&Nevytvářet složku v nabídce Start
|
NoProgramGroupCheck2=&Nevytvářet složku v nabídce Start
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Instalace je připravena
|
WizardReady=Instalace je připravena
|
||||||
ReadyLabel1=Průvodce instalací je nyní připraven nainstalovat produkt [name] na Váš počítač.
|
ReadyLabel1=Průvodce instalací je nyní připraven nainstalovat produkt [name] na Váš počítač.
|
||||||
ReadyLabel2a=Pokračujte v instalaci klepnutím na tlačítko Instalovat. Přejete-li si změnit některá nastavení instalace, klepněte na tlačítko Zpět.
|
ReadyLabel2a=Pokračujte v instalaci klepnutím na tlačítko Instalovat. Přejete-li si změnit některá nastavení instalace, klepněte na tlačítko Zpět.
|
||||||
ReadyLabel2b=Pokračujte v instalaci klepnutím na tlačítko Instalovat.
|
ReadyLabel2b=Pokračujte v instalaci klepnutím na tlačítko Instalovat.
|
||||||
ReadyMemoUserInfo=Informace o uživateli:
|
ReadyMemoUserInfo=Informace o uživateli:
|
||||||
ReadyMemoDir=Cílové umístění:
|
ReadyMemoDir=Cílové umístění:
|
||||||
ReadyMemoType=Typ instalace:
|
ReadyMemoType=Typ instalace:
|
||||||
ReadyMemoComponents=Vybrané součásti:
|
ReadyMemoComponents=Vybrané součásti:
|
||||||
ReadyMemoGroup=Složka v nabídce Start:
|
ReadyMemoGroup=Složka v nabídce Start:
|
||||||
ReadyMemoTasks=Další úlohy:
|
ReadyMemoTasks=Další úlohy:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Stahují se další soubory...
|
DownloadingLabel=Stahují se další soubory...
|
||||||
ButtonStopDownload=&Zastavit stahování
|
ButtonStopDownload=&Zastavit stahování
|
||||||
StopDownload=Určitě chcete stahování zastavit?
|
StopDownload=Určitě chcete stahování zastavit?
|
||||||
ErrorDownloadAborted=Stahování přerušeno
|
ErrorDownloadAborted=Stahování přerušeno
|
||||||
ErrorDownloadFailed=Stahování selhalo: %1 %2
|
ErrorDownloadFailed=Stahování selhalo: %1 %2
|
||||||
ErrorDownloadSizeFailed=Nepodařilo se zjistit velikost: %1 %2
|
ErrorDownloadSizeFailed=Nepodařilo se zjistit velikost: %1 %2
|
||||||
ErrorFileHash1=Nepodařilo se určit kontrolní součet souboru: %1
|
ErrorFileHash1=Nepodařilo se určit kontrolní součet souboru: %1
|
||||||
ErrorFileHash2=Neplatný kontrolní součet souboru: očekáváno %1, nalezeno %2
|
ErrorFileHash2=Neplatný kontrolní součet souboru: očekáváno %1, nalezeno %2
|
||||||
ErrorProgress=Neplatný průběh: %1 of %2
|
ErrorProgress=Neplatný průběh: %1 of %2
|
||||||
ErrorFileSize=Neplatná velikost souboru: očekáváno %1, nalezeno %2
|
ErrorFileSize=Neplatná velikost souboru: očekáváno %1, nalezeno %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Příprava k instalaci
|
WizardPreparing=Příprava k instalaci
|
||||||
PreparingDesc=Průvodce instalací připravuje instalaci produktu [name] na Váš počítač.
|
PreparingDesc=Průvodce instalací připravuje instalaci produktu [name] na Váš počítač.
|
||||||
PreviousInstallNotCompleted=Instalace/odinstalace předchozího produktu nebyla zcela dokončena. Aby mohla být dokončena, musíte restartovat Váš počítač.%n%nPo restartování Vašeho počítače spusťte znovu průvodce instalací, aby bylo možné dokončit instalaci produktu [name].
|
PreviousInstallNotCompleted=Instalace/odinstalace předchozího produktu nebyla zcela dokončena. Aby mohla být dokončena, musíte restartovat Váš počítač.%n%nPo restartování Vašeho počítače spusťte znovu průvodce instalací, aby bylo možné dokončit instalaci produktu [name].
|
||||||
CannotContinue=Průvodce instalací nemůže pokračovat. Ukončete prosím průvodce instalací klepnutím na tlačítko Zrušit.
|
CannotContinue=Průvodce instalací nemůže pokračovat. Ukončete prosím průvodce instalací klepnutím na tlačítko Zrušit.
|
||||||
ApplicationsFound=Následující aplikace přistupují k souborům, které je třeba během instalace aktualizovat. Doporučuje se povolit průvodci instalací, aby tyto aplikace automaticky zavřel.
|
ApplicationsFound=Následující aplikace přistupují k souborům, které je třeba během instalace aktualizovat. Doporučuje se povolit průvodci instalací, aby tyto aplikace automaticky zavřel.
|
||||||
ApplicationsFound2=Následující aplikace přistupují k souborům, které je třeba během instalace aktualizovat. Doporučuje se povolit průvodci instalací, aby tyto aplikace automaticky zavřel. Po dokončení instalace se průvodce instalací pokusí aplikace restartovat.
|
ApplicationsFound2=Následující aplikace přistupují k souborům, které je třeba během instalace aktualizovat. Doporučuje se povolit průvodci instalací, aby tyto aplikace automaticky zavřel. Po dokončení instalace se průvodce instalací pokusí aplikace restartovat.
|
||||||
CloseApplications=&Zavřít aplikace automaticky
|
CloseApplications=&Zavřít aplikace automaticky
|
||||||
DontCloseApplications=&Nezavírat aplikace
|
DontCloseApplications=&Nezavírat aplikace
|
||||||
ErrorCloseApplications=Průvodci instalací se nepodařilo automaticky zavřít všechny aplikace. Dříve než budete pokračovat, doporučuje se zavřít veškeré aplikace přistupující k souborům, které je třeba během instalace aktualizovat.
|
ErrorCloseApplications=Průvodci instalací se nepodařilo automaticky zavřít všechny aplikace. Dříve než budete pokračovat, doporučuje se zavřít veškeré aplikace přistupující k souborům, které je třeba během instalace aktualizovat.
|
||||||
PrepareToInstallNeedsRestart=Průvodce instalací musí restartovat Váš počítač. Po restartování Vašeho počítače spusťte průvodce instalací znovu, aby bylo možné dokončit instalaci produktu [name].%n%nChcete jej restartovat nyní?
|
PrepareToInstallNeedsRestart=Průvodce instalací musí restartovat Váš počítač. Po restartování Vašeho počítače spusťte průvodce instalací znovu, aby bylo možné dokončit instalaci produktu [name].%n%nChcete jej restartovat nyní?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Instalování
|
WizardInstalling=Instalování
|
||||||
InstallingLabel=Čekejte prosím, dokud průvodce instalací nedokončí instalaci produktu [name] na Váš počítač.
|
InstallingLabel=Čekejte prosím, dokud průvodce instalací nedokončí instalaci produktu [name] na Váš počítač.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=Dokončuje se instalace produktu [name]
|
FinishedHeadingLabel=Dokončuje se instalace produktu [name]
|
||||||
FinishedLabelNoIcons=Průvodce instalací dokončil instalaci produktu [name] na Váš počítač.
|
FinishedLabelNoIcons=Průvodce instalací dokončil instalaci produktu [name] na Váš počítač.
|
||||||
FinishedLabel=Průvodce instalací dokončil instalaci produktu [name] na Váš počítač. Produkt lze spustit pomocí nainstalovaných zástupců.
|
FinishedLabel=Průvodce instalací dokončil instalaci produktu [name] na Váš počítač. Produkt lze spustit pomocí nainstalovaných zástupců.
|
||||||
ClickFinish=Ukončete průvodce instalací klepnutím na tlačítko Dokončit.
|
ClickFinish=Ukončete průvodce instalací klepnutím na tlačítko Dokončit.
|
||||||
FinishedRestartLabel=K dokončení instalace produktu [name] je nezbytné, aby průvodce instalací restartoval Váš počítač. Chcete jej restartovat nyní?
|
FinishedRestartLabel=K dokončení instalace produktu [name] je nezbytné, aby průvodce instalací restartoval Váš počítač. Chcete jej restartovat nyní?
|
||||||
FinishedRestartMessage=K dokončení instalace produktu [name] je nezbytné, aby průvodce instalací restartoval Váš počítač.%n%nChcete jej restartovat nyní?
|
FinishedRestartMessage=K dokončení instalace produktu [name] je nezbytné, aby průvodce instalací restartoval Váš počítač.%n%nChcete jej restartovat nyní?
|
||||||
ShowReadmeCheck=Ano, chci zobrazit dokument "ČTIMNE"
|
ShowReadmeCheck=Ano, chci zobrazit dokument "ČTIMNE"
|
||||||
YesRadio=&Ano, chci nyní restartovat počítač
|
YesRadio=&Ano, chci nyní restartovat počítač
|
||||||
NoRadio=&Ne, počítač restartuji později
|
NoRadio=&Ne, počítač restartuji později
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=Spustit %1
|
RunEntryExec=Spustit %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=Zobrazit %1
|
RunEntryShellExec=Zobrazit %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=Průvodce instalací vyžaduje další disk
|
ChangeDiskTitle=Průvodce instalací vyžaduje další disk
|
||||||
SelectDiskLabel2=Vložte prosím disk %1 a klepněte na tlačítko OK.%n%nPokud se soubory na tomto disku nacházejí v jiné složce než v té, která je zobrazena níže, pak zadejte správnou cestu nebo ji zvolte klepnutím na tlačítko Procházet.
|
SelectDiskLabel2=Vložte prosím disk %1 a klepněte na tlačítko OK.%n%nPokud se soubory na tomto disku nacházejí v jiné složce než v té, která je zobrazena níže, pak zadejte správnou cestu nebo ji zvolte klepnutím na tlačítko Procházet.
|
||||||
PathLabel=&Cesta:
|
PathLabel=&Cesta:
|
||||||
FileNotInDir2=Soubor "%1" nelze najít v "%2". Vložte prosím správný disk nebo zvolte jinou složku.
|
FileNotInDir2=Soubor "%1" nelze najít v "%2". Vložte prosím správný disk nebo zvolte jinou složku.
|
||||||
SelectDirectoryLabel=Specifikujte prosím umístění dalšího disku.
|
SelectDirectoryLabel=Specifikujte prosím umístění dalšího disku.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=Instalace nebyla zcela dokončena.%n%nOpravte prosím chybu a spusťte průvodce instalací znovu.
|
SetupAborted=Instalace nebyla zcela dokončena.%n%nOpravte prosím chybu a spusťte průvodce instalací znovu.
|
||||||
AbortRetryIgnoreSelectAction=Zvolte akci
|
AbortRetryIgnoreSelectAction=Zvolte akci
|
||||||
AbortRetryIgnoreRetry=&Zopakovat akci
|
AbortRetryIgnoreRetry=&Zopakovat akci
|
||||||
AbortRetryIgnoreIgnore=&Ignorovat chybu a pokračovat
|
AbortRetryIgnoreIgnore=&Ignorovat chybu a pokračovat
|
||||||
AbortRetryIgnoreCancel=Zrušit instalaci
|
AbortRetryIgnoreCancel=Zrušit instalaci
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Zavírají se aplikace...
|
StatusClosingApplications=Zavírají se aplikace...
|
||||||
StatusCreateDirs=Vytvářejí se složky...
|
StatusCreateDirs=Vytvářejí se složky...
|
||||||
StatusExtractFiles=Extrahují se soubory...
|
StatusExtractFiles=Extrahují se soubory...
|
||||||
StatusCreateIcons=Vytvářejí se zástupci...
|
StatusCreateIcons=Vytvářejí se zástupci...
|
||||||
StatusCreateIniEntries=Vytvářejí se záznamy v inicializačních souborech...
|
StatusCreateIniEntries=Vytvářejí se záznamy v inicializačních souborech...
|
||||||
StatusCreateRegistryEntries=Vytvářejí se záznamy v systémovém registru...
|
StatusCreateRegistryEntries=Vytvářejí se záznamy v systémovém registru...
|
||||||
StatusRegisterFiles=Registrují se soubory...
|
StatusRegisterFiles=Registrují se soubory...
|
||||||
StatusSavingUninstall=Ukládají se informace pro odinstalaci produktu...
|
StatusSavingUninstall=Ukládají se informace pro odinstalaci produktu...
|
||||||
StatusRunProgram=Dokončuje se instalace...
|
StatusRunProgram=Dokončuje se instalace...
|
||||||
StatusRestartingApplications=Restartují se aplikace...
|
StatusRestartingApplications=Restartují se aplikace...
|
||||||
StatusRollback=Provedené změny se vracejí zpět...
|
StatusRollback=Provedené změny se vracejí zpět...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Interní chyba: %1
|
ErrorInternal2=Interní chyba: %1
|
||||||
ErrorFunctionFailedNoCode=Funkce %1 selhala
|
ErrorFunctionFailedNoCode=Funkce %1 selhala
|
||||||
ErrorFunctionFailed=Funkce %1 selhala; kód %2
|
ErrorFunctionFailed=Funkce %1 selhala; kód %2
|
||||||
ErrorFunctionFailedWithMessage=Funkce %1 selhala; kód %2.%n%3
|
ErrorFunctionFailedWithMessage=Funkce %1 selhala; kód %2.%n%3
|
||||||
ErrorExecutingProgram=Nelze spustit soubor:%n%1
|
ErrorExecutingProgram=Nelze spustit soubor:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Došlo k chybě při otevírání klíče systémového registru:%n%1\%2
|
ErrorRegOpenKey=Došlo k chybě při otevírání klíče systémového registru:%n%1\%2
|
||||||
ErrorRegCreateKey=Došlo k chybě při vytváření klíče systémového registru:%n%1\%2
|
ErrorRegCreateKey=Došlo k chybě při vytváření klíče systémového registru:%n%1\%2
|
||||||
ErrorRegWriteKey=Došlo k chybě při zápisu do klíče systémového registru:%n%1\%2
|
ErrorRegWriteKey=Došlo k chybě při zápisu do klíče systémového registru:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Došlo k chybě při vytváření záznamu v inicializačním souboru "%1".
|
ErrorIniEntry=Došlo k chybě při vytváření záznamu v inicializačním souboru "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Přeskočit tento soubor (nedoporučuje se)
|
FileAbortRetryIgnoreSkipNotRecommended=&Přeskočit tento soubor (nedoporučuje se)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorovat chybu a pokračovat (nedoporučuje se)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorovat chybu a pokračovat (nedoporučuje se)
|
||||||
SourceIsCorrupted=Zdrojový soubor je poškozen
|
SourceIsCorrupted=Zdrojový soubor je poškozen
|
||||||
SourceDoesntExist=Zdrojový soubor "%1" neexistuje
|
SourceDoesntExist=Zdrojový soubor "%1" neexistuje
|
||||||
ExistingFileReadOnly2=Nelze nahradit existující soubor, protože je určen pouze pro čtení.
|
ExistingFileReadOnly2=Nelze nahradit existující soubor, protože je určen pouze pro čtení.
|
||||||
ExistingFileReadOnlyRetry=&Odstranit atribut "pouze pro čtení" a zopakovat akci
|
ExistingFileReadOnlyRetry=&Odstranit atribut "pouze pro čtení" a zopakovat akci
|
||||||
ExistingFileReadOnlyKeepExisting=&Ponechat existující soubor
|
ExistingFileReadOnlyKeepExisting=&Ponechat existující soubor
|
||||||
ErrorReadingExistingDest=Došlo k chybě při pokusu o čtení existujícího souboru:
|
ErrorReadingExistingDest=Došlo k chybě při pokusu o čtení existujícího souboru:
|
||||||
FileExistsSelectAction=Zvolte akci
|
FileExistsSelectAction=Zvolte akci
|
||||||
FileExists2=Soubor již existuje.
|
FileExists2=Soubor již existuje.
|
||||||
FileExistsOverwriteExisting=&Nahradit existující soubor
|
FileExistsOverwriteExisting=&Nahradit existující soubor
|
||||||
FileExistsKeepExisting=&Ponechat existující soubor
|
FileExistsKeepExisting=&Ponechat existující soubor
|
||||||
FileExistsOverwriteOrKeepAll=&Zachovat se stejně u dalších konfliktů
|
FileExistsOverwriteOrKeepAll=&Zachovat se stejně u dalších konfliktů
|
||||||
ExistingFileNewerSelectAction=Zvolte akci
|
ExistingFileNewerSelectAction=Zvolte akci
|
||||||
ExistingFileNewer2=Existující soubor je novější než ten, který se průvodce instalací pokouší instalovat.
|
ExistingFileNewer2=Existující soubor je novější než ten, který se průvodce instalací pokouší instalovat.
|
||||||
ExistingFileNewerOverwriteExisting=&Nahradit existující soubor
|
ExistingFileNewerOverwriteExisting=&Nahradit existující soubor
|
||||||
ExistingFileNewerKeepExisting=&Ponechat existující soubor (doporučuje se)
|
ExistingFileNewerKeepExisting=&Ponechat existující soubor (doporučuje se)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Zachovat se stejně u dalších konfliktů
|
ExistingFileNewerOverwriteOrKeepAll=&Zachovat se stejně u dalších konfliktů
|
||||||
ErrorChangingAttr=Došlo k chybě při pokusu o změnu atributů existujícího souboru:
|
ErrorChangingAttr=Došlo k chybě při pokusu o změnu atributů existujícího souboru:
|
||||||
ErrorCreatingTemp=Došlo k chybě při pokusu o vytvoření souboru v cílové složce:
|
ErrorCreatingTemp=Došlo k chybě při pokusu o vytvoření souboru v cílové složce:
|
||||||
ErrorReadingSource=Došlo k chybě při pokusu o čtení zdrojového souboru:
|
ErrorReadingSource=Došlo k chybě při pokusu o čtení zdrojového souboru:
|
||||||
ErrorCopying=Došlo k chybě při pokusu o zkopírování souboru:
|
ErrorCopying=Došlo k chybě při pokusu o zkopírování souboru:
|
||||||
ErrorReplacingExistingFile=Došlo k chybě při pokusu o nahrazení existujícího souboru:
|
ErrorReplacingExistingFile=Došlo k chybě při pokusu o nahrazení existujícího souboru:
|
||||||
ErrorRestartReplace=Funkce "RestartReplace" průvodce instalací selhala:
|
ErrorRestartReplace=Funkce "RestartReplace" průvodce instalací selhala:
|
||||||
ErrorRenamingTemp=Došlo k chybě při pokusu o přejmenování souboru v cílové složce:
|
ErrorRenamingTemp=Došlo k chybě při pokusu o přejmenování souboru v cílové složce:
|
||||||
ErrorRegisterServer=Nelze zaregistrovat DLL/OCX: %1
|
ErrorRegisterServer=Nelze zaregistrovat DLL/OCX: %1
|
||||||
ErrorRegSvr32Failed=Volání RegSvr32 selhalo s návratovým kódem %1
|
ErrorRegSvr32Failed=Volání RegSvr32 selhalo s návratovým kódem %1
|
||||||
ErrorRegisterTypeLib=Nelze zaregistrovat typovou knihovnu: %1
|
ErrorRegisterTypeLib=Nelze zaregistrovat typovou knihovnu: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32bitový
|
UninstallDisplayNameMark32Bit=32bitový
|
||||||
UninstallDisplayNameMark64Bit=64bitový
|
UninstallDisplayNameMark64Bit=64bitový
|
||||||
UninstallDisplayNameMarkAllUsers=Všichni uživatelé
|
UninstallDisplayNameMarkAllUsers=Všichni uživatelé
|
||||||
UninstallDisplayNameMarkCurrentUser=Aktuální uživatel
|
UninstallDisplayNameMarkCurrentUser=Aktuální uživatel
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Došlo k chybě při pokusu o otevření dokumentu "ČTIMNE".
|
ErrorOpeningReadme=Došlo k chybě při pokusu o otevření dokumentu "ČTIMNE".
|
||||||
ErrorRestartingComputer=Průvodci instalací se nepodařilo restartovat Váš počítač. Restartujte jej prosím ručně.
|
ErrorRestartingComputer=Průvodci instalací se nepodařilo restartovat Váš počítač. Restartujte jej prosím ručně.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=Soubor "%1" neexistuje. Produkt nelze odinstalovat.
|
UninstallNotFound=Soubor "%1" neexistuje. Produkt nelze odinstalovat.
|
||||||
UninstallOpenError=Soubor "%1" nelze otevřít. Produkt nelze odinstalovat.
|
UninstallOpenError=Soubor "%1" nelze otevřít. Produkt nelze odinstalovat.
|
||||||
UninstallUnsupportedVer=Formát souboru se záznamy k odinstalaci produktu "%1" nebyl touto verzí průvodce odinstalací rozpoznán. Produkt nelze odinstalovat
|
UninstallUnsupportedVer=Formát souboru se záznamy k odinstalaci produktu "%1" nebyl touto verzí průvodce odinstalací rozpoznán. Produkt nelze odinstalovat
|
||||||
UninstallUnknownEntry=V souboru obsahujícím informace k odinstalaci produktu byla zjištěna neznámá položka (%1)
|
UninstallUnknownEntry=V souboru obsahujícím informace k odinstalaci produktu byla zjištěna neznámá položka (%1)
|
||||||
ConfirmUninstall=Opravdu chcete spustit průvodce odinstalací %1?
|
ConfirmUninstall=Opravdu chcete spustit průvodce odinstalací %1?
|
||||||
UninstallOnlyOnWin64=Tento produkt lze odinstalovat pouze v 64-bitových verzích MS Windows.
|
UninstallOnlyOnWin64=Tento produkt lze odinstalovat pouze v 64-bitových verzích MS Windows.
|
||||||
OnlyAdminCanUninstall=K odinstalaci tohoto produktu musíte být přihlášeni s oprávněními správce.
|
OnlyAdminCanUninstall=K odinstalaci tohoto produktu musíte být přihlášeni s oprávněními správce.
|
||||||
UninstallStatusLabel=Čekejte prosím, dokud produkt %1 nebude odinstalován z Vašeho počítače.
|
UninstallStatusLabel=Čekejte prosím, dokud produkt %1 nebude odinstalován z Vašeho počítače.
|
||||||
UninstalledAll=Produkt %1 byl z Vašeho počítače úspěšně odinstalován.
|
UninstalledAll=Produkt %1 byl z Vašeho počítače úspěšně odinstalován.
|
||||||
UninstalledMost=Produkt %1 byl odinstalován.%n%nNěkteré jeho součásti se odinstalovat nepodařilo. Můžete je však odstranit ručně.
|
UninstalledMost=Produkt %1 byl odinstalován.%n%nNěkteré jeho součásti se odinstalovat nepodařilo. Můžete je však odstranit ručně.
|
||||||
UninstalledAndNeedsRestart=K dokončení odinstalace produktu %1 je nezbytné, aby průvodce odinstalací restartoval Váš počítač.%n%nChcete jej restartovat nyní?
|
UninstalledAndNeedsRestart=K dokončení odinstalace produktu %1 je nezbytné, aby průvodce odinstalací restartoval Váš počítač.%n%nChcete jej restartovat nyní?
|
||||||
UninstallDataCorrupted=Soubor "%1" je poškozen. Produkt nelze odinstalovat
|
UninstallDataCorrupted=Soubor "%1" je poškozen. Produkt nelze odinstalovat
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Odebrat sdílený soubor?
|
ConfirmDeleteSharedFileTitle=Odebrat sdílený soubor?
|
||||||
ConfirmDeleteSharedFile2=Systém indikuje, že následující sdílený soubor není používán žádnými jinými aplikacemi. Má být tento sdílený soubor průvodcem odinstalací odstraněn?%n%nPokud některé aplikace tento soubor používají, pak po jeho odstranění nemusejí pracovat správně. Pokud si nejste jisti, zvolte Ne. Ponechání tohoto souboru ve Vašem systému nezpůsobí žádnou škodu.
|
ConfirmDeleteSharedFile2=Systém indikuje, že následující sdílený soubor není používán žádnými jinými aplikacemi. Má být tento sdílený soubor průvodcem odinstalací odstraněn?%n%nPokud některé aplikace tento soubor používají, pak po jeho odstranění nemusejí pracovat správně. Pokud si nejste jisti, zvolte Ne. Ponechání tohoto souboru ve Vašem systému nezpůsobí žádnou škodu.
|
||||||
SharedFileNameLabel=Název souboru:
|
SharedFileNameLabel=Název souboru:
|
||||||
SharedFileLocationLabel=Umístění:
|
SharedFileLocationLabel=Umístění:
|
||||||
WizardUninstalling=Stav odinstalace
|
WizardUninstalling=Stav odinstalace
|
||||||
StatusUninstalling=Probíhá odinstalace produktu %1...
|
StatusUninstalling=Probíhá odinstalace produktu %1...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Probíhá instalace produktu %1.
|
ShutdownBlockReasonInstallingApp=Probíhá instalace produktu %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Probíhá odinstalace produktu %1.
|
ShutdownBlockReasonUninstallingApp=Probíhá odinstalace produktu %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 verze %2
|
NameAndVersion=%1 verze %2
|
||||||
AdditionalIcons=Další zástupci:
|
AdditionalIcons=Další zástupci:
|
||||||
CreateDesktopIcon=Vytvořit zástupce na &ploše
|
CreateDesktopIcon=Vytvořit zástupce na &ploše
|
||||||
CreateQuickLaunchIcon=Vytvořit zástupce na panelu &Snadné spuštění
|
CreateQuickLaunchIcon=Vytvořit zástupce na panelu &Snadné spuštění
|
||||||
ProgramOnTheWeb=Aplikace %1 na internetu
|
ProgramOnTheWeb=Aplikace %1 na internetu
|
||||||
UninstallProgram=Odinstalovat aplikaci %1
|
UninstallProgram=Odinstalovat aplikaci %1
|
||||||
LaunchProgram=Spustit aplikaci %1
|
LaunchProgram=Spustit aplikaci %1
|
||||||
AssocFileExtension=Vytvořit &asociaci mezi soubory typu %2 a aplikací %1
|
AssocFileExtension=Vytvořit &asociaci mezi soubory typu %2 a aplikací %1
|
||||||
AssocingFileExtension=Vytváří se asociace mezi soubory typu %2 a aplikací %1...
|
AssocingFileExtension=Vytváří se asociace mezi soubory typu %2 a aplikací %1...
|
||||||
AutoStartProgramGroupDescription=Po spuštění:
|
AutoStartProgramGroupDescription=Po spuštění:
|
||||||
AutoStartProgram=Spouštět aplikaci %1 automaticky
|
AutoStartProgram=Spouštět aplikaci %1 automaticky
|
||||||
AddonHostProgramNotFound=Aplikace %1 nebyla ve Vámi zvolené složce nalezena.%n%nChcete přesto pokračovat?
|
AddonHostProgramNotFound=Aplikace %1 nebyla ve Vámi zvolené složce nalezena.%n%nChcete přesto pokračovat?
|
||||||
|
|
||||||
; VCMI Custom Messages
|
; VCMI Custom Messages
|
||||||
SelectSetupInstallModeTitle=Vyberte režim instalace
|
SelectSetupInstallModeTitle=Vyberte režim instalace
|
||||||
SelectSetupInstallModeDesc=VCMI lze nainstalovat pro všechny uživatele nebo pouze pro vás.
|
SelectSetupInstallModeDesc=VCMI lze nainstalovat pro všechny uživatele nebo pouze pro vás.
|
||||||
SelectSetupInstallModeSubTitle=Vyberte požadovaný režim instalace:
|
SelectSetupInstallModeSubTitle=Vyberte požadovaný režim instalace:
|
||||||
InstallForAllUsers=Instalovat pro všechny uživatele
|
InstallForAllUsers=Instalovat pro všechny uživatele
|
||||||
InstallForAllUsers1=Vyžaduje administrátorská práva
|
InstallForAllUsers1=Vyžaduje administrátorská práva
|
||||||
InstallForMeOnly=Instalovat pouze pro mě
|
InstallForMeOnly=Instalovat pouze pro mě
|
||||||
InstallForMeOnly1=Po spuštění hry se zobrazí výzva brány firewall.
|
InstallForMeOnly1=Po spuštění hry se zobrazí výzva brány firewall.
|
||||||
InstallForMeOnly2=Upozornění: LAN hry nebudou fungovat, pokud nebude možné povolit pravidlo brány firewall.
|
InstallForMeOnly2=Upozornění: LAN hry nebudou fungovat, pokud nebude možné povolit pravidlo brány firewall.
|
||||||
CreateDesktopShortcuts=Vytvořit zástupce na ploše
|
CreateDesktopShortcuts=Vytvořit zástupce na ploše
|
||||||
ShortcutsOptions=Možnosti zástupců
|
ShortcutsOptions=Možnosti zástupců
|
||||||
CreateStartMenuShortcuts=Vytvořit zástupce v nabídce Start
|
CreateStartMenuShortcuts=Vytvořit zástupce v nabídce Start
|
||||||
FirewallOptions=Nastavení brány firewall
|
FirewallOptions=Nastavení brány firewall
|
||||||
AddFirewallRules=Přidat pravidla brány firewall pro VCMI
|
AddFirewallRules=Přidat pravidla brány firewall pro VCMI
|
||||||
FileAssociations=Asociace souborů
|
FileAssociations=Asociace souborů
|
||||||
AssociateH3MFiles=Asociovat soubory .h3m s editorem map VCMI
|
AssociateH3MFiles=Asociovat soubory .h3m s editorem map VCMI
|
||||||
AssociateVMapFiles=Asociovat soubory .vmap s editorem map VCMI
|
AssociateVMapFiles=Asociovat soubory .vmap s editorem map VCMI
|
||||||
RunVCMILauncherAfterInstall=Spustit VCMI Launcher
|
RunVCMILauncherAfterInstall=Spustit VCMI Launcher
|
||||||
ShortcutMapEditor=Editor map VCMI
|
ShortcutMapEditor=Editor map VCMI
|
||||||
ShortcutLauncher=Launcher VCMI
|
ShortcutLauncher=Launcher VCMI
|
||||||
ShortcutWebPage=Webová stránka VCMI
|
ShortcutWebPage=Webová stránka VCMI
|
||||||
ShortcutDiscord=Discord VCMI
|
ShortcutDiscord=Discord VCMI
|
||||||
ShortcutLauncherComment=Spustit launcher VCMI
|
ShortcutLauncherComment=Spustit launcher VCMI
|
||||||
ShortcutMapEditorComment=Otevřít editor map VCMI
|
ShortcutMapEditorComment=Otevřít editor map VCMI
|
||||||
ShortcutWebPageComment=Navštivte oficiální web VCMI
|
ShortcutWebPageComment=Navštivte oficiální web VCMI
|
||||||
ShortcutDiscordComment=Navštivte oficiální Discord VCMI
|
ShortcutDiscordComment=Navštivte oficiální Discord VCMI
|
||||||
DeleteUserData=Smazat uživatelská data
|
DeleteUserData=Smazat uživatelská data
|
||||||
Uninstall=Odinstalovat
|
Uninstall=Odinstalovat
|
||||||
VMAPDescription=Soubor mapy VCMI
|
VMAPDescription=Soubor mapy VCMI
|
||||||
H3MDescription=Soubor mapy Heroes 3
|
H3MDescription=Soubor mapy Heroes 3
|
||||||
|
@@ -1,417 +1,417 @@
|
|||||||
; *** Inno Setup version 6.1.0+ English messages ***
|
; *** Inno Setup version 6.1.0+ English messages ***
|
||||||
;
|
;
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=English
|
LanguageName=English
|
||||||
LanguageID=$0409
|
LanguageID=$0409
|
||||||
LanguageCodePage=0
|
LanguageCodePage=0
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Setup
|
SetupAppTitle=Setup
|
||||||
SetupWindowTitle=Setup - %1
|
SetupWindowTitle=Setup - %1
|
||||||
UninstallAppTitle=Uninstall
|
UninstallAppTitle=Uninstall
|
||||||
UninstallAppFullTitle=%1 Uninstall
|
UninstallAppFullTitle=%1 Uninstall
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Information
|
InformationTitle=Information
|
||||||
ConfirmTitle=Confirm
|
ConfirmTitle=Confirm
|
||||||
ErrorTitle=Error
|
ErrorTitle=Error
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=This will install %1. Do you wish to continue?
|
SetupLdrStartupMessage=This will install %1. Do you wish to continue?
|
||||||
LdrCannotCreateTemp=Unable to create a temporary file. Setup aborted
|
LdrCannotCreateTemp=Unable to create a temporary file. Setup aborted
|
||||||
LdrCannotExecTemp=Unable to execute file in the temporary directory. Setup aborted
|
LdrCannotExecTemp=Unable to execute file in the temporary directory. Setup aborted
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nError %2: %3
|
LastErrorMessage=%1.%n%nError %2: %3
|
||||||
SetupFileMissing=The file %1 is missing from the installation directory. Please correct the problem or obtain a new copy of the program.
|
SetupFileMissing=The file %1 is missing from the installation directory. Please correct the problem or obtain a new copy of the program.
|
||||||
SetupFileCorrupt=The setup files are corrupted. Please obtain a new copy of the program.
|
SetupFileCorrupt=The setup files are corrupted. Please obtain a new copy of the program.
|
||||||
SetupFileCorruptOrWrongVer=The setup files are corrupted, or are incompatible with this version of Setup. Please correct the problem or obtain a new copy of the program.
|
SetupFileCorruptOrWrongVer=The setup files are corrupted, or are incompatible with this version of Setup. Please correct the problem or obtain a new copy of the program.
|
||||||
InvalidParameter=An invalid parameter was passed on the command line:%n%n%1
|
InvalidParameter=An invalid parameter was passed on the command line:%n%n%1
|
||||||
SetupAlreadyRunning=Setup is already running.
|
SetupAlreadyRunning=Setup is already running.
|
||||||
WindowsVersionNotSupported=This program does not support the version of Windows your computer is running.
|
WindowsVersionNotSupported=This program does not support the version of Windows your computer is running.
|
||||||
WindowsServicePackRequired=This program requires %1 Service Pack %2 or later.
|
WindowsServicePackRequired=This program requires %1 Service Pack %2 or later.
|
||||||
NotOnThisPlatform=This program will not run on %1.
|
NotOnThisPlatform=This program will not run on %1.
|
||||||
OnlyOnThisPlatform=This program must be run on %1.
|
OnlyOnThisPlatform=This program must be run on %1.
|
||||||
OnlyOnTheseArchitectures=This program can only be installed on versions of Windows designed for the following processor architectures:%n%n%1
|
OnlyOnTheseArchitectures=This program can only be installed on versions of Windows designed for the following processor architectures:%n%n%1
|
||||||
WinVersionTooLowError=This program requires %1 version %2 or later.
|
WinVersionTooLowError=This program requires %1 version %2 or later.
|
||||||
WinVersionTooHighError=This program cannot be installed on %1 version %2 or later.
|
WinVersionTooHighError=This program cannot be installed on %1 version %2 or later.
|
||||||
AdminPrivilegesRequired=You must be logged in as an administrator when installing this program.
|
AdminPrivilegesRequired=You must be logged in as an administrator when installing this program.
|
||||||
PowerUserPrivilegesRequired=You must be logged in as an administrator or as a member of the Power Users group when installing this program.
|
PowerUserPrivilegesRequired=You must be logged in as an administrator or as a member of the Power Users group when installing this program.
|
||||||
SetupAppRunningError=Setup has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit.
|
SetupAppRunningError=Setup has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit.
|
||||||
UninstallAppRunningError=Uninstall has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit.
|
UninstallAppRunningError=Uninstall has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Select Setup Install Mode
|
PrivilegesRequiredOverrideTitle=Select Setup Install Mode
|
||||||
PrivilegesRequiredOverrideInstruction=Select install mode
|
PrivilegesRequiredOverrideInstruction=Select install mode
|
||||||
PrivilegesRequiredOverrideText1=%1 can be installed for all users (requires administrative privileges), or for you only.
|
PrivilegesRequiredOverrideText1=%1 can be installed for all users (requires administrative privileges), or for you only.
|
||||||
PrivilegesRequiredOverrideText2=%1 can be installed for you only, or for all users (requires administrative privileges).
|
PrivilegesRequiredOverrideText2=%1 can be installed for you only, or for all users (requires administrative privileges).
|
||||||
PrivilegesRequiredOverrideAllUsers=Install for &all users
|
PrivilegesRequiredOverrideAllUsers=Install for &all users
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Install for &all users (recommended)
|
PrivilegesRequiredOverrideAllUsersRecommended=Install for &all users (recommended)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Install for &me only
|
PrivilegesRequiredOverrideCurrentUser=Install for &me only
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Install for &me only (recommended)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Install for &me only (recommended)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=Setup was unable to create the directory "%1"
|
ErrorCreatingDir=Setup was unable to create the directory "%1"
|
||||||
ErrorTooManyFilesInDir=Unable to create a file in the directory "%1" because it contains too many files
|
ErrorTooManyFilesInDir=Unable to create a file in the directory "%1" because it contains too many files
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Exit Setup
|
ExitSetupTitle=Exit Setup
|
||||||
ExitSetupMessage=Setup is not complete. If you exit now, the program will not be installed.%n%nYou may run Setup again at another time to complete the installation.%n%nExit Setup?
|
ExitSetupMessage=Setup is not complete. If you exit now, the program will not be installed.%n%nYou may run Setup again at another time to complete the installation.%n%nExit Setup?
|
||||||
AboutSetupMenuItem=&About Setup...
|
AboutSetupMenuItem=&About Setup...
|
||||||
AboutSetupTitle=About Setup
|
AboutSetupTitle=About Setup
|
||||||
AboutSetupMessage=%1 version %2%n%3%n%n%1 home page:%n%4
|
AboutSetupMessage=%1 version %2%n%3%n%n%1 home page:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=
|
TranslatorNote=
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Back
|
ButtonBack=< &Back
|
||||||
ButtonNext=&Next >
|
ButtonNext=&Next >
|
||||||
ButtonInstall=&Install
|
ButtonInstall=&Install
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Cancel
|
ButtonCancel=Cancel
|
||||||
ButtonYes=&Yes
|
ButtonYes=&Yes
|
||||||
ButtonYesToAll=Yes to &All
|
ButtonYesToAll=Yes to &All
|
||||||
ButtonNo=&No
|
ButtonNo=&No
|
||||||
ButtonNoToAll=N&o to All
|
ButtonNoToAll=N&o to All
|
||||||
ButtonFinish=&Finish
|
ButtonFinish=&Finish
|
||||||
ButtonBrowse=&Browse...
|
ButtonBrowse=&Browse...
|
||||||
ButtonWizardBrowse=B&rowse...
|
ButtonWizardBrowse=B&rowse...
|
||||||
ButtonNewFolder=&Make New Folder
|
ButtonNewFolder=&Make New Folder
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Select Setup Language
|
SelectLanguageTitle=Select Setup Language
|
||||||
SelectLanguageLabel=Select the language to use during the installation.
|
SelectLanguageLabel=Select the language to use during the installation.
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=Click Next to continue, or Cancel to exit Setup.
|
ClickNext=Click Next to continue, or Cancel to exit Setup.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Browse For Folder
|
BrowseDialogTitle=Browse For Folder
|
||||||
BrowseDialogLabel=Select a folder in the list below, then click OK.
|
BrowseDialogLabel=Select a folder in the list below, then click OK.
|
||||||
NewFolderName=New Folder
|
NewFolderName=New Folder
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Welcome to the [name] Setup Wizard
|
WelcomeLabel1=Welcome to the [name] Setup Wizard
|
||||||
WelcomeLabel2=This will install [name/ver] on your computer.%n%nIt is recommended that you close all other applications before continuing.
|
WelcomeLabel2=This will install [name/ver] on your computer.%n%nIt is recommended that you close all other applications before continuing.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Password
|
WizardPassword=Password
|
||||||
PasswordLabel1=This installation is password protected.
|
PasswordLabel1=This installation is password protected.
|
||||||
PasswordLabel3=Please provide the password, then click Next to continue. Passwords are case-sensitive.
|
PasswordLabel3=Please provide the password, then click Next to continue. Passwords are case-sensitive.
|
||||||
PasswordEditLabel=&Password:
|
PasswordEditLabel=&Password:
|
||||||
IncorrectPassword=The password you entered is not correct. Please try again.
|
IncorrectPassword=The password you entered is not correct. Please try again.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=License Agreement
|
WizardLicense=License Agreement
|
||||||
LicenseLabel=Please read the following important information before continuing.
|
LicenseLabel=Please read the following important information before continuing.
|
||||||
LicenseLabel3=Please read the following License Agreement. You must accept the terms of this agreement before continuing with the installation.
|
LicenseLabel3=Please read the following License Agreement. You must accept the terms of this agreement before continuing with the installation.
|
||||||
LicenseAccepted=I &accept the agreement
|
LicenseAccepted=I &accept the agreement
|
||||||
LicenseNotAccepted=I &do not accept the agreement
|
LicenseNotAccepted=I &do not accept the agreement
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Information
|
WizardInfoBefore=Information
|
||||||
InfoBeforeLabel=Please read the following important information before continuing.
|
InfoBeforeLabel=Please read the following important information before continuing.
|
||||||
InfoBeforeClickLabel=When you are ready to continue with Setup, click Next.
|
InfoBeforeClickLabel=When you are ready to continue with Setup, click Next.
|
||||||
WizardInfoAfter=Information
|
WizardInfoAfter=Information
|
||||||
InfoAfterLabel=Please read the following important information before continuing.
|
InfoAfterLabel=Please read the following important information before continuing.
|
||||||
InfoAfterClickLabel=When you are ready to continue with Setup, click Next.
|
InfoAfterClickLabel=When you are ready to continue with Setup, click Next.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=User Information
|
WizardUserInfo=User Information
|
||||||
UserInfoDesc=Please enter your information.
|
UserInfoDesc=Please enter your information.
|
||||||
UserInfoName=&User Name:
|
UserInfoName=&User Name:
|
||||||
UserInfoOrg=&Organization:
|
UserInfoOrg=&Organization:
|
||||||
UserInfoSerial=&Serial Number:
|
UserInfoSerial=&Serial Number:
|
||||||
UserInfoNameRequired=You must enter a name.
|
UserInfoNameRequired=You must enter a name.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Select Destination Location
|
WizardSelectDir=Select Destination Location
|
||||||
SelectDirDesc=Where should [name] be installed?
|
SelectDirDesc=Where should [name] be installed?
|
||||||
SelectDirLabel3=Setup will install [name] into the following folder.
|
SelectDirLabel3=Setup will install [name] into the following folder.
|
||||||
SelectDirBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse.
|
SelectDirBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse.
|
||||||
DiskSpaceGBLabel=At least [gb] GB of free disk space is required.
|
DiskSpaceGBLabel=At least [gb] GB of free disk space is required.
|
||||||
DiskSpaceMBLabel=At least [mb] MB of free disk space is required.
|
DiskSpaceMBLabel=At least [mb] MB of free disk space is required.
|
||||||
CannotInstallToNetworkDrive=Setup cannot install to a network drive.
|
CannotInstallToNetworkDrive=Setup cannot install to a network drive.
|
||||||
CannotInstallToUNCPath=Setup cannot install to a UNC path.
|
CannotInstallToUNCPath=Setup cannot install to a UNC path.
|
||||||
InvalidPath=You must enter a full path with drive letter; for example:%n%nC:\APP%n%nor a UNC path in the form:%n%n\\server\share
|
InvalidPath=You must enter a full path with drive letter; for example:%n%nC:\APP%n%nor a UNC path in the form:%n%n\\server\share
|
||||||
InvalidDrive=The drive or UNC share you selected does not exist or is not accessible. Please select another.
|
InvalidDrive=The drive or UNC share you selected does not exist or is not accessible. Please select another.
|
||||||
DiskSpaceWarningTitle=Not Enough Disk Space
|
DiskSpaceWarningTitle=Not Enough Disk Space
|
||||||
DiskSpaceWarning=Setup requires at least %1 KB of free space to install, but the selected drive only has %2 KB available.%n%nDo you want to continue anyway?
|
DiskSpaceWarning=Setup requires at least %1 KB of free space to install, but the selected drive only has %2 KB available.%n%nDo you want to continue anyway?
|
||||||
DirNameTooLong=The folder name or path is too long.
|
DirNameTooLong=The folder name or path is too long.
|
||||||
InvalidDirName=The folder name is not valid.
|
InvalidDirName=The folder name is not valid.
|
||||||
BadDirName32=Folder names cannot include any of the following characters:%n%n%1
|
BadDirName32=Folder names cannot include any of the following characters:%n%n%1
|
||||||
DirExistsTitle=Folder Exists
|
DirExistsTitle=Folder Exists
|
||||||
DirExists=The folder:%n%n%1%n%nalready exists. Would you like to install to that folder anyway?
|
DirExists=The folder:%n%n%1%n%nalready exists. Would you like to install to that folder anyway?
|
||||||
DirDoesntExistTitle=Folder Does Not Exist
|
DirDoesntExistTitle=Folder Does Not Exist
|
||||||
DirDoesntExist=The folder:%n%n%1%n%ndoes not exist. Would you like the folder to be created?
|
DirDoesntExist=The folder:%n%n%1%n%ndoes not exist. Would you like the folder to be created?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Select Components
|
WizardSelectComponents=Select Components
|
||||||
SelectComponentsDesc=Which components should be installed?
|
SelectComponentsDesc=Which components should be installed?
|
||||||
SelectComponentsLabel2=Select the components you want to install; clear the components you do not want to install. Click Next when you are ready to continue.
|
SelectComponentsLabel2=Select the components you want to install; clear the components you do not want to install. Click Next when you are ready to continue.
|
||||||
FullInstallation=Full installation
|
FullInstallation=Full installation
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Compact installation
|
CompactInstallation=Compact installation
|
||||||
CustomInstallation=Custom installation
|
CustomInstallation=Custom installation
|
||||||
NoUninstallWarningTitle=Components Exist
|
NoUninstallWarningTitle=Components Exist
|
||||||
NoUninstallWarning=Setup has detected that the following components are already installed on your computer:%n%n%1%n%nDeselecting these components will not uninstall them.%n%nWould you like to continue anyway?
|
NoUninstallWarning=Setup has detected that the following components are already installed on your computer:%n%n%1%n%nDeselecting these components will not uninstall them.%n%nWould you like to continue anyway?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=Current selection requires at least [gb] GB of disk space.
|
ComponentsDiskSpaceGBLabel=Current selection requires at least [gb] GB of disk space.
|
||||||
ComponentsDiskSpaceMBLabel=Current selection requires at least [mb] MB of disk space.
|
ComponentsDiskSpaceMBLabel=Current selection requires at least [mb] MB of disk space.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Select Additional Tasks
|
WizardSelectTasks=Select Additional Tasks
|
||||||
SelectTasksDesc=Which additional tasks should be performed?
|
SelectTasksDesc=Which additional tasks should be performed?
|
||||||
SelectTasksLabel2=Select the additional tasks you would like Setup to perform while installing [name], then click Next.
|
SelectTasksLabel2=Select the additional tasks you would like Setup to perform while installing [name], then click Next.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Select Start Menu Folder
|
WizardSelectProgramGroup=Select Start Menu Folder
|
||||||
SelectStartMenuFolderDesc=Where should Setup place the program's shortcuts?
|
SelectStartMenuFolderDesc=Where should Setup place the program's shortcuts?
|
||||||
SelectStartMenuFolderLabel3=Setup will create the program's shortcuts in the following Start Menu folder.
|
SelectStartMenuFolderLabel3=Setup will create the program's shortcuts in the following Start Menu folder.
|
||||||
SelectStartMenuFolderBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse.
|
SelectStartMenuFolderBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse.
|
||||||
MustEnterGroupName=You must enter a folder name.
|
MustEnterGroupName=You must enter a folder name.
|
||||||
GroupNameTooLong=The folder name or path is too long.
|
GroupNameTooLong=The folder name or path is too long.
|
||||||
InvalidGroupName=The folder name is not valid.
|
InvalidGroupName=The folder name is not valid.
|
||||||
BadGroupName=The folder name cannot include any of the following characters:%n%n%1
|
BadGroupName=The folder name cannot include any of the following characters:%n%n%1
|
||||||
NoProgramGroupCheck2=&Don't create a Start Menu folder
|
NoProgramGroupCheck2=&Don't create a Start Menu folder
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Ready to Install
|
WizardReady=Ready to Install
|
||||||
ReadyLabel1=Setup is now ready to begin installing [name] on your computer.
|
ReadyLabel1=Setup is now ready to begin installing [name] on your computer.
|
||||||
ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings.
|
ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings.
|
||||||
ReadyLabel2b=Click Install to continue with the installation.
|
ReadyLabel2b=Click Install to continue with the installation.
|
||||||
ReadyMemoUserInfo=User information:
|
ReadyMemoUserInfo=User information:
|
||||||
ReadyMemoDir=Destination location:
|
ReadyMemoDir=Destination location:
|
||||||
ReadyMemoType=Setup type:
|
ReadyMemoType=Setup type:
|
||||||
ReadyMemoComponents=Selected components:
|
ReadyMemoComponents=Selected components:
|
||||||
ReadyMemoGroup=Start Menu folder:
|
ReadyMemoGroup=Start Menu folder:
|
||||||
ReadyMemoTasks=Additional tasks:
|
ReadyMemoTasks=Additional tasks:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Downloading additional files...
|
DownloadingLabel=Downloading additional files...
|
||||||
ButtonStopDownload=&Stop download
|
ButtonStopDownload=&Stop download
|
||||||
StopDownload=Are you sure you want to stop the download?
|
StopDownload=Are you sure you want to stop the download?
|
||||||
ErrorDownloadAborted=Download aborted
|
ErrorDownloadAborted=Download aborted
|
||||||
ErrorDownloadFailed=Download failed: %1 %2
|
ErrorDownloadFailed=Download failed: %1 %2
|
||||||
ErrorDownloadSizeFailed=Getting size failed: %1 %2
|
ErrorDownloadSizeFailed=Getting size failed: %1 %2
|
||||||
ErrorFileHash1=File hash failed: %1
|
ErrorFileHash1=File hash failed: %1
|
||||||
ErrorFileHash2=Invalid file hash: expected %1, found %2
|
ErrorFileHash2=Invalid file hash: expected %1, found %2
|
||||||
ErrorProgress=Invalid progress: %1 of %2
|
ErrorProgress=Invalid progress: %1 of %2
|
||||||
ErrorFileSize=Invalid file size: expected %1, found %2
|
ErrorFileSize=Invalid file size: expected %1, found %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Preparing to Install
|
WizardPreparing=Preparing to Install
|
||||||
PreparingDesc=Setup is preparing to install [name] on your computer.
|
PreparingDesc=Setup is preparing to install [name] on your computer.
|
||||||
PreviousInstallNotCompleted=The installation/removal of a previous program was not completed. You will need to restart your computer to complete that installation.%n%nAfter restarting your computer, run Setup again to complete the installation of [name].
|
PreviousInstallNotCompleted=The installation/removal of a previous program was not completed. You will need to restart your computer to complete that installation.%n%nAfter restarting your computer, run Setup again to complete the installation of [name].
|
||||||
CannotContinue=Setup cannot continue. Please click Cancel to exit.
|
CannotContinue=Setup cannot continue. Please click Cancel to exit.
|
||||||
ApplicationsFound=The following applications are using files that need to be updated by Setup. It is recommended that you allow Setup to automatically close these applications.
|
ApplicationsFound=The following applications are using files that need to be updated by Setup. It is recommended that you allow Setup to automatically close these applications.
|
||||||
ApplicationsFound2=The following applications are using files that need to be updated by Setup. It is recommended that you allow Setup to automatically close these applications. After the installation has completed, Setup will attempt to restart the applications.
|
ApplicationsFound2=The following applications are using files that need to be updated by Setup. It is recommended that you allow Setup to automatically close these applications. After the installation has completed, Setup will attempt to restart the applications.
|
||||||
CloseApplications=&Automatically close the applications
|
CloseApplications=&Automatically close the applications
|
||||||
DontCloseApplications=&Do not close the applications
|
DontCloseApplications=&Do not close the applications
|
||||||
ErrorCloseApplications=Setup was unable to automatically close all applications. It is recommended that you close all applications using files that need to be updated by Setup before continuing.
|
ErrorCloseApplications=Setup was unable to automatically close all applications. It is recommended that you close all applications using files that need to be updated by Setup before continuing.
|
||||||
PrepareToInstallNeedsRestart=Setup must restart your computer. After restarting your computer, run Setup again to complete the installation of [name].%n%nWould you like to restart now?
|
PrepareToInstallNeedsRestart=Setup must restart your computer. After restarting your computer, run Setup again to complete the installation of [name].%n%nWould you like to restart now?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Installing
|
WizardInstalling=Installing
|
||||||
InstallingLabel=Please wait while Setup installs [name] on your computer.
|
InstallingLabel=Please wait while Setup installs [name] on your computer.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=Completing the [name] Setup Wizard
|
FinishedHeadingLabel=Completing the [name] Setup Wizard
|
||||||
FinishedLabelNoIcons=Setup has finished installing [name] on your computer.
|
FinishedLabelNoIcons=Setup has finished installing [name] on your computer.
|
||||||
FinishedLabel=Setup has finished installing [name] on your computer. The application may be launched by selecting the installed shortcuts.
|
FinishedLabel=Setup has finished installing [name] on your computer. The application may be launched by selecting the installed shortcuts.
|
||||||
ClickFinish=Click Finish to exit Setup.
|
ClickFinish=Click Finish to exit Setup.
|
||||||
FinishedRestartLabel=To complete the installation of [name], Setup must restart your computer. Would you like to restart now?
|
FinishedRestartLabel=To complete the installation of [name], Setup must restart your computer. Would you like to restart now?
|
||||||
FinishedRestartMessage=To complete the installation of [name], Setup must restart your computer.%n%nWould you like to restart now?
|
FinishedRestartMessage=To complete the installation of [name], Setup must restart your computer.%n%nWould you like to restart now?
|
||||||
ShowReadmeCheck=Yes, I would like to view the README file
|
ShowReadmeCheck=Yes, I would like to view the README file
|
||||||
YesRadio=&Yes, restart the computer now
|
YesRadio=&Yes, restart the computer now
|
||||||
NoRadio=&No, I will restart the computer later
|
NoRadio=&No, I will restart the computer later
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=Run %1
|
RunEntryExec=Run %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=View %1
|
RunEntryShellExec=View %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=Setup Needs the Next Disk
|
ChangeDiskTitle=Setup Needs the Next Disk
|
||||||
SelectDiskLabel2=Please insert Disk %1 and click OK.%n%nIf the files on this disk can be found in a folder other than the one displayed below, enter the correct path or click Browse.
|
SelectDiskLabel2=Please insert Disk %1 and click OK.%n%nIf the files on this disk can be found in a folder other than the one displayed below, enter the correct path or click Browse.
|
||||||
PathLabel=&Path:
|
PathLabel=&Path:
|
||||||
FileNotInDir2=The file "%1" could not be located in "%2". Please insert the correct disk or select another folder.
|
FileNotInDir2=The file "%1" could not be located in "%2". Please insert the correct disk or select another folder.
|
||||||
SelectDirectoryLabel=Please specify the location of the next disk.
|
SelectDirectoryLabel=Please specify the location of the next disk.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=Setup was not completed.%n%nPlease correct the problem and run Setup again.
|
SetupAborted=Setup was not completed.%n%nPlease correct the problem and run Setup again.
|
||||||
AbortRetryIgnoreSelectAction=Select action
|
AbortRetryIgnoreSelectAction=Select action
|
||||||
AbortRetryIgnoreRetry=&Try again
|
AbortRetryIgnoreRetry=&Try again
|
||||||
AbortRetryIgnoreIgnore=&Ignore the error and continue
|
AbortRetryIgnoreIgnore=&Ignore the error and continue
|
||||||
AbortRetryIgnoreCancel=Cancel installation
|
AbortRetryIgnoreCancel=Cancel installation
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Closing applications...
|
StatusClosingApplications=Closing applications...
|
||||||
StatusCreateDirs=Creating directories...
|
StatusCreateDirs=Creating directories...
|
||||||
StatusExtractFiles=Extracting files...
|
StatusExtractFiles=Extracting files...
|
||||||
StatusCreateIcons=Creating shortcuts...
|
StatusCreateIcons=Creating shortcuts...
|
||||||
StatusCreateIniEntries=Creating INI entries...
|
StatusCreateIniEntries=Creating INI entries...
|
||||||
StatusCreateRegistryEntries=Creating registry entries...
|
StatusCreateRegistryEntries=Creating registry entries...
|
||||||
StatusRegisterFiles=Registering files...
|
StatusRegisterFiles=Registering files...
|
||||||
StatusSavingUninstall=Saving uninstall information...
|
StatusSavingUninstall=Saving uninstall information...
|
||||||
StatusRunProgram=Finishing installation...
|
StatusRunProgram=Finishing installation...
|
||||||
StatusRestartingApplications=Restarting applications...
|
StatusRestartingApplications=Restarting applications...
|
||||||
StatusRollback=Rolling back changes...
|
StatusRollback=Rolling back changes...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Internal error: %1
|
ErrorInternal2=Internal error: %1
|
||||||
ErrorFunctionFailedNoCode=%1 failed
|
ErrorFunctionFailedNoCode=%1 failed
|
||||||
ErrorFunctionFailed=%1 failed; code %2
|
ErrorFunctionFailed=%1 failed; code %2
|
||||||
ErrorFunctionFailedWithMessage=%1 failed; code %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 failed; code %2.%n%3
|
||||||
ErrorExecutingProgram=Unable to execute file:%n%1
|
ErrorExecutingProgram=Unable to execute file:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Error opening registry key:%n%1\%2
|
ErrorRegOpenKey=Error opening registry key:%n%1\%2
|
||||||
ErrorRegCreateKey=Error creating registry key:%n%1\%2
|
ErrorRegCreateKey=Error creating registry key:%n%1\%2
|
||||||
ErrorRegWriteKey=Error writing to registry key:%n%1\%2
|
ErrorRegWriteKey=Error writing to registry key:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Error creating INI entry in file "%1".
|
ErrorIniEntry=Error creating INI entry in file "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Skip this file (not recommended)
|
FileAbortRetryIgnoreSkipNotRecommended=&Skip this file (not recommended)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignore the error and continue (not recommended)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignore the error and continue (not recommended)
|
||||||
SourceIsCorrupted=The source file is corrupted
|
SourceIsCorrupted=The source file is corrupted
|
||||||
SourceDoesntExist=The source file "%1" does not exist
|
SourceDoesntExist=The source file "%1" does not exist
|
||||||
ExistingFileReadOnly2=The existing file could not be replaced because it is marked read-only.
|
ExistingFileReadOnly2=The existing file could not be replaced because it is marked read-only.
|
||||||
ExistingFileReadOnlyRetry=&Remove the read-only attribute and try again
|
ExistingFileReadOnlyRetry=&Remove the read-only attribute and try again
|
||||||
ExistingFileReadOnlyKeepExisting=&Keep the existing file
|
ExistingFileReadOnlyKeepExisting=&Keep the existing file
|
||||||
ErrorReadingExistingDest=An error occurred while trying to read the existing file:
|
ErrorReadingExistingDest=An error occurred while trying to read the existing file:
|
||||||
FileExistsSelectAction=Select action
|
FileExistsSelectAction=Select action
|
||||||
FileExists2=The file already exists.
|
FileExists2=The file already exists.
|
||||||
FileExistsOverwriteExisting=&Overwrite the existing file
|
FileExistsOverwriteExisting=&Overwrite the existing file
|
||||||
FileExistsKeepExisting=&Keep the existing file
|
FileExistsKeepExisting=&Keep the existing file
|
||||||
FileExistsOverwriteOrKeepAll=&Do this for the next conflicts
|
FileExistsOverwriteOrKeepAll=&Do this for the next conflicts
|
||||||
ExistingFileNewerSelectAction=Select action
|
ExistingFileNewerSelectAction=Select action
|
||||||
ExistingFileNewer2=The existing file is newer than the one Setup is trying to install.
|
ExistingFileNewer2=The existing file is newer than the one Setup is trying to install.
|
||||||
ExistingFileNewerOverwriteExisting=&Overwrite the existing file
|
ExistingFileNewerOverwriteExisting=&Overwrite the existing file
|
||||||
ExistingFileNewerKeepExisting=&Keep the existing file (recommended)
|
ExistingFileNewerKeepExisting=&Keep the existing file (recommended)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Do this for the next conflicts
|
ExistingFileNewerOverwriteOrKeepAll=&Do this for the next conflicts
|
||||||
ErrorChangingAttr=An error occurred while trying to change the attributes of the existing file:
|
ErrorChangingAttr=An error occurred while trying to change the attributes of the existing file:
|
||||||
ErrorCreatingTemp=An error occurred while trying to create a file in the destination directory:
|
ErrorCreatingTemp=An error occurred while trying to create a file in the destination directory:
|
||||||
ErrorReadingSource=An error occurred while trying to read the source file:
|
ErrorReadingSource=An error occurred while trying to read the source file:
|
||||||
ErrorCopying=An error occurred while trying to copy a file:
|
ErrorCopying=An error occurred while trying to copy a file:
|
||||||
ErrorReplacingExistingFile=An error occurred while trying to replace the existing file:
|
ErrorReplacingExistingFile=An error occurred while trying to replace the existing file:
|
||||||
ErrorRestartReplace=RestartReplace failed:
|
ErrorRestartReplace=RestartReplace failed:
|
||||||
ErrorRenamingTemp=An error occurred while trying to rename a file in the destination directory:
|
ErrorRenamingTemp=An error occurred while trying to rename a file in the destination directory:
|
||||||
ErrorRegisterServer=Unable to register the DLL/OCX: %1
|
ErrorRegisterServer=Unable to register the DLL/OCX: %1
|
||||||
ErrorRegSvr32Failed=RegSvr32 failed with exit code %1
|
ErrorRegSvr32Failed=RegSvr32 failed with exit code %1
|
||||||
ErrorRegisterTypeLib=Unable to register the type library: %1
|
ErrorRegisterTypeLib=Unable to register the type library: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32-bit
|
UninstallDisplayNameMark32Bit=32-bit
|
||||||
UninstallDisplayNameMark64Bit=64-bit
|
UninstallDisplayNameMark64Bit=64-bit
|
||||||
UninstallDisplayNameMarkAllUsers=All users
|
UninstallDisplayNameMarkAllUsers=All users
|
||||||
UninstallDisplayNameMarkCurrentUser=Current user
|
UninstallDisplayNameMarkCurrentUser=Current user
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=An error occurred while trying to open the README file.
|
ErrorOpeningReadme=An error occurred while trying to open the README file.
|
||||||
ErrorRestartingComputer=Setup was unable to restart the computer. Please do this manually.
|
ErrorRestartingComputer=Setup was unable to restart the computer. Please do this manually.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=File "%1" does not exist. Cannot uninstall.
|
UninstallNotFound=File "%1" does not exist. Cannot uninstall.
|
||||||
UninstallOpenError=File "%1" could not be opened. Cannot uninstall
|
UninstallOpenError=File "%1" could not be opened. Cannot uninstall
|
||||||
UninstallUnsupportedVer=The uninstall log file "%1" is in a format not recognized by this version of the uninstaller. Cannot uninstall
|
UninstallUnsupportedVer=The uninstall log file "%1" is in a format not recognized by this version of the uninstaller. Cannot uninstall
|
||||||
UninstallUnknownEntry=An unknown entry (%1) was encountered in the uninstall log
|
UninstallUnknownEntry=An unknown entry (%1) was encountered in the uninstall log
|
||||||
; ConfirmUninstall=Are you sure you want to completely remove %1 and all of its components?
|
; ConfirmUninstall=Are you sure you want to completely remove %1 and all of its components?
|
||||||
; VCMI Custom message
|
; VCMI Custom message
|
||||||
ConfirmUninstall=Are you sure you want to run the %1 uninstall wizard?
|
ConfirmUninstall=Are you sure you want to run the %1 uninstall wizard?
|
||||||
UninstallOnlyOnWin64=This installation can only be uninstalled on 64-bit Windows.
|
UninstallOnlyOnWin64=This installation can only be uninstalled on 64-bit Windows.
|
||||||
OnlyAdminCanUninstall=This installation can only be uninstalled by a user with administrative privileges.
|
OnlyAdminCanUninstall=This installation can only be uninstalled by a user with administrative privileges.
|
||||||
UninstallStatusLabel=Please wait while %1 is removed from your computer.
|
UninstallStatusLabel=Please wait while %1 is removed from your computer.
|
||||||
UninstalledAll=%1 was successfully removed from your computer.
|
UninstalledAll=%1 was successfully removed from your computer.
|
||||||
UninstalledMost=%1 uninstall complete.%n%nSome elements could not be removed. These can be removed manually.
|
UninstalledMost=%1 uninstall complete.%n%nSome elements could not be removed. These can be removed manually.
|
||||||
UninstalledAndNeedsRestart=To complete the uninstallation of %1, your computer must be restarted.%n%nWould you like to restart now?
|
UninstalledAndNeedsRestart=To complete the uninstallation of %1, your computer must be restarted.%n%nWould you like to restart now?
|
||||||
UninstallDataCorrupted="%1" file is corrupted. Cannot uninstall
|
UninstallDataCorrupted="%1" file is corrupted. Cannot uninstall
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Remove Shared File?
|
ConfirmDeleteSharedFileTitle=Remove Shared File?
|
||||||
ConfirmDeleteSharedFile2=The system indicates that the following shared file is no longer in use by any programs. Would you like for Uninstall to remove this shared file?%n%nIf any programs are still using this file and it is removed, those programs may not function properly. If you are unsure, choose No. Leaving the file on your system will not cause any harm.
|
ConfirmDeleteSharedFile2=The system indicates that the following shared file is no longer in use by any programs. Would you like for Uninstall to remove this shared file?%n%nIf any programs are still using this file and it is removed, those programs may not function properly. If you are unsure, choose No. Leaving the file on your system will not cause any harm.
|
||||||
SharedFileNameLabel=File name:
|
SharedFileNameLabel=File name:
|
||||||
SharedFileLocationLabel=Location:
|
SharedFileLocationLabel=Location:
|
||||||
WizardUninstalling=Uninstall Status
|
WizardUninstalling=Uninstall Status
|
||||||
StatusUninstalling=Uninstalling %1...
|
StatusUninstalling=Uninstalling %1...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Installing %1.
|
ShutdownBlockReasonInstallingApp=Installing %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Uninstalling %1.
|
ShutdownBlockReasonUninstallingApp=Uninstalling %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 version %2
|
NameAndVersion=%1 version %2
|
||||||
AdditionalIcons=Additional shortcuts:
|
AdditionalIcons=Additional shortcuts:
|
||||||
CreateDesktopIcon=Create a &desktop shortcut
|
CreateDesktopIcon=Create a &desktop shortcut
|
||||||
CreateQuickLaunchIcon=Create a &Quick Launch shortcut
|
CreateQuickLaunchIcon=Create a &Quick Launch shortcut
|
||||||
ProgramOnTheWeb=%1 on the Web
|
ProgramOnTheWeb=%1 on the Web
|
||||||
UninstallProgram=Uninstall %1
|
UninstallProgram=Uninstall %1
|
||||||
LaunchProgram=Launch %1
|
LaunchProgram=Launch %1
|
||||||
AssocFileExtension=&Associate %1 with the %2 file extension
|
AssocFileExtension=&Associate %1 with the %2 file extension
|
||||||
AssocingFileExtension=Associating %1 with the %2 file extension...
|
AssocingFileExtension=Associating %1 with the %2 file extension...
|
||||||
AutoStartProgramGroupDescription=Startup:
|
AutoStartProgramGroupDescription=Startup:
|
||||||
AutoStartProgram=Automatically start %1
|
AutoStartProgram=Automatically start %1
|
||||||
AddonHostProgramNotFound=%1 could not be located in the folder you selected.%n%nDo you want to continue anyway?
|
AddonHostProgramNotFound=%1 could not be located in the folder you selected.%n%nDo you want to continue anyway?
|
||||||
|
|
||||||
; VCMI Custom Messages
|
; VCMI Custom Messages
|
||||||
SelectSetupInstallModeTitle=Choose Installation Mode
|
SelectSetupInstallModeTitle=Choose Installation Mode
|
||||||
SelectSetupInstallModeDesc=VCMI can be installed for all users or only for you.
|
SelectSetupInstallModeDesc=VCMI can be installed for all users or only for you.
|
||||||
SelectSetupInstallModeSubTitle=Select your preferred installation mode:
|
SelectSetupInstallModeSubTitle=Select your preferred installation mode:
|
||||||
InstallForAllUsers=Install for all users
|
InstallForAllUsers=Install for all users
|
||||||
InstallForAllUsers1=Requires administrative privileges
|
InstallForAllUsers1=Requires administrative privileges
|
||||||
InstallForMeOnly=Install for me only
|
InstallForMeOnly=Install for me only
|
||||||
InstallForMeOnly1=A firewall prompt will appear when launching the game for the first time.
|
InstallForMeOnly1=A firewall prompt will appear when launching the game for the first time.
|
||||||
InstallForMeOnly2=Warning: LAN games will not work if the firewall rule cannot be allowed.
|
InstallForMeOnly2=Warning: LAN games will not work if the firewall rule cannot be allowed.
|
||||||
CreateDesktopShortcuts=Create desktop shortcuts
|
CreateDesktopShortcuts=Create desktop shortcuts
|
||||||
ShortcutsOptions=Shortcut options
|
ShortcutsOptions=Shortcut options
|
||||||
CreateStartMenuShortcuts=Create Start Menu shortcuts
|
CreateStartMenuShortcuts=Create Start Menu shortcuts
|
||||||
FirewallOptions=Firewall settings
|
FirewallOptions=Firewall settings
|
||||||
AddFirewallRules=Add firewall rules for VCMI
|
AddFirewallRules=Add firewall rules for VCMI
|
||||||
FileAssociations=File associations
|
FileAssociations=File associations
|
||||||
AssociateH3MFiles=Associate .h3m files with the VCMI Map Editor
|
AssociateH3MFiles=Associate .h3m files with the VCMI Map Editor
|
||||||
AssociateVMapFiles=Associate .vmap files with the VCMI Map Editor
|
AssociateVMapFiles=Associate .vmap files with the VCMI Map Editor
|
||||||
RunVCMILauncherAfterInstall=Launch the VCMI Launcher
|
RunVCMILauncherAfterInstall=Launch the VCMI Launcher
|
||||||
ShortcutMapEditor=VCMI Map Editor
|
ShortcutMapEditor=VCMI Map Editor
|
||||||
ShortcutLauncher=VCMI Launcher
|
ShortcutLauncher=VCMI Launcher
|
||||||
ShortcutWebPage=VCMI Website
|
ShortcutWebPage=VCMI Website
|
||||||
ShortcutDiscord=VCMI Discord
|
ShortcutDiscord=VCMI Discord
|
||||||
ShortcutLauncherComment=Launch the VCMI Launcher
|
ShortcutLauncherComment=Launch the VCMI Launcher
|
||||||
ShortcutMapEditorComment=Open the VCMI Map Editor
|
ShortcutMapEditorComment=Open the VCMI Map Editor
|
||||||
ShortcutWebPageComment=Visit the official VCMI website
|
ShortcutWebPageComment=Visit the official VCMI website
|
||||||
ShortcutDiscordComment=Visit the official VCMI Discord
|
ShortcutDiscordComment=Visit the official VCMI Discord
|
||||||
DeleteUserData=Delete user data
|
DeleteUserData=Delete user data
|
||||||
Uninstall=Uninstall
|
Uninstall=Uninstall
|
||||||
VMAPDescription=VCMI Map File
|
VMAPDescription=VCMI Map File
|
||||||
H3MDescription=Heroes 3 Map File
|
H3MDescription=Heroes 3 Map File
|
||||||
|
@@ -1,390 +1,390 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Finnish messages ***
|
; *** Inno Setup version 6.1.0+ Finnish messages ***
|
||||||
;
|
;
|
||||||
; Finnish translation by Antti Karttunen
|
; Finnish translation by Antti Karttunen
|
||||||
; E-mail: antti.j.karttunen@iki.fi
|
; E-mail: antti.j.karttunen@iki.fi
|
||||||
; Last modification date: 2020-08-02
|
; Last modification date: 2020-08-02
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
LanguageName=Suomi
|
LanguageName=Suomi
|
||||||
LanguageID=$040B
|
LanguageID=$040B
|
||||||
LanguageCodePage=1252
|
LanguageCodePage=1252
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Asennus
|
SetupAppTitle=Asennus
|
||||||
SetupWindowTitle=%1 - Asennus
|
SetupWindowTitle=%1 - Asennus
|
||||||
UninstallAppTitle=Asennuksen poisto
|
UninstallAppTitle=Asennuksen poisto
|
||||||
UninstallAppFullTitle=%1 - Asennuksen poisto
|
UninstallAppFullTitle=%1 - Asennuksen poisto
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Ilmoitus
|
InformationTitle=Ilmoitus
|
||||||
ConfirmTitle=Varmistus
|
ConfirmTitle=Varmistus
|
||||||
ErrorTitle=Virhe
|
ErrorTitle=Virhe
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=T�ll� asennusohjelmalla asennetaan %1. Haluatko jatkaa?
|
SetupLdrStartupMessage=T�ll� asennusohjelmalla asennetaan %1. Haluatko jatkaa?
|
||||||
LdrCannotCreateTemp=V�liaikaistiedostoa ei voitu luoda. Asennus keskeytettiin
|
LdrCannotCreateTemp=V�liaikaistiedostoa ei voitu luoda. Asennus keskeytettiin
|
||||||
LdrCannotExecTemp=V�liaikaisessa hakemistossa olevaa tiedostoa ei voitu suorittaa. Asennus keskeytettiin
|
LdrCannotExecTemp=V�liaikaisessa hakemistossa olevaa tiedostoa ei voitu suorittaa. Asennus keskeytettiin
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nVirhe %2: %3
|
LastErrorMessage=%1.%n%nVirhe %2: %3
|
||||||
SetupFileMissing=Tiedostoa %1 ei l�ydy asennushakemistosta. Korjaa ongelma tai hanki uusi kopio ohjelmasta.
|
SetupFileMissing=Tiedostoa %1 ei l�ydy asennushakemistosta. Korjaa ongelma tai hanki uusi kopio ohjelmasta.
|
||||||
SetupFileCorrupt=Asennustiedostot ovat vaurioituneet. Hanki uusi kopio ohjelmasta.
|
SetupFileCorrupt=Asennustiedostot ovat vaurioituneet. Hanki uusi kopio ohjelmasta.
|
||||||
SetupFileCorruptOrWrongVer=Asennustiedostot ovat vaurioituneet tai ovat ep�yhteensopivia t�m�n Asennuksen version kanssa. Korjaa ongelma tai hanki uusi kopio ohjelmasta.
|
SetupFileCorruptOrWrongVer=Asennustiedostot ovat vaurioituneet tai ovat ep�yhteensopivia t�m�n Asennuksen version kanssa. Korjaa ongelma tai hanki uusi kopio ohjelmasta.
|
||||||
InvalidParameter=Virheellinen komentoriviparametri:%n%n%1
|
InvalidParameter=Virheellinen komentoriviparametri:%n%n%1
|
||||||
SetupAlreadyRunning=Asennus on jo k�ynniss�.
|
SetupAlreadyRunning=Asennus on jo k�ynniss�.
|
||||||
WindowsVersionNotSupported=T�m� ohjelma ei tue k�yt�ss� olevaa Windowsin versiota.
|
WindowsVersionNotSupported=T�m� ohjelma ei tue k�yt�ss� olevaa Windowsin versiota.
|
||||||
WindowsServicePackRequired=T�m� ohjelma vaatii %1 Service Pack %2 -p�ivityksen tai my�hemm�n.
|
WindowsServicePackRequired=T�m� ohjelma vaatii %1 Service Pack %2 -p�ivityksen tai my�hemm�n.
|
||||||
NotOnThisPlatform=T�m� ohjelma ei toimi %1-k�ytt�j�rjestelm�ss�.
|
NotOnThisPlatform=T�m� ohjelma ei toimi %1-k�ytt�j�rjestelm�ss�.
|
||||||
OnlyOnThisPlatform=T�m� ohjelma toimii vain %1-k�ytt�j�rjestelm�ss�.
|
OnlyOnThisPlatform=T�m� ohjelma toimii vain %1-k�ytt�j�rjestelm�ss�.
|
||||||
OnlyOnTheseArchitectures=T�m� ohjelma voidaan asentaa vain niihin Windowsin versioihin, jotka on suunniteltu seuraaville prosessorityypeille:%n%n%1
|
OnlyOnTheseArchitectures=T�m� ohjelma voidaan asentaa vain niihin Windowsin versioihin, jotka on suunniteltu seuraaville prosessorityypeille:%n%n%1
|
||||||
WinVersionTooLowError=T�m� ohjelma vaatii version %2 tai my�hemm�n %1-k�ytt�j�rjestelm�st�.
|
WinVersionTooLowError=T�m� ohjelma vaatii version %2 tai my�hemm�n %1-k�ytt�j�rjestelm�st�.
|
||||||
WinVersionTooHighError=T�t� ohjelmaa ei voi asentaa %1-k�ytt�j�rjestelm�n versioon %2 tai my�hemp��n.
|
WinVersionTooHighError=T�t� ohjelmaa ei voi asentaa %1-k�ytt�j�rjestelm�n versioon %2 tai my�hemp��n.
|
||||||
AdminPrivilegesRequired=Sinun t�ytyy kirjautua sis��n j�rjestelm�nvalvojana asentaaksesi t�m�n ohjelman.
|
AdminPrivilegesRequired=Sinun t�ytyy kirjautua sis��n j�rjestelm�nvalvojana asentaaksesi t�m�n ohjelman.
|
||||||
PowerUserPrivilegesRequired=Sinun t�ytyy kirjautua sis��n j�rjestelm�nvalvojana tai tehok�ytt�j�n� asentaaksesi t�m�n ohjelman.
|
PowerUserPrivilegesRequired=Sinun t�ytyy kirjautua sis��n j�rjestelm�nvalvojana tai tehok�ytt�j�n� asentaaksesi t�m�n ohjelman.
|
||||||
SetupAppRunningError=Asennus l�ysi k�ynniss� olevan kopion ohjelmasta %1.%n%nSulje kaikki k�ynniss� olevat kopiot ohjelmasta ja valitse OK jatkaaksesi, tai valitse Peruuta poistuaksesi.
|
SetupAppRunningError=Asennus l�ysi k�ynniss� olevan kopion ohjelmasta %1.%n%nSulje kaikki k�ynniss� olevat kopiot ohjelmasta ja valitse OK jatkaaksesi, tai valitse Peruuta poistuaksesi.
|
||||||
UninstallAppRunningError=Asennuksen poisto l�ysi k�ynniss� olevan kopion ohjelmasta %1.%n%nSulje kaikki k�ynniss� olevat kopiot ohjelmasta ja valitse OK jatkaaksesi, tai valitse Peruuta poistuaksesi.
|
UninstallAppRunningError=Asennuksen poisto l�ysi k�ynniss� olevan kopion ohjelmasta %1.%n%nSulje kaikki k�ynniss� olevat kopiot ohjelmasta ja valitse OK jatkaaksesi, tai valitse Peruuta poistuaksesi.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Valitse asennustapa
|
PrivilegesRequiredOverrideTitle=Valitse asennustapa
|
||||||
PrivilegesRequiredOverrideInstruction=Valitse, kenen k�ytt��n ohjelma asennetaan
|
PrivilegesRequiredOverrideInstruction=Valitse, kenen k�ytt��n ohjelma asennetaan
|
||||||
PrivilegesRequiredOverrideText1=%1 voidaan asentaa kaikille k�ytt�jille (vaatii j�rjestelm�nvalvojan oikeudet) tai vain sinun k�ytt��si.
|
PrivilegesRequiredOverrideText1=%1 voidaan asentaa kaikille k�ytt�jille (vaatii j�rjestelm�nvalvojan oikeudet) tai vain sinun k�ytt��si.
|
||||||
PrivilegesRequiredOverrideText2=%1 voidaan asentaa vain sinun k�ytt��si tai kaikille k�ytt�jille (vaatii j�rjestelm�nvalvojan oikeudet).
|
PrivilegesRequiredOverrideText2=%1 voidaan asentaa vain sinun k�ytt��si tai kaikille k�ytt�jille (vaatii j�rjestelm�nvalvojan oikeudet).
|
||||||
PrivilegesRequiredOverrideAllUsers=Asenna &kaikille k�ytt�jille
|
PrivilegesRequiredOverrideAllUsers=Asenna &kaikille k�ytt�jille
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Asenna &kaikille k�ytt�jille (suositus)
|
PrivilegesRequiredOverrideAllUsersRecommended=Asenna &kaikille k�ytt�jille (suositus)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Asenna vain &minun k�ytt��ni
|
PrivilegesRequiredOverrideCurrentUser=Asenna vain &minun k�ytt��ni
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Asenna vain &minun k�ytt��ni (suositus)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Asenna vain &minun k�ytt��ni (suositus)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=Asennus ei voinut luoda hakemistoa "%1"
|
ErrorCreatingDir=Asennus ei voinut luoda hakemistoa "%1"
|
||||||
ErrorTooManyFilesInDir=Tiedoston luominen hakemistoon "%1" ep�onnistui, koska se sis�lt�� liian monta tiedostoa
|
ErrorTooManyFilesInDir=Tiedoston luominen hakemistoon "%1" ep�onnistui, koska se sis�lt�� liian monta tiedostoa
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Poistu Asennuksesta
|
ExitSetupTitle=Poistu Asennuksesta
|
||||||
ExitSetupMessage=Asennus ei ole valmis. Jos lopetat nyt, ohjelmaa ei asenneta.%n%nVoit ajaa Asennuksen toiste asentaaksesi ohjelman.%n%nLopetetaanko Asennus?
|
ExitSetupMessage=Asennus ei ole valmis. Jos lopetat nyt, ohjelmaa ei asenneta.%n%nVoit ajaa Asennuksen toiste asentaaksesi ohjelman.%n%nLopetetaanko Asennus?
|
||||||
AboutSetupMenuItem=&Tietoja Asennuksesta...
|
AboutSetupMenuItem=&Tietoja Asennuksesta...
|
||||||
AboutSetupTitle=Tietoja Asennuksesta
|
AboutSetupTitle=Tietoja Asennuksesta
|
||||||
AboutSetupMessage=%1 versio %2%n%3%n%n%1 -ohjelman kotisivu:%n%4
|
AboutSetupMessage=%1 versio %2%n%3%n%n%1 -ohjelman kotisivu:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Suomenkielinen k��nn�s: Antti Karttunen (antti.j.karttunen@iki.fi)
|
TranslatorNote=Suomenkielinen k��nn�s: Antti Karttunen (antti.j.karttunen@iki.fi)
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Takaisin
|
ButtonBack=< &Takaisin
|
||||||
ButtonNext=&Seuraava >
|
ButtonNext=&Seuraava >
|
||||||
ButtonInstall=&Asenna
|
ButtonInstall=&Asenna
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Peruuta
|
ButtonCancel=Peruuta
|
||||||
ButtonYes=&Kyll�
|
ButtonYes=&Kyll�
|
||||||
ButtonYesToAll=Kyll� k&aikkiin
|
ButtonYesToAll=Kyll� k&aikkiin
|
||||||
ButtonNo=&Ei
|
ButtonNo=&Ei
|
||||||
ButtonNoToAll=E&i kaikkiin
|
ButtonNoToAll=E&i kaikkiin
|
||||||
ButtonFinish=&Lopeta
|
ButtonFinish=&Lopeta
|
||||||
ButtonBrowse=S&elaa...
|
ButtonBrowse=S&elaa...
|
||||||
ButtonWizardBrowse=S&elaa...
|
ButtonWizardBrowse=S&elaa...
|
||||||
ButtonNewFolder=&Luo uusi kansio
|
ButtonNewFolder=&Luo uusi kansio
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Valitse Asennuksen kieli
|
SelectLanguageTitle=Valitse Asennuksen kieli
|
||||||
SelectLanguageLabel=Valitse asentamisen aikana k�ytett�v� kieli.
|
SelectLanguageLabel=Valitse asentamisen aikana k�ytett�v� kieli.
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=Valitse Seuraava jatkaaksesi tai Peruuta poistuaksesi.
|
ClickNext=Valitse Seuraava jatkaaksesi tai Peruuta poistuaksesi.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Selaa kansioita
|
BrowseDialogTitle=Selaa kansioita
|
||||||
BrowseDialogLabel=Valitse kansio allaolevasta listasta ja valitse sitten OK jatkaaksesi.
|
BrowseDialogLabel=Valitse kansio allaolevasta listasta ja valitse sitten OK jatkaaksesi.
|
||||||
NewFolderName=Uusi kansio
|
NewFolderName=Uusi kansio
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Tervetuloa [name] -asennusohjelmaan.
|
WelcomeLabel1=Tervetuloa [name] -asennusohjelmaan.
|
||||||
WelcomeLabel2=T�ll� asennusohjelmalla koneellesi asennetaan [name/ver]. %n%nOn suositeltavaa, ett� suljet kaikki muut k�ynniss� olevat sovellukset ennen jatkamista. T�m� auttaa v�ltt�m��n ristiriitatilanteita asennuksen aikana.
|
WelcomeLabel2=T�ll� asennusohjelmalla koneellesi asennetaan [name/ver]. %n%nOn suositeltavaa, ett� suljet kaikki muut k�ynniss� olevat sovellukset ennen jatkamista. T�m� auttaa v�ltt�m��n ristiriitatilanteita asennuksen aikana.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Salasana
|
WizardPassword=Salasana
|
||||||
PasswordLabel1=T�m� asennusohjelma on suojattu salasanalla.
|
PasswordLabel1=T�m� asennusohjelma on suojattu salasanalla.
|
||||||
PasswordLabel3=Anna salasana ja valitse sitten Seuraava jatkaaksesi.%n%nIsot ja pienet kirjaimet ovat eriarvoisia.
|
PasswordLabel3=Anna salasana ja valitse sitten Seuraava jatkaaksesi.%n%nIsot ja pienet kirjaimet ovat eriarvoisia.
|
||||||
PasswordEditLabel=&Salasana:
|
PasswordEditLabel=&Salasana:
|
||||||
IncorrectPassword=Antamasi salasana oli virheellinen. Anna salasana uudelleen.
|
IncorrectPassword=Antamasi salasana oli virheellinen. Anna salasana uudelleen.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=K�ytt�oikeussopimus
|
WizardLicense=K�ytt�oikeussopimus
|
||||||
LicenseLabel=Lue seuraava t�rke� tiedotus ennen kuin jatkat.
|
LicenseLabel=Lue seuraava t�rke� tiedotus ennen kuin jatkat.
|
||||||
LicenseLabel3=Lue seuraava k�ytt�oikeussopimus tarkasti. Sinun t�ytyy hyv�ksy� sopimus, jos haluat jatkaa asentamista.
|
LicenseLabel3=Lue seuraava k�ytt�oikeussopimus tarkasti. Sinun t�ytyy hyv�ksy� sopimus, jos haluat jatkaa asentamista.
|
||||||
LicenseAccepted=&Hyv�ksyn sopimuksen
|
LicenseAccepted=&Hyv�ksyn sopimuksen
|
||||||
LicenseNotAccepted=&En hyv�ksy sopimusta
|
LicenseNotAccepted=&En hyv�ksy sopimusta
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Tiedotus
|
WizardInfoBefore=Tiedotus
|
||||||
InfoBeforeLabel=Lue seuraava t�rke� tiedotus ennen kuin jatkat.
|
InfoBeforeLabel=Lue seuraava t�rke� tiedotus ennen kuin jatkat.
|
||||||
InfoBeforeClickLabel=Kun olet valmis jatkamaan asentamista, valitse Seuraava.
|
InfoBeforeClickLabel=Kun olet valmis jatkamaan asentamista, valitse Seuraava.
|
||||||
WizardInfoAfter=Tiedotus
|
WizardInfoAfter=Tiedotus
|
||||||
InfoAfterLabel=Lue seuraava t�rke� tiedotus ennen kuin jatkat.
|
InfoAfterLabel=Lue seuraava t�rke� tiedotus ennen kuin jatkat.
|
||||||
InfoAfterClickLabel=Kun olet valmis jatkamaan asentamista, valitse Seuraava.
|
InfoAfterClickLabel=Kun olet valmis jatkamaan asentamista, valitse Seuraava.
|
||||||
|
|
||||||
; *** "Select Destination Directory" wizard page
|
; *** "Select Destination Directory" wizard page
|
||||||
WizardUserInfo=K�ytt�j�tiedot
|
WizardUserInfo=K�ytt�j�tiedot
|
||||||
UserInfoDesc=Anna pyydetyt tiedot.
|
UserInfoDesc=Anna pyydetyt tiedot.
|
||||||
UserInfoName=K�ytt�j�n &nimi:
|
UserInfoName=K�ytt�j�n &nimi:
|
||||||
UserInfoOrg=&Yritys:
|
UserInfoOrg=&Yritys:
|
||||||
UserInfoSerial=&Tunnuskoodi:
|
UserInfoSerial=&Tunnuskoodi:
|
||||||
UserInfoNameRequired=Sinun t�ytyy antaa nimi.
|
UserInfoNameRequired=Sinun t�ytyy antaa nimi.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Valitse kohdekansio
|
WizardSelectDir=Valitse kohdekansio
|
||||||
SelectDirDesc=Mihin [name] asennetaan?
|
SelectDirDesc=Mihin [name] asennetaan?
|
||||||
SelectDirLabel3=[name] asennetaan t�h�n kansioon.
|
SelectDirLabel3=[name] asennetaan t�h�n kansioon.
|
||||||
SelectDirBrowseLabel=Valitse Seuraava jatkaaksesi. Jos haluat vaihtaa kansiota, valitse Selaa.
|
SelectDirBrowseLabel=Valitse Seuraava jatkaaksesi. Jos haluat vaihtaa kansiota, valitse Selaa.
|
||||||
DiskSpaceGBLabel=Vapaata levytilaa tarvitaan v�hint��n [gb] Gt.
|
DiskSpaceGBLabel=Vapaata levytilaa tarvitaan v�hint��n [gb] Gt.
|
||||||
DiskSpaceMBLabel=Vapaata levytilaa tarvitaan v�hint��n [mb] Mt.
|
DiskSpaceMBLabel=Vapaata levytilaa tarvitaan v�hint��n [mb] Mt.
|
||||||
CannotInstallToNetworkDrive=Asennus ei voi asentaa ohjelmaa verkkoasemalle.
|
CannotInstallToNetworkDrive=Asennus ei voi asentaa ohjelmaa verkkoasemalle.
|
||||||
CannotInstallToUNCPath=Asennus ei voi asentaa ohjelmaa UNC-polun alle.
|
CannotInstallToUNCPath=Asennus ei voi asentaa ohjelmaa UNC-polun alle.
|
||||||
InvalidPath=Anna t�ydellinen polku levyaseman kirjaimen kanssa. Esimerkiksi %nC:\OHJELMA%n%ntai UNC-polku muodossa %n%n\\palvelin\resurssi
|
InvalidPath=Anna t�ydellinen polku levyaseman kirjaimen kanssa. Esimerkiksi %nC:\OHJELMA%n%ntai UNC-polku muodossa %n%n\\palvelin\resurssi
|
||||||
InvalidDrive=Valitsemaasi asemaa tai UNC-polkua ei ole olemassa tai sit� ei voi k�ytt��. Valitse toinen asema tai UNC-polku.
|
InvalidDrive=Valitsemaasi asemaa tai UNC-polkua ei ole olemassa tai sit� ei voi k�ytt��. Valitse toinen asema tai UNC-polku.
|
||||||
DiskSpaceWarningTitle=Ei tarpeeksi vapaata levytilaa
|
DiskSpaceWarningTitle=Ei tarpeeksi vapaata levytilaa
|
||||||
DiskSpaceWarning=Asennus vaatii v�hint��n %1 kt vapaata levytilaa, mutta valitulla levyasemalla on vain %2 kt vapaata levytilaa.%n%nHaluatko jatkaa t�st� huolimatta?
|
DiskSpaceWarning=Asennus vaatii v�hint��n %1 kt vapaata levytilaa, mutta valitulla levyasemalla on vain %2 kt vapaata levytilaa.%n%nHaluatko jatkaa t�st� huolimatta?
|
||||||
DirNameTooLong=Kansion nimi tai polku on liian pitk�.
|
DirNameTooLong=Kansion nimi tai polku on liian pitk�.
|
||||||
InvalidDirName=Virheellinen kansion nimi.
|
InvalidDirName=Virheellinen kansion nimi.
|
||||||
BadDirName32=Kansion nimess� ei saa olla seuraavia merkkej�:%n%n%1
|
BadDirName32=Kansion nimess� ei saa olla seuraavia merkkej�:%n%n%1
|
||||||
DirExistsTitle=Kansio on olemassa
|
DirExistsTitle=Kansio on olemassa
|
||||||
DirExists=Kansio:%n%n%1%n%non jo olemassa. Haluatko kuitenkin suorittaa asennuksen t�h�n kansioon?
|
DirExists=Kansio:%n%n%1%n%non jo olemassa. Haluatko kuitenkin suorittaa asennuksen t�h�n kansioon?
|
||||||
DirDoesntExistTitle=Kansiota ei ole olemassa
|
DirDoesntExistTitle=Kansiota ei ole olemassa
|
||||||
DirDoesntExist=Kansiota%n%n%1%n%nei ole olemassa. Luodaanko kansio?
|
DirDoesntExist=Kansiota%n%n%1%n%nei ole olemassa. Luodaanko kansio?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Valitse asennettavat osat
|
WizardSelectComponents=Valitse asennettavat osat
|
||||||
SelectComponentsDesc=Mitk� osat asennetaan?
|
SelectComponentsDesc=Mitk� osat asennetaan?
|
||||||
SelectComponentsLabel2=Valitse ne osat, jotka haluat asentaa, ja poista niiden osien valinta, joita et halua asentaa. Valitse Seuraava, kun olet valmis.
|
SelectComponentsLabel2=Valitse ne osat, jotka haluat asentaa, ja poista niiden osien valinta, joita et halua asentaa. Valitse Seuraava, kun olet valmis.
|
||||||
FullInstallation=Normaali asennus
|
FullInstallation=Normaali asennus
|
||||||
CompactInstallation=Suppea asennus
|
CompactInstallation=Suppea asennus
|
||||||
CustomInstallation=Mukautettu asennus
|
CustomInstallation=Mukautettu asennus
|
||||||
NoUninstallWarningTitle=Asennettuja osia l�ydettiin
|
NoUninstallWarningTitle=Asennettuja osia l�ydettiin
|
||||||
NoUninstallWarning=Seuraavat osat on jo asennettu koneelle:%n%n%1%n%nN�iden osien valinnan poistaminen ei poista niit� koneelta.%n%nHaluatko jatkaa t�st� huolimatta?
|
NoUninstallWarning=Seuraavat osat on jo asennettu koneelle:%n%n%1%n%nN�iden osien valinnan poistaminen ei poista niit� koneelta.%n%nHaluatko jatkaa t�st� huolimatta?
|
||||||
ComponentSize1=%1 kt
|
ComponentSize1=%1 kt
|
||||||
ComponentSize2=%1 Mt
|
ComponentSize2=%1 Mt
|
||||||
ComponentsDiskSpaceGBLabel=Nykyiset valinnat vaativat v�hint��n [gb] Gt levytilaa.
|
ComponentsDiskSpaceGBLabel=Nykyiset valinnat vaativat v�hint��n [gb] Gt levytilaa.
|
||||||
ComponentsDiskSpaceMBLabel=Nykyiset valinnat vaativat v�hint��n [mb] Mt levytilaa.
|
ComponentsDiskSpaceMBLabel=Nykyiset valinnat vaativat v�hint��n [mb] Mt levytilaa.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Valitse muut toiminnot
|
WizardSelectTasks=Valitse muut toiminnot
|
||||||
SelectTasksDesc=Mit� muita toimintoja suoritetaan?
|
SelectTasksDesc=Mit� muita toimintoja suoritetaan?
|
||||||
SelectTasksLabel2=Valitse muut toiminnot, jotka haluat Asennuksen suorittavan samalla kun [name] asennetaan. Valitse Seuraava, kun olet valmis.
|
SelectTasksLabel2=Valitse muut toiminnot, jotka haluat Asennuksen suorittavan samalla kun [name] asennetaan. Valitse Seuraava, kun olet valmis.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Valitse K�ynnist�-valikon kansio
|
WizardSelectProgramGroup=Valitse K�ynnist�-valikon kansio
|
||||||
SelectStartMenuFolderDesc=Mihin ohjelman pikakuvakkeet sijoitetaan?
|
SelectStartMenuFolderDesc=Mihin ohjelman pikakuvakkeet sijoitetaan?
|
||||||
SelectStartMenuFolderLabel3=Ohjelman pikakuvakkeet luodaan t�h�n K�ynnist�-valikon kansioon.
|
SelectStartMenuFolderLabel3=Ohjelman pikakuvakkeet luodaan t�h�n K�ynnist�-valikon kansioon.
|
||||||
SelectStartMenuFolderBrowseLabel=Valitse Seuraava jatkaaksesi. Jos haluat vaihtaa kansiota, valitse Selaa.
|
SelectStartMenuFolderBrowseLabel=Valitse Seuraava jatkaaksesi. Jos haluat vaihtaa kansiota, valitse Selaa.
|
||||||
MustEnterGroupName=Kansiolle pit�� antaa nimi.
|
MustEnterGroupName=Kansiolle pit�� antaa nimi.
|
||||||
GroupNameTooLong=Kansion nimi tai polku on liian pitk�.
|
GroupNameTooLong=Kansion nimi tai polku on liian pitk�.
|
||||||
InvalidGroupName=Virheellinen kansion nimi.
|
InvalidGroupName=Virheellinen kansion nimi.
|
||||||
BadGroupName=Kansion nimess� ei saa olla seuraavia merkkej�:%n%n%1
|
BadGroupName=Kansion nimess� ei saa olla seuraavia merkkej�:%n%n%1
|
||||||
NoProgramGroupCheck2=�l� luo k&ansiota K�ynnist�-valikkoon
|
NoProgramGroupCheck2=�l� luo k&ansiota K�ynnist�-valikkoon
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Valmiina asennukseen
|
WizardReady=Valmiina asennukseen
|
||||||
ReadyLabel1=[name] on nyt valmis asennettavaksi.
|
ReadyLabel1=[name] on nyt valmis asennettavaksi.
|
||||||
ReadyLabel2a=Valitse Asenna jatkaaksesi asentamista tai valitse Takaisin, jos haluat tarkastella tekemi�si asetuksia tai muuttaa niit�.
|
ReadyLabel2a=Valitse Asenna jatkaaksesi asentamista tai valitse Takaisin, jos haluat tarkastella tekemi�si asetuksia tai muuttaa niit�.
|
||||||
ReadyLabel2b=Valitse Asenna jatkaaksesi asentamista.
|
ReadyLabel2b=Valitse Asenna jatkaaksesi asentamista.
|
||||||
ReadyMemoUserInfo=K�ytt�j�tiedot:
|
ReadyMemoUserInfo=K�ytt�j�tiedot:
|
||||||
ReadyMemoDir=Kohdekansio:
|
ReadyMemoDir=Kohdekansio:
|
||||||
ReadyMemoType=Asennustyyppi:
|
ReadyMemoType=Asennustyyppi:
|
||||||
ReadyMemoComponents=Asennettavaksi valitut osat:
|
ReadyMemoComponents=Asennettavaksi valitut osat:
|
||||||
ReadyMemoGroup=K�ynnist�-valikon kansio:
|
ReadyMemoGroup=K�ynnist�-valikon kansio:
|
||||||
ReadyMemoTasks=Muut toiminnot:
|
ReadyMemoTasks=Muut toiminnot:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Ladataan tarvittavia tiedostoja...
|
DownloadingLabel=Ladataan tarvittavia tiedostoja...
|
||||||
ButtonStopDownload=&Pys�yt� lataus
|
ButtonStopDownload=&Pys�yt� lataus
|
||||||
StopDownload=Oletko varma, ett� haluat pys�ytt�� tiedostojen latauksen?
|
StopDownload=Oletko varma, ett� haluat pys�ytt�� tiedostojen latauksen?
|
||||||
ErrorDownloadAborted=Tiedostojen lataaminen keskeytettiin
|
ErrorDownloadAborted=Tiedostojen lataaminen keskeytettiin
|
||||||
ErrorDownloadFailed=Tiedoston lataaminen ep�onnistui: %1 %2
|
ErrorDownloadFailed=Tiedoston lataaminen ep�onnistui: %1 %2
|
||||||
ErrorDownloadSizeFailed=Latauksen koon noutaminen ep�onnistui: %1 %2
|
ErrorDownloadSizeFailed=Latauksen koon noutaminen ep�onnistui: %1 %2
|
||||||
ErrorFileHash1=Tiedoston tiivisteen luominen ep�onnistui: %1
|
ErrorFileHash1=Tiedoston tiivisteen luominen ep�onnistui: %1
|
||||||
ErrorFileHash2=Tiedoston tiiviste on virheellinen: odotettu %1, l�ydetty %2
|
ErrorFileHash2=Tiedoston tiiviste on virheellinen: odotettu %1, l�ydetty %2
|
||||||
ErrorProgress=Virheellinen edistyminen: %1 / %2
|
ErrorProgress=Virheellinen edistyminen: %1 / %2
|
||||||
ErrorFileSize=Virheellinen tiedoston koko: odotettu %1, l�ydetty %2
|
ErrorFileSize=Virheellinen tiedoston koko: odotettu %1, l�ydetty %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Valmistellaan asennusta
|
WizardPreparing=Valmistellaan asennusta
|
||||||
PreparingDesc=Valmistaudutaan asentamaan [name] koneellesi.
|
PreparingDesc=Valmistaudutaan asentamaan [name] koneellesi.
|
||||||
PreviousInstallNotCompleted=Edellisen ohjelman asennus tai asennuksen poisto ei ole valmis. Sinun t�ytyy k�ynnist�� kone uudelleen viimeistell�ksesi edellisen asennuksen.%n%nAja [name] -asennusohjelma uudestaan, kun olet k�ynnist�nyt koneen uudelleen.
|
PreviousInstallNotCompleted=Edellisen ohjelman asennus tai asennuksen poisto ei ole valmis. Sinun t�ytyy k�ynnist�� kone uudelleen viimeistell�ksesi edellisen asennuksen.%n%nAja [name] -asennusohjelma uudestaan, kun olet k�ynnist�nyt koneen uudelleen.
|
||||||
CannotContinue=Asennusta ei voida jatkaa. Valitse Peruuta poistuaksesi.
|
CannotContinue=Asennusta ei voida jatkaa. Valitse Peruuta poistuaksesi.
|
||||||
ApplicationsFound=Seuraavat sovellukset k�ytt�v�t tiedostoja, joita Asennuksen pit�� p�ivitt��. On suositeltavaa, ett� annat Asennuksen sulkea n�m� sovellukset automaattisesti.
|
ApplicationsFound=Seuraavat sovellukset k�ytt�v�t tiedostoja, joita Asennuksen pit�� p�ivitt��. On suositeltavaa, ett� annat Asennuksen sulkea n�m� sovellukset automaattisesti.
|
||||||
ApplicationsFound2=Seuraavat sovellukset k�ytt�v�t tiedostoja, joita Asennuksen pit�� p�ivitt��. On suositeltavaa, ett� annat Asennuksen sulkea n�m� sovellukset automaattisesti. Valmistumisen j�lkeen Asennus yritt�� uudelleenk�ynnist�� sovellukset.
|
ApplicationsFound2=Seuraavat sovellukset k�ytt�v�t tiedostoja, joita Asennuksen pit�� p�ivitt��. On suositeltavaa, ett� annat Asennuksen sulkea n�m� sovellukset automaattisesti. Valmistumisen j�lkeen Asennus yritt�� uudelleenk�ynnist�� sovellukset.
|
||||||
CloseApplications=&Sulje sovellukset automaattisesti
|
CloseApplications=&Sulje sovellukset automaattisesti
|
||||||
DontCloseApplications=&�l� sulje sovelluksia
|
DontCloseApplications=&�l� sulje sovelluksia
|
||||||
ErrorCloseApplications=Asennus ei pystynyt sulkemaan tarvittavia sovelluksia automaattisesti. On suositeltavaa, ett� ennen jatkamista suljet sovellukset, jotka k�ytt�v�t asennuksen aikana p�ivitett�vi� tiedostoja.
|
ErrorCloseApplications=Asennus ei pystynyt sulkemaan tarvittavia sovelluksia automaattisesti. On suositeltavaa, ett� ennen jatkamista suljet sovellukset, jotka k�ytt�v�t asennuksen aikana p�ivitett�vi� tiedostoja.
|
||||||
PrepareToInstallNeedsRestart=Asennuksen t�ytyy k�ynnist�� tietokone uudelleen. Aja Asennus uudelleenk�ynnistyksen j�lkeen, jotta [name] voidaan asentaa.%n%nHaluatko k�ynnist�� tietokoneen uudelleen nyt?
|
PrepareToInstallNeedsRestart=Asennuksen t�ytyy k�ynnist�� tietokone uudelleen. Aja Asennus uudelleenk�ynnistyksen j�lkeen, jotta [name] voidaan asentaa.%n%nHaluatko k�ynnist�� tietokoneen uudelleen nyt?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Asennus k�ynniss�
|
WizardInstalling=Asennus k�ynniss�
|
||||||
InstallingLabel=Odota, kun [name] asennetaan koneellesi.
|
InstallingLabel=Odota, kun [name] asennetaan koneellesi.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=[name] - Asennuksen viimeistely
|
FinishedHeadingLabel=[name] - Asennuksen viimeistely
|
||||||
FinishedLabelNoIcons=[name] on nyt asennettu koneellesi.
|
FinishedLabelNoIcons=[name] on nyt asennettu koneellesi.
|
||||||
FinishedLabel=[name] on nyt asennettu. Sovellus voidaan k�ynnist�� valitsemalla jokin asennetuista kuvakkeista.
|
FinishedLabel=[name] on nyt asennettu. Sovellus voidaan k�ynnist�� valitsemalla jokin asennetuista kuvakkeista.
|
||||||
ClickFinish=Valitse Lopeta poistuaksesi Asennuksesta.
|
ClickFinish=Valitse Lopeta poistuaksesi Asennuksesta.
|
||||||
FinishedRestartLabel=Jotta [name] saataisiin asennettua loppuun, pit�� kone k�ynnist�� uudelleen. Haluatko k�ynnist�� koneen uudelleen nyt?
|
FinishedRestartLabel=Jotta [name] saataisiin asennettua loppuun, pit�� kone k�ynnist�� uudelleen. Haluatko k�ynnist�� koneen uudelleen nyt?
|
||||||
FinishedRestartMessage=Jotta [name] saataisiin asennettua loppuun, pit�� kone k�ynnist�� uudelleen.%n%nHaluatko k�ynnist�� koneen uudelleen nyt?
|
FinishedRestartMessage=Jotta [name] saataisiin asennettua loppuun, pit�� kone k�ynnist�� uudelleen.%n%nHaluatko k�ynnist�� koneen uudelleen nyt?
|
||||||
ShowReadmeCheck=Kyll�, haluan n�hd� LUEMINUT-tiedoston
|
ShowReadmeCheck=Kyll�, haluan n�hd� LUEMINUT-tiedoston
|
||||||
YesRadio=&Kyll�, k�ynnist� kone uudelleen
|
YesRadio=&Kyll�, k�ynnist� kone uudelleen
|
||||||
NoRadio=&Ei, k�ynnist�n koneen uudelleen my�hemmin
|
NoRadio=&Ei, k�ynnist�n koneen uudelleen my�hemmin
|
||||||
RunEntryExec=K�ynnist� %1
|
RunEntryExec=K�ynnist� %1
|
||||||
RunEntryShellExec=N�yt� %1
|
RunEntryShellExec=N�yt� %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=Asennus tarvitsee seuraavan levykkeen
|
ChangeDiskTitle=Asennus tarvitsee seuraavan levykkeen
|
||||||
SelectDiskLabel2=Aseta levyke %1 asemaan ja valitse OK. %n%nJos joku toinen kansio sis�lt�� levykkeen tiedostot, anna oikea polku tai valitse Selaa.
|
SelectDiskLabel2=Aseta levyke %1 asemaan ja valitse OK. %n%nJos joku toinen kansio sis�lt�� levykkeen tiedostot, anna oikea polku tai valitse Selaa.
|
||||||
PathLabel=&Polku:
|
PathLabel=&Polku:
|
||||||
FileNotInDir2=Tiedostoa "%1" ei l�ytynyt l�hteest� "%2". Aseta oikea levyke asemaan tai valitse toinen kansio.
|
FileNotInDir2=Tiedostoa "%1" ei l�ytynyt l�hteest� "%2". Aseta oikea levyke asemaan tai valitse toinen kansio.
|
||||||
SelectDirectoryLabel=M��rit� seuraavan levykkeen sis�ll�n sijainti.
|
SelectDirectoryLabel=M��rit� seuraavan levykkeen sis�ll�n sijainti.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=Asennusta ei suoritettu loppuun.%n%nKorjaa ongelma ja suorita Asennus uudelleen.
|
SetupAborted=Asennusta ei suoritettu loppuun.%n%nKorjaa ongelma ja suorita Asennus uudelleen.
|
||||||
AbortRetryIgnoreSelectAction=Valitse toiminto
|
AbortRetryIgnoreSelectAction=Valitse toiminto
|
||||||
AbortRetryIgnoreRetry=&Yrit� uudelleen
|
AbortRetryIgnoreRetry=&Yrit� uudelleen
|
||||||
AbortRetryIgnoreIgnore=&Jatka virheest� huolimatta
|
AbortRetryIgnoreIgnore=&Jatka virheest� huolimatta
|
||||||
AbortRetryIgnoreCancel=Peruuta asennus
|
AbortRetryIgnoreCancel=Peruuta asennus
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Suljetaan sovellukset...
|
StatusClosingApplications=Suljetaan sovellukset...
|
||||||
StatusCreateDirs=Luodaan hakemistoja...
|
StatusCreateDirs=Luodaan hakemistoja...
|
||||||
StatusExtractFiles=Puretaan tiedostoja...
|
StatusExtractFiles=Puretaan tiedostoja...
|
||||||
StatusCreateIcons=Luodaan pikakuvakkeita...
|
StatusCreateIcons=Luodaan pikakuvakkeita...
|
||||||
StatusCreateIniEntries=Luodaan INI-merkint�j�...
|
StatusCreateIniEntries=Luodaan INI-merkint�j�...
|
||||||
StatusCreateRegistryEntries=Luodaan rekisterimerkint�j�...
|
StatusCreateRegistryEntries=Luodaan rekisterimerkint�j�...
|
||||||
StatusRegisterFiles=Rekister�id��n tiedostoja...
|
StatusRegisterFiles=Rekister�id��n tiedostoja...
|
||||||
StatusSavingUninstall=Tallennetaan Asennuksen poiston tietoja...
|
StatusSavingUninstall=Tallennetaan Asennuksen poiston tietoja...
|
||||||
StatusRunProgram=Viimeistell��n asennusta...
|
StatusRunProgram=Viimeistell��n asennusta...
|
||||||
StatusRestartingApplications=Uudelleenk�ynnistet��n sovellukset...
|
StatusRestartingApplications=Uudelleenk�ynnistet��n sovellukset...
|
||||||
StatusRollback=Peruutetaan tehdyt muutokset...
|
StatusRollback=Peruutetaan tehdyt muutokset...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Sis�inen virhe: %1
|
ErrorInternal2=Sis�inen virhe: %1
|
||||||
ErrorFunctionFailedNoCode=%1 ep�onnistui
|
ErrorFunctionFailedNoCode=%1 ep�onnistui
|
||||||
ErrorFunctionFailed=%1 ep�onnistui; virhekoodi %2
|
ErrorFunctionFailed=%1 ep�onnistui; virhekoodi %2
|
||||||
ErrorFunctionFailedWithMessage=%1 ep�onnistui; virhekoodi %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 ep�onnistui; virhekoodi %2.%n%3
|
||||||
ErrorExecutingProgram=Virhe suoritettaessa tiedostoa%n%1
|
ErrorExecutingProgram=Virhe suoritettaessa tiedostoa%n%1
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Asennetaan %1.
|
ShutdownBlockReasonInstallingApp=Asennetaan %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Poistetaan %1.
|
ShutdownBlockReasonUninstallingApp=Poistetaan %1.
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Virhe avattaessa rekisteriavainta%n%1\%2
|
ErrorRegOpenKey=Virhe avattaessa rekisteriavainta%n%1\%2
|
||||||
ErrorRegCreateKey=Virhe luotaessa rekisteriavainta%n%1\%2
|
ErrorRegCreateKey=Virhe luotaessa rekisteriavainta%n%1\%2
|
||||||
ErrorRegWriteKey=Virhe kirjoitettaessa rekisteriavaimeen%n%1\%2
|
ErrorRegWriteKey=Virhe kirjoitettaessa rekisteriavaimeen%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Virhe luotaessa INI-merkint�� tiedostoon "%1".
|
ErrorIniEntry=Virhe luotaessa INI-merkint�� tiedostoon "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Ohita t�m� tiedosto (ei suositeltavaa)
|
FileAbortRetryIgnoreSkipNotRecommended=&Ohita t�m� tiedosto (ei suositeltavaa)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Jatka virheest� huolimatta (ei suositeltavaa)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Jatka virheest� huolimatta (ei suositeltavaa)
|
||||||
SourceIsCorrupted=L�hdetiedosto on vaurioitunut
|
SourceIsCorrupted=L�hdetiedosto on vaurioitunut
|
||||||
SourceDoesntExist=L�hdetiedostoa "%1" ei ole olemassa
|
SourceDoesntExist=L�hdetiedostoa "%1" ei ole olemassa
|
||||||
ExistingFileReadOnly2=Nykyist� tiedostoa ei voitu korvata, koska se on Vain luku -tiedosto.
|
ExistingFileReadOnly2=Nykyist� tiedostoa ei voitu korvata, koska se on Vain luku -tiedosto.
|
||||||
ExistingFileReadOnlyRetry=&Poista Vain luku -asetus ja yrit� uudelleen
|
ExistingFileReadOnlyRetry=&Poista Vain luku -asetus ja yrit� uudelleen
|
||||||
ExistingFileReadOnlyKeepExisting=&S�ilyt� nykyinen tiedosto
|
ExistingFileReadOnlyKeepExisting=&S�ilyt� nykyinen tiedosto
|
||||||
ErrorReadingExistingDest=Virhe luettaessa nykyist� tiedostoa:
|
ErrorReadingExistingDest=Virhe luettaessa nykyist� tiedostoa:
|
||||||
FileExistsSelectAction=Valitse toiminto
|
FileExistsSelectAction=Valitse toiminto
|
||||||
FileExists2=Tiedosto on jo olemassa.
|
FileExists2=Tiedosto on jo olemassa.
|
||||||
FileExistsOverwriteExisting=Korvaa &olemassa oleva tiedosto
|
FileExistsOverwriteExisting=Korvaa &olemassa oleva tiedosto
|
||||||
FileExistsKeepExisting=&S�ilyt� olemassa oleva tiedosto
|
FileExistsKeepExisting=&S�ilyt� olemassa oleva tiedosto
|
||||||
FileExistsOverwriteOrKeepAll=&Hoida muut vastaavat tilanteet samalla tavalla
|
FileExistsOverwriteOrKeepAll=&Hoida muut vastaavat tilanteet samalla tavalla
|
||||||
ExistingFileNewerSelectAction=Valitse toiminto
|
ExistingFileNewerSelectAction=Valitse toiminto
|
||||||
ExistingFileNewer2=Olemassa oleva tiedosto on uudempi kuin Asennuksen sis�lt�m� tiedosto.
|
ExistingFileNewer2=Olemassa oleva tiedosto on uudempi kuin Asennuksen sis�lt�m� tiedosto.
|
||||||
ExistingFileNewerOverwriteExisting=Korvaa &olemassa oleva tiedosto
|
ExistingFileNewerOverwriteExisting=Korvaa &olemassa oleva tiedosto
|
||||||
ExistingFileNewerKeepExisting=&S�ilyt� olemassa oleva tiedosto (suositeltavaa)
|
ExistingFileNewerKeepExisting=&S�ilyt� olemassa oleva tiedosto (suositeltavaa)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Hoida muut vastaavat tilanteet samalla tavalla
|
ExistingFileNewerOverwriteOrKeepAll=&Hoida muut vastaavat tilanteet samalla tavalla
|
||||||
ErrorChangingAttr=Virhe vaihdettaessa nykyisen tiedoston m��ritteit�:
|
ErrorChangingAttr=Virhe vaihdettaessa nykyisen tiedoston m��ritteit�:
|
||||||
ErrorCreatingTemp=Virhe luotaessa tiedostoa kohdehakemistoon:
|
ErrorCreatingTemp=Virhe luotaessa tiedostoa kohdehakemistoon:
|
||||||
ErrorReadingSource=Virhe luettaessa l�hdetiedostoa:
|
ErrorReadingSource=Virhe luettaessa l�hdetiedostoa:
|
||||||
ErrorCopying=Virhe kopioitaessa tiedostoa:
|
ErrorCopying=Virhe kopioitaessa tiedostoa:
|
||||||
ErrorReplacingExistingFile=Virhe korvattaessa nykyist� tiedostoa:
|
ErrorReplacingExistingFile=Virhe korvattaessa nykyist� tiedostoa:
|
||||||
ErrorRestartReplace=RestartReplace-komento ep�onnistui:
|
ErrorRestartReplace=RestartReplace-komento ep�onnistui:
|
||||||
ErrorRenamingTemp=Virhe uudelleennimett�ess� tiedostoa kohdehakemistossa:
|
ErrorRenamingTemp=Virhe uudelleennimett�ess� tiedostoa kohdehakemistossa:
|
||||||
ErrorRegisterServer=DLL/OCX -laajennuksen rekister�inti ep�onnistui: %1
|
ErrorRegisterServer=DLL/OCX -laajennuksen rekister�inti ep�onnistui: %1
|
||||||
ErrorRegSvr32Failed=RegSvr32-toiminto ep�onnistui. Virhekoodi: %1
|
ErrorRegSvr32Failed=RegSvr32-toiminto ep�onnistui. Virhekoodi: %1
|
||||||
ErrorRegisterTypeLib=Tyyppikirjaston rekister�iminen ep�onnistui: %1
|
ErrorRegisterTypeLib=Tyyppikirjaston rekister�iminen ep�onnistui: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32-bittinen
|
UninstallDisplayNameMark32Bit=32-bittinen
|
||||||
UninstallDisplayNameMark64Bit=64-bittinen
|
UninstallDisplayNameMark64Bit=64-bittinen
|
||||||
UninstallDisplayNameMarkAllUsers=Kaikki k�ytt�j�t
|
UninstallDisplayNameMarkAllUsers=Kaikki k�ytt�j�t
|
||||||
UninstallDisplayNameMarkCurrentUser=T�m�nhetkinen k�ytt�j�
|
UninstallDisplayNameMarkCurrentUser=T�m�nhetkinen k�ytt�j�
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Virhe avattaessa LUEMINUT-tiedostoa.
|
ErrorOpeningReadme=Virhe avattaessa LUEMINUT-tiedostoa.
|
||||||
ErrorRestartingComputer=Koneen uudelleenk�ynnist�minen ei onnistunut. Suorita uudelleenk�ynnistys itse.
|
ErrorRestartingComputer=Koneen uudelleenk�ynnist�minen ei onnistunut. Suorita uudelleenk�ynnistys itse.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=Tiedostoa "%1" ei l�ytynyt. Asennuksen poisto ei onnistu.
|
UninstallNotFound=Tiedostoa "%1" ei l�ytynyt. Asennuksen poisto ei onnistu.
|
||||||
UninstallOpenError=Tiedostoa "%1" ei voitu avata. Asennuksen poisto ei onnistu.
|
UninstallOpenError=Tiedostoa "%1" ei voitu avata. Asennuksen poisto ei onnistu.
|
||||||
UninstallUnsupportedVer=T�m� versio Asennuksen poisto-ohjelmasta ei pysty lukemaan lokitiedostoa "%1". Asennuksen poisto ei onnistu
|
UninstallUnsupportedVer=T�m� versio Asennuksen poisto-ohjelmasta ei pysty lukemaan lokitiedostoa "%1". Asennuksen poisto ei onnistu
|
||||||
UninstallUnknownEntry=Asennuksen poisto-ohjelman lokitiedostosta l�ytyi tuntematon merkint� (%1)
|
UninstallUnknownEntry=Asennuksen poisto-ohjelman lokitiedostosta l�ytyi tuntematon merkint� (%1)
|
||||||
ConfirmUninstall=Haluatko varmasti suorittaa %1 asennuksen poistoty�kalun?
|
ConfirmUninstall=Haluatko varmasti suorittaa %1 asennuksen poistoty�kalun?
|
||||||
UninstallOnlyOnWin64=T�m� ohjelma voidaan poistaa vain 64-bittisest� Windowsista k�sin.
|
UninstallOnlyOnWin64=T�m� ohjelma voidaan poistaa vain 64-bittisest� Windowsista k�sin.
|
||||||
OnlyAdminCanUninstall=T�m�n asennuksen poistaminen vaatii j�rjestelm�nvalvojan oikeudet.
|
OnlyAdminCanUninstall=T�m�n asennuksen poistaminen vaatii j�rjestelm�nvalvojan oikeudet.
|
||||||
UninstallStatusLabel=Odota, kun %1 poistetaan koneeltasi.
|
UninstallStatusLabel=Odota, kun %1 poistetaan koneeltasi.
|
||||||
UninstalledAll=%1 poistettiin onnistuneesti.
|
UninstalledAll=%1 poistettiin onnistuneesti.
|
||||||
UninstalledMost=%1 poistettiin koneelta.%n%nJoitakin osia ei voitu poistaa. Voit poistaa osat itse.
|
UninstalledMost=%1 poistettiin koneelta.%n%nJoitakin osia ei voitu poistaa. Voit poistaa osat itse.
|
||||||
UninstalledAndNeedsRestart=Kone t�ytyy k�ynnist�� uudelleen, jotta %1 voidaan poistaa kokonaan.%n%nHaluatko k�ynnist�� koneen uudeelleen nyt?
|
UninstalledAndNeedsRestart=Kone t�ytyy k�ynnist�� uudelleen, jotta %1 voidaan poistaa kokonaan.%n%nHaluatko k�ynnist�� koneen uudeelleen nyt?
|
||||||
UninstallDataCorrupted=Tiedosto "%1" on vaurioitunut. Asennuksen poisto ei onnistu.
|
UninstallDataCorrupted=Tiedosto "%1" on vaurioitunut. Asennuksen poisto ei onnistu.
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Poistetaanko jaettu tiedosto?
|
ConfirmDeleteSharedFileTitle=Poistetaanko jaettu tiedosto?
|
||||||
ConfirmDeleteSharedFile2=J�rjestelm�n mukaan seuraava jaettu tiedosto ei ole en�� mink��n muun sovelluksen k�yt�ss�. Poistetaanko tiedosto?%n%nJos jotkut sovellukset k�ytt�v�t viel� t�t� tiedostoa ja se poistetaan, ne eiv�t v�ltt�m�tt� toimi en�� kunnolla. Jos olet ep�varma, valitse Ei. Tiedoston j�tt�minen koneelle ei aiheuta ongelmia.
|
ConfirmDeleteSharedFile2=J�rjestelm�n mukaan seuraava jaettu tiedosto ei ole en�� mink��n muun sovelluksen k�yt�ss�. Poistetaanko tiedosto?%n%nJos jotkut sovellukset k�ytt�v�t viel� t�t� tiedostoa ja se poistetaan, ne eiv�t v�ltt�m�tt� toimi en�� kunnolla. Jos olet ep�varma, valitse Ei. Tiedoston j�tt�minen koneelle ei aiheuta ongelmia.
|
||||||
SharedFileNameLabel=Tiedoston nimi:
|
SharedFileNameLabel=Tiedoston nimi:
|
||||||
SharedFileLocationLabel=Sijainti:
|
SharedFileLocationLabel=Sijainti:
|
||||||
WizardUninstalling=Asennuksen poiston tila
|
WizardUninstalling=Asennuksen poiston tila
|
||||||
StatusUninstalling=Poistetaan %1...
|
StatusUninstalling=Poistetaan %1...
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 versio %2
|
NameAndVersion=%1 versio %2
|
||||||
AdditionalIcons=Lis�kuvakkeet:
|
AdditionalIcons=Lis�kuvakkeet:
|
||||||
CreateDesktopIcon=Lu&o kuvake ty�p�yd�lle
|
CreateDesktopIcon=Lu&o kuvake ty�p�yd�lle
|
||||||
CreateQuickLaunchIcon=Luo kuvake &pikak�ynnistyspalkkiin
|
CreateQuickLaunchIcon=Luo kuvake &pikak�ynnistyspalkkiin
|
||||||
ProgramOnTheWeb=%1 Internetiss�
|
ProgramOnTheWeb=%1 Internetiss�
|
||||||
UninstallProgram=Poista %1
|
UninstallProgram=Poista %1
|
||||||
LaunchProgram=&K�ynnist� %1
|
LaunchProgram=&K�ynnist� %1
|
||||||
AssocFileExtension=&Yhdist� %1 tiedostop��tteeseen %2
|
AssocFileExtension=&Yhdist� %1 tiedostop��tteeseen %2
|
||||||
AssocingFileExtension=Yhdistet��n %1 tiedostop��tteeseen %2 ...
|
AssocingFileExtension=Yhdistet��n %1 tiedostop��tteeseen %2 ...
|
||||||
AutoStartProgramGroupDescription=K�ynnistys:
|
AutoStartProgramGroupDescription=K�ynnistys:
|
||||||
AutoStartProgram=K�ynnist� %1 automaattisesti
|
AutoStartProgram=K�ynnist� %1 automaattisesti
|
||||||
AddonHostProgramNotFound=%1 ei ole valitsemassasi kansiossa.%n%nHaluatko jatkaa t�st� huolimatta?
|
AddonHostProgramNotFound=%1 ei ole valitsemassasi kansiossa.%n%nHaluatko jatkaa t�st� huolimatta?
|
||||||
|
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Valitse asennustila
|
SelectSetupInstallModeTitle=Valitse asennustila
|
||||||
SelectSetupInstallModeDesc=VCMI voidaan asentaa kaikille k�ytt�jille tai vain sinulle.
|
SelectSetupInstallModeDesc=VCMI voidaan asentaa kaikille k�ytt�jille tai vain sinulle.
|
||||||
SelectSetupInstallModeSubTitle=Valitse haluamasi asennustila:
|
SelectSetupInstallModeSubTitle=Valitse haluamasi asennustila:
|
||||||
InstallForAllUsers=Asenna kaikille k�ytt�jille
|
InstallForAllUsers=Asenna kaikille k�ytt�jille
|
||||||
InstallForAllUsers1=Vaatii j�rjestelm�nvalvojan oikeudet
|
InstallForAllUsers1=Vaatii j�rjestelm�nvalvojan oikeudet
|
||||||
InstallForMeOnly=Asenna vain minulle
|
InstallForMeOnly=Asenna vain minulle
|
||||||
InstallForMeOnly1=Palomuurikysely n�kyy, kun peli k�ynnistet��n ensimm�isen kerran.
|
InstallForMeOnly1=Palomuurikysely n�kyy, kun peli k�ynnistet��n ensimm�isen kerran.
|
||||||
InstallForMeOnly2=Varoitus: Jos palomuuris��nt�� ei voida sallia, l�hiverkkopelit eiv�t toimi.
|
InstallForMeOnly2=Varoitus: Jos palomuuris��nt�� ei voida sallia, l�hiverkkopelit eiv�t toimi.
|
||||||
CreateDesktopShortcuts=Luo ty�p�yt�kuvakkeet
|
CreateDesktopShortcuts=Luo ty�p�yt�kuvakkeet
|
||||||
ShortcutsOptions=Pikakuvakeasetukset
|
ShortcutsOptions=Pikakuvakeasetukset
|
||||||
CreateStartMenuShortcuts=Luo K�ynnist�-valikon pikakuvakkeet
|
CreateStartMenuShortcuts=Luo K�ynnist�-valikon pikakuvakkeet
|
||||||
FirewallOptions=Palomuuriasetukset
|
FirewallOptions=Palomuuriasetukset
|
||||||
AddFirewallRules=Lis�� VCMI:lle palomuuris��nn�t
|
AddFirewallRules=Lis�� VCMI:lle palomuuris��nn�t
|
||||||
FileAssociations=Tiedostoyhdistelm�t
|
FileAssociations=Tiedostoyhdistelm�t
|
||||||
AssociateH3MFiles=Liit� .h3m-tiedostot VCMI-karttaeditoriin
|
AssociateH3MFiles=Liit� .h3m-tiedostot VCMI-karttaeditoriin
|
||||||
AssociateVMapFiles=Liit� .vmap-tiedostot VCMI-karttaeditoriin
|
AssociateVMapFiles=Liit� .vmap-tiedostot VCMI-karttaeditoriin
|
||||||
RunVCMILauncherAfterInstall=K�ynnist� VCMI Launcher
|
RunVCMILauncherAfterInstall=K�ynnist� VCMI Launcher
|
||||||
ShortcutMapEditor=VCMI-karttaeditori
|
ShortcutMapEditor=VCMI-karttaeditori
|
||||||
ShortcutLauncher=VCMI Launcher
|
ShortcutLauncher=VCMI Launcher
|
||||||
ShortcutWebPage=VCMI-verkkosivusto
|
ShortcutWebPage=VCMI-verkkosivusto
|
||||||
ShortcutDiscord=VCMI Discord
|
ShortcutDiscord=VCMI Discord
|
||||||
ShortcutLauncherComment=K�ynnist� VCMI Launcher
|
ShortcutLauncherComment=K�ynnist� VCMI Launcher
|
||||||
ShortcutMapEditorComment=Avaa VCMI-karttaeditori
|
ShortcutMapEditorComment=Avaa VCMI-karttaeditori
|
||||||
ShortcutWebPageComment=Vieraile virallisella VCMI-verkkosivustolla
|
ShortcutWebPageComment=Vieraile virallisella VCMI-verkkosivustolla
|
||||||
ShortcutDiscordComment=Vieraile virallisella VCMI Discord-palvelimella
|
ShortcutDiscordComment=Vieraile virallisella VCMI Discord-palvelimella
|
||||||
DeleteUserData=Poista k�ytt�j�tiedot
|
DeleteUserData=Poista k�ytt�j�tiedot
|
||||||
Uninstall=Poista asennus
|
Uninstall=Poista asennus
|
||||||
VMAPDescription=VCMI-karttatiedosto
|
VMAPDescription=VCMI-karttatiedosto
|
||||||
H3MDescription=Heroes 3 -karttatiedosto
|
H3MDescription=Heroes 3 -karttatiedosto
|
@@ -1,434 +1,434 @@
|
|||||||
; *** Inno Setup version 6.1.0+ French messages ***
|
; *** Inno Setup version 6.1.0+ French messages ***
|
||||||
;
|
;
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
;
|
;
|
||||||
; Maintained by Pierre Yager (pierre@levosgien.net)
|
; Maintained by Pierre Yager (pierre@levosgien.net)
|
||||||
;
|
;
|
||||||
; Contributors : Frédéric Bonduelle, Francis Pallini, Lumina, Pascal Peyrot
|
; Contributors : Frédéric Bonduelle, Francis Pallini, Lumina, Pascal Peyrot
|
||||||
;
|
;
|
||||||
; Changes :
|
; Changes :
|
||||||
; + Accents on uppercase letters
|
; + Accents on uppercase letters
|
||||||
; http://www.academie-francaise.fr/langue/questions.html#accentuation (lumina)
|
; http://www.academie-francaise.fr/langue/questions.html#accentuation (lumina)
|
||||||
; + Typography quotes [see ISBN: 978-2-7433-0482-9]
|
; + Typography quotes [see ISBN: 978-2-7433-0482-9]
|
||||||
; http://fr.wikipedia.org/wiki/Guillemet (lumina)
|
; http://fr.wikipedia.org/wiki/Guillemet (lumina)
|
||||||
; + Binary units (Kio, Mio) [IEC 80000-13:2008]
|
; + Binary units (Kio, Mio) [IEC 80000-13:2008]
|
||||||
; http://fr.wikipedia.org/wiki/Octet (lumina)
|
; http://fr.wikipedia.org/wiki/Octet (lumina)
|
||||||
; + Reverted to standard units (Ko, Mo) to follow Windows Explorer Standard
|
; + Reverted to standard units (Ko, Mo) to follow Windows Explorer Standard
|
||||||
; http://blogs.msdn.com/b/oldnewthing/archive/2009/06/11/9725386.aspx
|
; http://blogs.msdn.com/b/oldnewthing/archive/2009/06/11/9725386.aspx
|
||||||
; + Use more standard verbs for click and retry
|
; + Use more standard verbs for click and retry
|
||||||
; "click": "Clicker" instead of "Appuyer"
|
; "click": "Clicker" instead of "Appuyer"
|
||||||
; "retry": "Recommencer" au lieu de "Réessayer"
|
; "retry": "Recommencer" au lieu de "Réessayer"
|
||||||
; + Added new 6.0.0 messages
|
; + Added new 6.0.0 messages
|
||||||
; + Added new 6.1.0 messages
|
; + Added new 6.1.0 messages
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=Français
|
LanguageName=Français
|
||||||
LanguageID=$040C
|
LanguageID=$040C
|
||||||
LanguageCodePage=1252
|
LanguageCodePage=1252
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Installation
|
SetupAppTitle=Installation
|
||||||
SetupWindowTitle=Installation - %1
|
SetupWindowTitle=Installation - %1
|
||||||
UninstallAppTitle=Désinstallation
|
UninstallAppTitle=Désinstallation
|
||||||
UninstallAppFullTitle=Désinstallation - %1
|
UninstallAppFullTitle=Désinstallation - %1
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Information
|
InformationTitle=Information
|
||||||
ConfirmTitle=Confirmation
|
ConfirmTitle=Confirmation
|
||||||
ErrorTitle=Erreur
|
ErrorTitle=Erreur
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=Cet assistant va installer %1. Voulez-vous continuer ?
|
SetupLdrStartupMessage=Cet assistant va installer %1. Voulez-vous continuer ?
|
||||||
LdrCannotCreateTemp=Impossible de créer un fichier temporaire. Abandon de l'installation
|
LdrCannotCreateTemp=Impossible de créer un fichier temporaire. Abandon de l'installation
|
||||||
LdrCannotExecTemp=Impossible d'exécuter un fichier depuis le dossier temporaire. Abandon de l'installation
|
LdrCannotExecTemp=Impossible d'exécuter un fichier depuis le dossier temporaire. Abandon de l'installation
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nErreur %2 : %3
|
LastErrorMessage=%1.%n%nErreur %2 : %3
|
||||||
SetupFileMissing=Le fichier %1 est absent du dossier d'installation. Veuillez corriger le problème ou vous procurer une nouvelle copie du programme.
|
SetupFileMissing=Le fichier %1 est absent du dossier d'installation. Veuillez corriger le problème ou vous procurer une nouvelle copie du programme.
|
||||||
SetupFileCorrupt=Les fichiers d'installation sont altérés. Veuillez vous procurer une nouvelle copie du programme.
|
SetupFileCorrupt=Les fichiers d'installation sont altérés. Veuillez vous procurer une nouvelle copie du programme.
|
||||||
SetupFileCorruptOrWrongVer=Les fichiers d'installation sont altérés ou ne sont pas compatibles avec cette version de l'assistant d'installation. Veuillez corriger le problème ou vous procurer une nouvelle copie du programme.
|
SetupFileCorruptOrWrongVer=Les fichiers d'installation sont altérés ou ne sont pas compatibles avec cette version de l'assistant d'installation. Veuillez corriger le problème ou vous procurer une nouvelle copie du programme.
|
||||||
InvalidParameter=Un paramètre non valide a été passé à la ligne de commande :%n%n%1
|
InvalidParameter=Un paramètre non valide a été passé à la ligne de commande :%n%n%1
|
||||||
SetupAlreadyRunning=L'assistant d'installation est déjà en cours d'exécution.
|
SetupAlreadyRunning=L'assistant d'installation est déjà en cours d'exécution.
|
||||||
WindowsVersionNotSupported=Ce programme n'est pas prévu pour fonctionner avec la version de Windows utilisée sur votre ordinateur.
|
WindowsVersionNotSupported=Ce programme n'est pas prévu pour fonctionner avec la version de Windows utilisée sur votre ordinateur.
|
||||||
WindowsServicePackRequired=Ce programme a besoin de %1 Service Pack %2 ou d'une version plus récente.
|
WindowsServicePackRequired=Ce programme a besoin de %1 Service Pack %2 ou d'une version plus récente.
|
||||||
NotOnThisPlatform=Ce programme ne fonctionne pas sous %1.
|
NotOnThisPlatform=Ce programme ne fonctionne pas sous %1.
|
||||||
OnlyOnThisPlatform=Ce programme ne peut fonctionner que sous %1.
|
OnlyOnThisPlatform=Ce programme ne peut fonctionner que sous %1.
|
||||||
OnlyOnTheseArchitectures=Ce programme ne peut être installé que sur des versions de Windows qui supportent ces architectures : %n%n%1
|
OnlyOnTheseArchitectures=Ce programme ne peut être installé que sur des versions de Windows qui supportent ces architectures : %n%n%1
|
||||||
WinVersionTooLowError=Ce programme requiert la version %2 ou supérieure de %1.
|
WinVersionTooLowError=Ce programme requiert la version %2 ou supérieure de %1.
|
||||||
WinVersionTooHighError=Ce programme ne peut pas être installé sous %1 version %2 ou supérieure.
|
WinVersionTooHighError=Ce programme ne peut pas être installé sous %1 version %2 ou supérieure.
|
||||||
AdminPrivilegesRequired=Vous devez disposer des droits d'administration de cet ordinateur pour installer ce programme.
|
AdminPrivilegesRequired=Vous devez disposer des droits d'administration de cet ordinateur pour installer ce programme.
|
||||||
PowerUserPrivilegesRequired=Vous devez disposer des droits d'administration ou faire partie du groupe « Utilisateurs avec pouvoir » de cet ordinateur pour installer ce programme.
|
PowerUserPrivilegesRequired=Vous devez disposer des droits d'administration ou faire partie du groupe « Utilisateurs avec pouvoir » de cet ordinateur pour installer ce programme.
|
||||||
SetupAppRunningError=L'assistant d'installation a détecté que %1 est actuellement en cours d'exécution.%n%nVeuillez fermer toutes les instances de cette application puis cliquer sur OK pour continuer, ou bien cliquer sur Annuler pour abandonner l'installation.
|
SetupAppRunningError=L'assistant d'installation a détecté que %1 est actuellement en cours d'exécution.%n%nVeuillez fermer toutes les instances de cette application puis cliquer sur OK pour continuer, ou bien cliquer sur Annuler pour abandonner l'installation.
|
||||||
UninstallAppRunningError=La procédure de désinstallation a détecté que %1 est actuellement en cours d'exécution.%n%nVeuillez fermer toutes les instances de cette application puis cliquer sur OK pour continuer, ou bien cliquer sur Annuler pour abandonner la désinstallation.
|
UninstallAppRunningError=La procédure de désinstallation a détecté que %1 est actuellement en cours d'exécution.%n%nVeuillez fermer toutes les instances de cette application puis cliquer sur OK pour continuer, ou bien cliquer sur Annuler pour abandonner la désinstallation.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Choix du Mode d'Installation
|
PrivilegesRequiredOverrideTitle=Choix du Mode d'Installation
|
||||||
PrivilegesRequiredOverrideInstruction=Choisissez le mode d'installation
|
PrivilegesRequiredOverrideInstruction=Choisissez le mode d'installation
|
||||||
PrivilegesRequiredOverrideText1=%1 peut être installé pour tous les utilisateurs (nécessite des privilèges administrateur), ou seulement pour vous.
|
PrivilegesRequiredOverrideText1=%1 peut être installé pour tous les utilisateurs (nécessite des privilèges administrateur), ou seulement pour vous.
|
||||||
PrivilegesRequiredOverrideText2=%1 peut-être installé seulement pour vous, ou pour tous les utilisateurs (nécessite des privilèges administrateur).
|
PrivilegesRequiredOverrideText2=%1 peut-être installé seulement pour vous, ou pour tous les utilisateurs (nécessite des privilèges administrateur).
|
||||||
PrivilegesRequiredOverrideAllUsers=Installer pour &tous les utilisateurs
|
PrivilegesRequiredOverrideAllUsers=Installer pour &tous les utilisateurs
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Installer pour &tous les utilisateurs (recommandé)
|
PrivilegesRequiredOverrideAllUsersRecommended=Installer pour &tous les utilisateurs (recommandé)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Installer seulement pour &moi
|
PrivilegesRequiredOverrideCurrentUser=Installer seulement pour &moi
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Installer seulement pour &moi (recommandé)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Installer seulement pour &moi (recommandé)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=L'assistant d'installation n'a pas pu créer le dossier "%1"
|
ErrorCreatingDir=L'assistant d'installation n'a pas pu créer le dossier "%1"
|
||||||
ErrorTooManyFilesInDir=L'assistant d'installation n'a pas pu créer un fichier dans le dossier "%1" car celui-ci contient trop de fichiers
|
ErrorTooManyFilesInDir=L'assistant d'installation n'a pas pu créer un fichier dans le dossier "%1" car celui-ci contient trop de fichiers
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Quitter l'installation
|
ExitSetupTitle=Quitter l'installation
|
||||||
ExitSetupMessage=L'installation n'est pas terminée. Si vous abandonnez maintenant, le programme ne sera pas installé.%n%nVous devrez relancer cet assistant pour finir l'installation.%n%nVoulez-vous quand même quitter l'assistant d'installation ?
|
ExitSetupMessage=L'installation n'est pas terminée. Si vous abandonnez maintenant, le programme ne sera pas installé.%n%nVous devrez relancer cet assistant pour finir l'installation.%n%nVoulez-vous quand même quitter l'assistant d'installation ?
|
||||||
AboutSetupMenuItem=À &propos...
|
AboutSetupMenuItem=À &propos...
|
||||||
AboutSetupTitle=À Propos de l'assistant d'installation
|
AboutSetupTitle=À Propos de l'assistant d'installation
|
||||||
AboutSetupMessage=%1 version %2%n%3%n%nPage d'accueil de %1 :%n%4
|
AboutSetupMessage=%1 version %2%n%3%n%nPage d'accueil de %1 :%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Traduction française maintenue par Pierre Yager (pierre@levosgien.net)
|
TranslatorNote=Traduction française maintenue par Pierre Yager (pierre@levosgien.net)
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Précédent
|
ButtonBack=< &Précédent
|
||||||
ButtonNext=&Suivant >
|
ButtonNext=&Suivant >
|
||||||
ButtonInstall=&Installer
|
ButtonInstall=&Installer
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Annuler
|
ButtonCancel=Annuler
|
||||||
ButtonYes=&Oui
|
ButtonYes=&Oui
|
||||||
ButtonYesToAll=Oui pour &tout
|
ButtonYesToAll=Oui pour &tout
|
||||||
ButtonNo=&Non
|
ButtonNo=&Non
|
||||||
ButtonNoToAll=N&on pour tout
|
ButtonNoToAll=N&on pour tout
|
||||||
ButtonFinish=&Terminer
|
ButtonFinish=&Terminer
|
||||||
ButtonBrowse=Pa&rcourir...
|
ButtonBrowse=Pa&rcourir...
|
||||||
ButtonWizardBrowse=Pa&rcourir...
|
ButtonWizardBrowse=Pa&rcourir...
|
||||||
ButtonNewFolder=Nouveau &dossier
|
ButtonNewFolder=Nouveau &dossier
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Langue de l'assistant d'installation
|
SelectLanguageTitle=Langue de l'assistant d'installation
|
||||||
SelectLanguageLabel=Veuillez sélectionner la langue qui sera utilisée par l'assistant d'installation.
|
SelectLanguageLabel=Veuillez sélectionner la langue qui sera utilisée par l'assistant d'installation.
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=Cliquez sur Suivant pour continuer ou sur Annuler pour abandonner l'installation.
|
ClickNext=Cliquez sur Suivant pour continuer ou sur Annuler pour abandonner l'installation.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Parcourir les dossiers
|
BrowseDialogTitle=Parcourir les dossiers
|
||||||
BrowseDialogLabel=Veuillez choisir un dossier de destination, puis cliquez sur OK.
|
BrowseDialogLabel=Veuillez choisir un dossier de destination, puis cliquez sur OK.
|
||||||
NewFolderName=Nouveau dossier
|
NewFolderName=Nouveau dossier
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Bienvenue dans l'assistant d'installation de [name]
|
WelcomeLabel1=Bienvenue dans l'assistant d'installation de [name]
|
||||||
WelcomeLabel2=Cet assistant va vous guider dans l'installation de [name/ver] sur votre ordinateur.%n%nIl est recommandé de fermer toutes les applications actives avant de continuer.
|
WelcomeLabel2=Cet assistant va vous guider dans l'installation de [name/ver] sur votre ordinateur.%n%nIl est recommandé de fermer toutes les applications actives avant de continuer.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Mot de passe
|
WizardPassword=Mot de passe
|
||||||
PasswordLabel1=Cette installation est protégée par un mot de passe.
|
PasswordLabel1=Cette installation est protégée par un mot de passe.
|
||||||
PasswordLabel3=Veuillez saisir le mot de passe (attention à la distinction entre majuscules et minuscules) puis cliquez sur Suivant pour continuer.
|
PasswordLabel3=Veuillez saisir le mot de passe (attention à la distinction entre majuscules et minuscules) puis cliquez sur Suivant pour continuer.
|
||||||
PasswordEditLabel=&Mot de passe :
|
PasswordEditLabel=&Mot de passe :
|
||||||
IncorrectPassword=Le mot de passe saisi n'est pas valide. Veuillez essayer à nouveau.
|
IncorrectPassword=Le mot de passe saisi n'est pas valide. Veuillez essayer à nouveau.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=Accord de licence
|
WizardLicense=Accord de licence
|
||||||
LicenseLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
|
LicenseLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
|
||||||
LicenseLabel3=Veuillez lire le contrat de licence suivant. Vous devez en accepter tous les termes avant de continuer l'installation.
|
LicenseLabel3=Veuillez lire le contrat de licence suivant. Vous devez en accepter tous les termes avant de continuer l'installation.
|
||||||
LicenseAccepted=Je comprends et j'&accepte les termes du contrat de licence
|
LicenseAccepted=Je comprends et j'&accepte les termes du contrat de licence
|
||||||
LicenseNotAccepted=Je &refuse les termes du contrat de licence
|
LicenseNotAccepted=Je &refuse les termes du contrat de licence
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Information
|
WizardInfoBefore=Information
|
||||||
InfoBeforeLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
|
InfoBeforeLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
|
||||||
InfoBeforeClickLabel=Lorsque vous êtes prêt à continuer, cliquez sur Suivant.
|
InfoBeforeClickLabel=Lorsque vous êtes prêt à continuer, cliquez sur Suivant.
|
||||||
WizardInfoAfter=Information
|
WizardInfoAfter=Information
|
||||||
InfoAfterLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
|
InfoAfterLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
|
||||||
InfoAfterClickLabel=Lorsque vous êtes prêt à continuer, cliquez sur Suivant.
|
InfoAfterClickLabel=Lorsque vous êtes prêt à continuer, cliquez sur Suivant.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=Informations sur l'Utilisateur
|
WizardUserInfo=Informations sur l'Utilisateur
|
||||||
UserInfoDesc=Veuillez saisir les informations qui vous concernent.
|
UserInfoDesc=Veuillez saisir les informations qui vous concernent.
|
||||||
UserInfoName=&Nom d'utilisateur :
|
UserInfoName=&Nom d'utilisateur :
|
||||||
UserInfoOrg=&Organisation :
|
UserInfoOrg=&Organisation :
|
||||||
UserInfoSerial=Numéro de &série :
|
UserInfoSerial=Numéro de &série :
|
||||||
UserInfoNameRequired=Vous devez au moins saisir un nom.
|
UserInfoNameRequired=Vous devez au moins saisir un nom.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Dossier de destination
|
WizardSelectDir=Dossier de destination
|
||||||
SelectDirDesc=Où [name] doit-il être installé ?
|
SelectDirDesc=Où [name] doit-il être installé ?
|
||||||
SelectDirLabel3=L'assistant va installer [name] dans le dossier suivant.
|
SelectDirLabel3=L'assistant va installer [name] dans le dossier suivant.
|
||||||
SelectDirBrowseLabel=Pour continuer, cliquez sur Suivant. Si vous souhaitez choisir un dossier différent, cliquez sur Parcourir.
|
SelectDirBrowseLabel=Pour continuer, cliquez sur Suivant. Si vous souhaitez choisir un dossier différent, cliquez sur Parcourir.
|
||||||
DiskSpaceGBLabel=Le programme requiert au moins [gb] Go d'espace disque disponible.
|
DiskSpaceGBLabel=Le programme requiert au moins [gb] Go d'espace disque disponible.
|
||||||
DiskSpaceMBLabel=Le programme requiert au moins [mb] Mo d'espace disque disponible.
|
DiskSpaceMBLabel=Le programme requiert au moins [mb] Mo d'espace disque disponible.
|
||||||
CannotInstallToNetworkDrive=L'assistant ne peut pas installer sur un disque réseau.
|
CannotInstallToNetworkDrive=L'assistant ne peut pas installer sur un disque réseau.
|
||||||
CannotInstallToUNCPath=L'assistant ne peut pas installer sur un chemin UNC.
|
CannotInstallToUNCPath=L'assistant ne peut pas installer sur un chemin UNC.
|
||||||
InvalidPath=Vous devez saisir un chemin complet avec sa lettre de lecteur ; par exemple :%n%nC:\APP%n%nou un chemin réseau de la forme :%n%n\\serveur\partage
|
InvalidPath=Vous devez saisir un chemin complet avec sa lettre de lecteur ; par exemple :%n%nC:\APP%n%nou un chemin réseau de la forme :%n%n\\serveur\partage
|
||||||
InvalidDrive=L'unité ou l'emplacement réseau que vous avez sélectionné n'existe pas ou n'est pas accessible. Veuillez choisir une autre destination.
|
InvalidDrive=L'unité ou l'emplacement réseau que vous avez sélectionné n'existe pas ou n'est pas accessible. Veuillez choisir une autre destination.
|
||||||
DiskSpaceWarningTitle=Espace disponible insuffisant
|
DiskSpaceWarningTitle=Espace disponible insuffisant
|
||||||
DiskSpaceWarning=L'assistant a besoin d'au moins %1 Ko d'espace disponible pour effectuer l'installation, mais l'unité que vous avez sélectionnée ne dispose que de %2 Ko d'espace disponible.%n%nSouhaitez-vous continuer malgré tout ?
|
DiskSpaceWarning=L'assistant a besoin d'au moins %1 Ko d'espace disponible pour effectuer l'installation, mais l'unité que vous avez sélectionnée ne dispose que de %2 Ko d'espace disponible.%n%nSouhaitez-vous continuer malgré tout ?
|
||||||
DirNameTooLong=Le nom ou le chemin du dossier est trop long.
|
DirNameTooLong=Le nom ou le chemin du dossier est trop long.
|
||||||
InvalidDirName=Le nom du dossier est invalide.
|
InvalidDirName=Le nom du dossier est invalide.
|
||||||
BadDirName32=Le nom du dossier ne doit contenir aucun des caractères suivants :%n%n%1
|
BadDirName32=Le nom du dossier ne doit contenir aucun des caractères suivants :%n%n%1
|
||||||
DirExistsTitle=Dossier existant
|
DirExistsTitle=Dossier existant
|
||||||
DirExists=Le dossier :%n%n%1%n%nexiste déjà. Souhaitez-vous installer dans ce dossier malgré tout ?
|
DirExists=Le dossier :%n%n%1%n%nexiste déjà. Souhaitez-vous installer dans ce dossier malgré tout ?
|
||||||
DirDoesntExistTitle=Le dossier n'existe pas
|
DirDoesntExistTitle=Le dossier n'existe pas
|
||||||
DirDoesntExist=Le dossier %n%n%1%n%nn'existe pas. Souhaitez-vous que ce dossier soit créé ?
|
DirDoesntExist=Le dossier %n%n%1%n%nn'existe pas. Souhaitez-vous que ce dossier soit créé ?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Composants à installer
|
WizardSelectComponents=Composants à installer
|
||||||
SelectComponentsDesc=Quels composants de l'application souhaitez-vous installer ?
|
SelectComponentsDesc=Quels composants de l'application souhaitez-vous installer ?
|
||||||
SelectComponentsLabel2=Sélectionnez les composants que vous désirez installer ; décochez les composants que vous ne désirez pas installer. Cliquez ensuite sur Suivant pour continuer l'installation.
|
SelectComponentsLabel2=Sélectionnez les composants que vous désirez installer ; décochez les composants que vous ne désirez pas installer. Cliquez ensuite sur Suivant pour continuer l'installation.
|
||||||
FullInstallation=Installation complète
|
FullInstallation=Installation complète
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Installation compacte
|
CompactInstallation=Installation compacte
|
||||||
CustomInstallation=Installation personnalisée
|
CustomInstallation=Installation personnalisée
|
||||||
NoUninstallWarningTitle=Composants existants
|
NoUninstallWarningTitle=Composants existants
|
||||||
NoUninstallWarning=L'assistant d'installation a détecté que les composants suivants sont déjà installés sur votre système :%n%n%1%n%nDésélectionner ces composants ne les désinstallera pas pour autant.%n%nVoulez-vous continuer malgré tout ?
|
NoUninstallWarning=L'assistant d'installation a détecté que les composants suivants sont déjà installés sur votre système :%n%n%1%n%nDésélectionner ces composants ne les désinstallera pas pour autant.%n%nVoulez-vous continuer malgré tout ?
|
||||||
ComponentSize1=%1 Ko
|
ComponentSize1=%1 Ko
|
||||||
ComponentSize2=%1 Mo
|
ComponentSize2=%1 Mo
|
||||||
ComponentsDiskSpaceGBLabel=Les composants sélectionnés nécessitent au moins [gb] Go d'espace disponible.
|
ComponentsDiskSpaceGBLabel=Les composants sélectionnés nécessitent au moins [gb] Go d'espace disponible.
|
||||||
ComponentsDiskSpaceMBLabel=Les composants sélectionnés nécessitent au moins [mb] Mo d'espace disponible.
|
ComponentsDiskSpaceMBLabel=Les composants sélectionnés nécessitent au moins [mb] Mo d'espace disponible.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Tâches supplémentaires
|
WizardSelectTasks=Tâches supplémentaires
|
||||||
SelectTasksDesc=Quelles sont les tâches supplémentaires qui doivent être effectuées ?
|
SelectTasksDesc=Quelles sont les tâches supplémentaires qui doivent être effectuées ?
|
||||||
SelectTasksLabel2=Sélectionnez les tâches supplémentaires que l'assistant d'installation doit effectuer pendant l'installation de [name], puis cliquez sur Suivant.
|
SelectTasksLabel2=Sélectionnez les tâches supplémentaires que l'assistant d'installation doit effectuer pendant l'installation de [name], puis cliquez sur Suivant.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Sélection du dossier du menu Démarrer
|
WizardSelectProgramGroup=Sélection du dossier du menu Démarrer
|
||||||
SelectStartMenuFolderDesc=Où l'assistant d'installation doit-il placer les raccourcis du programme ?
|
SelectStartMenuFolderDesc=Où l'assistant d'installation doit-il placer les raccourcis du programme ?
|
||||||
SelectStartMenuFolderLabel3=L'assistant va créer les raccourcis du programme dans le dossier du menu Démarrer indiqué ci-dessous.
|
SelectStartMenuFolderLabel3=L'assistant va créer les raccourcis du programme dans le dossier du menu Démarrer indiqué ci-dessous.
|
||||||
SelectStartMenuFolderBrowseLabel=Cliquez sur Suivant pour continuer. Cliquez sur Parcourir si vous souhaitez sélectionner un autre dossier du menu Démarrer.
|
SelectStartMenuFolderBrowseLabel=Cliquez sur Suivant pour continuer. Cliquez sur Parcourir si vous souhaitez sélectionner un autre dossier du menu Démarrer.
|
||||||
MustEnterGroupName=Vous devez saisir un nom de dossier du menu Démarrer.
|
MustEnterGroupName=Vous devez saisir un nom de dossier du menu Démarrer.
|
||||||
GroupNameTooLong=Le nom ou le chemin du dossier est trop long.
|
GroupNameTooLong=Le nom ou le chemin du dossier est trop long.
|
||||||
InvalidGroupName=Le nom du dossier n'est pas valide.
|
InvalidGroupName=Le nom du dossier n'est pas valide.
|
||||||
BadGroupName=Le nom du dossier ne doit contenir aucun des caractères suivants :%n%n%1
|
BadGroupName=Le nom du dossier ne doit contenir aucun des caractères suivants :%n%n%1
|
||||||
NoProgramGroupCheck2=Ne pas créer de &dossier dans le menu Démarrer
|
NoProgramGroupCheck2=Ne pas créer de &dossier dans le menu Démarrer
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Prêt à installer
|
WizardReady=Prêt à installer
|
||||||
ReadyLabel1=L'assistant dispose à présent de toutes les informations pour installer [name] sur votre ordinateur.
|
ReadyLabel1=L'assistant dispose à présent de toutes les informations pour installer [name] sur votre ordinateur.
|
||||||
ReadyLabel2a=Cliquez sur Installer pour procéder à l'installation ou sur Précédent pour revoir ou modifier une option d'installation.
|
ReadyLabel2a=Cliquez sur Installer pour procéder à l'installation ou sur Précédent pour revoir ou modifier une option d'installation.
|
||||||
ReadyLabel2b=Cliquez sur Installer pour procéder à l'installation.
|
ReadyLabel2b=Cliquez sur Installer pour procéder à l'installation.
|
||||||
ReadyMemoUserInfo=Informations sur l'utilisateur :
|
ReadyMemoUserInfo=Informations sur l'utilisateur :
|
||||||
ReadyMemoDir=Dossier de destination :
|
ReadyMemoDir=Dossier de destination :
|
||||||
ReadyMemoType=Type d'installation :
|
ReadyMemoType=Type d'installation :
|
||||||
ReadyMemoComponents=Composants sélectionnés :
|
ReadyMemoComponents=Composants sélectionnés :
|
||||||
ReadyMemoGroup=Dossier du menu Démarrer :
|
ReadyMemoGroup=Dossier du menu Démarrer :
|
||||||
ReadyMemoTasks=Tâches supplémentaires :
|
ReadyMemoTasks=Tâches supplémentaires :
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Téléchargement de fichiers supplémentaires...
|
DownloadingLabel=Téléchargement de fichiers supplémentaires...
|
||||||
ButtonStopDownload=&Arrêter le téléchargement
|
ButtonStopDownload=&Arrêter le téléchargement
|
||||||
StopDownload=Êtes-vous sûr de vouloir arrêter le téléchargement ?
|
StopDownload=Êtes-vous sûr de vouloir arrêter le téléchargement ?
|
||||||
ErrorDownloadAborted=Téléchargement annulé
|
ErrorDownloadAborted=Téléchargement annulé
|
||||||
ErrorDownloadFailed=Le téléchargement a échoué : %1 %2
|
ErrorDownloadFailed=Le téléchargement a échoué : %1 %2
|
||||||
ErrorDownloadSizeFailed=La récupération de la taille du fichier a échouée : %1 %2
|
ErrorDownloadSizeFailed=La récupération de la taille du fichier a échouée : %1 %2
|
||||||
ErrorFileHash1=Le calcul de l'empreinte du fichier a échoué : %1
|
ErrorFileHash1=Le calcul de l'empreinte du fichier a échoué : %1
|
||||||
ErrorFileHash2=Empreinte du fichier invalide : attendue %1, trouvée %2
|
ErrorFileHash2=Empreinte du fichier invalide : attendue %1, trouvée %2
|
||||||
ErrorProgress=Progression invalide : %1 sur %2
|
ErrorProgress=Progression invalide : %1 sur %2
|
||||||
ErrorFileSize=Taille du fichier invalide : attendue %1, trouvée %2
|
ErrorFileSize=Taille du fichier invalide : attendue %1, trouvée %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Préparation de l'installation
|
WizardPreparing=Préparation de l'installation
|
||||||
PreparingDesc=L'assistant d'installation prépare l'installation de [name] sur votre ordinateur.
|
PreparingDesc=L'assistant d'installation prépare l'installation de [name] sur votre ordinateur.
|
||||||
PreviousInstallNotCompleted=L'installation ou la suppression d'un programme précédent n'est pas totalement achevée. Veuillez redémarrer votre ordinateur pour achever cette installation ou suppression.%n%nUne fois votre ordinateur redémarré, veuillez relancer cet assistant pour reprendre l'installation de [name].
|
PreviousInstallNotCompleted=L'installation ou la suppression d'un programme précédent n'est pas totalement achevée. Veuillez redémarrer votre ordinateur pour achever cette installation ou suppression.%n%nUne fois votre ordinateur redémarré, veuillez relancer cet assistant pour reprendre l'installation de [name].
|
||||||
CannotContinue=L'assistant ne peut pas continuer. Veuillez cliquer sur Annuler pour abandonner l'installation.
|
CannotContinue=L'assistant ne peut pas continuer. Veuillez cliquer sur Annuler pour abandonner l'installation.
|
||||||
ApplicationsFound=Les applications suivantes utilisent des fichiers qui doivent être mis à jour par l'assistant. Il est recommandé d'autoriser l'assistant à fermer ces applications automatiquement.
|
ApplicationsFound=Les applications suivantes utilisent des fichiers qui doivent être mis à jour par l'assistant. Il est recommandé d'autoriser l'assistant à fermer ces applications automatiquement.
|
||||||
ApplicationsFound2=Les applications suivantes utilisent des fichiers qui doivent être mis à jour par l'assistant. Il est recommandé d'autoriser l'assistant à fermer ces applications automatiquement. Une fois l'installation terminée, l'assistant essaiera de relancer ces applications.
|
ApplicationsFound2=Les applications suivantes utilisent des fichiers qui doivent être mis à jour par l'assistant. Il est recommandé d'autoriser l'assistant à fermer ces applications automatiquement. Une fois l'installation terminée, l'assistant essaiera de relancer ces applications.
|
||||||
CloseApplications=&Arrêter les applications automatiquement
|
CloseApplications=&Arrêter les applications automatiquement
|
||||||
DontCloseApplications=&Ne pas arrêter les applications
|
DontCloseApplications=&Ne pas arrêter les applications
|
||||||
ErrorCloseApplications=L'assistant d'installation n'a pas pu arrêter toutes les applications automatiquement. Nous vous recommandons de fermer toutes les applications qui utilisent des fichiers devant être mis à jour par l'assistant d'installation avant de continuer.
|
ErrorCloseApplications=L'assistant d'installation n'a pas pu arrêter toutes les applications automatiquement. Nous vous recommandons de fermer toutes les applications qui utilisent des fichiers devant être mis à jour par l'assistant d'installation avant de continuer.
|
||||||
PrepareToInstallNeedsRestart=L'assistant d'installation doit redémarrer votre ordinateur. Une fois votre ordinateur redémarré, veuillez relancer cet assistant d'installation pour terminer l'installation de [name].%n%nVoulez-vous redémarrer votre ordinateur maintenant ?
|
PrepareToInstallNeedsRestart=L'assistant d'installation doit redémarrer votre ordinateur. Une fois votre ordinateur redémarré, veuillez relancer cet assistant d'installation pour terminer l'installation de [name].%n%nVoulez-vous redémarrer votre ordinateur maintenant ?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Installation en cours
|
WizardInstalling=Installation en cours
|
||||||
InstallingLabel=Veuillez patienter pendant que l'assistant installe [name] sur votre ordinateur.
|
InstallingLabel=Veuillez patienter pendant que l'assistant installe [name] sur votre ordinateur.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=Fin de l'installation de [name]
|
FinishedHeadingLabel=Fin de l'installation de [name]
|
||||||
FinishedLabelNoIcons=L'assistant a terminé l'installation de [name] sur votre ordinateur.
|
FinishedLabelNoIcons=L'assistant a terminé l'installation de [name] sur votre ordinateur.
|
||||||
FinishedLabel=L'assistant a terminé l'installation de [name] sur votre ordinateur. L'application peut être lancée à l'aide des icônes créées sur le Bureau par l'installation.
|
FinishedLabel=L'assistant a terminé l'installation de [name] sur votre ordinateur. L'application peut être lancée à l'aide des icônes créées sur le Bureau par l'installation.
|
||||||
ClickFinish=Veuillez cliquer sur Terminer pour quitter l'assistant d'installation.
|
ClickFinish=Veuillez cliquer sur Terminer pour quitter l'assistant d'installation.
|
||||||
FinishedRestartLabel=L'assistant doit redémarrer votre ordinateur pour terminer l'installation de [name].%n%nVoulez-vous redémarrer maintenant ?
|
FinishedRestartLabel=L'assistant doit redémarrer votre ordinateur pour terminer l'installation de [name].%n%nVoulez-vous redémarrer maintenant ?
|
||||||
FinishedRestartMessage=L'assistant doit redémarrer votre ordinateur pour terminer l'installation de [name].%n%nVoulez-vous redémarrer maintenant ?
|
FinishedRestartMessage=L'assistant doit redémarrer votre ordinateur pour terminer l'installation de [name].%n%nVoulez-vous redémarrer maintenant ?
|
||||||
ShowReadmeCheck=Oui, je souhaite lire le fichier LISEZMOI
|
ShowReadmeCheck=Oui, je souhaite lire le fichier LISEZMOI
|
||||||
YesRadio=&Oui, redémarrer mon ordinateur maintenant
|
YesRadio=&Oui, redémarrer mon ordinateur maintenant
|
||||||
NoRadio=&Non, je préfère redémarrer mon ordinateur plus tard
|
NoRadio=&Non, je préfère redémarrer mon ordinateur plus tard
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=Exécuter %1
|
RunEntryExec=Exécuter %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=Voir %1
|
RunEntryShellExec=Voir %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=L'assistant a besoin du disque suivant
|
ChangeDiskTitle=L'assistant a besoin du disque suivant
|
||||||
SelectDiskLabel2=Veuillez insérer le disque %1 et cliquer sur OK.%n%nSi les fichiers de ce disque se trouvent à un emplacement différent de celui indiqué ci-dessous, veuillez saisir le chemin correspondant ou cliquez sur Parcourir.
|
SelectDiskLabel2=Veuillez insérer le disque %1 et cliquer sur OK.%n%nSi les fichiers de ce disque se trouvent à un emplacement différent de celui indiqué ci-dessous, veuillez saisir le chemin correspondant ou cliquez sur Parcourir.
|
||||||
PathLabel=&Chemin :
|
PathLabel=&Chemin :
|
||||||
FileNotInDir2=Le fichier "%1" ne peut pas être trouvé dans "%2". Veuillez insérer le bon disque ou sélectionner un autre dossier.
|
FileNotInDir2=Le fichier "%1" ne peut pas être trouvé dans "%2". Veuillez insérer le bon disque ou sélectionner un autre dossier.
|
||||||
SelectDirectoryLabel=Veuillez indiquer l'emplacement du disque suivant.
|
SelectDirectoryLabel=Veuillez indiquer l'emplacement du disque suivant.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=L'installation n'est pas terminée.%n%nVeuillez corriger le problème et relancer l'installation.
|
SetupAborted=L'installation n'est pas terminée.%n%nVeuillez corriger le problème et relancer l'installation.
|
||||||
AbortRetryIgnoreSelectAction=Choisissez une action
|
AbortRetryIgnoreSelectAction=Choisissez une action
|
||||||
AbortRetryIgnoreRetry=&Recommencer
|
AbortRetryIgnoreRetry=&Recommencer
|
||||||
AbortRetryIgnoreIgnore=&Ignorer l'erreur et continuer
|
AbortRetryIgnoreIgnore=&Ignorer l'erreur et continuer
|
||||||
AbortRetryIgnoreCancel=Annuler l'installation
|
AbortRetryIgnoreCancel=Annuler l'installation
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Ferme les applications...
|
StatusClosingApplications=Ferme les applications...
|
||||||
StatusCreateDirs=Création des dossiers...
|
StatusCreateDirs=Création des dossiers...
|
||||||
StatusExtractFiles=Extraction des fichiers...
|
StatusExtractFiles=Extraction des fichiers...
|
||||||
StatusCreateIcons=Création des raccourcis...
|
StatusCreateIcons=Création des raccourcis...
|
||||||
StatusCreateIniEntries=Création des entrées du fichier INI...
|
StatusCreateIniEntries=Création des entrées du fichier INI...
|
||||||
StatusCreateRegistryEntries=Création des entrées de registre...
|
StatusCreateRegistryEntries=Création des entrées de registre...
|
||||||
StatusRegisterFiles=Enregistrement des fichiers...
|
StatusRegisterFiles=Enregistrement des fichiers...
|
||||||
StatusSavingUninstall=Sauvegarde des informations de désinstallation...
|
StatusSavingUninstall=Sauvegarde des informations de désinstallation...
|
||||||
StatusRunProgram=Finalisation de l'installation...
|
StatusRunProgram=Finalisation de l'installation...
|
||||||
StatusRestartingApplications=Relance les applications...
|
StatusRestartingApplications=Relance les applications...
|
||||||
StatusRollback=Annulation des modifications...
|
StatusRollback=Annulation des modifications...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Erreur interne : %1
|
ErrorInternal2=Erreur interne : %1
|
||||||
ErrorFunctionFailedNoCode=%1 a échoué
|
ErrorFunctionFailedNoCode=%1 a échoué
|
||||||
ErrorFunctionFailed=%1 a échoué ; code %2
|
ErrorFunctionFailed=%1 a échoué ; code %2
|
||||||
ErrorFunctionFailedWithMessage=%1 a échoué ; code %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 a échoué ; code %2.%n%3
|
||||||
ErrorExecutingProgram=Impossible d'exécuter le fichier :%n%1
|
ErrorExecutingProgram=Impossible d'exécuter le fichier :%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Erreur lors de l'ouverture de la clé de registre :%n%1\%2
|
ErrorRegOpenKey=Erreur lors de l'ouverture de la clé de registre :%n%1\%2
|
||||||
ErrorRegCreateKey=Erreur lors de la création de la clé de registre :%n%1\%2
|
ErrorRegCreateKey=Erreur lors de la création de la clé de registre :%n%1\%2
|
||||||
ErrorRegWriteKey=Erreur lors de l'écriture de la clé de registre :%n%1\%2
|
ErrorRegWriteKey=Erreur lors de l'écriture de la clé de registre :%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Erreur d'écriture d'une entrée dans le fichier INI "%1".
|
ErrorIniEntry=Erreur d'écriture d'une entrée dans le fichier INI "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Ignorer ce fichier (non recommandé)
|
FileAbortRetryIgnoreSkipNotRecommended=&Ignorer ce fichier (non recommandé)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorer l'erreur et continuer (non recommandé)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorer l'erreur et continuer (non recommandé)
|
||||||
SourceIsCorrupted=Le fichier source est altéré
|
SourceIsCorrupted=Le fichier source est altéré
|
||||||
SourceDoesntExist=Le fichier source "%1" n'existe pas
|
SourceDoesntExist=Le fichier source "%1" n'existe pas
|
||||||
ExistingFileReadOnly2=Le fichier existant ne peut pas être remplacé parce qu'il est protégé par l'attribut lecture seule.
|
ExistingFileReadOnly2=Le fichier existant ne peut pas être remplacé parce qu'il est protégé par l'attribut lecture seule.
|
||||||
ExistingFileReadOnlyRetry=&Supprimer l'attribut lecture seule et réessayer
|
ExistingFileReadOnlyRetry=&Supprimer l'attribut lecture seule et réessayer
|
||||||
ExistingFileReadOnlyKeepExisting=&Conserver le fichier existant
|
ExistingFileReadOnlyKeepExisting=&Conserver le fichier existant
|
||||||
ErrorReadingExistingDest=Une erreur s'est produite lors de la tentative de lecture du fichier existant :
|
ErrorReadingExistingDest=Une erreur s'est produite lors de la tentative de lecture du fichier existant :
|
||||||
FileExistsSelectAction=Choisissez une action
|
FileExistsSelectAction=Choisissez une action
|
||||||
FileExists2=Le fichier existe déjà.
|
FileExists2=Le fichier existe déjà.
|
||||||
FileExistsOverwriteExisting=&Ecraser le fichier existant
|
FileExistsOverwriteExisting=&Ecraser le fichier existant
|
||||||
FileExistsKeepExisting=&Conserver le fichier existant
|
FileExistsKeepExisting=&Conserver le fichier existant
|
||||||
FileExistsOverwriteOrKeepAll=&Faire ceci pour les conflits à venir
|
FileExistsOverwriteOrKeepAll=&Faire ceci pour les conflits à venir
|
||||||
ExistingFileNewerSelectAction=Choisissez une action
|
ExistingFileNewerSelectAction=Choisissez une action
|
||||||
ExistingFileNewer2=Le fichier existant est plus récent que celui que l'assistant d'installation est en train d'installer.
|
ExistingFileNewer2=Le fichier existant est plus récent que celui que l'assistant d'installation est en train d'installer.
|
||||||
ExistingFileNewerOverwriteExisting=&Ecraser le fichier existant
|
ExistingFileNewerOverwriteExisting=&Ecraser le fichier existant
|
||||||
ExistingFileNewerKeepExisting=&Conserver le fichier existant (recommandé)
|
ExistingFileNewerKeepExisting=&Conserver le fichier existant (recommandé)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Faire ceci pour les conflits à venir
|
ExistingFileNewerOverwriteOrKeepAll=&Faire ceci pour les conflits à venir
|
||||||
ErrorChangingAttr=Une erreur est survenue en essayant de modifier les attributs du fichier existant :
|
ErrorChangingAttr=Une erreur est survenue en essayant de modifier les attributs du fichier existant :
|
||||||
ErrorCreatingTemp=Une erreur est survenue en essayant de créer un fichier dans le dossier de destination :
|
ErrorCreatingTemp=Une erreur est survenue en essayant de créer un fichier dans le dossier de destination :
|
||||||
ErrorReadingSource=Une erreur est survenue lors de la lecture du fichier source :
|
ErrorReadingSource=Une erreur est survenue lors de la lecture du fichier source :
|
||||||
ErrorCopying=Une erreur est survenue lors de la copie d'un fichier :
|
ErrorCopying=Une erreur est survenue lors de la copie d'un fichier :
|
||||||
ErrorReplacingExistingFile=Une erreur est survenue lors du remplacement d'un fichier existant :
|
ErrorReplacingExistingFile=Une erreur est survenue lors du remplacement d'un fichier existant :
|
||||||
ErrorRestartReplace=Le marquage d'un fichier pour remplacement au redémarrage de l'ordinateur a échoué :
|
ErrorRestartReplace=Le marquage d'un fichier pour remplacement au redémarrage de l'ordinateur a échoué :
|
||||||
ErrorRenamingTemp=Une erreur est survenue en essayant de renommer un fichier dans le dossier de destination :
|
ErrorRenamingTemp=Une erreur est survenue en essayant de renommer un fichier dans le dossier de destination :
|
||||||
ErrorRegisterServer=Impossible d'enregistrer la bibliothèque DLL/OCX : %1
|
ErrorRegisterServer=Impossible d'enregistrer la bibliothèque DLL/OCX : %1
|
||||||
ErrorRegSvr32Failed=RegSvr32 a échoué et a retourné le code d'erreur %1
|
ErrorRegSvr32Failed=RegSvr32 a échoué et a retourné le code d'erreur %1
|
||||||
ErrorRegisterTypeLib=Impossible d'enregistrer la bibliothèque de type : %1
|
ErrorRegisterTypeLib=Impossible d'enregistrer la bibliothèque de type : %1
|
||||||
|
|
||||||
; *** Nom d'affichage pour la désinstallaton
|
; *** Nom d'affichage pour la désinstallaton
|
||||||
; par exemple 'Mon Programme (32-bit)'
|
; par exemple 'Mon Programme (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; ou par exemple 'Mon Programme (32-bit, Tous les utilisateurs)'
|
; ou par exemple 'Mon Programme (32-bit, Tous les utilisateurs)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32-bit
|
UninstallDisplayNameMark32Bit=32-bit
|
||||||
UninstallDisplayNameMark64Bit=64-bit
|
UninstallDisplayNameMark64Bit=64-bit
|
||||||
UninstallDisplayNameMarkAllUsers=Tous les utilisateurs
|
UninstallDisplayNameMarkAllUsers=Tous les utilisateurs
|
||||||
UninstallDisplayNameMarkCurrentUser=Utilisateur courant
|
UninstallDisplayNameMarkCurrentUser=Utilisateur courant
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Une erreur est survenue à l'ouverture du fichier LISEZMOI.
|
ErrorOpeningReadme=Une erreur est survenue à l'ouverture du fichier LISEZMOI.
|
||||||
ErrorRestartingComputer=L'installation n'a pas pu redémarrer l'ordinateur. Merci de bien vouloir le faire vous-même.
|
ErrorRestartingComputer=L'installation n'a pas pu redémarrer l'ordinateur. Merci de bien vouloir le faire vous-même.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=Le fichier "%1" n'existe pas. Impossible de désinstaller.
|
UninstallNotFound=Le fichier "%1" n'existe pas. Impossible de désinstaller.
|
||||||
UninstallOpenError=Le fichier "%1" n'a pas pu être ouvert. Impossible de désinstaller
|
UninstallOpenError=Le fichier "%1" n'a pas pu être ouvert. Impossible de désinstaller
|
||||||
UninstallUnsupportedVer=Le format du fichier journal de désinstallation "%1" n'est pas reconnu par cette version de la procédure de désinstallation. Impossible de désinstaller
|
UninstallUnsupportedVer=Le format du fichier journal de désinstallation "%1" n'est pas reconnu par cette version de la procédure de désinstallation. Impossible de désinstaller
|
||||||
UninstallUnknownEntry=Une entrée inconnue (%1) a été rencontrée dans le fichier journal de désinstallation
|
UninstallUnknownEntry=Une entrée inconnue (%1) a été rencontrée dans le fichier journal de désinstallation
|
||||||
ConfirmUninstall=Êtes-vous sûr de vouloir exécuter l'assistant de désinstallation %1 ?
|
ConfirmUninstall=Êtes-vous sûr de vouloir exécuter l'assistant de désinstallation %1 ?
|
||||||
UninstallOnlyOnWin64=La désinstallation de ce programme ne fonctionne qu'avec une version 64 bits de Windows.
|
UninstallOnlyOnWin64=La désinstallation de ce programme ne fonctionne qu'avec une version 64 bits de Windows.
|
||||||
OnlyAdminCanUninstall=Ce programme ne peut être désinstallé que par un utilisateur disposant des droits d'administration.
|
OnlyAdminCanUninstall=Ce programme ne peut être désinstallé que par un utilisateur disposant des droits d'administration.
|
||||||
UninstallStatusLabel=Veuillez patienter pendant que %1 est retiré de votre ordinateur.
|
UninstallStatusLabel=Veuillez patienter pendant que %1 est retiré de votre ordinateur.
|
||||||
UninstalledAll=%1 a été correctement désinstallé de cet ordinateur.
|
UninstalledAll=%1 a été correctement désinstallé de cet ordinateur.
|
||||||
UninstalledMost=La désinstallation de %1 est terminée.%n%nCertains éléments n'ont pas pu être supprimés automatiquement. Vous pouvez les supprimer manuellement.
|
UninstalledMost=La désinstallation de %1 est terminée.%n%nCertains éléments n'ont pas pu être supprimés automatiquement. Vous pouvez les supprimer manuellement.
|
||||||
UninstalledAndNeedsRestart=Vous devez redémarrer l'ordinateur pour terminer la désinstallation de %1.%n%nVoulez-vous redémarrer maintenant ?
|
UninstalledAndNeedsRestart=Vous devez redémarrer l'ordinateur pour terminer la désinstallation de %1.%n%nVoulez-vous redémarrer maintenant ?
|
||||||
UninstallDataCorrupted=Le ficher "%1" est altéré. Impossible de désinstaller
|
UninstallDataCorrupted=Le ficher "%1" est altéré. Impossible de désinstaller
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Supprimer les fichiers partagés ?
|
ConfirmDeleteSharedFileTitle=Supprimer les fichiers partagés ?
|
||||||
ConfirmDeleteSharedFile2=Le système indique que le fichier partagé suivant n'est plus utilisé par aucun programme. Souhaitez-vous que la désinstallation supprime ce fichier partagé ?%n%nSi des programmes utilisent encore ce fichier et qu'il est supprimé, ces programmes ne pourront plus fonctionner correctement. Si vous n'êtes pas sûr, choisissez Non. Laisser ce fichier dans votre système ne posera pas de problème.
|
ConfirmDeleteSharedFile2=Le système indique que le fichier partagé suivant n'est plus utilisé par aucun programme. Souhaitez-vous que la désinstallation supprime ce fichier partagé ?%n%nSi des programmes utilisent encore ce fichier et qu'il est supprimé, ces programmes ne pourront plus fonctionner correctement. Si vous n'êtes pas sûr, choisissez Non. Laisser ce fichier dans votre système ne posera pas de problème.
|
||||||
SharedFileNameLabel=Nom du fichier :
|
SharedFileNameLabel=Nom du fichier :
|
||||||
SharedFileLocationLabel=Emplacement :
|
SharedFileLocationLabel=Emplacement :
|
||||||
WizardUninstalling=État de la désinstallation
|
WizardUninstalling=État de la désinstallation
|
||||||
StatusUninstalling=Désinstallation de %1...
|
StatusUninstalling=Désinstallation de %1...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Installe %1.
|
ShutdownBlockReasonInstallingApp=Installe %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Désinstalle %1.
|
ShutdownBlockReasonUninstallingApp=Désinstalle %1.
|
||||||
|
|
||||||
; Les messages personnalisés suivants ne sont pas utilisé par l'installation
|
; Les messages personnalisés suivants ne sont pas utilisé par l'installation
|
||||||
; elle-même, mais si vous les utilisez dans vos scripts, vous devez les
|
; elle-même, mais si vous les utilisez dans vos scripts, vous devez les
|
||||||
; traduire
|
; traduire
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 version %2
|
NameAndVersion=%1 version %2
|
||||||
AdditionalIcons=Icônes supplémentaires :
|
AdditionalIcons=Icônes supplémentaires :
|
||||||
CreateDesktopIcon=Créer une icône sur le &Bureau
|
CreateDesktopIcon=Créer une icône sur le &Bureau
|
||||||
CreateQuickLaunchIcon=Créer une icône dans la barre de &Lancement rapide
|
CreateQuickLaunchIcon=Créer une icône dans la barre de &Lancement rapide
|
||||||
ProgramOnTheWeb=Page d'accueil de %1
|
ProgramOnTheWeb=Page d'accueil de %1
|
||||||
UninstallProgram=Désinstaller %1
|
UninstallProgram=Désinstaller %1
|
||||||
LaunchProgram=Exécuter %1
|
LaunchProgram=Exécuter %1
|
||||||
AssocFileExtension=&Associer %1 avec l'extension de fichier %2
|
AssocFileExtension=&Associer %1 avec l'extension de fichier %2
|
||||||
AssocingFileExtension=Associe %1 avec l'extension de fichier %2...
|
AssocingFileExtension=Associe %1 avec l'extension de fichier %2...
|
||||||
AutoStartProgramGroupDescription=Démarrage :
|
AutoStartProgramGroupDescription=Démarrage :
|
||||||
AutoStartProgram=Démarrer automatiquement %1
|
AutoStartProgram=Démarrer automatiquement %1
|
||||||
AddonHostProgramNotFound=%1 n'a pas été trouvé dans le dossier que vous avez choisi.%n%nVoulez-vous continuer malgré tout ?
|
AddonHostProgramNotFound=%1 n'a pas été trouvé dans le dossier que vous avez choisi.%n%nVoulez-vous continuer malgré tout ?
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Choisissez le mode d'installation
|
SelectSetupInstallModeTitle=Choisissez le mode d'installation
|
||||||
SelectSetupInstallModeDesc=VCMI peut être installé pour tous les utilisateurs ou uniquement pour vous.
|
SelectSetupInstallModeDesc=VCMI peut être installé pour tous les utilisateurs ou uniquement pour vous.
|
||||||
SelectSetupInstallModeSubTitle=Sélectionnez votre mode d'installation préféré :
|
SelectSetupInstallModeSubTitle=Sélectionnez votre mode d'installation préféré :
|
||||||
InstallForAllUsers=Installer pour tous les utilisateurs
|
InstallForAllUsers=Installer pour tous les utilisateurs
|
||||||
InstallForAllUsers1=Requiert des privilèges administratifs
|
InstallForAllUsers1=Requiert des privilèges administratifs
|
||||||
InstallForMeOnly=Installer uniquement pour moi
|
InstallForMeOnly=Installer uniquement pour moi
|
||||||
InstallForMeOnly1=Une demande de pare-feu apparaîtra lors du premier lancement du jeu.
|
InstallForMeOnly1=Une demande de pare-feu apparaîtra lors du premier lancement du jeu.
|
||||||
InstallForMeOnly2=Avertissement : Les jeux en réseau local (LAN) ne fonctionneront pas si la règle du pare-feu ne peut pas être autorisée.
|
InstallForMeOnly2=Avertissement : Les jeux en réseau local (LAN) ne fonctionneront pas si la règle du pare-feu ne peut pas être autorisée.
|
||||||
CreateDesktopShortcuts=Créer des raccourcis sur le bureau
|
CreateDesktopShortcuts=Créer des raccourcis sur le bureau
|
||||||
ShortcutsOptions=Options des raccourcis
|
ShortcutsOptions=Options des raccourcis
|
||||||
CreateStartMenuShortcuts=Créer des raccourcis dans le menu Démarrer
|
CreateStartMenuShortcuts=Créer des raccourcis dans le menu Démarrer
|
||||||
FirewallOptions=Paramètres du pare-feu
|
FirewallOptions=Paramètres du pare-feu
|
||||||
AddFirewallRules=Ajouter des règles de pare-feu pour VCMI
|
AddFirewallRules=Ajouter des règles de pare-feu pour VCMI
|
||||||
FileAssociations=Associations de fichiers
|
FileAssociations=Associations de fichiers
|
||||||
AssociateH3MFiles=Associer les fichiers .h3m à l'éditeur de cartes VCMI
|
AssociateH3MFiles=Associer les fichiers .h3m à l'éditeur de cartes VCMI
|
||||||
AssociateVMapFiles=Associer les fichiers .vmap à l'éditeur de cartes VCMI
|
AssociateVMapFiles=Associer les fichiers .vmap à l'éditeur de cartes VCMI
|
||||||
RunVCMILauncherAfterInstall=Lancer le lanceur VCMI
|
RunVCMILauncherAfterInstall=Lancer le lanceur VCMI
|
||||||
ShortcutMapEditor=Éditeur de cartes VCMI
|
ShortcutMapEditor=Éditeur de cartes VCMI
|
||||||
ShortcutLauncher=Lanceur VCMI
|
ShortcutLauncher=Lanceur VCMI
|
||||||
ShortcutWebPage=Site officiel de VCMI
|
ShortcutWebPage=Site officiel de VCMI
|
||||||
ShortcutDiscord=Discord officiel de VCMI
|
ShortcutDiscord=Discord officiel de VCMI
|
||||||
ShortcutLauncherComment=Lancer le lanceur VCMI
|
ShortcutLauncherComment=Lancer le lanceur VCMI
|
||||||
ShortcutMapEditorComment=Ouvrir l'éditeur de cartes VCMI
|
ShortcutMapEditorComment=Ouvrir l'éditeur de cartes VCMI
|
||||||
ShortcutWebPageComment=Visiter le site officiel de VCMI
|
ShortcutWebPageComment=Visiter le site officiel de VCMI
|
||||||
ShortcutDiscordComment=Visiter le Discord officiel de VCMI
|
ShortcutDiscordComment=Visiter le Discord officiel de VCMI
|
||||||
DeleteUserData=Supprimer les données utilisateur
|
DeleteUserData=Supprimer les données utilisateur
|
||||||
Uninstall=Désinstaller
|
Uninstall=Désinstaller
|
||||||
VMAPDescription=Fichier de carte VCMI
|
VMAPDescription=Fichier de carte VCMI
|
||||||
H3MDescription=Fichier de carte Heroes 3
|
H3MDescription=Fichier de carte Heroes 3
|
@@ -1,435 +1,435 @@
|
|||||||
; ******************************************************
|
; ******************************************************
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Inno Setup version 6.1.0+ German messages ***
|
; *** Inno Setup version 6.1.0+ German messages ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Changes 6.0.0+ Author: ***
|
; *** Changes 6.0.0+ Author: ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Jens Brand (jens.brand@wolf-software.de) ***
|
; *** Jens Brand (jens.brand@wolf-software.de) ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Original Authors: ***
|
; *** Original Authors: ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Peter Stadler (Peter.Stadler@univie.ac.at) ***
|
; *** Peter Stadler (Peter.Stadler@univie.ac.at) ***
|
||||||
; *** Michael Reitz (innosetup@assimilate.de) ***
|
; *** Michael Reitz (innosetup@assimilate.de) ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Contributors: ***
|
; *** Contributors: ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; *** Roland Ruder (info@rr4u.de) ***
|
; *** Roland Ruder (info@rr4u.de) ***
|
||||||
; *** Hans Sperber (Hans.Sperber@de.bosch.com) ***
|
; *** Hans Sperber (Hans.Sperber@de.bosch.com) ***
|
||||||
; *** LaughingMan (puma.d@web.de) ***
|
; *** LaughingMan (puma.d@web.de) ***
|
||||||
; *** ***
|
; *** ***
|
||||||
; ******************************************************
|
; ******************************************************
|
||||||
;
|
;
|
||||||
; Diese Übersetzung hält sich an die neue deutsche Rechtschreibung.
|
; Diese Übersetzung hält sich an die neue deutsche Rechtschreibung.
|
||||||
|
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
|
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=Deutsch
|
LanguageName=Deutsch
|
||||||
LanguageID=$0407
|
LanguageID=$0407
|
||||||
LanguageCodePage=1252
|
LanguageCodePage=1252
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Setup
|
SetupAppTitle=Setup
|
||||||
SetupWindowTitle=Setup - %1
|
SetupWindowTitle=Setup - %1
|
||||||
UninstallAppTitle=Entfernen
|
UninstallAppTitle=Entfernen
|
||||||
UninstallAppFullTitle=%1 entfernen
|
UninstallAppFullTitle=%1 entfernen
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Information
|
InformationTitle=Information
|
||||||
ConfirmTitle=Bestätigen
|
ConfirmTitle=Bestätigen
|
||||||
ErrorTitle=Fehler
|
ErrorTitle=Fehler
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=%1 wird jetzt installiert. Möchten Sie fortfahren?
|
SetupLdrStartupMessage=%1 wird jetzt installiert. Möchten Sie fortfahren?
|
||||||
LdrCannotCreateTemp=Es konnte keine temporäre Datei erstellt werden. Das Setup wurde abgebrochen
|
LdrCannotCreateTemp=Es konnte keine temporäre Datei erstellt werden. Das Setup wurde abgebrochen
|
||||||
LdrCannotExecTemp=Die Datei konnte nicht im temporären Ordner ausgeführt werden. Das Setup wurde abgebrochen
|
LdrCannotExecTemp=Die Datei konnte nicht im temporären Ordner ausgeführt werden. Das Setup wurde abgebrochen
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nFehler %2: %3
|
LastErrorMessage=%1.%n%nFehler %2: %3
|
||||||
SetupFileMissing=Die Datei %1 fehlt im Installationsordner. Bitte beheben Sie das Problem oder besorgen Sie sich eine neue Kopie des Programms.
|
SetupFileMissing=Die Datei %1 fehlt im Installationsordner. Bitte beheben Sie das Problem oder besorgen Sie sich eine neue Kopie des Programms.
|
||||||
SetupFileCorrupt=Die Setup-Dateien sind beschädigt. Besorgen Sie sich bitte eine neue Kopie des Programms.
|
SetupFileCorrupt=Die Setup-Dateien sind beschädigt. Besorgen Sie sich bitte eine neue Kopie des Programms.
|
||||||
SetupFileCorruptOrWrongVer=Die Setup-Dateien sind beschädigt oder inkompatibel zu dieser Version des Setups. Bitte beheben Sie das Problem oder besorgen Sie sich eine neue Kopie des Programms.
|
SetupFileCorruptOrWrongVer=Die Setup-Dateien sind beschädigt oder inkompatibel zu dieser Version des Setups. Bitte beheben Sie das Problem oder besorgen Sie sich eine neue Kopie des Programms.
|
||||||
InvalidParameter=Ein ungültiger Parameter wurde auf der Kommandozeile übergeben:%n%n%1
|
InvalidParameter=Ein ungültiger Parameter wurde auf der Kommandozeile übergeben:%n%n%1
|
||||||
SetupAlreadyRunning=Setup läuft bereits.
|
SetupAlreadyRunning=Setup läuft bereits.
|
||||||
WindowsVersionNotSupported=Dieses Programm unterstützt die auf Ihrem Computer installierte Windows-Version nicht.
|
WindowsVersionNotSupported=Dieses Programm unterstützt die auf Ihrem Computer installierte Windows-Version nicht.
|
||||||
WindowsServicePackRequired=Dieses Programm benötigt %1 Service Pack %2 oder höher.
|
WindowsServicePackRequired=Dieses Programm benötigt %1 Service Pack %2 oder höher.
|
||||||
NotOnThisPlatform=Dieses Programm kann nicht unter %1 ausgeführt werden.
|
NotOnThisPlatform=Dieses Programm kann nicht unter %1 ausgeführt werden.
|
||||||
OnlyOnThisPlatform=Dieses Programm muss unter %1 ausgeführt werden.
|
OnlyOnThisPlatform=Dieses Programm muss unter %1 ausgeführt werden.
|
||||||
OnlyOnTheseArchitectures=Dieses Programm kann nur auf Windows-Versionen installiert werden, die folgende Prozessor-Architekturen unterstützen:%n%n%1
|
OnlyOnTheseArchitectures=Dieses Programm kann nur auf Windows-Versionen installiert werden, die folgende Prozessor-Architekturen unterstützen:%n%n%1
|
||||||
WinVersionTooLowError=Dieses Programm benötigt %1 Version %2 oder höher.
|
WinVersionTooLowError=Dieses Programm benötigt %1 Version %2 oder höher.
|
||||||
WinVersionTooHighError=Dieses Programm kann nicht unter %1 Version %2 oder höher installiert werden.
|
WinVersionTooHighError=Dieses Programm kann nicht unter %1 Version %2 oder höher installiert werden.
|
||||||
AdminPrivilegesRequired=Sie müssen als Administrator angemeldet sein, um dieses Programm installieren zu können.
|
AdminPrivilegesRequired=Sie müssen als Administrator angemeldet sein, um dieses Programm installieren zu können.
|
||||||
PowerUserPrivilegesRequired=Sie müssen als Administrator oder als Mitglied der Hauptbenutzer-Gruppe angemeldet sein, um dieses Programm installieren zu können.
|
PowerUserPrivilegesRequired=Sie müssen als Administrator oder als Mitglied der Hauptbenutzer-Gruppe angemeldet sein, um dieses Programm installieren zu können.
|
||||||
SetupAppRunningError=Das Setup hat entdeckt, dass %1 zurzeit ausgeführt wird.%n%nBitte schließen Sie jetzt alle laufenden Instanzen und klicken Sie auf "OK", um fortzufahren, oder auf "Abbrechen", um zu beenden.
|
SetupAppRunningError=Das Setup hat entdeckt, dass %1 zurzeit ausgeführt wird.%n%nBitte schließen Sie jetzt alle laufenden Instanzen und klicken Sie auf "OK", um fortzufahren, oder auf "Abbrechen", um zu beenden.
|
||||||
UninstallAppRunningError=Die Deinstallation hat entdeckt, dass %1 zurzeit ausgeführt wird.%n%nBitte schließen Sie jetzt alle laufenden Instanzen und klicken Sie auf "OK", um fortzufahren, oder auf "Abbrechen", um zu beenden.
|
UninstallAppRunningError=Die Deinstallation hat entdeckt, dass %1 zurzeit ausgeführt wird.%n%nBitte schließen Sie jetzt alle laufenden Instanzen und klicken Sie auf "OK", um fortzufahren, oder auf "Abbrechen", um zu beenden.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Installationsmodus auswählen
|
PrivilegesRequiredOverrideTitle=Installationsmodus auswählen
|
||||||
PrivilegesRequiredOverrideInstruction=Bitte wählen Sie den Installationsmodus
|
PrivilegesRequiredOverrideInstruction=Bitte wählen Sie den Installationsmodus
|
||||||
PrivilegesRequiredOverrideText1=%1 kann für alle Benutzer (erfordert Administrationsrechte) oder nur für Sie installiert werden.
|
PrivilegesRequiredOverrideText1=%1 kann für alle Benutzer (erfordert Administrationsrechte) oder nur für Sie installiert werden.
|
||||||
PrivilegesRequiredOverrideText2=%1 kann nur für Sie oder für alle Benutzer (erfordert Administrationsrechte) installiert werden.
|
PrivilegesRequiredOverrideText2=%1 kann nur für Sie oder für alle Benutzer (erfordert Administrationsrechte) installiert werden.
|
||||||
PrivilegesRequiredOverrideAllUsers=Installation für &alle Benutzer
|
PrivilegesRequiredOverrideAllUsers=Installation für &alle Benutzer
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Installation für &alle Benutzer (empfohlen)
|
PrivilegesRequiredOverrideAllUsersRecommended=Installation für &alle Benutzer (empfohlen)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Installation nur für &Sie
|
PrivilegesRequiredOverrideCurrentUser=Installation nur für &Sie
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Installation nur für &Sie (empfohlen)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Installation nur für &Sie (empfohlen)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=Das Setup konnte den Ordner "%1" nicht erstellen.
|
ErrorCreatingDir=Das Setup konnte den Ordner "%1" nicht erstellen.
|
||||||
ErrorTooManyFilesInDir=Das Setup konnte eine Datei im Ordner "%1" nicht erstellen, weil er zu viele Dateien enthält.
|
ErrorTooManyFilesInDir=Das Setup konnte eine Datei im Ordner "%1" nicht erstellen, weil er zu viele Dateien enthält.
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Setup verlassen
|
ExitSetupTitle=Setup verlassen
|
||||||
ExitSetupMessage=Das Setup ist noch nicht abgeschlossen. Wenn Sie jetzt beenden, wird das Programm nicht installiert.%n%nSie können das Setup zu einem späteren Zeitpunkt nochmals ausführen, um die Installation zu vervollständigen.%n%nSetup verlassen?
|
ExitSetupMessage=Das Setup ist noch nicht abgeschlossen. Wenn Sie jetzt beenden, wird das Programm nicht installiert.%n%nSie können das Setup zu einem späteren Zeitpunkt nochmals ausführen, um die Installation zu vervollständigen.%n%nSetup verlassen?
|
||||||
AboutSetupMenuItem=&Über das Setup ...
|
AboutSetupMenuItem=&Über das Setup ...
|
||||||
AboutSetupTitle=Über das Setup
|
AboutSetupTitle=Über das Setup
|
||||||
AboutSetupMessage=%1 Version %2%n%3%n%n%1 Webseite:%n%4
|
AboutSetupMessage=%1 Version %2%n%3%n%n%1 Webseite:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=German translation maintained by Jens Brand (jens.brand@wolf-software.de)
|
TranslatorNote=German translation maintained by Jens Brand (jens.brand@wolf-software.de)
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Zurück
|
ButtonBack=< &Zurück
|
||||||
ButtonNext=&Weiter >
|
ButtonNext=&Weiter >
|
||||||
ButtonInstall=&Installieren
|
ButtonInstall=&Installieren
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Abbrechen
|
ButtonCancel=Abbrechen
|
||||||
ButtonYes=&Ja
|
ButtonYes=&Ja
|
||||||
ButtonYesToAll=J&a für Alle
|
ButtonYesToAll=J&a für Alle
|
||||||
ButtonNo=&Nein
|
ButtonNo=&Nein
|
||||||
ButtonNoToAll=N&ein für Alle
|
ButtonNoToAll=N&ein für Alle
|
||||||
ButtonFinish=&Fertigstellen
|
ButtonFinish=&Fertigstellen
|
||||||
ButtonBrowse=&Durchsuchen ...
|
ButtonBrowse=&Durchsuchen ...
|
||||||
ButtonWizardBrowse=Du&rchsuchen ...
|
ButtonWizardBrowse=Du&rchsuchen ...
|
||||||
ButtonNewFolder=&Neuen Ordner erstellen
|
ButtonNewFolder=&Neuen Ordner erstellen
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Setup-Sprache auswählen
|
SelectLanguageTitle=Setup-Sprache auswählen
|
||||||
SelectLanguageLabel=Wählen Sie die Sprache aus, die während der Installation benutzt werden soll:
|
SelectLanguageLabel=Wählen Sie die Sprache aus, die während der Installation benutzt werden soll:
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext="Weiter" zum Fortfahren, "Abbrechen" zum Verlassen.
|
ClickNext="Weiter" zum Fortfahren, "Abbrechen" zum Verlassen.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Ordner suchen
|
BrowseDialogTitle=Ordner suchen
|
||||||
BrowseDialogLabel=Wählen Sie einen Ordner aus und klicken Sie danach auf "OK".
|
BrowseDialogLabel=Wählen Sie einen Ordner aus und klicken Sie danach auf "OK".
|
||||||
NewFolderName=Neuer Ordner
|
NewFolderName=Neuer Ordner
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Willkommen zum [name] Setup-Assistenten
|
WelcomeLabel1=Willkommen zum [name] Setup-Assistenten
|
||||||
WelcomeLabel2=Dieser Assistent wird jetzt [name/ver] auf Ihrem Computer installieren.%n%nSie sollten alle anderen Anwendungen beenden, bevor Sie mit dem Setup fortfahren.
|
WelcomeLabel2=Dieser Assistent wird jetzt [name/ver] auf Ihrem Computer installieren.%n%nSie sollten alle anderen Anwendungen beenden, bevor Sie mit dem Setup fortfahren.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Passwort
|
WizardPassword=Passwort
|
||||||
PasswordLabel1=Diese Installation wird durch ein Passwort geschützt.
|
PasswordLabel1=Diese Installation wird durch ein Passwort geschützt.
|
||||||
PasswordLabel3=Bitte geben Sie das Passwort ein und klicken Sie danach auf "Weiter". Achten Sie auf korrekte Groß-/Kleinschreibung.
|
PasswordLabel3=Bitte geben Sie das Passwort ein und klicken Sie danach auf "Weiter". Achten Sie auf korrekte Groß-/Kleinschreibung.
|
||||||
PasswordEditLabel=&Passwort:
|
PasswordEditLabel=&Passwort:
|
||||||
IncorrectPassword=Das eingegebene Passwort ist nicht korrekt. Bitte versuchen Sie es noch einmal.
|
IncorrectPassword=Das eingegebene Passwort ist nicht korrekt. Bitte versuchen Sie es noch einmal.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=Lizenzvereinbarung
|
WizardLicense=Lizenzvereinbarung
|
||||||
LicenseLabel=Lesen Sie bitte folgende wichtige Informationen, bevor Sie fortfahren.
|
LicenseLabel=Lesen Sie bitte folgende wichtige Informationen, bevor Sie fortfahren.
|
||||||
LicenseLabel3=Lesen Sie bitte die folgenden Lizenzvereinbarungen. Benutzen Sie bei Bedarf die Bildlaufleiste oder drücken Sie die "Bild Ab"-Taste.
|
LicenseLabel3=Lesen Sie bitte die folgenden Lizenzvereinbarungen. Benutzen Sie bei Bedarf die Bildlaufleiste oder drücken Sie die "Bild Ab"-Taste.
|
||||||
LicenseAccepted=Ich &akzeptiere die Vereinbarung
|
LicenseAccepted=Ich &akzeptiere die Vereinbarung
|
||||||
LicenseNotAccepted=Ich &lehne die Vereinbarung ab
|
LicenseNotAccepted=Ich &lehne die Vereinbarung ab
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Information
|
WizardInfoBefore=Information
|
||||||
InfoBeforeLabel=Lesen Sie bitte folgende wichtige Informationen, bevor Sie fortfahren.
|
InfoBeforeLabel=Lesen Sie bitte folgende wichtige Informationen, bevor Sie fortfahren.
|
||||||
InfoBeforeClickLabel=Klicken Sie auf "Weiter", sobald Sie bereit sind, mit dem Setup fortzufahren.
|
InfoBeforeClickLabel=Klicken Sie auf "Weiter", sobald Sie bereit sind, mit dem Setup fortzufahren.
|
||||||
WizardInfoAfter=Information
|
WizardInfoAfter=Information
|
||||||
InfoAfterLabel=Lesen Sie bitte folgende wichtige Informationen, bevor Sie fortfahren.
|
InfoAfterLabel=Lesen Sie bitte folgende wichtige Informationen, bevor Sie fortfahren.
|
||||||
InfoAfterClickLabel=Klicken Sie auf "Weiter", sobald Sie bereit sind, mit dem Setup fortzufahren.
|
InfoAfterClickLabel=Klicken Sie auf "Weiter", sobald Sie bereit sind, mit dem Setup fortzufahren.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=Benutzerinformationen
|
WizardUserInfo=Benutzerinformationen
|
||||||
UserInfoDesc=Bitte tragen Sie Ihre Daten ein.
|
UserInfoDesc=Bitte tragen Sie Ihre Daten ein.
|
||||||
UserInfoName=&Name:
|
UserInfoName=&Name:
|
||||||
UserInfoOrg=&Organisation:
|
UserInfoOrg=&Organisation:
|
||||||
UserInfoSerial=&Seriennummer:
|
UserInfoSerial=&Seriennummer:
|
||||||
UserInfoNameRequired=Sie müssen einen Namen eintragen.
|
UserInfoNameRequired=Sie müssen einen Namen eintragen.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Ziel-Ordner wählen
|
WizardSelectDir=Ziel-Ordner wählen
|
||||||
SelectDirDesc=Wohin soll [name] installiert werden?
|
SelectDirDesc=Wohin soll [name] installiert werden?
|
||||||
SelectDirLabel3=Das Setup wird [name] in den folgenden Ordner installieren.
|
SelectDirLabel3=Das Setup wird [name] in den folgenden Ordner installieren.
|
||||||
SelectDirBrowseLabel=Klicken Sie auf "Weiter", um fortzufahren. Klicken Sie auf "Durchsuchen", falls Sie einen anderen Ordner auswählen möchten.
|
SelectDirBrowseLabel=Klicken Sie auf "Weiter", um fortzufahren. Klicken Sie auf "Durchsuchen", falls Sie einen anderen Ordner auswählen möchten.
|
||||||
DiskSpaceGBLabel=Mindestens [gb] GB freier Speicherplatz ist erforderlich.
|
DiskSpaceGBLabel=Mindestens [gb] GB freier Speicherplatz ist erforderlich.
|
||||||
DiskSpaceMBLabel=Mindestens [mb] MB freier Speicherplatz ist erforderlich.
|
DiskSpaceMBLabel=Mindestens [mb] MB freier Speicherplatz ist erforderlich.
|
||||||
CannotInstallToNetworkDrive=Das Setup kann nicht in einen Netzwerk-Pfad installieren.
|
CannotInstallToNetworkDrive=Das Setup kann nicht in einen Netzwerk-Pfad installieren.
|
||||||
CannotInstallToUNCPath=Das Setup kann nicht in einen UNC-Pfad installieren. Wenn Sie auf ein Netzlaufwerk installieren möchten, müssen Sie dem Netzwerkpfad einen Laufwerksbuchstaben zuordnen.
|
CannotInstallToUNCPath=Das Setup kann nicht in einen UNC-Pfad installieren. Wenn Sie auf ein Netzlaufwerk installieren möchten, müssen Sie dem Netzwerkpfad einen Laufwerksbuchstaben zuordnen.
|
||||||
InvalidPath=Sie müssen einen vollständigen Pfad mit einem Laufwerksbuchstaben angeben, z. B.:%n%nC:\Beispiel%n%noder einen UNC-Pfad in der Form:%n%n\\Server\Freigabe
|
InvalidPath=Sie müssen einen vollständigen Pfad mit einem Laufwerksbuchstaben angeben, z. B.:%n%nC:\Beispiel%n%noder einen UNC-Pfad in der Form:%n%n\\Server\Freigabe
|
||||||
InvalidDrive=Das angegebene Laufwerk bzw. der UNC-Pfad existiert nicht oder es kann nicht darauf zugegriffen werden. Wählen Sie bitte einen anderen Ordner.
|
InvalidDrive=Das angegebene Laufwerk bzw. der UNC-Pfad existiert nicht oder es kann nicht darauf zugegriffen werden. Wählen Sie bitte einen anderen Ordner.
|
||||||
DiskSpaceWarningTitle=Nicht genug freier Speicherplatz
|
DiskSpaceWarningTitle=Nicht genug freier Speicherplatz
|
||||||
DiskSpaceWarning=Das Setup benötigt mindestens %1 KB freien Speicherplatz zum Installieren, aber auf dem ausgewählten Laufwerk sind nur %2 KB verfügbar.%n%nMöchten Sie trotzdem fortfahren?
|
DiskSpaceWarning=Das Setup benötigt mindestens %1 KB freien Speicherplatz zum Installieren, aber auf dem ausgewählten Laufwerk sind nur %2 KB verfügbar.%n%nMöchten Sie trotzdem fortfahren?
|
||||||
DirNameTooLong=Der Ordnername/Pfad ist zu lang.
|
DirNameTooLong=Der Ordnername/Pfad ist zu lang.
|
||||||
InvalidDirName=Der Ordnername ist nicht gültig.
|
InvalidDirName=Der Ordnername ist nicht gültig.
|
||||||
BadDirName32=Ordnernamen dürfen keine der folgenden Zeichen enthalten:%n%n%1
|
BadDirName32=Ordnernamen dürfen keine der folgenden Zeichen enthalten:%n%n%1
|
||||||
DirExistsTitle=Ordner existiert bereits
|
DirExistsTitle=Ordner existiert bereits
|
||||||
DirExists=Der Ordner:%n%n%1%n%n existiert bereits. Möchten Sie trotzdem in diesen Ordner installieren?
|
DirExists=Der Ordner:%n%n%1%n%n existiert bereits. Möchten Sie trotzdem in diesen Ordner installieren?
|
||||||
DirDoesntExistTitle=Ordner ist nicht vorhanden
|
DirDoesntExistTitle=Ordner ist nicht vorhanden
|
||||||
DirDoesntExist=Der Ordner:%n%n%1%n%nist nicht vorhanden. Soll der Ordner erstellt werden?
|
DirDoesntExist=Der Ordner:%n%n%1%n%nist nicht vorhanden. Soll der Ordner erstellt werden?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Komponenten auswählen
|
WizardSelectComponents=Komponenten auswählen
|
||||||
SelectComponentsDesc=Welche Komponenten sollen installiert werden?
|
SelectComponentsDesc=Welche Komponenten sollen installiert werden?
|
||||||
SelectComponentsLabel2=Wählen Sie die Komponenten aus, die Sie installieren möchten. Klicken Sie auf "Weiter", wenn Sie bereit sind, fortzufahren.
|
SelectComponentsLabel2=Wählen Sie die Komponenten aus, die Sie installieren möchten. Klicken Sie auf "Weiter", wenn Sie bereit sind, fortzufahren.
|
||||||
FullInstallation=Vollständige Installation
|
FullInstallation=Vollständige Installation
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Kompakte Installation
|
CompactInstallation=Kompakte Installation
|
||||||
CustomInstallation=Benutzerdefinierte Installation
|
CustomInstallation=Benutzerdefinierte Installation
|
||||||
NoUninstallWarningTitle=Komponenten vorhanden
|
NoUninstallWarningTitle=Komponenten vorhanden
|
||||||
NoUninstallWarning=Das Setup hat festgestellt, dass die folgenden Komponenten bereits auf Ihrem Computer installiert sind:%n%n%1%n%nDiese nicht mehr ausgewählten Komponenten werden nicht vom Computer entfernt.%n%nMöchten Sie trotzdem fortfahren?
|
NoUninstallWarning=Das Setup hat festgestellt, dass die folgenden Komponenten bereits auf Ihrem Computer installiert sind:%n%n%1%n%nDiese nicht mehr ausgewählten Komponenten werden nicht vom Computer entfernt.%n%nMöchten Sie trotzdem fortfahren?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=Die aktuelle Auswahl erfordert mindestens [gb] GB Speicherplatz.
|
ComponentsDiskSpaceGBLabel=Die aktuelle Auswahl erfordert mindestens [gb] GB Speicherplatz.
|
||||||
ComponentsDiskSpaceMBLabel=Die aktuelle Auswahl erfordert mindestens [mb] MB Speicherplatz.
|
ComponentsDiskSpaceMBLabel=Die aktuelle Auswahl erfordert mindestens [mb] MB Speicherplatz.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Zusätzliche Aufgaben auswählen
|
WizardSelectTasks=Zusätzliche Aufgaben auswählen
|
||||||
SelectTasksDesc=Welche zusätzlichen Aufgaben sollen ausgeführt werden?
|
SelectTasksDesc=Welche zusätzlichen Aufgaben sollen ausgeführt werden?
|
||||||
SelectTasksLabel2=Wählen Sie die zusätzlichen Aufgaben aus, die das Setup während der Installation von [name] ausführen soll, und klicken Sie danach auf "Weiter".
|
SelectTasksLabel2=Wählen Sie die zusätzlichen Aufgaben aus, die das Setup während der Installation von [name] ausführen soll, und klicken Sie danach auf "Weiter".
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Startmenü-Ordner auswählen
|
WizardSelectProgramGroup=Startmenü-Ordner auswählen
|
||||||
SelectStartMenuFolderDesc=Wo soll das Setup die Programm-Verknüpfungen erstellen?
|
SelectStartMenuFolderDesc=Wo soll das Setup die Programm-Verknüpfungen erstellen?
|
||||||
SelectStartMenuFolderLabel3=Das Setup wird die Programm-Verknüpfungen im folgenden Startmenü-Ordner erstellen.
|
SelectStartMenuFolderLabel3=Das Setup wird die Programm-Verknüpfungen im folgenden Startmenü-Ordner erstellen.
|
||||||
SelectStartMenuFolderBrowseLabel=Klicken Sie auf "Weiter", um fortzufahren. Klicken Sie auf "Durchsuchen", falls Sie einen anderen Ordner auswählen möchten.
|
SelectStartMenuFolderBrowseLabel=Klicken Sie auf "Weiter", um fortzufahren. Klicken Sie auf "Durchsuchen", falls Sie einen anderen Ordner auswählen möchten.
|
||||||
MustEnterGroupName=Sie müssen einen Ordnernamen eingeben.
|
MustEnterGroupName=Sie müssen einen Ordnernamen eingeben.
|
||||||
GroupNameTooLong=Der Ordnername/Pfad ist zu lang.
|
GroupNameTooLong=Der Ordnername/Pfad ist zu lang.
|
||||||
InvalidGroupName=Der Ordnername ist nicht gültig.
|
InvalidGroupName=Der Ordnername ist nicht gültig.
|
||||||
BadGroupName=Der Ordnername darf keine der folgenden Zeichen enthalten:%n%n%1
|
BadGroupName=Der Ordnername darf keine der folgenden Zeichen enthalten:%n%n%1
|
||||||
NoProgramGroupCheck2=&Keinen Ordner im Startmenü erstellen
|
NoProgramGroupCheck2=&Keinen Ordner im Startmenü erstellen
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Bereit zur Installation.
|
WizardReady=Bereit zur Installation.
|
||||||
ReadyLabel1=Das Setup ist jetzt bereit, [name] auf Ihrem Computer zu installieren.
|
ReadyLabel1=Das Setup ist jetzt bereit, [name] auf Ihrem Computer zu installieren.
|
||||||
ReadyLabel2a=Klicken Sie auf "Installieren", um mit der Installation zu beginnen, oder auf "Zurück", um Ihre Einstellungen zu überprüfen oder zu ändern.
|
ReadyLabel2a=Klicken Sie auf "Installieren", um mit der Installation zu beginnen, oder auf "Zurück", um Ihre Einstellungen zu überprüfen oder zu ändern.
|
||||||
ReadyLabel2b=Klicken Sie auf "Installieren", um mit der Installation zu beginnen.
|
ReadyLabel2b=Klicken Sie auf "Installieren", um mit der Installation zu beginnen.
|
||||||
ReadyMemoUserInfo=Benutzerinformationen:
|
ReadyMemoUserInfo=Benutzerinformationen:
|
||||||
ReadyMemoDir=Ziel-Ordner:
|
ReadyMemoDir=Ziel-Ordner:
|
||||||
ReadyMemoType=Setup-Typ:
|
ReadyMemoType=Setup-Typ:
|
||||||
ReadyMemoComponents=Ausgewählte Komponenten:
|
ReadyMemoComponents=Ausgewählte Komponenten:
|
||||||
ReadyMemoGroup=Startmenü-Ordner:
|
ReadyMemoGroup=Startmenü-Ordner:
|
||||||
ReadyMemoTasks=Zusätzliche Aufgaben:
|
ReadyMemoTasks=Zusätzliche Aufgaben:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Lade zusätzliche Dateien herunter...
|
DownloadingLabel=Lade zusätzliche Dateien herunter...
|
||||||
ButtonStopDownload=Download &abbrechen
|
ButtonStopDownload=Download &abbrechen
|
||||||
StopDownload=Sind Sie sicher, dass Sie den Download abbrechen wollen?
|
StopDownload=Sind Sie sicher, dass Sie den Download abbrechen wollen?
|
||||||
ErrorDownloadAborted=Download abgebrochen
|
ErrorDownloadAborted=Download abgebrochen
|
||||||
ErrorDownloadFailed=Download fehlgeschlagen: %1 %2
|
ErrorDownloadFailed=Download fehlgeschlagen: %1 %2
|
||||||
ErrorDownloadSizeFailed=Fehler beim Ermitteln der Größe: %1 %2
|
ErrorDownloadSizeFailed=Fehler beim Ermitteln der Größe: %1 %2
|
||||||
ErrorFileHash1=Fehler beim Ermitteln der Datei-Prüfsumme: %1
|
ErrorFileHash1=Fehler beim Ermitteln der Datei-Prüfsumme: %1
|
||||||
ErrorFileHash2=Ungültige Datei-Prüfsumme: erwartet %1, gefunden %2
|
ErrorFileHash2=Ungültige Datei-Prüfsumme: erwartet %1, gefunden %2
|
||||||
ErrorProgress=Ungültiger Fortschritt: %1 von %2
|
ErrorProgress=Ungültiger Fortschritt: %1 von %2
|
||||||
ErrorFileSize=Ungültige Dateigröße: erwartet %1, gefunden %2
|
ErrorFileSize=Ungültige Dateigröße: erwartet %1, gefunden %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Vorbereitung der Installation
|
WizardPreparing=Vorbereitung der Installation
|
||||||
PreparingDesc=Das Setup bereitet die Installation von [name] auf diesem Computer vor.
|
PreparingDesc=Das Setup bereitet die Installation von [name] auf diesem Computer vor.
|
||||||
PreviousInstallNotCompleted=Eine vorherige Installation/Deinstallation eines Programms wurde nicht abgeschlossen. Der Computer muss neu gestartet werden, um die Installation/Deinstallation zu beenden.%n%nStarten Sie das Setup nach dem Neustart Ihres Computers erneut, um die Installation von [name] durchzuführen.
|
PreviousInstallNotCompleted=Eine vorherige Installation/Deinstallation eines Programms wurde nicht abgeschlossen. Der Computer muss neu gestartet werden, um die Installation/Deinstallation zu beenden.%n%nStarten Sie das Setup nach dem Neustart Ihres Computers erneut, um die Installation von [name] durchzuführen.
|
||||||
CannotContinue=Das Setup kann nicht fortfahren. Bitte klicken Sie auf "Abbrechen" zum Verlassen.
|
CannotContinue=Das Setup kann nicht fortfahren. Bitte klicken Sie auf "Abbrechen" zum Verlassen.
|
||||||
ApplicationsFound=Die folgenden Anwendungen benutzen Dateien, die aktualisiert werden müssen. Es wird empfohlen, Setup zu erlauben, diese Anwendungen zu schließen.
|
ApplicationsFound=Die folgenden Anwendungen benutzen Dateien, die aktualisiert werden müssen. Es wird empfohlen, Setup zu erlauben, diese Anwendungen zu schließen.
|
||||||
ApplicationsFound2=Die folgenden Anwendungen benutzen Dateien, die aktualisiert werden müssen. Es wird empfohlen, Setup zu erlauben, diese Anwendungen zu schließen. Nachdem die Installation fertiggestellt wurde, versucht Setup, diese Anwendungen wieder zu starten.
|
ApplicationsFound2=Die folgenden Anwendungen benutzen Dateien, die aktualisiert werden müssen. Es wird empfohlen, Setup zu erlauben, diese Anwendungen zu schließen. Nachdem die Installation fertiggestellt wurde, versucht Setup, diese Anwendungen wieder zu starten.
|
||||||
CloseApplications=&Schließe die Anwendungen automatisch
|
CloseApplications=&Schließe die Anwendungen automatisch
|
||||||
DontCloseApplications=Schließe die A&nwendungen nicht
|
DontCloseApplications=Schließe die A&nwendungen nicht
|
||||||
ErrorCloseApplications=Das Setup konnte nicht alle Anwendungen automatisch schließen. Es wird empfohlen, alle Anwendungen zu schließen, die Dateien benutzen, die vom Setup vor einer Fortsetzung aktualisiert werden müssen.
|
ErrorCloseApplications=Das Setup konnte nicht alle Anwendungen automatisch schließen. Es wird empfohlen, alle Anwendungen zu schließen, die Dateien benutzen, die vom Setup vor einer Fortsetzung aktualisiert werden müssen.
|
||||||
PrepareToInstallNeedsRestart=Das Setup muss Ihren Computer neu starten. Führen Sie nach dem Neustart Setup erneut aus, um die Installation von [name] abzuschließen.%n%nWollen Sie jetzt neu starten?
|
PrepareToInstallNeedsRestart=Das Setup muss Ihren Computer neu starten. Führen Sie nach dem Neustart Setup erneut aus, um die Installation von [name] abzuschließen.%n%nWollen Sie jetzt neu starten?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Installiere ...
|
WizardInstalling=Installiere ...
|
||||||
InstallingLabel=Warten Sie bitte, während [name] auf Ihrem Computer installiert wird.
|
InstallingLabel=Warten Sie bitte, während [name] auf Ihrem Computer installiert wird.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=Beenden des [name] Setup-Assistenten
|
FinishedHeadingLabel=Beenden des [name] Setup-Assistenten
|
||||||
FinishedLabelNoIcons=Das Setup hat die Installation von [name] auf Ihrem Computer abgeschlossen.
|
FinishedLabelNoIcons=Das Setup hat die Installation von [name] auf Ihrem Computer abgeschlossen.
|
||||||
FinishedLabel=Das Setup hat die Installation von [name] auf Ihrem Computer abgeschlossen. Die Anwendung kann über die installierten Programm-Verknüpfungen gestartet werden.
|
FinishedLabel=Das Setup hat die Installation von [name] auf Ihrem Computer abgeschlossen. Die Anwendung kann über die installierten Programm-Verknüpfungen gestartet werden.
|
||||||
ClickFinish=Klicken Sie auf "Fertigstellen", um das Setup zu beenden.
|
ClickFinish=Klicken Sie auf "Fertigstellen", um das Setup zu beenden.
|
||||||
FinishedRestartLabel=Um die Installation von [name] abzuschließen, muss das Setup Ihren Computer neu starten. Möchten Sie jetzt neu starten?
|
FinishedRestartLabel=Um die Installation von [name] abzuschließen, muss das Setup Ihren Computer neu starten. Möchten Sie jetzt neu starten?
|
||||||
FinishedRestartMessage=Um die Installation von [name] abzuschließen, muss das Setup Ihren Computer neu starten.%n%nMöchten Sie jetzt neu starten?
|
FinishedRestartMessage=Um die Installation von [name] abzuschließen, muss das Setup Ihren Computer neu starten.%n%nMöchten Sie jetzt neu starten?
|
||||||
ShowReadmeCheck=Ja, ich möchte die LIESMICH-Datei sehen
|
ShowReadmeCheck=Ja, ich möchte die LIESMICH-Datei sehen
|
||||||
YesRadio=&Ja, Computer jetzt neu starten
|
YesRadio=&Ja, Computer jetzt neu starten
|
||||||
NoRadio=&Nein, ich werde den Computer später neu starten
|
NoRadio=&Nein, ich werde den Computer später neu starten
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=%1 starten
|
RunEntryExec=%1 starten
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=%1 anzeigen
|
RunEntryShellExec=%1 anzeigen
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=Nächsten Datenträger einlegen
|
ChangeDiskTitle=Nächsten Datenträger einlegen
|
||||||
SelectDiskLabel2=Legen Sie bitte Datenträger %1 ein und klicken Sie auf "OK".%n%nWenn sich die Dateien von diesem Datenträger in einem anderen als dem angezeigten Ordner befinden, dann geben Sie bitte den korrekten Pfad ein oder klicken auf "Durchsuchen".
|
SelectDiskLabel2=Legen Sie bitte Datenträger %1 ein und klicken Sie auf "OK".%n%nWenn sich die Dateien von diesem Datenträger in einem anderen als dem angezeigten Ordner befinden, dann geben Sie bitte den korrekten Pfad ein oder klicken auf "Durchsuchen".
|
||||||
PathLabel=&Pfad:
|
PathLabel=&Pfad:
|
||||||
FileNotInDir2=Die Datei "%1" befindet sich nicht in "%2". Bitte Ordner ändern oder richtigen Datenträger einlegen.
|
FileNotInDir2=Die Datei "%1" befindet sich nicht in "%2". Bitte Ordner ändern oder richtigen Datenträger einlegen.
|
||||||
SelectDirectoryLabel=Geben Sie bitte an, wo der nächste Datenträger eingelegt wird.
|
SelectDirectoryLabel=Geben Sie bitte an, wo der nächste Datenträger eingelegt wird.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=Das Setup konnte nicht abgeschlossen werden.%n%nBeheben Sie bitte das Problem und starten Sie das Setup erneut.
|
SetupAborted=Das Setup konnte nicht abgeschlossen werden.%n%nBeheben Sie bitte das Problem und starten Sie das Setup erneut.
|
||||||
AbortRetryIgnoreSelectAction=Bitte auswählen
|
AbortRetryIgnoreSelectAction=Bitte auswählen
|
||||||
AbortRetryIgnoreRetry=&Nochmals versuchen
|
AbortRetryIgnoreRetry=&Nochmals versuchen
|
||||||
AbortRetryIgnoreIgnore=&Den Fehler ignorieren und fortfahren
|
AbortRetryIgnoreIgnore=&Den Fehler ignorieren und fortfahren
|
||||||
AbortRetryIgnoreCancel=Installation abbrechen
|
AbortRetryIgnoreCancel=Installation abbrechen
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Anwendungen werden geschlossen ...
|
StatusClosingApplications=Anwendungen werden geschlossen ...
|
||||||
StatusCreateDirs=Ordner werden erstellt ...
|
StatusCreateDirs=Ordner werden erstellt ...
|
||||||
StatusExtractFiles=Dateien werden entpackt ...
|
StatusExtractFiles=Dateien werden entpackt ...
|
||||||
StatusCreateIcons=Verknüpfungen werden erstellt ...
|
StatusCreateIcons=Verknüpfungen werden erstellt ...
|
||||||
StatusCreateIniEntries=INI-Einträge werden erstellt ...
|
StatusCreateIniEntries=INI-Einträge werden erstellt ...
|
||||||
StatusCreateRegistryEntries=Registry-Einträge werden erstellt ...
|
StatusCreateRegistryEntries=Registry-Einträge werden erstellt ...
|
||||||
StatusRegisterFiles=Dateien werden registriert ...
|
StatusRegisterFiles=Dateien werden registriert ...
|
||||||
StatusSavingUninstall=Deinstallationsinformationen werden gespeichert ...
|
StatusSavingUninstall=Deinstallationsinformationen werden gespeichert ...
|
||||||
StatusRunProgram=Installation wird beendet ...
|
StatusRunProgram=Installation wird beendet ...
|
||||||
StatusRestartingApplications=Neustart der Anwendungen ...
|
StatusRestartingApplications=Neustart der Anwendungen ...
|
||||||
StatusRollback=Änderungen werden rückgängig gemacht ...
|
StatusRollback=Änderungen werden rückgängig gemacht ...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Interner Fehler: %1
|
ErrorInternal2=Interner Fehler: %1
|
||||||
ErrorFunctionFailedNoCode=%1 schlug fehl
|
ErrorFunctionFailedNoCode=%1 schlug fehl
|
||||||
ErrorFunctionFailed=%1 schlug fehl; Code %2
|
ErrorFunctionFailed=%1 schlug fehl; Code %2
|
||||||
ErrorFunctionFailedWithMessage=%1 schlug fehl; Code %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 schlug fehl; Code %2.%n%3
|
||||||
ErrorExecutingProgram=Datei kann nicht ausgeführt werden:%n%1
|
ErrorExecutingProgram=Datei kann nicht ausgeführt werden:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Registry-Schlüssel konnte nicht geöffnet werden:%n%1\%2
|
ErrorRegOpenKey=Registry-Schlüssel konnte nicht geöffnet werden:%n%1\%2
|
||||||
ErrorRegCreateKey=Registry-Schlüssel konnte nicht erstellt werden:%n%1\%2
|
ErrorRegCreateKey=Registry-Schlüssel konnte nicht erstellt werden:%n%1\%2
|
||||||
ErrorRegWriteKey=Fehler beim Schreiben des Registry-Schlüssels:%n%1\%2
|
ErrorRegWriteKey=Fehler beim Schreiben des Registry-Schlüssels:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Fehler beim Erstellen eines INI-Eintrages in der Datei "%1".
|
ErrorIniEntry=Fehler beim Erstellen eines INI-Eintrages in der Datei "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=Diese Datei &überspringen (nicht empfohlen)
|
FileAbortRetryIgnoreSkipNotRecommended=Diese Datei &überspringen (nicht empfohlen)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=Den Fehler &ignorieren und fortfahren (nicht empfohlen)
|
FileAbortRetryIgnoreIgnoreNotRecommended=Den Fehler &ignorieren und fortfahren (nicht empfohlen)
|
||||||
SourceIsCorrupted=Die Quelldatei ist beschädigt
|
SourceIsCorrupted=Die Quelldatei ist beschädigt
|
||||||
SourceDoesntExist=Die Quelldatei "%1" existiert nicht
|
SourceDoesntExist=Die Quelldatei "%1" existiert nicht
|
||||||
ExistingFileReadOnly2=Die vorhandene Datei kann nicht ersetzt werden, da sie schreibgeschützt ist.
|
ExistingFileReadOnly2=Die vorhandene Datei kann nicht ersetzt werden, da sie schreibgeschützt ist.
|
||||||
ExistingFileReadOnlyRetry=&Den Schreibschutz entfernen und noch einmal versuchen
|
ExistingFileReadOnlyRetry=&Den Schreibschutz entfernen und noch einmal versuchen
|
||||||
ExistingFileReadOnlyKeepExisting=Die &vorhandene Datei behalten
|
ExistingFileReadOnlyKeepExisting=Die &vorhandene Datei behalten
|
||||||
ErrorReadingExistingDest=Lesefehler in Datei:
|
ErrorReadingExistingDest=Lesefehler in Datei:
|
||||||
FileExistsSelectAction=Aktion auswählen
|
FileExistsSelectAction=Aktion auswählen
|
||||||
FileExists2=Die Datei ist bereits vorhanden.
|
FileExists2=Die Datei ist bereits vorhanden.
|
||||||
FileExistsOverwriteExisting=Vorhandene Datei &überschreiben
|
FileExistsOverwriteExisting=Vorhandene Datei &überschreiben
|
||||||
FileExistsKeepExisting=Vorhandene Datei &behalten
|
FileExistsKeepExisting=Vorhandene Datei &behalten
|
||||||
FileExistsOverwriteOrKeepAll=&Dies auch für die nächsten Konflikte ausführen
|
FileExistsOverwriteOrKeepAll=&Dies auch für die nächsten Konflikte ausführen
|
||||||
ExistingFileNewerSelectAction=Aktion auswählen
|
ExistingFileNewerSelectAction=Aktion auswählen
|
||||||
ExistingFileNewer2=Die vorhandene Datei ist neuer als die Datei, die installiert werden soll.
|
ExistingFileNewer2=Die vorhandene Datei ist neuer als die Datei, die installiert werden soll.
|
||||||
ExistingFileNewerOverwriteExisting=Vorhandene Datei &überschreiben
|
ExistingFileNewerOverwriteExisting=Vorhandene Datei &überschreiben
|
||||||
ExistingFileNewerKeepExisting=Vorhandene Datei &behalten (empfohlen)
|
ExistingFileNewerKeepExisting=Vorhandene Datei &behalten (empfohlen)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Dies auch für die nächsten Konflikte ausführen
|
ExistingFileNewerOverwriteOrKeepAll=&Dies auch für die nächsten Konflikte ausführen
|
||||||
ErrorChangingAttr=Fehler beim Ändern der Datei-Attribute:
|
ErrorChangingAttr=Fehler beim Ändern der Datei-Attribute:
|
||||||
ErrorCreatingTemp=Fehler beim Erstellen einer Datei im Ziel-Ordner:
|
ErrorCreatingTemp=Fehler beim Erstellen einer Datei im Ziel-Ordner:
|
||||||
ErrorReadingSource=Fehler beim Lesen der Quelldatei:
|
ErrorReadingSource=Fehler beim Lesen der Quelldatei:
|
||||||
ErrorCopying=Fehler beim Kopieren einer Datei:
|
ErrorCopying=Fehler beim Kopieren einer Datei:
|
||||||
ErrorReplacingExistingFile=Fehler beim Ersetzen einer vorhandenen Datei:
|
ErrorReplacingExistingFile=Fehler beim Ersetzen einer vorhandenen Datei:
|
||||||
ErrorRestartReplace="Ersetzen nach Neustart" fehlgeschlagen:
|
ErrorRestartReplace="Ersetzen nach Neustart" fehlgeschlagen:
|
||||||
ErrorRenamingTemp=Fehler beim Umbenennen einer Datei im Ziel-Ordner:
|
ErrorRenamingTemp=Fehler beim Umbenennen einer Datei im Ziel-Ordner:
|
||||||
ErrorRegisterServer=DLL/OCX konnte nicht registriert werden: %1
|
ErrorRegisterServer=DLL/OCX konnte nicht registriert werden: %1
|
||||||
ErrorRegSvr32Failed=RegSvr32-Aufruf scheiterte mit Exit-Code %1
|
ErrorRegSvr32Failed=RegSvr32-Aufruf scheiterte mit Exit-Code %1
|
||||||
ErrorRegisterTypeLib=Typen-Bibliothek konnte nicht registriert werden: %1
|
ErrorRegisterTypeLib=Typen-Bibliothek konnte nicht registriert werden: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; used for example as 'Mein Programm (32 Bit)'
|
; used for example as 'Mein Programm (32 Bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'Mein Programm (32 Bit, Alle Benutzer)'
|
; used for example as 'Mein Programm (32 Bit, Alle Benutzer)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32 Bit
|
UninstallDisplayNameMark32Bit=32 Bit
|
||||||
UninstallDisplayNameMark64Bit=64 Bit
|
UninstallDisplayNameMark64Bit=64 Bit
|
||||||
UninstallDisplayNameMarkAllUsers=Alle Benutzer
|
UninstallDisplayNameMarkAllUsers=Alle Benutzer
|
||||||
UninstallDisplayNameMarkCurrentUser=Aktueller Benutzer
|
UninstallDisplayNameMarkCurrentUser=Aktueller Benutzer
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Fehler beim Öffnen der LIESMICH-Datei.
|
ErrorOpeningReadme=Fehler beim Öffnen der LIESMICH-Datei.
|
||||||
ErrorRestartingComputer=Das Setup konnte den Computer nicht neu starten. Bitte führen Sie den Neustart manuell durch.
|
ErrorRestartingComputer=Das Setup konnte den Computer nicht neu starten. Bitte führen Sie den Neustart manuell durch.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=Die Datei "%1" existiert nicht. Entfernen der Anwendung fehlgeschlagen.
|
UninstallNotFound=Die Datei "%1" existiert nicht. Entfernen der Anwendung fehlgeschlagen.
|
||||||
UninstallOpenError=Die Datei "%1" konnte nicht geöffnet werden. Entfernen der Anwendung fehlgeschlagen.
|
UninstallOpenError=Die Datei "%1" konnte nicht geöffnet werden. Entfernen der Anwendung fehlgeschlagen.
|
||||||
UninstallUnsupportedVer=Das Format der Deinstallationsdatei "%1" konnte nicht erkannt werden. Entfernen der Anwendung fehlgeschlagen.
|
UninstallUnsupportedVer=Das Format der Deinstallationsdatei "%1" konnte nicht erkannt werden. Entfernen der Anwendung fehlgeschlagen.
|
||||||
UninstallUnknownEntry=In der Deinstallationsdatei wurde ein unbekannter Eintrag (%1) gefunden.
|
UninstallUnknownEntry=In der Deinstallationsdatei wurde ein unbekannter Eintrag (%1) gefunden.
|
||||||
ConfirmUninstall=Möchten Sie den %1 Deinstallationsassistenten wirklich ausführen?
|
ConfirmUninstall=Möchten Sie den %1 Deinstallationsassistenten wirklich ausführen?
|
||||||
UninstallOnlyOnWin64=Diese Installation kann nur unter 64-Bit-Windows-Versionen entfernt werden.
|
UninstallOnlyOnWin64=Diese Installation kann nur unter 64-Bit-Windows-Versionen entfernt werden.
|
||||||
OnlyAdminCanUninstall=Diese Installation kann nur von einem Benutzer mit Administrator-Rechten entfernt werden.
|
OnlyAdminCanUninstall=Diese Installation kann nur von einem Benutzer mit Administrator-Rechten entfernt werden.
|
||||||
UninstallStatusLabel=Warten Sie bitte, während %1 von Ihrem Computer entfernt wird.
|
UninstallStatusLabel=Warten Sie bitte, während %1 von Ihrem Computer entfernt wird.
|
||||||
UninstalledAll=%1 wurde erfolgreich von Ihrem Computer entfernt.
|
UninstalledAll=%1 wurde erfolgreich von Ihrem Computer entfernt.
|
||||||
UninstalledMost=Entfernen von %1 beendet.%n%nEinige Komponenten konnten nicht entfernt werden. Diese können von Ihnen manuell gelöscht werden.
|
UninstalledMost=Entfernen von %1 beendet.%n%nEinige Komponenten konnten nicht entfernt werden. Diese können von Ihnen manuell gelöscht werden.
|
||||||
UninstalledAndNeedsRestart=Um die Deinstallation von %1 abzuschließen, muss Ihr Computer neu gestartet werden.%n%nMöchten Sie jetzt neu starten?
|
UninstalledAndNeedsRestart=Um die Deinstallation von %1 abzuschließen, muss Ihr Computer neu gestartet werden.%n%nMöchten Sie jetzt neu starten?
|
||||||
UninstallDataCorrupted="%1"-Datei ist beschädigt. Entfernen der Anwendung fehlgeschlagen.
|
UninstallDataCorrupted="%1"-Datei ist beschädigt. Entfernen der Anwendung fehlgeschlagen.
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Gemeinsame Datei entfernen?
|
ConfirmDeleteSharedFileTitle=Gemeinsame Datei entfernen?
|
||||||
ConfirmDeleteSharedFile2=Das System zeigt an, dass die folgende gemeinsame Datei von keinem anderen Programm mehr benutzt wird. Möchten Sie diese Datei entfernen lassen?%nSollte es doch noch Programme geben, die diese Datei benutzen und sie wird entfernt, funktionieren diese Programme vielleicht nicht mehr richtig. Wenn Sie unsicher sind, wählen Sie "Nein", um die Datei im System zu belassen. Es schadet Ihrem System nicht, wenn Sie die Datei behalten.
|
ConfirmDeleteSharedFile2=Das System zeigt an, dass die folgende gemeinsame Datei von keinem anderen Programm mehr benutzt wird. Möchten Sie diese Datei entfernen lassen?%nSollte es doch noch Programme geben, die diese Datei benutzen und sie wird entfernt, funktionieren diese Programme vielleicht nicht mehr richtig. Wenn Sie unsicher sind, wählen Sie "Nein", um die Datei im System zu belassen. Es schadet Ihrem System nicht, wenn Sie die Datei behalten.
|
||||||
SharedFileNameLabel=Dateiname:
|
SharedFileNameLabel=Dateiname:
|
||||||
SharedFileLocationLabel=Ordner:
|
SharedFileLocationLabel=Ordner:
|
||||||
WizardUninstalling=Entfernen (Status)
|
WizardUninstalling=Entfernen (Status)
|
||||||
StatusUninstalling=Entferne %1 ...
|
StatusUninstalling=Entferne %1 ...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Installation von %1.
|
ShutdownBlockReasonInstallingApp=Installation von %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Deinstallation von %1.
|
ShutdownBlockReasonUninstallingApp=Deinstallation von %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 Version %2
|
NameAndVersion=%1 Version %2
|
||||||
AdditionalIcons=Zusätzliche Symbole:
|
AdditionalIcons=Zusätzliche Symbole:
|
||||||
CreateDesktopIcon=&Desktop-Symbol erstellen
|
CreateDesktopIcon=&Desktop-Symbol erstellen
|
||||||
CreateQuickLaunchIcon=Symbol in der Schnellstartleiste erstellen
|
CreateQuickLaunchIcon=Symbol in der Schnellstartleiste erstellen
|
||||||
ProgramOnTheWeb=%1 im Internet
|
ProgramOnTheWeb=%1 im Internet
|
||||||
UninstallProgram=%1 entfernen
|
UninstallProgram=%1 entfernen
|
||||||
LaunchProgram=%1 starten
|
LaunchProgram=%1 starten
|
||||||
AssocFileExtension=&Registriere %1 mit der %2-Dateierweiterung
|
AssocFileExtension=&Registriere %1 mit der %2-Dateierweiterung
|
||||||
AssocingFileExtension=%1 wird mit der %2-Dateierweiterung registriert...
|
AssocingFileExtension=%1 wird mit der %2-Dateierweiterung registriert...
|
||||||
AutoStartProgramGroupDescription=Beginn des Setups:
|
AutoStartProgramGroupDescription=Beginn des Setups:
|
||||||
AutoStartProgram=Starte automatisch %1
|
AutoStartProgram=Starte automatisch %1
|
||||||
AddonHostProgramNotFound=%1 konnte im ausgewählten Ordner nicht gefunden werden.%n%nMöchten Sie dennoch fortfahren?
|
AddonHostProgramNotFound=%1 konnte im ausgewählten Ordner nicht gefunden werden.%n%nMöchten Sie dennoch fortfahren?
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Installationsmodus wählen
|
SelectSetupInstallModeTitle=Installationsmodus wählen
|
||||||
SelectSetupInstallModeDesc=VCMI kann für alle Benutzer oder nur für Sie installiert werden.
|
SelectSetupInstallModeDesc=VCMI kann für alle Benutzer oder nur für Sie installiert werden.
|
||||||
SelectSetupInstallModeSubTitle=Wählen Sie den gewünschten Installationsmodus:
|
SelectSetupInstallModeSubTitle=Wählen Sie den gewünschten Installationsmodus:
|
||||||
InstallForAllUsers=Für alle Benutzer installieren
|
InstallForAllUsers=Für alle Benutzer installieren
|
||||||
InstallForAllUsers1=Erfordert Administratorrechte
|
InstallForAllUsers1=Erfordert Administratorrechte
|
||||||
InstallForMeOnly=Nur für mich installieren
|
InstallForMeOnly=Nur für mich installieren
|
||||||
InstallForMeOnly1=Eine Firewall-Aufforderung erscheint beim ersten Start des Spiels.
|
InstallForMeOnly1=Eine Firewall-Aufforderung erscheint beim ersten Start des Spiels.
|
||||||
InstallForMeOnly2=Warnung: LAN-Spiele funktionieren nicht, wenn die Firewall-Regel nicht erlaubt werden kann.
|
InstallForMeOnly2=Warnung: LAN-Spiele funktionieren nicht, wenn die Firewall-Regel nicht erlaubt werden kann.
|
||||||
CreateDesktopShortcuts=Desktop-Verknüpfungen erstellen
|
CreateDesktopShortcuts=Desktop-Verknüpfungen erstellen
|
||||||
ShortcutsOptions=Verknüpfungsoptionen
|
ShortcutsOptions=Verknüpfungsoptionen
|
||||||
CreateStartMenuShortcuts=Verknüpfungen im Startmenü erstellen
|
CreateStartMenuShortcuts=Verknüpfungen im Startmenü erstellen
|
||||||
FirewallOptions=Firewall-Einstellungen
|
FirewallOptions=Firewall-Einstellungen
|
||||||
AddFirewallRules=Firewall-Regeln für VCMI hinzufügen
|
AddFirewallRules=Firewall-Regeln für VCMI hinzufügen
|
||||||
FileAssociations=Dateizuordnungen
|
FileAssociations=Dateizuordnungen
|
||||||
AssociateH3MFiles=.h3m-Dateien mit dem VCMI-Karteneditor verknüpfen
|
AssociateH3MFiles=.h3m-Dateien mit dem VCMI-Karteneditor verknüpfen
|
||||||
AssociateVMapFiles=.vmap-Dateien mit dem VCMI-Karteneditor verknüpfen
|
AssociateVMapFiles=.vmap-Dateien mit dem VCMI-Karteneditor verknüpfen
|
||||||
RunVCMILauncherAfterInstall=VCMI Launcher starten
|
RunVCMILauncherAfterInstall=VCMI Launcher starten
|
||||||
ShortcutMapEditor=VCMI-Karteneditor
|
ShortcutMapEditor=VCMI-Karteneditor
|
||||||
ShortcutLauncher=VCMI Launcher
|
ShortcutLauncher=VCMI Launcher
|
||||||
ShortcutWebPage=VCMI-Website
|
ShortcutWebPage=VCMI-Website
|
||||||
ShortcutDiscord=VCMI-Discord
|
ShortcutDiscord=VCMI-Discord
|
||||||
ShortcutLauncherComment=VCMI Launcher starten
|
ShortcutLauncherComment=VCMI Launcher starten
|
||||||
ShortcutMapEditorComment=VCMI-Karteneditor öffnen
|
ShortcutMapEditorComment=VCMI-Karteneditor öffnen
|
||||||
ShortcutWebPageComment=Die offizielle VCMI-Website besuchen
|
ShortcutWebPageComment=Die offizielle VCMI-Website besuchen
|
||||||
ShortcutDiscordComment=Den offiziellen VCMI-Discord besuchen
|
ShortcutDiscordComment=Den offiziellen VCMI-Discord besuchen
|
||||||
DeleteUserData=Benutzerdaten löschen
|
DeleteUserData=Benutzerdaten löschen
|
||||||
Uninstall=Deinstallieren
|
Uninstall=Deinstallieren
|
||||||
VMAPDescription=VCMI-Kartendatei
|
VMAPDescription=VCMI-Kartendatei
|
||||||
H3MDescription=Heroes 3-Kartendatei
|
H3MDescription=Heroes 3-Kartendatei
|
@@ -1,417 +1,417 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Hungarian messages ***
|
; *** Inno Setup version 6.1.0+ Hungarian messages ***
|
||||||
; Based on the translation of Kornél Pál, kornelpal@gmail.com
|
; Based on the translation of Kornél Pál, kornelpal@gmail.com
|
||||||
; István Szabó, E-mail: istvanszabo890629@gmail.com
|
; István Szabó, E-mail: istvanszabo890629@gmail.com
|
||||||
;
|
;
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; http://www.jrsoftware.org/files/istrans/
|
; http://www.jrsoftware.org/files/istrans/
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=Magyar
|
LanguageName=Magyar
|
||||||
LanguageID=$040E
|
LanguageID=$040E
|
||||||
LanguageCodePage=1250
|
LanguageCodePage=1250
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial CE
|
;TitleFontName=Arial CE
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial CE
|
;CopyrightFontName=Arial CE
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Telepítő
|
SetupAppTitle=Telepítő
|
||||||
SetupWindowTitle=%1 - Telepítő
|
SetupWindowTitle=%1 - Telepítő
|
||||||
UninstallAppTitle=Eltávolító
|
UninstallAppTitle=Eltávolító
|
||||||
UninstallAppFullTitle=%1 - Eltávolító
|
UninstallAppFullTitle=%1 - Eltávolító
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Információk
|
InformationTitle=Információk
|
||||||
ConfirmTitle=Megerősít
|
ConfirmTitle=Megerősít
|
||||||
ErrorTitle=Hiba
|
ErrorTitle=Hiba
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=%1 telepítve lesz. Szeretné folytatni?
|
SetupLdrStartupMessage=%1 telepítve lesz. Szeretné folytatni?
|
||||||
LdrCannotCreateTemp=Átmeneti fájl létrehozása nem lehetséges. A telepítés megszakítva
|
LdrCannotCreateTemp=Átmeneti fájl létrehozása nem lehetséges. A telepítés megszakítva
|
||||||
LdrCannotExecTemp=Fájl futattása nem lehetséges az átmeneti könyvtárban. A telepítés megszakítva
|
LdrCannotExecTemp=Fájl futattása nem lehetséges az átmeneti könyvtárban. A telepítés megszakítva
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nHiba %2: %3
|
LastErrorMessage=%1.%n%nHiba %2: %3
|
||||||
SetupFileMissing=A(z) %1 fájl hiányzik a telepítő könyvtárából. Kérem hárítsa el a problémát, vagy szerezzen be egy másik példányt a programból!
|
SetupFileMissing=A(z) %1 fájl hiányzik a telepítő könyvtárából. Kérem hárítsa el a problémát, vagy szerezzen be egy másik példányt a programból!
|
||||||
SetupFileCorrupt=A telepítési fájlok sérültek. Kérem, szerezzen be új másolatot a programból!
|
SetupFileCorrupt=A telepítési fájlok sérültek. Kérem, szerezzen be új másolatot a programból!
|
||||||
SetupFileCorruptOrWrongVer=A telepítési fájlok sérültek, vagy inkompatibilisek a telepítő ezen verziójával. Hárítsa el a problémát, vagy szerezzen be egy másik példányt a programból!
|
SetupFileCorruptOrWrongVer=A telepítési fájlok sérültek, vagy inkompatibilisek a telepítő ezen verziójával. Hárítsa el a problémát, vagy szerezzen be egy másik példányt a programból!
|
||||||
InvalidParameter=A parancssorba átadott paraméter érvénytelen:%n%n%1
|
InvalidParameter=A parancssorba átadott paraméter érvénytelen:%n%n%1
|
||||||
SetupAlreadyRunning=A Telepítő már fut.
|
SetupAlreadyRunning=A Telepítő már fut.
|
||||||
WindowsVersionNotSupported=A program nem támogatja a Windows ezen verzióját.
|
WindowsVersionNotSupported=A program nem támogatja a Windows ezen verzióját.
|
||||||
WindowsServicePackRequired=A program futtatásához %1 Service Pack %2 vagy újabb szükséges.
|
WindowsServicePackRequired=A program futtatásához %1 Service Pack %2 vagy újabb szükséges.
|
||||||
NotOnThisPlatform=Ez a program nem futtatható %1 alatt.
|
NotOnThisPlatform=Ez a program nem futtatható %1 alatt.
|
||||||
OnlyOnThisPlatform=Ezt a programot %1 alatt kell futtatni.
|
OnlyOnThisPlatform=Ezt a programot %1 alatt kell futtatni.
|
||||||
OnlyOnTheseArchitectures=A program kizárólag a következő processzor architektúrákhoz tervezett Windows-on telepíthető:%n%n%1
|
OnlyOnTheseArchitectures=A program kizárólag a következő processzor architektúrákhoz tervezett Windows-on telepíthető:%n%n%1
|
||||||
WinVersionTooLowError=A program futtatásához %1 %2 verziója vagy későbbi szükséges.
|
WinVersionTooLowError=A program futtatásához %1 %2 verziója vagy későbbi szükséges.
|
||||||
WinVersionTooHighError=Ez a program nem telepíthető %1 %2 vagy későbbire.
|
WinVersionTooHighError=Ez a program nem telepíthető %1 %2 vagy későbbire.
|
||||||
AdminPrivilegesRequired=Csak rendszergazdai módban telepíthető ez a program.
|
AdminPrivilegesRequired=Csak rendszergazdai módban telepíthető ez a program.
|
||||||
PowerUserPrivilegesRequired=Csak rendszergazdaként vagy kiemelt felhasználóként telepíthető ez a program.
|
PowerUserPrivilegesRequired=Csak rendszergazdaként vagy kiemelt felhasználóként telepíthető ez a program.
|
||||||
SetupAppRunningError=A telepítő úgy észlelte %1 jelenleg fut.%n%nZárja be az összes példányt, majd kattintson az 'OK'-ra a folytatáshoz, vagy a 'Mégse'-re a kilépéshez.
|
SetupAppRunningError=A telepítő úgy észlelte %1 jelenleg fut.%n%nZárja be az összes példányt, majd kattintson az 'OK'-ra a folytatáshoz, vagy a 'Mégse'-re a kilépéshez.
|
||||||
UninstallAppRunningError=Az eltávolító úgy észlelte %1 jelenleg fut.%n%nZárja be az összes példányt, majd kattintson az 'OK'-ra a folytatáshoz, vagy a 'Mégse'-re a kilépéshez.
|
UninstallAppRunningError=Az eltávolító úgy észlelte %1 jelenleg fut.%n%nZárja be az összes példányt, majd kattintson az 'OK'-ra a folytatáshoz, vagy a 'Mégse'-re a kilépéshez.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Telepítési mód kiválasztása
|
PrivilegesRequiredOverrideTitle=Telepítési mód kiválasztása
|
||||||
PrivilegesRequiredOverrideInstruction=Válasszon telepítési módot
|
PrivilegesRequiredOverrideInstruction=Válasszon telepítési módot
|
||||||
PrivilegesRequiredOverrideText1=%1 telepíthető az összes felhasználónak (rendszergazdai jogok szükségesek), vagy csak magának.
|
PrivilegesRequiredOverrideText1=%1 telepíthető az összes felhasználónak (rendszergazdai jogok szükségesek), vagy csak magának.
|
||||||
PrivilegesRequiredOverrideText2=%1 csak magának telepíthető, vagy az összes felhasználónak (rendszergazdai jogok szükségesek).
|
PrivilegesRequiredOverrideText2=%1 csak magának telepíthető, vagy az összes felhasználónak (rendszergazdai jogok szükségesek).
|
||||||
PrivilegesRequiredOverrideAllUsers=Telepítés &mindenkinek
|
PrivilegesRequiredOverrideAllUsers=Telepítés &mindenkinek
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Telepítés &mindenkinek (ajánlott)
|
PrivilegesRequiredOverrideAllUsersRecommended=Telepítés &mindenkinek (ajánlott)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Telepítés csak &nekem
|
PrivilegesRequiredOverrideCurrentUser=Telepítés csak &nekem
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Telepítés csak &nekem (ajánlott)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Telepítés csak &nekem (ajánlott)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=A Telepítő nem tudta létrehozni a(z) "%1" könyvtárat
|
ErrorCreatingDir=A Telepítő nem tudta létrehozni a(z) "%1" könyvtárat
|
||||||
ErrorTooManyFilesInDir=Nem hozható létre fájl a(z) "%1" könyvtárban, mert az már túl sok fájlt tartalmaz
|
ErrorTooManyFilesInDir=Nem hozható létre fájl a(z) "%1" könyvtárban, mert az már túl sok fájlt tartalmaz
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Kilépés a telepítőből
|
ExitSetupTitle=Kilépés a telepítőből
|
||||||
ExitSetupMessage=A telepítés még folyamatban van. Ha most kilép, a program nem kerül telepítésre.%n%nMásik alkalommal is futtatható a telepítés befejezéséhez%n%nKilép a telepítőből?
|
ExitSetupMessage=A telepítés még folyamatban van. Ha most kilép, a program nem kerül telepítésre.%n%nMásik alkalommal is futtatható a telepítés befejezéséhez%n%nKilép a telepítőből?
|
||||||
AboutSetupMenuItem=&Névjegy...
|
AboutSetupMenuItem=&Névjegy...
|
||||||
AboutSetupTitle=Telepítő névjegye
|
AboutSetupTitle=Telepítő névjegye
|
||||||
AboutSetupMessage=%1 %2 verzió%n%3%n%nAz %1 honlapja:%n%4
|
AboutSetupMessage=%1 %2 verzió%n%3%n%nAz %1 honlapja:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=
|
TranslatorNote=
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Vissza
|
ButtonBack=< &Vissza
|
||||||
ButtonNext=&Tovább >
|
ButtonNext=&Tovább >
|
||||||
ButtonInstall=&Telepít
|
ButtonInstall=&Telepít
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Mégse
|
ButtonCancel=Mégse
|
||||||
ButtonYes=&Igen
|
ButtonYes=&Igen
|
||||||
ButtonYesToAll=&Mindet
|
ButtonYesToAll=&Mindet
|
||||||
ButtonNo=&Nem
|
ButtonNo=&Nem
|
||||||
ButtonNoToAll=&Egyiket se
|
ButtonNoToAll=&Egyiket se
|
||||||
ButtonFinish=&Befejezés
|
ButtonFinish=&Befejezés
|
||||||
ButtonBrowse=&Tallózás...
|
ButtonBrowse=&Tallózás...
|
||||||
ButtonWizardBrowse=T&allózás...
|
ButtonWizardBrowse=T&allózás...
|
||||||
ButtonNewFolder=Új &könyvtár
|
ButtonNewFolder=Új &könyvtár
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Telepítő nyelvi beállítás
|
SelectLanguageTitle=Telepítő nyelvi beállítás
|
||||||
SelectLanguageLabel=Válassza ki a telepítés alatt használt nyelvet.
|
SelectLanguageLabel=Válassza ki a telepítés alatt használt nyelvet.
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=A folytatáshoz kattintson a 'Tovább'-ra, a kilépéshez a 'Mégse'-re.
|
ClickNext=A folytatáshoz kattintson a 'Tovább'-ra, a kilépéshez a 'Mégse'-re.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Válasszon könyvtárt
|
BrowseDialogTitle=Válasszon könyvtárt
|
||||||
BrowseDialogLabel=Válasszon egy könyvtárat az alábbi listából, majd kattintson az 'OK'-ra.
|
BrowseDialogLabel=Válasszon egy könyvtárat az alábbi listából, majd kattintson az 'OK'-ra.
|
||||||
NewFolderName=Új könyvtár
|
NewFolderName=Új könyvtár
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Üdvözli a(z) [name] Telepítővarázslója.
|
WelcomeLabel1=Üdvözli a(z) [name] Telepítővarázslója.
|
||||||
WelcomeLabel2=A(z) [name/ver] telepítésre kerül a számítógépén.%n%nAjánlott minden, egyéb futó alkalmazás bezárása a folytatás előtt.
|
WelcomeLabel2=A(z) [name/ver] telepítésre kerül a számítógépén.%n%nAjánlott minden, egyéb futó alkalmazás bezárása a folytatás előtt.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Jelszó
|
WizardPassword=Jelszó
|
||||||
PasswordLabel1=Ez a telepítés jelszóval védett.
|
PasswordLabel1=Ez a telepítés jelszóval védett.
|
||||||
PasswordLabel3=Kérem adja meg a jelszót, majd kattintson a 'Tovább'-ra. A jelszavak kis- és nagy betű érzékenyek lehetnek.
|
PasswordLabel3=Kérem adja meg a jelszót, majd kattintson a 'Tovább'-ra. A jelszavak kis- és nagy betű érzékenyek lehetnek.
|
||||||
PasswordEditLabel=&Jelszó:
|
PasswordEditLabel=&Jelszó:
|
||||||
IncorrectPassword=Az ön által megadott jelszó helytelen. Próbálja újra.
|
IncorrectPassword=Az ön által megadott jelszó helytelen. Próbálja újra.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=Licencszerződés
|
WizardLicense=Licencszerződés
|
||||||
LicenseLabel=Olvassa el figyelmesen az információkat folytatás előtt.
|
LicenseLabel=Olvassa el figyelmesen az információkat folytatás előtt.
|
||||||
LicenseLabel3=Kérem, olvassa el az alábbi licencszerződést. A telepítés folytatásához, el kell fogadnia a szerződést.
|
LicenseLabel3=Kérem, olvassa el az alábbi licencszerződést. A telepítés folytatásához, el kell fogadnia a szerződést.
|
||||||
LicenseAccepted=&Elfogadom a szerződést
|
LicenseAccepted=&Elfogadom a szerződést
|
||||||
LicenseNotAccepted=&Nem fogadom el a szerződést
|
LicenseNotAccepted=&Nem fogadom el a szerződést
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Információk
|
WizardInfoBefore=Információk
|
||||||
InfoBeforeLabel=Olvassa el a következő fontos információkat a folytatás előtt.
|
InfoBeforeLabel=Olvassa el a következő fontos információkat a folytatás előtt.
|
||||||
InfoBeforeClickLabel=Ha készen áll, kattintson a 'Tovább'-ra.
|
InfoBeforeClickLabel=Ha készen áll, kattintson a 'Tovább'-ra.
|
||||||
WizardInfoAfter=Információk
|
WizardInfoAfter=Információk
|
||||||
InfoAfterLabel=Olvassa el a következő fontos információkat a folytatás előtt.
|
InfoAfterLabel=Olvassa el a következő fontos információkat a folytatás előtt.
|
||||||
InfoAfterClickLabel=Ha készen áll, kattintson a 'Tovább'-ra.
|
InfoAfterClickLabel=Ha készen áll, kattintson a 'Tovább'-ra.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=Felhasználó adatai
|
WizardUserInfo=Felhasználó adatai
|
||||||
UserInfoDesc=Kérem, adja meg az adatait!
|
UserInfoDesc=Kérem, adja meg az adatait!
|
||||||
UserInfoName=&Felhasználónév:
|
UserInfoName=&Felhasználónév:
|
||||||
UserInfoOrg=&Szervezet:
|
UserInfoOrg=&Szervezet:
|
||||||
UserInfoSerial=&Sorozatszám:
|
UserInfoSerial=&Sorozatszám:
|
||||||
UserInfoNameRequired=Meg kell adnia egy nevet!
|
UserInfoNameRequired=Meg kell adnia egy nevet!
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Válasszon célkönyvtárat
|
WizardSelectDir=Válasszon célkönyvtárat
|
||||||
SelectDirDesc=Hova települjön a(z) [name]?
|
SelectDirDesc=Hova települjön a(z) [name]?
|
||||||
SelectDirLabel3=A(z) [name] az alábbi könyvtárba lesz telepítve.
|
SelectDirLabel3=A(z) [name] az alábbi könyvtárba lesz telepítve.
|
||||||
SelectDirBrowseLabel=A folytatáshoz, kattintson a 'Tovább'-ra. Ha másik könyvtárat választana, kattintson a 'Tallózás'-ra.
|
SelectDirBrowseLabel=A folytatáshoz, kattintson a 'Tovább'-ra. Ha másik könyvtárat választana, kattintson a 'Tallózás'-ra.
|
||||||
DiskSpaceGBLabel=Legalább [gb] GB szabad területre van szükség.
|
DiskSpaceGBLabel=Legalább [gb] GB szabad területre van szükség.
|
||||||
DiskSpaceMBLabel=Legalább [mb] MB szabad területre van szükség.
|
DiskSpaceMBLabel=Legalább [mb] MB szabad területre van szükség.
|
||||||
CannotInstallToNetworkDrive=A Telepítő nem tud hálózati meghajtóra telepíteni.
|
CannotInstallToNetworkDrive=A Telepítő nem tud hálózati meghajtóra telepíteni.
|
||||||
CannotInstallToUNCPath=A Telepítő nem tud hálózati UNC elérési útra telepíteni.
|
CannotInstallToUNCPath=A Telepítő nem tud hálózati UNC elérési útra telepíteni.
|
||||||
InvalidPath=Teljes útvonalat adjon meg, a meghajtó betűjelével; például:%n%nC:\Alkalmazás%n%nvagy egy hálózati útvonalat a következő alakban:%n%n\\kiszolgáló\megosztás
|
InvalidPath=Teljes útvonalat adjon meg, a meghajtó betűjelével; például:%n%nC:\Alkalmazás%n%nvagy egy hálózati útvonalat a következő alakban:%n%n\\kiszolgáló\megosztás
|
||||||
InvalidDrive=A kiválasztott meghajtó vagy hálózati megosztás nem létezik vagy nem elérhető. Válasszon egy másikat.
|
InvalidDrive=A kiválasztott meghajtó vagy hálózati megosztás nem létezik vagy nem elérhető. Válasszon egy másikat.
|
||||||
DiskSpaceWarningTitle=Nincs elég szabad terület
|
DiskSpaceWarningTitle=Nincs elég szabad terület
|
||||||
DiskSpaceWarning=A Telepítőnek legalább %1 KB szabad lemezterületre van szüksége, viszont a kiválasztott meghajtón csupán %2 KB áll rendelkezésre.%n%nMindenképpen folytatja?
|
DiskSpaceWarning=A Telepítőnek legalább %1 KB szabad lemezterületre van szüksége, viszont a kiválasztott meghajtón csupán %2 KB áll rendelkezésre.%n%nMindenképpen folytatja?
|
||||||
DirNameTooLong=A könyvtár neve vagy az útvonal túl hosszú.
|
DirNameTooLong=A könyvtár neve vagy az útvonal túl hosszú.
|
||||||
InvalidDirName=A könyvtár neve érvénytelen.
|
InvalidDirName=A könyvtár neve érvénytelen.
|
||||||
BadDirName32=A könyvtárak nevei ezen karakterek egyikét sem tartalmazhatják:%n%n%1
|
BadDirName32=A könyvtárak nevei ezen karakterek egyikét sem tartalmazhatják:%n%n%1
|
||||||
DirExistsTitle=A könyvtár már létezik
|
DirExistsTitle=A könyvtár már létezik
|
||||||
DirExists=A könyvtár:%n%n%1%n%nmár létezik. Mindenképp ide akar telepíteni?
|
DirExists=A könyvtár:%n%n%1%n%nmár létezik. Mindenképp ide akar telepíteni?
|
||||||
DirDoesntExistTitle=A könyvtár nem létezik
|
DirDoesntExistTitle=A könyvtár nem létezik
|
||||||
DirDoesntExist=A könyvtár:%n%n%1%n%nnem létezik. Szeretné létrehozni?
|
DirDoesntExist=A könyvtár:%n%n%1%n%nnem létezik. Szeretné létrehozni?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Összetevők kiválasztása
|
WizardSelectComponents=Összetevők kiválasztása
|
||||||
SelectComponentsDesc=Mely összetevők kerüljenek telepítésre?
|
SelectComponentsDesc=Mely összetevők kerüljenek telepítésre?
|
||||||
SelectComponentsLabel2=Jelölje ki a telepítendő összetevőket; törölje a telepíteni nem kívánt összetevőket. Kattintson a 'Tovább'-ra, ha készen áll a folytatásra.
|
SelectComponentsLabel2=Jelölje ki a telepítendő összetevőket; törölje a telepíteni nem kívánt összetevőket. Kattintson a 'Tovább'-ra, ha készen áll a folytatásra.
|
||||||
FullInstallation=Teljes telepítés
|
FullInstallation=Teljes telepítés
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Szokásos telepítés
|
CompactInstallation=Szokásos telepítés
|
||||||
CustomInstallation=Egyéni telepítés
|
CustomInstallation=Egyéni telepítés
|
||||||
NoUninstallWarningTitle=Létező összetevő
|
NoUninstallWarningTitle=Létező összetevő
|
||||||
NoUninstallWarning=A telepítő úgy találta, hogy a következő összetevők már telepítve vannak a számítógépre:%n%n%1%n%nEzen összetevők kijelölésének törlése, nem távolítja el azokat a számítógépről.%n%nMindenképpen folytatja?
|
NoUninstallWarning=A telepítő úgy találta, hogy a következő összetevők már telepítve vannak a számítógépre:%n%n%1%n%nEzen összetevők kijelölésének törlése, nem távolítja el azokat a számítógépről.%n%nMindenképpen folytatja?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=A jelenlegi kijelölés legalább [gb] GB lemezterületet igényel.
|
ComponentsDiskSpaceGBLabel=A jelenlegi kijelölés legalább [gb] GB lemezterületet igényel.
|
||||||
ComponentsDiskSpaceMBLabel=A jelenlegi kijelölés legalább [mb] MB lemezterületet igényel.
|
ComponentsDiskSpaceMBLabel=A jelenlegi kijelölés legalább [mb] MB lemezterületet igényel.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=További feladatok
|
WizardSelectTasks=További feladatok
|
||||||
SelectTasksDesc=Mely kiegészítő feladatok kerüljenek végrehajtásra?
|
SelectTasksDesc=Mely kiegészítő feladatok kerüljenek végrehajtásra?
|
||||||
SelectTasksLabel2=Jelölje ki, mely kiegészítő feladatokat hajtsa végre a Telepítő a(z) [name] telepítése során, majd kattintson a 'Tovább'-ra.
|
SelectTasksLabel2=Jelölje ki, mely kiegészítő feladatokat hajtsa végre a Telepítő a(z) [name] telepítése során, majd kattintson a 'Tovább'-ra.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Start Menü könyvtára
|
WizardSelectProgramGroup=Start Menü könyvtára
|
||||||
SelectStartMenuFolderDesc=Hova helyezze a Telepítő a program parancsikonjait?
|
SelectStartMenuFolderDesc=Hova helyezze a Telepítő a program parancsikonjait?
|
||||||
SelectStartMenuFolderLabel3=A Telepítő a program parancsikonjait a Start menü következő mappájában fogja létrehozni.
|
SelectStartMenuFolderLabel3=A Telepítő a program parancsikonjait a Start menü következő mappájában fogja létrehozni.
|
||||||
SelectStartMenuFolderBrowseLabel=A folytatáshoz kattintson a 'Tovább'-ra. Ha másik mappát választana, kattintson a 'Tallózás'-ra.
|
SelectStartMenuFolderBrowseLabel=A folytatáshoz kattintson a 'Tovább'-ra. Ha másik mappát választana, kattintson a 'Tallózás'-ra.
|
||||||
MustEnterGroupName=Meg kell adnia egy mappanevet.
|
MustEnterGroupName=Meg kell adnia egy mappanevet.
|
||||||
GroupNameTooLong=A könyvtár neve vagy az útvonal túl hosszú.
|
GroupNameTooLong=A könyvtár neve vagy az útvonal túl hosszú.
|
||||||
InvalidGroupName=A könyvtár neve érvénytelen.
|
InvalidGroupName=A könyvtár neve érvénytelen.
|
||||||
BadGroupName=A könyvtárak nevei ezen karakterek egyikét sem tartalmazhatják:%n%n%1
|
BadGroupName=A könyvtárak nevei ezen karakterek egyikét sem tartalmazhatják:%n%n%1
|
||||||
NoProgramGroupCheck2=&Ne hozzon létre mappát a Start menüben
|
NoProgramGroupCheck2=&Ne hozzon létre mappát a Start menüben
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Készen állunk a telepítésre
|
WizardReady=Készen állunk a telepítésre
|
||||||
ReadyLabel1=A Telepítő készen áll, a(z) [name] számítógépre telepítéshez.
|
ReadyLabel1=A Telepítő készen áll, a(z) [name] számítógépre telepítéshez.
|
||||||
ReadyLabel2a=Kattintson a 'Telepítés'-re a folytatáshoz, vagy a "Vissza"-ra a beállítások áttekintéséhez vagy megváltoztatásához.
|
ReadyLabel2a=Kattintson a 'Telepítés'-re a folytatáshoz, vagy a "Vissza"-ra a beállítások áttekintéséhez vagy megváltoztatásához.
|
||||||
ReadyLabel2b=Kattintson a 'Telepítés'-re a folytatáshoz.
|
ReadyLabel2b=Kattintson a 'Telepítés'-re a folytatáshoz.
|
||||||
ReadyMemoUserInfo=Felhasználó adatai:
|
ReadyMemoUserInfo=Felhasználó adatai:
|
||||||
ReadyMemoDir=Telepítés célkönyvtára:
|
ReadyMemoDir=Telepítés célkönyvtára:
|
||||||
ReadyMemoType=Telepítés típusa:
|
ReadyMemoType=Telepítés típusa:
|
||||||
ReadyMemoComponents=Választott összetevők:
|
ReadyMemoComponents=Választott összetevők:
|
||||||
ReadyMemoGroup=Start menü mappája:
|
ReadyMemoGroup=Start menü mappája:
|
||||||
ReadyMemoTasks=Kiegészítő feladatok:
|
ReadyMemoTasks=Kiegészítő feladatok:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=További fájlok letöltése...
|
DownloadingLabel=További fájlok letöltése...
|
||||||
ButtonStopDownload=&Letöltés megállítása
|
ButtonStopDownload=&Letöltés megállítása
|
||||||
StopDownload=Biztos, hogy leakarja állítani a letöltést?
|
StopDownload=Biztos, hogy leakarja állítani a letöltést?
|
||||||
ErrorDownloadAborted=Letöltés megszakítva
|
ErrorDownloadAborted=Letöltés megszakítva
|
||||||
ErrorDownloadFailed=A letöltés meghiúsult: %1 %2
|
ErrorDownloadFailed=A letöltés meghiúsult: %1 %2
|
||||||
ErrorDownloadSizeFailed=Hiba a fájlméret lekérése során: %1 %2
|
ErrorDownloadSizeFailed=Hiba a fájlméret lekérése során: %1 %2
|
||||||
ErrorFileHash1=Fájl Hash (hasítóérték) hiba: %1
|
ErrorFileHash1=Fájl Hash (hasítóérték) hiba: %1
|
||||||
ErrorFileHash2=Érvénytelen hash fájl, várt érték: %1, számított: %2
|
ErrorFileHash2=Érvénytelen hash fájl, várt érték: %1, számított: %2
|
||||||
ErrorProgress=Érvénytelen folyamat: %1 : %2
|
ErrorProgress=Érvénytelen folyamat: %1 : %2
|
||||||
ErrorFileSize=Érvénytelen fájlméret, várt méret %1, számított: %2
|
ErrorFileSize=Érvénytelen fájlméret, várt méret %1, számított: %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Felkészülés a telepítésre
|
WizardPreparing=Felkészülés a telepítésre
|
||||||
PreparingDesc=A Telepítő felkészül a(z) [name] számítógépre történő telepítéshez.
|
PreparingDesc=A Telepítő felkészül a(z) [name] számítógépre történő telepítéshez.
|
||||||
PreviousInstallNotCompleted=Egy korábbi program telepítése/eltávolítása nem fejeződött be. Újra kell indítania a számítógépét a másik telepítés befejezéséhez.%n%nA számítógépe újraindítása után ismét futtassa a Telepítőt a(z) [name] telepítésének befejezéséhez.
|
PreviousInstallNotCompleted=Egy korábbi program telepítése/eltávolítása nem fejeződött be. Újra kell indítania a számítógépét a másik telepítés befejezéséhez.%n%nA számítógépe újraindítása után ismét futtassa a Telepítőt a(z) [name] telepítésének befejezéséhez.
|
||||||
CannotContinue=A telepítés nem folytatható. A kilépéshez kattintson a 'Mégse'-re.
|
CannotContinue=A telepítés nem folytatható. A kilépéshez kattintson a 'Mégse'-re.
|
||||||
ApplicationsFound=A következő alkalmazások olyan fájlokat használnak, amelyeket a Telepítőnek frissíteni kell. Ajánlott, hogy engedélyezze a Telepítőnek ezen alkalmazások automatikus bezárását.
|
ApplicationsFound=A következő alkalmazások olyan fájlokat használnak, amelyeket a Telepítőnek frissíteni kell. Ajánlott, hogy engedélyezze a Telepítőnek ezen alkalmazások automatikus bezárását.
|
||||||
ApplicationsFound2=A következő alkalmazások olyan fájlokat használnak, amelyeket a Telepítőnek frissíteni kell. Ajánlott, hogy engedélyezze a Telepítőnek ezen alkalmazások automatikus bezárását. A telepítés befejezése után, a Telepítő megkísérli az alkalmazások újraindítását.
|
ApplicationsFound2=A következő alkalmazások olyan fájlokat használnak, amelyeket a Telepítőnek frissíteni kell. Ajánlott, hogy engedélyezze a Telepítőnek ezen alkalmazások automatikus bezárását. A telepítés befejezése után, a Telepítő megkísérli az alkalmazások újraindítását.
|
||||||
CloseApplications=&Alkalmazások automatikus bezárása
|
CloseApplications=&Alkalmazások automatikus bezárása
|
||||||
DontCloseApplications=&Ne zárja be az alkalmazásokat
|
DontCloseApplications=&Ne zárja be az alkalmazásokat
|
||||||
ErrorCloseApplications=A Telepítő nem tudott minden alkalmazást automatikusan bezárni. A folytatás előtt ajánlott minden, a Telepítő által frissítendő fájlokat használó alkalmazást bezárni.
|
ErrorCloseApplications=A Telepítő nem tudott minden alkalmazást automatikusan bezárni. A folytatás előtt ajánlott minden, a Telepítő által frissítendő fájlokat használó alkalmazást bezárni.
|
||||||
PrepareToInstallNeedsRestart=A telepítőnek most újra kell indítania a számítógépet. Az újraindítás után, futtassa újból ezt a telepítőt, hogy befejezze a [name] telepítését.%n%nÚjra szeretné most indítani a gépet?
|
PrepareToInstallNeedsRestart=A telepítőnek most újra kell indítania a számítógépet. Az újraindítás után, futtassa újból ezt a telepítőt, hogy befejezze a [name] telepítését.%n%nÚjra szeretné most indítani a gépet?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Telepítés
|
WizardInstalling=Telepítés
|
||||||
InstallingLabel=Kérem várjon, amíg a(z) [name] telepítése zajlik.
|
InstallingLabel=Kérem várjon, amíg a(z) [name] telepítése zajlik.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=A(z) [name] telepítésének befejezése
|
FinishedHeadingLabel=A(z) [name] telepítésének befejezése
|
||||||
FinishedLabelNoIcons=A Telepítő végzett a(z) [name] telepítésével.
|
FinishedLabelNoIcons=A Telepítő végzett a(z) [name] telepítésével.
|
||||||
FinishedLabel=A Telepítő végzett a(z) [name] telepítésével. Az alkalmazást a létrehozott ikonok kiválasztásával indíthatja.
|
FinishedLabel=A Telepítő végzett a(z) [name] telepítésével. Az alkalmazást a létrehozott ikonok kiválasztásával indíthatja.
|
||||||
ClickFinish=Kattintson a 'Befejezés'-re a kilépéshez.
|
ClickFinish=Kattintson a 'Befejezés'-re a kilépéshez.
|
||||||
FinishedRestartLabel=A(z) [name] telepítésének befejezéséhez újra kell indítani a számítógépet. Újraindítja most?
|
FinishedRestartLabel=A(z) [name] telepítésének befejezéséhez újra kell indítani a számítógépet. Újraindítja most?
|
||||||
FinishedRestartMessage=A(z) [name] telepítésének befejezéséhez, a Telepítőnek újra kell indítani a számítógépet.%n%nÚjraindítja most?
|
FinishedRestartMessage=A(z) [name] telepítésének befejezéséhez, a Telepítőnek újra kell indítani a számítógépet.%n%nÚjraindítja most?
|
||||||
ShowReadmeCheck=Igen, szeretném elolvasni a FONTOS fájlt
|
ShowReadmeCheck=Igen, szeretném elolvasni a FONTOS fájlt
|
||||||
YesRadio=&Igen, újraindítás most
|
YesRadio=&Igen, újraindítás most
|
||||||
NoRadio=&Nem, később indítom újra
|
NoRadio=&Nem, később indítom újra
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=%1 futtatása
|
RunEntryExec=%1 futtatása
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=%1 megtekintése
|
RunEntryShellExec=%1 megtekintése
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=A Telepítőnek szüksége van a következő lemezre
|
ChangeDiskTitle=A Telepítőnek szüksége van a következő lemezre
|
||||||
SelectDiskLabel2=Helyezze be a(z) %1. lemezt és kattintson az 'OK'-ra.%n%nHa a fájlok a lemez egy a megjelenítettől különböző mappájában találhatók, írja be a helyes útvonalat vagy kattintson a 'Tallózás'-ra.
|
SelectDiskLabel2=Helyezze be a(z) %1. lemezt és kattintson az 'OK'-ra.%n%nHa a fájlok a lemez egy a megjelenítettől különböző mappájában találhatók, írja be a helyes útvonalat vagy kattintson a 'Tallózás'-ra.
|
||||||
PathLabel=Ú&tvonal:
|
PathLabel=Ú&tvonal:
|
||||||
FileNotInDir2=A(z) "%1" fájl nem található a következő helyen: "%2". Helyezze be a megfelelő lemezt vagy válasszon egy másik mappát.
|
FileNotInDir2=A(z) "%1" fájl nem található a következő helyen: "%2". Helyezze be a megfelelő lemezt vagy válasszon egy másik mappát.
|
||||||
SelectDirectoryLabel=Adja meg a következő lemez helyét.
|
SelectDirectoryLabel=Adja meg a következő lemez helyét.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=A telepítés nem fejeződött be.%n%nHárítsa el a hibát és futtassa újból a Telepítőt.
|
SetupAborted=A telepítés nem fejeződött be.%n%nHárítsa el a hibát és futtassa újból a Telepítőt.
|
||||||
AbortRetryIgnoreSelectAction=Válasszon műveletet
|
AbortRetryIgnoreSelectAction=Válasszon műveletet
|
||||||
AbortRetryIgnoreRetry=&Újra
|
AbortRetryIgnoreRetry=&Újra
|
||||||
AbortRetryIgnoreIgnore=&Hiba elvetése és folytatás
|
AbortRetryIgnoreIgnore=&Hiba elvetése és folytatás
|
||||||
AbortRetryIgnoreCancel=Telepítés megszakítása
|
AbortRetryIgnoreCancel=Telepítés megszakítása
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Alkalmazások bezárása...
|
StatusClosingApplications=Alkalmazások bezárása...
|
||||||
StatusCreateDirs=Könyvtárak létrehozása...
|
StatusCreateDirs=Könyvtárak létrehozása...
|
||||||
StatusExtractFiles=Fájlok kibontása...
|
StatusExtractFiles=Fájlok kibontása...
|
||||||
StatusCreateIcons=Parancsikonok létrehozása...
|
StatusCreateIcons=Parancsikonok létrehozása...
|
||||||
StatusCreateIniEntries=INI bejegyzések létrehozása...
|
StatusCreateIniEntries=INI bejegyzések létrehozása...
|
||||||
StatusCreateRegistryEntries=Rendszerleíró bejegyzések létrehozása...
|
StatusCreateRegistryEntries=Rendszerleíró bejegyzések létrehozása...
|
||||||
StatusRegisterFiles=Fájlok regisztrálása...
|
StatusRegisterFiles=Fájlok regisztrálása...
|
||||||
StatusSavingUninstall=Eltávolító információk mentése...
|
StatusSavingUninstall=Eltávolító információk mentése...
|
||||||
StatusRunProgram=Telepítés befejezése...
|
StatusRunProgram=Telepítés befejezése...
|
||||||
StatusRestartingApplications=Alkalmazások újraindítása...
|
StatusRestartingApplications=Alkalmazások újraindítása...
|
||||||
StatusRollback=Változtatások visszavonása...
|
StatusRollback=Változtatások visszavonása...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Belső hiba: %1
|
ErrorInternal2=Belső hiba: %1
|
||||||
ErrorFunctionFailedNoCode=Sikertelen %1
|
ErrorFunctionFailedNoCode=Sikertelen %1
|
||||||
ErrorFunctionFailed=Sikertelen %1; kód: %2
|
ErrorFunctionFailed=Sikertelen %1; kód: %2
|
||||||
ErrorFunctionFailedWithMessage=Sikertelen %1; kód: %2.%n%3
|
ErrorFunctionFailedWithMessage=Sikertelen %1; kód: %2.%n%3
|
||||||
ErrorExecutingProgram=Nem hajtható végre a fájl:%n%1
|
ErrorExecutingProgram=Nem hajtható végre a fájl:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Nem nyitható meg a rendszerleíró kulcs:%n%1\%2
|
ErrorRegOpenKey=Nem nyitható meg a rendszerleíró kulcs:%n%1\%2
|
||||||
ErrorRegCreateKey=Nem hozható létre a rendszerleíró kulcs:%n%1\%2
|
ErrorRegCreateKey=Nem hozható létre a rendszerleíró kulcs:%n%1\%2
|
||||||
ErrorRegWriteKey=Nem módosítható a rendszerleíró kulcs:%n%1\%2
|
ErrorRegWriteKey=Nem módosítható a rendszerleíró kulcs:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Hiba lépett fel az INI bejegyzés során, ebben a fájlban: "%1".
|
ErrorIniEntry=Hiba lépett fel az INI bejegyzés során, ebben a fájlban: "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Fájl kihagyása (nem ajánlott)
|
FileAbortRetryIgnoreSkipNotRecommended=&Fájl kihagyása (nem ajánlott)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Hiba elvetése és folytatás (nem ajánlott)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Hiba elvetése és folytatás (nem ajánlott)
|
||||||
SourceIsCorrupted=A forrásfájl megsérült
|
SourceIsCorrupted=A forrásfájl megsérült
|
||||||
SourceDoesntExist=A(z) "%1" forrásfájl nem létezik
|
SourceDoesntExist=A(z) "%1" forrásfájl nem létezik
|
||||||
ExistingFileReadOnly2=A fájl csak olvashatóként van jelölve, ezért nem cserélhető le.
|
ExistingFileReadOnly2=A fájl csak olvashatóként van jelölve, ezért nem cserélhető le.
|
||||||
ExistingFileReadOnlyRetry=Csak &olvasható tulajdonság eltávolítása és újra próbálkozás
|
ExistingFileReadOnlyRetry=Csak &olvasható tulajdonság eltávolítása és újra próbálkozás
|
||||||
ExistingFileReadOnlyKeepExisting=&Létező fájl megtartása
|
ExistingFileReadOnlyKeepExisting=&Létező fájl megtartása
|
||||||
ErrorReadingExistingDest=Hiba lépett fel a fájl olvasása közben:
|
ErrorReadingExistingDest=Hiba lépett fel a fájl olvasása közben:
|
||||||
FileExistsSelectAction=Mit tegyünk?
|
FileExistsSelectAction=Mit tegyünk?
|
||||||
FileExists2=A fájl már létezik.
|
FileExists2=A fájl már létezik.
|
||||||
FileExistsOverwriteExisting=A &létező fájl felülírása
|
FileExistsOverwriteExisting=A &létező fájl felülírása
|
||||||
FileExistsKeepExisting=A &már létező fájl megtartása
|
FileExistsKeepExisting=A &már létező fájl megtartása
|
||||||
FileExistsOverwriteOrKeepAll=&Tegyük ezt, a következő fájlütközések esetén is
|
FileExistsOverwriteOrKeepAll=&Tegyük ezt, a következő fájlütközések esetén is
|
||||||
ExistingFileNewerSelectAction=Mit kíván tenni?
|
ExistingFileNewerSelectAction=Mit kíván tenni?
|
||||||
ExistingFileNewer2=A létező fájl újabb a telepítésre kerülőnél
|
ExistingFileNewer2=A létező fájl újabb a telepítésre kerülőnél
|
||||||
ExistingFileNewerOverwriteExisting=A &létező fájl felülírása
|
ExistingFileNewerOverwriteExisting=A &létező fájl felülírása
|
||||||
ExistingFileNewerKeepExisting=&Tartsuk meg a létező fájlt (ajánlott)
|
ExistingFileNewerKeepExisting=&Tartsuk meg a létező fájlt (ajánlott)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Tegyük ezt, a következő fájlütközések esetén is
|
ExistingFileNewerOverwriteOrKeepAll=&Tegyük ezt, a következő fájlütközések esetén is
|
||||||
ErrorChangingAttr=Hiba lépett fel a fájl attribútumának módosítása közben:
|
ErrorChangingAttr=Hiba lépett fel a fájl attribútumának módosítása közben:
|
||||||
ErrorCreatingTemp=Hiba lépett fel a fájl telepítési könyvtárban történő létrehozása közben:
|
ErrorCreatingTemp=Hiba lépett fel a fájl telepítési könyvtárban történő létrehozása közben:
|
||||||
ErrorReadingSource=Hiba lépett fel a forrásfájl olvasása közben:
|
ErrorReadingSource=Hiba lépett fel a forrásfájl olvasása közben:
|
||||||
ErrorCopying=Hiba lépett fel a fájl másolása közben:
|
ErrorCopying=Hiba lépett fel a fájl másolása közben:
|
||||||
ErrorReplacingExistingFile=Hiba lépett fel a létező fájl cseréje közben:
|
ErrorReplacingExistingFile=Hiba lépett fel a létező fájl cseréje közben:
|
||||||
ErrorRestartReplace=A fájl cseréje az újraindítás után sikertelen volt:
|
ErrorRestartReplace=A fájl cseréje az újraindítás után sikertelen volt:
|
||||||
ErrorRenamingTemp=Hiba lépett fel fájl telepítési könyvtárban történő átnevezése közben:
|
ErrorRenamingTemp=Hiba lépett fel fájl telepítési könyvtárban történő átnevezése közben:
|
||||||
ErrorRegisterServer=Nem lehet regisztrálni a DLL-t/OCX-et: %1
|
ErrorRegisterServer=Nem lehet regisztrálni a DLL-t/OCX-et: %1
|
||||||
ErrorRegSvr32Failed=Sikertelen RegSvr32. A visszaadott kód: %1
|
ErrorRegSvr32Failed=Sikertelen RegSvr32. A visszaadott kód: %1
|
||||||
ErrorRegisterTypeLib=Nem lehet regisztrálni a típustárat: %1
|
ErrorRegisterTypeLib=Nem lehet regisztrálni a típustárat: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32-bit
|
UninstallDisplayNameMark32Bit=32-bit
|
||||||
UninstallDisplayNameMark64Bit=64-bit
|
UninstallDisplayNameMark64Bit=64-bit
|
||||||
UninstallDisplayNameMarkAllUsers=Minden felhasználó
|
UninstallDisplayNameMarkAllUsers=Minden felhasználó
|
||||||
UninstallDisplayNameMarkCurrentUser=Jelenlegi felhasználó
|
UninstallDisplayNameMarkCurrentUser=Jelenlegi felhasználó
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Hiba lépett fel a FONTOS fájl megnyitása közben.
|
ErrorOpeningReadme=Hiba lépett fel a FONTOS fájl megnyitása közben.
|
||||||
ErrorRestartingComputer=A Telepítő nem tudta újraindítani a számítógépet. Indítsa újra kézileg.
|
ErrorRestartingComputer=A Telepítő nem tudta újraindítani a számítógépet. Indítsa újra kézileg.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=A(z) "%1" fájl nem létezik. Nem távolítható el.
|
UninstallNotFound=A(z) "%1" fájl nem létezik. Nem távolítható el.
|
||||||
UninstallOpenError=A(z) "%1" fájl nem nyitható meg. Nem távolítható el
|
UninstallOpenError=A(z) "%1" fájl nem nyitható meg. Nem távolítható el
|
||||||
UninstallUnsupportedVer=A(z) "%1" eltávolítási naplófájl formátumát nem tudja felismerni az eltávolító jelen verziója. Az eltávolítás nem folytatható
|
UninstallUnsupportedVer=A(z) "%1" eltávolítási naplófájl formátumát nem tudja felismerni az eltávolító jelen verziója. Az eltávolítás nem folytatható
|
||||||
UninstallUnknownEntry=Egy ismeretlen bejegyzés (%1) található az eltávolítási naplófájlban
|
UninstallUnknownEntry=Egy ismeretlen bejegyzés (%1) található az eltávolítási naplófájlban
|
||||||
ConfirmUninstall=Biztosan futtatni szeretné a %1 eltávolítási varázslót?
|
ConfirmUninstall=Biztosan futtatni szeretné a %1 eltávolítási varázslót?
|
||||||
UninstallOnlyOnWin64=Ezt a telepítést csak 64-bites Windows operációs rendszerről lehet eltávolítani.
|
UninstallOnlyOnWin64=Ezt a telepítést csak 64-bites Windows operációs rendszerről lehet eltávolítani.
|
||||||
OnlyAdminCanUninstall=Ezt a telepítést csak adminisztrációs jogokkal rendelkező felhasználó távolíthatja el.
|
OnlyAdminCanUninstall=Ezt a telepítést csak adminisztrációs jogokkal rendelkező felhasználó távolíthatja el.
|
||||||
UninstallStatusLabel=Legyen türelemmel, amíg a(z) %1 számítógépéről történő eltávolítása befejeződik.
|
UninstallStatusLabel=Legyen türelemmel, amíg a(z) %1 számítógépéről történő eltávolítása befejeződik.
|
||||||
UninstalledAll=A(z) %1 sikeresen el lett távolítva a számítógépről.
|
UninstalledAll=A(z) %1 sikeresen el lett távolítva a számítógépről.
|
||||||
UninstalledMost=A(z) %1 eltávolítása befejeződött.%n%nNéhány elemet nem lehetettet eltávolítani. Törölje kézileg.
|
UninstalledMost=A(z) %1 eltávolítása befejeződött.%n%nNéhány elemet nem lehetettet eltávolítani. Törölje kézileg.
|
||||||
UninstalledAndNeedsRestart=A(z) %1 eltávolításának befejezéséhez újra kell indítania a számítógépét.%n%nÚjraindítja most?
|
UninstalledAndNeedsRestart=A(z) %1 eltávolításának befejezéséhez újra kell indítania a számítógépét.%n%nÚjraindítja most?
|
||||||
UninstallDataCorrupted=A(z) "%1" fájl sérült. Nem távolítható el.
|
UninstallDataCorrupted=A(z) "%1" fájl sérült. Nem távolítható el.
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Törli a megosztott fájlt?
|
ConfirmDeleteSharedFileTitle=Törli a megosztott fájlt?
|
||||||
ConfirmDeleteSharedFile2=A rendszer azt jelzi, hogy a következő megosztott fájlra már nincs szüksége egyetlen programnak sem. Eltávolítja a megosztott fájlt?%n%nHa más programok még mindig használják a megosztott fájlt, akkor az eltávolítása után lehet, hogy nem fognak megfelelően működni. Ha bizonytalan, válassza a Nemet. A fájl megtartása nem okoz problémát a rendszerben.
|
ConfirmDeleteSharedFile2=A rendszer azt jelzi, hogy a következő megosztott fájlra már nincs szüksége egyetlen programnak sem. Eltávolítja a megosztott fájlt?%n%nHa más programok még mindig használják a megosztott fájlt, akkor az eltávolítása után lehet, hogy nem fognak megfelelően működni. Ha bizonytalan, válassza a Nemet. A fájl megtartása nem okoz problémát a rendszerben.
|
||||||
SharedFileNameLabel=Fájlnév:
|
SharedFileNameLabel=Fájlnév:
|
||||||
SharedFileLocationLabel=Helye:
|
SharedFileLocationLabel=Helye:
|
||||||
WizardUninstalling=Eltávolítás állapota
|
WizardUninstalling=Eltávolítás állapota
|
||||||
StatusUninstalling=%1 eltávolítása...
|
StatusUninstalling=%1 eltávolítása...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=%1 telepítése.
|
ShutdownBlockReasonInstallingApp=%1 telepítése.
|
||||||
ShutdownBlockReasonUninstallingApp=%1 eltávolítása.
|
ShutdownBlockReasonUninstallingApp=%1 eltávolítása.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1, verzió: %2
|
NameAndVersion=%1, verzió: %2
|
||||||
AdditionalIcons=További parancsikonok:
|
AdditionalIcons=További parancsikonok:
|
||||||
CreateDesktopIcon=&Asztali ikon létrehozása
|
CreateDesktopIcon=&Asztali ikon létrehozása
|
||||||
CreateQuickLaunchIcon=&Gyorsindító parancsikon létrehozása
|
CreateQuickLaunchIcon=&Gyorsindító parancsikon létrehozása
|
||||||
ProgramOnTheWeb=%1 az interneten
|
ProgramOnTheWeb=%1 az interneten
|
||||||
UninstallProgram=Eltávolítás - %1
|
UninstallProgram=Eltávolítás - %1
|
||||||
LaunchProgram=Indítás %1
|
LaunchProgram=Indítás %1
|
||||||
AssocFileExtension=A(z) %1 &társítása a(z) %2 fájlkiterjesztéssel
|
AssocFileExtension=A(z) %1 &társítása a(z) %2 fájlkiterjesztéssel
|
||||||
AssocingFileExtension=A(z) %1 társítása a(z) %2 fájlkiterjesztéssel...
|
AssocingFileExtension=A(z) %1 társítása a(z) %2 fájlkiterjesztéssel...
|
||||||
AutoStartProgramGroupDescription=Indítópult:
|
AutoStartProgramGroupDescription=Indítópult:
|
||||||
AutoStartProgram=%1 automatikus indítása
|
AutoStartProgram=%1 automatikus indítása
|
||||||
AddonHostProgramNotFound=A(z) %1 nem található a kiválasztott könyvtárban.%n%nMindenképpen folytatja?
|
AddonHostProgramNotFound=A(z) %1 nem található a kiválasztott könyvtárban.%n%nMindenképpen folytatja?
|
||||||
|
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Telepítési mód kiválasztása
|
SelectSetupInstallModeTitle=Telepítési mód kiválasztása
|
||||||
SelectSetupInstallModeDesc=A VCMI telepíthető minden felhasználó számára, vagy csak az Ön számára.
|
SelectSetupInstallModeDesc=A VCMI telepíthető minden felhasználó számára, vagy csak az Ön számára.
|
||||||
SelectSetupInstallModeSubTitle=Válassza ki a kívánt telepítési módot:
|
SelectSetupInstallModeSubTitle=Válassza ki a kívánt telepítési módot:
|
||||||
InstallForAllUsers=Telepítés minden felhasználónak
|
InstallForAllUsers=Telepítés minden felhasználónak
|
||||||
InstallForAllUsers1=Adminisztrátori jogosultságokat igényel
|
InstallForAllUsers1=Adminisztrátori jogosultságokat igényel
|
||||||
InstallForMeOnly=Telepítés csak nekem
|
InstallForMeOnly=Telepítés csak nekem
|
||||||
InstallForMeOnly1=Az első játékindításkor egy tűzfalengedély kérés jelenik meg.
|
InstallForMeOnly1=Az első játékindításkor egy tűzfalengedély kérés jelenik meg.
|
||||||
InstallForMeOnly2=Figyelem: A LAN játékok nem fognak működni, ha a tűzfal szabályt nem lehet engedélyezni.
|
InstallForMeOnly2=Figyelem: A LAN játékok nem fognak működni, ha a tűzfal szabályt nem lehet engedélyezni.
|
||||||
CreateDesktopShortcuts=Asztali parancsikonok létrehozása
|
CreateDesktopShortcuts=Asztali parancsikonok létrehozása
|
||||||
ShortcutsOptions=Parancsikon beállítások
|
ShortcutsOptions=Parancsikon beállítások
|
||||||
CreateStartMenuShortcuts=Start menü parancsikonok létrehozása
|
CreateStartMenuShortcuts=Start menü parancsikonok létrehozása
|
||||||
FirewallOptions=Tűzfal beállítások
|
FirewallOptions=Tűzfal beállítások
|
||||||
AddFirewallRules=Tűzfal szabályok hozzáadása a VCMI-hez
|
AddFirewallRules=Tűzfal szabályok hozzáadása a VCMI-hez
|
||||||
FileAssociations=Fájl társítások
|
FileAssociations=Fájl társítások
|
||||||
AssociateH3MFiles=.h3m fájlok társítása a VCMI Térképszerkesztőhöz
|
AssociateH3MFiles=.h3m fájlok társítása a VCMI Térképszerkesztőhöz
|
||||||
AssociateVMapFiles=.vmap fájlok társítása a VCMI Térképszerkesztőhöz
|
AssociateVMapFiles=.vmap fájlok társítása a VCMI Térképszerkesztőhöz
|
||||||
RunVCMILauncherAfterInstall=A VCMI Launcher indítása
|
RunVCMILauncherAfterInstall=A VCMI Launcher indítása
|
||||||
ShortcutMapEditor=VCMI Térképszerkesztő
|
ShortcutMapEditor=VCMI Térképszerkesztő
|
||||||
ShortcutLauncher=VCMI Launcher
|
ShortcutLauncher=VCMI Launcher
|
||||||
ShortcutWebPage=VCMI Weboldal
|
ShortcutWebPage=VCMI Weboldal
|
||||||
ShortcutDiscord=VCMI Discord
|
ShortcutDiscord=VCMI Discord
|
||||||
ShortcutLauncherComment=A VCMI Launcher indítása
|
ShortcutLauncherComment=A VCMI Launcher indítása
|
||||||
ShortcutMapEditorComment=A VCMI Térképszerkesztő megnyitása
|
ShortcutMapEditorComment=A VCMI Térképszerkesztő megnyitása
|
||||||
ShortcutWebPageComment=A hivatalos VCMI weboldal meglátogatása
|
ShortcutWebPageComment=A hivatalos VCMI weboldal meglátogatása
|
||||||
ShortcutDiscordComment=A hivatalos VCMI Discord meglátogatása
|
ShortcutDiscordComment=A hivatalos VCMI Discord meglátogatása
|
||||||
DeleteUserData=Felhasználói adatok törlése
|
DeleteUserData=Felhasználói adatok törlése
|
||||||
Uninstall=Eltávolítás
|
Uninstall=Eltávolítás
|
||||||
VMAPDescription=VCMI térkép fájl
|
VMAPDescription=VCMI térkép fájl
|
||||||
H3MDescription=Heroes 3 térkép fájl
|
H3MDescription=Heroes 3 térkép fájl
|
@@ -1,421 +1,421 @@
|
|||||||
; bovirus@gmail.com
|
; bovirus@gmail.com
|
||||||
; *** Inno Setup version 6.1.0+ Italian messages ***
|
; *** Inno Setup version 6.1.0+ Italian messages ***
|
||||||
;
|
;
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
;
|
;
|
||||||
; isl - Last Update: 25.07.2020 by bovirus (bovirus@gmail.com)
|
; isl - Last Update: 25.07.2020 by bovirus (bovirus@gmail.com)
|
||||||
;
|
;
|
||||||
; Translator name: bovirus
|
; Translator name: bovirus
|
||||||
; Translator e-mail: bovirus@gmail.com
|
; Translator e-mail: bovirus@gmail.com
|
||||||
; Based on previous translations of Rinaldo M. aka Whiteshark (based on ale5000 5.1.11+ translation)
|
; Based on previous translations of Rinaldo M. aka Whiteshark (based on ale5000 5.1.11+ translation)
|
||||||
;
|
;
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=Italiano
|
LanguageName=Italiano
|
||||||
LanguageID=$0410
|
LanguageID=$0410
|
||||||
LanguageCodePage=1252
|
LanguageCodePage=1252
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Installazione
|
SetupAppTitle=Installazione
|
||||||
SetupWindowTitle=Installazione di %1
|
SetupWindowTitle=Installazione di %1
|
||||||
UninstallAppTitle=Disinstallazione
|
UninstallAppTitle=Disinstallazione
|
||||||
UninstallAppFullTitle=Disinstallazione di %1
|
UninstallAppFullTitle=Disinstallazione di %1
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Informazioni
|
InformationTitle=Informazioni
|
||||||
ConfirmTitle=Conferma
|
ConfirmTitle=Conferma
|
||||||
ErrorTitle=Errore
|
ErrorTitle=Errore
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=Questa è l'installazione di %1.%n%nVuoi continuare?
|
SetupLdrStartupMessage=Questa è l'installazione di %1.%n%nVuoi continuare?
|
||||||
LdrCannotCreateTemp=Impossibile creare un file temporaneo.%n%nInstallazione annullata.
|
LdrCannotCreateTemp=Impossibile creare un file temporaneo.%n%nInstallazione annullata.
|
||||||
LdrCannotExecTemp=Impossibile eseguire un file nella cartella temporanea.%n%nInstallazione annullata.
|
LdrCannotExecTemp=Impossibile eseguire un file nella cartella temporanea.%n%nInstallazione annullata.
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nErrore %2: %3
|
LastErrorMessage=%1.%n%nErrore %2: %3
|
||||||
SetupFileMissing=File %1 non trovato nella cartella di installazione.%n%nCorreggi il problema o richiedi una nuova copia del programma.
|
SetupFileMissing=File %1 non trovato nella cartella di installazione.%n%nCorreggi il problema o richiedi una nuova copia del programma.
|
||||||
SetupFileCorrupt=I file di installazione sono danneggiati.%n%nRichiedi una nuova copia del programma.
|
SetupFileCorrupt=I file di installazione sono danneggiati.%n%nRichiedi una nuova copia del programma.
|
||||||
SetupFileCorruptOrWrongVer=I file di installazione sono danneggiati, o sono incompatibili con questa versione del programma di installazione.%n%nCorreggi il problema o richiedi una nuova copia del programma.
|
SetupFileCorruptOrWrongVer=I file di installazione sono danneggiati, o sono incompatibili con questa versione del programma di installazione.%n%nCorreggi il problema o richiedi una nuova copia del programma.
|
||||||
InvalidParameter=È stato inserito nella riga di comando un parametro non valido:%n%n%1
|
InvalidParameter=È stato inserito nella riga di comando un parametro non valido:%n%n%1
|
||||||
SetupAlreadyRunning=Il processo di installazione è già in funzione.
|
SetupAlreadyRunning=Il processo di installazione è già in funzione.
|
||||||
WindowsVersionNotSupported=Questo programma non supporta la versione di Windows installata nel computer.
|
WindowsVersionNotSupported=Questo programma non supporta la versione di Windows installata nel computer.
|
||||||
WindowsServicePackRequired=Questo programma richiede %1 Service Pack %2 o successivo.
|
WindowsServicePackRequired=Questo programma richiede %1 Service Pack %2 o successivo.
|
||||||
NotOnThisPlatform=Questo programma non è compatibile con %1.
|
NotOnThisPlatform=Questo programma non è compatibile con %1.
|
||||||
OnlyOnThisPlatform=Questo programma richiede %1.
|
OnlyOnThisPlatform=Questo programma richiede %1.
|
||||||
OnlyOnTheseArchitectures=Questo programma può essere installato solo su versioni di Windows progettate per le seguenti architetture della CPU:%n%n%1
|
OnlyOnTheseArchitectures=Questo programma può essere installato solo su versioni di Windows progettate per le seguenti architetture della CPU:%n%n%1
|
||||||
WinVersionTooLowError=Questo programma richiede %1 versione %2 o successiva.
|
WinVersionTooLowError=Questo programma richiede %1 versione %2 o successiva.
|
||||||
WinVersionTooHighError=Questo programma non può essere installato su %1 versione %2 o successiva.
|
WinVersionTooHighError=Questo programma non può essere installato su %1 versione %2 o successiva.
|
||||||
AdminPrivilegesRequired=Per installare questo programma sono richiesti privilegi di amministratore.
|
AdminPrivilegesRequired=Per installare questo programma sono richiesti privilegi di amministratore.
|
||||||
PowerUserPrivilegesRequired=Per poter installare questo programma sono richiesti i privilegi di amministratore o di Power Users.
|
PowerUserPrivilegesRequired=Per poter installare questo programma sono richiesti i privilegi di amministratore o di Power Users.
|
||||||
SetupAppRunningError=%1 è attualmente in esecuzione.%n%nChiudi adesso tutte le istanze del programma e poi seleziona "OK", o seleziona "Annulla" per uscire.
|
SetupAppRunningError=%1 è attualmente in esecuzione.%n%nChiudi adesso tutte le istanze del programma e poi seleziona "OK", o seleziona "Annulla" per uscire.
|
||||||
UninstallAppRunningError=%1 è attualmente in esecuzione.%n%nChiudi adesso tutte le istanze del programma e poi seleziona "OK", o seleziona "Annulla" per uscire.
|
UninstallAppRunningError=%1 è attualmente in esecuzione.%n%nChiudi adesso tutte le istanze del programma e poi seleziona "OK", o seleziona "Annulla" per uscire.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Seleziona modo installazione
|
PrivilegesRequiredOverrideTitle=Seleziona modo installazione
|
||||||
PrivilegesRequiredOverrideInstruction=Seleziona modo installazione
|
PrivilegesRequiredOverrideInstruction=Seleziona modo installazione
|
||||||
PrivilegesRequiredOverrideText1=%1 può essere installato per tutti gli utenti (richiede privilegi di amministratore), o solo per l'utente attuale.
|
PrivilegesRequiredOverrideText1=%1 può essere installato per tutti gli utenti (richiede privilegi di amministratore), o solo per l'utente attuale.
|
||||||
PrivilegesRequiredOverrideText2=%1 può essere installato solo per l'utente attuale, o per tutti gli utenti (richiede privilegi di amministratore).
|
PrivilegesRequiredOverrideText2=%1 può essere installato solo per l'utente attuale, o per tutti gli utenti (richiede privilegi di amministratore).
|
||||||
PrivilegesRequiredOverrideAllUsers=Inst&alla per tutti gli utenti
|
PrivilegesRequiredOverrideAllUsers=Inst&alla per tutti gli utenti
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Inst&alla per tutti gli utenti (suggerito)
|
PrivilegesRequiredOverrideAllUsersRecommended=Inst&alla per tutti gli utenti (suggerito)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Installa solo per l'&utente attuale
|
PrivilegesRequiredOverrideCurrentUser=Installa solo per l'&utente attuale
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Installa solo per l'&utente attuale (suggerito)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Installa solo per l'&utente attuale (suggerito)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=Impossibile creare la cartella "%1"
|
ErrorCreatingDir=Impossibile creare la cartella "%1"
|
||||||
ErrorTooManyFilesInDir=Impossibile creare i file nella cartella "%1" perché contiene troppi file.
|
ErrorTooManyFilesInDir=Impossibile creare i file nella cartella "%1" perché contiene troppi file.
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Uscita dall'installazione
|
ExitSetupTitle=Uscita dall'installazione
|
||||||
ExitSetupMessage=L'installazione non è completa.%n%nUscendo dall'installazione in questo momento, il programma non sarà installato.%n%nÈ possibile eseguire l'installazione in un secondo tempo.%n%nVuoi uscire dall'installazione?
|
ExitSetupMessage=L'installazione non è completa.%n%nUscendo dall'installazione in questo momento, il programma non sarà installato.%n%nÈ possibile eseguire l'installazione in un secondo tempo.%n%nVuoi uscire dall'installazione?
|
||||||
AboutSetupMenuItem=&Informazioni sull'installazione...
|
AboutSetupMenuItem=&Informazioni sull'installazione...
|
||||||
AboutSetupTitle=Informazioni sull'installazione
|
AboutSetupTitle=Informazioni sull'installazione
|
||||||
AboutSetupMessage=%1 versione %2%n%3%n%n%1 sito web:%n%4
|
AboutSetupMessage=%1 versione %2%n%3%n%n%1 sito web:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Traduzione italiana a cura di Rinaldo M. aka Whiteshark e bovirus (v. 11.09.2018)
|
TranslatorNote=Traduzione italiana a cura di Rinaldo M. aka Whiteshark e bovirus (v. 11.09.2018)
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Indietro
|
ButtonBack=< &Indietro
|
||||||
ButtonNext=&Avanti >
|
ButtonNext=&Avanti >
|
||||||
ButtonInstall=Inst&alla
|
ButtonInstall=Inst&alla
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Annulla
|
ButtonCancel=Annulla
|
||||||
ButtonYes=&Si
|
ButtonYes=&Si
|
||||||
ButtonYesToAll=Sì a &tutto
|
ButtonYesToAll=Sì a &tutto
|
||||||
ButtonNo=&No
|
ButtonNo=&No
|
||||||
ButtonNoToAll=N&o a tutto
|
ButtonNoToAll=N&o a tutto
|
||||||
ButtonFinish=&Fine
|
ButtonFinish=&Fine
|
||||||
ButtonBrowse=&Sfoglia...
|
ButtonBrowse=&Sfoglia...
|
||||||
ButtonWizardBrowse=S&foglia...
|
ButtonWizardBrowse=S&foglia...
|
||||||
ButtonNewFolder=&Crea nuova cartella
|
ButtonNewFolder=&Crea nuova cartella
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Seleziona la lingua dell'installazione
|
SelectLanguageTitle=Seleziona la lingua dell'installazione
|
||||||
SelectLanguageLabel=Seleziona la lingua da usare durante l'installazione.
|
SelectLanguageLabel=Seleziona la lingua da usare durante l'installazione.
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=Seleziona "Avanti" per continuare, o "Annulla" per uscire.
|
ClickNext=Seleziona "Avanti" per continuare, o "Annulla" per uscire.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Sfoglia cartelle
|
BrowseDialogTitle=Sfoglia cartelle
|
||||||
BrowseDialogLabel=Seleziona una cartella nell'elenco, e quindi seleziona "OK".
|
BrowseDialogLabel=Seleziona una cartella nell'elenco, e quindi seleziona "OK".
|
||||||
NewFolderName=Nuova cartella
|
NewFolderName=Nuova cartella
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Installazione di [name]
|
WelcomeLabel1=Installazione di [name]
|
||||||
WelcomeLabel2=[name/ver] sarà installato sul computer.%n%nPrima di procedere chiudi tutte le applicazioni attive.
|
WelcomeLabel2=[name/ver] sarà installato sul computer.%n%nPrima di procedere chiudi tutte le applicazioni attive.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Password
|
WizardPassword=Password
|
||||||
PasswordLabel1=Questa installazione è protetta da password.
|
PasswordLabel1=Questa installazione è protetta da password.
|
||||||
PasswordLabel3=Inserisci la password, quindi per continuare seleziona "Avanti".%nLe password sono sensibili alle maiuscole/minuscole.
|
PasswordLabel3=Inserisci la password, quindi per continuare seleziona "Avanti".%nLe password sono sensibili alle maiuscole/minuscole.
|
||||||
PasswordEditLabel=&Password:
|
PasswordEditLabel=&Password:
|
||||||
IncorrectPassword=La password inserita non è corretta. Riprova.
|
IncorrectPassword=La password inserita non è corretta. Riprova.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=Contratto di licenza
|
WizardLicense=Contratto di licenza
|
||||||
LicenseLabel=Prima di procedere leggi con attenzione le informazioni che seguono.
|
LicenseLabel=Prima di procedere leggi con attenzione le informazioni che seguono.
|
||||||
LicenseLabel3=Leggi il seguente contratto di licenza.%nPer procedere con l'installazione è necessario accettare tutti i termini del contratto.
|
LicenseLabel3=Leggi il seguente contratto di licenza.%nPer procedere con l'installazione è necessario accettare tutti i termini del contratto.
|
||||||
LicenseAccepted=Accetto i termini del &contratto di licenza
|
LicenseAccepted=Accetto i termini del &contratto di licenza
|
||||||
LicenseNotAccepted=&Non accetto i termini del contratto di licenza
|
LicenseNotAccepted=&Non accetto i termini del contratto di licenza
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Informazioni
|
WizardInfoBefore=Informazioni
|
||||||
InfoBeforeLabel=Prima di procedere leggi le importanti informazioni che seguono.
|
InfoBeforeLabel=Prima di procedere leggi le importanti informazioni che seguono.
|
||||||
InfoBeforeClickLabel=Quando sei pronto per proseguire, seleziona "Avanti".
|
InfoBeforeClickLabel=Quando sei pronto per proseguire, seleziona "Avanti".
|
||||||
WizardInfoAfter=Informazioni
|
WizardInfoAfter=Informazioni
|
||||||
InfoAfterLabel=Prima di procedere leggi le importanti informazioni che seguono.
|
InfoAfterLabel=Prima di procedere leggi le importanti informazioni che seguono.
|
||||||
InfoAfterClickLabel=Quando sei pronto per proseguire, seleziona "Avanti".
|
InfoAfterClickLabel=Quando sei pronto per proseguire, seleziona "Avanti".
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=Informazioni utente
|
WizardUserInfo=Informazioni utente
|
||||||
UserInfoDesc=Inserisci le seguenti informazioni.
|
UserInfoDesc=Inserisci le seguenti informazioni.
|
||||||
UserInfoName=&Nome:
|
UserInfoName=&Nome:
|
||||||
UserInfoOrg=&Società:
|
UserInfoOrg=&Società:
|
||||||
UserInfoSerial=&Numero di serie:
|
UserInfoSerial=&Numero di serie:
|
||||||
UserInfoNameRequired=È necessario inserire un nome.
|
UserInfoNameRequired=È necessario inserire un nome.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Selezione cartella di installazione
|
WizardSelectDir=Selezione cartella di installazione
|
||||||
SelectDirDesc=Dove vuoi installare [name]?
|
SelectDirDesc=Dove vuoi installare [name]?
|
||||||
SelectDirLabel3=[name] sarà installato nella seguente cartella.
|
SelectDirLabel3=[name] sarà installato nella seguente cartella.
|
||||||
SelectDirBrowseLabel=Per continuare seleziona "Avanti".%nPer scegliere un'altra cartella seleziona "Sfoglia".
|
SelectDirBrowseLabel=Per continuare seleziona "Avanti".%nPer scegliere un'altra cartella seleziona "Sfoglia".
|
||||||
DiskSpaceGBLabel=Sono richiesti almeno [gb] GB di spazio libero nel disco.
|
DiskSpaceGBLabel=Sono richiesti almeno [gb] GB di spazio libero nel disco.
|
||||||
DiskSpaceMBLabel=Sono richiesti almeno [mb] MB di spazio libero nel disco.
|
DiskSpaceMBLabel=Sono richiesti almeno [mb] MB di spazio libero nel disco.
|
||||||
CannotInstallToNetworkDrive=Non è possibile effettuare l'installazione in un disco in rete.
|
CannotInstallToNetworkDrive=Non è possibile effettuare l'installazione in un disco in rete.
|
||||||
CannotInstallToUNCPath=Non è possibile effettuare l'installazione in un percorso UNC.
|
CannotInstallToUNCPath=Non è possibile effettuare l'installazione in un percorso UNC.
|
||||||
InvalidPath=Va inserito un percorso completo di lettera di unità; per esempio:%n%nC:\APP%n%no un percorso di rete nella forma:%n%n\\server\condivisione
|
InvalidPath=Va inserito un percorso completo di lettera di unità; per esempio:%n%nC:\APP%n%no un percorso di rete nella forma:%n%n\\server\condivisione
|
||||||
InvalidDrive=L'unità o il percorso di rete selezionato non esiste o non è accessibile.%n%nSelezionane un altro.
|
InvalidDrive=L'unità o il percorso di rete selezionato non esiste o non è accessibile.%n%nSelezionane un altro.
|
||||||
DiskSpaceWarningTitle=Spazio su disco insufficiente
|
DiskSpaceWarningTitle=Spazio su disco insufficiente
|
||||||
DiskSpaceWarning=L'installazione richiede per eseguire l'installazione almeno %1 KB di spazio libero, ma l'unità selezionata ha solo %2 KB disponibili.%n%nVuoi continuare comunque?
|
DiskSpaceWarning=L'installazione richiede per eseguire l'installazione almeno %1 KB di spazio libero, ma l'unità selezionata ha solo %2 KB disponibili.%n%nVuoi continuare comunque?
|
||||||
DirNameTooLong=Il nome della cartella o il percorso sono troppo lunghi.
|
DirNameTooLong=Il nome della cartella o il percorso sono troppo lunghi.
|
||||||
InvalidDirName=Il nome della cartella non è valido.
|
InvalidDirName=Il nome della cartella non è valido.
|
||||||
BadDirName32=Il nome della cartella non può includere nessuno dei seguenti caratteri:%n%n%1
|
BadDirName32=Il nome della cartella non può includere nessuno dei seguenti caratteri:%n%n%1
|
||||||
DirExistsTitle=Cartella già esistente
|
DirExistsTitle=Cartella già esistente
|
||||||
DirExists=La cartella%n%n %1%n%nesiste già.%n%nVuoi comunque installare l'applicazione in questa cartella?
|
DirExists=La cartella%n%n %1%n%nesiste già.%n%nVuoi comunque installare l'applicazione in questa cartella?
|
||||||
DirDoesntExistTitle=Cartella inesistente
|
DirDoesntExistTitle=Cartella inesistente
|
||||||
DirDoesntExist=La cartella%n%n %1%n%nnon esiste. Vuoi creare la cartella?
|
DirDoesntExist=La cartella%n%n %1%n%nnon esiste. Vuoi creare la cartella?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Selezione componenti
|
WizardSelectComponents=Selezione componenti
|
||||||
SelectComponentsDesc=Quali componenti vuoi installare?
|
SelectComponentsDesc=Quali componenti vuoi installare?
|
||||||
SelectComponentsLabel2=Seleziona i componenti da installare, deseleziona quelli che non vuoi installare.%nPer continuare seleziona "Avanti".
|
SelectComponentsLabel2=Seleziona i componenti da installare, deseleziona quelli che non vuoi installare.%nPer continuare seleziona "Avanti".
|
||||||
FullInstallation=Installazione completa
|
FullInstallation=Installazione completa
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Installazione compatta
|
CompactInstallation=Installazione compatta
|
||||||
CustomInstallation=Installazione personalizzata
|
CustomInstallation=Installazione personalizzata
|
||||||
NoUninstallWarningTitle=Componente esistente
|
NoUninstallWarningTitle=Componente esistente
|
||||||
NoUninstallWarning=I seguenti componenti sono già installati nel computer:%n%n%1%n%nDeselezionando questi componenti essi non verranno rimossi.%n%nVuoi continuare comunque?
|
NoUninstallWarning=I seguenti componenti sono già installati nel computer:%n%n%1%n%nDeselezionando questi componenti essi non verranno rimossi.%n%nVuoi continuare comunque?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=La selezione attuale richiede almeno [gb] GB di spazio nel disco.
|
ComponentsDiskSpaceGBLabel=La selezione attuale richiede almeno [gb] GB di spazio nel disco.
|
||||||
ComponentsDiskSpaceMBLabel=La selezione attuale richiede almeno [mb] MB di spazio nel disco.
|
ComponentsDiskSpaceMBLabel=La selezione attuale richiede almeno [mb] MB di spazio nel disco.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Selezione processi aggiuntivi
|
WizardSelectTasks=Selezione processi aggiuntivi
|
||||||
SelectTasksDesc=Quali processi aggiuntivi vuoi eseguire?
|
SelectTasksDesc=Quali processi aggiuntivi vuoi eseguire?
|
||||||
SelectTasksLabel2=Seleziona i processi aggiuntivi che verranno eseguiti durante l'installazione di [name], quindi seleziona "Avanti".
|
SelectTasksLabel2=Seleziona i processi aggiuntivi che verranno eseguiti durante l'installazione di [name], quindi seleziona "Avanti".
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Selezione della cartella nel menu Avvio/Start
|
WizardSelectProgramGroup=Selezione della cartella nel menu Avvio/Start
|
||||||
SelectStartMenuFolderDesc=Dove vuoi inserire i collegamenti al programma?
|
SelectStartMenuFolderDesc=Dove vuoi inserire i collegamenti al programma?
|
||||||
SelectStartMenuFolderLabel3=Verranno creati i collegamenti al programma nella seguente cartella del menu Avvio/Start.
|
SelectStartMenuFolderLabel3=Verranno creati i collegamenti al programma nella seguente cartella del menu Avvio/Start.
|
||||||
SelectStartMenuFolderBrowseLabel=Per continuare, seleziona "Avanti".%nPer selezionare un'altra cartella, seleziona "Sfoglia".
|
SelectStartMenuFolderBrowseLabel=Per continuare, seleziona "Avanti".%nPer selezionare un'altra cartella, seleziona "Sfoglia".
|
||||||
MustEnterGroupName=Devi inserire il nome della cartella.
|
MustEnterGroupName=Devi inserire il nome della cartella.
|
||||||
GroupNameTooLong=Il nome della cartella o il percorso sono troppo lunghi.
|
GroupNameTooLong=Il nome della cartella o il percorso sono troppo lunghi.
|
||||||
InvalidGroupName=Il nome della cartella non è valido.
|
InvalidGroupName=Il nome della cartella non è valido.
|
||||||
BadGroupName=Il nome della cartella non può includere nessuno dei seguenti caratteri:%n%n%1
|
BadGroupName=Il nome della cartella non può includere nessuno dei seguenti caratteri:%n%n%1
|
||||||
NoProgramGroupCheck2=&Non creare una cartella nel menu Avvio/Start
|
NoProgramGroupCheck2=&Non creare una cartella nel menu Avvio/Start
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Pronto per l'installazione
|
WizardReady=Pronto per l'installazione
|
||||||
ReadyLabel1=Il programma è pronto per iniziare l'installazione di [name] nel computer.
|
ReadyLabel1=Il programma è pronto per iniziare l'installazione di [name] nel computer.
|
||||||
ReadyLabel2a=Seleziona "Installa" per continuare con l'installazione, o "Indietro" per rivedere o modificare le impostazioni.
|
ReadyLabel2a=Seleziona "Installa" per continuare con l'installazione, o "Indietro" per rivedere o modificare le impostazioni.
|
||||||
ReadyLabel2b=Per procedere con l'installazione seleziona "Installa".
|
ReadyLabel2b=Per procedere con l'installazione seleziona "Installa".
|
||||||
ReadyMemoUserInfo=Informazioni utente:
|
ReadyMemoUserInfo=Informazioni utente:
|
||||||
ReadyMemoDir=Cartella di installazione:
|
ReadyMemoDir=Cartella di installazione:
|
||||||
ReadyMemoType=Tipo di installazione:
|
ReadyMemoType=Tipo di installazione:
|
||||||
ReadyMemoComponents=Componenti selezionati:
|
ReadyMemoComponents=Componenti selezionati:
|
||||||
ReadyMemoGroup=Cartella del menu Avvio/Start:
|
ReadyMemoGroup=Cartella del menu Avvio/Start:
|
||||||
ReadyMemoTasks=Processi aggiuntivi:
|
ReadyMemoTasks=Processi aggiuntivi:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Download file aggiuntivi...
|
DownloadingLabel=Download file aggiuntivi...
|
||||||
ButtonStopDownload=&Stop download
|
ButtonStopDownload=&Stop download
|
||||||
StopDownload=Sei sicuro di voler interrompere il download?
|
StopDownload=Sei sicuro di voler interrompere il download?
|
||||||
ErrorDownloadAborted=Download annullato
|
ErrorDownloadAborted=Download annullato
|
||||||
ErrorDownloadFailed=Download fallito: %1 %2
|
ErrorDownloadFailed=Download fallito: %1 %2
|
||||||
ErrorDownloadSizeFailed=Rilevamento dimensione fallito: %1 %2
|
ErrorDownloadSizeFailed=Rilevamento dimensione fallito: %1 %2
|
||||||
ErrorFileHash1=Errore hash file: %1
|
ErrorFileHash1=Errore hash file: %1
|
||||||
ErrorFileHash2=Hash file non valido: atteso %1, trovato %2
|
ErrorFileHash2=Hash file non valido: atteso %1, trovato %2
|
||||||
ErrorProgress=Progresso non valido: %1 di %2
|
ErrorProgress=Progresso non valido: %1 di %2
|
||||||
ErrorFileSize=Dimensione file non valida: attesa %1, trovata %2
|
ErrorFileSize=Dimensione file non valida: attesa %1, trovata %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Preparazione all'installazione
|
WizardPreparing=Preparazione all'installazione
|
||||||
PreparingDesc=Preparazione all'installazione di [name] nel computer.
|
PreparingDesc=Preparazione all'installazione di [name] nel computer.
|
||||||
PreviousInstallNotCompleted=L'installazione/rimozione precedente del programma non è stata completata.%n%nÈ necessario riavviare il sistema per completare l'installazione.%n%nDopo il riavvio del sistema esegui di nuovo l'installazione di [name].
|
PreviousInstallNotCompleted=L'installazione/rimozione precedente del programma non è stata completata.%n%nÈ necessario riavviare il sistema per completare l'installazione.%n%nDopo il riavvio del sistema esegui di nuovo l'installazione di [name].
|
||||||
CannotContinue=L'installazione non può continuare. Seleziona "Annulla" per uscire.
|
CannotContinue=L'installazione non può continuare. Seleziona "Annulla" per uscire.
|
||||||
ApplicationsFound=Le seguenti applicazioni stanno usando file che devono essere aggiornati dall'installazione.%n%nTi consigliamo di permettere al processo di chiudere automaticamente queste applicazioni.
|
ApplicationsFound=Le seguenti applicazioni stanno usando file che devono essere aggiornati dall'installazione.%n%nTi consigliamo di permettere al processo di chiudere automaticamente queste applicazioni.
|
||||||
ApplicationsFound2=Le seguenti applicazioni stanno usando file che devono essere aggiornati dall'installazione.%n%nTi consigliamo di permettere al processo di chiudere automaticamente queste applicazioni.%n%nAl completamento dell'installazione, il processo tenterà di riavviare le applicazioni.
|
ApplicationsFound2=Le seguenti applicazioni stanno usando file che devono essere aggiornati dall'installazione.%n%nTi consigliamo di permettere al processo di chiudere automaticamente queste applicazioni.%n%nAl completamento dell'installazione, il processo tenterà di riavviare le applicazioni.
|
||||||
CloseApplications=Chiudi &automaticamente le applicazioni
|
CloseApplications=Chiudi &automaticamente le applicazioni
|
||||||
DontCloseApplications=&Non chiudere le applicazioni
|
DontCloseApplications=&Non chiudere le applicazioni
|
||||||
ErrorCloseApplications=L'installazione non è riuscita a chiudere automaticamente tutte le applicazioni.%n%nPrima di proseguire ti raccomandiamo di chiudere tutte le applicazioni che usano file che devono essere aggiornati durante l'installazione.
|
ErrorCloseApplications=L'installazione non è riuscita a chiudere automaticamente tutte le applicazioni.%n%nPrima di proseguire ti raccomandiamo di chiudere tutte le applicazioni che usano file che devono essere aggiornati durante l'installazione.
|
||||||
PrepareToInstallNeedsRestart=Il programma di installazione deve riavviare il computer.%nDopo aver riavviato il computer esegui di nuovo il programma di installazione per completare l'installazione di [name].%n%nVuoi riavviare il computer ora?
|
PrepareToInstallNeedsRestart=Il programma di installazione deve riavviare il computer.%nDopo aver riavviato il computer esegui di nuovo il programma di installazione per completare l'installazione di [name].%n%nVuoi riavviare il computer ora?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Installazione in corso
|
WizardInstalling=Installazione in corso
|
||||||
InstallingLabel=Attendi il completamento dell'installazione di [name] nel computer.
|
InstallingLabel=Attendi il completamento dell'installazione di [name] nel computer.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=Installazione di [name] completata
|
FinishedHeadingLabel=Installazione di [name] completata
|
||||||
FinishedLabelNoIcons=Installazione di [name] completata.
|
FinishedLabelNoIcons=Installazione di [name] completata.
|
||||||
FinishedLabel=Installazione di [name] completata.%n%nL'applicazione può essere eseguita selezionando le relative icone.
|
FinishedLabel=Installazione di [name] completata.%n%nL'applicazione può essere eseguita selezionando le relative icone.
|
||||||
ClickFinish=Seleziona "Fine" per uscire dall'installazione.
|
ClickFinish=Seleziona "Fine" per uscire dall'installazione.
|
||||||
FinishedRestartLabel=Per completare l'installazione di [name], è necessario riavviare il sistema.%n%nVuoi riavviare adesso?
|
FinishedRestartLabel=Per completare l'installazione di [name], è necessario riavviare il sistema.%n%nVuoi riavviare adesso?
|
||||||
FinishedRestartMessage=Per completare l'installazione di [name], è necessario riavviare il sistema.%n%nVuoi riavviare adesso?
|
FinishedRestartMessage=Per completare l'installazione di [name], è necessario riavviare il sistema.%n%nVuoi riavviare adesso?
|
||||||
ShowReadmeCheck=Si, visualizza ora il file LEGGIMI
|
ShowReadmeCheck=Si, visualizza ora il file LEGGIMI
|
||||||
YesRadio=&Si, riavvia il sistema adesso
|
YesRadio=&Si, riavvia il sistema adesso
|
||||||
NoRadio=&No, riavvia il sistema più tardi
|
NoRadio=&No, riavvia il sistema più tardi
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=Esegui %1
|
RunEntryExec=Esegui %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=Visualizza %1
|
RunEntryShellExec=Visualizza %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=L'installazione necessita del disco successivo
|
ChangeDiskTitle=L'installazione necessita del disco successivo
|
||||||
SelectDiskLabel2=Inserisci il disco %1 e seleziona "OK".%n%nSe i file di questo disco si trovano in una cartella diversa da quella visualizzata sotto, inserisci il percorso corretto o seleziona "Sfoglia".
|
SelectDiskLabel2=Inserisci il disco %1 e seleziona "OK".%n%nSe i file di questo disco si trovano in una cartella diversa da quella visualizzata sotto, inserisci il percorso corretto o seleziona "Sfoglia".
|
||||||
PathLabel=&Percorso:
|
PathLabel=&Percorso:
|
||||||
FileNotInDir2=Il file "%1" non è stato trovato in "%2".%n%nInserisci il disco corretto o seleziona un'altra cartella.
|
FileNotInDir2=Il file "%1" non è stato trovato in "%2".%n%nInserisci il disco corretto o seleziona un'altra cartella.
|
||||||
SelectDirectoryLabel=Specifica il percorso del prossimo disco.
|
SelectDirectoryLabel=Specifica il percorso del prossimo disco.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=L'installazione non è stata completata.%n%nCorreggi il problema e riesegui nuovamente l'installazione.
|
SetupAborted=L'installazione non è stata completata.%n%nCorreggi il problema e riesegui nuovamente l'installazione.
|
||||||
AbortRetryIgnoreSelectAction=Seleziona azione
|
AbortRetryIgnoreSelectAction=Seleziona azione
|
||||||
AbortRetryIgnoreRetry=&Riprova
|
AbortRetryIgnoreRetry=&Riprova
|
||||||
AbortRetryIgnoreIgnore=&Ignora questo errore e continua
|
AbortRetryIgnoreIgnore=&Ignora questo errore e continua
|
||||||
AbortRetryIgnoreCancel=Annulla installazione
|
AbortRetryIgnoreCancel=Annulla installazione
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Chiusura applicazioni...
|
StatusClosingApplications=Chiusura applicazioni...
|
||||||
StatusCreateDirs=Creazione cartelle...
|
StatusCreateDirs=Creazione cartelle...
|
||||||
StatusExtractFiles=Estrazione file...
|
StatusExtractFiles=Estrazione file...
|
||||||
StatusCreateIcons=Creazione icone...
|
StatusCreateIcons=Creazione icone...
|
||||||
StatusCreateIniEntries=Creazione voci nei file INI...
|
StatusCreateIniEntries=Creazione voci nei file INI...
|
||||||
StatusCreateRegistryEntries=Creazione voci di registro...
|
StatusCreateRegistryEntries=Creazione voci di registro...
|
||||||
StatusRegisterFiles=Registrazione file...
|
StatusRegisterFiles=Registrazione file...
|
||||||
StatusSavingUninstall=Salvataggio delle informazioni di disinstallazione...
|
StatusSavingUninstall=Salvataggio delle informazioni di disinstallazione...
|
||||||
StatusRunProgram=Termine dell'installazione...
|
StatusRunProgram=Termine dell'installazione...
|
||||||
StatusRestartingApplications=Riavvio applicazioni...
|
StatusRestartingApplications=Riavvio applicazioni...
|
||||||
StatusRollback=Recupero delle modifiche...
|
StatusRollback=Recupero delle modifiche...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Errore interno %1
|
ErrorInternal2=Errore interno %1
|
||||||
ErrorFunctionFailedNoCode=%1 fallito
|
ErrorFunctionFailedNoCode=%1 fallito
|
||||||
ErrorFunctionFailed=%1 fallito; codice %2
|
ErrorFunctionFailed=%1 fallito; codice %2
|
||||||
ErrorFunctionFailedWithMessage=%1 fallito; codice %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 fallito; codice %2.%n%3
|
||||||
ErrorExecutingProgram=Impossibile eseguire il file:%n%1
|
ErrorExecutingProgram=Impossibile eseguire il file:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Errore di apertura della chiave di registro:%n%1\%2
|
ErrorRegOpenKey=Errore di apertura della chiave di registro:%n%1\%2
|
||||||
ErrorRegCreateKey=Errore di creazione della chiave di registro:%n%1\%2
|
ErrorRegCreateKey=Errore di creazione della chiave di registro:%n%1\%2
|
||||||
ErrorRegWriteKey=Errore di scrittura della chiave di registro:%n%1\%2
|
ErrorRegWriteKey=Errore di scrittura della chiave di registro:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Errore nella creazione delle voci INI nel file "%1".
|
ErrorIniEntry=Errore nella creazione delle voci INI nel file "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Salta questo file (non suggerito)
|
FileAbortRetryIgnoreSkipNotRecommended=&Salta questo file (non suggerito)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignora questo errore e continua (non suggerito)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignora questo errore e continua (non suggerito)
|
||||||
SourceIsCorrupted=Il file sorgente è danneggiato
|
SourceIsCorrupted=Il file sorgente è danneggiato
|
||||||
SourceDoesntExist=Il file sorgente "%1" non esiste
|
SourceDoesntExist=Il file sorgente "%1" non esiste
|
||||||
ExistingFileReadOnly2=Il file esistente non può essere sostituito in quanto segnato come in sola lettura.
|
ExistingFileReadOnly2=Il file esistente non può essere sostituito in quanto segnato come in sola lettura.
|
||||||
ExistingFileReadOnlyRetry=&Rimuovi attributo di sola lettura e riprova
|
ExistingFileReadOnlyRetry=&Rimuovi attributo di sola lettura e riprova
|
||||||
ExistingFileReadOnlyKeepExisting=&Mantieni il file esistente
|
ExistingFileReadOnlyKeepExisting=&Mantieni il file esistente
|
||||||
ErrorReadingExistingDest=Si è verificato un errore durante la lettura del file esistente:
|
ErrorReadingExistingDest=Si è verificato un errore durante la lettura del file esistente:
|
||||||
FileExistsSelectAction=Seleziona azione
|
FileExistsSelectAction=Seleziona azione
|
||||||
FileExists2=Il file esiste già.
|
FileExists2=Il file esiste già.
|
||||||
FileExistsOverwriteExisting=S&ovrascrivi il file esistente
|
FileExistsOverwriteExisting=S&ovrascrivi il file esistente
|
||||||
FileExistsKeepExisting=&Mantieni il file esistente
|
FileExistsKeepExisting=&Mantieni il file esistente
|
||||||
FileExistsOverwriteOrKeepAll=&Applica questa azione per i prossimi conflitti
|
FileExistsOverwriteOrKeepAll=&Applica questa azione per i prossimi conflitti
|
||||||
ExistingFileNewerSelectAction=Seleziona azione
|
ExistingFileNewerSelectAction=Seleziona azione
|
||||||
ExistingFileNewer2=Il file esistente è più recente del file che si sta cercando di installare.
|
ExistingFileNewer2=Il file esistente è più recente del file che si sta cercando di installare.
|
||||||
ExistingFileNewerOverwriteExisting=S&ovrascrivi il file esistente
|
ExistingFileNewerOverwriteExisting=S&ovrascrivi il file esistente
|
||||||
ExistingFileNewerKeepExisting=&Mantieni il file esistente (suggerito)
|
ExistingFileNewerKeepExisting=&Mantieni il file esistente (suggerito)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Applica questa azione per i prossimi conflitti
|
ExistingFileNewerOverwriteOrKeepAll=&Applica questa azione per i prossimi conflitti
|
||||||
ErrorChangingAttr=Si è verificato un errore durante il tentativo di modifica dell'attributo del file esistente:
|
ErrorChangingAttr=Si è verificato un errore durante il tentativo di modifica dell'attributo del file esistente:
|
||||||
ErrorCreatingTemp=Si è verificato un errore durante la creazione di un file nella cartella di installazione:
|
ErrorCreatingTemp=Si è verificato un errore durante la creazione di un file nella cartella di installazione:
|
||||||
ErrorReadingSource=Si è verificato un errore durante la lettura del file sorgente:
|
ErrorReadingSource=Si è verificato un errore durante la lettura del file sorgente:
|
||||||
ErrorCopying=Si è verificato un errore durante la copia di un file:
|
ErrorCopying=Si è verificato un errore durante la copia di un file:
|
||||||
ErrorReplacingExistingFile=Si è verificato un errore durante la sovrascrittura del file esistente:
|
ErrorReplacingExistingFile=Si è verificato un errore durante la sovrascrittura del file esistente:
|
||||||
ErrorRestartReplace=Errore durante riavvio o sostituzione:
|
ErrorRestartReplace=Errore durante riavvio o sostituzione:
|
||||||
ErrorRenamingTemp=Si è verificato un errore durante il tentativo di rinominare un file nella cartella di installazione:
|
ErrorRenamingTemp=Si è verificato un errore durante il tentativo di rinominare un file nella cartella di installazione:
|
||||||
ErrorRegisterServer=Impossibile registrare la DLL/OCX: %1
|
ErrorRegisterServer=Impossibile registrare la DLL/OCX: %1
|
||||||
ErrorRegSvr32Failed=RegSvr32 è fallito con codice di uscita %1
|
ErrorRegSvr32Failed=RegSvr32 è fallito con codice di uscita %1
|
||||||
ErrorRegisterTypeLib=Impossibile registrare la libreria di tipo: %1
|
ErrorRegisterTypeLib=Impossibile registrare la libreria di tipo: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32bit
|
UninstallDisplayNameMark32Bit=32bit
|
||||||
UninstallDisplayNameMark64Bit=64bit
|
UninstallDisplayNameMark64Bit=64bit
|
||||||
UninstallDisplayNameMarkAllUsers=Tutti gli utenti
|
UninstallDisplayNameMarkAllUsers=Tutti gli utenti
|
||||||
UninstallDisplayNameMarkCurrentUser=Utente attuale
|
UninstallDisplayNameMarkCurrentUser=Utente attuale
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Si è verificato un errore durante l'apertura del file LEGGIMI.
|
ErrorOpeningReadme=Si è verificato un errore durante l'apertura del file LEGGIMI.
|
||||||
ErrorRestartingComputer=Impossibile riavviare il sistema. Riavvia il sistema manualmente.
|
ErrorRestartingComputer=Impossibile riavviare il sistema. Riavvia il sistema manualmente.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=Il file "%1" non esiste.%n%nImpossibile disinstallare.
|
UninstallNotFound=Il file "%1" non esiste.%n%nImpossibile disinstallare.
|
||||||
UninstallOpenError=Il file "%1" non può essere aperto.%n%nImpossibile disinstallare
|
UninstallOpenError=Il file "%1" non può essere aperto.%n%nImpossibile disinstallare
|
||||||
UninstallUnsupportedVer=Il file registro di disinstallazione "%1" è in un formato non riconosciuto da questa versione del programma di disinstallazione.%n%nImpossibile disinstallare
|
UninstallUnsupportedVer=Il file registro di disinstallazione "%1" è in un formato non riconosciuto da questa versione del programma di disinstallazione.%n%nImpossibile disinstallare
|
||||||
UninstallUnknownEntry=Trovata una voce sconosciuta (%1) nel file registro di disinstallazione
|
UninstallUnknownEntry=Trovata una voce sconosciuta (%1) nel file registro di disinstallazione
|
||||||
ConfirmUninstall=Sei sicuro di voler eseguire l'assistente di disinstallazione di %1?
|
ConfirmUninstall=Sei sicuro di voler eseguire l'assistente di disinstallazione di %1?
|
||||||
UninstallOnlyOnWin64=Questa applicazione può essere disinstallata solo in Windows a 64-bit.
|
UninstallOnlyOnWin64=Questa applicazione può essere disinstallata solo in Windows a 64-bit.
|
||||||
OnlyAdminCanUninstall=Questa applicazione può essere disinstallata solo da un utente con privilegi di amministratore.
|
OnlyAdminCanUninstall=Questa applicazione può essere disinstallata solo da un utente con privilegi di amministratore.
|
||||||
UninstallStatusLabel=Attendi fino a che %1 è stato rimosso dal computer.
|
UninstallStatusLabel=Attendi fino a che %1 è stato rimosso dal computer.
|
||||||
UninstalledAll=Disinstallazione di %1 completata.
|
UninstalledAll=Disinstallazione di %1 completata.
|
||||||
UninstalledMost=Disinstallazione di %1 completata.%n%nAlcuni elementi non possono essere rimossi.%n%nDovranno essere rimossi manualmente.
|
UninstalledMost=Disinstallazione di %1 completata.%n%nAlcuni elementi non possono essere rimossi.%n%nDovranno essere rimossi manualmente.
|
||||||
UninstalledAndNeedsRestart=Per completare la disinstallazione di %1, è necessario riavviare il sistema.%n%nVuoi riavviare il sistema adesso?
|
UninstalledAndNeedsRestart=Per completare la disinstallazione di %1, è necessario riavviare il sistema.%n%nVuoi riavviare il sistema adesso?
|
||||||
UninstallDataCorrupted=Il file "%1" è danneggiato. Impossibile disinstallare
|
UninstallDataCorrupted=Il file "%1" è danneggiato. Impossibile disinstallare
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Vuoi rimuovere il file condiviso?
|
ConfirmDeleteSharedFileTitle=Vuoi rimuovere il file condiviso?
|
||||||
ConfirmDeleteSharedFile2=Il sistema indica che il seguente file condiviso non è più usato da nessun programma.%nVuoi rimuovere questo file condiviso?%nSe qualche programma usasse questo file, potrebbe non funzionare più correttamente.%nSe non sei sicuro, seleziona "No".%nLasciare il file nel sistema non può causare danni.
|
ConfirmDeleteSharedFile2=Il sistema indica che il seguente file condiviso non è più usato da nessun programma.%nVuoi rimuovere questo file condiviso?%nSe qualche programma usasse questo file, potrebbe non funzionare più correttamente.%nSe non sei sicuro, seleziona "No".%nLasciare il file nel sistema non può causare danni.
|
||||||
SharedFileNameLabel=Nome del file:
|
SharedFileNameLabel=Nome del file:
|
||||||
SharedFileLocationLabel=Percorso:
|
SharedFileLocationLabel=Percorso:
|
||||||
WizardUninstalling=Stato disinstallazione
|
WizardUninstalling=Stato disinstallazione
|
||||||
StatusUninstalling=Disinstallazione di %1...
|
StatusUninstalling=Disinstallazione di %1...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Installazione di %1.
|
ShutdownBlockReasonInstallingApp=Installazione di %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Disinstallazione di %1.
|
ShutdownBlockReasonUninstallingApp=Disinstallazione di %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 versione %2
|
NameAndVersion=%1 versione %2
|
||||||
AdditionalIcons=Icone aggiuntive:
|
AdditionalIcons=Icone aggiuntive:
|
||||||
CreateDesktopIcon=Crea un'icona sul &desktop
|
CreateDesktopIcon=Crea un'icona sul &desktop
|
||||||
CreateQuickLaunchIcon=Crea un'icona nella &barra 'Avvio veloce'
|
CreateQuickLaunchIcon=Crea un'icona nella &barra 'Avvio veloce'
|
||||||
ProgramOnTheWeb=Sito web di %1
|
ProgramOnTheWeb=Sito web di %1
|
||||||
UninstallProgram=Disinstalla %1
|
UninstallProgram=Disinstalla %1
|
||||||
LaunchProgram=Avvia %1
|
LaunchProgram=Avvia %1
|
||||||
AssocFileExtension=&Associa i file con estensione %2 a %1
|
AssocFileExtension=&Associa i file con estensione %2 a %1
|
||||||
AssocingFileExtension=Associazione dei file con estensione %2 a %1...
|
AssocingFileExtension=Associazione dei file con estensione %2 a %1...
|
||||||
AutoStartProgramGroupDescription=Esecuzione automatica:
|
AutoStartProgramGroupDescription=Esecuzione automatica:
|
||||||
AutoStartProgram=Esegui automaticamente %1
|
AutoStartProgram=Esegui automaticamente %1
|
||||||
AddonHostProgramNotFound=Impossibile individuare %1 nella cartella selezionata.%n%nVuoi continuare ugualmente?
|
AddonHostProgramNotFound=Impossibile individuare %1 nella cartella selezionata.%n%nVuoi continuare ugualmente?
|
||||||
|
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Scegli modalità di installazione
|
SelectSetupInstallModeTitle=Scegli modalità di installazione
|
||||||
SelectSetupInstallModeDesc=VCMI può essere installato per tutti gli utenti o solo per te.
|
SelectSetupInstallModeDesc=VCMI può essere installato per tutti gli utenti o solo per te.
|
||||||
SelectSetupInstallModeSubTitle=Seleziona la modalità di installazione preferita:
|
SelectSetupInstallModeSubTitle=Seleziona la modalità di installazione preferita:
|
||||||
InstallForAllUsers=Installa per tutti gli utenti
|
InstallForAllUsers=Installa per tutti gli utenti
|
||||||
InstallForAllUsers1=Richiede privilegi amministrativi
|
InstallForAllUsers1=Richiede privilegi amministrativi
|
||||||
InstallForMeOnly=Installa solo per me
|
InstallForMeOnly=Installa solo per me
|
||||||
InstallForMeOnly1=Verrà visualizzato un avviso del firewall al primo avvio del gioco.
|
InstallForMeOnly1=Verrà visualizzato un avviso del firewall al primo avvio del gioco.
|
||||||
InstallForMeOnly2=Attenzione: I giochi LAN non funzioneranno se la regola del firewall non può essere consentita.
|
InstallForMeOnly2=Attenzione: I giochi LAN non funzioneranno se la regola del firewall non può essere consentita.
|
||||||
CreateDesktopShortcuts=Crea collegamenti sul desktop
|
CreateDesktopShortcuts=Crea collegamenti sul desktop
|
||||||
ShortcutsOptions=Opzioni collegamenti
|
ShortcutsOptions=Opzioni collegamenti
|
||||||
CreateStartMenuShortcuts=Crea collegamenti nel menu Start
|
CreateStartMenuShortcuts=Crea collegamenti nel menu Start
|
||||||
FirewallOptions=Impostazioni firewall
|
FirewallOptions=Impostazioni firewall
|
||||||
AddFirewallRules=Aggiungi regole del firewall per VCMI
|
AddFirewallRules=Aggiungi regole del firewall per VCMI
|
||||||
FileAssociations=Associazioni file
|
FileAssociations=Associazioni file
|
||||||
AssociateH3MFiles=Associa i file .h3m con l'Editor Mappe VCMI
|
AssociateH3MFiles=Associa i file .h3m con l'Editor Mappe VCMI
|
||||||
AssociateVMapFiles=Associa i file .vmap con l'Editor Mappe VCMI
|
AssociateVMapFiles=Associa i file .vmap con l'Editor Mappe VCMI
|
||||||
RunVCMILauncherAfterInstall=Avvia il Launcher VCMI
|
RunVCMILauncherAfterInstall=Avvia il Launcher VCMI
|
||||||
ShortcutMapEditor=Editor Mappe VCMI
|
ShortcutMapEditor=Editor Mappe VCMI
|
||||||
ShortcutLauncher=Launcher VCMI
|
ShortcutLauncher=Launcher VCMI
|
||||||
ShortcutWebPage=Sito Web VCMI
|
ShortcutWebPage=Sito Web VCMI
|
||||||
ShortcutDiscord=Discord VCMI
|
ShortcutDiscord=Discord VCMI
|
||||||
ShortcutLauncherComment=Avvia il Launcher VCMI
|
ShortcutLauncherComment=Avvia il Launcher VCMI
|
||||||
ShortcutMapEditorComment=Apri l'Editor Mappe VCMI
|
ShortcutMapEditorComment=Apri l'Editor Mappe VCMI
|
||||||
ShortcutWebPageComment=Visita il sito ufficiale di VCMI
|
ShortcutWebPageComment=Visita il sito ufficiale di VCMI
|
||||||
ShortcutDiscordComment=Visita il Discord ufficiale di VCMI
|
ShortcutDiscordComment=Visita il Discord ufficiale di VCMI
|
||||||
DeleteUserData=Elimina i dati utente
|
DeleteUserData=Elimina i dati utente
|
||||||
Uninstall=Disinstalla
|
Uninstall=Disinstalla
|
||||||
VMAPDescription=File mappa VCMI
|
VMAPDescription=File mappa VCMI
|
||||||
H3MDescription=File mappa Heroes 3
|
H3MDescription=File mappa Heroes 3
|
@@ -1,421 +1,421 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Korean messages ***
|
; *** Inno Setup version 6.1.0+ Korean messages ***
|
||||||
|
|
||||||
; ▒ 6.2.2+ Translator: VenusGirl (venusgirl@outlook.com)
|
; ▒ 6.2.2+ Translator: VenusGirl (venusgirl@outlook.com)
|
||||||
; ▒ 6.2.0+ Translator: Logan.Hwang (logan.hwang@blueant.kr)
|
; ▒ 6.2.0+ Translator: Logan.Hwang (logan.hwang@blueant.kr)
|
||||||
; ▒ 6.0.3+ Translator: SungDong Kim (acroedit@gmail.com)
|
; ▒ 6.0.3+ Translator: SungDong Kim (acroedit@gmail.com)
|
||||||
; ▒ 5.5.3+ Translator: Domddol (domddol@gmail.com)
|
; ▒ 5.5.3+ Translator: Domddol (domddol@gmail.com)
|
||||||
; ▒ Contributors: Hansoo KIM (iryna7@gmail.com), Woong-Jae An (a183393@hanmail.net)
|
; ▒ Contributors: Hansoo KIM (iryna7@gmail.com), Woong-Jae An (a183393@hanmail.net)
|
||||||
; ▒ 이 번역은 한국어 맞춤법을 준수합니다.
|
; ▒ 이 번역은 한국어 맞춤법을 준수합니다.
|
||||||
;
|
;
|
||||||
; 이 파일의 사용자 제공 번역을 다운로드하려면 다음으로 이동하십시오:
|
; 이 파일의 사용자 제공 번역을 다운로드하려면 다음으로 이동하십시오:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
|
|
||||||
; 참고: 이 텍스트를 번역할 때는 InnoSetup 메시지에
|
; 참고: 이 텍스트를 번역할 때는 InnoSetup 메시지에
|
||||||
; 마침표가 자동으로 추가되므로 아직 없는 메시지의 끝에
|
; 마침표가 자동으로 추가되므로 아직 없는 메시지의 끝에
|
||||||
; 마침표(.)를 추가하지 마십시오 (마침표를 추가하면
|
; 마침표(.)를 추가하지 마십시오 (마침표를 추가하면
|
||||||
; 두 개의 마침표가 표시됩니다).
|
; 두 개의 마침표가 표시됩니다).
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; 다음 세 항목은 매우 중요합니다. 도움말 파일의
|
; 다음 세 항목은 매우 중요합니다. 도움말 파일의
|
||||||
; '[LangOptions] 섹션' 항목을 읽고 이해하십시오.
|
; '[LangOptions] 섹션' 항목을 읽고 이해하십시오.
|
||||||
LanguageName=한국어
|
LanguageName=한국어
|
||||||
LanguageID=$0412
|
LanguageID=$0412
|
||||||
LanguageCodePage=949
|
LanguageCodePage=949
|
||||||
; 번역할 언어가 특수 글꼴 또는 크기를 필요로 하는 경우
|
; 번역할 언어가 특수 글꼴 또는 크기를 필요로 하는 경우
|
||||||
; 다음 항목 중 하나를 주석 해제하고 적절하게 변경하십시오.
|
; 다음 항목 중 하나를 주석 해제하고 적절하게 변경하십시오.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=설치
|
SetupAppTitle=설치
|
||||||
SetupWindowTitle=%1 설치
|
SetupWindowTitle=%1 설치
|
||||||
UninstallAppTitle=제거
|
UninstallAppTitle=제거
|
||||||
UninstallAppFullTitle=%1 제거
|
UninstallAppFullTitle=%1 제거
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=정보
|
InformationTitle=정보
|
||||||
ConfirmTitle=확인
|
ConfirmTitle=확인
|
||||||
ErrorTitle=오류
|
ErrorTitle=오류
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=%1을(를) 설치합니다, 계속하시겠습니까?
|
SetupLdrStartupMessage=%1을(를) 설치합니다, 계속하시겠습니까?
|
||||||
LdrCannotCreateTemp=임시 파일을 만들 수 없습니다. 설치가 중단되었습니다.
|
LdrCannotCreateTemp=임시 파일을 만들 수 없습니다. 설치가 중단되었습니다.
|
||||||
LdrCannotExecTemp=임시 디렉터리에서 파일을 실행할 수 없습니다. 설치가 중단되었습니다.
|
LdrCannotExecTemp=임시 디렉터리에서 파일을 실행할 수 없습니다. 설치가 중단되었습니다.
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%n오류 %2: %3
|
LastErrorMessage=%1.%n%n오류 %2: %3
|
||||||
SetupFileMissing=%1 파일이 설치 디렉터리에 없습니다. 문제를 해결하거나 프로그램의 새 사본을 구하십시오.
|
SetupFileMissing=%1 파일이 설치 디렉터리에 없습니다. 문제를 해결하거나 프로그램의 새 사본을 구하십시오.
|
||||||
SetupFileCorrupt=설치 파일이 손상되었습니다. 프로그램의 새 사본을 구하십시오.
|
SetupFileCorrupt=설치 파일이 손상되었습니다. 프로그램의 새 사본을 구하십시오.
|
||||||
SetupFileCorruptOrWrongVer=설치 파일이 손상되었거나 이 버전의 설치 프로그램과 호환되지 않습니다. 문제를 해결하거나 프로그램의 새 복사본을 구하십시오.
|
SetupFileCorruptOrWrongVer=설치 파일이 손상되었거나 이 버전의 설치 프로그램과 호환되지 않습니다. 문제를 해결하거나 프로그램의 새 복사본을 구하십시오.
|
||||||
InvalidParameter=명령줄에 잘못된 매개변수가 전달되었습니다:%n%n%1
|
InvalidParameter=명령줄에 잘못된 매개변수가 전달되었습니다:%n%n%1
|
||||||
SetupAlreadyRunning=설치가 이미 실행 중입니다.
|
SetupAlreadyRunning=설치가 이미 실행 중입니다.
|
||||||
WindowsVersionNotSupported=이 프로그램은 컴퓨터에서 실행 중인 Windows 버전을 지원하지 않습니다.
|
WindowsVersionNotSupported=이 프로그램은 컴퓨터에서 실행 중인 Windows 버전을 지원하지 않습니다.
|
||||||
WindowsServicePackRequired=이 프로그램을 사용하려면 %1 서비스 팩 %2 이상이 필요합니다.
|
WindowsServicePackRequired=이 프로그램을 사용하려면 %1 서비스 팩 %2 이상이 필요합니다.
|
||||||
NotOnThisPlatform=이 프로그램은 %1에서 실행되지 않습니다.
|
NotOnThisPlatform=이 프로그램은 %1에서 실행되지 않습니다.
|
||||||
OnlyOnThisPlatform=이 프로그램은 %1에서 실행되어야 합니다.
|
OnlyOnThisPlatform=이 프로그램은 %1에서 실행되어야 합니다.
|
||||||
OnlyOnTheseArchitectures=이 프로그램은 다음 프로세서 아키텍처용으로 설계된 Windows 버전에만 설치할 수 있습니다:%n%n%1
|
OnlyOnTheseArchitectures=이 프로그램은 다음 프로세서 아키텍처용으로 설계된 Windows 버전에만 설치할 수 있습니다:%n%n%1
|
||||||
WinVersionTooLowError=이 프로그램에는 %1 버전 %2 이상이 필요합니다.
|
WinVersionTooLowError=이 프로그램에는 %1 버전 %2 이상이 필요합니다.
|
||||||
WinVersionTooHighError=%1 버전 %2 이상에 이 프로그램을 설치할 수 없습니다.
|
WinVersionTooHighError=%1 버전 %2 이상에 이 프로그램을 설치할 수 없습니다.
|
||||||
AdminPrivilegesRequired=이 프로그램을 설치할 때 관리자로 로그인해야 합니다.
|
AdminPrivilegesRequired=이 프로그램을 설치할 때 관리자로 로그인해야 합니다.
|
||||||
PowerUserPrivilegesRequired=이 프로그램을 설치할 때 관리자 또는 Power Users 그룹의 구성원으로 로그인해야 합니다.
|
PowerUserPrivilegesRequired=이 프로그램을 설치할 때 관리자 또는 Power Users 그룹의 구성원으로 로그인해야 합니다.
|
||||||
SetupAppRunningError=설치에서 %1이(가) 현재 실행 중임을 감지했습니다.%n%n지금 모든 인스턴스를 닫은 다음 확인을 클릭하여 계속하거나 취소를 클릭하여 종료하십시오.
|
SetupAppRunningError=설치에서 %1이(가) 현재 실행 중임을 감지했습니다.%n%n지금 모든 인스턴스를 닫은 다음 확인을 클릭하여 계속하거나 취소를 클릭하여 종료하십시오.
|
||||||
UninstallAppRunningError=제거에서 %1이(가) 현재 실행 중임을 감지했습니다.%n%n지금 모든 인스턴스를 닫은 다음 확인을 클릭하여 계속하거나 취소를 클릭하여 종료하십시오.
|
UninstallAppRunningError=제거에서 %1이(가) 현재 실행 중임을 감지했습니다.%n%n지금 모든 인스턴스를 닫은 다음 확인을 클릭하여 계속하거나 취소를 클릭하여 종료하십시오.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=설치 모드 선택
|
PrivilegesRequiredOverrideTitle=설치 모드 선택
|
||||||
PrivilegesRequiredOverrideInstruction=설치 모드를 선택해 주십시오
|
PrivilegesRequiredOverrideInstruction=설치 모드를 선택해 주십시오
|
||||||
PrivilegesRequiredOverrideText1=%1은 모든 사용자 (관리자 권한 필요) 또는 사용자용으로 설치합니다.
|
PrivilegesRequiredOverrideText1=%1은 모든 사용자 (관리자 권한 필요) 또는 사용자용으로 설치합니다.
|
||||||
PrivilegesRequiredOverrideText2=%1은 현재 사용자 또는 모든 사용자 (관리자 권한 필요)용으로 설치합니다.
|
PrivilegesRequiredOverrideText2=%1은 현재 사용자 또는 모든 사용자 (관리자 권한 필요)용으로 설치합니다.
|
||||||
PrivilegesRequiredOverrideAllUsers=모든 사용자용으로 설치(&A)
|
PrivilegesRequiredOverrideAllUsers=모든 사용자용으로 설치(&A)
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=모든 사용자용으로 설치 (추천)(&A)
|
PrivilegesRequiredOverrideAllUsersRecommended=모든 사용자용으로 설치 (추천)(&A)
|
||||||
PrivilegesRequiredOverrideCurrentUser=현재 사용자용으로 설치(&M)
|
PrivilegesRequiredOverrideCurrentUser=현재 사용자용으로 설치(&M)
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=현재 사용자용으로 설치 (추천)(&M)
|
PrivilegesRequiredOverrideCurrentUserRecommended=현재 사용자용으로 설치 (추천)(&M)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=설치 프로그램에서 "%1" 디렉터리를 만들지 못했습니다.
|
ErrorCreatingDir=설치 프로그램에서 "%1" 디렉터리를 만들지 못했습니다.
|
||||||
ErrorTooManyFilesInDir="%1" 디렉터리에 파일이 너무 많아서 파일을 만들 수 없습니다
|
ErrorTooManyFilesInDir="%1" 디렉터리에 파일이 너무 많아서 파일을 만들 수 없습니다
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=설치 종료
|
ExitSetupTitle=설치 종료
|
||||||
ExitSetupMessage=설치가 완료되지 않았습니다. 지금 종료하면 프로그램이 설치되지 않습니다.%n%n설치를 다시 실행하여 설치를 완료할 수 있습니다.%n%n설치를 종료하시겠습니까?
|
ExitSetupMessage=설치가 완료되지 않았습니다. 지금 종료하면 프로그램이 설치되지 않습니다.%n%n설치를 다시 실행하여 설치를 완료할 수 있습니다.%n%n설치를 종료하시겠습니까?
|
||||||
AboutSetupMenuItem=설치 정보(&A)...
|
AboutSetupMenuItem=설치 정보(&A)...
|
||||||
AboutSetupTitle=설치 정보
|
AboutSetupTitle=설치 정보
|
||||||
AboutSetupMessage=%1 버전 %2%n%3%n%n%1 홈 페이지:%n%4
|
AboutSetupMessage=%1 버전 %2%n%3%n%n%1 홈 페이지:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=
|
TranslatorNote=
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< 뒤로(&B)
|
ButtonBack=< 뒤로(&B)
|
||||||
ButtonNext=다음(&N) >
|
ButtonNext=다음(&N) >
|
||||||
ButtonInstall=설치(&I)
|
ButtonInstall=설치(&I)
|
||||||
ButtonOK=확인
|
ButtonOK=확인
|
||||||
ButtonCancel=취소
|
ButtonCancel=취소
|
||||||
ButtonYes=예(&Y)
|
ButtonYes=예(&Y)
|
||||||
ButtonYesToAll=모두 예(&A)
|
ButtonYesToAll=모두 예(&A)
|
||||||
ButtonNo=아니오(&N)
|
ButtonNo=아니오(&N)
|
||||||
ButtonNoToAll=모두 아니오(&O)
|
ButtonNoToAll=모두 아니오(&O)
|
||||||
ButtonFinish=마침(&F)
|
ButtonFinish=마침(&F)
|
||||||
ButtonBrowse=찾아보기(&B)...
|
ButtonBrowse=찾아보기(&B)...
|
||||||
ButtonWizardBrowse=찾아보기(&R)...
|
ButtonWizardBrowse=찾아보기(&R)...
|
||||||
ButtonNewFolder=새 폴더 만들기(&M)
|
ButtonNewFolder=새 폴더 만들기(&M)
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=설치 언어 선택
|
SelectLanguageTitle=설치 언어 선택
|
||||||
SelectLanguageLabel=설치 중에 사용할 언어를 선택하십시오.
|
SelectLanguageLabel=설치 중에 사용할 언어를 선택하십시오.
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=다음을 클릭하여 계속하거나 취소를 클릭하여 설치를 종료합니다.
|
ClickNext=다음을 클릭하여 계속하거나 취소를 클릭하여 설치를 종료합니다.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=폴더 찾아보기
|
BrowseDialogTitle=폴더 찾아보기
|
||||||
BrowseDialogLabel=아래 목록에서 폴더를 선택한 후 확인을 클릭하십시오.
|
BrowseDialogLabel=아래 목록에서 폴더를 선택한 후 확인을 클릭하십시오.
|
||||||
NewFolderName=새 폴더
|
NewFolderName=새 폴더
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=[name] 설치 마법사에 오신 것을 환영합니다
|
WelcomeLabel1=[name] 설치 마법사에 오신 것을 환영합니다
|
||||||
WelcomeLabel2=컴퓨터에 [name/ver]가 설치됩니다.%n%n계속하기 전에 다른 모든 응용 프로그램을 닫는 것이 좋습니다.
|
WelcomeLabel2=컴퓨터에 [name/ver]가 설치됩니다.%n%n계속하기 전에 다른 모든 응용 프로그램을 닫는 것이 좋습니다.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=암호
|
WizardPassword=암호
|
||||||
PasswordLabel1=이 설치는 암호로 보호됩니다.
|
PasswordLabel1=이 설치는 암호로 보호됩니다.
|
||||||
PasswordLabel3=암호를 입력한 후 다음을 클릭하여 계속하십시오. 암호는 대소문자를 구분합니다.
|
PasswordLabel3=암호를 입력한 후 다음을 클릭하여 계속하십시오. 암호는 대소문자를 구분합니다.
|
||||||
PasswordEditLabel=암호(&P):
|
PasswordEditLabel=암호(&P):
|
||||||
IncorrectPassword=입력한 암호가 올바르지 않습니다. 다시 시도하십시오.
|
IncorrectPassword=입력한 암호가 올바르지 않습니다. 다시 시도하십시오.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=사용권 계약
|
WizardLicense=사용권 계약
|
||||||
LicenseLabel=계속하기 전에 다음 중요한 정보를 읽어보십시오.
|
LicenseLabel=계속하기 전에 다음 중요한 정보를 읽어보십시오.
|
||||||
LicenseLabel3=다음 사용권 계약을 읽어보십시오. 설치를 계속하기 전에 이 계약 조건에 동의해야 합니다.
|
LicenseLabel3=다음 사용권 계약을 읽어보십시오. 설치를 계속하기 전에 이 계약 조건에 동의해야 합니다.
|
||||||
LicenseAccepted=동의합니다(&A)
|
LicenseAccepted=동의합니다(&A)
|
||||||
LicenseNotAccepted=동의하지 않습니다(&D)
|
LicenseNotAccepted=동의하지 않습니다(&D)
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=정보
|
WizardInfoBefore=정보
|
||||||
InfoBeforeLabel=계속하기 전에 다음 중요한 정보를 읽어보십시오.
|
InfoBeforeLabel=계속하기 전에 다음 중요한 정보를 읽어보십시오.
|
||||||
InfoBeforeClickLabel=설치를 계속할 준비가 되었으면 다음을 클릭합니다.
|
InfoBeforeClickLabel=설치를 계속할 준비가 되었으면 다음을 클릭합니다.
|
||||||
WizardInfoAfter=정보
|
WizardInfoAfter=정보
|
||||||
InfoAfterLabel=계속하기 전에 다음 중요한 정보를 읽어보십시오.
|
InfoAfterLabel=계속하기 전에 다음 중요한 정보를 읽어보십시오.
|
||||||
InfoAfterClickLabel=설치를 계속할 준비가 되었으면 다음을 클릭합니다.
|
InfoAfterClickLabel=설치를 계속할 준비가 되었으면 다음을 클릭합니다.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=사용자 정보
|
WizardUserInfo=사용자 정보
|
||||||
UserInfoDesc=사용자 정보를 입력하십시오.
|
UserInfoDesc=사용자 정보를 입력하십시오.
|
||||||
UserInfoName=사용자 이름(&U):
|
UserInfoName=사용자 이름(&U):
|
||||||
UserInfoOrg=조직(&O):
|
UserInfoOrg=조직(&O):
|
||||||
UserInfoSerial=일련 번호:(&S):
|
UserInfoSerial=일련 번호:(&S):
|
||||||
UserInfoNameRequired=이름을 입력해야 합니다.
|
UserInfoNameRequired=이름을 입력해야 합니다.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=대상 위치 선택
|
WizardSelectDir=대상 위치 선택
|
||||||
SelectDirDesc=[name]을(를) 어디에 설치하시겠습니까?
|
SelectDirDesc=[name]을(를) 어디에 설치하시겠습니까?
|
||||||
SelectDirLabel3=다음 폴더에 [name]을(를) 설치합니다.
|
SelectDirLabel3=다음 폴더에 [name]을(를) 설치합니다.
|
||||||
SelectDirBrowseLabel=계속하려면 다음을 클릭합니다. 다른 폴더를 선택하려면 찾아보기를 클릭합니다.
|
SelectDirBrowseLabel=계속하려면 다음을 클릭합니다. 다른 폴더를 선택하려면 찾아보기를 클릭합니다.
|
||||||
DiskSpaceGBLabel=이 프로그램은 최소 [gb] GB의 디스크 여유 공간이 필요합니다.
|
DiskSpaceGBLabel=이 프로그램은 최소 [gb] GB의 디스크 여유 공간이 필요합니다.
|
||||||
DiskSpaceMBLabel=이 프로그램은 최소 [mb] MB의 디스크 여유 공간이 필요합니다.
|
DiskSpaceMBLabel=이 프로그램은 최소 [mb] MB의 디스크 여유 공간이 필요합니다.
|
||||||
CannotInstallToNetworkDrive=네트워크 드라이브에 설치할 수 없습니다.
|
CannotInstallToNetworkDrive=네트워크 드라이브에 설치할 수 없습니다.
|
||||||
CannotInstallToUNCPath=UNC 경로에 설치할 수 없습니다.
|
CannotInstallToUNCPath=UNC 경로에 설치할 수 없습니다.
|
||||||
InvalidPath=드라이브 문자를 포함한 전체 경로를 입력해야 합니다. 예:%n%nC:\APP%n%n 또는 UNC 경로 형식:%n%n\\server\share
|
InvalidPath=드라이브 문자를 포함한 전체 경로를 입력해야 합니다. 예:%n%nC:\APP%n%n 또는 UNC 경로 형식:%n%n\\server\share
|
||||||
InvalidDrive=선택한 드라이브 또는 UNC 공유가 존재하지 않거나 액세스할 수 없습니다, 다른 경로를 선택하십시오.
|
InvalidDrive=선택한 드라이브 또는 UNC 공유가 존재하지 않거나 액세스할 수 없습니다, 다른 경로를 선택하십시오.
|
||||||
DiskSpaceWarningTitle=디스크 공간이 부족합니다
|
DiskSpaceWarningTitle=디스크 공간이 부족합니다
|
||||||
DiskSpaceWarning=설치 시 최소 %1 KB 디스크 공간이 필요하지만, 선택한 드라이브의 여유 공간은 %2 KB 밖에 없습니다.%n%n그래도 계속하시겠습니까?
|
DiskSpaceWarning=설치 시 최소 %1 KB 디스크 공간이 필요하지만, 선택한 드라이브의 여유 공간은 %2 KB 밖에 없습니다.%n%n그래도 계속하시겠습니까?
|
||||||
DirNameTooLong=폴더 이름 또는 경로가 너무 깁니다.
|
DirNameTooLong=폴더 이름 또는 경로가 너무 깁니다.
|
||||||
InvalidDirName=폴더 이름이 유효하지 않습니다.
|
InvalidDirName=폴더 이름이 유효하지 않습니다.
|
||||||
BadDirName32=폴더 이름은 다음 문자를 포함할 수 없습니다:%n%n%1
|
BadDirName32=폴더 이름은 다음 문자를 포함할 수 없습니다:%n%n%1
|
||||||
DirExistsTitle=폴더가 존재합니다
|
DirExistsTitle=폴더가 존재합니다
|
||||||
DirExists=폴더 %n%n%1%n%n이(가) 이미 존재합니다, 그래도 해당 폴더에 설치하시겠습니까?
|
DirExists=폴더 %n%n%1%n%n이(가) 이미 존재합니다, 그래도 해당 폴더에 설치하시겠습니까?
|
||||||
DirDoesntExistTitle=폴더가 존재하지 않습니다
|
DirDoesntExistTitle=폴더가 존재하지 않습니다
|
||||||
DirDoesntExist=폴더 %n%n%1%n%n이(가) 존재하지 않습니다, 폴더를 만드시겠습니까?
|
DirDoesntExist=폴더 %n%n%1%n%n이(가) 존재하지 않습니다, 폴더를 만드시겠습니까?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=구성 요소 선택
|
WizardSelectComponents=구성 요소 선택
|
||||||
SelectComponentsDesc=어떤 구성 요소를 설치해야 합니까?
|
SelectComponentsDesc=어떤 구성 요소를 설치해야 합니까?
|
||||||
SelectComponentsLabel2=설치할 구성 요소를 선택하고 설치하지 않을 구성 요소를 지웁니다. 계속할 준비가 되면 다음을 클릭합니다.
|
SelectComponentsLabel2=설치할 구성 요소를 선택하고 설치하지 않을 구성 요소를 지웁니다. 계속할 준비가 되면 다음을 클릭합니다.
|
||||||
FullInstallation=모두 설치
|
FullInstallation=모두 설치
|
||||||
; 가능하면 'Compact'를 'Minimal'로 번역하지 마십시오 (귀하의 언어로 '최소'를 의미합니다).
|
; 가능하면 'Compact'를 'Minimal'로 번역하지 마십시오 (귀하의 언어로 '최소'를 의미합니다).
|
||||||
CompactInstallation=최소 설치
|
CompactInstallation=최소 설치
|
||||||
CustomInstallation=사용자 지정 설치
|
CustomInstallation=사용자 지정 설치
|
||||||
NoUninstallWarningTitle=구성 요소가 존재합니다
|
NoUninstallWarningTitle=구성 요소가 존재합니다
|
||||||
NoUninstallWarning=다음 구성 요소가 컴퓨터에 이미 설치되어 있습니다: %n%n%1%n%n이러한 구성 요소를 선택해도 제거되지 않습니다.%n%n계속하시겠습니까?
|
NoUninstallWarning=다음 구성 요소가 컴퓨터에 이미 설치되어 있습니다: %n%n%1%n%n이러한 구성 요소를 선택해도 제거되지 않습니다.%n%n계속하시겠습니까?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=현재 선택은 최소 [gb] GB의 디스크 여유 공간이 필요합니다.
|
ComponentsDiskSpaceGBLabel=현재 선택은 최소 [gb] GB의 디스크 여유 공간이 필요합니다.
|
||||||
ComponentsDiskSpaceMBLabel=현재 선택은 최소 [mb] MB의 디스크 여유 공간이 필요합니다.
|
ComponentsDiskSpaceMBLabel=현재 선택은 최소 [mb] MB의 디스크 여유 공간이 필요합니다.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=추가 작업 선택
|
WizardSelectTasks=추가 작업 선택
|
||||||
SelectTasksDesc=어떤 추가 작업을 수행해야 합니까?
|
SelectTasksDesc=어떤 추가 작업을 수행해야 합니까?
|
||||||
SelectTasksLabel2=[name]을(를) 설치하는 동안 수행할 추가 작업을 선택하고 다음을 클릭합니다.
|
SelectTasksLabel2=[name]을(를) 설치하는 동안 수행할 추가 작업을 선택하고 다음을 클릭합니다.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=시작 메뉴 폴더 선택
|
WizardSelectProgramGroup=시작 메뉴 폴더 선택
|
||||||
SelectStartMenuFolderDesc=프로그램의 바로가기를 어디에 설치하시겠습니까?
|
SelectStartMenuFolderDesc=프로그램의 바로가기를 어디에 설치하시겠습니까?
|
||||||
SelectStartMenuFolderLabel3=설치는 다음 시작 메뉴 폴더에 프로그램 바로가기를 만듭니다.
|
SelectStartMenuFolderLabel3=설치는 다음 시작 메뉴 폴더에 프로그램 바로가기를 만듭니다.
|
||||||
SelectStartMenuFolderBrowseLabel=계속하려면 다음을 클릭합니다. 다른 폴더를 선택하려면 찾아보기를 클릭합니다.
|
SelectStartMenuFolderBrowseLabel=계속하려면 다음을 클릭합니다. 다른 폴더를 선택하려면 찾아보기를 클릭합니다.
|
||||||
MustEnterGroupName=폴더 이름을 입력하십시오.
|
MustEnterGroupName=폴더 이름을 입력하십시오.
|
||||||
GroupNameTooLong=폴더 이름 또는 경로가 너무 깁니다.
|
GroupNameTooLong=폴더 이름 또는 경로가 너무 깁니다.
|
||||||
InvalidGroupName=폴더 이름이 유효하지 않습니다.
|
InvalidGroupName=폴더 이름이 유효하지 않습니다.
|
||||||
BadGroupName=폴더 이름은 다음 문자를 포함할 수 없습니다:%n%n%1
|
BadGroupName=폴더 이름은 다음 문자를 포함할 수 없습니다:%n%n%1
|
||||||
NoProgramGroupCheck2=시작 메뉴 폴더를 만들지 않음(&D)
|
NoProgramGroupCheck2=시작 메뉴 폴더를 만들지 않음(&D)
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=설치 준비 완료
|
WizardReady=설치 준비 완료
|
||||||
ReadyLabel1=[name]을(를) 컴퓨터에 설치할 준비가 되었습니다.
|
ReadyLabel1=[name]을(를) 컴퓨터에 설치할 준비가 되었습니다.
|
||||||
ReadyLabel2a=설치를 클릭하여 설치를 계속하거나 설정을 검토하거나 변경하려면 뒤로를 클릭합니다.
|
ReadyLabel2a=설치를 클릭하여 설치를 계속하거나 설정을 검토하거나 변경하려면 뒤로를 클릭합니다.
|
||||||
ReadyLabel2b=설치를 클릭하여 설치를 계속합니다.
|
ReadyLabel2b=설치를 클릭하여 설치를 계속합니다.
|
||||||
ReadyMemoUserInfo=사용자 정보:
|
ReadyMemoUserInfo=사용자 정보:
|
||||||
ReadyMemoDir=대상 위치:
|
ReadyMemoDir=대상 위치:
|
||||||
ReadyMemoType=설치 유형:
|
ReadyMemoType=설치 유형:
|
||||||
ReadyMemoComponents=선택한 구성 요소:
|
ReadyMemoComponents=선택한 구성 요소:
|
||||||
ReadyMemoGroup=시작 메뉴 폴더:
|
ReadyMemoGroup=시작 메뉴 폴더:
|
||||||
ReadyMemoTasks=추가 작업:
|
ReadyMemoTasks=추가 작업:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=추가 파일 다운로드 중...
|
DownloadingLabel=추가 파일 다운로드 중...
|
||||||
ButtonStopDownload=다운로드 중지(&S)
|
ButtonStopDownload=다운로드 중지(&S)
|
||||||
StopDownload=다운로드를 중지하시겠습니까?
|
StopDownload=다운로드를 중지하시겠습니까?
|
||||||
ErrorDownloadAborted=다운로드가 중지되었습니다
|
ErrorDownloadAborted=다운로드가 중지되었습니다
|
||||||
ErrorDownloadFailed=다운로드에 실패했습니다: %1 %2
|
ErrorDownloadFailed=다운로드에 실패했습니다: %1 %2
|
||||||
ErrorDownloadSizeFailed=크기를 가져오지 못했습니다: %1 %2
|
ErrorDownloadSizeFailed=크기를 가져오지 못했습니다: %1 %2
|
||||||
ErrorFileHash1=파일 해시에 실패했습니다: %1
|
ErrorFileHash1=파일 해시에 실패했습니다: %1
|
||||||
ErrorFileHash2=잘못된 파일 해시: 예상 %1, 찾음 %2
|
ErrorFileHash2=잘못된 파일 해시: 예상 %1, 찾음 %2
|
||||||
ErrorProgress=잘못된 진행 상황: %1 / %2
|
ErrorProgress=잘못된 진행 상황: %1 / %2
|
||||||
ErrorFileSize=잘못된 파일 크기: 예상 %1, 찾음 %2
|
ErrorFileSize=잘못된 파일 크기: 예상 %1, 찾음 %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=설치 준비 중
|
WizardPreparing=설치 준비 중
|
||||||
PreparingDesc=컴퓨터에 [name] 설치를 준비하는 중입니다.
|
PreparingDesc=컴퓨터에 [name] 설치를 준비하는 중입니다.
|
||||||
PreviousInstallNotCompleted=이전 프로그램의 설치/제거가 완료되지 않았습니다. 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n컴퓨터를 재시작한 후 설치를 다시 실행하여 [name] 설치를 완료하십시오.
|
PreviousInstallNotCompleted=이전 프로그램의 설치/제거가 완료되지 않았습니다. 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n컴퓨터를 재시작한 후 설치를 다시 실행하여 [name] 설치를 완료하십시오.
|
||||||
CannotContinue=설치를 계속할 수 없습니다. 종료하려면 취소를 클릭하십시오.
|
CannotContinue=설치를 계속할 수 없습니다. 종료하려면 취소를 클릭하십시오.
|
||||||
ApplicationsFound=다음 응용 프로그램에서 설치 프로그램에서 업데이트해야 하는 파일을 사용하고 있습니다. 이러한 응용 프로그램을 자동으로 닫도록 허용하는 것이 좋습니다.
|
ApplicationsFound=다음 응용 프로그램에서 설치 프로그램에서 업데이트해야 하는 파일을 사용하고 있습니다. 이러한 응용 프로그램을 자동으로 닫도록 허용하는 것이 좋습니다.
|
||||||
ApplicationsFound2=다음 응용 프로그램에서 설치 프로그램에서 업데이트해야 하는 파일을 사용하고 있습니다. 이러한 응용 프로그램을 자동으로 닫도록 허용하는 것이 좋습니다. 설치가 완료되면 응용 프로그램을 다시 시작하려고 시도합니다.
|
ApplicationsFound2=다음 응용 프로그램에서 설치 프로그램에서 업데이트해야 하는 파일을 사용하고 있습니다. 이러한 응용 프로그램을 자동으로 닫도록 허용하는 것이 좋습니다. 설치가 완료되면 응용 프로그램을 다시 시작하려고 시도합니다.
|
||||||
CloseApplications=응용 프로그램 자동 닫기(&A)
|
CloseApplications=응용 프로그램 자동 닫기(&A)
|
||||||
DontCloseApplications=응용 프로그램을 닫지 않음(&D)
|
DontCloseApplications=응용 프로그램을 닫지 않음(&D)
|
||||||
ErrorCloseApplications=모든 응용 프로그램을 자동으로 닫지 못했습니다. 계속하기 전에 설치 프로그램에서 업데이트해야 하는 파일을 사용하여 모든 응용 프로그램을 닫는 것이 좋습니다.
|
ErrorCloseApplications=모든 응용 프로그램을 자동으로 닫지 못했습니다. 계속하기 전에 설치 프로그램에서 업데이트해야 하는 파일을 사용하여 모든 응용 프로그램을 닫는 것이 좋습니다.
|
||||||
PrepareToInstallNeedsRestart=컴퓨터를 다시 시작해야 합니다. 컴퓨터를 다시 시작한 후 설치를 다시 실행하여 [name] 설치를 완료하십시오.%n%n지금 다시 시작하시겠습니까?
|
PrepareToInstallNeedsRestart=컴퓨터를 다시 시작해야 합니다. 컴퓨터를 다시 시작한 후 설치를 다시 실행하여 [name] 설치를 완료하십시오.%n%n지금 다시 시작하시겠습니까?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=설치 중
|
WizardInstalling=설치 중
|
||||||
InstallingLabel=컴퓨터에 [name]을(를) 설치하는 동안 잠시 기다려 주십시오.
|
InstallingLabel=컴퓨터에 [name]을(를) 설치하는 동안 잠시 기다려 주십시오.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=[name] 설치 마법사 완료
|
FinishedHeadingLabel=[name] 설치 마법사 완료
|
||||||
FinishedLabelNoIcons=컴퓨터에 [name] 설치를 완료했습니다.
|
FinishedLabelNoIcons=컴퓨터에 [name] 설치를 완료했습니다.
|
||||||
FinishedLabel=컴퓨터에 [name] 설치를 완료했습니다. 설치된 바로가기를 선택하여 응용 프로그램을 시작할 수 있습니다.
|
FinishedLabel=컴퓨터에 [name] 설치를 완료했습니다. 설치된 바로가기를 선택하여 응용 프로그램을 시작할 수 있습니다.
|
||||||
ClickFinish=설치를 종료하려면 마침을 클릭하십시오.
|
ClickFinish=설치를 종료하려면 마침을 클릭하십시오.
|
||||||
FinishedRestartLabel=[name] 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다. 지금 다시 시작하시겠습니까?
|
FinishedRestartLabel=[name] 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다. 지금 다시 시작하시겠습니까?
|
||||||
FinishedRestartMessage=[name] 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n지금 다시 시작하시겠습니까?
|
FinishedRestartMessage=[name] 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n지금 다시 시작하시겠습니까?
|
||||||
ShowReadmeCheck=예, README 파일을 보고 싶습니다.
|
ShowReadmeCheck=예, README 파일을 보고 싶습니다.
|
||||||
YesRadio=예, 지금 컴퓨터를 다시 시작합니다(&Y)
|
YesRadio=예, 지금 컴퓨터를 다시 시작합니다(&Y)
|
||||||
NoRadio=아니오, 나중에 컴퓨터를 다시 시작하겠습니다(&N)
|
NoRadio=아니오, 나중에 컴퓨터를 다시 시작하겠습니다(&N)
|
||||||
; 예를 들어 'Run MyProg.exe'로 사용됩니다'
|
; 예를 들어 'Run MyProg.exe'로 사용됩니다'
|
||||||
RunEntryExec=%1 실행
|
RunEntryExec=%1 실행
|
||||||
; 예를 들어 'Readme.txt 보기'로 사용됩니다'
|
; 예를 들어 'Readme.txt 보기'로 사용됩니다'
|
||||||
RunEntryShellExec=%1 보기
|
RunEntryShellExec=%1 보기
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=설치에 다음 디스크가 필요합니다
|
ChangeDiskTitle=설치에 다음 디스크가 필요합니다
|
||||||
SelectDiskLabel2=디스크 %1을(를) 삽입하고 확인을 클릭하십시오.%n%n이 디스크의 파일을 아래에 표시된 폴더 이외의 폴더에서 찾을 수 있으면 올바른 경로를 입력하거나 찾아보기를 클릭하십시오.
|
SelectDiskLabel2=디스크 %1을(를) 삽입하고 확인을 클릭하십시오.%n%n이 디스크의 파일을 아래에 표시된 폴더 이외의 폴더에서 찾을 수 있으면 올바른 경로를 입력하거나 찾아보기를 클릭하십시오.
|
||||||
PathLabel=경로(&P):
|
PathLabel=경로(&P):
|
||||||
FileNotInDir2="%1" 파일을 "%2"에서 찾을 수 없습니다. 올바른 디스크를 넣거나 다른 폴더를 선택하십시오.
|
FileNotInDir2="%1" 파일을 "%2"에서 찾을 수 없습니다. 올바른 디스크를 넣거나 다른 폴더를 선택하십시오.
|
||||||
SelectDirectoryLabel=다음 디스크의 위치를 지정하십시오.
|
SelectDirectoryLabel=다음 디스크의 위치를 지정하십시오.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=설치가 완료되지 않았습니다.%n%n문제를 해결한 후 설치를 다시 실행하십시오.
|
SetupAborted=설치가 완료되지 않았습니다.%n%n문제를 해결한 후 설치를 다시 실행하십시오.
|
||||||
AbortRetryIgnoreSelectAction=작업 선택
|
AbortRetryIgnoreSelectAction=작업 선택
|
||||||
AbortRetryIgnoreRetry=재시도(&T)
|
AbortRetryIgnoreRetry=재시도(&T)
|
||||||
AbortRetryIgnoreIgnore=오류를 무시하고 진행(&I)
|
AbortRetryIgnoreIgnore=오류를 무시하고 진행(&I)
|
||||||
AbortRetryIgnoreCancel=설치 취소
|
AbortRetryIgnoreCancel=설치 취소
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=응용 프로그램을 닫는 중...
|
StatusClosingApplications=응용 프로그램을 닫는 중...
|
||||||
StatusCreateDirs=디렉터리를 만드는 중...
|
StatusCreateDirs=디렉터리를 만드는 중...
|
||||||
StatusExtractFiles=파일을 추출하는 중...
|
StatusExtractFiles=파일을 추출하는 중...
|
||||||
StatusCreateIcons=바로가기를 만드는 중...
|
StatusCreateIcons=바로가기를 만드는 중...
|
||||||
StatusCreateIniEntries=INI 항목을 만드는 중...
|
StatusCreateIniEntries=INI 항목을 만드는 중...
|
||||||
StatusCreateRegistryEntries=레지스트리 항목을 만드는 중...
|
StatusCreateRegistryEntries=레지스트리 항목을 만드는 중...
|
||||||
StatusRegisterFiles=파일을 등록하는 중...
|
StatusRegisterFiles=파일을 등록하는 중...
|
||||||
StatusSavingUninstall=제거 정보를 저장하는 중...
|
StatusSavingUninstall=제거 정보를 저장하는 중...
|
||||||
StatusRunProgram=설치를 완료하는 중...
|
StatusRunProgram=설치를 완료하는 중...
|
||||||
StatusRestartingApplications=응용 프로그램을 다시 시작하는 중...
|
StatusRestartingApplications=응용 프로그램을 다시 시작하는 중...
|
||||||
StatusRollback=변경 내용을 롤백하는 중...
|
StatusRollback=변경 내용을 롤백하는 중...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=내부 오류: %1
|
ErrorInternal2=내부 오류: %1
|
||||||
ErrorFunctionFailedNoCode=%1 실패
|
ErrorFunctionFailedNoCode=%1 실패
|
||||||
ErrorFunctionFailed=%1 실패; 코드 %2
|
ErrorFunctionFailed=%1 실패; 코드 %2
|
||||||
ErrorFunctionFailedWithMessage=%1 실패, 코드: %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 실패, 코드: %2.%n%3
|
||||||
ErrorExecutingProgram=파일 실행 오류:%n%1
|
ErrorExecutingProgram=파일 실행 오류:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=레지스트리 키 열기 오류:%n%1\%2
|
ErrorRegOpenKey=레지스트리 키 열기 오류:%n%1\%2
|
||||||
ErrorRegCreateKey=레지스트리 키 생성 오류:%n%1\%2
|
ErrorRegCreateKey=레지스트리 키 생성 오류:%n%1\%2
|
||||||
ErrorRegWriteKey=레지스트리 키 쓰기 오류:%n%1\%2
|
ErrorRegWriteKey=레지스트리 키 쓰기 오류:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry="%1" 파일에 INI 항목 만들기 오류입니다.
|
ErrorIniEntry="%1" 파일에 INI 항목 만들기 오류입니다.
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=이 파일 건너뛰기 (추천하지 않음)(&S)
|
FileAbortRetryIgnoreSkipNotRecommended=이 파일 건너뛰기 (추천하지 않음)(&S)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=오류를 무시하고 계속 (추천하지 않음)(&I)
|
FileAbortRetryIgnoreIgnoreNotRecommended=오류를 무시하고 계속 (추천하지 않음)(&I)
|
||||||
SourceIsCorrupted=원본 파일이 손상되었습니다
|
SourceIsCorrupted=원본 파일이 손상되었습니다
|
||||||
SourceDoesntExist=원본 파일 "%1"이(가) 없습니다
|
SourceDoesntExist=원본 파일 "%1"이(가) 없습니다
|
||||||
ExistingFileReadOnly2=읽기 전용으로 표시되어 있으므로 기존 파일을 교체할 수 없습니다.
|
ExistingFileReadOnly2=읽기 전용으로 표시되어 있으므로 기존 파일을 교체할 수 없습니다.
|
||||||
ExistingFileReadOnlyRetry=읽기 전용 속성을 제거하고 다시 시도(&R)
|
ExistingFileReadOnlyRetry=읽기 전용 속성을 제거하고 다시 시도(&R)
|
||||||
ExistingFileReadOnlyKeepExisting=기존 파일 유지(&K)
|
ExistingFileReadOnlyKeepExisting=기존 파일 유지(&K)
|
||||||
ErrorReadingExistingDest=기존 파일을 읽는 동안 오류 발생:
|
ErrorReadingExistingDest=기존 파일을 읽는 동안 오류 발생:
|
||||||
FileExistsSelectAction=작업 선택
|
FileExistsSelectAction=작업 선택
|
||||||
FileExists2=파일이 이미 존재합니다.
|
FileExists2=파일이 이미 존재합니다.
|
||||||
FileExistsOverwriteExisting=기존 파일 덮어쓰기(&O)
|
FileExistsOverwriteExisting=기존 파일 덮어쓰기(&O)
|
||||||
FileExistsKeepExisting=기존 파일 유지(&K)
|
FileExistsKeepExisting=기존 파일 유지(&K)
|
||||||
FileExistsOverwriteOrKeepAll=다음 충돌에 대해 이 작업 수행(&D)
|
FileExistsOverwriteOrKeepAll=다음 충돌에 대해 이 작업 수행(&D)
|
||||||
ExistingFileNewerSelectAction=작업 선택
|
ExistingFileNewerSelectAction=작업 선택
|
||||||
ExistingFileNewer2=설치 프로그램에서 설치하려는 파일보다 기존 파일이 더 최신입니다.
|
ExistingFileNewer2=설치 프로그램에서 설치하려는 파일보다 기존 파일이 더 최신입니다.
|
||||||
ExistingFileNewerOverwriteExisting=기존 파일 덮어쓰기(&O)
|
ExistingFileNewerOverwriteExisting=기존 파일 덮어쓰기(&O)
|
||||||
ExistingFileNewerKeepExisting=기존 파일 유지 (추천)(&K)
|
ExistingFileNewerKeepExisting=기존 파일 유지 (추천)(&K)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=다음 충돌에 대해 이 작업 수행(&D)
|
ExistingFileNewerOverwriteOrKeepAll=다음 충돌에 대해 이 작업 수행(&D)
|
||||||
ErrorChangingAttr=기존 파일의 속성을 변경하는 동안 오류 발생:
|
ErrorChangingAttr=기존 파일의 속성을 변경하는 동안 오류 발생:
|
||||||
ErrorCreatingTemp=대상 디렉터리에 파일을 만드는 동안 오류 발생:
|
ErrorCreatingTemp=대상 디렉터리에 파일을 만드는 동안 오류 발생:
|
||||||
ErrorReadingSource=원본 파일을 읽는 동안 오류 발생:
|
ErrorReadingSource=원본 파일을 읽는 동안 오류 발생:
|
||||||
ErrorCopying=파일을 복사하는 동안 오류 발생:
|
ErrorCopying=파일을 복사하는 동안 오류 발생:
|
||||||
ErrorReplacingExistingFile=기존 파일을 교체하는 동안 오류 발생:
|
ErrorReplacingExistingFile=기존 파일을 교체하는 동안 오류 발생:
|
||||||
ErrorRestartReplace=RestartReplace 실패:
|
ErrorRestartReplace=RestartReplace 실패:
|
||||||
ErrorRenamingTemp=대상 디렉터리 내의 파일 이름을 바꾸는 동안 오류 발생:
|
ErrorRenamingTemp=대상 디렉터리 내의 파일 이름을 바꾸는 동안 오류 발생:
|
||||||
ErrorRegisterServer=DLL/OCX를 등록할 수 없습니다: %1
|
ErrorRegisterServer=DLL/OCX를 등록할 수 없습니다: %1
|
||||||
ErrorRegSvr32Failed=종료 코드 %1로 인해 RegSvr32가 실패했습니다
|
ErrorRegSvr32Failed=종료 코드 %1로 인해 RegSvr32가 실패했습니다
|
||||||
ErrorRegisterTypeLib=유형 라이브러리를 등록할 수 없습니다: %1
|
ErrorRegisterTypeLib=유형 라이브러리를 등록할 수 없습니다: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; 예를 들어 '내 프로그램'으로 사용됩니다 (32비트)'
|
; 예를 들어 '내 프로그램'으로 사용됩니다 (32비트)'
|
||||||
UninstallDisplayNameMark=%1 (%2)비트
|
UninstallDisplayNameMark=%1 (%2)비트
|
||||||
; 예를 들어 '내 프로그램'으로 사용됩니다 (32비트, 모든 사용자)'
|
; 예를 들어 '내 프로그램'으로 사용됩니다 (32비트, 모든 사용자)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32비트
|
UninstallDisplayNameMark32Bit=32비트
|
||||||
UninstallDisplayNameMark64Bit=64비트
|
UninstallDisplayNameMark64Bit=64비트
|
||||||
UninstallDisplayNameMarkAllUsers=모든 사용자
|
UninstallDisplayNameMarkAllUsers=모든 사용자
|
||||||
UninstallDisplayNameMarkCurrentUser=현재 사용자
|
UninstallDisplayNameMarkCurrentUser=현재 사용자
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=README 파일을 여는 동안 오류가 발생했습니다.
|
ErrorOpeningReadme=README 파일을 여는 동안 오류가 발생했습니다.
|
||||||
ErrorRestartingComputer=컴퓨터를 다시 시작하지 못했습니다. 이 작업을 수동으로 수행하십시오.
|
ErrorRestartingComputer=컴퓨터를 다시 시작하지 못했습니다. 이 작업을 수동으로 수행하십시오.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound="%1" 파일이 없습니다. 제거할 수 없습니다.
|
UninstallNotFound="%1" 파일이 없습니다. 제거할 수 없습니다.
|
||||||
UninstallOpenError="%1" 파일을 열 수 없습니다. 제거할 수 없습니다
|
UninstallOpenError="%1" 파일을 열 수 없습니다. 제거할 수 없습니다
|
||||||
UninstallUnsupportedVer="%1" 제거 로그 파일이 현재 버전의 제거 프로그램에서 인식할 수 없는 형식입니다. 제거할 수 없습니다
|
UninstallUnsupportedVer="%1" 제거 로그 파일이 현재 버전의 제거 프로그램에서 인식할 수 없는 형식입니다. 제거할 수 없습니다
|
||||||
UninstallUnknownEntry=제거 로그에 알 수 없는 항목 (%1)이 있습니다
|
UninstallUnknownEntry=제거 로그에 알 수 없는 항목 (%1)이 있습니다
|
||||||
ConfirmUninstall=%1 제거 마법사를 실행하시겠습니까?
|
ConfirmUninstall=%1 제거 마법사를 실행하시겠습니까?
|
||||||
UninstallOnlyOnWin64=이 설치는 64비트 Windows에서만 제거할 수 있습니다.
|
UninstallOnlyOnWin64=이 설치는 64비트 Windows에서만 제거할 수 있습니다.
|
||||||
OnlyAdminCanUninstall=이 설치는 관리자 권한이 있는 사용자만 제거할 수 있습니다.
|
OnlyAdminCanUninstall=이 설치는 관리자 권한이 있는 사용자만 제거할 수 있습니다.
|
||||||
UninstallStatusLabel=%1이(가) 컴퓨터에서 제거되는 동안 기다려 주십시오.
|
UninstallStatusLabel=%1이(가) 컴퓨터에서 제거되는 동안 기다려 주십시오.
|
||||||
UninstalledAll=%1이(가) 컴퓨터에서 성공적으로 제거되었습니다.
|
UninstalledAll=%1이(가) 컴퓨터에서 성공적으로 제거되었습니다.
|
||||||
UninstalledMost=%1 제거가 완료되었습니다.%n%n일부 요소를 제거할 수 없습니다. 수동으로 제거할 수 있습니다.
|
UninstalledMost=%1 제거가 완료되었습니다.%n%n일부 요소를 제거할 수 없습니다. 수동으로 제거할 수 있습니다.
|
||||||
UninstalledAndNeedsRestart=%1 제거를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n지금 다시 시작하시겠습니까?
|
UninstalledAndNeedsRestart=%1 제거를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n지금 다시 시작하시겠습니까?
|
||||||
UninstallDataCorrupted="%1" 파일이 손상되었습니다. 제거할 수 없습니다.
|
UninstallDataCorrupted="%1" 파일이 손상되었습니다. 제거할 수 없습니다.
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=공유 파일을 제거하시겠습니까?
|
ConfirmDeleteSharedFileTitle=공유 파일을 제거하시겠습니까?
|
||||||
ConfirmDeleteSharedFile2=시스템에 다음 공유 파일이 더 이상 어떤 프로그램에서도 사용되지 않는 것으로 표시됩니다. 제거에서 이 공유 파일을 제거하시겠습니까?%n%n이 파일을 계속 사용하고 있고 파일이 제거된 프로그램이 있으면 해당 프로그램이 제대로 작동하지 않을 수 있습니다. 확실하지 않은 경우 아니요를 선택합니다. 파일을 시스템에 남겨두어도 아무런 해가 되지 않습니다.
|
ConfirmDeleteSharedFile2=시스템에 다음 공유 파일이 더 이상 어떤 프로그램에서도 사용되지 않는 것으로 표시됩니다. 제거에서 이 공유 파일을 제거하시겠습니까?%n%n이 파일을 계속 사용하고 있고 파일이 제거된 프로그램이 있으면 해당 프로그램이 제대로 작동하지 않을 수 있습니다. 확실하지 않은 경우 아니요를 선택합니다. 파일을 시스템에 남겨두어도 아무런 해가 되지 않습니다.
|
||||||
SharedFileNameLabel=파일 이름:
|
SharedFileNameLabel=파일 이름:
|
||||||
SharedFileLocationLabel=위치:
|
SharedFileLocationLabel=위치:
|
||||||
WizardUninstalling=제거 상태
|
WizardUninstalling=제거 상태
|
||||||
StatusUninstalling=%1을(를) 제거하는 중...
|
StatusUninstalling=%1을(를) 제거하는 중...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=%1을(를) 설치하는 중입니다.
|
ShutdownBlockReasonInstallingApp=%1을(를) 설치하는 중입니다.
|
||||||
ShutdownBlockReasonUninstallingApp=%1을(를) 제거하는 중입니다.
|
ShutdownBlockReasonUninstallingApp=%1을(를) 제거하는 중입니다.
|
||||||
|
|
||||||
; 아래 사용자 지정 메시지는 설치 프로그램 자체에서 사용하지 않지만
|
; 아래 사용자 지정 메시지는 설치 프로그램 자체에서 사용하지 않지만
|
||||||
; 스크립트에서 사용할 경우 해당 메시지를 번역할 수 있습니다.
|
; 스크립트에서 사용할 경우 해당 메시지를 번역할 수 있습니다.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 버전 %2
|
NameAndVersion=%1 버전 %2
|
||||||
AdditionalIcons=바로가기 추가:
|
AdditionalIcons=바로가기 추가:
|
||||||
CreateDesktopIcon=바탕 화면에 바로가기 만들기(&D)
|
CreateDesktopIcon=바탕 화면에 바로가기 만들기(&D)
|
||||||
CreateQuickLaunchIcon=빠른 실행 아이콘 만들기(&Q)
|
CreateQuickLaunchIcon=빠른 실행 아이콘 만들기(&Q)
|
||||||
ProgramOnTheWeb=%1 웹페이지
|
ProgramOnTheWeb=%1 웹페이지
|
||||||
UninstallProgram=%1 제거
|
UninstallProgram=%1 제거
|
||||||
LaunchProgram=%1 실행
|
LaunchProgram=%1 실행
|
||||||
AssocFileExtension=%1을 %2 파일 확장자에 연결
|
AssocFileExtension=%1을 %2 파일 확장자에 연결
|
||||||
AssocingFileExtension=%1을 %2 파일 확장자와 연결하는 중...
|
AssocingFileExtension=%1을 %2 파일 확장자와 연결하는 중...
|
||||||
AutoStartProgramGroupDescription=시작:
|
AutoStartProgramGroupDescription=시작:
|
||||||
AutoStartProgram=%1 자동 시작
|
AutoStartProgram=%1 자동 시작
|
||||||
AddonHostProgramNotFound=%1을(를) 선택한 폴더에서 찾을 수 없습니다.%n%n계속하시겠습니까?
|
AddonHostProgramNotFound=%1을(를) 선택한 폴더에서 찾을 수 없습니다.%n%n계속하시겠습니까?
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=설치 모드 선택
|
SelectSetupInstallModeTitle=설치 모드 선택
|
||||||
SelectSetupInstallModeDesc=VCMI는 모든 사용자 또는 나만을 위해 설치할 수 있습니다.
|
SelectSetupInstallModeDesc=VCMI는 모든 사용자 또는 나만을 위해 설치할 수 있습니다.
|
||||||
SelectSetupInstallModeSubTitle=원하는 설치 모드를 선택하세요:
|
SelectSetupInstallModeSubTitle=원하는 설치 모드를 선택하세요:
|
||||||
InstallForAllUsers=모든 사용자를 위해 설치
|
InstallForAllUsers=모든 사용자를 위해 설치
|
||||||
InstallForAllUsers1=관리자 권한 필요
|
InstallForAllUsers1=관리자 권한 필요
|
||||||
InstallForMeOnly=나만을 위해 설치
|
InstallForMeOnly=나만을 위해 설치
|
||||||
InstallForMeOnly1=게임을 처음 실행할 때 방화벽 프롬프트가 표시됩니다.
|
InstallForMeOnly1=게임을 처음 실행할 때 방화벽 프롬프트가 표시됩니다.
|
||||||
InstallForMeOnly2=경고: 방화벽 규칙을 허용할 수 없으면 LAN 게임이 작동하지 않습니다.
|
InstallForMeOnly2=경고: 방화벽 규칙을 허용할 수 없으면 LAN 게임이 작동하지 않습니다.
|
||||||
CreateDesktopShortcuts=바탕 화면 바로 가기 만들기
|
CreateDesktopShortcuts=바탕 화면 바로 가기 만들기
|
||||||
ShortcutsOptions=바로 가기 옵션
|
ShortcutsOptions=바로 가기 옵션
|
||||||
CreateStartMenuShortcuts=시작 메뉴 바로 가기 만들기
|
CreateStartMenuShortcuts=시작 메뉴 바로 가기 만들기
|
||||||
FirewallOptions=방화벽 설정
|
FirewallOptions=방화벽 설정
|
||||||
AddFirewallRules=VCMI를 위한 방화벽 규칙 추가
|
AddFirewallRules=VCMI를 위한 방화벽 규칙 추가
|
||||||
FileAssociations=파일 연결
|
FileAssociations=파일 연결
|
||||||
AssociateH3MFiles=.h3m 파일을 VCMI 맵 에디터와 연결
|
AssociateH3MFiles=.h3m 파일을 VCMI 맵 에디터와 연결
|
||||||
AssociateVMapFiles=.vmap 파일을 VCMI 맵 에디터와 연결
|
AssociateVMapFiles=.vmap 파일을 VCMI 맵 에디터와 연결
|
||||||
RunVCMILauncherAfterInstall=VCMI 런처 실행
|
RunVCMILauncherAfterInstall=VCMI 런처 실행
|
||||||
ShortcutMapEditor=VCMI 맵 에디터
|
ShortcutMapEditor=VCMI 맵 에디터
|
||||||
ShortcutLauncher=VCMI 런처
|
ShortcutLauncher=VCMI 런처
|
||||||
ShortcutWebPage=VCMI 웹사이트
|
ShortcutWebPage=VCMI 웹사이트
|
||||||
ShortcutDiscord=VCMI 디스코드
|
ShortcutDiscord=VCMI 디스코드
|
||||||
ShortcutLauncherComment=VCMI 런처 실행
|
ShortcutLauncherComment=VCMI 런처 실행
|
||||||
ShortcutMapEditorComment=VCMI 맵 에디터 열기
|
ShortcutMapEditorComment=VCMI 맵 에디터 열기
|
||||||
ShortcutWebPageComment=공식 VCMI 웹사이트 방문
|
ShortcutWebPageComment=공식 VCMI 웹사이트 방문
|
||||||
ShortcutDiscordComment=공식 VCMI 디스코드 방문
|
ShortcutDiscordComment=공식 VCMI 디스코드 방문
|
||||||
DeleteUserData=사용자 데이터 삭제
|
DeleteUserData=사용자 데이터 삭제
|
||||||
Uninstall=제거
|
Uninstall=제거
|
||||||
VMAPDescription=VCMI 지도 파일
|
VMAPDescription=VCMI 지도 파일
|
||||||
H3MDescription=Heroes 3 지도 파일
|
H3MDescription=Heroes 3 지도 파일
|
@@ -1,407 +1,407 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Polish messages ***
|
; *** Inno Setup version 6.1.0+ Polish messages ***
|
||||||
; Krzysztof Cynarski <krzysztof at cynarski.net>
|
; Krzysztof Cynarski <krzysztof at cynarski.net>
|
||||||
; Proofreading, corrections and 5.5.7-6.1.0+ updates:
|
; Proofreading, corrections and 5.5.7-6.1.0+ updates:
|
||||||
; �ukasz Abramczuk <lukasz.abramczuk at gmail.com>
|
; �ukasz Abramczuk <lukasz.abramczuk at gmail.com>
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
; last update: 2020/07/26
|
; last update: 2020/07/26
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=Polski
|
LanguageName=Polski
|
||||||
LanguageID=$0415
|
LanguageID=$0415
|
||||||
LanguageCodePage=1250
|
LanguageCodePage=1250
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Instalator
|
SetupAppTitle=Instalator
|
||||||
SetupWindowTitle=Instalacja - %1
|
SetupWindowTitle=Instalacja - %1
|
||||||
UninstallAppTitle=Dezinstalator
|
UninstallAppTitle=Dezinstalator
|
||||||
UninstallAppFullTitle=Dezinstalacja - %1
|
UninstallAppFullTitle=Dezinstalacja - %1
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Informacja
|
InformationTitle=Informacja
|
||||||
ConfirmTitle=Potwierd�
|
ConfirmTitle=Potwierd�
|
||||||
ErrorTitle=B��d
|
ErrorTitle=B��d
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=Ten program zainstaluje aplikacj� %1. Czy chcesz kontynuowa�?
|
SetupLdrStartupMessage=Ten program zainstaluje aplikacj� %1. Czy chcesz kontynuowa�?
|
||||||
LdrCannotCreateTemp=Nie mo�na utworzy� pliku tymczasowego. Instalacja przerwana
|
LdrCannotCreateTemp=Nie mo�na utworzy� pliku tymczasowego. Instalacja przerwana
|
||||||
LdrCannotExecTemp=Nie mo�na uruchomi� pliku z folderu tymczasowego. Instalacja przerwana
|
LdrCannotExecTemp=Nie mo�na uruchomi� pliku z folderu tymczasowego. Instalacja przerwana
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nB��d %2: %3
|
LastErrorMessage=%1.%n%nB��d %2: %3
|
||||||
SetupFileMissing=W folderze instalacyjnym brakuje pliku %1.%nProsz� o przywr�cenie brakuj�cych plik�w lub uzyskanie nowej kopii programu instalacyjnego.
|
SetupFileMissing=W folderze instalacyjnym brakuje pliku %1.%nProsz� o przywr�cenie brakuj�cych plik�w lub uzyskanie nowej kopii programu instalacyjnego.
|
||||||
SetupFileCorrupt=Pliki instalacyjne s� uszkodzone. Zaleca si� uzyskanie nowej kopii programu instalacyjnego.
|
SetupFileCorrupt=Pliki instalacyjne s� uszkodzone. Zaleca si� uzyskanie nowej kopii programu instalacyjnego.
|
||||||
SetupFileCorruptOrWrongVer=Pliki instalacyjne s� uszkodzone lub niezgodne z t� wersj� instalatora. Prosz� rozwi�za� problem lub uzyska� now� kopi� programu instalacyjnego.
|
SetupFileCorruptOrWrongVer=Pliki instalacyjne s� uszkodzone lub niezgodne z t� wersj� instalatora. Prosz� rozwi�za� problem lub uzyska� now� kopi� programu instalacyjnego.
|
||||||
InvalidParameter=W linii komend przekazano nieprawid�owy parametr:%n%n%1
|
InvalidParameter=W linii komend przekazano nieprawid�owy parametr:%n%n%1
|
||||||
SetupAlreadyRunning=Instalator jest ju� uruchomiony.
|
SetupAlreadyRunning=Instalator jest ju� uruchomiony.
|
||||||
WindowsVersionNotSupported=Ta aplikacja nie wspiera aktualnie uruchomionej wersji Windows.
|
WindowsVersionNotSupported=Ta aplikacja nie wspiera aktualnie uruchomionej wersji Windows.
|
||||||
WindowsServicePackRequired=Ta aplikacja wymaga systemu %1 z dodatkiem Service Pack %2 lub nowszym.
|
WindowsServicePackRequired=Ta aplikacja wymaga systemu %1 z dodatkiem Service Pack %2 lub nowszym.
|
||||||
NotOnThisPlatform=Tej aplikacji nie mo�na uruchomi� w systemie %1.
|
NotOnThisPlatform=Tej aplikacji nie mo�na uruchomi� w systemie %1.
|
||||||
OnlyOnThisPlatform=Ta aplikacja wymaga systemu %1.
|
OnlyOnThisPlatform=Ta aplikacja wymaga systemu %1.
|
||||||
OnlyOnTheseArchitectures=Ta aplikacja mo�e by� uruchomiona tylko w systemie Windows zaprojektowanym dla procesor�w o architekturze:%n%n%1
|
OnlyOnTheseArchitectures=Ta aplikacja mo�e by� uruchomiona tylko w systemie Windows zaprojektowanym dla procesor�w o architekturze:%n%n%1
|
||||||
WinVersionTooLowError=Ta aplikacja wymaga systemu %1 w wersji %2 lub nowszej.
|
WinVersionTooLowError=Ta aplikacja wymaga systemu %1 w wersji %2 lub nowszej.
|
||||||
WinVersionTooHighError=Ta aplikacja nie mo�e by� zainstalowana w systemie %1 w wersji %2 lub nowszej.
|
WinVersionTooHighError=Ta aplikacja nie mo�e by� zainstalowana w systemie %1 w wersji %2 lub nowszej.
|
||||||
AdminPrivilegesRequired=Aby przeprowadzi� instalacj� tej aplikacji, konto u�ytkownika systemu musi posiada� uprawnienia administratora.
|
AdminPrivilegesRequired=Aby przeprowadzi� instalacj� tej aplikacji, konto u�ytkownika systemu musi posiada� uprawnienia administratora.
|
||||||
PowerUserPrivilegesRequired=Aby przeprowadzi� instalacj� tej aplikacji, konto u�ytkownika systemu musi posiada� uprawnienia administratora lub u�ytkownika zaawansowanego.
|
PowerUserPrivilegesRequired=Aby przeprowadzi� instalacj� tej aplikacji, konto u�ytkownika systemu musi posiada� uprawnienia administratora lub u�ytkownika zaawansowanego.
|
||||||
SetupAppRunningError=Instalator wykry�, i� aplikacja %1 jest aktualnie uruchomiona.%n%nPrzed wci�ni�ciem przycisku OK zamknij wszystkie procesy aplikacji. Kliknij przycisk Anuluj, aby przerwa� instalacj�.
|
SetupAppRunningError=Instalator wykry�, i� aplikacja %1 jest aktualnie uruchomiona.%n%nPrzed wci�ni�ciem przycisku OK zamknij wszystkie procesy aplikacji. Kliknij przycisk Anuluj, aby przerwa� instalacj�.
|
||||||
UninstallAppRunningError=Dezinstalator wykry�, i� aplikacja %1 jest aktualnie uruchomiona.%n%nPrzed wci�ni�ciem przycisku OK zamknij wszystkie procesy aplikacji. Kliknij przycisk Anuluj, aby przerwa� dezinstalacj�.
|
UninstallAppRunningError=Dezinstalator wykry�, i� aplikacja %1 jest aktualnie uruchomiona.%n%nPrzed wci�ni�ciem przycisku OK zamknij wszystkie procesy aplikacji. Kliknij przycisk Anuluj, aby przerwa� dezinstalacj�.
|
||||||
|
|
||||||
; *** Startup questions ---
|
; *** Startup questions ---
|
||||||
PrivilegesRequiredOverrideTitle=Wybierz typ instalacji aplikacji
|
PrivilegesRequiredOverrideTitle=Wybierz typ instalacji aplikacji
|
||||||
PrivilegesRequiredOverrideInstruction=Wybierz typ instalacji
|
PrivilegesRequiredOverrideInstruction=Wybierz typ instalacji
|
||||||
PrivilegesRequiredOverrideText1=Aplikacja %1 mo�e zosta� zainstalowana dla wszystkich u�ytkownik�w (wymagane s� uprawnienia administratora) lub tylko dla bie��cego u�ytkownika.
|
PrivilegesRequiredOverrideText1=Aplikacja %1 mo�e zosta� zainstalowana dla wszystkich u�ytkownik�w (wymagane s� uprawnienia administratora) lub tylko dla bie��cego u�ytkownika.
|
||||||
PrivilegesRequiredOverrideText2=Aplikacja %1 mo�e zosta� zainstalowana dla bie��cego u�ytkownika lub wszystkich u�ytkownik�w (wymagane s� uprawnienia administratora).
|
PrivilegesRequiredOverrideText2=Aplikacja %1 mo�e zosta� zainstalowana dla bie��cego u�ytkownika lub wszystkich u�ytkownik�w (wymagane s� uprawnienia administratora).
|
||||||
PrivilegesRequiredOverrideAllUsers=Zainstaluj dla &wszystkich u�ytkownik�w
|
PrivilegesRequiredOverrideAllUsers=Zainstaluj dla &wszystkich u�ytkownik�w
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Zainstaluj dla &wszystkich u�ytkownik�w (zalecane)
|
PrivilegesRequiredOverrideAllUsersRecommended=Zainstaluj dla &wszystkich u�ytkownik�w (zalecane)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Zainstaluj dla &bie��cego u�ytkownika
|
PrivilegesRequiredOverrideCurrentUser=Zainstaluj dla &bie��cego u�ytkownika
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Zainstaluj dla &bie��cego u�ytkownika (zalecane)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Zainstaluj dla &bie��cego u�ytkownika (zalecane)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=Instalator nie m�g� utworzy� katalogu "%1"
|
ErrorCreatingDir=Instalator nie m�g� utworzy� katalogu "%1"
|
||||||
ErrorTooManyFilesInDir=Nie mo�na utworzy� pliku w katalogu "%1", poniewa� zawiera on zbyt wiele plik�w
|
ErrorTooManyFilesInDir=Nie mo�na utworzy� pliku w katalogu "%1", poniewa� zawiera on zbyt wiele plik�w
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Zako�cz instalacj�
|
ExitSetupTitle=Zako�cz instalacj�
|
||||||
ExitSetupMessage=Instalacja nie zosta�a zako�czona. Je�eli przerwiesz j� teraz, aplikacja nie zostanie zainstalowana. Mo�na ponowi� instalacj� p��niej poprzez uruchamianie instalatora.%n%nCzy chcesz przerwa� instalacj�?
|
ExitSetupMessage=Instalacja nie zosta�a zako�czona. Je�eli przerwiesz j� teraz, aplikacja nie zostanie zainstalowana. Mo�na ponowi� instalacj� p��niej poprzez uruchamianie instalatora.%n%nCzy chcesz przerwa� instalacj�?
|
||||||
AboutSetupMenuItem=&O instalatorze...
|
AboutSetupMenuItem=&O instalatorze...
|
||||||
AboutSetupTitle=O instalatorze
|
AboutSetupTitle=O instalatorze
|
||||||
AboutSetupMessage=%1 wersja %2%n%3%n%n Strona domowa %1:%n%4
|
AboutSetupMessage=%1 wersja %2%n%3%n%n Strona domowa %1:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Wersja polska: Krzysztof Cynarski%n<krzysztof at cynarski.net>%nOd wersji 5.5.7: �ukasz Abramczuk%n<lukasz.abramczuk at gmail.com>
|
TranslatorNote=Wersja polska: Krzysztof Cynarski%n<krzysztof at cynarski.net>%nOd wersji 5.5.7: �ukasz Abramczuk%n<lukasz.abramczuk at gmail.com>
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Wstecz
|
ButtonBack=< &Wstecz
|
||||||
ButtonNext=&Dalej >
|
ButtonNext=&Dalej >
|
||||||
ButtonInstall=&Instaluj
|
ButtonInstall=&Instaluj
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Anuluj
|
ButtonCancel=Anuluj
|
||||||
ButtonYes=&Tak
|
ButtonYes=&Tak
|
||||||
ButtonYesToAll=Tak na &wszystkie
|
ButtonYesToAll=Tak na &wszystkie
|
||||||
ButtonNo=&Nie
|
ButtonNo=&Nie
|
||||||
ButtonNoToAll=N&ie na wszystkie
|
ButtonNoToAll=N&ie na wszystkie
|
||||||
ButtonFinish=&Zako�cz
|
ButtonFinish=&Zako�cz
|
||||||
ButtonBrowse=&Przegl�daj...
|
ButtonBrowse=&Przegl�daj...
|
||||||
ButtonWizardBrowse=P&rzegl�daj...
|
ButtonWizardBrowse=P&rzegl�daj...
|
||||||
ButtonNewFolder=&Utw�rz nowy folder
|
ButtonNewFolder=&Utw�rz nowy folder
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=J�zyk instalacji
|
SelectLanguageTitle=J�zyk instalacji
|
||||||
SelectLanguageLabel=Wybierz j�zyk u�ywany podczas instalacji:
|
SelectLanguageLabel=Wybierz j�zyk u�ywany podczas instalacji:
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=Kliknij przycisk Dalej, aby kontynuowa�, lub Anuluj, aby zako�czy� instalacj�.
|
ClickNext=Kliknij przycisk Dalej, aby kontynuowa�, lub Anuluj, aby zako�czy� instalacj�.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Wska� folder
|
BrowseDialogTitle=Wska� folder
|
||||||
BrowseDialogLabel=Wybierz folder z poni�szej listy, a nast�pnie kliknij przycisk OK.
|
BrowseDialogLabel=Wybierz folder z poni�szej listy, a nast�pnie kliknij przycisk OK.
|
||||||
NewFolderName=Nowy folder
|
NewFolderName=Nowy folder
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Witamy w instalatorze aplikacji [name]
|
WelcomeLabel1=Witamy w instalatorze aplikacji [name]
|
||||||
WelcomeLabel2=Aplikacja [name/ver] zostanie teraz zainstalowana na komputerze.%n%nZalecane jest zamkni�cie wszystkich innych uruchomionych program�w przed rozpocz�ciem procesu instalacji.
|
WelcomeLabel2=Aplikacja [name/ver] zostanie teraz zainstalowana na komputerze.%n%nZalecane jest zamkni�cie wszystkich innych uruchomionych program�w przed rozpocz�ciem procesu instalacji.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Has�o
|
WizardPassword=Has�o
|
||||||
PasswordLabel1=Ta instalacja jest zabezpieczona has�em.
|
PasswordLabel1=Ta instalacja jest zabezpieczona has�em.
|
||||||
PasswordLabel3=Podaj has�o, a nast�pnie kliknij przycisk Dalej, aby kontynuowa�. W has�ach rozr��niane s� wielkie i ma�e litery.
|
PasswordLabel3=Podaj has�o, a nast�pnie kliknij przycisk Dalej, aby kontynuowa�. W has�ach rozr��niane s� wielkie i ma�e litery.
|
||||||
PasswordEditLabel=&Has�o:
|
PasswordEditLabel=&Has�o:
|
||||||
IncorrectPassword=Wprowadzone has�o jest nieprawid�owe. Spr�buj ponownie.
|
IncorrectPassword=Wprowadzone has�o jest nieprawid�owe. Spr�buj ponownie.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=Umowa Licencyjna
|
WizardLicense=Umowa Licencyjna
|
||||||
LicenseLabel=Przed kontynuacj� nale�y zapozna� si� z poni�sz� wa�n� informacj�.
|
LicenseLabel=Przed kontynuacj� nale�y zapozna� si� z poni�sz� wa�n� informacj�.
|
||||||
LicenseLabel3=Prosz� przeczyta� tekst Umowy Licencyjnej. Przed kontynuacj� instalacji nale�y zaakceptowa� warunki umowy.
|
LicenseLabel3=Prosz� przeczyta� tekst Umowy Licencyjnej. Przed kontynuacj� instalacji nale�y zaakceptowa� warunki umowy.
|
||||||
LicenseAccepted=&Akceptuj� warunki umowy
|
LicenseAccepted=&Akceptuj� warunki umowy
|
||||||
LicenseNotAccepted=&Nie akceptuj� warunk�w umowy
|
LicenseNotAccepted=&Nie akceptuj� warunk�w umowy
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Informacja
|
WizardInfoBefore=Informacja
|
||||||
InfoBeforeLabel=Przed kontynuacj� nale�y zapozna� si� z poni�sz� informacj�.
|
InfoBeforeLabel=Przed kontynuacj� nale�y zapozna� si� z poni�sz� informacj�.
|
||||||
InfoBeforeClickLabel=Kiedy b�dziesz gotowy do instalacji, kliknij przycisk Dalej.
|
InfoBeforeClickLabel=Kiedy b�dziesz gotowy do instalacji, kliknij przycisk Dalej.
|
||||||
WizardInfoAfter=Informacja
|
WizardInfoAfter=Informacja
|
||||||
InfoAfterLabel=Przed kontynuacj� nale�y zapozna� si� z poni�sz� informacj�.
|
InfoAfterLabel=Przed kontynuacj� nale�y zapozna� si� z poni�sz� informacj�.
|
||||||
InfoAfterClickLabel=Gdy b�dziesz gotowy do zako�czenia instalacji, kliknij przycisk Dalej.
|
InfoAfterClickLabel=Gdy b�dziesz gotowy do zako�czenia instalacji, kliknij przycisk Dalej.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=Dane u�ytkownika
|
WizardUserInfo=Dane u�ytkownika
|
||||||
UserInfoDesc=Prosz� poda� swoje dane.
|
UserInfoDesc=Prosz� poda� swoje dane.
|
||||||
UserInfoName=Nazwa &u�ytkownika:
|
UserInfoName=Nazwa &u�ytkownika:
|
||||||
UserInfoOrg=&Organizacja:
|
UserInfoOrg=&Organizacja:
|
||||||
UserInfoSerial=Numer &seryjny:
|
UserInfoSerial=Numer &seryjny:
|
||||||
UserInfoNameRequired=Nazwa u�ytkownika jest wymagana.
|
UserInfoNameRequired=Nazwa u�ytkownika jest wymagana.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Lokalizacja docelowa
|
WizardSelectDir=Lokalizacja docelowa
|
||||||
SelectDirDesc=Gdzie ma zosta� zainstalowana aplikacja [name]?
|
SelectDirDesc=Gdzie ma zosta� zainstalowana aplikacja [name]?
|
||||||
SelectDirLabel3=Instalator zainstaluje aplikacj� [name] do wskazanego poni�ej folderu.
|
SelectDirLabel3=Instalator zainstaluje aplikacj� [name] do wskazanego poni�ej folderu.
|
||||||
SelectDirBrowseLabel=Kliknij przycisk Dalej, aby kontynuowa�. Je�li chcesz wskaza� inny folder, kliknij przycisk Przegl�daj.
|
SelectDirBrowseLabel=Kliknij przycisk Dalej, aby kontynuowa�. Je�li chcesz wskaza� inny folder, kliknij przycisk Przegl�daj.
|
||||||
DiskSpaceGBLabel=Instalacja wymaga przynajmniej [gb] GB wolnego miejsca na dysku.
|
DiskSpaceGBLabel=Instalacja wymaga przynajmniej [gb] GB wolnego miejsca na dysku.
|
||||||
DiskSpaceMBLabel=Instalacja wymaga przynajmniej [mb] MB wolnego miejsca na dysku.
|
DiskSpaceMBLabel=Instalacja wymaga przynajmniej [mb] MB wolnego miejsca na dysku.
|
||||||
CannotInstallToNetworkDrive=Instalator nie mo�e zainstalowa� aplikacji na dysku sieciowym.
|
CannotInstallToNetworkDrive=Instalator nie mo�e zainstalowa� aplikacji na dysku sieciowym.
|
||||||
CannotInstallToUNCPath=Instalator nie mo�e zainstalowa� aplikacji w �cie�ce UNC.
|
CannotInstallToUNCPath=Instalator nie mo�e zainstalowa� aplikacji w �cie�ce UNC.
|
||||||
InvalidPath=Nale�y wprowadzi� pe�n� �cie�k� wraz z liter� dysku, np.:%n%nC:\PROGRAM%n%nlub �cie�k� sieciow� (UNC) w formacie:%n%n\\serwer\udzia�
|
InvalidPath=Nale�y wprowadzi� pe�n� �cie�k� wraz z liter� dysku, np.:%n%nC:\PROGRAM%n%nlub �cie�k� sieciow� (UNC) w formacie:%n%n\\serwer\udzia�
|
||||||
InvalidDrive=Wybrany dysk lub udost�pniony folder sieciowy nie istnieje. Prosz� wybra� inny.
|
InvalidDrive=Wybrany dysk lub udost�pniony folder sieciowy nie istnieje. Prosz� wybra� inny.
|
||||||
DiskSpaceWarningTitle=Niewystarczaj�ca ilo�� wolnego miejsca na dysku
|
DiskSpaceWarningTitle=Niewystarczaj�ca ilo�� wolnego miejsca na dysku
|
||||||
DiskSpaceWarning=Instalator wymaga co najmniej %1 KB wolnego miejsca na dysku. Wybrany dysk posiada tylko %2 KB dost�pnego miejsca.%n%nCzy mimo to chcesz kontynuowa�?
|
DiskSpaceWarning=Instalator wymaga co najmniej %1 KB wolnego miejsca na dysku. Wybrany dysk posiada tylko %2 KB dost�pnego miejsca.%n%nCzy mimo to chcesz kontynuowa�?
|
||||||
DirNameTooLong=Nazwa folderu lub �cie�ki jest za d�uga.
|
DirNameTooLong=Nazwa folderu lub �cie�ki jest za d�uga.
|
||||||
InvalidDirName=Niepoprawna nazwa folderu.
|
InvalidDirName=Niepoprawna nazwa folderu.
|
||||||
BadDirName32=Nazwa folderu nie mo�e zawiera� �adnego z nast�puj�cych znak�w:%n%n%1
|
BadDirName32=Nazwa folderu nie mo�e zawiera� �adnego z nast�puj�cych znak�w:%n%n%1
|
||||||
DirExistsTitle=Folder ju� istnieje
|
DirExistsTitle=Folder ju� istnieje
|
||||||
DirExists=Poni�szy folder ju� istnieje:%n%n%1%n%nCzy mimo to chcesz zainstalowa� aplikacj� w tym folderze?
|
DirExists=Poni�szy folder ju� istnieje:%n%n%1%n%nCzy mimo to chcesz zainstalowa� aplikacj� w tym folderze?
|
||||||
DirDoesntExistTitle=Folder nie istnieje
|
DirDoesntExistTitle=Folder nie istnieje
|
||||||
DirDoesntExist=Poni�szy folder nie istnieje:%n%n%1%n%nCzy chcesz, aby zosta� utworzony?
|
DirDoesntExist=Poni�szy folder nie istnieje:%n%n%1%n%nCzy chcesz, aby zosta� utworzony?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Komponenty instalacji
|
WizardSelectComponents=Komponenty instalacji
|
||||||
SelectComponentsDesc=Kt�re komponenty maj� zosta� zainstalowane?
|
SelectComponentsDesc=Kt�re komponenty maj� zosta� zainstalowane?
|
||||||
SelectComponentsLabel2=Zaznacz komponenty, kt�re chcesz zainstalowa� i odznacz te, kt�rych nie chcesz zainstalowa�. Kliknij przycisk Dalej, aby kontynuowa�.
|
SelectComponentsLabel2=Zaznacz komponenty, kt�re chcesz zainstalowa� i odznacz te, kt�rych nie chcesz zainstalowa�. Kliknij przycisk Dalej, aby kontynuowa�.
|
||||||
FullInstallation=Instalacja pe�na
|
FullInstallation=Instalacja pe�na
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Instalacja podstawowa
|
CompactInstallation=Instalacja podstawowa
|
||||||
CustomInstallation=Instalacja u�ytkownika
|
CustomInstallation=Instalacja u�ytkownika
|
||||||
NoUninstallWarningTitle=Zainstalowane komponenty
|
NoUninstallWarningTitle=Zainstalowane komponenty
|
||||||
NoUninstallWarning=Instalator wykry�, �e na komputerze s� ju� zainstalowane nast�puj�ce komponenty:%n%n%1%n%nOdznaczenie kt�regokolwiek z nich nie spowoduje ich dezinstalacji.%n%nCzy pomimo tego chcesz kontynuowa�?
|
NoUninstallWarning=Instalator wykry�, �e na komputerze s� ju� zainstalowane nast�puj�ce komponenty:%n%n%1%n%nOdznaczenie kt�regokolwiek z nich nie spowoduje ich dezinstalacji.%n%nCzy pomimo tego chcesz kontynuowa�?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=Wybrane komponenty wymagaj� co najmniej [gb] GB na dysku.
|
ComponentsDiskSpaceGBLabel=Wybrane komponenty wymagaj� co najmniej [gb] GB na dysku.
|
||||||
ComponentsDiskSpaceMBLabel=Wybrane komponenty wymagaj� co najmniej [mb] MB na dysku.
|
ComponentsDiskSpaceMBLabel=Wybrane komponenty wymagaj� co najmniej [mb] MB na dysku.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Zadania dodatkowe
|
WizardSelectTasks=Zadania dodatkowe
|
||||||
SelectTasksDesc=Kt�re zadania dodatkowe maj� zosta� wykonane?
|
SelectTasksDesc=Kt�re zadania dodatkowe maj� zosta� wykonane?
|
||||||
SelectTasksLabel2=Zaznacz dodatkowe zadania, kt�re instalator ma wykona� podczas instalacji aplikacji [name], a nast�pnie kliknij przycisk Dalej, aby kontynuowa�.
|
SelectTasksLabel2=Zaznacz dodatkowe zadania, kt�re instalator ma wykona� podczas instalacji aplikacji [name], a nast�pnie kliknij przycisk Dalej, aby kontynuowa�.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Folder Menu Start
|
WizardSelectProgramGroup=Folder Menu Start
|
||||||
SelectStartMenuFolderDesc=Gdzie maj� zosta� umieszczone skr�ty do aplikacji?
|
SelectStartMenuFolderDesc=Gdzie maj� zosta� umieszczone skr�ty do aplikacji?
|
||||||
SelectStartMenuFolderLabel3=Instalator utworzy skr�ty do aplikacji we wskazanym poni�ej folderze Menu Start.
|
SelectStartMenuFolderLabel3=Instalator utworzy skr�ty do aplikacji we wskazanym poni�ej folderze Menu Start.
|
||||||
SelectStartMenuFolderBrowseLabel=Kliknij przycisk Dalej, aby kontynuowa�. Je�li chcesz wskaza� inny folder, kliknij przycisk Przegl�daj.
|
SelectStartMenuFolderBrowseLabel=Kliknij przycisk Dalej, aby kontynuowa�. Je�li chcesz wskaza� inny folder, kliknij przycisk Przegl�daj.
|
||||||
MustEnterGroupName=Musisz wprowadzi� nazw� folderu.
|
MustEnterGroupName=Musisz wprowadzi� nazw� folderu.
|
||||||
GroupNameTooLong=Nazwa folderu lub �cie�ki jest za d�uga.
|
GroupNameTooLong=Nazwa folderu lub �cie�ki jest za d�uga.
|
||||||
InvalidGroupName=Niepoprawna nazwa folderu.
|
InvalidGroupName=Niepoprawna nazwa folderu.
|
||||||
BadGroupName=Nazwa folderu nie mo�e zawiera� �adnego z nast�puj�cych znak�w:%n%n%1
|
BadGroupName=Nazwa folderu nie mo�e zawiera� �adnego z nast�puj�cych znak�w:%n%n%1
|
||||||
NoProgramGroupCheck2=&Nie tw�rz folderu w Menu Start
|
NoProgramGroupCheck2=&Nie tw�rz folderu w Menu Start
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Gotowy do rozpocz�cia instalacji
|
WizardReady=Gotowy do rozpocz�cia instalacji
|
||||||
ReadyLabel1=Instalator jest ju� gotowy do rozpocz�cia instalacji aplikacji [name] na komputerze.
|
ReadyLabel1=Instalator jest ju� gotowy do rozpocz�cia instalacji aplikacji [name] na komputerze.
|
||||||
ReadyLabel2a=Kliknij przycisk Instaluj, aby rozpocz�� instalacj� lub Wstecz, je�li chcesz przejrze� lub zmieni� ustawienia.
|
ReadyLabel2a=Kliknij przycisk Instaluj, aby rozpocz�� instalacj� lub Wstecz, je�li chcesz przejrze� lub zmieni� ustawienia.
|
||||||
ReadyLabel2b=Kliknij przycisk Instaluj, aby kontynuowa� instalacj�.
|
ReadyLabel2b=Kliknij przycisk Instaluj, aby kontynuowa� instalacj�.
|
||||||
ReadyMemoUserInfo=Dane u�ytkownika:
|
ReadyMemoUserInfo=Dane u�ytkownika:
|
||||||
ReadyMemoDir=Lokalizacja docelowa:
|
ReadyMemoDir=Lokalizacja docelowa:
|
||||||
ReadyMemoType=Rodzaj instalacji:
|
ReadyMemoType=Rodzaj instalacji:
|
||||||
ReadyMemoComponents=Wybrane komponenty:
|
ReadyMemoComponents=Wybrane komponenty:
|
||||||
ReadyMemoGroup=Folder w Menu Start:
|
ReadyMemoGroup=Folder w Menu Start:
|
||||||
ReadyMemoTasks=Dodatkowe zadania:
|
ReadyMemoTasks=Dodatkowe zadania:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Pobieranie dodatkowych plik�w...
|
DownloadingLabel=Pobieranie dodatkowych plik�w...
|
||||||
ButtonStopDownload=&Zatrzymaj pobieranie
|
ButtonStopDownload=&Zatrzymaj pobieranie
|
||||||
StopDownload=Czy na pewno chcesz zatrzyma� pobieranie?
|
StopDownload=Czy na pewno chcesz zatrzyma� pobieranie?
|
||||||
ErrorDownloadAborted=Pobieranie przerwane
|
ErrorDownloadAborted=Pobieranie przerwane
|
||||||
ErrorDownloadFailed=B��d pobierania: %1 %2
|
ErrorDownloadFailed=B��d pobierania: %1 %2
|
||||||
ErrorDownloadSizeFailed=Pobieranie informacji o rozmiarze nie powiod�o si�: %1 %2
|
ErrorDownloadSizeFailed=Pobieranie informacji o rozmiarze nie powiod�o si�: %1 %2
|
||||||
ErrorFileHash1=B��d sumy kontrolnej pliku: %1
|
ErrorFileHash1=B��d sumy kontrolnej pliku: %1
|
||||||
ErrorFileHash2=Nieprawid�owa suma kontrolna pliku: oczekiwano %1, otrzymano %2
|
ErrorFileHash2=Nieprawid�owa suma kontrolna pliku: oczekiwano %1, otrzymano %2
|
||||||
ErrorProgress=Nieprawid�owy post�p: %1 z %2
|
ErrorProgress=Nieprawid�owy post�p: %1 z %2
|
||||||
ErrorFileSize=Nieprawid�owy rozmiar pliku: oczekiwano %1, otrzymano %2
|
ErrorFileSize=Nieprawid�owy rozmiar pliku: oczekiwano %1, otrzymano %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Przygotowanie do instalacji
|
WizardPreparing=Przygotowanie do instalacji
|
||||||
PreparingDesc=Instalator przygotowuje instalacj� aplikacji [name] na komputerze.
|
PreparingDesc=Instalator przygotowuje instalacj� aplikacji [name] na komputerze.
|
||||||
PreviousInstallNotCompleted=Instalacja/dezinstalacja poprzedniej wersji aplikacji nie zosta�a zako�czona. Aby zako�czy� instalacj�, nale�y ponownie uruchomi� komputer. %n%nNast�pnie ponownie uruchom instalator, aby zako�czy� instalacj� aplikacji [name].
|
PreviousInstallNotCompleted=Instalacja/dezinstalacja poprzedniej wersji aplikacji nie zosta�a zako�czona. Aby zako�czy� instalacj�, nale�y ponownie uruchomi� komputer. %n%nNast�pnie ponownie uruchom instalator, aby zako�czy� instalacj� aplikacji [name].
|
||||||
CannotContinue=Instalator nie mo�e kontynuowa�. Kliknij przycisk Anuluj, aby przerwa� instalacj�.
|
CannotContinue=Instalator nie mo�e kontynuowa�. Kliknij przycisk Anuluj, aby przerwa� instalacj�.
|
||||||
ApplicationsFound=Poni�sze aplikacje u�ywaj� plik�w, kt�re musz� zosta� uaktualnione przez instalator. Zaleca si� zezwoli� na automatyczne zamkni�cie tych aplikacji przez program instalacyjny.
|
ApplicationsFound=Poni�sze aplikacje u�ywaj� plik�w, kt�re musz� zosta� uaktualnione przez instalator. Zaleca si� zezwoli� na automatyczne zamkni�cie tych aplikacji przez program instalacyjny.
|
||||||
ApplicationsFound2=Poni�sze aplikacje u�ywaj� plik�w, kt�re musz� zosta� uaktualnione przez instalator. Zaleca si� zezwoli� na automatyczne zamkni�cie tych aplikacji przez program instalacyjny. Po zako�czonej instalacji instalator podejmie pr�b� ich ponownego uruchomienia.
|
ApplicationsFound2=Poni�sze aplikacje u�ywaj� plik�w, kt�re musz� zosta� uaktualnione przez instalator. Zaleca si� zezwoli� na automatyczne zamkni�cie tych aplikacji przez program instalacyjny. Po zako�czonej instalacji instalator podejmie pr�b� ich ponownego uruchomienia.
|
||||||
CloseApplications=&Automatycznie zamknij aplikacje
|
CloseApplications=&Automatycznie zamknij aplikacje
|
||||||
DontCloseApplications=&Nie zamykaj aplikacji
|
DontCloseApplications=&Nie zamykaj aplikacji
|
||||||
ErrorCloseApplications=Instalator nie by� w stanie automatycznie zamkn�� wymaganych aplikacji. Zalecane jest zamkni�cie wszystkich aplikacji, kt�re aktualnie u�ywaj� uaktualnianych przez program instalacyjny plik�w.
|
ErrorCloseApplications=Instalator nie by� w stanie automatycznie zamkn�� wymaganych aplikacji. Zalecane jest zamkni�cie wszystkich aplikacji, kt�re aktualnie u�ywaj� uaktualnianych przez program instalacyjny plik�w.
|
||||||
PrepareToInstallNeedsRestart=Instalator wymaga ponownego uruchomienia komputera. Po restarcie komputera uruchom instalator ponownie, by doko�czy� proces instalacji aplikacji [name].%n%nCzy chcesz teraz uruchomi� komputer ponownie?
|
PrepareToInstallNeedsRestart=Instalator wymaga ponownego uruchomienia komputera. Po restarcie komputera uruchom instalator ponownie, by doko�czy� proces instalacji aplikacji [name].%n%nCzy chcesz teraz uruchomi� komputer ponownie?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Instalacja
|
WizardInstalling=Instalacja
|
||||||
InstallingLabel=Poczekaj, a� instalator zainstaluje aplikacj� [name] na komputerze.
|
InstallingLabel=Poczekaj, a� instalator zainstaluje aplikacj� [name] na komputerze.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=Zako�czono instalacj� aplikacji [name]
|
FinishedHeadingLabel=Zako�czono instalacj� aplikacji [name]
|
||||||
FinishedLabelNoIcons=Instalator zako�czy� instalacj� aplikacji [name] na komputerze.
|
FinishedLabelNoIcons=Instalator zako�czy� instalacj� aplikacji [name] na komputerze.
|
||||||
FinishedLabel=Instalator zako�czy� instalacj� aplikacji [name] na komputerze. Aplikacja mo�e by� uruchomiona poprzez u�ycie zainstalowanych skr�t�w.
|
FinishedLabel=Instalator zako�czy� instalacj� aplikacji [name] na komputerze. Aplikacja mo�e by� uruchomiona poprzez u�ycie zainstalowanych skr�t�w.
|
||||||
ClickFinish=Kliknij przycisk Zako�cz, aby zako�czy� instalacj�.
|
ClickFinish=Kliknij przycisk Zako�cz, aby zako�czy� instalacj�.
|
||||||
FinishedRestartLabel=Aby zako�czy� instalacj� aplikacji [name], instalator musi ponownie uruchomi� komputer. Czy chcesz teraz uruchomi� komputer ponownie?
|
FinishedRestartLabel=Aby zako�czy� instalacj� aplikacji [name], instalator musi ponownie uruchomi� komputer. Czy chcesz teraz uruchomi� komputer ponownie?
|
||||||
FinishedRestartMessage=Aby zako�czy� instalacj� aplikacji [name], instalator musi ponownie uruchomi� komputer.%n%nCzy chcesz teraz uruchomi� komputer ponownie?
|
FinishedRestartMessage=Aby zako�czy� instalacj� aplikacji [name], instalator musi ponownie uruchomi� komputer.%n%nCzy chcesz teraz uruchomi� komputer ponownie?
|
||||||
ShowReadmeCheck=Tak, chc� przeczyta� dodatkowe informacje
|
ShowReadmeCheck=Tak, chc� przeczyta� dodatkowe informacje
|
||||||
YesRadio=&Tak, uruchom ponownie teraz
|
YesRadio=&Tak, uruchom ponownie teraz
|
||||||
NoRadio=&Nie, uruchomi� ponownie p��niej
|
NoRadio=&Nie, uruchomi� ponownie p��niej
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=Uruchom aplikacj� %1
|
RunEntryExec=Uruchom aplikacj� %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=Wy�wietl plik %1
|
RunEntryShellExec=Wy�wietl plik %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=Instalator potrzebuje kolejnego archiwum
|
ChangeDiskTitle=Instalator potrzebuje kolejnego archiwum
|
||||||
SelectDiskLabel2=Prosz� w�o�y� dysk %1 i klikn�� przycisk OK.%n%nJe�li wymieniony poni�ej folder nie okre�la po�o�enia plik�w z tego dysku, prosz� wprowadzi� poprawn� �cie�k� lub klikn�� przycisk Przegl�daj.
|
SelectDiskLabel2=Prosz� w�o�y� dysk %1 i klikn�� przycisk OK.%n%nJe�li wymieniony poni�ej folder nie okre�la po�o�enia plik�w z tego dysku, prosz� wprowadzi� poprawn� �cie�k� lub klikn�� przycisk Przegl�daj.
|
||||||
PathLabel=�&cie�ka:
|
PathLabel=�&cie�ka:
|
||||||
FileNotInDir2=�cie�ka "%2" nie zawiera pliku "%1". Prosz� w�o�y� w�a�ciwy dysk lub wybra� inny folder.
|
FileNotInDir2=�cie�ka "%2" nie zawiera pliku "%1". Prosz� w�o�y� w�a�ciwy dysk lub wybra� inny folder.
|
||||||
SelectDirectoryLabel=Prosz� okre�li� lokalizacj� kolejnego archiwum instalatora.
|
SelectDirectoryLabel=Prosz� okre�li� lokalizacj� kolejnego archiwum instalatora.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=Instalacja nie zosta�a zako�czona.%n%nProsz� rozwi�za� problem i ponownie rozpocz�� instalacj�.
|
SetupAborted=Instalacja nie zosta�a zako�czona.%n%nProsz� rozwi�za� problem i ponownie rozpocz�� instalacj�.
|
||||||
AbortRetryIgnoreSelectAction=Wybierz operacj�
|
AbortRetryIgnoreSelectAction=Wybierz operacj�
|
||||||
AbortRetryIgnoreRetry=Spr�buj &ponownie
|
AbortRetryIgnoreRetry=Spr�buj &ponownie
|
||||||
AbortRetryIgnoreIgnore=Z&ignoruj b��d i kontynuuj
|
AbortRetryIgnoreIgnore=Z&ignoruj b��d i kontynuuj
|
||||||
AbortRetryIgnoreCancel=Przerwij instalacj�
|
AbortRetryIgnoreCancel=Przerwij instalacj�
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Zamykanie aplikacji...
|
StatusClosingApplications=Zamykanie aplikacji...
|
||||||
StatusCreateDirs=Tworzenie folder�w...
|
StatusCreateDirs=Tworzenie folder�w...
|
||||||
StatusExtractFiles=Dekompresja plik�w...
|
StatusExtractFiles=Dekompresja plik�w...
|
||||||
StatusCreateIcons=Tworzenie skr�t�w aplikacji...
|
StatusCreateIcons=Tworzenie skr�t�w aplikacji...
|
||||||
StatusCreateIniEntries=Tworzenie zapis�w w plikach INI...
|
StatusCreateIniEntries=Tworzenie zapis�w w plikach INI...
|
||||||
StatusCreateRegistryEntries=Tworzenie zapis�w w rejestrze...
|
StatusCreateRegistryEntries=Tworzenie zapis�w w rejestrze...
|
||||||
StatusRegisterFiles=Rejestracja plik�w...
|
StatusRegisterFiles=Rejestracja plik�w...
|
||||||
StatusSavingUninstall=Zapisywanie informacji o dezinstalacji...
|
StatusSavingUninstall=Zapisywanie informacji o dezinstalacji...
|
||||||
StatusRunProgram=Ko�czenie instalacji...
|
StatusRunProgram=Ko�czenie instalacji...
|
||||||
StatusRestartingApplications=Ponowne uruchamianie aplikacji...
|
StatusRestartingApplications=Ponowne uruchamianie aplikacji...
|
||||||
StatusRollback=Cofanie zmian...
|
StatusRollback=Cofanie zmian...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Wewn�trzny b��d: %1
|
ErrorInternal2=Wewn�trzny b��d: %1
|
||||||
ErrorFunctionFailedNoCode=B��d podczas wykonywania %1
|
ErrorFunctionFailedNoCode=B��d podczas wykonywania %1
|
||||||
ErrorFunctionFailed=B��d podczas wykonywania %1; kod %2
|
ErrorFunctionFailed=B��d podczas wykonywania %1; kod %2
|
||||||
ErrorFunctionFailedWithMessage=B��d podczas wykonywania %1; kod %2.%n%3
|
ErrorFunctionFailedWithMessage=B��d podczas wykonywania %1; kod %2.%n%3
|
||||||
ErrorExecutingProgram=Nie mo�na uruchomi�:%n%1
|
ErrorExecutingProgram=Nie mo�na uruchomi�:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=B��d podczas otwierania klucza rejestru:%n%1\%2
|
ErrorRegOpenKey=B��d podczas otwierania klucza rejestru:%n%1\%2
|
||||||
ErrorRegCreateKey=B��d podczas tworzenia klucza rejestru:%n%1\%2
|
ErrorRegCreateKey=B��d podczas tworzenia klucza rejestru:%n%1\%2
|
||||||
ErrorRegWriteKey=B��d podczas zapisu do klucza rejestru:%n%1\%2
|
ErrorRegWriteKey=B��d podczas zapisu do klucza rejestru:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=B��d podczas tworzenia pozycji w pliku INI: "%1".
|
ErrorIniEntry=B��d podczas tworzenia pozycji w pliku INI: "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Pomi� plik (niezalecane)
|
FileAbortRetryIgnoreSkipNotRecommended=&Pomi� plik (niezalecane)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=Z&ignoruj b��d i kontynuuj (niezalecane)
|
FileAbortRetryIgnoreIgnoreNotRecommended=Z&ignoruj b��d i kontynuuj (niezalecane)
|
||||||
SourceIsCorrupted=Plik �r�d�owy jest uszkodzony
|
SourceIsCorrupted=Plik �r�d�owy jest uszkodzony
|
||||||
SourceDoesntExist=Plik �r�d�owy "%1" nie istnieje
|
SourceDoesntExist=Plik �r�d�owy "%1" nie istnieje
|
||||||
ExistingFileReadOnly2=Istniej�cy plik nie mo�e zosta� zast�piony, gdy� jest oznaczony jako "Tylko do odczytu".
|
ExistingFileReadOnly2=Istniej�cy plik nie mo�e zosta� zast�piony, gdy� jest oznaczony jako "Tylko do odczytu".
|
||||||
ExistingFileReadOnlyRetry=&Usu� atrybut "Tylko do odczytu" i spr�buj ponownie
|
ExistingFileReadOnlyRetry=&Usu� atrybut "Tylko do odczytu" i spr�buj ponownie
|
||||||
ExistingFileReadOnlyKeepExisting=&Zachowaj istniej�cy plik
|
ExistingFileReadOnlyKeepExisting=&Zachowaj istniej�cy plik
|
||||||
ErrorReadingExistingDest=Wyst�pi� b��d podczas pr�by odczytu istniej�cego pliku:
|
ErrorReadingExistingDest=Wyst�pi� b��d podczas pr�by odczytu istniej�cego pliku:
|
||||||
FileExistsSelectAction=Wybierz czynno��
|
FileExistsSelectAction=Wybierz czynno��
|
||||||
FileExists2=Plik ju� istnieje.
|
FileExists2=Plik ju� istnieje.
|
||||||
FileExistsOverwriteExisting=&Nadpisz istniej�cy plik
|
FileExistsOverwriteExisting=&Nadpisz istniej�cy plik
|
||||||
FileExistsKeepExisting=&Zachowaj istniej�cy plik
|
FileExistsKeepExisting=&Zachowaj istniej�cy plik
|
||||||
FileExistsOverwriteOrKeepAll=&Wykonaj t� czynno�� dla kolejnych przypadk�w
|
FileExistsOverwriteOrKeepAll=&Wykonaj t� czynno�� dla kolejnych przypadk�w
|
||||||
ExistingFileNewerSelectAction=Wybierz czynno��
|
ExistingFileNewerSelectAction=Wybierz czynno��
|
||||||
ExistingFileNewer2=Istniej�cy plik jest nowszy ni� ten, kt�ry instalator pr�buje skopiowa�.
|
ExistingFileNewer2=Istniej�cy plik jest nowszy ni� ten, kt�ry instalator pr�buje skopiowa�.
|
||||||
ExistingFileNewerOverwriteExisting=&Nadpisz istniej�cy plik
|
ExistingFileNewerOverwriteExisting=&Nadpisz istniej�cy plik
|
||||||
ExistingFileNewerKeepExisting=&Zachowaj istniej�cy plik (zalecane)
|
ExistingFileNewerKeepExisting=&Zachowaj istniej�cy plik (zalecane)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Wykonaj t� czynno�� dla kolejnych przypadk�w
|
ExistingFileNewerOverwriteOrKeepAll=&Wykonaj t� czynno�� dla kolejnych przypadk�w
|
||||||
ErrorChangingAttr=Wyst�pi� b��d podczas pr�by zmiany atrybut�w pliku docelowego:
|
ErrorChangingAttr=Wyst�pi� b��d podczas pr�by zmiany atrybut�w pliku docelowego:
|
||||||
ErrorCreatingTemp=Wyst�pi� b��d podczas pr�by utworzenia pliku w folderze docelowym:
|
ErrorCreatingTemp=Wyst�pi� b��d podczas pr�by utworzenia pliku w folderze docelowym:
|
||||||
ErrorReadingSource=Wyst�pi� b��d podczas pr�by odczytu pliku �r�d�owego:
|
ErrorReadingSource=Wyst�pi� b��d podczas pr�by odczytu pliku �r�d�owego:
|
||||||
ErrorCopying=Wyst�pi� b��d podczas pr�by kopiowania pliku:
|
ErrorCopying=Wyst�pi� b��d podczas pr�by kopiowania pliku:
|
||||||
ErrorReplacingExistingFile=Wyst�pi� b��d podczas pr�by zamiany istniej�cego pliku:
|
ErrorReplacingExistingFile=Wyst�pi� b��d podczas pr�by zamiany istniej�cego pliku:
|
||||||
ErrorRestartReplace=Pr�ba zast�pienia plik�w przy ponownym uruchomieniu komputera nie powiod�a si�.
|
ErrorRestartReplace=Pr�ba zast�pienia plik�w przy ponownym uruchomieniu komputera nie powiod�a si�.
|
||||||
ErrorRenamingTemp=Wyst�pi� b��d podczas pr�by zmiany nazwy pliku w folderze docelowym:
|
ErrorRenamingTemp=Wyst�pi� b��d podczas pr�by zmiany nazwy pliku w folderze docelowym:
|
||||||
ErrorRegisterServer=Nie mo�na zarejestrowa� DLL/OCX: %1
|
ErrorRegisterServer=Nie mo�na zarejestrowa� DLL/OCX: %1
|
||||||
ErrorRegSvr32Failed=Funkcja RegSvr32 zako�czy�a si� z kodem b��du %1
|
ErrorRegSvr32Failed=Funkcja RegSvr32 zako�czy�a si� z kodem b��du %1
|
||||||
ErrorRegisterTypeLib=Nie mog� zarejestrowa� biblioteki typ�w: %1
|
ErrorRegisterTypeLib=Nie mog� zarejestrowa� biblioteki typ�w: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=wersja 32-bitowa
|
UninstallDisplayNameMark32Bit=wersja 32-bitowa
|
||||||
UninstallDisplayNameMark64Bit=wersja 64-bitowa
|
UninstallDisplayNameMark64Bit=wersja 64-bitowa
|
||||||
UninstallDisplayNameMarkAllUsers=wszyscy u�ytkownicy
|
UninstallDisplayNameMarkAllUsers=wszyscy u�ytkownicy
|
||||||
UninstallDisplayNameMarkCurrentUser=bie��cy u�ytkownik
|
UninstallDisplayNameMarkCurrentUser=bie��cy u�ytkownik
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Wyst�pi� b��d podczas pr�by otwarcia pliku z informacjami dodatkowymi.
|
ErrorOpeningReadme=Wyst�pi� b��d podczas pr�by otwarcia pliku z informacjami dodatkowymi.
|
||||||
ErrorRestartingComputer=Instalator nie m�g� ponownie uruchomi� tego komputera. Prosz� wykona� t� czynno�� samodzielnie.
|
ErrorRestartingComputer=Instalator nie m�g� ponownie uruchomi� tego komputera. Prosz� wykona� t� czynno�� samodzielnie.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=Plik "%1" nie istnieje. Nie mo�na przeprowadzi� dezinstalacji.
|
UninstallNotFound=Plik "%1" nie istnieje. Nie mo�na przeprowadzi� dezinstalacji.
|
||||||
UninstallOpenError=Plik "%1" nie m�g� zosta� otwarty. Nie mo�na przeprowadzi� dezinstalacji.
|
UninstallOpenError=Plik "%1" nie m�g� zosta� otwarty. Nie mo�na przeprowadzi� dezinstalacji.
|
||||||
UninstallUnsupportedVer=Ta wersja programu dezinstalacyjnego nie rozpoznaje formatu logu dezinstalacji w pliku "%1". Nie mo�na przeprowadzi� dezinstalacji.
|
UninstallUnsupportedVer=Ta wersja programu dezinstalacyjnego nie rozpoznaje formatu logu dezinstalacji w pliku "%1". Nie mo�na przeprowadzi� dezinstalacji.
|
||||||
UninstallUnknownEntry=W logu dezinstalacji wyst�pi�a nieznana pozycja (%1)
|
UninstallUnknownEntry=W logu dezinstalacji wyst�pi�a nieznana pozycja (%1)
|
||||||
ConfirmUninstall=Czy na pewno chcesz uruchomic kreatora deinstalacji %1?
|
ConfirmUninstall=Czy na pewno chcesz uruchomic kreatora deinstalacji %1?
|
||||||
UninstallOnlyOnWin64=Ta aplikacja mo�e by� odinstalowana tylko w 64-bitowej wersji systemu Windows.
|
UninstallOnlyOnWin64=Ta aplikacja mo�e by� odinstalowana tylko w 64-bitowej wersji systemu Windows.
|
||||||
OnlyAdminCanUninstall=Ta instalacja mo�e by� odinstalowana tylko przez u�ytkownika z uprawnieniami administratora.
|
OnlyAdminCanUninstall=Ta instalacja mo�e by� odinstalowana tylko przez u�ytkownika z uprawnieniami administratora.
|
||||||
UninstallStatusLabel=Poczekaj, a� aplikacja %1 zostanie usuni�ta z komputera.
|
UninstallStatusLabel=Poczekaj, a� aplikacja %1 zostanie usuni�ta z komputera.
|
||||||
UninstalledAll=Aplikacja %1 zosta�a usuni�ta z komputera.
|
UninstalledAll=Aplikacja %1 zosta�a usuni�ta z komputera.
|
||||||
UninstalledMost=Dezinstalacja aplikacji %1 zako�czy�a si�.%n%nNiekt�re elementy nie mog�y zosta� usuni�te. Nale�y usun�� je samodzielnie.
|
UninstalledMost=Dezinstalacja aplikacji %1 zako�czy�a si�.%n%nNiekt�re elementy nie mog�y zosta� usuni�te. Nale�y usun�� je samodzielnie.
|
||||||
UninstalledAndNeedsRestart=Komputer musi zosta� ponownie uruchomiony, aby zako�czy� proces dezinstalacji aplikacji %1.%n%nCzy chcesz teraz ponownie uruchomi� komputer?
|
UninstalledAndNeedsRestart=Komputer musi zosta� ponownie uruchomiony, aby zako�czy� proces dezinstalacji aplikacji %1.%n%nCzy chcesz teraz ponownie uruchomi� komputer?
|
||||||
UninstallDataCorrupted=Plik "%1" jest uszkodzony. Nie mo�na przeprowadzi� dezinstalacji.
|
UninstallDataCorrupted=Plik "%1" jest uszkodzony. Nie mo�na przeprowadzi� dezinstalacji.
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Usun�� plik wsp��dzielony?
|
ConfirmDeleteSharedFileTitle=Usun�� plik wsp��dzielony?
|
||||||
ConfirmDeleteSharedFile2=System wskazuje, i� nast�puj�cy plik nie jest ju� u�ywany przez �aden program. Czy chcesz odinstalowa� ten plik wsp��dzielony?%n%nJe�li inne programy nadal u�ywaj� tego pliku, a zostanie on usuni�ty, mog� one przesta� dzia�a� prawid�owo. W przypadku braku pewno�ci, kliknij przycisk Nie. Pozostawienie tego pliku w systemie nie spowoduje �adnych szk�d.
|
ConfirmDeleteSharedFile2=System wskazuje, i� nast�puj�cy plik nie jest ju� u�ywany przez �aden program. Czy chcesz odinstalowa� ten plik wsp��dzielony?%n%nJe�li inne programy nadal u�ywaj� tego pliku, a zostanie on usuni�ty, mog� one przesta� dzia�a� prawid�owo. W przypadku braku pewno�ci, kliknij przycisk Nie. Pozostawienie tego pliku w systemie nie spowoduje �adnych szk�d.
|
||||||
SharedFileNameLabel=Nazwa pliku:
|
SharedFileNameLabel=Nazwa pliku:
|
||||||
SharedFileLocationLabel=Po�o�enie:
|
SharedFileLocationLabel=Po�o�enie:
|
||||||
WizardUninstalling=Stan dezinstalacji
|
WizardUninstalling=Stan dezinstalacji
|
||||||
StatusUninstalling=Dezinstalacja aplikacji %1...
|
StatusUninstalling=Dezinstalacja aplikacji %1...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Instalacja aplikacji %1.
|
ShutdownBlockReasonInstallingApp=Instalacja aplikacji %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Dezinstalacja aplikacji %1.
|
ShutdownBlockReasonUninstallingApp=Dezinstalacja aplikacji %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 (wersja %2)
|
NameAndVersion=%1 (wersja %2)
|
||||||
AdditionalIcons=Dodatkowe skr�ty:
|
AdditionalIcons=Dodatkowe skr�ty:
|
||||||
CreateDesktopIcon=Utw�rz skr�t na &pulpicie
|
CreateDesktopIcon=Utw�rz skr�t na &pulpicie
|
||||||
CreateQuickLaunchIcon=Utw�rz skr�t na pasku &szybkiego uruchamiania
|
CreateQuickLaunchIcon=Utw�rz skr�t na pasku &szybkiego uruchamiania
|
||||||
ProgramOnTheWeb=Strona internetowa aplikacji %1
|
ProgramOnTheWeb=Strona internetowa aplikacji %1
|
||||||
UninstallProgram=Dezinstalacja aplikacji %1
|
UninstallProgram=Dezinstalacja aplikacji %1
|
||||||
LaunchProgram=Uruchom aplikacj� %1
|
LaunchProgram=Uruchom aplikacj� %1
|
||||||
AssocFileExtension=&Przypisz aplikacj� %1 do rozszerzenia pliku %2
|
AssocFileExtension=&Przypisz aplikacj� %1 do rozszerzenia pliku %2
|
||||||
AssocingFileExtension=Przypisywanie aplikacji %1 do rozszerzenia pliku %2...
|
AssocingFileExtension=Przypisywanie aplikacji %1 do rozszerzenia pliku %2...
|
||||||
AutoStartProgramGroupDescription=Autostart:
|
AutoStartProgramGroupDescription=Autostart:
|
||||||
AutoStartProgram=Automatycznie uruchamiaj aplikacj� %1
|
AutoStartProgram=Automatycznie uruchamiaj aplikacj� %1
|
||||||
AddonHostProgramNotFound=Aplikacja %1 nie zosta�a znaleziona we wskazanym przez Ciebie folderze.%n%nCzy pomimo tego chcesz kontynuowa�?
|
AddonHostProgramNotFound=Aplikacja %1 nie zosta�a znaleziona we wskazanym przez Ciebie folderze.%n%nCzy pomimo tego chcesz kontynuowa�?
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Wybierz tryb instalacji
|
SelectSetupInstallModeTitle=Wybierz tryb instalacji
|
||||||
SelectSetupInstallModeDesc=VCMI mozna zainstalowac dla wszystkich uzytkownik�w lub tylko dla siebie.
|
SelectSetupInstallModeDesc=VCMI mozna zainstalowac dla wszystkich uzytkownik�w lub tylko dla siebie.
|
||||||
SelectSetupInstallModeSubTitle=Wybierz preferowany tryb instalacji:
|
SelectSetupInstallModeSubTitle=Wybierz preferowany tryb instalacji:
|
||||||
InstallForAllUsers=Zainstaluj dla wszystkich uzytkownik�w
|
InstallForAllUsers=Zainstaluj dla wszystkich uzytkownik�w
|
||||||
InstallForAllUsers1=Wymaga uprawnien administracyjnych
|
InstallForAllUsers1=Wymaga uprawnien administracyjnych
|
||||||
InstallForMeOnly=Zainstaluj tylko dla mnie
|
InstallForMeOnly=Zainstaluj tylko dla mnie
|
||||||
InstallForMeOnly1=Podczas pierwszego uruchomienia gry pojawi sie monit zapory sieciowej.
|
InstallForMeOnly1=Podczas pierwszego uruchomienia gry pojawi sie monit zapory sieciowej.
|
||||||
InstallForMeOnly2=Uwaga: Gry LAN nie beda dzialac, jesli nie mozna zezwolic na regule zapory.
|
InstallForMeOnly2=Uwaga: Gry LAN nie beda dzialac, jesli nie mozna zezwolic na regule zapory.
|
||||||
CreateDesktopShortcuts=Utw�rz skr�ty na pulpicie
|
CreateDesktopShortcuts=Utw�rz skr�ty na pulpicie
|
||||||
ShortcutsOptions=Opcje skr�t�w
|
ShortcutsOptions=Opcje skr�t�w
|
||||||
CreateStartMenuShortcuts=Utw�rz skr�ty w menu Start
|
CreateStartMenuShortcuts=Utw�rz skr�ty w menu Start
|
||||||
FirewallOptions=Ustawienia zapory
|
FirewallOptions=Ustawienia zapory
|
||||||
AddFirewallRules=Dodaj reguly zapory dla VCMI
|
AddFirewallRules=Dodaj reguly zapory dla VCMI
|
||||||
FileAssociations=Skojarzenia plik�w
|
FileAssociations=Skojarzenia plik�w
|
||||||
AssociateH3MFiles=Skojarz pliki .h3m z edytorem map VCMI
|
AssociateH3MFiles=Skojarz pliki .h3m z edytorem map VCMI
|
||||||
AssociateVMapFiles=Skojarz pliki .vmap z edytorem map VCMI
|
AssociateVMapFiles=Skojarz pliki .vmap z edytorem map VCMI
|
||||||
RunVCMILauncherAfterInstall=Uruchom launcher VCMI
|
RunVCMILauncherAfterInstall=Uruchom launcher VCMI
|
||||||
ShortcutMapEditor=Edytor map VCMI
|
ShortcutMapEditor=Edytor map VCMI
|
||||||
ShortcutLauncher=Launcher VCMI
|
ShortcutLauncher=Launcher VCMI
|
||||||
ShortcutWebPage=Strona internetowa VCMI
|
ShortcutWebPage=Strona internetowa VCMI
|
||||||
ShortcutDiscord=Discord VCMI
|
ShortcutDiscord=Discord VCMI
|
||||||
ShortcutLauncherComment=Uruchom launcher VCMI
|
ShortcutLauncherComment=Uruchom launcher VCMI
|
||||||
ShortcutMapEditorComment=Otw�rz edytor map VCMI
|
ShortcutMapEditorComment=Otw�rz edytor map VCMI
|
||||||
ShortcutWebPageComment=Odwiedz oficjalna strone internetowa VCMI
|
ShortcutWebPageComment=Odwiedz oficjalna strone internetowa VCMI
|
||||||
ShortcutDiscordComment=Odwiedz oficjalny Discord VCMI
|
ShortcutDiscordComment=Odwiedz oficjalny Discord VCMI
|
||||||
DeleteUserData=Usun dane uzytkownika
|
DeleteUserData=Usun dane uzytkownika
|
||||||
Uninstall=Odinstaluj
|
Uninstall=Odinstaluj
|
||||||
VMAPDescription=Plik mapy VCMI
|
VMAPDescription=Plik mapy VCMI
|
||||||
H3MDescription=Plik mapy Heroes 3
|
H3MDescription=Plik mapy Heroes 3
|
@@ -1,401 +1,401 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Russian messages ***
|
; *** Inno Setup version 6.1.0+ Russian messages ***
|
||||||
;
|
;
|
||||||
; Translated from English by Dmitry Kann, yktooo at gmail.com
|
; Translated from English by Dmitry Kann, yktooo at gmail.com
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
LanguageName=<0420><0443><0441><0441><043A><0438><0439>
|
LanguageName=<0420><0443><0441><0441><043A><0438><0439>
|
||||||
LanguageID=$0419
|
LanguageID=$0419
|
||||||
LanguageCodePage=1251
|
LanguageCodePage=1251
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=���������
|
SetupAppTitle=���������
|
||||||
SetupWindowTitle=��������� � %1
|
SetupWindowTitle=��������� � %1
|
||||||
UninstallAppTitle=�������������
|
UninstallAppTitle=�������������
|
||||||
UninstallAppFullTitle=������������� � %1
|
UninstallAppFullTitle=������������� � %1
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=����������
|
InformationTitle=����������
|
||||||
ConfirmTitle=�������������
|
ConfirmTitle=�������������
|
||||||
ErrorTitle=������
|
ErrorTitle=������
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=������ ��������� ��������� %1 �� ��� ���������, ����������?
|
SetupLdrStartupMessage=������ ��������� ��������� %1 �� ��� ���������, ����������?
|
||||||
LdrCannotCreateTemp=���������� ������� ��������� ����. ��������� ��������
|
LdrCannotCreateTemp=���������� ������� ��������� ����. ��������� ��������
|
||||||
LdrCannotExecTemp=���������� ��������� ���� �� ��������� ��������. ��������� ��������
|
LdrCannotExecTemp=���������� ��������� ���� �� ��������� ��������. ��������� ��������
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%n������ %2: %3
|
LastErrorMessage=%1.%n%n������ %2: %3
|
||||||
SetupFileMissing=���� %1 ����������� � ����� ���������. ����������, ��������� �������� ��� �������� ����� ������ ���������.
|
SetupFileMissing=���� %1 ����������� � ����� ���������. ����������, ��������� �������� ��� �������� ����� ������ ���������.
|
||||||
SetupFileCorrupt=������������ ����� ����������. ����������, �������� ����� ����� ���������.
|
SetupFileCorrupt=������������ ����� ����������. ����������, �������� ����� ����� ���������.
|
||||||
SetupFileCorruptOrWrongVer=��� ������������ ����� ���������� ��� ������������ � ������ ������� ��������� ���������. ����������, ��������� �������� ��� �������� ����� ����� ���������.
|
SetupFileCorruptOrWrongVer=��� ������������ ����� ���������� ��� ������������ � ������ ������� ��������� ���������. ����������, ��������� �������� ��� �������� ����� ����� ���������.
|
||||||
InvalidParameter=��������� ������ �������� ������������ ��������:%n%n%1
|
InvalidParameter=��������� ������ �������� ������������ ��������:%n%n%1
|
||||||
SetupAlreadyRunning=��������� ��������� ��� ��������.
|
SetupAlreadyRunning=��������� ��������� ��� ��������.
|
||||||
WindowsVersionNotSupported=��� ��������� �� ������������ ������ Windows, ������������� �� ���� ����������.
|
WindowsVersionNotSupported=��� ��������� �� ������������ ������ Windows, ������������� �� ���� ����������.
|
||||||
WindowsServicePackRequired=��� ��������� ������� %1 Service Pack %2 ��� ����� ������� ������.
|
WindowsServicePackRequired=��� ��������� ������� %1 Service Pack %2 ��� ����� ������� ������.
|
||||||
NotOnThisPlatform=��� ��������� �� ����� �������� � %1.
|
NotOnThisPlatform=��� ��������� �� ����� �������� � %1.
|
||||||
OnlyOnThisPlatform=��� ��������� ����� ��������� ������ � %1.
|
OnlyOnThisPlatform=��� ��������� ����� ��������� ������ � %1.
|
||||||
OnlyOnTheseArchitectures=��������� ���� ��������� �������� ������ � ������� Windows ��� ��������� ���������� �����������:%n%n%1
|
OnlyOnTheseArchitectures=��������� ���� ��������� �������� ������ � ������� Windows ��� ��������� ���������� �����������:%n%n%1
|
||||||
WinVersionTooLowError=��� ��������� ������� %1 ������ %2 ��� ����.
|
WinVersionTooLowError=��� ��������� ������� %1 ������ %2 ��� ����.
|
||||||
WinVersionTooHighError=��������� �� ����� ���� ����������� � %1 ������ %2 ��� ����.
|
WinVersionTooHighError=��������� �� ����� ���� ����������� � %1 ������ %2 ��� ����.
|
||||||
AdminPrivilegesRequired=����� ���������� ������ ���������, �� ������ ��������� ���� � ������� ��� �������������.
|
AdminPrivilegesRequired=����� ���������� ������ ���������, �� ������ ��������� ���� � ������� ��� �������������.
|
||||||
PowerUserPrivilegesRequired=����� ���������� ��� ���������, �� ������ ��������� ���� � ������� ��� ������������� ��� ���� ������ �������� ������������� (Power Users).
|
PowerUserPrivilegesRequired=����� ���������� ��� ���������, �� ������ ��������� ���� � ������� ��� ������������� ��� ���� ������ �������� ������������� (Power Users).
|
||||||
SetupAppRunningError=��������� ���������� ��������� %1.%n%n����������, �������� ��� ���������� ����������, ����� ������� �OK�, ����� ����������, ��� ��������, ����� �����.
|
SetupAppRunningError=��������� ���������� ��������� %1.%n%n����������, �������� ��� ���������� ����������, ����� ������� �OK�, ����� ����������, ��� ��������, ����� �����.
|
||||||
UninstallAppRunningError=������������� ��������� ���������� ��������� %1.%n%n����������, �������� ��� ���������� ����������, ����� ������� �OK�, ����� ����������, ��� ��������, ����� �����.
|
UninstallAppRunningError=������������� ��������� ���������� ��������� %1.%n%n����������, �������� ��� ���������� ����������, ����� ������� �OK�, ����� ����������, ��� ��������, ����� �����.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=����� ������ ���������
|
PrivilegesRequiredOverrideTitle=����� ������ ���������
|
||||||
PrivilegesRequiredOverrideInstruction=�������� ����� ���������
|
PrivilegesRequiredOverrideInstruction=�������� ����� ���������
|
||||||
PrivilegesRequiredOverrideText1=%1 ����� ���� ����������� ���� ��� ���� ������������� (��������� ���������� ��������������), ���� ������ ��� ���.
|
PrivilegesRequiredOverrideText1=%1 ����� ���� ����������� ���� ��� ���� ������������� (��������� ���������� ��������������), ���� ������ ��� ���.
|
||||||
PrivilegesRequiredOverrideText2=%1 ����� ���� ����������� ���� ������ ��� ���, ���� ��� ���� ������������� (��������� ���������� ��������������).
|
PrivilegesRequiredOverrideText2=%1 ����� ���� ����������� ���� ������ ��� ���, ���� ��� ���� ������������� (��������� ���������� ��������������).
|
||||||
PrivilegesRequiredOverrideAllUsers=���������� ��� &���� �������������
|
PrivilegesRequiredOverrideAllUsers=���������� ��� &���� �������������
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=���������� ��� &���� ������������� (�������������)
|
PrivilegesRequiredOverrideAllUsersRecommended=���������� ��� &���� ������������� (�������������)
|
||||||
PrivilegesRequiredOverrideCurrentUser=���������� ������ ��� &����
|
PrivilegesRequiredOverrideCurrentUser=���������� ������ ��� &����
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=���������� ������ ��� &���� (�������������)
|
PrivilegesRequiredOverrideCurrentUserRecommended=���������� ������ ��� &���� (�������������)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=���������� ������� ����� "%1"
|
ErrorCreatingDir=���������� ������� ����� "%1"
|
||||||
ErrorTooManyFilesInDir=���������� ������� ���� � �������� "%1", ��� ��� � ��� ������� ����� ������
|
ErrorTooManyFilesInDir=���������� ������� ���� � �������� "%1", ��� ��� � ��� ������� ����� ������
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=����� �� ��������� ���������
|
ExitSetupTitle=����� �� ��������� ���������
|
||||||
ExitSetupMessage=��������� �� ���������. ���� �� �������, ��������� �� ����� �����������.%n%n�� ������� ��������� ���������, �������� ��������� ��������� �����.%n%n����� �� ��������� ���������?
|
ExitSetupMessage=��������� �� ���������. ���� �� �������, ��������� �� ����� �����������.%n%n�� ������� ��������� ���������, �������� ��������� ��������� �����.%n%n����� �� ��������� ���������?
|
||||||
AboutSetupMenuItem=&� ���������...
|
AboutSetupMenuItem=&� ���������...
|
||||||
AboutSetupTitle=� ���������
|
AboutSetupTitle=� ���������
|
||||||
AboutSetupMessage=%1, ������ %2%n%3%n%n���� %1:%n%4
|
AboutSetupMessage=%1, ������ %2%n%3%n%n���� %1:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Russian translation by Dmitry Kann, http://www.dk-soft.org/
|
TranslatorNote=Russian translation by Dmitry Kann, http://www.dk-soft.org/
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &�����
|
ButtonBack=< &�����
|
||||||
ButtonNext=&����� >
|
ButtonNext=&����� >
|
||||||
ButtonInstall=&����������
|
ButtonInstall=&����������
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=������
|
ButtonCancel=������
|
||||||
ButtonYes=&��
|
ButtonYes=&��
|
||||||
ButtonYesToAll=�� ��� &����
|
ButtonYesToAll=�� ��� &����
|
||||||
ButtonNo=&���
|
ButtonNo=&���
|
||||||
ButtonNoToAll=�&�� ��� ����
|
ButtonNoToAll=�&�� ��� ����
|
||||||
ButtonFinish=&���������
|
ButtonFinish=&���������
|
||||||
ButtonBrowse=&�����...
|
ButtonBrowse=&�����...
|
||||||
ButtonWizardBrowse=&�����...
|
ButtonWizardBrowse=&�����...
|
||||||
ButtonNewFolder=&������� �����
|
ButtonNewFolder=&������� �����
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=�������� ���� ���������
|
SelectLanguageTitle=�������� ���� ���������
|
||||||
SelectLanguageLabel=�������� ����, ������� ����� ����������� � �������� ���������.
|
SelectLanguageLabel=�������� ����, ������� ����� ����������� � �������� ���������.
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=������� �������, ����� ����������, ��� ��������, ����� ����� �� ��������� ���������.
|
ClickNext=������� �������, ����� ����������, ��� ��������, ����� ����� �� ��������� ���������.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=����� �����
|
BrowseDialogTitle=����� �����
|
||||||
BrowseDialogLabel=�������� ����� �� ������ � ������� ��ʻ.
|
BrowseDialogLabel=�������� ����� �� ������ � ������� ��ʻ.
|
||||||
NewFolderName=����� �����
|
NewFolderName=����� �����
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=��� ������������ ������ ��������� [name]
|
WelcomeLabel1=��� ������������ ������ ��������� [name]
|
||||||
WelcomeLabel2=��������� ��������� [name/ver] �� ��� ���������.%n%n������������� ������� ��� ������ ���������� ����� ���, ��� ����������.
|
WelcomeLabel2=��������� ��������� [name/ver] �� ��� ���������.%n%n������������� ������� ��� ������ ���������� ����� ���, ��� ����������.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=������
|
WizardPassword=������
|
||||||
PasswordLabel1=��� ��������� �������� �������.
|
PasswordLabel1=��� ��������� �������� �������.
|
||||||
PasswordLabel3=����������, �������� ������, ����� ������� �������. ������ ���������� ������� � ������ ��������.
|
PasswordLabel3=����������, �������� ������, ����� ������� �������. ������ ���������� ������� � ������ ��������.
|
||||||
PasswordEditLabel=&������:
|
PasswordEditLabel=&������:
|
||||||
IncorrectPassword=��������� ���� ������ �������. ����������, ���������� �����.
|
IncorrectPassword=��������� ���� ������ �������. ����������, ���������� �����.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=������������ ����������
|
WizardLicense=������������ ����������
|
||||||
LicenseLabel=����������, �������� ��������� ������ ���������� ����� ���, ��� ����������.
|
LicenseLabel=����������, �������� ��������� ������ ���������� ����� ���, ��� ����������.
|
||||||
LicenseLabel3=����������, �������� ��������� ������������ ����������. �� ������ ������� ������� ����� ���������� ����� ���, ��� ����������.
|
LicenseLabel3=����������, �������� ��������� ������������ ����������. �� ������ ������� ������� ����� ���������� ����� ���, ��� ����������.
|
||||||
LicenseAccepted=� &�������� ������� ����������
|
LicenseAccepted=� &�������� ������� ����������
|
||||||
LicenseNotAccepted=� &�� �������� ������� ����������
|
LicenseNotAccepted=� &�� �������� ������� ����������
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=����������
|
WizardInfoBefore=����������
|
||||||
InfoBeforeLabel=����������, ���������� ��������� ������ ���������� ����� ���, ��� ����������.
|
InfoBeforeLabel=����������, ���������� ��������� ������ ���������� ����� ���, ��� ����������.
|
||||||
InfoBeforeClickLabel=����� �� ������ ������ ���������� ���������, ������� �������.
|
InfoBeforeClickLabel=����� �� ������ ������ ���������� ���������, ������� �������.
|
||||||
WizardInfoAfter=����������
|
WizardInfoAfter=����������
|
||||||
InfoAfterLabel=����������, ���������� ��������� ������ ���������� ����� ���, ��� ����������.
|
InfoAfterLabel=����������, ���������� ��������� ������ ���������� ����� ���, ��� ����������.
|
||||||
InfoAfterClickLabel=����� �� ������ ������ ���������� ���������, ������� �������.
|
InfoAfterClickLabel=����� �� ������ ������ ���������� ���������, ������� �������.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=���������� � ������������
|
WizardUserInfo=���������� � ������������
|
||||||
UserInfoDesc=����������, ������� ������ � ����.
|
UserInfoDesc=����������, ������� ������ � ����.
|
||||||
UserInfoName=&��� � ������� ������������:
|
UserInfoName=&��� � ������� ������������:
|
||||||
UserInfoOrg=&�����������:
|
UserInfoOrg=&�����������:
|
||||||
UserInfoSerial=&�������� �����:
|
UserInfoSerial=&�������� �����:
|
||||||
UserInfoNameRequired=�� ������ ������ ���.
|
UserInfoNameRequired=�� ������ ������ ���.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=����� ����� ���������
|
WizardSelectDir=����� ����� ���������
|
||||||
SelectDirDesc=� ����� ����� �� ������ ���������� [name]?
|
SelectDirDesc=� ����� ����� �� ������ ���������� [name]?
|
||||||
SelectDirLabel3=��������� ��������� [name] � ��������� �����.
|
SelectDirLabel3=��������� ��������� [name] � ��������� �����.
|
||||||
SelectDirBrowseLabel=������� �������, ����� ����������. ���� �� ������ ������� ������ �����, ������� �������.
|
SelectDirBrowseLabel=������� �������, ����� ����������. ���� �� ������ ������� ������ �����, ������� �������.
|
||||||
DiskSpaceGBLabel=��������� ��� ������� [gb] �� ���������� ��������� ������������.
|
DiskSpaceGBLabel=��������� ��� ������� [gb] �� ���������� ��������� ������������.
|
||||||
DiskSpaceMBLabel=��������� ��� ������� [mb] �� ���������� ��������� ������������.
|
DiskSpaceMBLabel=��������� ��� ������� [mb] �� ���������� ��������� ������������.
|
||||||
CannotInstallToNetworkDrive=��������� �� ����� ������������� �� ������� ����.
|
CannotInstallToNetworkDrive=��������� �� ����� ������������� �� ������� ����.
|
||||||
CannotInstallToUNCPath=��������� �� ����� ������������� � ����� �� UNC-����.
|
CannotInstallToUNCPath=��������� �� ����� ������������� � ����� �� UNC-����.
|
||||||
InvalidPath=�� ������ ������� ������ ���� � ������ �����; ��������:%n%nC:\APP%n%n��� � ����� UNC:%n%n\\���_�������\���_�������
|
InvalidPath=�� ������ ������� ������ ���� � ������ �����; ��������:%n%nC:\APP%n%n��� � ����� UNC:%n%n\\���_�������\���_�������
|
||||||
InvalidDrive=��������� ���� ���� ��� ������� ���� �� ���������� ��� ����������. ����������, �������� ������.
|
InvalidDrive=��������� ���� ���� ��� ������� ���� �� ���������� ��� ����������. ����������, �������� ������.
|
||||||
DiskSpaceWarningTitle=������������ ����� �� �����
|
DiskSpaceWarningTitle=������������ ����� �� �����
|
||||||
DiskSpaceWarning=��������� ������� �� ����� %1 �� ���������� �����, � �� ��������� ���� ����� �������� ������ %2 ��.%n%n�� ������� ��� �� ����� ���������� ���������?
|
DiskSpaceWarning=��������� ������� �� ����� %1 �� ���������� �����, � �� ��������� ���� ����� �������� ������ %2 ��.%n%n�� ������� ��� �� ����� ���������� ���������?
|
||||||
DirNameTooLong=��� ����� ��� ���� � ��� ��������� ���������� �����.
|
DirNameTooLong=��� ����� ��� ���� � ��� ��������� ���������� �����.
|
||||||
InvalidDirName=��������� ��� ����� �����������.
|
InvalidDirName=��������� ��� ����� �����������.
|
||||||
BadDirName32=��� ����� �� ����� ��������� ��������: %n%n%1
|
BadDirName32=��� ����� �� ����� ��������� ��������: %n%n%1
|
||||||
DirExistsTitle=����� ����������
|
DirExistsTitle=����� ����������
|
||||||
DirExists=�����%n%n%1%n%n��� ����������. ��� ����� ���������� � ��� �����?
|
DirExists=�����%n%n%1%n%n��� ����������. ��� ����� ���������� � ��� �����?
|
||||||
DirDoesntExistTitle=����� �� ����������
|
DirDoesntExistTitle=����� �� ����������
|
||||||
DirDoesntExist=�����%n%n%1%n%n�� ����������. �� ������ ������� ��?
|
DirDoesntExist=�����%n%n%1%n%n�� ����������. �� ������ ������� ��?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=����� �����������
|
WizardSelectComponents=����� �����������
|
||||||
SelectComponentsDesc=����� ���������� ������ ���� �����������?
|
SelectComponentsDesc=����� ���������� ������ ���� �����������?
|
||||||
SelectComponentsLabel2=�������� ����������, ������� �� ������ ����������; ������� ������ � �����������, ������������� ������� �� ���������. ������� �������, ����� �� ������ ������ ����������.
|
SelectComponentsLabel2=�������� ����������, ������� �� ������ ����������; ������� ������ � �����������, ������������� ������� �� ���������. ������� �������, ����� �� ������ ������ ����������.
|
||||||
FullInstallation=������ ���������
|
FullInstallation=������ ���������
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=���������� ���������
|
CompactInstallation=���������� ���������
|
||||||
CustomInstallation=���������� ���������
|
CustomInstallation=���������� ���������
|
||||||
NoUninstallWarningTitle=������������� ����������
|
NoUninstallWarningTitle=������������� ����������
|
||||||
NoUninstallWarning=��������� ��������� ����������, ��� ��������� ���������� ��� ����������� �� ����� ����������:%n%n%1%n%n������ ������ ���� ����������� �� ������ ��.%n%n����������?
|
NoUninstallWarning=��������� ��������� ����������, ��� ��������� ���������� ��� ����������� �� ����� ����������:%n%n%1%n%n������ ������ ���� ����������� �� ������ ��.%n%n����������?
|
||||||
ComponentSize1=%1 ��
|
ComponentSize1=%1 ��
|
||||||
ComponentSize2=%1 ��
|
ComponentSize2=%1 ��
|
||||||
ComponentsDiskSpaceGBLabel=������� ����� ������� �� ����� [gb] �� �� �����.
|
ComponentsDiskSpaceGBLabel=������� ����� ������� �� ����� [gb] �� �� �����.
|
||||||
ComponentsDiskSpaceMBLabel=������� ����� ������� �� ����� [mb] �� �� �����.
|
ComponentsDiskSpaceMBLabel=������� ����� ������� �� ����� [mb] �� �� �����.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=�������� �������������� ������
|
WizardSelectTasks=�������� �������������� ������
|
||||||
SelectTasksDesc=����� �������������� ������ ���������� ���������?
|
SelectTasksDesc=����� �������������� ������ ���������� ���������?
|
||||||
SelectTasksLabel2=�������� �������������� ������, ������� ������ ����������� ��� ��������� [name], ����� ����� ������� �������:
|
SelectTasksLabel2=�������� �������������� ������, ������� ������ ����������� ��� ��������� [name], ����� ����� ������� �������:
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=�������� ����� � ���� ������
|
WizardSelectProgramGroup=�������� ����� � ���� ������
|
||||||
SelectStartMenuFolderDesc=��� ��������� ��������� ������ ������� ������?
|
SelectStartMenuFolderDesc=��� ��������� ��������� ������ ������� ������?
|
||||||
SelectStartMenuFolderLabel3=��������� ������� ������ � ��������� ����� ���� ������.
|
SelectStartMenuFolderLabel3=��������� ������� ������ � ��������� ����� ���� ������.
|
||||||
SelectStartMenuFolderBrowseLabel=������� �������, ����� ����������. ���� �� ������ ������� ������ �����, ������� �������.
|
SelectStartMenuFolderBrowseLabel=������� �������, ����� ����������. ���� �� ������ ������� ������ �����, ������� �������.
|
||||||
MustEnterGroupName=�� ������ ������ ��� �����.
|
MustEnterGroupName=�� ������ ������ ��� �����.
|
||||||
GroupNameTooLong=��� ����� ������ ��� ���� � ��� ��������� ���������� �����.
|
GroupNameTooLong=��� ����� ������ ��� ���� � ��� ��������� ���������� �����.
|
||||||
InvalidGroupName=��������� ��� ����� �����������.
|
InvalidGroupName=��������� ��� ����� �����������.
|
||||||
BadGroupName=��� ����� �� ����� ��������� ��������:%n%n%1
|
BadGroupName=��� ����� �� ����� ��������� ��������:%n%n%1
|
||||||
NoProgramGroupCheck2=&�� ��������� ����� � ���� ������
|
NoProgramGroupCheck2=&�� ��������� ����� � ���� ������
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=��� ������ � ���������
|
WizardReady=��� ������ � ���������
|
||||||
ReadyLabel1=��������� ��������� ������ ������ ��������� [name] �� ��� ���������.
|
ReadyLabel1=��������� ��������� ������ ������ ��������� [name] �� ��� ���������.
|
||||||
ReadyLabel2a=������� ������������, ����� ����������, ��� �������, ���� �� ������ ����������� ��� �������� ����� ���������.
|
ReadyLabel2a=������� ������������, ����� ����������, ��� �������, ���� �� ������ ����������� ��� �������� ����� ���������.
|
||||||
ReadyLabel2b=������� ������������, ����� ����������.
|
ReadyLabel2b=������� ������������, ����� ����������.
|
||||||
ReadyMemoUserInfo=���������� � ������������:
|
ReadyMemoUserInfo=���������� � ������������:
|
||||||
ReadyMemoDir=����� ���������:
|
ReadyMemoDir=����� ���������:
|
||||||
ReadyMemoType=��� ���������:
|
ReadyMemoType=��� ���������:
|
||||||
ReadyMemoComponents=��������� ����������:
|
ReadyMemoComponents=��������� ����������:
|
||||||
ReadyMemoGroup=����� � ���� ������:
|
ReadyMemoGroup=����� � ���� ������:
|
||||||
ReadyMemoTasks=�������������� ������:
|
ReadyMemoTasks=�������������� ������:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=�������� �������������� ������...
|
DownloadingLabel=�������� �������������� ������...
|
||||||
ButtonStopDownload=&�������� ��������
|
ButtonStopDownload=&�������� ��������
|
||||||
StopDownload=�� ������������� ������ ���������� ��������?
|
StopDownload=�� ������������� ������ ���������� ��������?
|
||||||
ErrorDownloadAborted=�������� ��������
|
ErrorDownloadAborted=�������� ��������
|
||||||
ErrorDownloadFailed=������ ��������: %1 %2
|
ErrorDownloadFailed=������ ��������: %1 %2
|
||||||
ErrorDownloadSizeFailed=������ ��������� �������: %1 %2
|
ErrorDownloadSizeFailed=������ ��������� �������: %1 %2
|
||||||
ErrorFileHash1=������ ���� �����: %1
|
ErrorFileHash1=������ ���� �����: %1
|
||||||
ErrorFileHash2=�������� ��� �����: �������� %1, ������� %2
|
ErrorFileHash2=�������� ��� �����: �������� %1, ������� %2
|
||||||
ErrorProgress=������ ����������: %1 �� %2
|
ErrorProgress=������ ����������: %1 �� %2
|
||||||
ErrorFileSize=�������� ������ �����: �������� %1, ������� %2
|
ErrorFileSize=�������� ������ �����: �������� %1, ������� %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=���������� � ���������
|
WizardPreparing=���������� � ���������
|
||||||
PreparingDesc=��������� ��������� ���������������� � ��������� [name] �� ��� ���������.
|
PreparingDesc=��������� ��������� ���������������� � ��������� [name] �� ��� ���������.
|
||||||
PreviousInstallNotCompleted=��������� ��� �������� ���������� ��������� �� ���� ���������. ��� ����������� ������������� ���������, ����� ��������� �� ���������.%n%n����� ������������ ��������� ����� ��������� ���������, ����� ��������� ��������� [name].
|
PreviousInstallNotCompleted=��������� ��� �������� ���������� ��������� �� ���� ���������. ��� ����������� ������������� ���������, ����� ��������� �� ���������.%n%n����� ������������ ��������� ����� ��������� ���������, ����� ��������� ��������� [name].
|
||||||
CannotContinue=���������� ���������� ���������. ������� �������� ��� ������ �� ���������.
|
CannotContinue=���������� ���������� ���������. ������� �������� ��� ������ �� ���������.
|
||||||
ApplicationsFound=��������� ���������� ���������� �����, ������� ��������� ��������� ������ ��������. ������������� ��������� ��������� ��������� ������������� ������� ��� ����������.
|
ApplicationsFound=��������� ���������� ���������� �����, ������� ��������� ��������� ������ ��������. ������������� ��������� ��������� ��������� ������������� ������� ��� ����������.
|
||||||
ApplicationsFound2=��������� ���������� ���������� �����, ������� ��������� ��������� ������ ��������. ������������� ��������� ��������� ��������� ������������� ������� ��� ����������. ����� ��������� ����� ���������, ��������� ��������� ���������� ����� ��������� ��.
|
ApplicationsFound2=��������� ���������� ���������� �����, ������� ��������� ��������� ������ ��������. ������������� ��������� ��������� ��������� ������������� ������� ��� ����������. ����� ��������� ����� ���������, ��������� ��������� ���������� ����� ��������� ��.
|
||||||
CloseApplications=&������������� ������� ��� ����������
|
CloseApplications=&������������� ������� ��� ����������
|
||||||
DontCloseApplications=&�� ��������� ��� ����������
|
DontCloseApplications=&�� ��������� ��� ����������
|
||||||
ErrorCloseApplications=��������� ��������� �� ������� ������������� ������� ��� ����������. ������������� ������� ��� ����������, ������� ���������� ���������� ���������� �����, ������ ��� ���������� ���������.
|
ErrorCloseApplications=��������� ��������� �� ������� ������������� ������� ��� ����������. ������������� ������� ��� ����������, ������� ���������� ���������� ���������� �����, ������ ��� ���������� ���������.
|
||||||
PrepareToInstallNeedsRestart=��������� ��������� ��������� ������������� ��� ���������. ����� ������������ ����������, ����������, ��������� ��������� ��������� �����, ����� ��������� ������� ��������� [name].%n%n���������� ������������ ������?
|
PrepareToInstallNeedsRestart=��������� ��������� ��������� ������������� ��� ���������. ����� ������������ ����������, ����������, ��������� ��������� ��������� �����, ����� ��������� ������� ��������� [name].%n%n���������� ������������ ������?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=���������...
|
WizardInstalling=���������...
|
||||||
InstallingLabel=����������, ���������, ���� [name] ����������� �� ��� ���������.
|
InstallingLabel=����������, ���������, ���� [name] ����������� �� ��� ���������.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=���������� ������� ��������� [name]
|
FinishedHeadingLabel=���������� ������� ��������� [name]
|
||||||
FinishedLabelNoIcons=��������� [name] ����������� �� ��� ���������.
|
FinishedLabelNoIcons=��������� [name] ����������� �� ��� ���������.
|
||||||
FinishedLabel=��������� [name] ����������� �� ��� ���������. ���������� ����� ��������� � ������� ���������������� ������.
|
FinishedLabel=��������� [name] ����������� �� ��� ���������. ���������� ����� ��������� � ������� ���������������� ������.
|
||||||
ClickFinish=������� �����������, ����� ����� �� ��������� ���������.
|
ClickFinish=������� �����������, ����� ����� �� ��������� ���������.
|
||||||
FinishedRestartLabel=��� ���������� ��������� [name] ��������� ������������� ���������. ���������� ������������ ������?
|
FinishedRestartLabel=��� ���������� ��������� [name] ��������� ������������� ���������. ���������� ������������ ������?
|
||||||
FinishedRestartMessage=��� ���������� ��������� [name] ��������� ������������� ���������.%n%n���������� ������������ ������?
|
FinishedRestartMessage=��� ���������� ��������� [name] ��������� ������������� ���������.%n%n���������� ������������ ������?
|
||||||
ShowReadmeCheck=� ���� ����������� ���� README
|
ShowReadmeCheck=� ���� ����������� ���� README
|
||||||
YesRadio=&��, ������������� ��������� ������
|
YesRadio=&��, ������������� ��������� ������
|
||||||
NoRadio=&���, � ��������� ������������ �����
|
NoRadio=&���, � ��������� ������������ �����
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=��������� %1
|
RunEntryExec=��������� %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=����������� %1
|
RunEntryShellExec=����������� %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=���������� �������� ��������� ����
|
ChangeDiskTitle=���������� �������� ��������� ����
|
||||||
SelectDiskLabel2=����������, �������� ���� %1 � ������� �OK�.%n%n���� ����� ����� ����� ����� ���� ������� � �����, ������������ �� ���������� ����, ������� ���������� ���� ��� ������� �������.
|
SelectDiskLabel2=����������, �������� ���� %1 � ������� �OK�.%n%n���� ����� ����� ����� ����� ���� ������� � �����, ������������ �� ���������� ����, ������� ���������� ���� ��� ������� �������.
|
||||||
PathLabel=&����:
|
PathLabel=&����:
|
||||||
FileNotInDir2=���� "%1" �� ������ � "%2". ����������, �������� ���������� ���� ��� �������� ������ �����.
|
FileNotInDir2=���� "%1" �� ������ � "%2". ����������, �������� ���������� ���� ��� �������� ������ �����.
|
||||||
SelectDirectoryLabel=����������, ������� ���� � ���������� �����.
|
SelectDirectoryLabel=����������, ������� ���� � ���������� �����.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=��������� �� ���� ���������.%n%n����������, ��������� �������� � ��������� ��������� �����.
|
SetupAborted=��������� �� ���� ���������.%n%n����������, ��������� �������� � ��������� ��������� �����.
|
||||||
AbortRetryIgnoreSelectAction=�������� ��������
|
AbortRetryIgnoreSelectAction=�������� ��������
|
||||||
AbortRetryIgnoreRetry=����������� &�����
|
AbortRetryIgnoreRetry=����������� &�����
|
||||||
AbortRetryIgnoreIgnore=&������������ ������ � ����������
|
AbortRetryIgnoreIgnore=&������������ ������ � ����������
|
||||||
AbortRetryIgnoreCancel=�������� ���������
|
AbortRetryIgnoreCancel=�������� ���������
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=�������� ����������...
|
StatusClosingApplications=�������� ����������...
|
||||||
StatusCreateDirs=�������� �����...
|
StatusCreateDirs=�������� �����...
|
||||||
StatusExtractFiles=���������� ������...
|
StatusExtractFiles=���������� ������...
|
||||||
StatusCreateIcons=�������� ������� ���������...
|
StatusCreateIcons=�������� ������� ���������...
|
||||||
StatusCreateIniEntries=�������� INI-������...
|
StatusCreateIniEntries=�������� INI-������...
|
||||||
StatusCreateRegistryEntries=�������� ������� �������...
|
StatusCreateRegistryEntries=�������� ������� �������...
|
||||||
StatusRegisterFiles=����������� ������...
|
StatusRegisterFiles=����������� ������...
|
||||||
StatusSavingUninstall=���������� ���������� ��� �������������...
|
StatusSavingUninstall=���������� ���������� ��� �������������...
|
||||||
StatusRunProgram=���������� ���������...
|
StatusRunProgram=���������� ���������...
|
||||||
StatusRestartingApplications=���������� ����������...
|
StatusRestartingApplications=���������� ����������...
|
||||||
StatusRollback=����� ���������...
|
StatusRollback=����� ���������...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=���������� ������: %1
|
ErrorInternal2=���������� ������: %1
|
||||||
ErrorFunctionFailedNoCode=%1: ����
|
ErrorFunctionFailedNoCode=%1: ����
|
||||||
ErrorFunctionFailed=%1: ����; ��� %2
|
ErrorFunctionFailed=%1: ����; ��� %2
|
||||||
ErrorFunctionFailedWithMessage=%1: ����; ��� %2.%n%3
|
ErrorFunctionFailedWithMessage=%1: ����; ��� %2.%n%3
|
||||||
ErrorExecutingProgram=���������� ��������� ����:%n%1
|
ErrorExecutingProgram=���������� ��������� ����:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=������ �������� ����� �������:%n%1\%2
|
ErrorRegOpenKey=������ �������� ����� �������:%n%1\%2
|
||||||
ErrorRegCreateKey=������ �������� ����� �������:%n%1\%2
|
ErrorRegCreateKey=������ �������� ����� �������:%n%1\%2
|
||||||
ErrorRegWriteKey=������ ������ � ���� �������:%n%1\%2
|
ErrorRegWriteKey=������ ������ � ���� �������:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=������ �������� ������ � INI-����� "%1".
|
ErrorIniEntry=������ �������� ������ � INI-����� "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&���������� ���� ���� (�� �������������)
|
FileAbortRetryIgnoreSkipNotRecommended=&���������� ���� ���� (�� �������������)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&������������ ������ � ���������� (�� �������������)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&������������ ������ � ���������� (�� �������������)
|
||||||
SourceIsCorrupted=�������� ���� ���������
|
SourceIsCorrupted=�������� ���� ���������
|
||||||
SourceDoesntExist=�������� ���� "%1" �� ����������
|
SourceDoesntExist=�������� ���� "%1" �� ����������
|
||||||
ExistingFileReadOnly2=���������� �������� ������������ ����, ��� ��� �� ������� ��� ����� ������ ��� �������.
|
ExistingFileReadOnly2=���������� �������� ������������ ����, ��� ��� �� ������� ��� ����� ������ ��� �������.
|
||||||
ExistingFileReadOnlyRetry=&������� ��������������� ��� ������� � ��������� �������
|
ExistingFileReadOnlyRetry=&������� ��������������� ��� ������� � ��������� �������
|
||||||
ExistingFileReadOnlyKeepExisting=&�������� ���� �� �����
|
ExistingFileReadOnlyKeepExisting=&�������� ���� �� �����
|
||||||
ErrorReadingExistingDest=��������� ������ ��� ������� ������ ������������� �����:
|
ErrorReadingExistingDest=��������� ������ ��� ������� ������ ������������� �����:
|
||||||
FileExistsSelectAction=�������� ��������
|
FileExistsSelectAction=�������� ��������
|
||||||
FileExists2=���� ��� ����������.
|
FileExists2=���� ��� ����������.
|
||||||
FileExistsOverwriteExisting=&�������� ������������ ����
|
FileExistsOverwriteExisting=&�������� ������������ ����
|
||||||
FileExistsKeepExisting=&��������� ������������ ����
|
FileExistsKeepExisting=&��������� ������������ ����
|
||||||
FileExistsOverwriteOrKeepAll=&��������� �������� ��� ���� ����������� ����������
|
FileExistsOverwriteOrKeepAll=&��������� �������� ��� ���� ����������� ����������
|
||||||
ExistingFileNewerSelectAction=�������� ��������
|
ExistingFileNewerSelectAction=�������� ��������
|
||||||
ExistingFileNewer2=������������ ���� ����� �����, ��� ���������������.
|
ExistingFileNewer2=������������ ���� ����� �����, ��� ���������������.
|
||||||
ExistingFileNewerOverwriteExisting=&�������� ������������ ����
|
ExistingFileNewerOverwriteExisting=&�������� ������������ ����
|
||||||
ExistingFileNewerKeepExisting=&��������� ������������ ���� (�������������)
|
ExistingFileNewerKeepExisting=&��������� ������������ ���� (�������������)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&��������� �������� ��� ���� ����������� ����������
|
ExistingFileNewerOverwriteOrKeepAll=&��������� �������� ��� ���� ����������� ����������
|
||||||
ErrorChangingAttr=��������� ������ ��� ������� ��������� ��������� ������������� �����:
|
ErrorChangingAttr=��������� ������ ��� ������� ��������� ��������� ������������� �����:
|
||||||
ErrorCreatingTemp=��������� ������ ��� ������� �������� ����� � ����� ����������:
|
ErrorCreatingTemp=��������� ������ ��� ������� �������� ����� � ����� ����������:
|
||||||
ErrorReadingSource=��������� ������ ��� ������� ������ ��������� �����:
|
ErrorReadingSource=��������� ������ ��� ������� ������ ��������� �����:
|
||||||
ErrorCopying=��������� ������ ��� ������� ����������� �����:
|
ErrorCopying=��������� ������ ��� ������� ����������� �����:
|
||||||
ErrorReplacingExistingFile=��������� ������ ��� ������� ������ ������������� �����:
|
ErrorReplacingExistingFile=��������� ������ ��� ������� ������ ������������� �����:
|
||||||
ErrorRestartReplace=������ RestartReplace:
|
ErrorRestartReplace=������ RestartReplace:
|
||||||
ErrorRenamingTemp=��������� ������ ��� ������� �������������� ����� � ����� ����������:
|
ErrorRenamingTemp=��������� ������ ��� ������� �������������� ����� � ����� ����������:
|
||||||
ErrorRegisterServer=���������� ���������������� DLL/OCX: %1
|
ErrorRegisterServer=���������� ���������������� DLL/OCX: %1
|
||||||
ErrorRegSvr32Failed=������ ��� ���������� RegSvr32, ��� �������� %1
|
ErrorRegSvr32Failed=������ ��� ���������� RegSvr32, ��� �������� %1
|
||||||
ErrorRegisterTypeLib=���������� ���������������� ���������� ����� (Type Library): %1
|
ErrorRegisterTypeLib=���������� ���������������� ���������� ����� (Type Library): %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32 ����
|
UninstallDisplayNameMark32Bit=32 ����
|
||||||
UninstallDisplayNameMark64Bit=64 ����
|
UninstallDisplayNameMark64Bit=64 ����
|
||||||
UninstallDisplayNameMarkAllUsers=��� ������������
|
UninstallDisplayNameMarkAllUsers=��� ������������
|
||||||
UninstallDisplayNameMarkCurrentUser=������� ������������
|
UninstallDisplayNameMarkCurrentUser=������� ������������
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=��������� ������ ��� ������� �������� ����� README.
|
ErrorOpeningReadme=��������� ������ ��� ������� �������� ����� README.
|
||||||
ErrorRestartingComputer=��������� ��������� �� ������� ������������� ���������. ����������, ��������� ��� ��������������.
|
ErrorRestartingComputer=��������� ��������� �� ������� ������������� ���������. ����������, ��������� ��� ��������������.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=���� "%1" �� ����������, ������������� ����������.
|
UninstallNotFound=���� "%1" �� ����������, ������������� ����������.
|
||||||
UninstallOpenError=���������� ������� ���� "%1". ������������� ����������
|
UninstallOpenError=���������� ������� ���� "%1". ������������� ����������
|
||||||
UninstallUnsupportedVer=���� ��������� ��� ������������� "%1" �� ��������� ������ ������� ���������-��������������. ������������� ����������
|
UninstallUnsupportedVer=���� ��������� ��� ������������� "%1" �� ��������� ������ ������� ���������-��������������. ������������� ����������
|
||||||
UninstallUnknownEntry=���������� ����������� ����� (%1) � ����� ��������� ��� �������������
|
UninstallUnknownEntry=���������� ����������� ����� (%1) � ����� ��������� ��� �������������
|
||||||
ConfirmUninstall=�� �������, ��� ������ ��������� ������ �������� %1?
|
ConfirmUninstall=�� �������, ��� ������ ��������� ������ �������� %1?
|
||||||
UninstallOnlyOnWin64=������ ��������� �������� ���������������� ������ � ����� 64-������ Windows.
|
UninstallOnlyOnWin64=������ ��������� �������� ���������������� ������ � ����� 64-������ Windows.
|
||||||
OnlyAdminCanUninstall=��� ��������� ����� ���� ���������������� ������ ������������� � ����������������� ������������.
|
OnlyAdminCanUninstall=��� ��������� ����� ���� ���������������� ������ ������������� � ����������������� ������������.
|
||||||
UninstallStatusLabel=����������, ���������, ���� %1 ����� ������� � ������ ����������.
|
UninstallStatusLabel=����������, ���������, ���� %1 ����� ������� � ������ ����������.
|
||||||
UninstalledAll=��������� %1 ���� ��������� ������� � ������ ����������.
|
UninstalledAll=��������� %1 ���� ��������� ������� � ������ ����������.
|
||||||
UninstalledMost=������������� %1 ���������.%n%n����� ��������� �� ������� �������. �� ������ ������� �� ��������������.
|
UninstalledMost=������������� %1 ���������.%n%n����� ��������� �� ������� �������. �� ������ ������� �� ��������������.
|
||||||
UninstalledAndNeedsRestart=��� ���������� ������������� %1 ���������� ���������� ������������ ������ ����������.%n%n��������� ������������ ������?
|
UninstalledAndNeedsRestart=��� ���������� ������������� %1 ���������� ���������� ������������ ������ ����������.%n%n��������� ������������ ������?
|
||||||
UninstallDataCorrupted=���� "%1" ���������. ������������� ����������
|
UninstallDataCorrupted=���� "%1" ���������. ������������� ����������
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=������� ��������� ������������ ����?
|
ConfirmDeleteSharedFileTitle=������� ��������� ������������ ����?
|
||||||
ConfirmDeleteSharedFile2=������� ���������, ��� ��������� ��������� ������������ ���� ������ �� ������������ �������� ������� ������������. ������������� �������� �����?%n%n���� �����-���� ��������� ��� ��� ���������� ���� ����, � �� ����� ������, ��� �� ������ �������� ���������. ���� �� �� �������, �������� �����. ����������� ���� �� �������� ����� �������.
|
ConfirmDeleteSharedFile2=������� ���������, ��� ��������� ��������� ������������ ���� ������ �� ������������ �������� ������� ������������. ������������� �������� �����?%n%n���� �����-���� ��������� ��� ��� ���������� ���� ����, � �� ����� ������, ��� �� ������ �������� ���������. ���� �� �� �������, �������� �����. ����������� ���� �� �������� ����� �������.
|
||||||
SharedFileNameLabel=��� �����:
|
SharedFileNameLabel=��� �����:
|
||||||
SharedFileLocationLabel=������������:
|
SharedFileLocationLabel=������������:
|
||||||
WizardUninstalling=��������� �������������
|
WizardUninstalling=��������� �������������
|
||||||
StatusUninstalling=������������� %1...
|
StatusUninstalling=������������� %1...
|
||||||
|
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=��������� %1.
|
ShutdownBlockReasonInstallingApp=��������� %1.
|
||||||
ShutdownBlockReasonUninstallingApp=������������� %1.
|
ShutdownBlockReasonUninstallingApp=������������� %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1, ������ %2
|
NameAndVersion=%1, ������ %2
|
||||||
AdditionalIcons=�������������� ������:
|
AdditionalIcons=�������������� ������:
|
||||||
CreateDesktopIcon=������� ������ �� &������� �����
|
CreateDesktopIcon=������� ������ �� &������� �����
|
||||||
CreateQuickLaunchIcon=������� ������ � &������ �������� �������
|
CreateQuickLaunchIcon=������� ������ � &������ �������� �������
|
||||||
ProgramOnTheWeb=���� %1 � ���������
|
ProgramOnTheWeb=���� %1 � ���������
|
||||||
UninstallProgram=���������������� %1
|
UninstallProgram=���������������� %1
|
||||||
LaunchProgram=��������� %1
|
LaunchProgram=��������� %1
|
||||||
AssocFileExtension=��&����� %1 � �������, �������� ���������� %2
|
AssocFileExtension=��&����� %1 � �������, �������� ���������� %2
|
||||||
AssocingFileExtension=���������� %1 � ������� %2...
|
AssocingFileExtension=���������� %1 � ������� %2...
|
||||||
AutoStartProgramGroupDescription=����������:
|
AutoStartProgramGroupDescription=����������:
|
||||||
AutoStartProgram=������������� ��������� %1
|
AutoStartProgram=������������� ��������� %1
|
||||||
AddonHostProgramNotFound=%1 �� ������ � ��������� ���� �����.%n%n�� ��� ����� ������ ����������?
|
AddonHostProgramNotFound=%1 �� ������ � ��������� ���� �����.%n%n�� ��� ����� ������ ����������?
|
||||||
|
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=����� ������ ���������
|
SelectSetupInstallModeTitle=����� ������ ���������
|
||||||
SelectSetupInstallModeDesc=VCMI ����� ���� ���������� ��� ���� ������������� ��� ������ ��� ���.
|
SelectSetupInstallModeDesc=VCMI ����� ���� ���������� ��� ���� ������������� ��� ������ ��� ���.
|
||||||
SelectSetupInstallModeSubTitle=�������� �������������� ����� ���������:
|
SelectSetupInstallModeSubTitle=�������� �������������� ����� ���������:
|
||||||
InstallForAllUsers=���������� ��� ���� �������������
|
InstallForAllUsers=���������� ��� ���� �������������
|
||||||
InstallForAllUsers1=��������� ����� ��������������
|
InstallForAllUsers1=��������� ����� ��������������
|
||||||
InstallForMeOnly=���������� ������ ��� ����
|
InstallForMeOnly=���������� ������ ��� ����
|
||||||
InstallForMeOnly1=��� ������ ������� ���� �������� ������ �� �����������.
|
InstallForMeOnly1=��� ������ ������� ���� �������� ������ �� �����������.
|
||||||
InstallForMeOnly2=��������: ���� ������� ����������� �� ����� ���������, LAN-���� �� ����� ��������.
|
InstallForMeOnly2=��������: ���� ������� ����������� �� ����� ���������, LAN-���� �� ����� ��������.
|
||||||
CreateDesktopShortcuts=������� ������ �� ������� �����
|
CreateDesktopShortcuts=������� ������ �� ������� �����
|
||||||
ShortcutsOptions=��������� �������
|
ShortcutsOptions=��������� �������
|
||||||
CreateStartMenuShortcuts=������� ������ � ���� ������
|
CreateStartMenuShortcuts=������� ������ � ���� ������
|
||||||
FirewallOptions=��������� �����������
|
FirewallOptions=��������� �����������
|
||||||
AddFirewallRules=�������� ������� ����������� ��� VCMI
|
AddFirewallRules=�������� ������� ����������� ��� VCMI
|
||||||
FileAssociations=���������� ������
|
FileAssociations=���������� ������
|
||||||
AssociateH3MFiles=������������� ����� .h3m � ���������� ���� VCMI
|
AssociateH3MFiles=������������� ����� .h3m � ���������� ���� VCMI
|
||||||
AssociateVMapFiles=������������� ����� .vmap � ���������� ���� VCMI
|
AssociateVMapFiles=������������� ����� .vmap � ���������� ���� VCMI
|
||||||
RunVCMILauncherAfterInstall=��������� ������� VCMI
|
RunVCMILauncherAfterInstall=��������� ������� VCMI
|
||||||
ShortcutMapEditor=�������� ���� VCMI
|
ShortcutMapEditor=�������� ���� VCMI
|
||||||
ShortcutLauncher=������� VCMI
|
ShortcutLauncher=������� VCMI
|
||||||
ShortcutWebPage=����������� ���� VCMI
|
ShortcutWebPage=����������� ���� VCMI
|
||||||
ShortcutDiscord=����������� Discord VCMI
|
ShortcutDiscord=����������� Discord VCMI
|
||||||
ShortcutLauncherComment=��������� ������� VCMI
|
ShortcutLauncherComment=��������� ������� VCMI
|
||||||
ShortcutMapEditorComment=������� �������� ���� VCMI
|
ShortcutMapEditorComment=������� �������� ���� VCMI
|
||||||
ShortcutWebPageComment=�������� ����������� ���� VCMI
|
ShortcutWebPageComment=�������� ����������� ���� VCMI
|
||||||
ShortcutDiscordComment=�������� ����������� Discord VCMI
|
ShortcutDiscordComment=�������� ����������� Discord VCMI
|
||||||
DeleteUserData=������� ���������������� ������
|
DeleteUserData=������� ���������������� ������
|
||||||
Uninstall=�������
|
Uninstall=�������
|
||||||
VMAPDescription=���� ����� VCMI
|
VMAPDescription=���� ����� VCMI
|
||||||
H3MDescription=���� ����� Heroes 3
|
H3MDescription=���� ����� Heroes 3
|
@@ -1,414 +1,414 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Spanish messages ***
|
; *** Inno Setup version 6.1.0+ Spanish messages ***
|
||||||
;
|
;
|
||||||
; Maintained by Jorge Andres Brugger (jbrugger@ideaworks.com.ar)
|
; Maintained by Jorge Andres Brugger (jbrugger@ideaworks.com.ar)
|
||||||
; isl version 1.5.2 (20211123)
|
; isl version 1.5.2 (20211123)
|
||||||
; Default.isl version 6.1.0
|
; Default.isl version 6.1.0
|
||||||
;
|
;
|
||||||
; Thanks to Germ�n Giraldo, Jordi Latorre, Ximo Tamarit, Emiliano Llano,
|
; Thanks to Germ�n Giraldo, Jordi Latorre, Ximo Tamarit, Emiliano Llano,
|
||||||
; Ram�n Verduzco, Graciela Garc�a, Carles Millan and Rafael Barranco-Droege
|
; Ram�n Verduzco, Graciela Garc�a, Carles Millan and Rafael Barranco-Droege
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=Espa<00F1>ol
|
LanguageName=Espa<00F1>ol
|
||||||
LanguageID=$0c0a
|
LanguageID=$0c0a
|
||||||
LanguageCodePage=1252
|
LanguageCodePage=1252
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Instalar
|
SetupAppTitle=Instalar
|
||||||
SetupWindowTitle=Instalar - %1
|
SetupWindowTitle=Instalar - %1
|
||||||
UninstallAppTitle=Desinstalar
|
UninstallAppTitle=Desinstalar
|
||||||
UninstallAppFullTitle=Desinstalar - %1
|
UninstallAppFullTitle=Desinstalar - %1
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Informaci�n
|
InformationTitle=Informaci�n
|
||||||
ConfirmTitle=Confirmar
|
ConfirmTitle=Confirmar
|
||||||
ErrorTitle=Error
|
ErrorTitle=Error
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=Este programa instalar� %1. �Desea continuar?
|
SetupLdrStartupMessage=Este programa instalar� %1. �Desea continuar?
|
||||||
LdrCannotCreateTemp=Imposible crear archivo temporal. Instalaci�n interrumpida
|
LdrCannotCreateTemp=Imposible crear archivo temporal. Instalaci�n interrumpida
|
||||||
LdrCannotExecTemp=Imposible ejecutar archivo en la carpeta temporal. Instalaci�n interrumpida
|
LdrCannotExecTemp=Imposible ejecutar archivo en la carpeta temporal. Instalaci�n interrumpida
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nError %2: %3
|
LastErrorMessage=%1.%n%nError %2: %3
|
||||||
SetupFileMissing=El archivo %1 no se encuentra en la carpeta de instalaci�n. Por favor, solucione el problema u obtenga una copia nueva del programa.
|
SetupFileMissing=El archivo %1 no se encuentra en la carpeta de instalaci�n. Por favor, solucione el problema u obtenga una copia nueva del programa.
|
||||||
SetupFileCorrupt=Los archivos de instalaci�n est�n da�ados. Por favor, obtenga una copia nueva del programa.
|
SetupFileCorrupt=Los archivos de instalaci�n est�n da�ados. Por favor, obtenga una copia nueva del programa.
|
||||||
SetupFileCorruptOrWrongVer=Los archivos de instalaci�n est�n da�ados o son incompatibles con esta versi�n del programa de instalaci�n. Por favor, solucione el problema u obtenga una copia nueva del programa.
|
SetupFileCorruptOrWrongVer=Los archivos de instalaci�n est�n da�ados o son incompatibles con esta versi�n del programa de instalaci�n. Por favor, solucione el problema u obtenga una copia nueva del programa.
|
||||||
InvalidParameter=Se ha utilizado un par�metro no v�lido en la l�nea de comandos:%n%n%1
|
InvalidParameter=Se ha utilizado un par�metro no v�lido en la l�nea de comandos:%n%n%1
|
||||||
SetupAlreadyRunning=El programa de instalaci�n a�n est� ejecut�ndose.
|
SetupAlreadyRunning=El programa de instalaci�n a�n est� ejecut�ndose.
|
||||||
WindowsVersionNotSupported=Este programa no es compatible con la versi�n de Windows de su equipo.
|
WindowsVersionNotSupported=Este programa no es compatible con la versi�n de Windows de su equipo.
|
||||||
WindowsServicePackRequired=Este programa requiere %1 Service Pack %2 o posterior.
|
WindowsServicePackRequired=Este programa requiere %1 Service Pack %2 o posterior.
|
||||||
NotOnThisPlatform=Este programa no se ejecutar� en %1.
|
NotOnThisPlatform=Este programa no se ejecutar� en %1.
|
||||||
OnlyOnThisPlatform=Este programa debe ejecutarse en %1.
|
OnlyOnThisPlatform=Este programa debe ejecutarse en %1.
|
||||||
OnlyOnTheseArchitectures=Este programa solo puede instalarse en versiones de Windows dise�adas para las siguientes arquitecturas de procesadores:%n%n%1
|
OnlyOnTheseArchitectures=Este programa solo puede instalarse en versiones de Windows dise�adas para las siguientes arquitecturas de procesadores:%n%n%1
|
||||||
WinVersionTooLowError=Este programa requiere %1 versi�n %2 o posterior.
|
WinVersionTooLowError=Este programa requiere %1 versi�n %2 o posterior.
|
||||||
WinVersionTooHighError=Este programa no puede instalarse en %1 versi�n %2 o posterior.
|
WinVersionTooHighError=Este programa no puede instalarse en %1 versi�n %2 o posterior.
|
||||||
AdminPrivilegesRequired=Debe iniciar la sesi�n como administrador para instalar este programa.
|
AdminPrivilegesRequired=Debe iniciar la sesi�n como administrador para instalar este programa.
|
||||||
PowerUserPrivilegesRequired=Debe iniciar la sesi�n como administrador o como miembro del grupo de Usuarios Avanzados para instalar este programa.
|
PowerUserPrivilegesRequired=Debe iniciar la sesi�n como administrador o como miembro del grupo de Usuarios Avanzados para instalar este programa.
|
||||||
SetupAppRunningError=El programa de instalaci�n ha detectado que %1 est� ejecut�ndose.%n%nPor favor, ci�rrelo ahora, luego haga clic en Aceptar para continuar o en Cancelar para salir.
|
SetupAppRunningError=El programa de instalaci�n ha detectado que %1 est� ejecut�ndose.%n%nPor favor, ci�rrelo ahora, luego haga clic en Aceptar para continuar o en Cancelar para salir.
|
||||||
UninstallAppRunningError=El desinstalador ha detectado que %1 est� ejecut�ndose.%n%nPor favor, ci�rrelo ahora, luego haga clic en Aceptar para continuar o en Cancelar para salir.
|
UninstallAppRunningError=El desinstalador ha detectado que %1 est� ejecut�ndose.%n%nPor favor, ci�rrelo ahora, luego haga clic en Aceptar para continuar o en Cancelar para salir.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Selecci�n del Modo de Instalaci�n
|
PrivilegesRequiredOverrideTitle=Selecci�n del Modo de Instalaci�n
|
||||||
PrivilegesRequiredOverrideInstruction=Seleccione el modo de instalaci�n
|
PrivilegesRequiredOverrideInstruction=Seleccione el modo de instalaci�n
|
||||||
PrivilegesRequiredOverrideText1=%1 puede ser instalado para todos los usuarios (requiere privilegios administrativos), o solo para Ud.
|
PrivilegesRequiredOverrideText1=%1 puede ser instalado para todos los usuarios (requiere privilegios administrativos), o solo para Ud.
|
||||||
PrivilegesRequiredOverrideText2=%1 puede ser instalado solo para Ud, o para todos los usuarios (requiere privilegios administrativos).
|
PrivilegesRequiredOverrideText2=%1 puede ser instalado solo para Ud, o para todos los usuarios (requiere privilegios administrativos).
|
||||||
PrivilegesRequiredOverrideAllUsers=Instalar para &todos los usuarios
|
PrivilegesRequiredOverrideAllUsers=Instalar para &todos los usuarios
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Instalar para &todos los usuarios (recomendado)
|
PrivilegesRequiredOverrideAllUsersRecommended=Instalar para &todos los usuarios (recomendado)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Instalar para &m� solamente
|
PrivilegesRequiredOverrideCurrentUser=Instalar para &m� solamente
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Instalar para &m� solamente (recomendado)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Instalar para &m� solamente (recomendado)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=El programa de instalaci�n no pudo crear la carpeta "%1"
|
ErrorCreatingDir=El programa de instalaci�n no pudo crear la carpeta "%1"
|
||||||
ErrorTooManyFilesInDir=Imposible crear un archivo en la carpeta "%1" porque contiene demasiados archivos
|
ErrorTooManyFilesInDir=Imposible crear un archivo en la carpeta "%1" porque contiene demasiados archivos
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Salir de la Instalaci�n
|
ExitSetupTitle=Salir de la Instalaci�n
|
||||||
ExitSetupMessage=La instalaci�n no se ha completado a�n. Si cancela ahora, el programa no se instalar�.%n%nPuede ejecutar nuevamente el programa de instalaci�n en otra ocasi�n para completarla.%n%n�Salir de la instalaci�n?
|
ExitSetupMessage=La instalaci�n no se ha completado a�n. Si cancela ahora, el programa no se instalar�.%n%nPuede ejecutar nuevamente el programa de instalaci�n en otra ocasi�n para completarla.%n%n�Salir de la instalaci�n?
|
||||||
AboutSetupMenuItem=&Acerca de Instalar...
|
AboutSetupMenuItem=&Acerca de Instalar...
|
||||||
AboutSetupTitle=Acerca de Instalar
|
AboutSetupTitle=Acerca de Instalar
|
||||||
AboutSetupMessage=%1 versi�n %2%n%3%n%n%1 sitio Web:%n%4
|
AboutSetupMessage=%1 versi�n %2%n%3%n%n%1 sitio Web:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Spanish translation maintained by Jorge Andres Brugger (jbrugger@gmx.net)
|
TranslatorNote=Spanish translation maintained by Jorge Andres Brugger (jbrugger@gmx.net)
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Atr�s
|
ButtonBack=< &Atr�s
|
||||||
ButtonNext=&Siguiente >
|
ButtonNext=&Siguiente >
|
||||||
ButtonInstall=&Instalar
|
ButtonInstall=&Instalar
|
||||||
ButtonOK=Aceptar
|
ButtonOK=Aceptar
|
||||||
ButtonCancel=Cancelar
|
ButtonCancel=Cancelar
|
||||||
ButtonYes=&S�
|
ButtonYes=&S�
|
||||||
ButtonYesToAll=S� a &Todo
|
ButtonYesToAll=S� a &Todo
|
||||||
ButtonNo=&No
|
ButtonNo=&No
|
||||||
ButtonNoToAll=N&o a Todo
|
ButtonNoToAll=N&o a Todo
|
||||||
ButtonFinish=&Finalizar
|
ButtonFinish=&Finalizar
|
||||||
ButtonBrowse=&Examinar...
|
ButtonBrowse=&Examinar...
|
||||||
ButtonWizardBrowse=&Examinar...
|
ButtonWizardBrowse=&Examinar...
|
||||||
ButtonNewFolder=&Crear Nueva Carpeta
|
ButtonNewFolder=&Crear Nueva Carpeta
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Seleccione el Idioma de la Instalaci�n
|
SelectLanguageTitle=Seleccione el Idioma de la Instalaci�n
|
||||||
SelectLanguageLabel=Seleccione el idioma a utilizar durante la instalaci�n.
|
SelectLanguageLabel=Seleccione el idioma a utilizar durante la instalaci�n.
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=Haga clic en Siguiente para continuar o en Cancelar para salir de la instalaci�n.
|
ClickNext=Haga clic en Siguiente para continuar o en Cancelar para salir de la instalaci�n.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Buscar Carpeta
|
BrowseDialogTitle=Buscar Carpeta
|
||||||
BrowseDialogLabel=Seleccione una carpeta y luego haga clic en Aceptar.
|
BrowseDialogLabel=Seleccione una carpeta y luego haga clic en Aceptar.
|
||||||
NewFolderName=Nueva Carpeta
|
NewFolderName=Nueva Carpeta
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Bienvenido al asistente de instalaci�n de [name]
|
WelcomeLabel1=Bienvenido al asistente de instalaci�n de [name]
|
||||||
WelcomeLabel2=Este programa instalar� [name/ver] en su sistema.%n%nSe recomienda cerrar todas las dem�s aplicaciones antes de continuar.
|
WelcomeLabel2=Este programa instalar� [name/ver] en su sistema.%n%nSe recomienda cerrar todas las dem�s aplicaciones antes de continuar.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Contrase�a
|
WizardPassword=Contrase�a
|
||||||
PasswordLabel1=Esta instalaci�n est� protegida por contrase�a.
|
PasswordLabel1=Esta instalaci�n est� protegida por contrase�a.
|
||||||
PasswordLabel3=Por favor, introduzca la contrase�a y haga clic en Siguiente para continuar. En las contrase�as se hace diferencia entre may�sculas y min�sculas.
|
PasswordLabel3=Por favor, introduzca la contrase�a y haga clic en Siguiente para continuar. En las contrase�as se hace diferencia entre may�sculas y min�sculas.
|
||||||
PasswordEditLabel=&Contrase�a:
|
PasswordEditLabel=&Contrase�a:
|
||||||
IncorrectPassword=La contrase�a introducida no es correcta. Por favor, int�ntelo nuevamente.
|
IncorrectPassword=La contrase�a introducida no es correcta. Por favor, int�ntelo nuevamente.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=Acuerdo de Licencia
|
WizardLicense=Acuerdo de Licencia
|
||||||
LicenseLabel=Es importante que lea la siguiente informaci�n antes de continuar.
|
LicenseLabel=Es importante que lea la siguiente informaci�n antes de continuar.
|
||||||
LicenseLabel3=Por favor, lea el siguiente acuerdo de licencia. Debe aceptar las cl�usulas de este acuerdo antes de continuar con la instalaci�n.
|
LicenseLabel3=Por favor, lea el siguiente acuerdo de licencia. Debe aceptar las cl�usulas de este acuerdo antes de continuar con la instalaci�n.
|
||||||
LicenseAccepted=A&cepto el acuerdo
|
LicenseAccepted=A&cepto el acuerdo
|
||||||
LicenseNotAccepted=&No acepto el acuerdo
|
LicenseNotAccepted=&No acepto el acuerdo
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Informaci�n
|
WizardInfoBefore=Informaci�n
|
||||||
InfoBeforeLabel=Es importante que lea la siguiente informaci�n antes de continuar.
|
InfoBeforeLabel=Es importante que lea la siguiente informaci�n antes de continuar.
|
||||||
InfoBeforeClickLabel=Cuando est� listo para continuar con la instalaci�n, haga clic en Siguiente.
|
InfoBeforeClickLabel=Cuando est� listo para continuar con la instalaci�n, haga clic en Siguiente.
|
||||||
WizardInfoAfter=Informaci�n
|
WizardInfoAfter=Informaci�n
|
||||||
InfoAfterLabel=Es importante que lea la siguiente informaci�n antes de continuar.
|
InfoAfterLabel=Es importante que lea la siguiente informaci�n antes de continuar.
|
||||||
InfoAfterClickLabel=Cuando est� listo para continuar, haga clic en Siguiente.
|
InfoAfterClickLabel=Cuando est� listo para continuar, haga clic en Siguiente.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=Informaci�n de Usuario
|
WizardUserInfo=Informaci�n de Usuario
|
||||||
UserInfoDesc=Por favor, introduzca sus datos.
|
UserInfoDesc=Por favor, introduzca sus datos.
|
||||||
UserInfoName=Nombre de &Usuario:
|
UserInfoName=Nombre de &Usuario:
|
||||||
UserInfoOrg=&Organizaci�n:
|
UserInfoOrg=&Organizaci�n:
|
||||||
UserInfoSerial=N�mero de &Serie:
|
UserInfoSerial=N�mero de &Serie:
|
||||||
UserInfoNameRequired=Debe introducir un nombre.
|
UserInfoNameRequired=Debe introducir un nombre.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Seleccione la Carpeta de Destino
|
WizardSelectDir=Seleccione la Carpeta de Destino
|
||||||
SelectDirDesc=�D�nde debe instalarse [name]?
|
SelectDirDesc=�D�nde debe instalarse [name]?
|
||||||
SelectDirLabel3=El programa instalar� [name] en la siguiente carpeta.
|
SelectDirLabel3=El programa instalar� [name] en la siguiente carpeta.
|
||||||
SelectDirBrowseLabel=Para continuar, haga clic en Siguiente. Si desea seleccionar una carpeta diferente, haga clic en Examinar.
|
SelectDirBrowseLabel=Para continuar, haga clic en Siguiente. Si desea seleccionar una carpeta diferente, haga clic en Examinar.
|
||||||
DiskSpaceGBLabel=Se requieren al menos [gb] GB de espacio libre en el disco.
|
DiskSpaceGBLabel=Se requieren al menos [gb] GB de espacio libre en el disco.
|
||||||
DiskSpaceMBLabel=Se requieren al menos [mb] MB de espacio libre en el disco.
|
DiskSpaceMBLabel=Se requieren al menos [mb] MB de espacio libre en el disco.
|
||||||
CannotInstallToNetworkDrive=El programa de instalaci�n no puede realizar la instalaci�n en una unidad de red.
|
CannotInstallToNetworkDrive=El programa de instalaci�n no puede realizar la instalaci�n en una unidad de red.
|
||||||
CannotInstallToUNCPath=El programa de instalaci�n no puede realizar la instalaci�n en una ruta de acceso UNC.
|
CannotInstallToUNCPath=El programa de instalaci�n no puede realizar la instalaci�n en una ruta de acceso UNC.
|
||||||
InvalidPath=Debe introducir una ruta completa con la letra de la unidad; por ejemplo:%n%nC:\APP%n%no una ruta de acceso UNC de la siguiente forma:%n%n\\servidor\compartido
|
InvalidPath=Debe introducir una ruta completa con la letra de la unidad; por ejemplo:%n%nC:\APP%n%no una ruta de acceso UNC de la siguiente forma:%n%n\\servidor\compartido
|
||||||
InvalidDrive=La unidad o ruta de acceso UNC que seleccion� no existe o no es accesible. Por favor, seleccione otra.
|
InvalidDrive=La unidad o ruta de acceso UNC que seleccion� no existe o no es accesible. Por favor, seleccione otra.
|
||||||
DiskSpaceWarningTitle=Espacio Insuficiente en Disco
|
DiskSpaceWarningTitle=Espacio Insuficiente en Disco
|
||||||
DiskSpaceWarning=La instalaci�n requiere al menos %1 KB de espacio libre, pero la unidad seleccionada solo cuenta con %2 KB disponibles.%n%n�Desea continuar de todas formas?
|
DiskSpaceWarning=La instalaci�n requiere al menos %1 KB de espacio libre, pero la unidad seleccionada solo cuenta con %2 KB disponibles.%n%n�Desea continuar de todas formas?
|
||||||
DirNameTooLong=El nombre de la carpeta o la ruta son demasiado largos.
|
DirNameTooLong=El nombre de la carpeta o la ruta son demasiado largos.
|
||||||
InvalidDirName=El nombre de la carpeta no es v�lido.
|
InvalidDirName=El nombre de la carpeta no es v�lido.
|
||||||
BadDirName32=Los nombres de carpetas no pueden incluir los siguientes caracteres:%n%n%1
|
BadDirName32=Los nombres de carpetas no pueden incluir los siguientes caracteres:%n%n%1
|
||||||
DirExistsTitle=La Carpeta Ya Existe
|
DirExistsTitle=La Carpeta Ya Existe
|
||||||
DirExists=La carpeta:%n%n%1%n%nya existe. �Desea realizar la instalaci�n en esa carpeta de todas formas?
|
DirExists=La carpeta:%n%n%1%n%nya existe. �Desea realizar la instalaci�n en esa carpeta de todas formas?
|
||||||
DirDoesntExistTitle=La Carpeta No Existe
|
DirDoesntExistTitle=La Carpeta No Existe
|
||||||
DirDoesntExist=La carpeta:%n%n%1%n%nno existe. �Desea crear esa carpeta?
|
DirDoesntExist=La carpeta:%n%n%1%n%nno existe. �Desea crear esa carpeta?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Seleccione los Componentes
|
WizardSelectComponents=Seleccione los Componentes
|
||||||
SelectComponentsDesc=�Qu� componentes deben instalarse?
|
SelectComponentsDesc=�Qu� componentes deben instalarse?
|
||||||
SelectComponentsLabel2=Seleccione los componentes que desea instalar y desmarque los componentes que no desea instalar. Haga clic en Siguiente cuando est� listo para continuar.
|
SelectComponentsLabel2=Seleccione los componentes que desea instalar y desmarque los componentes que no desea instalar. Haga clic en Siguiente cuando est� listo para continuar.
|
||||||
FullInstallation=Instalaci�n Completa
|
FullInstallation=Instalaci�n Completa
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Instalaci�n Compacta
|
CompactInstallation=Instalaci�n Compacta
|
||||||
CustomInstallation=Instalaci�n Personalizada
|
CustomInstallation=Instalaci�n Personalizada
|
||||||
NoUninstallWarningTitle=Componentes Encontrados
|
NoUninstallWarningTitle=Componentes Encontrados
|
||||||
NoUninstallWarning=El programa de instalaci�n ha detectado que los siguientes componentes ya est�n instalados en su sistema:%n%n%1%n%nDesmarcar estos componentes no los desinstalar�.%n%n�Desea continuar de todos modos?
|
NoUninstallWarning=El programa de instalaci�n ha detectado que los siguientes componentes ya est�n instalados en su sistema:%n%n%1%n%nDesmarcar estos componentes no los desinstalar�.%n%n�Desea continuar de todos modos?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=La selecci�n actual requiere al menos [gb] GB de espacio en disco.
|
ComponentsDiskSpaceGBLabel=La selecci�n actual requiere al menos [gb] GB de espacio en disco.
|
||||||
ComponentsDiskSpaceMBLabel=La selecci�n actual requiere al menos [mb] MB de espacio en disco.
|
ComponentsDiskSpaceMBLabel=La selecci�n actual requiere al menos [mb] MB de espacio en disco.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Seleccione las Tareas Adicionales
|
WizardSelectTasks=Seleccione las Tareas Adicionales
|
||||||
SelectTasksDesc=�Qu� tareas adicionales deben realizarse?
|
SelectTasksDesc=�Qu� tareas adicionales deben realizarse?
|
||||||
SelectTasksLabel2=Seleccione las tareas adicionales que desea que se realicen durante la instalaci�n de [name] y haga clic en Siguiente.
|
SelectTasksLabel2=Seleccione las tareas adicionales que desea que se realicen durante la instalaci�n de [name] y haga clic en Siguiente.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Seleccione la Carpeta del Men� Inicio
|
WizardSelectProgramGroup=Seleccione la Carpeta del Men� Inicio
|
||||||
SelectStartMenuFolderDesc=�D�nde deben colocarse los accesos directos del programa?
|
SelectStartMenuFolderDesc=�D�nde deben colocarse los accesos directos del programa?
|
||||||
SelectStartMenuFolderLabel3=El programa de instalaci�n crear� los accesos directos del programa en la siguiente carpeta del Men� Inicio.
|
SelectStartMenuFolderLabel3=El programa de instalaci�n crear� los accesos directos del programa en la siguiente carpeta del Men� Inicio.
|
||||||
SelectStartMenuFolderBrowseLabel=Para continuar, haga clic en Siguiente. Si desea seleccionar una carpeta distinta, haga clic en Examinar.
|
SelectStartMenuFolderBrowseLabel=Para continuar, haga clic en Siguiente. Si desea seleccionar una carpeta distinta, haga clic en Examinar.
|
||||||
MustEnterGroupName=Debe proporcionar un nombre de carpeta.
|
MustEnterGroupName=Debe proporcionar un nombre de carpeta.
|
||||||
GroupNameTooLong=El nombre de la carpeta o la ruta son demasiado largos.
|
GroupNameTooLong=El nombre de la carpeta o la ruta son demasiado largos.
|
||||||
InvalidGroupName=El nombre de la carpeta no es v�lido.
|
InvalidGroupName=El nombre de la carpeta no es v�lido.
|
||||||
BadGroupName=El nombre de la carpeta no puede incluir ninguno de los siguientes caracteres:%n%n%1
|
BadGroupName=El nombre de la carpeta no puede incluir ninguno de los siguientes caracteres:%n%n%1
|
||||||
NoProgramGroupCheck2=&No crear una carpeta en el Men� Inicio
|
NoProgramGroupCheck2=&No crear una carpeta en el Men� Inicio
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Listo para Instalar
|
WizardReady=Listo para Instalar
|
||||||
ReadyLabel1=Ahora el programa est� listo para iniciar la instalaci�n de [name] en su sistema.
|
ReadyLabel1=Ahora el programa est� listo para iniciar la instalaci�n de [name] en su sistema.
|
||||||
ReadyLabel2a=Haga clic en Instalar para continuar con el proceso o haga clic en Atr�s si desea revisar o cambiar alguna configuraci�n.
|
ReadyLabel2a=Haga clic en Instalar para continuar con el proceso o haga clic en Atr�s si desea revisar o cambiar alguna configuraci�n.
|
||||||
ReadyLabel2b=Haga clic en Instalar para continuar con el proceso.
|
ReadyLabel2b=Haga clic en Instalar para continuar con el proceso.
|
||||||
ReadyMemoUserInfo=Informaci�n del usuario:
|
ReadyMemoUserInfo=Informaci�n del usuario:
|
||||||
ReadyMemoDir=Carpeta de Destino:
|
ReadyMemoDir=Carpeta de Destino:
|
||||||
ReadyMemoType=Tipo de Instalaci�n:
|
ReadyMemoType=Tipo de Instalaci�n:
|
||||||
ReadyMemoComponents=Componentes Seleccionados:
|
ReadyMemoComponents=Componentes Seleccionados:
|
||||||
ReadyMemoGroup=Carpeta del Men� Inicio:
|
ReadyMemoGroup=Carpeta del Men� Inicio:
|
||||||
ReadyMemoTasks=Tareas Adicionales:
|
ReadyMemoTasks=Tareas Adicionales:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Descargando archivos adicionales...
|
DownloadingLabel=Descargando archivos adicionales...
|
||||||
ButtonStopDownload=&Detener descarga
|
ButtonStopDownload=&Detener descarga
|
||||||
StopDownload=�Est� seguiro que desea detener la descarga?
|
StopDownload=�Est� seguiro que desea detener la descarga?
|
||||||
ErrorDownloadAborted=Descarga cancelada
|
ErrorDownloadAborted=Descarga cancelada
|
||||||
ErrorDownloadFailed=Fall� descarga: %1 %2
|
ErrorDownloadFailed=Fall� descarga: %1 %2
|
||||||
ErrorDownloadSizeFailed=Fall� obtenci�n de tama�o: %1 %2
|
ErrorDownloadSizeFailed=Fall� obtenci�n de tama�o: %1 %2
|
||||||
ErrorFileHash1=Fall� hash del archivo: %1
|
ErrorFileHash1=Fall� hash del archivo: %1
|
||||||
ErrorFileHash2=Hash de archivo no v�lido: esperado %1, encontrado %2
|
ErrorFileHash2=Hash de archivo no v�lido: esperado %1, encontrado %2
|
||||||
ErrorProgress=Progreso no v�lido: %1 de %2
|
ErrorProgress=Progreso no v�lido: %1 de %2
|
||||||
ErrorFileSize=Tama�o de archivo no v�lido: esperado %1, encontrado %2
|
ErrorFileSize=Tama�o de archivo no v�lido: esperado %1, encontrado %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Prepar�ndose para Instalar
|
WizardPreparing=Prepar�ndose para Instalar
|
||||||
PreparingDesc=El programa de instalaci�n est� prepar�ndose para instalar [name] en su sistema.
|
PreparingDesc=El programa de instalaci�n est� prepar�ndose para instalar [name] en su sistema.
|
||||||
PreviousInstallNotCompleted=La instalaci�n/desinstalaci�n previa de un programa no se complet�. Deber� reiniciar el sistema para completar esa instalaci�n.%n%nUna vez reiniciado el sistema, ejecute el programa de instalaci�n nuevamente para completar la instalaci�n de [name].
|
PreviousInstallNotCompleted=La instalaci�n/desinstalaci�n previa de un programa no se complet�. Deber� reiniciar el sistema para completar esa instalaci�n.%n%nUna vez reiniciado el sistema, ejecute el programa de instalaci�n nuevamente para completar la instalaci�n de [name].
|
||||||
CannotContinue=El programa de instalaci�n no puede continuar. Por favor, presione Cancelar para salir.
|
CannotContinue=El programa de instalaci�n no puede continuar. Por favor, presione Cancelar para salir.
|
||||||
ApplicationsFound=Las siguientes aplicaciones est�n usando archivos que necesitan ser actualizados por el programa de instalaci�n. Se recomienda que permita al programa de instalaci�n cerrar autom�ticamente estas aplicaciones.
|
ApplicationsFound=Las siguientes aplicaciones est�n usando archivos que necesitan ser actualizados por el programa de instalaci�n. Se recomienda que permita al programa de instalaci�n cerrar autom�ticamente estas aplicaciones.
|
||||||
ApplicationsFound2=Las siguientes aplicaciones est�n usando archivos que necesitan ser actualizados por el programa de instalaci�n. Se recomienda que permita al programa de instalaci�n cerrar autom�ticamente estas aplicaciones. Al completarse la instalaci�n, el programa de instalaci�n intentar� reiniciar las aplicaciones.
|
ApplicationsFound2=Las siguientes aplicaciones est�n usando archivos que necesitan ser actualizados por el programa de instalaci�n. Se recomienda que permita al programa de instalaci�n cerrar autom�ticamente estas aplicaciones. Al completarse la instalaci�n, el programa de instalaci�n intentar� reiniciar las aplicaciones.
|
||||||
CloseApplications=&Cerrar autom�ticamente las aplicaciones
|
CloseApplications=&Cerrar autom�ticamente las aplicaciones
|
||||||
DontCloseApplications=&No cerrar las aplicaciones
|
DontCloseApplications=&No cerrar las aplicaciones
|
||||||
ErrorCloseApplications=El programa de instalaci�n no pudo cerrar de forma autom�tica todas las aplicaciones. Se recomienda que, antes de continuar, cierre todas las aplicaciones que utilicen archivos que necesitan ser actualizados por el programa de instalaci�n.
|
ErrorCloseApplications=El programa de instalaci�n no pudo cerrar de forma autom�tica todas las aplicaciones. Se recomienda que, antes de continuar, cierre todas las aplicaciones que utilicen archivos que necesitan ser actualizados por el programa de instalaci�n.
|
||||||
PrepareToInstallNeedsRestart=El programa de instalaci�n necesita reiniciar el sistema. Una vez que se haya reiniciado ejecute nuevamente el programa de instalaci�n para completar la instalaci�n de [name].%n%n�Desea reiniciar el sistema ahora?
|
PrepareToInstallNeedsRestart=El programa de instalaci�n necesita reiniciar el sistema. Una vez que se haya reiniciado ejecute nuevamente el programa de instalaci�n para completar la instalaci�n de [name].%n%n�Desea reiniciar el sistema ahora?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Instalando
|
WizardInstalling=Instalando
|
||||||
InstallingLabel=Por favor, espere mientras se instala [name] en su sistema.
|
InstallingLabel=Por favor, espere mientras se instala [name] en su sistema.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=Completando la instalaci�n de [name]
|
FinishedHeadingLabel=Completando la instalaci�n de [name]
|
||||||
FinishedLabelNoIcons=El programa complet� la instalaci�n de [name] en su sistema.
|
FinishedLabelNoIcons=El programa complet� la instalaci�n de [name] en su sistema.
|
||||||
FinishedLabel=El programa complet� la instalaci�n de [name] en su sistema. Puede ejecutar la aplicaci�n utilizando los accesos directos creados.
|
FinishedLabel=El programa complet� la instalaci�n de [name] en su sistema. Puede ejecutar la aplicaci�n utilizando los accesos directos creados.
|
||||||
ClickFinish=Haga clic en Finalizar para salir del programa de instalaci�n.
|
ClickFinish=Haga clic en Finalizar para salir del programa de instalaci�n.
|
||||||
FinishedRestartLabel=Para completar la instalaci�n de [name], su sistema debe reiniciarse. �Desea reiniciarlo ahora?
|
FinishedRestartLabel=Para completar la instalaci�n de [name], su sistema debe reiniciarse. �Desea reiniciarlo ahora?
|
||||||
FinishedRestartMessage=Para completar la instalaci�n de [name], su sistema debe reiniciarse.%n%n�Desea reiniciarlo ahora?
|
FinishedRestartMessage=Para completar la instalaci�n de [name], su sistema debe reiniciarse.%n%n�Desea reiniciarlo ahora?
|
||||||
ShowReadmeCheck=S�, deseo ver el archivo L�AME
|
ShowReadmeCheck=S�, deseo ver el archivo L�AME
|
||||||
YesRadio=&S�, deseo reiniciar el sistema ahora
|
YesRadio=&S�, deseo reiniciar el sistema ahora
|
||||||
NoRadio=&No, reiniciar� el sistema m�s tarde
|
NoRadio=&No, reiniciar� el sistema m�s tarde
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=Ejecutar %1
|
RunEntryExec=Ejecutar %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=Ver %1
|
RunEntryShellExec=Ver %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=El Programa de Instalaci�n Necesita el Siguiente Disco
|
ChangeDiskTitle=El Programa de Instalaci�n Necesita el Siguiente Disco
|
||||||
SelectDiskLabel2=Por favor, inserte el Disco %1 y haga clic en Aceptar.%n%nSi los archivos pueden ser hallados en una carpeta diferente a la indicada abajo, introduzca la ruta correcta o haga clic en Examinar.
|
SelectDiskLabel2=Por favor, inserte el Disco %1 y haga clic en Aceptar.%n%nSi los archivos pueden ser hallados en una carpeta diferente a la indicada abajo, introduzca la ruta correcta o haga clic en Examinar.
|
||||||
PathLabel=&Ruta:
|
PathLabel=&Ruta:
|
||||||
FileNotInDir2=El archivo "%1" no se ha podido hallar en "%2". Por favor, inserte el disco correcto o seleccione otra carpeta.
|
FileNotInDir2=El archivo "%1" no se ha podido hallar en "%2". Por favor, inserte el disco correcto o seleccione otra carpeta.
|
||||||
SelectDirectoryLabel=Por favor, especifique la ubicaci�n del siguiente disco.
|
SelectDirectoryLabel=Por favor, especifique la ubicaci�n del siguiente disco.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=La instalaci�n no se ha completado.%n%nPor favor solucione el problema y ejecute nuevamente el programa de instalaci�n.
|
SetupAborted=La instalaci�n no se ha completado.%n%nPor favor solucione el problema y ejecute nuevamente el programa de instalaci�n.
|
||||||
AbortRetryIgnoreSelectAction=Seleccione acci�n
|
AbortRetryIgnoreSelectAction=Seleccione acci�n
|
||||||
AbortRetryIgnoreRetry=&Reintentar
|
AbortRetryIgnoreRetry=&Reintentar
|
||||||
AbortRetryIgnoreIgnore=&Ignorar el error y continuar
|
AbortRetryIgnoreIgnore=&Ignorar el error y continuar
|
||||||
AbortRetryIgnoreCancel=Cancelar instalaci�n
|
AbortRetryIgnoreCancel=Cancelar instalaci�n
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Cerrando aplicaciones...
|
StatusClosingApplications=Cerrando aplicaciones...
|
||||||
StatusCreateDirs=Creando carpetas...
|
StatusCreateDirs=Creando carpetas...
|
||||||
StatusExtractFiles=Extrayendo archivos...
|
StatusExtractFiles=Extrayendo archivos...
|
||||||
StatusCreateIcons=Creando accesos directos...
|
StatusCreateIcons=Creando accesos directos...
|
||||||
StatusCreateIniEntries=Creando entradas INI...
|
StatusCreateIniEntries=Creando entradas INI...
|
||||||
StatusCreateRegistryEntries=Creando entradas de registro...
|
StatusCreateRegistryEntries=Creando entradas de registro...
|
||||||
StatusRegisterFiles=Registrando archivos...
|
StatusRegisterFiles=Registrando archivos...
|
||||||
StatusSavingUninstall=Guardando informaci�n para desinstalar...
|
StatusSavingUninstall=Guardando informaci�n para desinstalar...
|
||||||
StatusRunProgram=Terminando la instalaci�n...
|
StatusRunProgram=Terminando la instalaci�n...
|
||||||
StatusRestartingApplications=Reiniciando aplicaciones...
|
StatusRestartingApplications=Reiniciando aplicaciones...
|
||||||
StatusRollback=Deshaciendo cambios...
|
StatusRollback=Deshaciendo cambios...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Error interno: %1
|
ErrorInternal2=Error interno: %1
|
||||||
ErrorFunctionFailedNoCode=%1 fall�
|
ErrorFunctionFailedNoCode=%1 fall�
|
||||||
ErrorFunctionFailed=%1 fall�; c�digo %2
|
ErrorFunctionFailed=%1 fall�; c�digo %2
|
||||||
ErrorFunctionFailedWithMessage=%1 fall�; c�digo %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 fall�; c�digo %2.%n%3
|
||||||
ErrorExecutingProgram=Imposible ejecutar el archivo:%n%1
|
ErrorExecutingProgram=Imposible ejecutar el archivo:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Error al abrir la clave del registro:%n%1\%2
|
ErrorRegOpenKey=Error al abrir la clave del registro:%n%1\%2
|
||||||
ErrorRegCreateKey=Error al crear la clave del registro:%n%1\%2
|
ErrorRegCreateKey=Error al crear la clave del registro:%n%1\%2
|
||||||
ErrorRegWriteKey=Error al escribir la clave del registro:%n%1\%2
|
ErrorRegWriteKey=Error al escribir la clave del registro:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Error al crear entrada INI en el archivo "%1".
|
ErrorIniEntry=Error al crear entrada INI en el archivo "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Omitir este archivo (no recomendado)
|
FileAbortRetryIgnoreSkipNotRecommended=&Omitir este archivo (no recomendado)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorar el error y continuar (no recomendado)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorar el error y continuar (no recomendado)
|
||||||
SourceIsCorrupted=El archivo de origen est� da�ado
|
SourceIsCorrupted=El archivo de origen est� da�ado
|
||||||
SourceDoesntExist=El archivo de origen "%1" no existe
|
SourceDoesntExist=El archivo de origen "%1" no existe
|
||||||
ExistingFileReadOnly2=El archivo existente no puede ser reemplazado debido a que est� marcado como solo-lectura.
|
ExistingFileReadOnly2=El archivo existente no puede ser reemplazado debido a que est� marcado como solo-lectura.
|
||||||
ExistingFileReadOnlyRetry=&Elimine el atributo de solo-lectura y reintente
|
ExistingFileReadOnlyRetry=&Elimine el atributo de solo-lectura y reintente
|
||||||
ExistingFileReadOnlyKeepExisting=&Mantener el archivo existente
|
ExistingFileReadOnlyKeepExisting=&Mantener el archivo existente
|
||||||
ErrorReadingExistingDest=Ocurri� un error mientras se intentaba leer el archivo:
|
ErrorReadingExistingDest=Ocurri� un error mientras se intentaba leer el archivo:
|
||||||
FileExistsSelectAction=Seleccione acci�n
|
FileExistsSelectAction=Seleccione acci�n
|
||||||
FileExists2=El archivo ya existe.
|
FileExists2=El archivo ya existe.
|
||||||
FileExistsOverwriteExisting=&Sobreescribir el archivo existente
|
FileExistsOverwriteExisting=&Sobreescribir el archivo existente
|
||||||
FileExistsKeepExisting=&Mantener el archivo existente
|
FileExistsKeepExisting=&Mantener el archivo existente
|
||||||
FileExistsOverwriteOrKeepAll=&Hacer lo mismo para lo siguientes conflictos
|
FileExistsOverwriteOrKeepAll=&Hacer lo mismo para lo siguientes conflictos
|
||||||
ExistingFileNewerSelectAction=Seleccione acci�n
|
ExistingFileNewerSelectAction=Seleccione acci�n
|
||||||
ExistingFileNewer2=El archivo existente es m�s reciente que el que se est� tratando de instalar.
|
ExistingFileNewer2=El archivo existente es m�s reciente que el que se est� tratando de instalar.
|
||||||
ExistingFileNewerOverwriteExisting=&Sobreescribir el archivo existente
|
ExistingFileNewerOverwriteExisting=&Sobreescribir el archivo existente
|
||||||
ExistingFileNewerKeepExisting=&Mantener el archivo existente (recomendado)
|
ExistingFileNewerKeepExisting=&Mantener el archivo existente (recomendado)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Hacer lo mismo para lo siguientes conflictos
|
ExistingFileNewerOverwriteOrKeepAll=&Hacer lo mismo para lo siguientes conflictos
|
||||||
ErrorChangingAttr=Ocurri� un error al intentar cambiar los atributos del archivo:
|
ErrorChangingAttr=Ocurri� un error al intentar cambiar los atributos del archivo:
|
||||||
ErrorCreatingTemp=Ocurri� un error al intentar crear un archivo en la carpeta de destino:
|
ErrorCreatingTemp=Ocurri� un error al intentar crear un archivo en la carpeta de destino:
|
||||||
ErrorReadingSource=Ocurri� un error al intentar leer el archivo de origen:
|
ErrorReadingSource=Ocurri� un error al intentar leer el archivo de origen:
|
||||||
ErrorCopying=Ocurri� un error al intentar copiar el archivo:
|
ErrorCopying=Ocurri� un error al intentar copiar el archivo:
|
||||||
ErrorReplacingExistingFile=Ocurri� un error al intentar reemplazar el archivo existente:
|
ErrorReplacingExistingFile=Ocurri� un error al intentar reemplazar el archivo existente:
|
||||||
ErrorRestartReplace=Fall� reintento de reemplazar:
|
ErrorRestartReplace=Fall� reintento de reemplazar:
|
||||||
ErrorRenamingTemp=Ocurri� un error al intentar renombrar un archivo en la carpeta de destino:
|
ErrorRenamingTemp=Ocurri� un error al intentar renombrar un archivo en la carpeta de destino:
|
||||||
ErrorRegisterServer=Imposible registrar el DLL/OCX: %1
|
ErrorRegisterServer=Imposible registrar el DLL/OCX: %1
|
||||||
ErrorRegSvr32Failed=RegSvr32 fall� con el c�digo de salida %1
|
ErrorRegSvr32Failed=RegSvr32 fall� con el c�digo de salida %1
|
||||||
ErrorRegisterTypeLib=Imposible registrar la librer�a de tipos: %1
|
ErrorRegisterTypeLib=Imposible registrar la librer�a de tipos: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32-bit
|
UninstallDisplayNameMark32Bit=32-bit
|
||||||
UninstallDisplayNameMark64Bit=64-bit
|
UninstallDisplayNameMark64Bit=64-bit
|
||||||
UninstallDisplayNameMarkAllUsers=Todos los usuarios
|
UninstallDisplayNameMarkAllUsers=Todos los usuarios
|
||||||
UninstallDisplayNameMarkCurrentUser=Usuario actual
|
UninstallDisplayNameMarkCurrentUser=Usuario actual
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Ocurri� un error al intentar abrir el archivo L�AME.
|
ErrorOpeningReadme=Ocurri� un error al intentar abrir el archivo L�AME.
|
||||||
ErrorRestartingComputer=El programa de instalaci�n no pudo reiniciar el equipo. Por favor, h�galo manualmente.
|
ErrorRestartingComputer=El programa de instalaci�n no pudo reiniciar el equipo. Por favor, h�galo manualmente.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=El archivo "%1" no existe. Imposible desinstalar.
|
UninstallNotFound=El archivo "%1" no existe. Imposible desinstalar.
|
||||||
UninstallOpenError=El archivo "%1" no pudo ser abierto. Imposible desinstalar
|
UninstallOpenError=El archivo "%1" no pudo ser abierto. Imposible desinstalar
|
||||||
UninstallUnsupportedVer=El archivo de registro para desinstalar "%1" est� en un formato no reconocido por esta versi�n del desinstalador. Imposible desinstalar
|
UninstallUnsupportedVer=El archivo de registro para desinstalar "%1" est� en un formato no reconocido por esta versi�n del desinstalador. Imposible desinstalar
|
||||||
UninstallUnknownEntry=Se encontr� una entrada desconocida (%1) en el registro de desinstalaci�n
|
UninstallUnknownEntry=Se encontr� una entrada desconocida (%1) en el registro de desinstalaci�n
|
||||||
ConfirmUninstall=�Est� seguro de que desea ejecutar el asistente de desinstalaci�n de %1?
|
ConfirmUninstall=�Est� seguro de que desea ejecutar el asistente de desinstalaci�n de %1?
|
||||||
UninstallOnlyOnWin64=Este programa solo puede ser desinstalado en Windows de 64-bits.
|
UninstallOnlyOnWin64=Este programa solo puede ser desinstalado en Windows de 64-bits.
|
||||||
OnlyAdminCanUninstall=Este programa solo puede ser desinstalado por un usuario con privilegios administrativos.
|
OnlyAdminCanUninstall=Este programa solo puede ser desinstalado por un usuario con privilegios administrativos.
|
||||||
UninstallStatusLabel=Por favor, espere mientras %1 es desinstalado de su sistema.
|
UninstallStatusLabel=Por favor, espere mientras %1 es desinstalado de su sistema.
|
||||||
UninstalledAll=%1 se desinstal� satisfactoriamente de su sistema.
|
UninstalledAll=%1 se desinstal� satisfactoriamente de su sistema.
|
||||||
UninstalledMost=La desinstalaci�n de %1 ha sido completada.%n%nAlgunos elementos no pudieron eliminarse, pero podr� eliminarlos manualmente si lo desea.
|
UninstalledMost=La desinstalaci�n de %1 ha sido completada.%n%nAlgunos elementos no pudieron eliminarse, pero podr� eliminarlos manualmente si lo desea.
|
||||||
UninstalledAndNeedsRestart=Para completar la desinstalaci�n de %1, su sistema debe reiniciarse.%n%n�Desea reiniciarlo ahora?
|
UninstalledAndNeedsRestart=Para completar la desinstalaci�n de %1, su sistema debe reiniciarse.%n%n�Desea reiniciarlo ahora?
|
||||||
UninstallDataCorrupted=El archivo "%1" est� da�ado. No puede desinstalarse
|
UninstallDataCorrupted=El archivo "%1" est� da�ado. No puede desinstalarse
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=�Eliminar Archivo Compartido?
|
ConfirmDeleteSharedFileTitle=�Eliminar Archivo Compartido?
|
||||||
ConfirmDeleteSharedFile2=El sistema indica que el siguiente archivo compartido no es utilizado por ning�n otro programa. �Desea eliminar este archivo compartido?%n%nSi elimina el archivo y hay programas que lo utilizan, esos programas podr�an dejar de funcionar correctamente. Si no est� seguro, elija No. Dejar el archivo en su sistema no producir� ning�n da�o.
|
ConfirmDeleteSharedFile2=El sistema indica que el siguiente archivo compartido no es utilizado por ning�n otro programa. �Desea eliminar este archivo compartido?%n%nSi elimina el archivo y hay programas que lo utilizan, esos programas podr�an dejar de funcionar correctamente. Si no est� seguro, elija No. Dejar el archivo en su sistema no producir� ning�n da�o.
|
||||||
SharedFileNameLabel=Archivo:
|
SharedFileNameLabel=Archivo:
|
||||||
SharedFileLocationLabel=Ubicaci�n:
|
SharedFileLocationLabel=Ubicaci�n:
|
||||||
WizardUninstalling=Estado de la Desinstalaci�n
|
WizardUninstalling=Estado de la Desinstalaci�n
|
||||||
StatusUninstalling=Desinstalando %1...
|
StatusUninstalling=Desinstalando %1...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Instalando %1.
|
ShutdownBlockReasonInstallingApp=Instalando %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Desinstalando %1.
|
ShutdownBlockReasonUninstallingApp=Desinstalando %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 versi�n %2
|
NameAndVersion=%1 versi�n %2
|
||||||
AdditionalIcons=Accesos directos adicionales:
|
AdditionalIcons=Accesos directos adicionales:
|
||||||
CreateDesktopIcon=Crear un acceso directo en el &escritorio
|
CreateDesktopIcon=Crear un acceso directo en el &escritorio
|
||||||
CreateQuickLaunchIcon=Crear un acceso directo en &Inicio R�pido
|
CreateQuickLaunchIcon=Crear un acceso directo en &Inicio R�pido
|
||||||
ProgramOnTheWeb=%1 en la Web
|
ProgramOnTheWeb=%1 en la Web
|
||||||
UninstallProgram=Desinstalar %1
|
UninstallProgram=Desinstalar %1
|
||||||
LaunchProgram=Ejecutar %1
|
LaunchProgram=Ejecutar %1
|
||||||
AssocFileExtension=&Asociar %1 con la extensi�n de archivo %2
|
AssocFileExtension=&Asociar %1 con la extensi�n de archivo %2
|
||||||
AssocingFileExtension=Asociando %1 con la extensi�n de archivo %2...
|
AssocingFileExtension=Asociando %1 con la extensi�n de archivo %2...
|
||||||
AutoStartProgramGroupDescription=Inicio:
|
AutoStartProgramGroupDescription=Inicio:
|
||||||
AutoStartProgram=Iniciar autom�ticamente %1
|
AutoStartProgram=Iniciar autom�ticamente %1
|
||||||
AddonHostProgramNotFound=%1 no pudo ser localizado en la carpeta seleccionada.%n%n�Desea continuar de todas formas?
|
AddonHostProgramNotFound=%1 no pudo ser localizado en la carpeta seleccionada.%n%n�Desea continuar de todas formas?
|
||||||
|
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Seleccionar modo de instalaci�n
|
SelectSetupInstallModeTitle=Seleccionar modo de instalaci�n
|
||||||
SelectSetupInstallModeDesc=VCMI puede instalarse para todos los usuarios o solo para usted.
|
SelectSetupInstallModeDesc=VCMI puede instalarse para todos los usuarios o solo para usted.
|
||||||
SelectSetupInstallModeSubTitle=Seleccione su modo de instalaci�n preferido:
|
SelectSetupInstallModeSubTitle=Seleccione su modo de instalaci�n preferido:
|
||||||
InstallForAllUsers=Instalar para todos los usuarios
|
InstallForAllUsers=Instalar para todos los usuarios
|
||||||
InstallForAllUsers1=Requiere privilegios administrativos
|
InstallForAllUsers1=Requiere privilegios administrativos
|
||||||
InstallForMeOnly=Instalar solo para m�
|
InstallForMeOnly=Instalar solo para m�
|
||||||
InstallForMeOnly1=Aparecer� un aviso de firewall al iniciar el juego por primera vez.
|
InstallForMeOnly1=Aparecer� un aviso de firewall al iniciar el juego por primera vez.
|
||||||
InstallForMeOnly2=Advertencia: Los juegos en LAN no funcionar�n si no se permite la regla del firewall.
|
InstallForMeOnly2=Advertencia: Los juegos en LAN no funcionar�n si no se permite la regla del firewall.
|
||||||
CreateDesktopShortcuts=Crear accesos directos en el escritorio
|
CreateDesktopShortcuts=Crear accesos directos en el escritorio
|
||||||
ShortcutsOptions=Opciones de accesos directos
|
ShortcutsOptions=Opciones de accesos directos
|
||||||
CreateStartMenuShortcuts=Crear accesos directos en el men� Inicio
|
CreateStartMenuShortcuts=Crear accesos directos en el men� Inicio
|
||||||
FirewallOptions=Configuraci�n del firewall
|
FirewallOptions=Configuraci�n del firewall
|
||||||
AddFirewallRules=Agregar reglas de firewall para VCMI
|
AddFirewallRules=Agregar reglas de firewall para VCMI
|
||||||
FileAssociations=Asociaciones de archivos
|
FileAssociations=Asociaciones de archivos
|
||||||
AssociateH3MFiles=Asociar archivos .h3m con el editor de mapas de VCMI
|
AssociateH3MFiles=Asociar archivos .h3m con el editor de mapas de VCMI
|
||||||
AssociateVMapFiles=Asociar archivos .vmap con el editor de mapas de VCMI
|
AssociateVMapFiles=Asociar archivos .vmap con el editor de mapas de VCMI
|
||||||
RunVCMILauncherAfterInstall=Iniciar el lanzador de VCMI
|
RunVCMILauncherAfterInstall=Iniciar el lanzador de VCMI
|
||||||
ShortcutMapEditor=Editor de mapas de VCMI
|
ShortcutMapEditor=Editor de mapas de VCMI
|
||||||
ShortcutLauncher=Lanzador de VCMI
|
ShortcutLauncher=Lanzador de VCMI
|
||||||
ShortcutWebPage=Sitio web de VCMI
|
ShortcutWebPage=Sitio web de VCMI
|
||||||
ShortcutDiscord=Discord oficial de VCMI
|
ShortcutDiscord=Discord oficial de VCMI
|
||||||
ShortcutLauncherComment=Iniciar el lanzador de VCMI
|
ShortcutLauncherComment=Iniciar el lanzador de VCMI
|
||||||
ShortcutMapEditorComment=Abrir el editor de mapas de VCMI
|
ShortcutMapEditorComment=Abrir el editor de mapas de VCMI
|
||||||
ShortcutWebPageComment=Visitar el sitio web oficial de VCMI
|
ShortcutWebPageComment=Visitar el sitio web oficial de VCMI
|
||||||
ShortcutDiscordComment=Visitar el Discord oficial de VCMI
|
ShortcutDiscordComment=Visitar el Discord oficial de VCMI
|
||||||
DeleteUserData=Eliminar datos de usuario
|
DeleteUserData=Eliminar datos de usuario
|
||||||
Uninstall=Desinstalar
|
Uninstall=Desinstalar
|
||||||
VMAPDescription=Archivo de mapa VCMI
|
VMAPDescription=Archivo de mapa VCMI
|
||||||
H3MDescription=Archivo de mapa Heroes 3
|
H3MDescription=Archivo de mapa Heroes 3
|
File diff suppressed because it is too large
Load Diff
@@ -1,415 +1,415 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Turkish messages ***
|
; *** Inno Setup version 6.1.0+ Turkish messages ***
|
||||||
; Language "Turkce" Turkish Translate by "Ceviren" Kaya Zeren translator@zeron.net
|
; Language "Turkce" Turkish Translate by "Ceviren" Kaya Zeren translator@zeron.net
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=T<00FC>rk<00E7>e
|
LanguageName=T<00FC>rk<00E7>e
|
||||||
LanguageID=$041f
|
LanguageID=$041f
|
||||||
LanguageCodePage=1254
|
LanguageCodePage=1254
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Uygulama ba�l�klar�
|
; *** Uygulama ba�l�klar�
|
||||||
SetupAppTitle=Kurulum yard�mc�s�
|
SetupAppTitle=Kurulum yard�mc�s�
|
||||||
SetupWindowTitle=%1 - Kurulum yard�mc�s�
|
SetupWindowTitle=%1 - Kurulum yard�mc�s�
|
||||||
UninstallAppTitle=Kald�rma yard�mc�s�
|
UninstallAppTitle=Kald�rma yard�mc�s�
|
||||||
UninstallAppFullTitle=%1 kald�rma yard�mc�s�
|
UninstallAppFullTitle=%1 kald�rma yard�mc�s�
|
||||||
|
|
||||||
; *** �e�itli ortak metinler
|
; *** �e�itli ortak metinler
|
||||||
InformationTitle=Bilgi
|
InformationTitle=Bilgi
|
||||||
ConfirmTitle=Onay
|
ConfirmTitle=Onay
|
||||||
ErrorTitle=Hata
|
ErrorTitle=Hata
|
||||||
|
|
||||||
; *** Kurulum y�kleyici iletileri
|
; *** Kurulum y�kleyici iletileri
|
||||||
SetupLdrStartupMessage=%1 uygulamas� kurulacak. �lerlemek istiyor musunuz?
|
SetupLdrStartupMessage=%1 uygulamas� kurulacak. �lerlemek istiyor musunuz?
|
||||||
LdrCannotCreateTemp=Ge�ici dosya olu�turulamad���ndan kurulum iptal edildi
|
LdrCannotCreateTemp=Ge�ici dosya olu�turulamad���ndan kurulum iptal edildi
|
||||||
LdrCannotExecTemp=Ge�ici klas�rdeki dosya �al��t�r�lamad���ndan kurulum iptal edildi
|
LdrCannotExecTemp=Ge�ici klas�rdeki dosya �al��t�r�lamad���ndan kurulum iptal edildi
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Ba�lang�� hata iletileri
|
; *** Ba�lang�� hata iletileri
|
||||||
LastErrorMessage=%1.%n%nHata %2: %3
|
LastErrorMessage=%1.%n%nHata %2: %3
|
||||||
SetupFileMissing=Kurulum klas�r�nde %1 dosyas� eksik. L�tfen sorunu ��z�n ya da uygulaman�n yeni bir kopyas�yla yeniden deneyin.
|
SetupFileMissing=Kurulum klas�r�nde %1 dosyas� eksik. L�tfen sorunu ��z�n ya da uygulaman�n yeni bir kopyas�yla yeniden deneyin.
|
||||||
SetupFileCorrupt=Kurulum dosyalar� bozulmu�. L�tfen uygulaman�n yeni bir kopyas�yla yeniden kurmay� deneyin.
|
SetupFileCorrupt=Kurulum dosyalar� bozulmu�. L�tfen uygulaman�n yeni bir kopyas�yla yeniden kurmay� deneyin.
|
||||||
SetupFileCorruptOrWrongVer=Kurulum dosyalar� bozulmu� ya da bu kurulum yard�mc�s� s�r�m� ile uyumlu de�il. L�tfen sorunu ��z�n ya da uygulaman�n yeni bir kopyas�yla yeniden kurmay� deneyin.
|
SetupFileCorruptOrWrongVer=Kurulum dosyalar� bozulmu� ya da bu kurulum yard�mc�s� s�r�m� ile uyumlu de�il. L�tfen sorunu ��z�n ya da uygulaman�n yeni bir kopyas�yla yeniden kurmay� deneyin.
|
||||||
InvalidParameter=Komut sat�r�nda ge�ersiz bir parametre yaz�lm��:%n%n%1
|
InvalidParameter=Komut sat�r�nda ge�ersiz bir parametre yaz�lm��:%n%n%1
|
||||||
SetupAlreadyRunning=Kurulum yard�mc�s� zaten �al���yor.
|
SetupAlreadyRunning=Kurulum yard�mc�s� zaten �al���yor.
|
||||||
WindowsVersionNotSupported=Bu uygulama, bilgisayar�n�zda y�kl� olan Windows s�r�m� ile uyumlu de�il.
|
WindowsVersionNotSupported=Bu uygulama, bilgisayar�n�zda y�kl� olan Windows s�r�m� ile uyumlu de�il.
|
||||||
WindowsServicePackRequired=Bu uygulama, %1 hizmet paketi %2 ve �zerindeki s�r�mler ile �al���r.
|
WindowsServicePackRequired=Bu uygulama, %1 hizmet paketi %2 ve �zerindeki s�r�mler ile �al���r.
|
||||||
NotOnThisPlatform=Bu uygulama, %1 �zerinde �al��maz.
|
NotOnThisPlatform=Bu uygulama, %1 �zerinde �al��maz.
|
||||||
OnlyOnThisPlatform=Bu uygulama, %1 �zerinde �al��t�r�lmal�d�r.
|
OnlyOnThisPlatform=Bu uygulama, %1 �zerinde �al��t�r�lmal�d�r.
|
||||||
OnlyOnTheseArchitectures=Bu uygulama, yaln�zca �u i�lemci mimarileri i�in tasarlanm�� Windows s�r�mleriyle �al���r:%n%n%1
|
OnlyOnTheseArchitectures=Bu uygulama, yaln�zca �u i�lemci mimarileri i�in tasarlanm�� Windows s�r�mleriyle �al���r:%n%n%1
|
||||||
WinVersionTooLowError=Bu uygulama i�in %1 s�r�m %2 ya da �zeri gereklidir.
|
WinVersionTooLowError=Bu uygulama i�in %1 s�r�m %2 ya da �zeri gereklidir.
|
||||||
WinVersionTooHighError=Bu uygulama, '%1' s�r�m '%2' ya da �zerine kurulamaz.
|
WinVersionTooHighError=Bu uygulama, '%1' s�r�m '%2' ya da �zerine kurulamaz.
|
||||||
AdminPrivilegesRequired=Bu uygulamay� kurmak i�in Y�netici yetkileri olan bir kullan�c� ile oturum a��lm�� olmal�d�r.
|
AdminPrivilegesRequired=Bu uygulamay� kurmak i�in Y�netici yetkileri olan bir kullan�c� ile oturum a��lm�� olmal�d�r.
|
||||||
PowerUserPrivilegesRequired=Bu uygulamay� kurarken, Y�netici ya da G��l� Kullan�c�lar grubundaki bir kullan�c� ile oturum a��lm�� olmas� gereklidir.
|
PowerUserPrivilegesRequired=Bu uygulamay� kurarken, Y�netici ya da G��l� Kullan�c�lar grubundaki bir kullan�c� ile oturum a��lm�� olmas� gereklidir.
|
||||||
SetupAppRunningError=Kurulum yard�mc�s� %1 uygulamas�n�n �al��makta oldu�unu alg�lad�.%n%nL�tfen uygulaman�n �al��an t�m kopyalar�n� kapat�p, ilerlemek i�in Tamam, kurulum yard�mc�s�ndan ��kmak i�in �ptal �zerine t�klay�n.
|
SetupAppRunningError=Kurulum yard�mc�s� %1 uygulamas�n�n �al��makta oldu�unu alg�lad�.%n%nL�tfen uygulaman�n �al��an t�m kopyalar�n� kapat�p, ilerlemek i�in Tamam, kurulum yard�mc�s�ndan ��kmak i�in �ptal �zerine t�klay�n.
|
||||||
UninstallAppRunningError=Kald�rma yard�mc�s�, %1 uygulamas�n�n �al��makta oldu�unu alg�lad�.%n%nL�tfen uygulaman�n �al��an t�m kopyalar�n� kapat�p, ilerlemek i�in Tamam ya da kald�rma yard�mc�s�ndan ��kmak i�in �ptal �zerine t�klay�n.
|
UninstallAppRunningError=Kald�rma yard�mc�s�, %1 uygulamas�n�n �al��makta oldu�unu alg�lad�.%n%nL�tfen uygulaman�n �al��an t�m kopyalar�n� kapat�p, ilerlemek i�in Tamam ya da kald�rma yard�mc�s�ndan ��kmak i�in �ptal �zerine t�klay�n.
|
||||||
|
|
||||||
; *** Ba�lang�� sorular�
|
; *** Ba�lang�� sorular�
|
||||||
PrivilegesRequiredOverrideTitle=Kurulum kipini se�in
|
PrivilegesRequiredOverrideTitle=Kurulum kipini se�in
|
||||||
PrivilegesRequiredOverrideInstruction=Kurulum kipini se�in
|
PrivilegesRequiredOverrideInstruction=Kurulum kipini se�in
|
||||||
PrivilegesRequiredOverrideText1=%1 t�m kullan�c�lar i�in (y�netici izinleri gerekir) ya da yaln�zca sizin hesab�n�z i�in kurulabilir.
|
PrivilegesRequiredOverrideText1=%1 t�m kullan�c�lar i�in (y�netici izinleri gerekir) ya da yaln�zca sizin hesab�n�z i�in kurulabilir.
|
||||||
PrivilegesRequiredOverrideText2=%1 yaln�zca sizin hesab�n�z i�in ya da t�m kullan�c�lar i�in (y�netici izinleri gerekir) kurulabilir.
|
PrivilegesRequiredOverrideText2=%1 yaln�zca sizin hesab�n�z i�in ya da t�m kullan�c�lar i�in (y�netici izinleri gerekir) kurulabilir.
|
||||||
PrivilegesRequiredOverrideAllUsers=&T�m kullan�c�lar i�in kurulsun
|
PrivilegesRequiredOverrideAllUsers=&T�m kullan�c�lar i�in kurulsun
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=&T�m kullan�c�lar i�in kurulsun (�nerilir)
|
PrivilegesRequiredOverrideAllUsersRecommended=&T�m kullan�c�lar i�in kurulsun (�nerilir)
|
||||||
PrivilegesRequiredOverrideCurrentUser=&Yaln�zca ge�erli kullan�c� i�in kurulsun
|
PrivilegesRequiredOverrideCurrentUser=&Yaln�zca ge�erli kullan�c� i�in kurulsun
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=&Yaln�zca ge�erli kullan�c� i�in kurulsun (�nerilir)
|
PrivilegesRequiredOverrideCurrentUserRecommended=&Yaln�zca ge�erli kullan�c� i�in kurulsun (�nerilir)
|
||||||
|
|
||||||
; *** �e�itli hata metinleri
|
; *** �e�itli hata metinleri
|
||||||
ErrorCreatingDir=Kurulum yard�mc�s� "%1" klas�r�n� olu�turamad�.
|
ErrorCreatingDir=Kurulum yard�mc�s� "%1" klas�r�n� olu�turamad�.
|
||||||
ErrorTooManyFilesInDir="%1" klas�r� i�inde �ok say�da dosya oldu�undan bir dosya olu�turulamad�
|
ErrorTooManyFilesInDir="%1" klas�r� i�inde �ok say�da dosya oldu�undan bir dosya olu�turulamad�
|
||||||
|
|
||||||
; *** Ortak kurulum iletileri
|
; *** Ortak kurulum iletileri
|
||||||
ExitSetupTitle=Kurulum yard�mc�s�ndan ��k
|
ExitSetupTitle=Kurulum yard�mc�s�ndan ��k
|
||||||
ExitSetupMessage=Kurulum tamamlanmad�. �imdi ��karsan�z, uygulama kurulmayacak.%n%nKurulumu tamamlamak i�in istedi�iniz zaman kurulum yard�mc�s�n� yeniden �al��t�rabilirsiniz.%n%nKurulum yard�mc�s�ndan ��k�ls�n m�?
|
ExitSetupMessage=Kurulum tamamlanmad�. �imdi ��karsan�z, uygulama kurulmayacak.%n%nKurulumu tamamlamak i�in istedi�iniz zaman kurulum yard�mc�s�n� yeniden �al��t�rabilirsiniz.%n%nKurulum yard�mc�s�ndan ��k�ls�n m�?
|
||||||
AboutSetupMenuItem=Kurulum h&akk�nda...
|
AboutSetupMenuItem=Kurulum h&akk�nda...
|
||||||
AboutSetupTitle=Kurulum hakk�nda
|
AboutSetupTitle=Kurulum hakk�nda
|
||||||
AboutSetupMessage=%1 %2 s�r�m�%n%3%n%n%1 ana sayfa:%n%4
|
AboutSetupMessage=%1 %2 s�r�m�%n%3%n%n%1 ana sayfa:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=
|
TranslatorNote=
|
||||||
|
|
||||||
; *** D��meler
|
; *** D��meler
|
||||||
ButtonBack=< �&nceki
|
ButtonBack=< �&nceki
|
||||||
ButtonNext=&Sonraki >
|
ButtonNext=&Sonraki >
|
||||||
ButtonInstall=&Kur
|
ButtonInstall=&Kur
|
||||||
ButtonOK=Tamam
|
ButtonOK=Tamam
|
||||||
ButtonCancel=�ptal
|
ButtonCancel=�ptal
|
||||||
ButtonYes=E&vet
|
ButtonYes=E&vet
|
||||||
ButtonYesToAll=&T�m�ne evet
|
ButtonYesToAll=&T�m�ne evet
|
||||||
ButtonNo=&Hay�r
|
ButtonNo=&Hay�r
|
||||||
ButtonNoToAll=T�m�ne ha&y�r
|
ButtonNoToAll=T�m�ne ha&y�r
|
||||||
ButtonFinish=&Bitti
|
ButtonFinish=&Bitti
|
||||||
ButtonBrowse=&G�z at...
|
ButtonBrowse=&G�z at...
|
||||||
ButtonWizardBrowse=G�z a&t...
|
ButtonWizardBrowse=G�z a&t...
|
||||||
ButtonNewFolder=Ye&ni klas�r olu�tur
|
ButtonNewFolder=Ye&ni klas�r olu�tur
|
||||||
|
|
||||||
; *** "Kurulum dilini se�in" sayfas� iletileri
|
; *** "Kurulum dilini se�in" sayfas� iletileri
|
||||||
SelectLanguageTitle=Kurulum Yard�mc�s� dilini se�in
|
SelectLanguageTitle=Kurulum Yard�mc�s� dilini se�in
|
||||||
SelectLanguageLabel=Kurulum s�resince kullan�lacak dili se�in.
|
SelectLanguageLabel=Kurulum s�resince kullan�lacak dili se�in.
|
||||||
|
|
||||||
; *** Ortak metinler
|
; *** Ortak metinler
|
||||||
ClickNext=�lerlemek i�in Sonraki, ��kmak i�in �ptal �zerine t�klay�n.
|
ClickNext=�lerlemek i�in Sonraki, ��kmak i�in �ptal �zerine t�klay�n.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Klas�re g�z at
|
BrowseDialogTitle=Klas�re g�z at
|
||||||
BrowseDialogLabel=A�a��daki listeden bir klas�r se�ip, Tamam �zerine t�klay�n.
|
BrowseDialogLabel=A�a��daki listeden bir klas�r se�ip, Tamam �zerine t�klay�n.
|
||||||
NewFolderName=Yeni klas�r
|
NewFolderName=Yeni klas�r
|
||||||
|
|
||||||
; *** "Kar��lama" sayfas�
|
; *** "Kar��lama" sayfas�
|
||||||
WelcomeLabel1=[name] Kurulum yard�mc�s�na ho� geldiniz.
|
WelcomeLabel1=[name] Kurulum yard�mc�s�na ho� geldiniz.
|
||||||
WelcomeLabel2=Bilgisayar�n�za [name/ver] uygulamas� kurulacak.%n%n�lerlemeden �nce �al��an di�er t�m uygulamalar� kapatman�z �nerilir.
|
WelcomeLabel2=Bilgisayar�n�za [name/ver] uygulamas� kurulacak.%n%n�lerlemeden �nce �al��an di�er t�m uygulamalar� kapatman�z �nerilir.
|
||||||
|
|
||||||
; *** "Parola" sayfas�
|
; *** "Parola" sayfas�
|
||||||
WizardPassword=Parola
|
WizardPassword=Parola
|
||||||
PasswordLabel1=Bu kurulum parola korumal�d�r.
|
PasswordLabel1=Bu kurulum parola korumal�d�r.
|
||||||
PasswordLabel3=L�tfen parolay� yaz�n ve ilerlemek i�in Sonraki �zerine t�klay�n. Parolalar b�y�k k���k harflere duyarl�d�r.
|
PasswordLabel3=L�tfen parolay� yaz�n ve ilerlemek i�in Sonraki �zerine t�klay�n. Parolalar b�y�k k���k harflere duyarl�d�r.
|
||||||
PasswordEditLabel=&Parola:
|
PasswordEditLabel=&Parola:
|
||||||
IncorrectPassword=Yazd���n�z parola do�ru de�il. L�tfen yeniden deneyin.
|
IncorrectPassword=Yazd���n�z parola do�ru de�il. L�tfen yeniden deneyin.
|
||||||
|
|
||||||
; *** "Lisans anla�mas�" sayfas�
|
; *** "Lisans anla�mas�" sayfas�
|
||||||
WizardLicense=Lisans anla�mas�
|
WizardLicense=Lisans anla�mas�
|
||||||
LicenseLabel=L�tfen ilerlemeden �nce a�a��daki �nemli bilgileri okuyun.
|
LicenseLabel=L�tfen ilerlemeden �nce a�a��daki �nemli bilgileri okuyun.
|
||||||
LicenseLabel3=L�tfen a�a��daki lisans anla�mas�n� okuyun. Uygulamay� kurmak i�in bu anla�may� kabul etmelisiniz.
|
LicenseLabel3=L�tfen a�a��daki lisans anla�mas�n� okuyun. Uygulamay� kurmak i�in bu anla�may� kabul etmelisiniz.
|
||||||
LicenseAccepted=Anla�may� kabul &ediyorum.
|
LicenseAccepted=Anla�may� kabul &ediyorum.
|
||||||
LicenseNotAccepted=Anla�may� kabul et&miyorum.
|
LicenseNotAccepted=Anla�may� kabul et&miyorum.
|
||||||
|
|
||||||
; *** "Bilgiler" sayfas�
|
; *** "Bilgiler" sayfas�
|
||||||
WizardInfoBefore=Bilgiler
|
WizardInfoBefore=Bilgiler
|
||||||
InfoBeforeLabel=L�tfen ilerlemeden �nce a�a��daki �nemli bilgileri okuyun.
|
InfoBeforeLabel=L�tfen ilerlemeden �nce a�a��daki �nemli bilgileri okuyun.
|
||||||
InfoBeforeClickLabel=Uygulamay� kurmaya haz�r oldu�unuzda Sonraki �zerine t�klay�n.
|
InfoBeforeClickLabel=Uygulamay� kurmaya haz�r oldu�unuzda Sonraki �zerine t�klay�n.
|
||||||
WizardInfoAfter=Bilgiler
|
WizardInfoAfter=Bilgiler
|
||||||
InfoAfterLabel=L�tfen ilerlemeden �nce a�a��daki �nemli bilgileri okuyun.
|
InfoAfterLabel=L�tfen ilerlemeden �nce a�a��daki �nemli bilgileri okuyun.
|
||||||
InfoAfterClickLabel=Uygulamay� kurmaya haz�r oldu�unuzda Sonraki �zerine t�klay�n.
|
InfoAfterClickLabel=Uygulamay� kurmaya haz�r oldu�unuzda Sonraki �zerine t�klay�n.
|
||||||
|
|
||||||
; *** "Kullan�c� bilgileri" sayfas�
|
; *** "Kullan�c� bilgileri" sayfas�
|
||||||
WizardUserInfo=Kullan�c� bilgileri
|
WizardUserInfo=Kullan�c� bilgileri
|
||||||
UserInfoDesc=L�tfen bilgilerinizi yaz�n.
|
UserInfoDesc=L�tfen bilgilerinizi yaz�n.
|
||||||
UserInfoName=K&ullan�c� ad�:
|
UserInfoName=K&ullan�c� ad�:
|
||||||
UserInfoOrg=Ku&rum:
|
UserInfoOrg=Ku&rum:
|
||||||
UserInfoSerial=&Seri numaras�:
|
UserInfoSerial=&Seri numaras�:
|
||||||
UserInfoNameRequired=Bir ad yazmal�s�n�z.
|
UserInfoNameRequired=Bir ad yazmal�s�n�z.
|
||||||
|
|
||||||
; *** "Kurulum konumunu se�in" sayfas�
|
; *** "Kurulum konumunu se�in" sayfas�
|
||||||
WizardSelectDir=Kurulum konumunu se�in
|
WizardSelectDir=Kurulum konumunu se�in
|
||||||
SelectDirDesc=[name] nereye kurulsun?
|
SelectDirDesc=[name] nereye kurulsun?
|
||||||
SelectDirLabel3=[name] uygulamas� �u klas�re kurulacak.
|
SelectDirLabel3=[name] uygulamas� �u klas�re kurulacak.
|
||||||
SelectDirBrowseLabel=�lerlemek icin Sonraki �zerine t�klay�n. Farkl� bir klas�r se�mek i�in G�z at �zerine t�klay�n.
|
SelectDirBrowseLabel=�lerlemek icin Sonraki �zerine t�klay�n. Farkl� bir klas�r se�mek i�in G�z at �zerine t�klay�n.
|
||||||
DiskSpaceGBLabel=En az [gb] GB bo� disk alan� gereklidir.
|
DiskSpaceGBLabel=En az [gb] GB bo� disk alan� gereklidir.
|
||||||
DiskSpaceMBLabel=En az [mb] MB bo� disk alan� gereklidir.
|
DiskSpaceMBLabel=En az [mb] MB bo� disk alan� gereklidir.
|
||||||
CannotInstallToNetworkDrive=Uygulama bir a� s�r�c�s� �zerine kurulamaz.
|
CannotInstallToNetworkDrive=Uygulama bir a� s�r�c�s� �zerine kurulamaz.
|
||||||
CannotInstallToUNCPath=Uygulama bir UNC yolu �zerine (\\yol gibi) kurulamaz.
|
CannotInstallToUNCPath=Uygulama bir UNC yolu �zerine (\\yol gibi) kurulamaz.
|
||||||
InvalidPath=S�r�c� ad� ile tam yolu yazmal�s�n�z. �rnek: %n%nC:\APP%n%n ya da �u �ekilde bir UNC yolu:%n%n\\sunucu\payla��m
|
InvalidPath=S�r�c� ad� ile tam yolu yazmal�s�n�z. �rnek: %n%nC:\APP%n%n ya da �u �ekilde bir UNC yolu:%n%n\\sunucu\payla��m
|
||||||
InvalidDrive=S�r�c� ya da UNC payla��m� yok ya da eri�ilemiyor. L�tfen ba�ka bir tane se�in.
|
InvalidDrive=S�r�c� ya da UNC payla��m� yok ya da eri�ilemiyor. L�tfen ba�ka bir tane se�in.
|
||||||
DiskSpaceWarningTitle=Yeterli bo� disk alan� yok
|
DiskSpaceWarningTitle=Yeterli bo� disk alan� yok
|
||||||
DiskSpaceWarning=Kurulum i�in %1 KB bo� alan gerekli, ancak se�ilmi� s�r�c�de yaln�zca %2 KB bo� alan var.%n%nGene de ilerlemek istiyor musunuz?
|
DiskSpaceWarning=Kurulum i�in %1 KB bo� alan gerekli, ancak se�ilmi� s�r�c�de yaln�zca %2 KB bo� alan var.%n%nGene de ilerlemek istiyor musunuz?
|
||||||
DirNameTooLong=Klas�r ad� ya da yol �ok uzun.
|
DirNameTooLong=Klas�r ad� ya da yol �ok uzun.
|
||||||
InvalidDirName=Klas�r ad� ge�ersiz.
|
InvalidDirName=Klas�r ad� ge�ersiz.
|
||||||
BadDirName32=Klas�r adlar�nda �u karakterler bulunamaz:%n%n%1
|
BadDirName32=Klas�r adlar�nda �u karakterler bulunamaz:%n%n%1
|
||||||
DirExistsTitle=Klas�r zaten var
|
DirExistsTitle=Klas�r zaten var
|
||||||
DirExists=Klas�r:%n%n%1%n%nzaten var. Kurulum i�in bu klas�r� kullanmak ister misiniz?
|
DirExists=Klas�r:%n%n%1%n%nzaten var. Kurulum i�in bu klas�r� kullanmak ister misiniz?
|
||||||
DirDoesntExistTitle=Klas�r bulunamad�
|
DirDoesntExistTitle=Klas�r bulunamad�
|
||||||
DirDoesntExist=Klas�r:%n%n%1%n%nbulunamad�.Klas�r�n olu�turmas�n� ister misiniz?
|
DirDoesntExist=Klas�r:%n%n%1%n%nbulunamad�.Klas�r�n olu�turmas�n� ister misiniz?
|
||||||
|
|
||||||
; *** "Bile�enleri se�in" sayfas�
|
; *** "Bile�enleri se�in" sayfas�
|
||||||
WizardSelectComponents=Bile�enleri se�in
|
WizardSelectComponents=Bile�enleri se�in
|
||||||
SelectComponentsDesc=Hangi bile�enler kurulacak?
|
SelectComponentsDesc=Hangi bile�enler kurulacak?
|
||||||
SelectComponentsLabel2=Kurmak istedi�iniz bile�enleri se�in; kurmak istemedi�iniz bile�enlerin i�aretini kald�r�n. �lerlemeye haz�r oldu�unuzda Sonraki �zerine t�klay�n.
|
SelectComponentsLabel2=Kurmak istedi�iniz bile�enleri se�in; kurmak istemedi�iniz bile�enlerin i�aretini kald�r�n. �lerlemeye haz�r oldu�unuzda Sonraki �zerine t�klay�n.
|
||||||
FullInstallation=Tam kurulum
|
FullInstallation=Tam kurulum
|
||||||
; Olabiliyorsa 'Compact' ifadesini kendi dilinizde 'Minimal' anlam�nda �evirmeyin
|
; Olabiliyorsa 'Compact' ifadesini kendi dilinizde 'Minimal' anlam�nda �evirmeyin
|
||||||
CompactInstallation=Normal kurulum
|
CompactInstallation=Normal kurulum
|
||||||
CustomInstallation=�zel kurulum
|
CustomInstallation=�zel kurulum
|
||||||
NoUninstallWarningTitle=Bile�enler zaten var
|
NoUninstallWarningTitle=Bile�enler zaten var
|
||||||
NoUninstallWarning=�u bile�enlerin bilgisayar�n�zda zaten kurulu oldu�u alg�land�:%n%n%1%n%n Bu bile�enlerin i�aretlerinin kald�r�lmas� bile�enleri kald�rmaz.%n%nGene de ilerlemek istiyor musunuz?
|
NoUninstallWarning=�u bile�enlerin bilgisayar�n�zda zaten kurulu oldu�u alg�land�:%n%n%1%n%n Bu bile�enlerin i�aretlerinin kald�r�lmas� bile�enleri kald�rmaz.%n%nGene de ilerlemek istiyor musunuz?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=Se�ilmi� bile�enler i�in diskte en az [gb] GB bo� alan bulunmas� gerekli.
|
ComponentsDiskSpaceGBLabel=Se�ilmi� bile�enler i�in diskte en az [gb] GB bo� alan bulunmas� gerekli.
|
||||||
ComponentsDiskSpaceMBLabel=Se�ilmi� bile�enler i�in diskte en az [mb] MB bo� alan bulunmas� gerekli.
|
ComponentsDiskSpaceMBLabel=Se�ilmi� bile�enler i�in diskte en az [mb] MB bo� alan bulunmas� gerekli.
|
||||||
|
|
||||||
; *** "Ek i�lemleri se�in" sayfas�
|
; *** "Ek i�lemleri se�in" sayfas�
|
||||||
WizardSelectTasks=Ek i�lemleri se�in
|
WizardSelectTasks=Ek i�lemleri se�in
|
||||||
SelectTasksDesc=Ba�ka hangi i�lemler yap�ls�n?
|
SelectTasksDesc=Ba�ka hangi i�lemler yap�ls�n?
|
||||||
SelectTasksLabel2=[name] kurulumu s�ras�nda yap�lmas�n� istedi�iniz ek i�leri se�in ve Sonraki �zerine t�klay�n.
|
SelectTasksLabel2=[name] kurulumu s�ras�nda yap�lmas�n� istedi�iniz ek i�leri se�in ve Sonraki �zerine t�klay�n.
|
||||||
|
|
||||||
; *** "Ba�lat men�s� klas�r�n� se�in" sayfas�
|
; *** "Ba�lat men�s� klas�r�n� se�in" sayfas�
|
||||||
WizardSelectProgramGroup=Ba�lat men�s� klas�r�n� se�in
|
WizardSelectProgramGroup=Ba�lat men�s� klas�r�n� se�in
|
||||||
SelectStartMenuFolderDesc=Uygulaman�n k�sayollar� nereye eklensin?
|
SelectStartMenuFolderDesc=Uygulaman�n k�sayollar� nereye eklensin?
|
||||||
SelectStartMenuFolderLabel3=Kurulum yard�mc�s� uygulama k�sayollar�n� a�a��daki Ba�lat men�s� klas�r�ne ekleyecek.
|
SelectStartMenuFolderLabel3=Kurulum yard�mc�s� uygulama k�sayollar�n� a�a��daki Ba�lat men�s� klas�r�ne ekleyecek.
|
||||||
SelectStartMenuFolderBrowseLabel=�lerlemek i�in Sonraki �zerine t�klay�n. Farkl� bir klas�r se�mek i�in G�z at �zerine t�klay�n.
|
SelectStartMenuFolderBrowseLabel=�lerlemek i�in Sonraki �zerine t�klay�n. Farkl� bir klas�r se�mek i�in G�z at �zerine t�klay�n.
|
||||||
MustEnterGroupName=Bir klas�r ad� yazmal�s�n�z.
|
MustEnterGroupName=Bir klas�r ad� yazmal�s�n�z.
|
||||||
GroupNameTooLong=Klas�r ad� ya da yol �ok uzun.
|
GroupNameTooLong=Klas�r ad� ya da yol �ok uzun.
|
||||||
InvalidGroupName=Klas�r ad� ge�ersiz.
|
InvalidGroupName=Klas�r ad� ge�ersiz.
|
||||||
BadGroupName=Klas�r ad�nda �u karakterler bulunamaz:%n%n%1
|
BadGroupName=Klas�r ad�nda �u karakterler bulunamaz:%n%n%1
|
||||||
NoProgramGroupCheck2=Ba�lat men�s� klas�r� &olu�turulmas�n
|
NoProgramGroupCheck2=Ba�lat men�s� klas�r� &olu�turulmas�n
|
||||||
|
|
||||||
; *** "Kurulmaya haz�r" sayfas�
|
; *** "Kurulmaya haz�r" sayfas�
|
||||||
WizardReady=Kurulmaya haz�r
|
WizardReady=Kurulmaya haz�r
|
||||||
ReadyLabel1=[name] bilgisayar�n�za kurulmaya haz�r.
|
ReadyLabel1=[name] bilgisayar�n�za kurulmaya haz�r.
|
||||||
ReadyLabel2a=Kuruluma ba�lamak i�in Sonraki �zerine, ayarlar� g�zden ge�irip de�i�tirmek i�in �nceki �zerine t�klay�n.
|
ReadyLabel2a=Kuruluma ba�lamak i�in Sonraki �zerine, ayarlar� g�zden ge�irip de�i�tirmek i�in �nceki �zerine t�klay�n.
|
||||||
ReadyLabel2b=Kuruluma ba�lamak i�in Sonraki �zerine t�klay�n.
|
ReadyLabel2b=Kuruluma ba�lamak i�in Sonraki �zerine t�klay�n.
|
||||||
ReadyMemoUserInfo=Kullan�c� bilgileri:
|
ReadyMemoUserInfo=Kullan�c� bilgileri:
|
||||||
ReadyMemoDir=Kurulum konumu:
|
ReadyMemoDir=Kurulum konumu:
|
||||||
ReadyMemoType=Kurulum t�r�:
|
ReadyMemoType=Kurulum t�r�:
|
||||||
ReadyMemoComponents=Se�ilmi� bile�enler:
|
ReadyMemoComponents=Se�ilmi� bile�enler:
|
||||||
ReadyMemoGroup=Ba�lat men�s� klas�r�:
|
ReadyMemoGroup=Ba�lat men�s� klas�r�:
|
||||||
ReadyMemoTasks=Ek i�lemler:
|
ReadyMemoTasks=Ek i�lemler:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Ek dosyalar indiriliyor...
|
DownloadingLabel=Ek dosyalar indiriliyor...
|
||||||
ButtonStopDownload=�ndirmeyi &durdur
|
ButtonStopDownload=�ndirmeyi &durdur
|
||||||
StopDownload=�ndirmeyi durdurmak istedi�inize emin misiniz?
|
StopDownload=�ndirmeyi durdurmak istedi�inize emin misiniz?
|
||||||
ErrorDownloadAborted=�ndirme durduruldu
|
ErrorDownloadAborted=�ndirme durduruldu
|
||||||
ErrorDownloadFailed=�ndirilemedi: %1 %2
|
ErrorDownloadFailed=�ndirilemedi: %1 %2
|
||||||
ErrorDownloadSizeFailed=Boyut al�namad�: %1 %2
|
ErrorDownloadSizeFailed=Boyut al�namad�: %1 %2
|
||||||
ErrorFileHash1=Dosya karmas� do�rulanamad�: %1
|
ErrorFileHash1=Dosya karmas� do�rulanamad�: %1
|
||||||
ErrorFileHash2=Dosya karmas� ge�ersiz: %1 olmas� gerekirken %2
|
ErrorFileHash2=Dosya karmas� ge�ersiz: %1 olmas� gerekirken %2
|
||||||
ErrorProgress=Ad�m ge�ersiz: %1 / %2
|
ErrorProgress=Ad�m ge�ersiz: %1 / %2
|
||||||
ErrorFileSize=Dosya boyutu ge�ersiz: %1 olmas� gerekirken %2
|
ErrorFileSize=Dosya boyutu ge�ersiz: %1 olmas� gerekirken %2
|
||||||
|
|
||||||
; *** "Kuruluma haz�rlan�l�yor" sayfas�
|
; *** "Kuruluma haz�rlan�l�yor" sayfas�
|
||||||
WizardPreparing=Kuruluma haz�rlan�l�yor
|
WizardPreparing=Kuruluma haz�rlan�l�yor
|
||||||
PreparingDesc=[name] bilgisayar�n�za kurulmaya haz�rlan�yor.
|
PreparingDesc=[name] bilgisayar�n�za kurulmaya haz�rlan�yor.
|
||||||
PreviousInstallNotCompleted=�nceki uygulama kurulumu ya da kald�r�lmas� tamamlanmam��. Bu kurulumun tamamlanmas� i�in bilgisayar�n�z� yeniden ba�latmal�s�n�z.%n%nBilgisayar�n�z� yeniden ba�latt�ktan sonra i�lemi tamamlamak i�in [name] kurulum yard�mc�s�n� yeniden �al��t�r�n.
|
PreviousInstallNotCompleted=�nceki uygulama kurulumu ya da kald�r�lmas� tamamlanmam��. Bu kurulumun tamamlanmas� i�in bilgisayar�n�z� yeniden ba�latmal�s�n�z.%n%nBilgisayar�n�z� yeniden ba�latt�ktan sonra i�lemi tamamlamak i�in [name] kurulum yard�mc�s�n� yeniden �al��t�r�n.
|
||||||
CannotContinue=Kurulum yap�lamad�. ��kmak i�in �ptal �zerine t�klay�n.
|
CannotContinue=Kurulum yap�lamad�. ��kmak i�in �ptal �zerine t�klay�n.
|
||||||
ApplicationsFound=Kurulum yard�mc�s� taraf�ndan g�ncellenmesi gereken dosyalar, �u uygulamalar taraf�ndan kullan�yor. Kurulum yard�mc�s�n�n bu uygulamalar� otomatik olarak kapatmas�na izin vermeniz �nerilir.
|
ApplicationsFound=Kurulum yard�mc�s� taraf�ndan g�ncellenmesi gereken dosyalar, �u uygulamalar taraf�ndan kullan�yor. Kurulum yard�mc�s�n�n bu uygulamalar� otomatik olarak kapatmas�na izin vermeniz �nerilir.
|
||||||
ApplicationsFound2=Kurulum yard�mc�s� taraf�ndan g�ncellenmesi gereken dosyalar, �u uygulamalar taraf�ndan kullan�yor. Kurulum yard�mc�s�n�n bu uygulamalar� otomatik olarak kapatmas�na izin vermeniz �nerilir. Kurulum tamamland�ktan sonra, uygulamalar yeniden ba�lat�lmaya �al���lacak.
|
ApplicationsFound2=Kurulum yard�mc�s� taraf�ndan g�ncellenmesi gereken dosyalar, �u uygulamalar taraf�ndan kullan�yor. Kurulum yard�mc�s�n�n bu uygulamalar� otomatik olarak kapatmas�na izin vermeniz �nerilir. Kurulum tamamland�ktan sonra, uygulamalar yeniden ba�lat�lmaya �al���lacak.
|
||||||
CloseApplications=&Uygulamalar kapat�ls�n
|
CloseApplications=&Uygulamalar kapat�ls�n
|
||||||
DontCloseApplications=Uygulamalar &kapat�lmas�n
|
DontCloseApplications=Uygulamalar &kapat�lmas�n
|
||||||
ErrorCloseApplications=Kurulum yard�mc�s� uygulamalar� kapatamad�. Kurulum yard�mc�s� taraf�ndan g�ncellenmesi gereken dosyalar� kullanan uygulamalar� el ile kapatman�z �nerilir.
|
ErrorCloseApplications=Kurulum yard�mc�s� uygulamalar� kapatamad�. Kurulum yard�mc�s� taraf�ndan g�ncellenmesi gereken dosyalar� kullanan uygulamalar� el ile kapatman�z �nerilir.
|
||||||
PrepareToInstallNeedsRestart=Kurulum i�in bilgisayar�n yeniden ba�lat�lmas� gerekiyor. Bilgisayar� yeniden ba�latt�ktan sonra [name] kurulumunu tamamlamak i�in kurulum yard�mc�s�n� yeniden �al��t�r�n.%n%nBilgisayar� �imdi yeniden ba�latmak ister misiniz?
|
PrepareToInstallNeedsRestart=Kurulum i�in bilgisayar�n yeniden ba�lat�lmas� gerekiyor. Bilgisayar� yeniden ba�latt�ktan sonra [name] kurulumunu tamamlamak i�in kurulum yard�mc�s�n� yeniden �al��t�r�n.%n%nBilgisayar� �imdi yeniden ba�latmak ister misiniz?
|
||||||
|
|
||||||
; *** "Kuruluyor" sayfas�
|
; *** "Kuruluyor" sayfas�
|
||||||
WizardInstalling=Kuruluyor
|
WizardInstalling=Kuruluyor
|
||||||
InstallingLabel=L�tfen [name] bilgisayar�n�za kurulurken bekleyin.
|
InstallingLabel=L�tfen [name] bilgisayar�n�za kurulurken bekleyin.
|
||||||
|
|
||||||
; *** "Kurulum Tamamland�" sayfas�
|
; *** "Kurulum Tamamland�" sayfas�
|
||||||
FinishedHeadingLabel=[name] kurulum yard�mc�s� tamamlan�yor
|
FinishedHeadingLabel=[name] kurulum yard�mc�s� tamamlan�yor
|
||||||
FinishedLabelNoIcons=Bilgisayar�n�za [name] kurulumu tamamland�.
|
FinishedLabelNoIcons=Bilgisayar�n�za [name] kurulumu tamamland�.
|
||||||
FinishedLabel=Bilgisayar�n�za [name] kurulumu tamamland�. Simgeleri y�klemeyi se�tiyseniz, simgelere t�klayarak uygulamay� ba�latabilirsiniz.
|
FinishedLabel=Bilgisayar�n�za [name] kurulumu tamamland�. Simgeleri y�klemeyi se�tiyseniz, simgelere t�klayarak uygulamay� ba�latabilirsiniz.
|
||||||
ClickFinish=Kurulum yard�mc�s�ndan ��kmak i�in Bitti �zerine t�klay�n.
|
ClickFinish=Kurulum yard�mc�s�ndan ��kmak i�in Bitti �zerine t�klay�n.
|
||||||
FinishedRestartLabel=[name] kurulumunun tamamlanmas� i�in, bilgisayar�n�z yeniden ba�lat�lmal�. �imdi yeniden ba�latmak ister misiniz?
|
FinishedRestartLabel=[name] kurulumunun tamamlanmas� i�in, bilgisayar�n�z yeniden ba�lat�lmal�. �imdi yeniden ba�latmak ister misiniz?
|
||||||
FinishedRestartMessage=[name] kurulumunun tamamlanmas� i�in, bilgisayar�n�z yeniden ba�lat�lmal�.%n%n�imdi yeniden ba�latmak ister misiniz?
|
FinishedRestartMessage=[name] kurulumunun tamamlanmas� i�in, bilgisayar�n�z yeniden ba�lat�lmal�.%n%n�imdi yeniden ba�latmak ister misiniz?
|
||||||
ShowReadmeCheck=Evet README dosyas� g�r�nt�lensin
|
ShowReadmeCheck=Evet README dosyas� g�r�nt�lensin
|
||||||
YesRadio=&Evet, bilgisayar �imdi yeniden ba�lat�ls�n
|
YesRadio=&Evet, bilgisayar �imdi yeniden ba�lat�ls�n
|
||||||
NoRadio=&Hay�r, bilgisayar� daha sonra yeniden ba�lataca��m
|
NoRadio=&Hay�r, bilgisayar� daha sonra yeniden ba�lataca��m
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=%1 �al��t�r�ls�n
|
RunEntryExec=%1 �al��t�r�ls�n
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=%1 g�r�nt�lensin
|
RunEntryShellExec=%1 g�r�nt�lensin
|
||||||
|
|
||||||
; *** "Kurulum i�in s�radaki disk gerekli" iletileri
|
; *** "Kurulum i�in s�radaki disk gerekli" iletileri
|
||||||
ChangeDiskTitle=Kurulum yard�mc�s� s�radaki diske gerek duyuyor
|
ChangeDiskTitle=Kurulum yard�mc�s� s�radaki diske gerek duyuyor
|
||||||
SelectDiskLabel2=L�tfen %1 numaral� diski tak�p Tamam �zerine t�klay�n.%n%nDiskteki dosyalar a�a��dakinden farkl� bir klas�rde bulunuyorsa, do�ru yolu yaz�n ya da G�z at �zerine t�klayarak do�ru klas�r� se�in.
|
SelectDiskLabel2=L�tfen %1 numaral� diski tak�p Tamam �zerine t�klay�n.%n%nDiskteki dosyalar a�a��dakinden farkl� bir klas�rde bulunuyorsa, do�ru yolu yaz�n ya da G�z at �zerine t�klayarak do�ru klas�r� se�in.
|
||||||
PathLabel=&Yol:
|
PathLabel=&Yol:
|
||||||
FileNotInDir2="%1" dosyas� "%2" i�inde bulunamad�. L�tfen do�ru diski tak�n ya da ba�ka bir klas�r se�in.
|
FileNotInDir2="%1" dosyas� "%2" i�inde bulunamad�. L�tfen do�ru diski tak�n ya da ba�ka bir klas�r se�in.
|
||||||
SelectDirectoryLabel=L�tfen sonraki diskin konumunu belirtin.
|
SelectDirectoryLabel=L�tfen sonraki diskin konumunu belirtin.
|
||||||
|
|
||||||
; *** Kurulum a�amas� iletileri
|
; *** Kurulum a�amas� iletileri
|
||||||
SetupAborted=Kurulum tamamlanamad�.%n%nL�tfen sorunu d�zelterek kurulum yard�mc�s�n� yeniden �al��t�r�n.
|
SetupAborted=Kurulum tamamlanamad�.%n%nL�tfen sorunu d�zelterek kurulum yard�mc�s�n� yeniden �al��t�r�n.
|
||||||
AbortRetryIgnoreSelectAction=Yap�lacak i�lemi se�in
|
AbortRetryIgnoreSelectAction=Yap�lacak i�lemi se�in
|
||||||
AbortRetryIgnoreRetry=&Yeniden denensin
|
AbortRetryIgnoreRetry=&Yeniden denensin
|
||||||
AbortRetryIgnoreIgnore=&Sorun yok say�l�p ilerlensin
|
AbortRetryIgnoreIgnore=&Sorun yok say�l�p ilerlensin
|
||||||
AbortRetryIgnoreCancel=Kurulum iptal edilsin
|
AbortRetryIgnoreCancel=Kurulum iptal edilsin
|
||||||
|
|
||||||
; *** Kurulum durumu iletileri
|
; *** Kurulum durumu iletileri
|
||||||
StatusClosingApplications=Uygulamalar kapat�l�yor...
|
StatusClosingApplications=Uygulamalar kapat�l�yor...
|
||||||
StatusCreateDirs=Klas�rler olu�turuluyor...
|
StatusCreateDirs=Klas�rler olu�turuluyor...
|
||||||
StatusExtractFiles=Dosyalar ay�klan�yor...
|
StatusExtractFiles=Dosyalar ay�klan�yor...
|
||||||
StatusCreateIcons=K�sayollar olu�turuluyor...
|
StatusCreateIcons=K�sayollar olu�turuluyor...
|
||||||
StatusCreateIniEntries=INI kay�tlar� olu�turuluyor...
|
StatusCreateIniEntries=INI kay�tlar� olu�turuluyor...
|
||||||
StatusCreateRegistryEntries=Kay�t Defteri kay�tlar� olu�turuluyor...
|
StatusCreateRegistryEntries=Kay�t Defteri kay�tlar� olu�turuluyor...
|
||||||
StatusRegisterFiles=Dosyalar kaydediliyor...
|
StatusRegisterFiles=Dosyalar kaydediliyor...
|
||||||
StatusSavingUninstall=Kald�rma bilgileri kaydediliyor...
|
StatusSavingUninstall=Kald�rma bilgileri kaydediliyor...
|
||||||
StatusRunProgram=Kurulum tamamlan�yor...
|
StatusRunProgram=Kurulum tamamlan�yor...
|
||||||
StatusRestartingApplications=Uygulamalar yeniden ba�lat�l�yor...
|
StatusRestartingApplications=Uygulamalar yeniden ba�lat�l�yor...
|
||||||
StatusRollback=De�i�iklikler geri al�n�yor...
|
StatusRollback=De�i�iklikler geri al�n�yor...
|
||||||
|
|
||||||
; *** �e�itli hata iletileri
|
; *** �e�itli hata iletileri
|
||||||
ErrorInternal2=�� hata: %1
|
ErrorInternal2=�� hata: %1
|
||||||
ErrorFunctionFailedNoCode=%1 tamamlanamad�.
|
ErrorFunctionFailedNoCode=%1 tamamlanamad�.
|
||||||
ErrorFunctionFailed=%1 tamamlanamad�; kod %2
|
ErrorFunctionFailed=%1 tamamlanamad�; kod %2
|
||||||
ErrorFunctionFailedWithMessage=%1 tamamlanamad�; kod %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 tamamlanamad�; kod %2.%n%3
|
||||||
ErrorExecutingProgram=�u dosya y�r�t�lemedi:%n%1
|
ErrorExecutingProgram=�u dosya y�r�t�lemedi:%n%1
|
||||||
|
|
||||||
; *** Kay�t defteri hatalar�
|
; *** Kay�t defteri hatalar�
|
||||||
ErrorRegOpenKey=Kay�t defteri anahtar� a��l�rken bir sorun ��kt�:%n%1%2
|
ErrorRegOpenKey=Kay�t defteri anahtar� a��l�rken bir sorun ��kt�:%n%1%2
|
||||||
ErrorRegCreateKey=Kay�t defteri anahtar� eklenirken bir sorun ��kt�:%n%1%2
|
ErrorRegCreateKey=Kay�t defteri anahtar� eklenirken bir sorun ��kt�:%n%1%2
|
||||||
ErrorRegWriteKey=Kay�t defteri anahtar� yaz�l�rken bir sorun ��kt�:%n%1%2
|
ErrorRegWriteKey=Kay�t defteri anahtar� yaz�l�rken bir sorun ��kt�:%n%1%2
|
||||||
|
|
||||||
; *** INI hatalar�
|
; *** INI hatalar�
|
||||||
ErrorIniEntry="%1" dosyas�na INI kayd� eklenirken bir sorun ��kt�.
|
ErrorIniEntry="%1" dosyas�na INI kayd� eklenirken bir sorun ��kt�.
|
||||||
|
|
||||||
; *** Dosya kopyalama hatalar�
|
; *** Dosya kopyalama hatalar�
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Bu dosya atlans�n (�nerilmez)
|
FileAbortRetryIgnoreSkipNotRecommended=&Bu dosya atlans�n (�nerilmez)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Sorun yok say�l�p ilerlensin (�nerilmez)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Sorun yok say�l�p ilerlensin (�nerilmez)
|
||||||
SourceIsCorrupted=Kaynak dosya bozulmu�
|
SourceIsCorrupted=Kaynak dosya bozulmu�
|
||||||
SourceDoesntExist="%1" kaynak dosyas� bulunamad�
|
SourceDoesntExist="%1" kaynak dosyas� bulunamad�
|
||||||
ExistingFileReadOnly2=Var olan dosya salt okunabilir olarak i�aretlenmi� oldu�undan �zerine yaz�lamad�.
|
ExistingFileReadOnly2=Var olan dosya salt okunabilir olarak i�aretlenmi� oldu�undan �zerine yaz�lamad�.
|
||||||
ExistingFileReadOnlyRetry=&Salt okunur i�areti kald�r�l�p yeniden denensin
|
ExistingFileReadOnlyRetry=&Salt okunur i�areti kald�r�l�p yeniden denensin
|
||||||
ExistingFileReadOnlyKeepExisting=&Var olan dosya korunsun
|
ExistingFileReadOnlyKeepExisting=&Var olan dosya korunsun
|
||||||
ErrorReadingExistingDest=Var olan dosya okunmaya �al���l�rken bir sorun ��kt�.
|
ErrorReadingExistingDest=Var olan dosya okunmaya �al���l�rken bir sorun ��kt�.
|
||||||
FileExistsSelectAction=Yap�lacak i�lemi se�in
|
FileExistsSelectAction=Yap�lacak i�lemi se�in
|
||||||
FileExists2=Dosya zaten var.
|
FileExists2=Dosya zaten var.
|
||||||
FileExistsOverwriteExisting=&Var olan dosyan�n �zerine yaz�ls�n
|
FileExistsOverwriteExisting=&Var olan dosyan�n �zerine yaz�ls�n
|
||||||
FileExistsKeepExisting=Var &olan dosya korunsun
|
FileExistsKeepExisting=Var &olan dosya korunsun
|
||||||
FileExistsOverwriteOrKeepAll=&Sonraki �ak��malarda da bu i�lem yap�ls�n
|
FileExistsOverwriteOrKeepAll=&Sonraki �ak��malarda da bu i�lem yap�ls�n
|
||||||
ExistingFileNewerSelectAction=Yap�lacak i�lemi se�in
|
ExistingFileNewerSelectAction=Yap�lacak i�lemi se�in
|
||||||
ExistingFileNewer2=Var olan dosya, kurulum yard�mc�s� taraf�ndan yaz�lmaya �al���landan daha yeni.
|
ExistingFileNewer2=Var olan dosya, kurulum yard�mc�s� taraf�ndan yaz�lmaya �al���landan daha yeni.
|
||||||
ExistingFileNewerOverwriteExisting=&Var olan dosyan�n �zerine yaz�ls�n
|
ExistingFileNewerOverwriteExisting=&Var olan dosyan�n �zerine yaz�ls�n
|
||||||
ExistingFileNewerKeepExisting=Var &olan dosya korunsun (�nerilir)
|
ExistingFileNewerKeepExisting=Var &olan dosya korunsun (�nerilir)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Sonraki �ak��malarda bu i�lem yap�ls�n
|
ExistingFileNewerOverwriteOrKeepAll=&Sonraki �ak��malarda bu i�lem yap�ls�n
|
||||||
ErrorChangingAttr=Var olan dosyan�n �znitelikleri de�i�tirilirken bir sorun ��kt�:
|
ErrorChangingAttr=Var olan dosyan�n �znitelikleri de�i�tirilirken bir sorun ��kt�:
|
||||||
ErrorCreatingTemp=Kurulum klas�r�nde bir dosya olu�turulurken sorun ��kt�:
|
ErrorCreatingTemp=Kurulum klas�r�nde bir dosya olu�turulurken sorun ��kt�:
|
||||||
ErrorReadingSource=Kaynak dosya okunurken sorun ��kt�:
|
ErrorReadingSource=Kaynak dosya okunurken sorun ��kt�:
|
||||||
ErrorCopying=Dosya kopyalan�rken sorun ��kt�:
|
ErrorCopying=Dosya kopyalan�rken sorun ��kt�:
|
||||||
ErrorReplacingExistingFile=Var olan dosya de�i�tirilirken sorun ��kt�:
|
ErrorReplacingExistingFile=Var olan dosya de�i�tirilirken sorun ��kt�:
|
||||||
ErrorRestartReplace=Yeniden ba�latmada �zerine yaz�lamad�:
|
ErrorRestartReplace=Yeniden ba�latmada �zerine yaz�lamad�:
|
||||||
ErrorRenamingTemp=Kurulum klas�r�ndeki bir dosyan�n ad� de�i�tirilirken sorun ��kt�:
|
ErrorRenamingTemp=Kurulum klas�r�ndeki bir dosyan�n ad� de�i�tirilirken sorun ��kt�:
|
||||||
ErrorRegisterServer=DLL/OCX kay�t edilemedi: %1
|
ErrorRegisterServer=DLL/OCX kay�t edilemedi: %1
|
||||||
ErrorRegSvr32Failed=RegSvr32 i�lemi �u kod ile tamamlanamad�: %1
|
ErrorRegSvr32Failed=RegSvr32 i�lemi �u kod ile tamamlanamad�: %1
|
||||||
ErrorRegisterTypeLib=T�r kitapl��� kay�t defterine eklenemedi: %1
|
ErrorRegisterTypeLib=T�r kitapl��� kay�t defterine eklenemedi: %1
|
||||||
|
|
||||||
; *** Kald�rma s�ras�nda g�r�nt�lenecek ad i�aretleri
|
; *** Kald�rma s�ras�nda g�r�nt�lenecek ad i�aretleri
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32 bit
|
UninstallDisplayNameMark32Bit=32 bit
|
||||||
UninstallDisplayNameMark64Bit=64 bit
|
UninstallDisplayNameMark64Bit=64 bit
|
||||||
UninstallDisplayNameMarkAllUsers=T�m kullan�c�lar
|
UninstallDisplayNameMarkAllUsers=T�m kullan�c�lar
|
||||||
UninstallDisplayNameMarkCurrentUser=Ge�erli kullan�c�
|
UninstallDisplayNameMarkCurrentUser=Ge�erli kullan�c�
|
||||||
|
|
||||||
; *** Kurulum sonras� hatalar�
|
; *** Kurulum sonras� hatalar�
|
||||||
ErrorOpeningReadme=README dosyas� a��l�rken sorun ��kt�.
|
ErrorOpeningReadme=README dosyas� a��l�rken sorun ��kt�.
|
||||||
ErrorRestartingComputer=Kurulum yard�mc�s� bilgisayar�n�z� yeniden ba�latam�yor. L�tfen bilgisayar�n�z� yeniden ba�lat�n.
|
ErrorRestartingComputer=Kurulum yard�mc�s� bilgisayar�n�z� yeniden ba�latam�yor. L�tfen bilgisayar�n�z� yeniden ba�lat�n.
|
||||||
|
|
||||||
; *** Kald�rma yard�mc�s� iletileri
|
; *** Kald�rma yard�mc�s� iletileri
|
||||||
UninstallNotFound="%1" dosyas� bulunamad�. Uygulama kald�r�lam�yor.
|
UninstallNotFound="%1" dosyas� bulunamad�. Uygulama kald�r�lam�yor.
|
||||||
UninstallOpenError="%1" dosyas� a��lamad�. Uygulama kald�r�lam�yor.
|
UninstallOpenError="%1" dosyas� a��lamad�. Uygulama kald�r�lam�yor.
|
||||||
UninstallUnsupportedVer="%1" uygulama kald�rma g�nl�k dosyas�n�n bi�imi, bu kald�rma yard�mc�s� s�r�m� taraf�ndan anla��lamad�. Uygulama kald�r�lam�yor.
|
UninstallUnsupportedVer="%1" uygulama kald�rma g�nl�k dosyas�n�n bi�imi, bu kald�rma yard�mc�s� s�r�m� taraf�ndan anla��lamad�. Uygulama kald�r�lam�yor.
|
||||||
UninstallUnknownEntry=Kald�rma g�nl���nde bilinmeyen bir kay�t (%1) bulundu.
|
UninstallUnknownEntry=Kald�rma g�nl���nde bilinmeyen bir kay�t (%1) bulundu.
|
||||||
ConfirmUninstall=%1 kaldirma sihirbazini �alistirmak istediginizden emin misiniz?
|
ConfirmUninstall=%1 kaldirma sihirbazini �alistirmak istediginizden emin misiniz?
|
||||||
UninstallOnlyOnWin64=Bu kurulum yaln�zca 64 bit Windows �zerinden kald�r�labilir.
|
UninstallOnlyOnWin64=Bu kurulum yaln�zca 64 bit Windows �zerinden kald�r�labilir.
|
||||||
OnlyAdminCanUninstall=Bu kurulum yaln�zca y�netici yetkileri olan bir kullan�c� taraf�ndan kald�r�labilir.
|
OnlyAdminCanUninstall=Bu kurulum yaln�zca y�netici yetkileri olan bir kullan�c� taraf�ndan kald�r�labilir.
|
||||||
UninstallStatusLabel=L�tfen %1 uygulamas� bilgisayar�n�zdan kald�r�l�rken bekleyin.
|
UninstallStatusLabel=L�tfen %1 uygulamas� bilgisayar�n�zdan kald�r�l�rken bekleyin.
|
||||||
UninstalledAll=%1 uygulamas� bilgisayar�n�zdan kald�r�ld�.
|
UninstalledAll=%1 uygulamas� bilgisayar�n�zdan kald�r�ld�.
|
||||||
UninstalledMost=%1 uygulamas� kald�r�ld�.%n%nBaz� bile�enler kald�r�lamad�. Bunlar� el ile silebilirsiniz.
|
UninstalledMost=%1 uygulamas� kald�r�ld�.%n%nBaz� bile�enler kald�r�lamad�. Bunlar� el ile silebilirsiniz.
|
||||||
UninstalledAndNeedsRestart=%1 kald�rma i�leminin tamamlanmas� i�in bilgisayar�n�z�n yeniden ba�lat�lmas� gerekli.%n%n�imdi yeniden ba�latmak ister misiniz?
|
UninstalledAndNeedsRestart=%1 kald�rma i�leminin tamamlanmas� i�in bilgisayar�n�z�n yeniden ba�lat�lmas� gerekli.%n%n�imdi yeniden ba�latmak ister misiniz?
|
||||||
UninstallDataCorrupted="%1" dosyas� bozulmu�. Kald�r�lam�yor.
|
UninstallDataCorrupted="%1" dosyas� bozulmu�. Kald�r�lam�yor.
|
||||||
|
|
||||||
; *** Kald�rma a�amas� iletileri
|
; *** Kald�rma a�amas� iletileri
|
||||||
ConfirmDeleteSharedFileTitle=Payla��lan dosya silinsin mi?
|
ConfirmDeleteSharedFileTitle=Payla��lan dosya silinsin mi?
|
||||||
ConfirmDeleteSharedFile2=Sisteme g�re, payla��lan �u dosya ba�ka bir uygulama taraf�ndan kullan�lm�yor ve kald�r�labilir. Bu payla��lm�� dosyay� silmek ister misiniz?%n%nBu dosya, ba�ka herhangi bir uygulama taraf�ndan kullan�l�yor ise, silindi�inde di�er uygulama d�zg�n �al��mayabilir. Emin de�ilseniz Hay�r �zerine t�klay�n. Dosyay� sisteminizde b�rakman�n bir zarar� olmaz.
|
ConfirmDeleteSharedFile2=Sisteme g�re, payla��lan �u dosya ba�ka bir uygulama taraf�ndan kullan�lm�yor ve kald�r�labilir. Bu payla��lm�� dosyay� silmek ister misiniz?%n%nBu dosya, ba�ka herhangi bir uygulama taraf�ndan kullan�l�yor ise, silindi�inde di�er uygulama d�zg�n �al��mayabilir. Emin de�ilseniz Hay�r �zerine t�klay�n. Dosyay� sisteminizde b�rakman�n bir zarar� olmaz.
|
||||||
SharedFileNameLabel=Dosya ad�:
|
SharedFileNameLabel=Dosya ad�:
|
||||||
SharedFileLocationLabel=Konum:
|
SharedFileLocationLabel=Konum:
|
||||||
WizardUninstalling=Kald�rma durumu
|
WizardUninstalling=Kald�rma durumu
|
||||||
StatusUninstalling=%1 kald�r�l�yor...
|
StatusUninstalling=%1 kald�r�l�yor...
|
||||||
|
|
||||||
; *** Kapatmay� engelleme nedenleri
|
; *** Kapatmay� engelleme nedenleri
|
||||||
ShutdownBlockReasonInstallingApp=%1 kuruluyor.
|
ShutdownBlockReasonInstallingApp=%1 kuruluyor.
|
||||||
ShutdownBlockReasonUninstallingApp=%1 kald�r�l�yor.
|
ShutdownBlockReasonUninstallingApp=%1 kald�r�l�yor.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 %2 s�r�m�
|
NameAndVersion=%1 %2 s�r�m�
|
||||||
AdditionalIcons=Ek simgeler:
|
AdditionalIcons=Ek simgeler:
|
||||||
CreateDesktopIcon=Masa�st� simg&esi olu�turulsun
|
CreateDesktopIcon=Masa�st� simg&esi olu�turulsun
|
||||||
CreateQuickLaunchIcon=H�zl� ba�lat simgesi &olu�turulsun
|
CreateQuickLaunchIcon=H�zl� ba�lat simgesi &olu�turulsun
|
||||||
ProgramOnTheWeb=%1 sitesi
|
ProgramOnTheWeb=%1 sitesi
|
||||||
UninstallProgram=%1 uygulamas�n� kald�r
|
UninstallProgram=%1 uygulamas�n� kald�r
|
||||||
LaunchProgram=%1 uygulamas�n� �al��t�r
|
LaunchProgram=%1 uygulamas�n� �al��t�r
|
||||||
AssocFileExtension=%1 &uygulamas� ile %2 dosya uzant�s� ili�kilendirilsin
|
AssocFileExtension=%1 &uygulamas� ile %2 dosya uzant�s� ili�kilendirilsin
|
||||||
AssocingFileExtension=%1 uygulamas� ile %2 dosya uzant�s� ili�kilendiriliyor...
|
AssocingFileExtension=%1 uygulamas� ile %2 dosya uzant�s� ili�kilendiriliyor...
|
||||||
AutoStartProgramGroupDescription=Ba�lang��:
|
AutoStartProgramGroupDescription=Ba�lang��:
|
||||||
AutoStartProgram=%1 otomatik olarak ba�lat�ls�n
|
AutoStartProgram=%1 otomatik olarak ba�lat�ls�n
|
||||||
AddonHostProgramNotFound=%1 se�ti�iniz klas�rde bulunamad�.%n%nYine de ilerlemek istiyor musunuz?
|
AddonHostProgramNotFound=%1 se�ti�iniz klas�rde bulunamad�.%n%nYine de ilerlemek istiyor musunuz?
|
||||||
|
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Kurulum Modunu Se�in
|
SelectSetupInstallModeTitle=Kurulum Modunu Se�in
|
||||||
SelectSetupInstallModeDesc=VCMI t�m kullanicilar i�in veya sadece sizin i�in kurulabilir.
|
SelectSetupInstallModeDesc=VCMI t�m kullanicilar i�in veya sadece sizin i�in kurulabilir.
|
||||||
SelectSetupInstallModeSubTitle=Tercih ettiginiz kurulum modunu se�in:
|
SelectSetupInstallModeSubTitle=Tercih ettiginiz kurulum modunu se�in:
|
||||||
InstallForAllUsers=T�m kullanicilar i�in kur
|
InstallForAllUsers=T�m kullanicilar i�in kur
|
||||||
InstallForAllUsers1=Y�netici ayricaliklari gerektirir
|
InstallForAllUsers1=Y�netici ayricaliklari gerektirir
|
||||||
InstallForMeOnly=Sadece benim i�in kur
|
InstallForMeOnly=Sadece benim i�in kur
|
||||||
InstallForMeOnly1=Oyun ilk kez baslatildiginda bir g�venlik duvari uyarisi g�r�necektir.
|
InstallForMeOnly1=Oyun ilk kez baslatildiginda bir g�venlik duvari uyarisi g�r�necektir.
|
||||||
InstallForMeOnly2=Uyari: G�venlik duvari kurali izin verilmezse LAN oyunlari �alismayacaktir.
|
InstallForMeOnly2=Uyari: G�venlik duvari kurali izin verilmezse LAN oyunlari �alismayacaktir.
|
||||||
CreateDesktopShortcuts=Masa�st� kisayollari olustur
|
CreateDesktopShortcuts=Masa�st� kisayollari olustur
|
||||||
ShortcutsOptions=Kisayol se�enekleri
|
ShortcutsOptions=Kisayol se�enekleri
|
||||||
CreateStartMenuShortcuts=Baslat Men�s� kisayollari olustur
|
CreateStartMenuShortcuts=Baslat Men�s� kisayollari olustur
|
||||||
FirewallOptions=G�venlik duvari ayarlari
|
FirewallOptions=G�venlik duvari ayarlari
|
||||||
AddFirewallRules=VCMI i�in g�venlik duvari kurallari ekle
|
AddFirewallRules=VCMI i�in g�venlik duvari kurallari ekle
|
||||||
FileAssociations=Dosya iliskilendirmeleri
|
FileAssociations=Dosya iliskilendirmeleri
|
||||||
AssociateH3MFiles=.h3m dosyalarini VCMI Harita Edit�r� ile iliskilendir
|
AssociateH3MFiles=.h3m dosyalarini VCMI Harita Edit�r� ile iliskilendir
|
||||||
AssociateVMapFiles=.vmap dosyalarini VCMI Harita Edit�r� ile iliskilendir
|
AssociateVMapFiles=.vmap dosyalarini VCMI Harita Edit�r� ile iliskilendir
|
||||||
RunVCMILauncherAfterInstall=VCMI Baslaticisini �alistir
|
RunVCMILauncherAfterInstall=VCMI Baslaticisini �alistir
|
||||||
ShortcutMapEditor=VCMI Harita Edit�r�
|
ShortcutMapEditor=VCMI Harita Edit�r�
|
||||||
ShortcutLauncher=VCMI Baslaticisi
|
ShortcutLauncher=VCMI Baslaticisi
|
||||||
ShortcutWebPage=VCMI Web Sitesi
|
ShortcutWebPage=VCMI Web Sitesi
|
||||||
ShortcutDiscord=VCMI Discord
|
ShortcutDiscord=VCMI Discord
|
||||||
ShortcutLauncherComment=VCMI Baslaticisini �alistir
|
ShortcutLauncherComment=VCMI Baslaticisini �alistir
|
||||||
ShortcutMapEditorComment=VCMI Harita Edit�r�n� a�
|
ShortcutMapEditorComment=VCMI Harita Edit�r�n� a�
|
||||||
ShortcutWebPageComment=Resmi VCMI web sitesini ziyaret edin
|
ShortcutWebPageComment=Resmi VCMI web sitesini ziyaret edin
|
||||||
ShortcutDiscordComment=Resmi VCMI Discord kanalini ziyaret edin
|
ShortcutDiscordComment=Resmi VCMI Discord kanalini ziyaret edin
|
||||||
DeleteUserData=Kullanici verilerini sil
|
DeleteUserData=Kullanici verilerini sil
|
||||||
Uninstall=Kaldir
|
Uninstall=Kaldir
|
||||||
VMAPDescription=VCMI Harita Dosyasi
|
VMAPDescription=VCMI Harita Dosyasi
|
||||||
H3MDescription=Heroes 3 Harita Dosyasi
|
H3MDescription=Heroes 3 Harita Dosyasi
|
@@ -1,415 +1,415 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Ukrainian messages ***
|
; *** Inno Setup version 6.1.0+ Ukrainian messages ***
|
||||||
; Author: Dmytro Onyshchuk
|
; Author: Dmytro Onyshchuk
|
||||||
; E-Mail: mrlols3@gmail.com
|
; E-Mail: mrlols3@gmail.com
|
||||||
; Please report all spelling/grammar errors, and observations.
|
; Please report all spelling/grammar errors, and observations.
|
||||||
; Version 2020.08.04
|
; Version 2020.08.04
|
||||||
|
|
||||||
; *** ����������� �������� Inno Setup ��� ������ 6.1.0 �� ����***
|
; *** ����������� �������� Inno Setup ��� ������ 6.1.0 �� ����***
|
||||||
; ����� ���������: ������ ������
|
; ����� ���������: ������ ������
|
||||||
; E-Mail: mrlols3@gmail.com
|
; E-Mail: mrlols3@gmail.com
|
||||||
; ���� �����, ������������ ��� ��� �������� ������� �� ����������.
|
; ���� �����, ������������ ��� ��� �������� ������� �� ����������.
|
||||||
; ������ ��������� 2020.08.04
|
; ������ ��������� 2020.08.04
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=<0423><043A><0440><0430><0457><043D><0441><044C><043A><0430>
|
LanguageName=<0423><043A><0440><0430><0457><043D><0441><044C><043A><0430>
|
||||||
LanguageID=$0422
|
LanguageID=$0422
|
||||||
LanguageCodePage=1251
|
LanguageCodePage=1251
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** ��������� ��������
|
; *** ��������� ��������
|
||||||
SetupAppTitle=������������
|
SetupAppTitle=������������
|
||||||
SetupWindowTitle=������������ � %1
|
SetupWindowTitle=������������ � %1
|
||||||
UninstallAppTitle=���������
|
UninstallAppTitle=���������
|
||||||
UninstallAppFullTitle=��������� � %1
|
UninstallAppFullTitle=��������� � %1
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=����������
|
InformationTitle=����������
|
||||||
ConfirmTitle=ϳ�����������
|
ConfirmTitle=ϳ�����������
|
||||||
ErrorTitle=�������
|
ErrorTitle=�������
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=�� �������� ���������� %1 �� ��� ����'����, ������� ����������?
|
SetupLdrStartupMessage=�� �������� ���������� %1 �� ��� ����'����, ������� ����������?
|
||||||
LdrCannotCreateTemp=��������� �������� ���������� ����. ������������ ���������
|
LdrCannotCreateTemp=��������� �������� ���������� ����. ������������ ���������
|
||||||
LdrCannotExecTemp=��������� �������� ���� � ���������� �����. ������������ ���������
|
LdrCannotExecTemp=��������� �������� ���� � ���������� �����. ������������ ���������
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%n������� %2: %3
|
LastErrorMessage=%1.%n%n������� %2: %3
|
||||||
SetupFileMissing=���� %1 ��������� � ����� ������������. ���� �����, �������� �� ������� ��� ��������� ���� ����� ��������.
|
SetupFileMissing=���� %1 ��������� � ����� ������������. ���� �����, �������� �� ������� ��� ��������� ���� ����� ��������.
|
||||||
SetupFileCorrupt=����� ������������ ����������. ���� �����, ��������� ���� ����� ��������.
|
SetupFileCorrupt=����� ������������ ����������. ���� �����, ��������� ���� ����� ��������.
|
||||||
SetupFileCorruptOrWrongVer=����� ������������ ���������� ��� ��������� � ���� ������� �������� ������������. ���� �����, �������� �� ������� ��� ��������� ���� ����� ��������.
|
SetupFileCorruptOrWrongVer=����� ������������ ���������� ��� ��������� � ���� ������� �������� ������������. ���� �����, �������� �� ������� ��� ��������� ���� ����� ��������.
|
||||||
InvalidParameter=��������� ����� ������� ������������ ��������:%n%n%1
|
InvalidParameter=��������� ����� ������� ������������ ��������:%n%n%1
|
||||||
SetupAlreadyRunning=�������� ������������ ��� ��������.
|
SetupAlreadyRunning=�������� ������������ ��� ��������.
|
||||||
WindowsVersionNotSupported=�� �������� �� ��������� ������ Windows, ����������� �� ����� ����'�����.
|
WindowsVersionNotSupported=�� �������� �� ��������� ������ Windows, ����������� �� ����� ����'�����.
|
||||||
WindowsServicePackRequired=�� �������� ������� %1 Service Pack %2 ��� ����� ����� ������.
|
WindowsServicePackRequired=�� �������� ������� %1 Service Pack %2 ��� ����� ����� ������.
|
||||||
NotOnThisPlatform=�� �������� �� ���� ��������� ��� %1.
|
NotOnThisPlatform=�� �������� �� ���� ��������� ��� %1.
|
||||||
OnlyOnThisPlatform=�� �������� ������� ���� �������� ��� %1.
|
OnlyOnThisPlatform=�� �������� ������� ���� �������� ��� %1.
|
||||||
OnlyOnTheseArchitectures=�� �������� ���� ���� ����������� ���� �� ����'������ ��� ����������� Windows ��� ��������� ���������� ����������:%n%n%1
|
OnlyOnTheseArchitectures=�� �������� ���� ���� ����������� ���� �� ����'������ ��� ����������� Windows ��� ��������� ���������� ����������:%n%n%1
|
||||||
WinVersionTooLowError=�� �������� ������� %1 ������ %2 ��� ����� ����� ������.
|
WinVersionTooLowError=�� �������� ������� %1 ������ %2 ��� ����� ����� ������.
|
||||||
WinVersionTooHighError=�� �������� �� ���� ���� ����������� �� %1 ������ %2 ��� ����� ����� ������.
|
WinVersionTooHighError=�� �������� �� ���� ���� ����������� �� %1 ������ %2 ��� ����� ����� ������.
|
||||||
AdminPrivilegesRequired=��� ���������� �� �������� �� ������� ������ �� ������� �� �������������.
|
AdminPrivilegesRequired=��� ���������� �� �������� �� ������� ������ �� ������� �� �������������.
|
||||||
PowerUserPrivilegesRequired=��� ���������� �� �������� �� ������� ������ �� ������� �� ������������� ��� �� ���� ����� ����������� ������������.
|
PowerUserPrivilegesRequired=��� ���������� �� �������� �� ������� ������ �� ������� �� ������������� ��� �� ���� ����� ����������� ������������.
|
||||||
SetupAppRunningError=��������, �� %1 ��� ��������.%n%n���� �����, �������� ��� ��ﳿ �������� �� ��������� �OK� ��� �����������, ��� ����������� ��� ������.
|
SetupAppRunningError=��������, �� %1 ��� ��������.%n%n���� �����, �������� ��� ��ﳿ �������� �� ��������� �OK� ��� �����������, ��� ����������� ��� ������.
|
||||||
UninstallAppRunningError=��������, �� %1 ��� ��������.%n%n���� �����, �������� ��� ��ﳿ �������� �� ��������� �OK� ��� �����������, ��� ����������� ��� ������.
|
UninstallAppRunningError=��������, �� %1 ��� ��������.%n%n���� �����, �������� ��� ��ﳿ �������� �� ��������� �OK� ��� �����������, ��� ����������� ��� ������.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=����� ������ ������������
|
PrivilegesRequiredOverrideTitle=����� ������ ������������
|
||||||
PrivilegesRequiredOverrideInstruction=�������� ����� ������������
|
PrivilegesRequiredOverrideInstruction=�������� ����� ������������
|
||||||
PrivilegesRequiredOverrideText1=%1 ���� ���� ����������� ��� ���� ������������ (�������� ����� ��������������), ��� ������ ��� ���.
|
PrivilegesRequiredOverrideText1=%1 ���� ���� ����������� ��� ���� ������������ (�������� ����� ��������������), ��� ������ ��� ���.
|
||||||
PrivilegesRequiredOverrideText2=%1 ���� ���� ����������� ������ ��� ���, ��� ��� ���� ������������ (�������� ����� ��������������).
|
PrivilegesRequiredOverrideText2=%1 ���� ���� ����������� ������ ��� ���, ��� ��� ���� ������������ (�������� ����� ��������������).
|
||||||
PrivilegesRequiredOverrideAllUsers=���������� ��� &���� ������������
|
PrivilegesRequiredOverrideAllUsers=���������� ��� &���� ������������
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=���������� ��� &���� ������������ (��������������)
|
PrivilegesRequiredOverrideAllUsersRecommended=���������� ��� &���� ������������ (��������������)
|
||||||
PrivilegesRequiredOverrideCurrentUser=���������� ������ ��� ����
|
PrivilegesRequiredOverrideCurrentUser=���������� ������ ��� ����
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=���������� ������ ��� &���� (��������������)
|
PrivilegesRequiredOverrideCurrentUserRecommended=���������� ������ ��� &���� (��������������)
|
||||||
|
|
||||||
; *** �� �������
|
; *** �� �������
|
||||||
ErrorCreatingDir=�������� ������������ �� ������� �������� ����� "%1"
|
ErrorCreatingDir=�������� ������������ �� ������� �������� ����� "%1"
|
||||||
ErrorTooManyFilesInDir=�������� ������������ �� ������� �������� ���� � ����� "%1", ���� �� � ����� ������� ������ ������
|
ErrorTooManyFilesInDir=�������� ������������ �� ������� �������� ���� � ����� "%1", ���� �� � ����� ������� ������ ������
|
||||||
|
|
||||||
; *** ������� ������������ ��������
|
; *** ������� ������������ ��������
|
||||||
ExitSetupTitle=����� � �������� ������������
|
ExitSetupTitle=����� � �������� ������������
|
||||||
ExitSetupMessage=������������ �� ���������. ���� �� ������� �����, �������� �� ���� �����������.%n%n�� ������ �������� �������� ������������ � ����� �����.%n%n����� � �������� ������������?
|
ExitSetupMessage=������������ �� ���������. ���� �� ������� �����, �������� �� ���� �����������.%n%n�� ������ �������� �������� ������������ � ����� �����.%n%n����� � �������� ������������?
|
||||||
AboutSetupMenuItem=&��� �������� ������������...
|
AboutSetupMenuItem=&��� �������� ������������...
|
||||||
AboutSetupTitle=��� �������� ������������
|
AboutSetupTitle=��� �������� ������������
|
||||||
AboutSetupMessage=%1 ������ %2%n%3%n%n%1 ������� ��������:%n%4
|
AboutSetupMessage=%1 ������ %2%n%3%n%n%1 ������� ��������:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Ukrainian translation by Dmytro Onyshchuk
|
TranslatorNote=Ukrainian translation by Dmytro Onyshchuk
|
||||||
|
|
||||||
; *** ������
|
; *** ������
|
||||||
ButtonBack=< &�����
|
ButtonBack=< &�����
|
||||||
ButtonNext=&���� >
|
ButtonNext=&���� >
|
||||||
ButtonInstall=&����������
|
ButtonInstall=&����������
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=���������
|
ButtonCancel=���������
|
||||||
ButtonYes=&���
|
ButtonYes=&���
|
||||||
ButtonYesToAll=��� ��� &����
|
ButtonYesToAll=��� ��� &����
|
||||||
ButtonNo=&ͳ
|
ButtonNo=&ͳ
|
||||||
ButtonNoToAll=�&� ��� ����
|
ButtonNoToAll=�&� ��� ����
|
||||||
ButtonFinish=&������
|
ButtonFinish=&������
|
||||||
ButtonBrowse=&�����...
|
ButtonBrowse=&�����...
|
||||||
ButtonWizardBrowse=�&����...
|
ButtonWizardBrowse=�&����...
|
||||||
ButtonNewFolder=&�������� �����
|
ButtonNewFolder=&�������� �����
|
||||||
|
|
||||||
; *** ij������� ������������ "����� ����"
|
; *** ij������� ������������ "����� ����"
|
||||||
SelectLanguageTitle=�������� ���� ������������
|
SelectLanguageTitle=�������� ���� ������������
|
||||||
SelectLanguageLabel=�������� ����, ��� ���� ����������������� ��� ��� ������������.
|
SelectLanguageLabel=�������� ����, ��� ���� ����������������� ��� ��� ������������.
|
||||||
|
|
||||||
; *** �������� ���� ��������
|
; *** �������� ���� ��������
|
||||||
ClickNext=��������� ���볻, ��� ����������, ��� ����������� ��� ������ � �������� ������������.
|
ClickNext=��������� ���볻, ��� ����������, ��� ����������� ��� ������ � �������� ������������.
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=����� �����
|
BrowseDialogTitle=����� �����
|
||||||
BrowseDialogLabel=�������� ����� �� ������ �� ��������� ��ʻ.
|
BrowseDialogLabel=�������� ����� �� ������ �� ��������� ��ʻ.
|
||||||
NewFolderName=���� �����
|
NewFolderName=���� �����
|
||||||
|
|
||||||
; *** �������� "����������"
|
; *** �������� "����������"
|
||||||
WelcomeLabel1=������� ������� �� �������� ������������ [name].
|
WelcomeLabel1=������� ������� �� �������� ������������ [name].
|
||||||
WelcomeLabel2=�� �������� ���������� [name/ver] �� ��� ���������.%n%n�������������� ������� ��� ���� �������� ����� ������������.
|
WelcomeLabel2=�� �������� ���������� [name/ver] �� ��� ���������.%n%n�������������� ������� ��� ���� �������� ����� ������������.
|
||||||
|
|
||||||
; *** �������� "������"
|
; *** �������� "������"
|
||||||
WizardPassword=������
|
WizardPassword=������
|
||||||
PasswordLabel1=�� �������� ������������ �������� �������.
|
PasswordLabel1=�� �������� ������������ �������� �������.
|
||||||
PasswordLabel3=���� �����, ������� ������ �� ��������� ���볻, ��� ����������. ������ �������� �� ��������.
|
PasswordLabel3=���� �����, ������� ������ �� ��������� ���볻, ��� ����������. ������ �������� �� ��������.
|
||||||
PasswordEditLabel=&������:
|
PasswordEditLabel=&������:
|
||||||
IncorrectPassword=�� ����� ������������ ������. ���� �����, ��������� �� ���.
|
IncorrectPassword=�� ����� ������������ ������. ���� �����, ��������� �� ���.
|
||||||
|
|
||||||
; *** �������� "˳�������� �����"
|
; *** �������� "˳�������� �����"
|
||||||
WizardLicense=˳�������� �����
|
WizardLicense=˳�������� �����
|
||||||
LicenseLabel=���� �����, ���������� ���������� �����.
|
LicenseLabel=���� �����, ���������� ���������� �����.
|
||||||
LicenseLabel3=���� �����, ���������� ���������� �����. �� ������� �������� ����� ���� �����, ���� ��� ���������� ������������.
|
LicenseLabel3=���� �����, ���������� ���������� �����. �� ������� �������� ����� ���� �����, ���� ��� ���������� ������������.
|
||||||
LicenseAccepted=� &������� ����� �����
|
LicenseAccepted=� &������� ����� �����
|
||||||
LicenseNotAccepted=� &�� ������� ����� �����
|
LicenseNotAccepted=� &�� ������� ����� �����
|
||||||
|
|
||||||
; *** �������� "����������"
|
; *** �������� "����������"
|
||||||
WizardInfoBefore=����������
|
WizardInfoBefore=����������
|
||||||
InfoBeforeLabel=���� �����, ���������� �������� ������� ����������, ���� ��� ����������.
|
InfoBeforeLabel=���� �����, ���������� �������� ������� ����������, ���� ��� ����������.
|
||||||
InfoBeforeClickLabel=���� �� ������ ���������� ������������, ��������� ���볻.
|
InfoBeforeClickLabel=���� �� ������ ���������� ������������, ��������� ���볻.
|
||||||
WizardInfoAfter=����������
|
WizardInfoAfter=����������
|
||||||
InfoAfterLabel=���� �����, ���������� �������� ������� ����������, ���� ��� ����������.
|
InfoAfterLabel=���� �����, ���������� �������� ������� ����������, ���� ��� ����������.
|
||||||
InfoAfterClickLabel=���� �� ������ ���������� ������������, ��������� ���볻.
|
InfoAfterClickLabel=���� �� ������ ���������� ������������, ��������� ���볻.
|
||||||
|
|
||||||
; *** �������� "���������� ��� �����������"
|
; *** �������� "���������� ��� �����������"
|
||||||
WizardUserInfo=���������� ��� �����������
|
WizardUserInfo=���������� ��� �����������
|
||||||
UserInfoDesc=���� �����, ������� ���� ��� ����.
|
UserInfoDesc=���� �����, ������� ���� ��� ����.
|
||||||
UserInfoName=&���� �����������:
|
UserInfoName=&���� �����������:
|
||||||
UserInfoOrg=&�����������:
|
UserInfoOrg=&�����������:
|
||||||
UserInfoSerial=&�������� �����:
|
UserInfoSerial=&�������� �����:
|
||||||
UserInfoNameRequired=�� ������� ������ ��'�.
|
UserInfoNameRequired=�� ������� ������ ��'�.
|
||||||
|
|
||||||
; *** �������� "����� ����� ������������"
|
; *** �������� "����� ����� ������������"
|
||||||
WizardSelectDir=����� ����� ������������
|
WizardSelectDir=����� ����� ������������
|
||||||
SelectDirDesc=���� �� ������� ���������� [name]?
|
SelectDirDesc=���� �� ������� ���������� [name]?
|
||||||
SelectDirLabel3=�������� ���������� [name] � �������� �����.
|
SelectDirLabel3=�������� ���������� [name] � �������� �����.
|
||||||
SelectDirBrowseLabel=��������� ���볻, ��� ����������. ���� �� ������� ������� ���� �����, ��������� �������.
|
SelectDirBrowseLabel=��������� ���볻, ��� ����������. ���� �� ������� ������� ���� �����, ��������� �������.
|
||||||
DiskSpaceGBLabel=��������� �� ������� [gb] �� �������� ��������� ��������.
|
DiskSpaceGBLabel=��������� �� ������� [gb] �� �������� ��������� ��������.
|
||||||
DiskSpaceMBLabel=��������� �� ������� [mb] M� �������� ��������� ��������.
|
DiskSpaceMBLabel=��������� �� ������� [mb] M� �������� ��������� ��������.
|
||||||
CannotInstallToNetworkDrive=������������ �� ���� ����������� �� ��������� ����.
|
CannotInstallToNetworkDrive=������������ �� ���� ����������� �� ��������� ����.
|
||||||
CannotInstallToUNCPath=������������ �� ���� ����������� �� ���������� �����.
|
CannotInstallToUNCPath=������������ �� ���� ����������� �� ���������� �����.
|
||||||
InvalidPath=�� ������� ������� ������ ���� � ������ �����, ���������:%n%nC:\APP%n%n��� � ������� UNC:%n%n\\������\������
|
InvalidPath=�� ������� ������� ������ ���� � ������ �����, ���������:%n%nC:\APP%n%n��� � ������� UNC:%n%n\\������\������
|
||||||
InvalidDrive=������� ���� ���� �� ��������� ���� �� �����, ��� �� ���������. ���� �����, �������� �����.
|
InvalidDrive=������� ���� ���� �� ��������� ���� �� �����, ��� �� ���������. ���� �����, �������� �����.
|
||||||
DiskSpaceWarningTitle=����������� ��������� ��������
|
DiskSpaceWarningTitle=����������� ��������� ��������
|
||||||
DiskSpaceWarning=��� ������������ ��������� �� ������� %1 �� �������� ��������, � �� ��������� ����� �������� ���� %2 ��.%n%n�� ��� ���� ������� ����������?
|
DiskSpaceWarning=��� ������������ ��������� �� ������� %1 �� �������� ��������, � �� ��������� ����� �������� ���� %2 ��.%n%n�� ��� ���� ������� ����������?
|
||||||
DirNameTooLong=��'� ����� ��� ���� �� ��� ����������� ��������� �������.
|
DirNameTooLong=��'� ����� ��� ���� �� ��� ����������� ��������� �������.
|
||||||
InvalidDirName=������� ���� ����� �����������.
|
InvalidDirName=������� ���� ����� �����������.
|
||||||
BadDirName32=��'� ����� �� ���� �������� �������� �������:%n%n%1
|
BadDirName32=��'� ����� �� ���� �������� �������� �������:%n%n%1
|
||||||
DirExistsTitle=����� �����
|
DirExistsTitle=����� �����
|
||||||
DirExists=�����:%n%n%1%n%n��� �����. �� ��� ���� ������� ���������� � �� �����?
|
DirExists=�����:%n%n%1%n%n��� �����. �� ��� ���� ������� ���������� � �� �����?
|
||||||
DirDoesntExistTitle=����� �� �����
|
DirDoesntExistTitle=����� �� �����
|
||||||
DirDoesntExist=�����:%n%n%1%n%n�� �����. �� ������� �������� ��?
|
DirDoesntExist=�����:%n%n%1%n%n�� �����. �� ������� �������� ��?
|
||||||
|
|
||||||
; *** �������� "����� �����������"
|
; *** �������� "����� �����������"
|
||||||
WizardSelectComponents=����� �����������
|
WizardSelectComponents=����� �����������
|
||||||
SelectComponentsDesc=��� ���������� �� ������� ����������?
|
SelectComponentsDesc=��� ���������� �� ������� ����������?
|
||||||
SelectComponentsLabel2=�������� ���������� ��� �� ������� ����������; ������� �������� � ����������� ��� �� �� ������� �������������. ��������� ���볻, ��� ����������.
|
SelectComponentsLabel2=�������� ���������� ��� �� ������� ����������; ������� �������� � ����������� ��� �� �� ������� �������������. ��������� ���볻, ��� ����������.
|
||||||
FullInstallation=����� ������������
|
FullInstallation=����� ������������
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=��������� ������������
|
CompactInstallation=��������� ������������
|
||||||
CustomInstallation=��������� ������������
|
CustomInstallation=��������� ������������
|
||||||
NoUninstallWarningTitle=���������� �������
|
NoUninstallWarningTitle=���������� �������
|
||||||
NoUninstallWarning=��������, �� �������� ���������� ��� ������������ �� ������ ����������:%n%n%1%n%n³����� ������ ��� ����������� �� �������� ��.%n%n�� ������� ����������?
|
NoUninstallWarning=��������, �� �������� ���������� ��� ������������ �� ������ ����������:%n%n%1%n%n³����� ������ ��� ����������� �� �������� ��.%n%n�� ������� ����������?
|
||||||
ComponentSize1=%1 K�
|
ComponentSize1=%1 K�
|
||||||
ComponentSize2=%1 M�
|
ComponentSize2=%1 M�
|
||||||
ComponentsDiskSpaceGBLabel=����� ����� ������� �� ������� [gb] �� ��������� ��������.
|
ComponentsDiskSpaceGBLabel=����� ����� ������� �� ������� [gb] �� ��������� ��������.
|
||||||
ComponentsDiskSpaceMBLabel=����� ����� ������� �� ������� [mb] M� ��������� ��������.
|
ComponentsDiskSpaceMBLabel=����� ����� ������� �� ������� [mb] M� ��������� ��������.
|
||||||
|
|
||||||
; *** �������� "����� ���������� �������"
|
; *** �������� "����� ���������� �������"
|
||||||
WizardSelectTasks=����� ���������� �������
|
WizardSelectTasks=����� ���������� �������
|
||||||
SelectTasksDesc=��� ��������� �������� �� ������� ��������?
|
SelectTasksDesc=��� ��������� �������� �� ������� ��������?
|
||||||
SelectTasksLabel2=�������� ��������� �������� ��� �������� ������������ [name] ������� ��������, ����� ��������� ���볻.
|
SelectTasksLabel2=�������� ��������� �������� ��� �������� ������������ [name] ������� ��������, ����� ��������� ���볻.
|
||||||
|
|
||||||
; *** �������� "����� ����� � ���� ������"
|
; *** �������� "����� ����� � ���� ������"
|
||||||
WizardSelectProgramGroup=����� ����� � ���� ������
|
WizardSelectProgramGroup=����� ����� � ���� ������
|
||||||
SelectStartMenuFolderDesc=�� �� ������� �������� ������?
|
SelectStartMenuFolderDesc=�� �� ������� �������� ������?
|
||||||
SelectStartMenuFolderLabel3=�������� ������������ �������� ������ � ��������� ����� ���� ������.
|
SelectStartMenuFolderLabel3=�������� ������������ �������� ������ � ��������� ����� ���� ������.
|
||||||
SelectStartMenuFolderBrowseLabel=��������� ���볻, ��� ����������. ���� �� ������� ������� ���� �����, ��������� �������.
|
SelectStartMenuFolderBrowseLabel=��������� ���볻, ��� ����������. ���� �� ������� ������� ���� �����, ��������� �������.
|
||||||
MustEnterGroupName=�� ������� ������ ��'� �����.
|
MustEnterGroupName=�� ������� ������ ��'� �����.
|
||||||
GroupNameTooLong=���� ����� ��� ���� �� ��� ����������� ��������� �������.
|
GroupNameTooLong=���� ����� ��� ���� �� ��� ����������� ��������� �������.
|
||||||
InvalidGroupName=������� ���� ����� �����������.
|
InvalidGroupName=������� ���� ����� �����������.
|
||||||
BadGroupName=��'� ����� �� ���� �������� �������� �������:%n%n%1
|
BadGroupName=��'� ����� �� ���� �������� �������� �������:%n%n%1
|
||||||
NoProgramGroupCheck2=&�� ���������� ����� � ���� ������
|
NoProgramGroupCheck2=&�� ���������� ����� � ���� ������
|
||||||
|
|
||||||
; *** �������� "��� ������ �� ������������"
|
; *** �������� "��� ������ �� ������������"
|
||||||
WizardReady=��� ������ �� ������������
|
WizardReady=��� ������ �� ������������
|
||||||
ReadyLabel1=�������� ������ ��������� ������������ [name] �� ��� ���������.
|
ReadyLabel1=�������� ������ ��������� ������������ [name] �� ��� ���������.
|
||||||
ReadyLabel2a=��������� ������������ ��� ����������� ������������, ��� �������, ���� �� ������� ����������� ��� ������� ������������ ������������.
|
ReadyLabel2a=��������� ������������ ��� ����������� ������������, ��� �������, ���� �� ������� ����������� ��� ������� ������������ ������������.
|
||||||
ReadyLabel2b=��������� ������������ ��� �����������.
|
ReadyLabel2b=��������� ������������ ��� �����������.
|
||||||
ReadyMemoUserInfo=���� ��� �����������:
|
ReadyMemoUserInfo=���� ��� �����������:
|
||||||
ReadyMemoDir=���� ������������:
|
ReadyMemoDir=���� ������������:
|
||||||
ReadyMemoType=��� ������������:
|
ReadyMemoType=��� ������������:
|
||||||
ReadyMemoComponents=������� ����������:
|
ReadyMemoComponents=������� ����������:
|
||||||
ReadyMemoGroup=����� � ���� ������:
|
ReadyMemoGroup=����� � ���� ������:
|
||||||
ReadyMemoTasks=��������� ��������:
|
ReadyMemoTasks=��������� ��������:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=������������ ���������� ������...
|
DownloadingLabel=������������ ���������� ������...
|
||||||
ButtonStopDownload=&��������� ������������
|
ButtonStopDownload=&��������� ������������
|
||||||
StopDownload=�� ������ ������� ��������� ������������?
|
StopDownload=�� ������ ������� ��������� ������������?
|
||||||
ErrorDownloadAborted=������������ ���������
|
ErrorDownloadAborted=������������ ���������
|
||||||
ErrorDownloadFailed=������� ������������: %1 %2
|
ErrorDownloadFailed=������� ������������: %1 %2
|
||||||
ErrorDownloadSizeFailed=������� ��������� �������: %1 %2
|
ErrorDownloadSizeFailed=������� ��������� �������: %1 %2
|
||||||
ErrorFileHash1=������� ���� �����: %1
|
ErrorFileHash1=������� ���� �����: %1
|
||||||
ErrorFileHash2=�������� ��� �����: ���������� %1, ��������� %2
|
ErrorFileHash2=�������� ��� �����: ���������� %1, ��������� %2
|
||||||
ErrorProgress=������� ���������: %1 � %2
|
ErrorProgress=������� ���������: %1 � %2
|
||||||
ErrorFileSize=�������� ������ �����: ���������� %1, ��������� %2
|
ErrorFileSize=�������� ������ �����: ���������� %1, ��������� %2
|
||||||
|
|
||||||
; *** �������� "ϳ�������� �� ������������"
|
; *** �������� "ϳ�������� �� ������������"
|
||||||
WizardPreparing=ϳ�������� �� ������������
|
WizardPreparing=ϳ�������� �� ������������
|
||||||
PreparingDesc=�������� ������������ ��������� �� ������������ [name] �� ��� ���������.
|
PreparingDesc=�������� ������������ ��������� �� ������������ [name] �� ��� ���������.
|
||||||
PreviousInstallNotCompleted=������������ ��� ��������� ����������� �������� �� ���� ���������. ��� �������� ��������������� ��� ��������� ��� ���������� �������� ������������.%n%nϳ��� ���������������� ��������� �������� ������������ �����, ��� ��������� ������������ [name].
|
PreviousInstallNotCompleted=������������ ��� ��������� ����������� �������� �� ���� ���������. ��� �������� ��������������� ��� ��������� ��� ���������� �������� ������������.%n%nϳ��� ���������������� ��������� �������� ������������ �����, ��� ��������� ������������ [name].
|
||||||
CannotContinue=������������ ��������� ����������. ���� �����, ��������� ����������� ��� ������.
|
CannotContinue=������������ ��������� ����������. ���� �����, ��������� ����������� ��� ������.
|
||||||
ApplicationsFound=�������� �������� �������������� �����, ��� ������� ���� �������� ��������� ������������. �������������� ��������� �������� ������������ ����������� ������� �� ��������.
|
ApplicationsFound=�������� �������� �������������� �����, ��� ������� ���� �������� ��������� ������������. �������������� ��������� �������� ������������ ����������� ������� �� ��������.
|
||||||
ApplicationsFound2=�������� �������� �������������� �����, ��� ������� ���� �������� ��������� ������������. �������������� ��������� �������� ������������ ����������� ������� �� ��������. ϳ��� ���������� ������������, �������� ������������ ������� ����� ��������� ��.
|
ApplicationsFound2=�������� �������� �������������� �����, ��� ������� ���� �������� ��������� ������������. �������������� ��������� �������� ������������ ����������� ������� �� ��������. ϳ��� ���������� ������������, �������� ������������ ������� ����� ��������� ��.
|
||||||
CloseApplications=&����������� ������� ��������
|
CloseApplications=&����������� ������� ��������
|
||||||
DontCloseApplications=&�� ��������� ��������
|
DontCloseApplications=&�� ��������� ��������
|
||||||
ErrorCloseApplications=�������� ������������ �� ���� ����������� ������� ��� ��������. �������������� ������� ��� ��������, �� �������������� �����, ��� ������� ���� �������� ��������� ������������, ���� ��� ����������.
|
ErrorCloseApplications=�������� ������������ �� ���� ����������� ������� ��� ��������. �������������� ������� ��� ��������, �� �������������� �����, ��� ������� ���� �������� ��������� ������������, ���� ��� ����������.
|
||||||
PrepareToInstallNeedsRestart=�������� ������������ ��������� ��������������� ��� ��. ϳ��� ���������������� ��, ��������� ������������ ����� ��� ���������� ������������ [name]%n%n�� ������� ��������������� �����?
|
PrepareToInstallNeedsRestart=�������� ������������ ��������� ��������������� ��� ��. ϳ��� ���������������� ��, ��������� ������������ ����� ��� ���������� ������������ [name]%n%n�� ������� ��������������� �����?
|
||||||
|
|
||||||
; *** �������� "������������"
|
; *** �������� "������������"
|
||||||
WizardInstalling=������������
|
WizardInstalling=������������
|
||||||
InstallingLabel=���� �����, ���������, ���� [name] ������������ �� ��� ����'����.
|
InstallingLabel=���� �����, ���������, ���� [name] ������������ �� ��� ����'����.
|
||||||
|
|
||||||
; *** �������� "������������ ���������"
|
; *** �������� "������������ ���������"
|
||||||
FinishedHeadingLabel=���������� ������������ [name]
|
FinishedHeadingLabel=���������� ������������ [name]
|
||||||
FinishedLabelNoIcons=������������ [name] �� ��� ��������� ���������.
|
FinishedLabelNoIcons=������������ [name] �� ��� ��������� ���������.
|
||||||
FinishedLabel=������������ [name] �� ��� ��������� ���������. ����������� �������� ����� �������� �� ��������� ��������� �������.
|
FinishedLabel=������������ [name] �� ��� ��������� ���������. ����������� �������� ����� �������� �� ��������� ��������� �������.
|
||||||
ClickFinish=��������� �������� ��� ������ � �������� ������������.
|
ClickFinish=��������� �������� ��� ������ � �������� ������������.
|
||||||
FinishedRestartLabel=��� ���������� ������������ [name] ��������� ��������������� ��� ���������. ��������������� ��������� �����?
|
FinishedRestartLabel=��� ���������� ������������ [name] ��������� ��������������� ��� ���������. ��������������� ��������� �����?
|
||||||
FinishedRestartMessage=��� ���������� ������������ [name] ��������� ��������������� ��� ���������.%n%n��������������� ��������� �����?
|
FinishedRestartMessage=��� ���������� ������������ [name] ��������� ��������������� ��� ���������.%n%n��������������� ��������� �����?
|
||||||
ShowReadmeCheck=���, � ���� ����������� ���� README
|
ShowReadmeCheck=���, � ���� ����������� ���� README
|
||||||
YesRadio=&���, ��������������� ��������� �����
|
YesRadio=&���, ��������������� ��������� �����
|
||||||
NoRadio=&ͳ, � ������������� ��������� �������
|
NoRadio=&ͳ, � ������������� ��������� �������
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=³������ %1
|
RunEntryExec=³������ %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=����������� %1
|
RunEntryShellExec=����������� %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=��������� �������� ��������� ����
|
ChangeDiskTitle=��������� �������� ��������� ����
|
||||||
SelectDiskLabel2=���� �����, ������� ���� %1 � ��������� �OK�.%n%n���� �������� ����� ������ ����������� � ����� �����, �� ������� ��� �������� �����, ������� ���������� ���� ��� ��������� �������.
|
SelectDiskLabel2=���� �����, ������� ���� %1 � ��������� �OK�.%n%n���� �������� ����� ������ ����������� � ����� �����, �� ������� ��� �������� �����, ������� ���������� ���� ��� ��������� �������.
|
||||||
PathLabel=&����:
|
PathLabel=&����:
|
||||||
FileNotInDir2=���� "%1" �� ��������� � "%2". ���� �����, ������� �������� ���� ��� ������� ���� �����.
|
FileNotInDir2=���� "%1" �� ��������� � "%2". ���� �����, ������� �������� ���� ��� ������� ���� �����.
|
||||||
SelectDirectoryLabel=���� �����, ������� ���� �� ���������� �����.
|
SelectDirectoryLabel=���� �����, ������� ���� �� ���������� �����.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=������������ �� ���������.%n%n���� �����, ������� �������� � ��������� �������� ������������ �����.
|
SetupAborted=������������ �� ���������.%n%n���� �����, ������� �������� � ��������� �������� ������������ �����.
|
||||||
AbortRetryIgnoreSelectAction=�������� ���
|
AbortRetryIgnoreSelectAction=�������� ���
|
||||||
AbortRetryIgnoreRetry=&���������� �����
|
AbortRetryIgnoreRetry=&���������� �����
|
||||||
AbortRetryIgnoreIgnore=&���������� ������� �� ����������
|
AbortRetryIgnoreIgnore=&���������� ������� �� ����������
|
||||||
AbortRetryIgnoreCancel=³������� ������������
|
AbortRetryIgnoreCancel=³������� ������������
|
||||||
|
|
||||||
; *** ������������ ����� ������������
|
; *** ������������ ����� ������������
|
||||||
StatusClosingApplications=�������� �������...
|
StatusClosingApplications=�������� �������...
|
||||||
StatusCreateDirs=��������� �����...
|
StatusCreateDirs=��������� �����...
|
||||||
StatusExtractFiles=������������ ������...
|
StatusExtractFiles=������������ ������...
|
||||||
StatusCreateIcons=��������� �������...
|
StatusCreateIcons=��������� �������...
|
||||||
StatusCreateIniEntries=��������� INI �������...
|
StatusCreateIniEntries=��������� INI �������...
|
||||||
StatusCreateRegistryEntries=��������� ������� �������...
|
StatusCreateRegistryEntries=��������� ������� �������...
|
||||||
StatusRegisterFiles=���������� ������...
|
StatusRegisterFiles=���������� ������...
|
||||||
StatusSavingUninstall=���������� ���������� ��� ���������...
|
StatusSavingUninstall=���������� ���������� ��� ���������...
|
||||||
StatusRunProgram=���������� ������������...
|
StatusRunProgram=���������� ������������...
|
||||||
StatusRestartingApplications=���������� �������...
|
StatusRestartingApplications=���������� �������...
|
||||||
StatusRollback=���������� ����...
|
StatusRollback=���������� ����...
|
||||||
|
|
||||||
; *** �� �������
|
; *** �� �������
|
||||||
ErrorInternal2=��������� �������: %1
|
ErrorInternal2=��������� �������: %1
|
||||||
ErrorFunctionFailedNoCode=%1 ����
|
ErrorFunctionFailedNoCode=%1 ����
|
||||||
ErrorFunctionFailed=%1 ����; ��� %2
|
ErrorFunctionFailed=%1 ����; ��� %2
|
||||||
ErrorFunctionFailedWithMessage=%1 ����; ��� %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 ����; ��� %2.%n%3
|
||||||
ErrorExecutingProgram=��������� �������� ����:%n%1
|
ErrorExecutingProgram=��������� �������� ����:%n%1
|
||||||
|
|
||||||
; *** ������� �������
|
; *** ������� �������
|
||||||
ErrorRegOpenKey=������� ��������� ����� �������:%n%1\%2
|
ErrorRegOpenKey=������� ��������� ����� �������:%n%1\%2
|
||||||
ErrorRegCreateKey=������� ��������� ����� �������:%n%1\%2
|
ErrorRegCreateKey=������� ��������� ����� �������:%n%1\%2
|
||||||
ErrorRegWriteKey=������� ������ � ���� �������:%n%1\%2
|
ErrorRegWriteKey=������� ������ � ���� �������:%n%1\%2
|
||||||
|
|
||||||
; *** ������� INI
|
; *** ������� INI
|
||||||
ErrorIniEntry=������� ��� ��������� ������ � INI-����� "%1".
|
ErrorIniEntry=������� ��� ��������� ������ � INI-����� "%1".
|
||||||
|
|
||||||
; *** ������� ���������� ������
|
; *** ������� ���������� ������
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&���������� ���� (�� ��������������)
|
FileAbortRetryIgnoreSkipNotRecommended=&���������� ���� (�� ��������������)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&���������� ������� �� ���������� (�� ��������������)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&���������� ������� �� ���������� (�� ��������������)
|
||||||
SourceIsCorrupted=�������� ���� �����������
|
SourceIsCorrupted=�������� ���� �����������
|
||||||
SourceDoesntExist=�������� ���� "%1" �� �����
|
SourceDoesntExist=�������� ���� "%1" �� �����
|
||||||
ExistingFileReadOnly2=��������� �������� �������� ����, �������� ��� ���������� ���� ��� �������.
|
ExistingFileReadOnly2=��������� �������� �������� ����, �������� ��� ���������� ���� ��� �������.
|
||||||
ExistingFileReadOnlyRetry=&�������� ������� "���� �������" �� ���������� �����
|
ExistingFileReadOnlyRetry=&�������� ������� "���� �������" �� ���������� �����
|
||||||
ExistingFileReadOnlyKeepExisting=&�������� �������� ����
|
ExistingFileReadOnlyKeepExisting=&�������� �������� ����
|
||||||
ErrorReadingExistingDest=������� ������� ��� ������ ������� ��������� �����:
|
ErrorReadingExistingDest=������� ������� ��� ������ ������� ��������� �����:
|
||||||
FileExistsSelectAction=�������� ���
|
FileExistsSelectAction=�������� ���
|
||||||
FileExists2=���� ��� �����.
|
FileExists2=���� ��� �����.
|
||||||
FileExistsOverwriteExisting=&�������� �������� ����
|
FileExistsOverwriteExisting=&�������� �������� ����
|
||||||
FileExistsKeepExisting=&�������� �������� ����
|
FileExistsKeepExisting=&�������� �������� ����
|
||||||
FileExistsOverwriteOrKeepAll=&��������� ��� ��� ���� ��������� ����������
|
FileExistsOverwriteOrKeepAll=&��������� ��� ��� ���� ��������� ����������
|
||||||
ExistingFileNewerSelectAction=�������� ���
|
ExistingFileNewerSelectAction=�������� ���
|
||||||
ExistingFileNewer2=�������� ���� �������, ��� ���������������.
|
ExistingFileNewer2=�������� ���� �������, ��� ���������������.
|
||||||
ExistingFileNewerOverwriteExisting=&�������� �������� ����
|
ExistingFileNewerOverwriteExisting=&�������� �������� ����
|
||||||
ExistingFileNewerKeepExisting=&�������� �������� ���� (��������������)
|
ExistingFileNewerKeepExisting=&�������� �������� ���� (��������������)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&��������� ��� ��� ���� ��������� ����������
|
ExistingFileNewerOverwriteOrKeepAll=&��������� ��� ��� ���� ��������� ����������
|
||||||
ErrorChangingAttr=������� ������� ��� ������ ����� ��������� ��������� �����:
|
ErrorChangingAttr=������� ������� ��� ������ ����� ��������� ��������� �����:
|
||||||
ErrorCreatingTemp=������� ������� ��� ������ ��������� ����� � ����� ������������:
|
ErrorCreatingTemp=������� ������� ��� ������ ��������� ����� � ����� ������������:
|
||||||
ErrorReadingSource=������� ������� ��� ������ ������� ��������� �����:
|
ErrorReadingSource=������� ������� ��� ������ ������� ��������� �����:
|
||||||
ErrorCopying=������� ������� ��� ������ ���������� �����:
|
ErrorCopying=������� ������� ��� ������ ���������� �����:
|
||||||
ErrorReplacingExistingFile=������� ������� ��� ������ ������ ��������� �����:
|
ErrorReplacingExistingFile=������� ������� ��� ������ ������ ��������� �����:
|
||||||
ErrorRestartReplace=������� RestartReplace:
|
ErrorRestartReplace=������� RestartReplace:
|
||||||
ErrorRenamingTemp=������� ������� ��� ������ �������������� ����� � ����� ������������:
|
ErrorRenamingTemp=������� ������� ��� ������ �������������� ����� � ����� ������������:
|
||||||
ErrorRegisterServer=��������� ������������� DLL/OCX: %1
|
ErrorRegisterServer=��������� ������������� DLL/OCX: %1
|
||||||
ErrorRegSvr32Failed=������� ��� ��������� RegSvr32, ��� ���������� %1
|
ErrorRegSvr32Failed=������� ��� ��������� RegSvr32, ��� ���������� %1
|
||||||
ErrorRegisterTypeLib=��������� ������������� ���������� �����: %1
|
ErrorRegisterTypeLib=��������� ������������� ���������� �����: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32-���
|
UninstallDisplayNameMark32Bit=32-���
|
||||||
UninstallDisplayNameMark64Bit=64-���
|
UninstallDisplayNameMark64Bit=64-���
|
||||||
UninstallDisplayNameMarkAllUsers=��� �����������
|
UninstallDisplayNameMarkAllUsers=��� �����������
|
||||||
UninstallDisplayNameMarkCurrentUser=�������� ����������
|
UninstallDisplayNameMarkCurrentUser=�������� ����������
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=������� ������� ��� ������ ��������� ����� README.
|
ErrorOpeningReadme=������� ������� ��� ������ ��������� ����� README.
|
||||||
ErrorRestartingComputer=�������� ������������ �� ������� ��������������� ����'����. ���� �����, ��������� �� ����������.
|
ErrorRestartingComputer=�������� ������������ �� ������� ��������������� ����'����. ���� �����, ��������� �� ����������.
|
||||||
|
|
||||||
; *** ������������ ���������
|
; *** ������������ ���������
|
||||||
UninstallNotFound=���� "%1" �� �����, ��������� ���������.
|
UninstallNotFound=���� "%1" �� �����, ��������� ���������.
|
||||||
UninstallOpenError=��������� �������� ���� "%1". ��������� ���������
|
UninstallOpenError=��������� �������� ���� "%1". ��������� ���������
|
||||||
UninstallUnsupportedVer=���� ��������� ��� ��������� "%1" �� ����������� ����� ������� �������� ���������. ��������� ���������
|
UninstallUnsupportedVer=���� ��������� ��� ��������� "%1" �� ����������� ����� ������� �������� ���������. ��������� ���������
|
||||||
UninstallUnknownEntry=��������� ����� (%1) � ����� ��������� ��� ���������
|
UninstallUnknownEntry=��������� ����� (%1) � ����� ��������� ��� ���������
|
||||||
ConfirmUninstall=�� ��������, �� ������ ��������� ������� ��������� %1?
|
ConfirmUninstall=�� ��������, �� ������ ��������� ������� ��������� %1?
|
||||||
UninstallOnlyOnWin64=�� �������� ������� �������� ���� � ���������� 64-������ ������ Windows.
|
UninstallOnlyOnWin64=�� �������� ������� �������� ���� � ���������� 64-������ ������ Windows.
|
||||||
OnlyAdminCanUninstall=�� �������� ���� ���� �������� ���� ������������ � ������� ��������������.
|
OnlyAdminCanUninstall=�� �������� ���� ���� �������� ���� ������������ � ������� ��������������.
|
||||||
UninstallStatusLabel=���� �����, ���������, ���� %1 ���������� � ������ ����'�����.
|
UninstallStatusLabel=���� �����, ���������, ���� %1 ���������� � ������ ����'�����.
|
||||||
UninstalledAll=%1 ������� �������� � ������ ����'�����.
|
UninstalledAll=%1 ������� �������� � ������ ����'�����.
|
||||||
UninstalledMost=��������� %1 ���������.%n%n����� ������� ��������� ��������. �� ������ �������� �� ������.
|
UninstalledMost=��������� %1 ���������.%n%n����� ������� ��������� ��������. �� ������ �������� �� ������.
|
||||||
UninstalledAndNeedsRestart=��� ���������� ��������� %1 ��������� ��������������� ��� ���������.%n%n��������������� ��������� �����?
|
UninstalledAndNeedsRestart=��� ���������� ��������� %1 ��������� ��������������� ��� ���������.%n%n��������������� ��������� �����?
|
||||||
UninstallDataCorrupted=���� "%1" �����������. ��������� ���������
|
UninstallDataCorrupted=���� "%1" �����������. ��������� ���������
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=�������� �������� �����?
|
ConfirmDeleteSharedFileTitle=�������� �������� �����?
|
||||||
ConfirmDeleteSharedFile2=������� ��������, �� ��������� �������� ���� ������ �� ���������������� ������ ����������. �� ������� �������� ��� �������� ����?%n%n���� ���� �������� ��� �� �������������� ��� ���� � ��� ����������, �� �� �������� ������ ������������� �����������. ���� �� �� ��������, �������� �ͳ�. ��������� ���� �� ��������� ����� �������.
|
ConfirmDeleteSharedFile2=������� ��������, �� ��������� �������� ���� ������ �� ���������������� ������ ����������. �� ������� �������� ��� �������� ����?%n%n���� ���� �������� ��� �� �������������� ��� ���� � ��� ����������, �� �� �������� ������ ������������� �����������. ���� �� �� ��������, �������� �ͳ�. ��������� ���� �� ��������� ����� �������.
|
||||||
SharedFileNameLabel=��'� �����:
|
SharedFileNameLabel=��'� �����:
|
||||||
SharedFileLocationLabel=����������:
|
SharedFileLocationLabel=����������:
|
||||||
WizardUninstalling=���� ���������
|
WizardUninstalling=���� ���������
|
||||||
StatusUninstalling=��������� %1...
|
StatusUninstalling=��������� %1...
|
||||||
|
|
||||||
|
|
||||||
; *** ������� ���������� ���������
|
; *** ������� ���������� ���������
|
||||||
ShutdownBlockReasonInstallingApp=������������ %1.
|
ShutdownBlockReasonInstallingApp=������������ %1.
|
||||||
ShutdownBlockReasonUninstallingApp=��������� %1.
|
ShutdownBlockReasonUninstallingApp=��������� %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1, ������ %2
|
NameAndVersion=%1, ������ %2
|
||||||
AdditionalIcons=��������� ������:
|
AdditionalIcons=��������� ������:
|
||||||
CreateDesktopIcon=�������� ������ �� &�������� �����
|
CreateDesktopIcon=�������� ������ �� &�������� �����
|
||||||
CreateQuickLaunchIcon=�������� ������ �� &������ �������� �������
|
CreateQuickLaunchIcon=�������� ������ �� &������ �������� �������
|
||||||
ProgramOnTheWeb=���� %1 � ���������
|
ProgramOnTheWeb=���� %1 � ���������
|
||||||
UninstallProgram=�������� %1
|
UninstallProgram=�������� %1
|
||||||
LaunchProgram=³������ %1
|
LaunchProgram=³������ %1
|
||||||
AssocFileExtension=&���������� %1 � ����������� ����� %2
|
AssocFileExtension=&���������� %1 � ����������� ����� %2
|
||||||
AssocingFileExtension=����������� %1 � ����������� ����� %2...
|
AssocingFileExtension=����������� %1 � ����������� ����� %2...
|
||||||
AutoStartProgramGroupDescription=����������������:
|
AutoStartProgramGroupDescription=����������������:
|
||||||
AutoStartProgram=����������� ������������� %1
|
AutoStartProgram=����������� ������������� %1
|
||||||
AddonHostProgramNotFound=%1 �� ��������� � �������� ���� �����%n%n�� ��� ���� ������� ����������?
|
AddonHostProgramNotFound=%1 �� ��������� � �������� ���� �����%n%n�� ��� ���� ������� ����������?
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=�������� ����� ������������
|
SelectSetupInstallModeTitle=�������� ����� ������������
|
||||||
SelectSetupInstallModeDesc=VCMI ���� ���� ������������ ��� ���� ������������ ��� ���� ��� ���.
|
SelectSetupInstallModeDesc=VCMI ���� ���� ������������ ��� ���� ������������ ��� ���� ��� ���.
|
||||||
SelectSetupInstallModeSubTitle=�������� ������� ����� ������������:
|
SelectSetupInstallModeSubTitle=�������� ������� ����� ������������:
|
||||||
InstallForAllUsers=���������� ��� ���� ������������
|
InstallForAllUsers=���������� ��� ���� ������������
|
||||||
InstallForAllUsers1=�������� ��������������� �����
|
InstallForAllUsers1=�������� ��������������� �����
|
||||||
InstallForMeOnly=���������� ���� ��� ����
|
InstallForMeOnly=���������� ���� ��� ����
|
||||||
InstallForMeOnly1=ϳ� ��� ������� ������� ��� �'������� ����� ��� �����������.
|
InstallForMeOnly1=ϳ� ��� ������� ������� ��� �'������� ����� ��� �����������.
|
||||||
InstallForMeOnly2=�����: �������� ���� �� �������������, ���� ������� ����������� �� ���� ���������.
|
InstallForMeOnly2=�����: �������� ���� �� �������������, ���� ������� ����������� �� ���� ���������.
|
||||||
CreateDesktopShortcuts=�������� ������ �� �������� �����
|
CreateDesktopShortcuts=�������� ������ �� �������� �����
|
||||||
ShortcutsOptions=����� �������
|
ShortcutsOptions=����� �������
|
||||||
CreateStartMenuShortcuts=�������� ������ � ���� ������
|
CreateStartMenuShortcuts=�������� ������ � ���� ������
|
||||||
FirewallOptions=������������ �����������
|
FirewallOptions=������������ �����������
|
||||||
AddFirewallRules=������ ������� ����������� ��� VCMI
|
AddFirewallRules=������ ������� ����������� ��� VCMI
|
||||||
FileAssociations=��������� ������
|
FileAssociations=��������� ������
|
||||||
AssociateH3MFiles=����������� ����� .h3m � ���������� ���� VCMI
|
AssociateH3MFiles=����������� ����� .h3m � ���������� ���� VCMI
|
||||||
AssociateVMapFiles=����������� ����� .vmap � ���������� ���� VCMI
|
AssociateVMapFiles=����������� ����� .vmap � ���������� ���� VCMI
|
||||||
RunVCMILauncherAfterInstall=��������� ������� VCMI
|
RunVCMILauncherAfterInstall=��������� ������� VCMI
|
||||||
ShortcutMapEditor=�������� ���� VCMI
|
ShortcutMapEditor=�������� ���� VCMI
|
||||||
ShortcutLauncher=������� VCMI
|
ShortcutLauncher=������� VCMI
|
||||||
ShortcutWebPage=������� VCMI
|
ShortcutWebPage=������� VCMI
|
||||||
ShortcutDiscord=Discord VCMI
|
ShortcutDiscord=Discord VCMI
|
||||||
ShortcutLauncherComment=��������� ������� VCMI
|
ShortcutLauncherComment=��������� ������� VCMI
|
||||||
ShortcutMapEditorComment=³������ �������� ���� VCMI
|
ShortcutMapEditorComment=³������ �������� ���� VCMI
|
||||||
ShortcutWebPageComment=³������� ��������� ������� VCMI
|
ShortcutWebPageComment=³������� ��������� ������� VCMI
|
||||||
ShortcutDiscordComment=³������� ��������� Discord VCMI
|
ShortcutDiscordComment=³������� ��������� Discord VCMI
|
||||||
DeleteUserData=�������� ���� �����������
|
DeleteUserData=�������� ���� �����������
|
||||||
Uninstall=�������������
|
Uninstall=�������������
|
||||||
VMAPDescription=���� ����� VCMI
|
VMAPDescription=���� ����� VCMI
|
||||||
H3MDescription=���� ����� Heroes 3
|
H3MDescription=���� ����� Heroes 3
|
@@ -1,415 +1,415 @@
|
|||||||
; *** Inno Setup version 6.1.0+ Vietnamese messages ***
|
; *** Inno Setup version 6.1.0+ Vietnamese messages ***
|
||||||
; Translated by Vu Khac Hiep (email: vukhachiep@gmail.com)
|
; Translated by Vu Khac Hiep (email: vukhachiep@gmail.com)
|
||||||
; To download user-contributed translations of this file, go to:
|
; To download user-contributed translations of this file, go to:
|
||||||
; https://jrsoftware.org/files/istrans/
|
; https://jrsoftware.org/files/istrans/
|
||||||
;
|
;
|
||||||
; Note: When translating this text, do not add periods (.) to the end of
|
; Note: When translating this text, do not add periods (.) to the end of
|
||||||
; messages that didn't have them already, because on those messages Inno
|
; messages that didn't have them already, because on those messages Inno
|
||||||
; Setup adds the periods automatically (appending a period would result in
|
; Setup adds the periods automatically (appending a period would result in
|
||||||
; two periods being displayed).
|
; two periods being displayed).
|
||||||
|
|
||||||
[LangOptions]
|
[LangOptions]
|
||||||
; The following three entries are very important. Be sure to read and
|
; The following three entries are very important. Be sure to read and
|
||||||
; understand the '[LangOptions] section' topic in the help file.
|
; understand the '[LangOptions] section' topic in the help file.
|
||||||
LanguageName=Vietnamese
|
LanguageName=Vietnamese
|
||||||
LanguageID=$042A
|
LanguageID=$042A
|
||||||
LanguageCodePage=0
|
LanguageCodePage=0
|
||||||
; If the language you are translating to requires special font faces or
|
; If the language you are translating to requires special font faces or
|
||||||
; sizes, uncomment any of the following entries and change them accordingly.
|
; sizes, uncomment any of the following entries and change them accordingly.
|
||||||
;DialogFontName=
|
;DialogFontName=
|
||||||
;DialogFontSize=8
|
;DialogFontSize=8
|
||||||
;WelcomeFontName=Verdana
|
;WelcomeFontName=Verdana
|
||||||
;WelcomeFontSize=12
|
;WelcomeFontSize=12
|
||||||
;TitleFontName=Arial
|
;TitleFontName=Arial
|
||||||
;TitleFontSize=29
|
;TitleFontSize=29
|
||||||
;CopyrightFontName=Arial
|
;CopyrightFontName=Arial
|
||||||
;CopyrightFontSize=8
|
;CopyrightFontSize=8
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
|
||||||
; *** Application titles
|
; *** Application titles
|
||||||
SetupAppTitle=Cài đặt
|
SetupAppTitle=Cài đặt
|
||||||
SetupWindowTitle=Cài đặt - %1
|
SetupWindowTitle=Cài đặt - %1
|
||||||
UninstallAppTitle=Gỡ cài đặt
|
UninstallAppTitle=Gỡ cài đặt
|
||||||
UninstallAppFullTitle=Gỡ cài đặt - %1
|
UninstallAppFullTitle=Gỡ cài đặt - %1
|
||||||
|
|
||||||
; *** Misc. common
|
; *** Misc. common
|
||||||
InformationTitle=Thông tin
|
InformationTitle=Thông tin
|
||||||
ConfirmTitle=Xác nhận
|
ConfirmTitle=Xác nhận
|
||||||
ErrorTitle=Lỗi
|
ErrorTitle=Lỗi
|
||||||
|
|
||||||
; *** SetupLdr messages
|
; *** SetupLdr messages
|
||||||
SetupLdrStartupMessage=Chương trình này sẽ cài đặt %1. Bạn có muốn tiếp tục không?
|
SetupLdrStartupMessage=Chương trình này sẽ cài đặt %1. Bạn có muốn tiếp tục không?
|
||||||
LdrCannotCreateTemp=Không thể tạo tệp tạm thời. Cài đặt bị hủy bỏ
|
LdrCannotCreateTemp=Không thể tạo tệp tạm thời. Cài đặt bị hủy bỏ
|
||||||
LdrCannotExecTemp=Không thể chạy tệp trong thư mục tạm thời. Cài đặt bị hủy bỏ
|
LdrCannotExecTemp=Không thể chạy tệp trong thư mục tạm thời. Cài đặt bị hủy bỏ
|
||||||
HelpTextNote=
|
HelpTextNote=
|
||||||
|
|
||||||
; *** Startup error messages
|
; *** Startup error messages
|
||||||
LastErrorMessage=%1.%n%nLỗi %2: %3
|
LastErrorMessage=%1.%n%nLỗi %2: %3
|
||||||
SetupFileMissing=Tệp %1 bị thiếu trong thư mục cài đặt. Hãy sửa lỗi hoặc lấy một bản sao mới của chương trình.
|
SetupFileMissing=Tệp %1 bị thiếu trong thư mục cài đặt. Hãy sửa lỗi hoặc lấy một bản sao mới của chương trình.
|
||||||
SetupFileCorrupt=Các tệp cài đặt đã bị hỏng. Hãy sửa lỗi hoặc lấy một bản sao của chương trình.
|
SetupFileCorrupt=Các tệp cài đặt đã bị hỏng. Hãy sửa lỗi hoặc lấy một bản sao của chương trình.
|
||||||
SetupFileCorruptOrWrongVer=Các tệp cài đặt bị hỏng, hoặc không tương thích với bản cài đặt này. Hãy sửa lỗi hoặc lấy một bản sao mới của chương trình.
|
SetupFileCorruptOrWrongVer=Các tệp cài đặt bị hỏng, hoặc không tương thích với bản cài đặt này. Hãy sửa lỗi hoặc lấy một bản sao mới của chương trình.
|
||||||
InvalidParameter=Một thông số không hợp lệ đã được đưa vào dòng lệnh:%n%n%1
|
InvalidParameter=Một thông số không hợp lệ đã được đưa vào dòng lệnh:%n%n%1
|
||||||
SetupAlreadyRunning=Cài đặt này đang chạy.
|
SetupAlreadyRunning=Cài đặt này đang chạy.
|
||||||
WindowsVersionNotSupported=Chương trình này không tương thích với phiên bản Windows bạn đang chạy.
|
WindowsVersionNotSupported=Chương trình này không tương thích với phiên bản Windows bạn đang chạy.
|
||||||
WindowsServicePackRequired=Chương trình này yêu cầu %1 Service Pack %2 hoặc mới hơn.
|
WindowsServicePackRequired=Chương trình này yêu cầu %1 Service Pack %2 hoặc mới hơn.
|
||||||
NotOnThisPlatform=Chương trình này sẽ không chạy trên %1.
|
NotOnThisPlatform=Chương trình này sẽ không chạy trên %1.
|
||||||
OnlyOnThisPlatform=Chương trình này phải chạy trên %1.
|
OnlyOnThisPlatform=Chương trình này phải chạy trên %1.
|
||||||
OnlyOnTheseArchitectures=Chương trình này chỉ có thể được cài đặt trên phiên bản Windows được thiết kế cho các hệ vi xử lí:%n%n%1
|
OnlyOnTheseArchitectures=Chương trình này chỉ có thể được cài đặt trên phiên bản Windows được thiết kế cho các hệ vi xử lí:%n%n%1
|
||||||
WinVersionTooLowError=Chương trình này yêu cầu %1 phiên bản %2 hoặc mới hơn.
|
WinVersionTooLowError=Chương trình này yêu cầu %1 phiên bản %2 hoặc mới hơn.
|
||||||
WinVersionTooHighError=Chương trình này không thể được cài đặt trên %1 phiên bản %2 hoặc mới hơn.
|
WinVersionTooHighError=Chương trình này không thể được cài đặt trên %1 phiên bản %2 hoặc mới hơn.
|
||||||
AdminPrivilegesRequired=Bạn phải được đăng nhập như người quản trị khi cài đặt chương trình này.
|
AdminPrivilegesRequired=Bạn phải được đăng nhập như người quản trị khi cài đặt chương trình này.
|
||||||
PowerUserPrivilegesRequired=Bạn phải được đăng nhập như người quản trị hoặc thành viên trong nhóm Người dùng mạnh khi cài đặt chương trình này.
|
PowerUserPrivilegesRequired=Bạn phải được đăng nhập như người quản trị hoặc thành viên trong nhóm Người dùng mạnh khi cài đặt chương trình này.
|
||||||
SetupAppRunningError=Cài đặt phát hiện %1 đang chạy.%n%nHãy đóng tất cả các tiến trình của nó ngay, rồi click OK để tiếp tục, hoặc Hủy để thoát.
|
SetupAppRunningError=Cài đặt phát hiện %1 đang chạy.%n%nHãy đóng tất cả các tiến trình của nó ngay, rồi click OK để tiếp tục, hoặc Hủy để thoát.
|
||||||
UninstallAppRunningError=Gỡ cài đặt phát hiện %1 đang chạy.%n%nHãy đóng tất cả các tiến trình của nó ngay, rồi click OK để tiếp tục, hoặc Hủy để thoát.
|
UninstallAppRunningError=Gỡ cài đặt phát hiện %1 đang chạy.%n%nHãy đóng tất cả các tiến trình của nó ngay, rồi click OK để tiếp tục, hoặc Hủy để thoát.
|
||||||
|
|
||||||
; *** Startup questions
|
; *** Startup questions
|
||||||
PrivilegesRequiredOverrideTitle=Select Setup Install Mode
|
PrivilegesRequiredOverrideTitle=Select Setup Install Mode
|
||||||
PrivilegesRequiredOverrideInstruction=Select install mode
|
PrivilegesRequiredOverrideInstruction=Select install mode
|
||||||
PrivilegesRequiredOverrideText1=%1 can be installed for all users (requires administrative privileges), or for you only.
|
PrivilegesRequiredOverrideText1=%1 can be installed for all users (requires administrative privileges), or for you only.
|
||||||
PrivilegesRequiredOverrideText2=%1 can be installed for you only, or for all users (requires administrative privileges).
|
PrivilegesRequiredOverrideText2=%1 can be installed for you only, or for all users (requires administrative privileges).
|
||||||
PrivilegesRequiredOverrideAllUsers=Install for &all users
|
PrivilegesRequiredOverrideAllUsers=Install for &all users
|
||||||
PrivilegesRequiredOverrideAllUsersRecommended=Install for &all users (recommended)
|
PrivilegesRequiredOverrideAllUsersRecommended=Install for &all users (recommended)
|
||||||
PrivilegesRequiredOverrideCurrentUser=Install for &me only
|
PrivilegesRequiredOverrideCurrentUser=Install for &me only
|
||||||
PrivilegesRequiredOverrideCurrentUserRecommended=Install for &me only (recommended)
|
PrivilegesRequiredOverrideCurrentUserRecommended=Install for &me only (recommended)
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorCreatingDir=Cài đặt không thể tạo ra thư mục "%1"
|
ErrorCreatingDir=Cài đặt không thể tạo ra thư mục "%1"
|
||||||
ErrorTooManyFilesInDir=Không thể tạo một tệp trong thư mục "%1" vì nó chứa quá nhiều tệp
|
ErrorTooManyFilesInDir=Không thể tạo một tệp trong thư mục "%1" vì nó chứa quá nhiều tệp
|
||||||
|
|
||||||
; *** Setup common messages
|
; *** Setup common messages
|
||||||
ExitSetupTitle=Thoát cài đặt
|
ExitSetupTitle=Thoát cài đặt
|
||||||
ExitSetupMessage=Cài đặt chưa hoàn thành. Nếu bạn thoát bây giờ, chương trình sẽ không được cài đặt.%n%nBạn có thể chạy lại Cài đặt một lần khác để hoàn thành cài đặt.%n%nThoát ngay?
|
ExitSetupMessage=Cài đặt chưa hoàn thành. Nếu bạn thoát bây giờ, chương trình sẽ không được cài đặt.%n%nBạn có thể chạy lại Cài đặt một lần khác để hoàn thành cài đặt.%n%nThoát ngay?
|
||||||
AboutSetupMenuItem=&Về trình cài đặt...
|
AboutSetupMenuItem=&Về trình cài đặt...
|
||||||
AboutSetupTitle=Về trình cài đặt
|
AboutSetupTitle=Về trình cài đặt
|
||||||
AboutSetupMessage=%1 phiên bản %2%n%3%n%n%1 trang chủ:%n%4
|
AboutSetupMessage=%1 phiên bản %2%n%3%n%n%1 trang chủ:%n%4
|
||||||
AboutSetupNote=
|
AboutSetupNote=
|
||||||
TranslatorNote=Giao diện người dùng tiếng Việt bởi: Vũ Khắc Hiệp
|
TranslatorNote=Giao diện người dùng tiếng Việt bởi: Vũ Khắc Hiệp
|
||||||
|
|
||||||
; *** Buttons
|
; *** Buttons
|
||||||
ButtonBack=< &Trước
|
ButtonBack=< &Trước
|
||||||
ButtonNext=T&iếp >
|
ButtonNext=T&iếp >
|
||||||
ButtonInstall=&Cài đặt
|
ButtonInstall=&Cài đặt
|
||||||
ButtonOK=OK
|
ButtonOK=OK
|
||||||
ButtonCancel=Hủy
|
ButtonCancel=Hủy
|
||||||
ButtonYes=&Có
|
ButtonYes=&Có
|
||||||
ButtonYesToAll=Có c&ho tất cả
|
ButtonYesToAll=Có c&ho tất cả
|
||||||
ButtonNo=&Không
|
ButtonNo=&Không
|
||||||
ButtonNoToAll=Khô&ng cho tất cả
|
ButtonNoToAll=Khô&ng cho tất cả
|
||||||
ButtonFinish=&Hoàn thành
|
ButtonFinish=&Hoàn thành
|
||||||
ButtonBrowse=&Duyệt...
|
ButtonBrowse=&Duyệt...
|
||||||
ButtonWizardBrowse=D&uyệt...
|
ButtonWizardBrowse=D&uyệt...
|
||||||
ButtonNewFolder=Tạ&o thư mục mới
|
ButtonNewFolder=Tạ&o thư mục mới
|
||||||
|
|
||||||
; *** "Select Language" dialog messages
|
; *** "Select Language" dialog messages
|
||||||
SelectLanguageTitle=Chọn ngôn ngữ cài đặt
|
SelectLanguageTitle=Chọn ngôn ngữ cài đặt
|
||||||
SelectLanguageLabel=Chọn ngôn ngữ để sử dụng khi cài đặt:
|
SelectLanguageLabel=Chọn ngôn ngữ để sử dụng khi cài đặt:
|
||||||
|
|
||||||
; *** Common wizard text
|
; *** Common wizard text
|
||||||
ClickNext=Nhấn Tiếp để tiếp tục, hoặc Hủy để thoát cài đặt
|
ClickNext=Nhấn Tiếp để tiếp tục, hoặc Hủy để thoát cài đặt
|
||||||
BeveledLabel=
|
BeveledLabel=
|
||||||
BrowseDialogTitle=Tìm thư mục
|
BrowseDialogTitle=Tìm thư mục
|
||||||
BrowseDialogLabel=Chọn một thư mục trong danh sách sau rồi ấn OK.
|
BrowseDialogLabel=Chọn một thư mục trong danh sách sau rồi ấn OK.
|
||||||
NewFolderName=Tạo thư mục mới
|
NewFolderName=Tạo thư mục mới
|
||||||
|
|
||||||
; *** "Welcome" wizard page
|
; *** "Welcome" wizard page
|
||||||
WelcomeLabel1=Chào mừng tới trình cài đặt [name]
|
WelcomeLabel1=Chào mừng tới trình cài đặt [name]
|
||||||
WelcomeLabel2=Chương trình này sẽ cài [name/ver] trên máy tính của bạn.%n%nChúng tôi khuyên bạn đóng mọi chương trình khác lại trước khi cài đặt.
|
WelcomeLabel2=Chương trình này sẽ cài [name/ver] trên máy tính của bạn.%n%nChúng tôi khuyên bạn đóng mọi chương trình khác lại trước khi cài đặt.
|
||||||
|
|
||||||
; *** "Password" wizard page
|
; *** "Password" wizard page
|
||||||
WizardPassword=Mật khẩu
|
WizardPassword=Mật khẩu
|
||||||
PasswordLabel1=Việc cài đặt được bảo vệ bằng mật khẩu.
|
PasswordLabel1=Việc cài đặt được bảo vệ bằng mật khẩu.
|
||||||
PasswordLabel3=Hãy nhập mật khẩu, rồi nhấn Tiếp để tiếp tục. Mật khẩu phân biệt chữ hoa/thường.
|
PasswordLabel3=Hãy nhập mật khẩu, rồi nhấn Tiếp để tiếp tục. Mật khẩu phân biệt chữ hoa/thường.
|
||||||
PasswordEditLabel=&Mật khẩu:
|
PasswordEditLabel=&Mật khẩu:
|
||||||
IncorrectPassword=Mật khẩu bạn đã nhập không đúng. Hãy thử lại.
|
IncorrectPassword=Mật khẩu bạn đã nhập không đúng. Hãy thử lại.
|
||||||
|
|
||||||
; *** "License Agreement" wizard page
|
; *** "License Agreement" wizard page
|
||||||
WizardLicense=Thỏa thuận cấp phép
|
WizardLicense=Thỏa thuận cấp phép
|
||||||
LicenseLabel=Hãy đọc những thông tin quan trọng sau trước khi tiếp tục.
|
LicenseLabel=Hãy đọc những thông tin quan trọng sau trước khi tiếp tục.
|
||||||
LicenseLabel3=Hãy đọc Thỏa thuận cấp phép sau. Bạn phải chấp nhận các điều khoản của cài đặt này trước khi tiếp tục.
|
LicenseLabel3=Hãy đọc Thỏa thuận cấp phép sau. Bạn phải chấp nhận các điều khoản của cài đặt này trước khi tiếp tục.
|
||||||
LicenseAccepted=Tô&i chấp nhận thỏa thuận
|
LicenseAccepted=Tô&i chấp nhận thỏa thuận
|
||||||
LicenseNotAccepted=Tôi khôn&g chấp nhận thỏa thuận
|
LicenseNotAccepted=Tôi khôn&g chấp nhận thỏa thuận
|
||||||
|
|
||||||
; *** "Information" wizard pages
|
; *** "Information" wizard pages
|
||||||
WizardInfoBefore=Thông tin
|
WizardInfoBefore=Thông tin
|
||||||
InfoBeforeLabel=Hãy đọc những thông tin quan trọng sau trước khi tiếp tục.
|
InfoBeforeLabel=Hãy đọc những thông tin quan trọng sau trước khi tiếp tục.
|
||||||
InfoBeforeClickLabel=Khi bạn đã sẵn sàng cài đặt tiếp, click Tiếp.
|
InfoBeforeClickLabel=Khi bạn đã sẵn sàng cài đặt tiếp, click Tiếp.
|
||||||
WizardInfoAfter=Thông tin
|
WizardInfoAfter=Thông tin
|
||||||
InfoAfterLabel=Hãy đọc những thông tin quan trọng sau trước khi tiếp tục.
|
InfoAfterLabel=Hãy đọc những thông tin quan trọng sau trước khi tiếp tục.
|
||||||
InfoAfterClickLabel=Khi bạn đã sẵn sàng cài đặt tiếp, click Tiếp.
|
InfoAfterClickLabel=Khi bạn đã sẵn sàng cài đặt tiếp, click Tiếp.
|
||||||
|
|
||||||
; *** "User Information" wizard page
|
; *** "User Information" wizard page
|
||||||
WizardUserInfo=Thông tin người dùng
|
WizardUserInfo=Thông tin người dùng
|
||||||
UserInfoDesc=Hãy nhập thông tin của bạn.
|
UserInfoDesc=Hãy nhập thông tin của bạn.
|
||||||
UserInfoName=Tên n&gười dùng:
|
UserInfoName=Tên n&gười dùng:
|
||||||
UserInfoOrg=Tổ c&hức:
|
UserInfoOrg=Tổ c&hức:
|
||||||
UserInfoSerial=&Số serial:
|
UserInfoSerial=&Số serial:
|
||||||
UserInfoNameRequired=Bạn phải nhập một tên.
|
UserInfoNameRequired=Bạn phải nhập một tên.
|
||||||
|
|
||||||
; *** "Select Destination Location" wizard page
|
; *** "Select Destination Location" wizard page
|
||||||
WizardSelectDir=Chọn vị trí cài đặt
|
WizardSelectDir=Chọn vị trí cài đặt
|
||||||
SelectDirDesc=[name] nên được cài đặt ở đâu?
|
SelectDirDesc=[name] nên được cài đặt ở đâu?
|
||||||
SelectDirLabel3=[name] sẽ được cài đặt vào thư mục sau:
|
SelectDirLabel3=[name] sẽ được cài đặt vào thư mục sau:
|
||||||
SelectDirBrowseLabel=Để tiếp tục. nhấn Tiếp. Nếu bạn muốn chọn một thư mục khác, nhấn Duyệt.
|
SelectDirBrowseLabel=Để tiếp tục. nhấn Tiếp. Nếu bạn muốn chọn một thư mục khác, nhấn Duyệt.
|
||||||
DiskSpaceGBLabel=Cần có ít nhất [gb] GB ổ đĩa trống.
|
DiskSpaceGBLabel=Cần có ít nhất [gb] GB ổ đĩa trống.
|
||||||
DiskSpaceMBLabel=Cần có ít nhất [mb] MB ổ đĩa trống.
|
DiskSpaceMBLabel=Cần có ít nhất [mb] MB ổ đĩa trống.
|
||||||
CannotInstallToNetworkDrive=Cài đặt không thể cài vào một ổ đĩa mạng.
|
CannotInstallToNetworkDrive=Cài đặt không thể cài vào một ổ đĩa mạng.
|
||||||
CannotInstallToUNCPath=Cài đặt không thể cài vào đường dẫn UNC.
|
CannotInstallToUNCPath=Cài đặt không thể cài vào đường dẫn UNC.
|
||||||
InvalidPath=Bạn phải nhập đường dẫn đầy đủ với chữ cái ổ đĩa, ví dụ:%n%nC:\APP%n%nhoặc một đường dẫn UNC theo mẫu:%n%n\\server\share
|
InvalidPath=Bạn phải nhập đường dẫn đầy đủ với chữ cái ổ đĩa, ví dụ:%n%nC:\APP%n%nhoặc một đường dẫn UNC theo mẫu:%n%n\\server\share
|
||||||
InvalidDrive=Ổ đĩa hoặc chia sẻ UNC bạn đã chọn không tồn tại hoặc không truy cập được. Hãy chọn cái khác.
|
InvalidDrive=Ổ đĩa hoặc chia sẻ UNC bạn đã chọn không tồn tại hoặc không truy cập được. Hãy chọn cái khác.
|
||||||
DiskSpaceWarningTitle=Không đủ dung lượng đĩa
|
DiskSpaceWarningTitle=Không đủ dung lượng đĩa
|
||||||
DiskSpaceWarning=Cài đặt yêu cầu ít nhất %1 KB dung lượng trống để cài đặt, nhưng ổ đĩa đã chọn chỉ còn %2KB.%n%nBạn muốn tiếp tục bằng mọi giá?
|
DiskSpaceWarning=Cài đặt yêu cầu ít nhất %1 KB dung lượng trống để cài đặt, nhưng ổ đĩa đã chọn chỉ còn %2KB.%n%nBạn muốn tiếp tục bằng mọi giá?
|
||||||
DirNameTooLong=Tên thư mục hoặc đường dẫn quá dài.
|
DirNameTooLong=Tên thư mục hoặc đường dẫn quá dài.
|
||||||
InvalidDirName=Tên thư mục không hợp lệ.
|
InvalidDirName=Tên thư mục không hợp lệ.
|
||||||
BadDirName32=Tên thư mục không được chứa các kí tự sau:%n%n%1
|
BadDirName32=Tên thư mục không được chứa các kí tự sau:%n%n%1
|
||||||
DirExistsTitle=Thư mục đã tồn tại
|
DirExistsTitle=Thư mục đã tồn tại
|
||||||
DirExists=Thư mục:%n%n%1%n%nđã tồn tại. Bạn có muốn cài đặt vào thư mục đó bằng mọi giá?
|
DirExists=Thư mục:%n%n%1%n%nđã tồn tại. Bạn có muốn cài đặt vào thư mục đó bằng mọi giá?
|
||||||
DirDoesntExistTitle=Thư mục không tồn tại
|
DirDoesntExistTitle=Thư mục không tồn tại
|
||||||
DirDoesntExist=Thư mục:%n%n%1%n%nkhông tồn tại. Bạn có muốn tạo thư mục không?
|
DirDoesntExist=Thư mục:%n%n%1%n%nkhông tồn tại. Bạn có muốn tạo thư mục không?
|
||||||
|
|
||||||
; *** "Select Components" wizard page
|
; *** "Select Components" wizard page
|
||||||
WizardSelectComponents=Chọn các thành phần
|
WizardSelectComponents=Chọn các thành phần
|
||||||
SelectComponentsDesc=Những thành phần nào nên được cài đặt?
|
SelectComponentsDesc=Những thành phần nào nên được cài đặt?
|
||||||
SelectComponentsLabel2=Chọn các thành phần bạn muốn cài đặt, bỏ chọn các thành phần bạn không muốn. Click Tiếp khi bạn đã sẵn sàng để tiếp tục.
|
SelectComponentsLabel2=Chọn các thành phần bạn muốn cài đặt, bỏ chọn các thành phần bạn không muốn. Click Tiếp khi bạn đã sẵn sàng để tiếp tục.
|
||||||
FullInstallation=Cài đặt đầy đủ
|
FullInstallation=Cài đặt đầy đủ
|
||||||
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
||||||
CompactInstallation=Cài đặt rút gọn
|
CompactInstallation=Cài đặt rút gọn
|
||||||
CustomInstallation=Cài đặt tủy chỉnh
|
CustomInstallation=Cài đặt tủy chỉnh
|
||||||
NoUninstallWarningTitle=Thành phần đã tồn tại
|
NoUninstallWarningTitle=Thành phần đã tồn tại
|
||||||
NoUninstallWarning=Cài đặt phát hiện các thành phần sau đã được cài đặt trên máy tính của bạn:%n%n%1%n%nBỏ chọn những thành phần này sẽ không cài đặt chúng.%n%nBạn có muốn tiếp tục bằng mọi giá?
|
NoUninstallWarning=Cài đặt phát hiện các thành phần sau đã được cài đặt trên máy tính của bạn:%n%n%1%n%nBỏ chọn những thành phần này sẽ không cài đặt chúng.%n%nBạn có muốn tiếp tục bằng mọi giá?
|
||||||
ComponentSize1=%1 KB
|
ComponentSize1=%1 KB
|
||||||
ComponentSize2=%1 MB
|
ComponentSize2=%1 MB
|
||||||
ComponentsDiskSpaceGBLabel=Lựa chọn này yêu cầu ít nhất [gb] GB không gian đĩa.
|
ComponentsDiskSpaceGBLabel=Lựa chọn này yêu cầu ít nhất [gb] GB không gian đĩa.
|
||||||
ComponentsDiskSpaceMBLabel=Lựa chọn này yêu cầu ít nhất [mb] MB không gian đĩa.
|
ComponentsDiskSpaceMBLabel=Lựa chọn này yêu cầu ít nhất [mb] MB không gian đĩa.
|
||||||
|
|
||||||
; *** "Select Additional Tasks" wizard page
|
; *** "Select Additional Tasks" wizard page
|
||||||
WizardSelectTasks=Chọn các tác vụ bổ sung
|
WizardSelectTasks=Chọn các tác vụ bổ sung
|
||||||
SelectTasksDesc=Các tác vụ bổ sung nào nên được thực hiện?
|
SelectTasksDesc=Các tác vụ bổ sung nào nên được thực hiện?
|
||||||
SelectTasksLabel2=Chọn các tác vụ bổ sung mà bạn muốn cài đặt thực hiện khi cài đặt [name], rồi nhấn Tiếp.
|
SelectTasksLabel2=Chọn các tác vụ bổ sung mà bạn muốn cài đặt thực hiện khi cài đặt [name], rồi nhấn Tiếp.
|
||||||
|
|
||||||
; *** "Select Start Menu Folder" wizard page
|
; *** "Select Start Menu Folder" wizard page
|
||||||
WizardSelectProgramGroup=Chọn thư mục bắt đầu
|
WizardSelectProgramGroup=Chọn thư mục bắt đầu
|
||||||
SelectStartMenuFolderDesc=Các lối tắt đến chương trình nên được đặt ở đâu?
|
SelectStartMenuFolderDesc=Các lối tắt đến chương trình nên được đặt ở đâu?
|
||||||
SelectStartMenuFolderLabel3=Cài đặt sẽ tạo các lối tắt đến chương trình trong thư mục bắt đầu sau.
|
SelectStartMenuFolderLabel3=Cài đặt sẽ tạo các lối tắt đến chương trình trong thư mục bắt đầu sau.
|
||||||
SelectStartMenuFolderBrowseLabel=Để tiếp tục, click Tiếp. Nếu bạn muốn chọn thư mục khác, click Duyệt.
|
SelectStartMenuFolderBrowseLabel=Để tiếp tục, click Tiếp. Nếu bạn muốn chọn thư mục khác, click Duyệt.
|
||||||
MustEnterGroupName=Bạn phải nhập tên một thư mục.
|
MustEnterGroupName=Bạn phải nhập tên một thư mục.
|
||||||
GroupNameTooLong=Tên thư mục hoặc đường dẫn quá dài.
|
GroupNameTooLong=Tên thư mục hoặc đường dẫn quá dài.
|
||||||
InvalidGroupName=Tên thư mục không hợp lệ.
|
InvalidGroupName=Tên thư mục không hợp lệ.
|
||||||
BadGroupName=Tên thư mục không được chứa các kí tự sau:%n%n%1
|
BadGroupName=Tên thư mục không được chứa các kí tự sau:%n%n%1
|
||||||
NoProgramGroupCheck2=&Không tạo thư mục bắt đầu
|
NoProgramGroupCheck2=&Không tạo thư mục bắt đầu
|
||||||
|
|
||||||
; *** "Ready to Install" wizard page
|
; *** "Ready to Install" wizard page
|
||||||
WizardReady=Sẵn sàng cài đặt
|
WizardReady=Sẵn sàng cài đặt
|
||||||
ReadyLabel1=[name] đã sẵn sàng để dược cài đặt trên máy tính của bạn.
|
ReadyLabel1=[name] đã sẵn sàng để dược cài đặt trên máy tính của bạn.
|
||||||
ReadyLabel2a=Click Cài đặt để tiếp tục, hoặc click Trước nếu bạn muốn xem lại/thay đổi bất kì cài đặt nào.
|
ReadyLabel2a=Click Cài đặt để tiếp tục, hoặc click Trước nếu bạn muốn xem lại/thay đổi bất kì cài đặt nào.
|
||||||
ReadyLabel2b=Click Cài đặt để tiếp tục cài đặt.
|
ReadyLabel2b=Click Cài đặt để tiếp tục cài đặt.
|
||||||
ReadyMemoUserInfo=Thông tin người dùng:
|
ReadyMemoUserInfo=Thông tin người dùng:
|
||||||
ReadyMemoDir=Vị trí đích:
|
ReadyMemoDir=Vị trí đích:
|
||||||
ReadyMemoType=Kiểu cài đặt:
|
ReadyMemoType=Kiểu cài đặt:
|
||||||
ReadyMemoComponents=Các thành phần được chọn:
|
ReadyMemoComponents=Các thành phần được chọn:
|
||||||
ReadyMemoGroup=Thư mục bắt đầu:
|
ReadyMemoGroup=Thư mục bắt đầu:
|
||||||
ReadyMemoTasks=Các tác vụ bổ sung:
|
ReadyMemoTasks=Các tác vụ bổ sung:
|
||||||
|
|
||||||
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
||||||
DownloadingLabel=Đang tải các tập tin bổ sung...
|
DownloadingLabel=Đang tải các tập tin bổ sung...
|
||||||
ButtonStopDownload=&Dừng tải xuống
|
ButtonStopDownload=&Dừng tải xuống
|
||||||
StopDownload=Bạn có chắc chắn muốn dừng tải xuống không?
|
StopDownload=Bạn có chắc chắn muốn dừng tải xuống không?
|
||||||
ErrorDownloadAborted=Tải xuống bị hủy bỏ
|
ErrorDownloadAborted=Tải xuống bị hủy bỏ
|
||||||
ErrorDownloadFailed=Tải xuống không thành công: %1 %2
|
ErrorDownloadFailed=Tải xuống không thành công: %1 %2
|
||||||
ErrorDownloadSizeFailed=Getting size failed: %1 %2
|
ErrorDownloadSizeFailed=Getting size failed: %1 %2
|
||||||
ErrorFileHash1=File hash failed: %1
|
ErrorFileHash1=File hash failed: %1
|
||||||
ErrorFileHash2=Invalid file hash: expected %1, found %2
|
ErrorFileHash2=Invalid file hash: expected %1, found %2
|
||||||
ErrorProgress=Invalid progress: %1 of %2
|
ErrorProgress=Invalid progress: %1 of %2
|
||||||
ErrorFileSize=Invalid file size: expected %1, found %2
|
ErrorFileSize=Invalid file size: expected %1, found %2
|
||||||
|
|
||||||
; *** "Preparing to Install" wizard page
|
; *** "Preparing to Install" wizard page
|
||||||
WizardPreparing=Chuẩn bị cài đặt
|
WizardPreparing=Chuẩn bị cài đặt
|
||||||
PreparingDesc=[name] đang chuẩn bị được cài đặt trên máy tính của bạn.
|
PreparingDesc=[name] đang chuẩn bị được cài đặt trên máy tính của bạn.
|
||||||
PreviousInstallNotCompleted=Việc cài đặt/gỡ bỏ một chương trình chưa được hoàn tất trước đó. Bạn sẽ phải khởi động lại máy tính để hoàn tất cài đặt đó.%n%nSau khi chởi động lại, chạy Cài đặt một lần nữa để hoàn tất cài đặt [name].
|
PreviousInstallNotCompleted=Việc cài đặt/gỡ bỏ một chương trình chưa được hoàn tất trước đó. Bạn sẽ phải khởi động lại máy tính để hoàn tất cài đặt đó.%n%nSau khi chởi động lại, chạy Cài đặt một lần nữa để hoàn tất cài đặt [name].
|
||||||
CannotContinue=Cài đặt không thể tiếp tục. Nhấn Hủy để thoát.
|
CannotContinue=Cài đặt không thể tiếp tục. Nhấn Hủy để thoát.
|
||||||
ApplicationsFound=Những chương trình sau đang sử dụng các tệp cần được cập nhật bởi trình cài đặt. Chúng tôi khuyên bạn cho phép Cài đặt đóng các chương trình này.
|
ApplicationsFound=Những chương trình sau đang sử dụng các tệp cần được cập nhật bởi trình cài đặt. Chúng tôi khuyên bạn cho phép Cài đặt đóng các chương trình này.
|
||||||
ApplicationsFound2=Những chương trình sau đang sử dụng các tệp cần được cập nhật bởi trình cài đặt. Chúng tôi khuyên bạn cho phép Cài đặt đóng các chương trình này. Sau khi hoàn thành cài đặt, chúng tôi sẽ thử khởi động lại các chương trình này.
|
ApplicationsFound2=Những chương trình sau đang sử dụng các tệp cần được cập nhật bởi trình cài đặt. Chúng tôi khuyên bạn cho phép Cài đặt đóng các chương trình này. Sau khi hoàn thành cài đặt, chúng tôi sẽ thử khởi động lại các chương trình này.
|
||||||
CloseApplications=Tự độn&g đóng các chương trình này
|
CloseApplications=Tự độn&g đóng các chương trình này
|
||||||
DontCloseApplications=Không đóng các chương t&rình này
|
DontCloseApplications=Không đóng các chương t&rình này
|
||||||
ErrorCloseApplications=Cài đặt không thể đóng mọi chương trình. Chúng tôi khuyên bạn đóng các chương trình đang sử dụng các tệp cần được cập nhật bởi Cài đặt một cách thủ công trước khi tiếp tục.
|
ErrorCloseApplications=Cài đặt không thể đóng mọi chương trình. Chúng tôi khuyên bạn đóng các chương trình đang sử dụng các tệp cần được cập nhật bởi Cài đặt một cách thủ công trước khi tiếp tục.
|
||||||
PrepareToInstallNeedsRestart=Setup must restart your computer. After restarting your computer, run Setup again to complete the installation of [name].%n%nWould you like to restart now?
|
PrepareToInstallNeedsRestart=Setup must restart your computer. After restarting your computer, run Setup again to complete the installation of [name].%n%nWould you like to restart now?
|
||||||
|
|
||||||
; *** "Installing" wizard page
|
; *** "Installing" wizard page
|
||||||
WizardInstalling=Đang cài đặt
|
WizardInstalling=Đang cài đặt
|
||||||
InstallingLabel=Hãy đợi khi [name] đang được cài đặt trên máy tính của bạn.
|
InstallingLabel=Hãy đợi khi [name] đang được cài đặt trên máy tính của bạn.
|
||||||
|
|
||||||
; *** "Setup Completed" wizard page
|
; *** "Setup Completed" wizard page
|
||||||
FinishedHeadingLabel=Hoàn thành cài đặt [name]
|
FinishedHeadingLabel=Hoàn thành cài đặt [name]
|
||||||
FinishedLabelNoIcons=[name] đã được cài đặt xong trên máy tính của bạn.
|
FinishedLabelNoIcons=[name] đã được cài đặt xong trên máy tính của bạn.
|
||||||
FinishedLabel=[name] đã được cài đặt xong trên máy tính của bạn. Chương trình có thể được khởi động bằng cách click vào lối tắt đến chương trình.
|
FinishedLabel=[name] đã được cài đặt xong trên máy tính của bạn. Chương trình có thể được khởi động bằng cách click vào lối tắt đến chương trình.
|
||||||
ClickFinish=Click Hoàn thành để thoát Cài đặt.
|
ClickFinish=Click Hoàn thành để thoát Cài đặt.
|
||||||
FinishedRestartLabel=Để hoàn thành cài đặt [name], máy tính của bạn cần đươc khởi động lại. Bạn có muốn khởi động lại ngay?
|
FinishedRestartLabel=Để hoàn thành cài đặt [name], máy tính của bạn cần đươc khởi động lại. Bạn có muốn khởi động lại ngay?
|
||||||
FinishedRestartMessage=Để hoàn thành cài đặt [name], máy tính của bạn cần đươc khởi động lại.%n%nBạn có muốn khởi động lại ngay?
|
FinishedRestartMessage=Để hoàn thành cài đặt [name], máy tính của bạn cần đươc khởi động lại.%n%nBạn có muốn khởi động lại ngay?
|
||||||
ShowReadmeCheck=Có, tôi muốn xem tệp README
|
ShowReadmeCheck=Có, tôi muốn xem tệp README
|
||||||
YesRadio=&Có, khởi động lại máy tính ngay
|
YesRadio=&Có, khởi động lại máy tính ngay
|
||||||
NoRadio=&Không, tôi sẽ khởi động lại máy tính sau
|
NoRadio=&Không, tôi sẽ khởi động lại máy tính sau
|
||||||
; used for example as 'Run MyProg.exe'
|
; used for example as 'Run MyProg.exe'
|
||||||
RunEntryExec=Chạy %1
|
RunEntryExec=Chạy %1
|
||||||
; used for example as 'View Readme.txt'
|
; used for example as 'View Readme.txt'
|
||||||
RunEntryShellExec=Xem %1
|
RunEntryShellExec=Xem %1
|
||||||
|
|
||||||
; *** "Setup Needs the Next Disk" stuff
|
; *** "Setup Needs the Next Disk" stuff
|
||||||
ChangeDiskTitle=Cài đặt cần đĩa tiếp theo
|
ChangeDiskTitle=Cài đặt cần đĩa tiếp theo
|
||||||
SelectDiskLabel2=Hãy chèn đĩa %1 và click OK.%n%nNếu các tệp trên đĩa này có thể được tìm thấy trên một thư mục khác với được hiển thị dưới đây, nhập đường dẫn hoặc click Duyệt.
|
SelectDiskLabel2=Hãy chèn đĩa %1 và click OK.%n%nNếu các tệp trên đĩa này có thể được tìm thấy trên một thư mục khác với được hiển thị dưới đây, nhập đường dẫn hoặc click Duyệt.
|
||||||
PathLabel=Đườ&ng dẫn:
|
PathLabel=Đườ&ng dẫn:
|
||||||
FileNotInDir2=Tệp "%1" không thể được xác định trong "%2". Hãy chọn đia xđúng hoặc chọn thư mục khác.
|
FileNotInDir2=Tệp "%1" không thể được xác định trong "%2". Hãy chọn đia xđúng hoặc chọn thư mục khác.
|
||||||
SelectDirectoryLabel=Hãy chọn vị trí của đĩa tiếp theo.
|
SelectDirectoryLabel=Hãy chọn vị trí của đĩa tiếp theo.
|
||||||
|
|
||||||
; *** Installation phase messages
|
; *** Installation phase messages
|
||||||
SetupAborted=Cài đặt không được hoàn thành.%n%nHãy sửa lỗi và chạy Cài đặt lại.
|
SetupAborted=Cài đặt không được hoàn thành.%n%nHãy sửa lỗi và chạy Cài đặt lại.
|
||||||
AbortRetryIgnoreSelectAction=Chọn hành động
|
AbortRetryIgnoreSelectAction=Chọn hành động
|
||||||
AbortRetryIgnoreRetry=&Thử lại
|
AbortRetryIgnoreRetry=&Thử lại
|
||||||
AbortRetryIgnoreIgnore=&Bỏ qua lỗi và tiếp tục
|
AbortRetryIgnoreIgnore=&Bỏ qua lỗi và tiếp tục
|
||||||
AbortRetryIgnoreCancel=Hủy
|
AbortRetryIgnoreCancel=Hủy
|
||||||
|
|
||||||
; *** Installation status messages
|
; *** Installation status messages
|
||||||
StatusClosingApplications=Đang đóng các chương trình...
|
StatusClosingApplications=Đang đóng các chương trình...
|
||||||
StatusCreateDirs=Đang tạo các thư mục...
|
StatusCreateDirs=Đang tạo các thư mục...
|
||||||
StatusExtractFiles=Đang giải nén các tệp...
|
StatusExtractFiles=Đang giải nén các tệp...
|
||||||
StatusCreateIcons=Đang tạo các lối tắt...
|
StatusCreateIcons=Đang tạo các lối tắt...
|
||||||
StatusCreateIniEntries=Đang tạo các đầu vào INI...
|
StatusCreateIniEntries=Đang tạo các đầu vào INI...
|
||||||
StatusCreateRegistryEntries=Đang tạo các đầu vào registry...
|
StatusCreateRegistryEntries=Đang tạo các đầu vào registry...
|
||||||
StatusRegisterFiles=Đang đăng kí các tệp...
|
StatusRegisterFiles=Đang đăng kí các tệp...
|
||||||
StatusSavingUninstall=Đang lưu thông tin gỡ cài đặt...
|
StatusSavingUninstall=Đang lưu thông tin gỡ cài đặt...
|
||||||
StatusRunProgram=Đang hoàn thành cài đặt...
|
StatusRunProgram=Đang hoàn thành cài đặt...
|
||||||
StatusRestartingApplications=Đang khởi động lại các chương trình...
|
StatusRestartingApplications=Đang khởi động lại các chương trình...
|
||||||
StatusRollback=Đang hoàn lại các thay đổi...
|
StatusRollback=Đang hoàn lại các thay đổi...
|
||||||
|
|
||||||
; *** Misc. errors
|
; *** Misc. errors
|
||||||
ErrorInternal2=Lỗi nội bộ: %1
|
ErrorInternal2=Lỗi nội bộ: %1
|
||||||
ErrorFunctionFailedNoCode=%1 thất bại
|
ErrorFunctionFailedNoCode=%1 thất bại
|
||||||
ErrorFunctionFailed=%1 thất bại với mã lỗi %2
|
ErrorFunctionFailed=%1 thất bại với mã lỗi %2
|
||||||
ErrorFunctionFailedWithMessage=%1 thất bại với mã lỗi %2.%n%3
|
ErrorFunctionFailedWithMessage=%1 thất bại với mã lỗi %2.%n%3
|
||||||
ErrorExecutingProgram=Không thể chạy tệp:%n%1
|
ErrorExecutingProgram=Không thể chạy tệp:%n%1
|
||||||
|
|
||||||
; *** Registry errors
|
; *** Registry errors
|
||||||
ErrorRegOpenKey=Lỗi khi mở registry:%n%1\%2
|
ErrorRegOpenKey=Lỗi khi mở registry:%n%1\%2
|
||||||
ErrorRegCreateKey=Lỗi khi tạo registry:%n%1\%2
|
ErrorRegCreateKey=Lỗi khi tạo registry:%n%1\%2
|
||||||
ErrorRegWriteKey=Lỗi khi viết registry:%n%1\%2
|
ErrorRegWriteKey=Lỗi khi viết registry:%n%1\%2
|
||||||
|
|
||||||
; *** INI errors
|
; *** INI errors
|
||||||
ErrorIniEntry=Lỗi tạo đầu vào INI cho tệp "%1".
|
ErrorIniEntry=Lỗi tạo đầu vào INI cho tệp "%1".
|
||||||
|
|
||||||
; *** File copying errors
|
; *** File copying errors
|
||||||
FileAbortRetryIgnoreSkipNotRecommended=&Bỏ qua tệp này (không khuyến nghị)
|
FileAbortRetryIgnoreSkipNotRecommended=&Bỏ qua tệp này (không khuyến nghị)
|
||||||
FileAbortRetryIgnoreIgnoreNotRecommended=&Bỏ qua để tiếp tục bằng mọi giá (không khuyến nghị)
|
FileAbortRetryIgnoreIgnoreNotRecommended=&Bỏ qua để tiếp tục bằng mọi giá (không khuyến nghị)
|
||||||
SourceIsCorrupted=Tệp nguồn bị hỏng
|
SourceIsCorrupted=Tệp nguồn bị hỏng
|
||||||
SourceDoesntExist=Tệp nguồn "%1" không tồn tại
|
SourceDoesntExist=Tệp nguồn "%1" không tồn tại
|
||||||
ExistingFileReadOnly2=Tệp đã tồn tại với đánh dấu chỉ đọc.
|
ExistingFileReadOnly2=Tệp đã tồn tại với đánh dấu chỉ đọc.
|
||||||
ExistingFileReadOnlyRetry=&Xóa thuộc tính chỉ đọc và thử lại
|
ExistingFileReadOnlyRetry=&Xóa thuộc tính chỉ đọc và thử lại
|
||||||
ExistingFileReadOnlyKeepExisting=&Giữ tập tin hiện có
|
ExistingFileReadOnlyKeepExisting=&Giữ tập tin hiện có
|
||||||
ErrorReadingExistingDest=Một lỗi đã xảy ra khi đọc tệp:
|
ErrorReadingExistingDest=Một lỗi đã xảy ra khi đọc tệp:
|
||||||
FileExistsSelectAction=Select action
|
FileExistsSelectAction=Select action
|
||||||
FileExists2=Tệp đã tồn tại.
|
FileExists2=Tệp đã tồn tại.
|
||||||
FileExistsOverwriteExisting=G&hi đè tệp hiện có
|
FileExistsOverwriteExisting=G&hi đè tệp hiện có
|
||||||
FileExistsKeepExisting=&Giữ tệp hiện có
|
FileExistsKeepExisting=&Giữ tệp hiện có
|
||||||
FileExistsOverwriteOrKeepAll=&Do this for the next conflicts
|
FileExistsOverwriteOrKeepAll=&Do this for the next conflicts
|
||||||
ExistingFileNewerSelectAction=Select action
|
ExistingFileNewerSelectAction=Select action
|
||||||
ExistingFileNewer2=Tệp hiện có mới hơn tệp mà Thiết lập đang cố gắng cài đặt.
|
ExistingFileNewer2=Tệp hiện có mới hơn tệp mà Thiết lập đang cố gắng cài đặt.
|
||||||
ExistingFileNewerOverwriteExisting=&Ghi đè tệp hiện có
|
ExistingFileNewerOverwriteExisting=&Ghi đè tệp hiện có
|
||||||
ExistingFileNewerKeepExisting=&Giữ tệp hiện có (khuyến nghị)
|
ExistingFileNewerKeepExisting=&Giữ tệp hiện có (khuyến nghị)
|
||||||
ExistingFileNewerOverwriteOrKeepAll=&Do this for the next conflicts
|
ExistingFileNewerOverwriteOrKeepAll=&Do this for the next conflicts
|
||||||
ErrorChangingAttr=Một lỗi đã xảy ra khi thay đổi thuộc tính của tệp sau:
|
ErrorChangingAttr=Một lỗi đã xảy ra khi thay đổi thuộc tính của tệp sau:
|
||||||
ErrorCreatingTemp=Một lỗi đã xảy ra khi tạo một tệp trong thư mục đích:
|
ErrorCreatingTemp=Một lỗi đã xảy ra khi tạo một tệp trong thư mục đích:
|
||||||
ErrorReadingSource=Một lỗi đã xảy ra khi đọc tệp nguồn:
|
ErrorReadingSource=Một lỗi đã xảy ra khi đọc tệp nguồn:
|
||||||
ErrorCopying=Một lỗi đã xảy ra khi sao chép tệp:
|
ErrorCopying=Một lỗi đã xảy ra khi sao chép tệp:
|
||||||
ErrorReplacingExistingFile=Một lỗi đã xảy ra khi thay thế tệp:
|
ErrorReplacingExistingFile=Một lỗi đã xảy ra khi thay thế tệp:
|
||||||
ErrorRestartReplace=Khởi động lại & Thay thế (RestartReplace) thất bại:
|
ErrorRestartReplace=Khởi động lại & Thay thế (RestartReplace) thất bại:
|
||||||
ErrorRenamingTemp=Một lỗi đã xảy ra khi đổi tên tệp trong thư mục đích:
|
ErrorRenamingTemp=Một lỗi đã xảy ra khi đổi tên tệp trong thư mục đích:
|
||||||
ErrorRegisterServer=Không thể đăng kí DLL/OCX: %1
|
ErrorRegisterServer=Không thể đăng kí DLL/OCX: %1
|
||||||
ErrorRegSvr32Failed=RegSvr32 thất bại với mã thoát %1
|
ErrorRegSvr32Failed=RegSvr32 thất bại với mã thoát %1
|
||||||
ErrorRegisterTypeLib=Không thể đăng kí thư viện kiểu: %1
|
ErrorRegisterTypeLib=Không thể đăng kí thư viện kiểu: %1
|
||||||
|
|
||||||
; *** Uninstall display name markings
|
; *** Uninstall display name markings
|
||||||
; used for example as 'My Program (32-bit)'
|
; used for example as 'My Program (32-bit)'
|
||||||
UninstallDisplayNameMark=%1 (%2)
|
UninstallDisplayNameMark=%1 (%2)
|
||||||
; used for example as 'My Program (32-bit, All users)'
|
; used for example as 'My Program (32-bit, All users)'
|
||||||
UninstallDisplayNameMarks=%1 (%2, %3)
|
UninstallDisplayNameMarks=%1 (%2, %3)
|
||||||
UninstallDisplayNameMark32Bit=32-bit
|
UninstallDisplayNameMark32Bit=32-bit
|
||||||
UninstallDisplayNameMark64Bit=64-bit
|
UninstallDisplayNameMark64Bit=64-bit
|
||||||
UninstallDisplayNameMarkAllUsers=All users
|
UninstallDisplayNameMarkAllUsers=All users
|
||||||
UninstallDisplayNameMarkCurrentUser=Current user
|
UninstallDisplayNameMarkCurrentUser=Current user
|
||||||
|
|
||||||
; *** Post-installation errors
|
; *** Post-installation errors
|
||||||
ErrorOpeningReadme=Một lỗi đã xảy ra khi mở tệp README.
|
ErrorOpeningReadme=Một lỗi đã xảy ra khi mở tệp README.
|
||||||
ErrorRestartingComputer=Cài đặt không thể khởi động lại máy tính. Hãy làm việc này một cách thủ công.
|
ErrorRestartingComputer=Cài đặt không thể khởi động lại máy tính. Hãy làm việc này một cách thủ công.
|
||||||
|
|
||||||
; *** Uninstaller messages
|
; *** Uninstaller messages
|
||||||
UninstallNotFound=Tệp "%1" không tồn tại. Không thể gỡ cài đặt.
|
UninstallNotFound=Tệp "%1" không tồn tại. Không thể gỡ cài đặt.
|
||||||
UninstallOpenError=Tệp "%1" không thể được mở. Không thể gỡ cài đặt
|
UninstallOpenError=Tệp "%1" không thể được mở. Không thể gỡ cài đặt
|
||||||
UninstallUnsupportedVer=Tệp nhật kí gỡ cài đặt "%1" có định dạng không thể được xác định bởi phiên bản gỡ cài đặt này. Không thể gỡ cài đặt
|
UninstallUnsupportedVer=Tệp nhật kí gỡ cài đặt "%1" có định dạng không thể được xác định bởi phiên bản gỡ cài đặt này. Không thể gỡ cài đặt
|
||||||
UninstallUnknownEntry=Một đầu vào không xác định (%1) đã bị phát hiện trong nhật kí gỡ cài đặt
|
UninstallUnknownEntry=Một đầu vào không xác định (%1) đã bị phát hiện trong nhật kí gỡ cài đặt
|
||||||
ConfirmUninstall=Bạn có chắc chắn muốn chạy trình gỡ cài đặt %1 không?
|
ConfirmUninstall=Bạn có chắc chắn muốn chạy trình gỡ cài đặt %1 không?
|
||||||
UninstallOnlyOnWin64=Cài đặt này chỉ có thể được gỡ bỏ trên Windows 64 bit.
|
UninstallOnlyOnWin64=Cài đặt này chỉ có thể được gỡ bỏ trên Windows 64 bit.
|
||||||
OnlyAdminCanUninstall=Cài đặt này chỉ có thể được gỡ bỏ bằng một người dùng có quyền người quản trị.
|
OnlyAdminCanUninstall=Cài đặt này chỉ có thể được gỡ bỏ bằng một người dùng có quyền người quản trị.
|
||||||
UninstallStatusLabel=Hãy đợi khi %1 được gỡ khỏi máy tính của bạn.
|
UninstallStatusLabel=Hãy đợi khi %1 được gỡ khỏi máy tính của bạn.
|
||||||
UninstalledAll=%1 đã được gỡ bỏ thành công khỏi máy tính của bạn.
|
UninstalledAll=%1 đã được gỡ bỏ thành công khỏi máy tính của bạn.
|
||||||
UninstalledMost=%1 đã được gỡ bỏ thành công.%n%nMột số thành phần không thể được gỡ bỏ. Hãy làm việc này một cách thủ công.
|
UninstalledMost=%1 đã được gỡ bỏ thành công.%n%nMột số thành phần không thể được gỡ bỏ. Hãy làm việc này một cách thủ công.
|
||||||
UninstalledAndNeedsRestart=Để hoàn thành việc gỡ cài đặt %1, bạn phải khởi động lại máy tính.%n%nBạn có muốn khởi động lại ngay?
|
UninstalledAndNeedsRestart=Để hoàn thành việc gỡ cài đặt %1, bạn phải khởi động lại máy tính.%n%nBạn có muốn khởi động lại ngay?
|
||||||
UninstallDataCorrupted=Tệp "%1" bị hỏng. Không thể gỡ cài đặt
|
UninstallDataCorrupted=Tệp "%1" bị hỏng. Không thể gỡ cài đặt
|
||||||
|
|
||||||
; *** Uninstallation phase messages
|
; *** Uninstallation phase messages
|
||||||
ConfirmDeleteSharedFileTitle=Gỡ bỏ tệp được chia sẻ?
|
ConfirmDeleteSharedFileTitle=Gỡ bỏ tệp được chia sẻ?
|
||||||
ConfirmDeleteSharedFile2=Hệ thống chỉ ra các tệp được chia sẻ sau không được sử dụng bởi chương trình nào. Bạn có muốn gỡ bỏ tệp này?%n%nNếu có một chương trình vẫn sử dụng tệp này mà tệp bị gỡ bỏ, chúng có thể không chạy tốt. Nếu bạn không chắc chắn, chọn Không. Để lại tệp trên hệ thống của bạn sẽ không gây ra tổn hại.
|
ConfirmDeleteSharedFile2=Hệ thống chỉ ra các tệp được chia sẻ sau không được sử dụng bởi chương trình nào. Bạn có muốn gỡ bỏ tệp này?%n%nNếu có một chương trình vẫn sử dụng tệp này mà tệp bị gỡ bỏ, chúng có thể không chạy tốt. Nếu bạn không chắc chắn, chọn Không. Để lại tệp trên hệ thống của bạn sẽ không gây ra tổn hại.
|
||||||
SharedFileNameLabel=Tên tệp:
|
SharedFileNameLabel=Tên tệp:
|
||||||
SharedFileLocationLabel=Vị trí:
|
SharedFileLocationLabel=Vị trí:
|
||||||
WizardUninstalling=Trạng thái gỡ cài đặt
|
WizardUninstalling=Trạng thái gỡ cài đặt
|
||||||
StatusUninstalling=Đang gỡ cài đặt %1...
|
StatusUninstalling=Đang gỡ cài đặt %1...
|
||||||
|
|
||||||
; *** Shutdown block reasons
|
; *** Shutdown block reasons
|
||||||
ShutdownBlockReasonInstallingApp=Đang cài đặt %1.
|
ShutdownBlockReasonInstallingApp=Đang cài đặt %1.
|
||||||
ShutdownBlockReasonUninstallingApp=Đang gỡ cài đặt %1.
|
ShutdownBlockReasonUninstallingApp=Đang gỡ cài đặt %1.
|
||||||
|
|
||||||
; The custom messages below aren't used by Setup itself, but if you make
|
; The custom messages below aren't used by Setup itself, but if you make
|
||||||
; use of them in your scripts, you'll want to translate them.
|
; use of them in your scripts, you'll want to translate them.
|
||||||
|
|
||||||
[CustomMessages]
|
[CustomMessages]
|
||||||
|
|
||||||
NameAndVersion=%1 phiên bản %2
|
NameAndVersion=%1 phiên bản %2
|
||||||
AdditionalIcons=Các lối tắt bổ sung:
|
AdditionalIcons=Các lối tắt bổ sung:
|
||||||
CreateDesktopIcon=Tạo một &lối tắt trên Desktop
|
CreateDesktopIcon=Tạo một &lối tắt trên Desktop
|
||||||
CreateQuickLaunchIcon=Tạo một lối tắt &Khởi động nhanh
|
CreateQuickLaunchIcon=Tạo một lối tắt &Khởi động nhanh
|
||||||
ProgramOnTheWeb=%1 trên Web
|
ProgramOnTheWeb=%1 trên Web
|
||||||
UninstallProgram=Gỡ cài đặt %1
|
UninstallProgram=Gỡ cài đặt %1
|
||||||
LaunchProgram=Khởi động %1
|
LaunchProgram=Khởi động %1
|
||||||
AssocFileExtension=&Gán %1 với đuôi tệp %2
|
AssocFileExtension=&Gán %1 với đuôi tệp %2
|
||||||
AssocingFileExtension=Đang gán %1 với đuôi tệp %2...
|
AssocingFileExtension=Đang gán %1 với đuôi tệp %2...
|
||||||
AutoStartProgramGroupDescription=Khởi động:
|
AutoStartProgramGroupDescription=Khởi động:
|
||||||
AutoStartProgram=Tự động khởi động %1
|
AutoStartProgram=Tự động khởi động %1
|
||||||
AddonHostProgramNotFound=%1 không thể được xác định trong thư mục bạn đã chọn.%n%nBạn có muốn tiếp tục bằng mọi giá?
|
AddonHostProgramNotFound=%1 không thể được xác định trong thư mục bạn đã chọn.%n%nBạn có muốn tiếp tục bằng mọi giá?
|
||||||
|
|
||||||
|
|
||||||
SelectSetupInstallModeTitle=Chọn Chế Độ Cài Đặt
|
SelectSetupInstallModeTitle=Chọn Chế Độ Cài Đặt
|
||||||
SelectSetupInstallModeDesc=VCMI có thể được cài đặt cho tất cả người dùng hoặc chỉ riêng bạn.
|
SelectSetupInstallModeDesc=VCMI có thể được cài đặt cho tất cả người dùng hoặc chỉ riêng bạn.
|
||||||
SelectSetupInstallModeSubTitle=Chọn chế độ cài đặt bạn muốn:
|
SelectSetupInstallModeSubTitle=Chọn chế độ cài đặt bạn muốn:
|
||||||
InstallForAllUsers=Cài đặt cho tất cả người dùng
|
InstallForAllUsers=Cài đặt cho tất cả người dùng
|
||||||
InstallForAllUsers1=Yêu cầu quyền quản trị
|
InstallForAllUsers1=Yêu cầu quyền quản trị
|
||||||
InstallForMeOnly=Cài đặt chỉ cho riêng tôi
|
InstallForMeOnly=Cài đặt chỉ cho riêng tôi
|
||||||
InstallForMeOnly1=Một thông báo tường lửa sẽ xuất hiện khi bạn khởi chạy trò chơi lần đầu tiên.
|
InstallForMeOnly1=Một thông báo tường lửa sẽ xuất hiện khi bạn khởi chạy trò chơi lần đầu tiên.
|
||||||
InstallForMeOnly2=Cảnh báo: Các trò chơi LAN sẽ không hoạt động nếu quy tắc tường lửa không được cho phép.
|
InstallForMeOnly2=Cảnh báo: Các trò chơi LAN sẽ không hoạt động nếu quy tắc tường lửa không được cho phép.
|
||||||
CreateDesktopShortcuts=Tạo lối tắt trên màn hình
|
CreateDesktopShortcuts=Tạo lối tắt trên màn hình
|
||||||
ShortcutsOptions=Tùy chọn lối tắt
|
ShortcutsOptions=Tùy chọn lối tắt
|
||||||
CreateStartMenuShortcuts=Tạo lối tắt trong menu Start
|
CreateStartMenuShortcuts=Tạo lối tắt trong menu Start
|
||||||
FirewallOptions=Cài đặt tường lửa
|
FirewallOptions=Cài đặt tường lửa
|
||||||
AddFirewallRules=Thêm quy tắc tường lửa cho VCMI
|
AddFirewallRules=Thêm quy tắc tường lửa cho VCMI
|
||||||
FileAssociations=Liên kết tệp
|
FileAssociations=Liên kết tệp
|
||||||
AssociateH3MFiles=Liên kết tệp .h3m với Trình chỉnh sửa bản đồ VCMI
|
AssociateH3MFiles=Liên kết tệp .h3m với Trình chỉnh sửa bản đồ VCMI
|
||||||
AssociateVMapFiles=Liên kết tệp .vmap với Trình chỉnh sửa bản đồ VCMI
|
AssociateVMapFiles=Liên kết tệp .vmap với Trình chỉnh sửa bản đồ VCMI
|
||||||
RunVCMILauncherAfterInstall=Khởi chạy VCMI Launcher
|
RunVCMILauncherAfterInstall=Khởi chạy VCMI Launcher
|
||||||
ShortcutMapEditor=Trình chỉnh sửa bản đồ VCMI
|
ShortcutMapEditor=Trình chỉnh sửa bản đồ VCMI
|
||||||
ShortcutLauncher=VCMI Launcher
|
ShortcutLauncher=VCMI Launcher
|
||||||
ShortcutWebPage=Trang web VCMI
|
ShortcutWebPage=Trang web VCMI
|
||||||
ShortcutDiscord=VCMI Discord
|
ShortcutDiscord=VCMI Discord
|
||||||
ShortcutLauncherComment=Khởi chạy VCMI Launcher
|
ShortcutLauncherComment=Khởi chạy VCMI Launcher
|
||||||
ShortcutMapEditorComment=Mở Trình chỉnh sửa bản đồ VCMI
|
ShortcutMapEditorComment=Mở Trình chỉnh sửa bản đồ VCMI
|
||||||
ShortcutWebPageComment=Truy cập trang web chính thức của VCMI
|
ShortcutWebPageComment=Truy cập trang web chính thức của VCMI
|
||||||
ShortcutDiscordComment=Truy cập Discord chính thức của VCMI
|
ShortcutDiscordComment=Truy cập Discord chính thức của VCMI
|
||||||
DeleteUserData=Xóa dữ liệu người dùng
|
DeleteUserData=Xóa dữ liệu người dùng
|
||||||
Uninstall=Gỡ cài đặt
|
Uninstall=Gỡ cài đặt
|
||||||
VMAPDescription=Tệp bản đồ VCMI
|
VMAPDescription=Tệp bản đồ VCMI
|
||||||
H3MDescription=Tệp bản đồ Heroes 3
|
H3MDescription=Tệp bản đồ Heroes 3
|
Reference in New Issue
Block a user