diff --git a/Medusa.iss b/Medusa.iss index 9487f37..4e644ca 100644 --- a/Medusa.iss +++ b/Medusa.iss @@ -1,6 +1,6 @@ #include <.\idp\idp.iss> -#define MedusaInstallerVersion "v0.2" +#define MedusaInstallerVersion "v0.3" #define AppId "{{991BED37-186A-5451-9E77-C3DCE91D56C7}" #define AppName "Medusa" @@ -14,9 +14,9 @@ #define DefaultPort 8081 -#define InstallerVersion 10002 +#define InstallerVersion 10003 #define InstallerSeedUrl "https://raw.githubusercontent.com/pymedusa/MedusaInstaller/master/seed.ini" -#define AppRepoUrl "https://github.com/pymedusa/SickRage.git" +#define AppRepoUrl "https://github.com/pymedusa/Medusa.git" [Setup] AppId={#AppId} @@ -30,6 +30,9 @@ AppUpdatesURL={#AppURL} DefaultDirName={sd}\{#AppName} DefaultGroupName={#AppName} AllowNoIcons=yes +DisableWelcomePage=no +DisableDirPage=no +DisableProgramGroupPage=no ArchitecturesInstallIn64BitMode=x64 OutputBaseFilename={#AppName}Installer SolidCompression=yes @@ -44,7 +47,6 @@ WizardSmallImageFile=assets\WizardSmall.bmp Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked [Files] -Source: "utils\unzip.exe"; Flags: dontcopy Source: "assets\medusa.ico"; DestDir: "{app}\Installer" Source: "assets\github.ico"; DestDir: "{app}\Installer" Source: "utils\nssm32.exe"; DestDir: "{app}\Installer"; DestName: "nssm.exe"; Check: not Is64BitInstallMode @@ -64,7 +66,7 @@ Name: "{group}\Edit {#AppName} Service"; Filename: "{app}\Installer\nssm.exe"; P [Run] ;Medusa -Filename: "{app}\Git\cmd\git.exe"; Parameters: "clone {#AppRepoUrl} {app}\{#AppName}"; StatusMsg: "Installing {#AppName}..." +Filename: "{app}\Git\cmd\git.exe"; Parameters: "clone {#AppRepoUrl} ""{app}\{#AppName}"""; StatusMsg: "Installing {#AppName}..." ;Filename: "xcopy.exe"; Parameters: """C:\MedusaInstaller\Medusa"" ""{app}\{#AppName}"" /E /I /H /Y"; Flags: runminimized; StatusMsg: "Installing {#AppName}..." ;Service Filename: "{app}\Installer\nssm.exe"; Parameters: "start ""{#AppServiceName}"""; Flags: runhidden; BeforeInstall: CreateService; StatusMsg: "Starting {#AppName} service..." @@ -72,6 +74,7 @@ Filename: "{app}\Installer\nssm.exe"; Parameters: "start ""{#AppServiceName}"""; Filename: "http://localhost:{code:GetWebPort}/"; Flags: postinstall shellexec; Description: "Open {#AppName} in browser" [UninstallRun] +;Service Filename: "{app}\Installer\nssm.exe"; Parameters: "remove ""{#AppServiceName}"" confirm"; Flags: runhidden [UninstallDelete] @@ -295,7 +298,7 @@ begin SeedDownloadPageId := idpCreateDownloadForm(wpWelcome) DownloadPage := PageFromID(SeedDownloadPageId) DownloadPage.Caption := 'Downloading Installer Configuration' - DownloadPage.Description := 'Setup is downloading it''s configuration file...' + DownloadPage.Description := 'Setup is downloading its configuration file...' idpConnectControls() end; @@ -329,8 +332,10 @@ var Nssm: String; ResultCode: Integer; OldProgressString: String; + WindowsVersion: TWindowsVersion; begin Nssm := ExpandConstant('{app}\Installer\nssm.exe') + GetWindowsVersionEx(WindowsVersion); OldProgressString := WizardForm.StatusLabel.Caption; WizardForm.StatusLabel.Caption := ExpandConstant('Installing {#AppName} service...') @@ -342,6 +347,10 @@ begin Exec(Nssm, ExpandConstant('set "{#AppServiceName}" AppStopMethodConsole 20000'), '', SW_HIDE, ewWaitUntilTerminated, ResultCode) Exec(Nssm, ExpandConstant('set "{#AppServiceName}" AppEnvironmentExtra "PATH={app}\Git\cmd;%PATH%"'), '', SW_HIDE, ewWaitUntilTerminated, ResultCode) + if WindowsVersion.NTPlatform and (WindowsVersion.Major = 10) and (WindowsVersion.Minor = 0) and (WindowsVersion.Build > 14393) then begin + Exec(Nssm, ExpandConstant('set "{#AppServiceName}" AppNoConsole 1'), '', SW_HIDE, ewWaitUntilTerminated, ResultCode) + end; + WizardForm.StatusLabel.Caption := OldProgressString; end; diff --git a/idp/unicode/idp.dll b/idp/unicode/idp.dll index ae3da4d..ce7b5da 100644 Binary files a/idp/unicode/idp.dll and b/idp/unicode/idp.dll differ diff --git a/idp/unicode/idplang/ChineseSimplified.iss b/idp/unicode/idplang/ChineseSimplified.iss new file mode 100644 index 0000000..da9c536 --- /dev/null +++ b/idp/unicode/idplang/ChineseSimplified.iss @@ -0,0 +1,42 @@ +[CustomMessages] +zh.IDP_FormCaption =下载文件 +zh.IDP_FormDescription =请等待安装程序下载文件... +zh.IDP_TotalProgress =总进度 +zh.IDP_CurrentFile =当前文件 +zh.IDP_File =文件: +zh.IDP_Speed =速度: +zh.IDP_Status =状态: +zh.IDP_ElapsedTime =已用时间: +zh.IDP_RemainingTime =剩余时间: +zh.IDP_DetailsButton =详情 +zh.IDP_HideButton =隐藏 +zh.IDP_RetryButton =重试 +zh.IDP_IgnoreButton =忽略 +zh.IDP_KBs =KB/s +zh.IDP_MBs =MB/s +zh.IDP_X_of_X =%.2f of %.2f +zh.IDP_KB =KB +zh.IDP_MB =MB +zh.IDP_GB =GB +zh.IDP_Initializing =正在初始化... +zh.IDP_GettingFileInformation=正在获取文件信息... +zh.IDP_StartingDownload =开始下载... +zh.IDP_Connecting =正在连接... +zh.IDP_Downloading =正在下载... +zh.IDP_DownloadComplete =下载完成 +zh.IDP_DownloadFailed =下载失败 +zh.IDP_CannotConnect =不能连接 +zh.IDP_CancellingDownload =正在取消下载... +zh.IDP_Unknown =未知 +zh.IDP_DownloadCancelled =下载被取消 +zh.IDP_RetryNext =检查你的网络连接,点击“重试”重新下载,或点击“下一步”继续安装。 +zh.IDP_RetryCancel =检查你的网络连接,点击“重试”重新下载,或点击“取消”中止安装。 +zh.IDP_FilesNotDownloaded =下面文件不能下载: +zh.IDP_HTTPError_X =HTTP 错误 %d +zh.IDP_400 =错误的请求 (400) +zh.IDP_401 =访问被拒绝 (401) +zh.IDP_404 =未找到文件 (404) +zh.IDP_407 =需要验证代理 (407) +zh.IDP_500 =服务器内部错误 (500) +zh.IDP_502 =错误的网关 (502) +zh.IDP_503 =服务暂时不可用 (503) \ No newline at end of file diff --git a/idp/unicode/idplang/belarusian.iss b/idp/unicode/idplang/belarusian.iss new file mode 100644 index 0000000..21316fa --- /dev/null +++ b/idp/unicode/idplang/belarusian.iss @@ -0,0 +1,42 @@ +[CustomMessages] +be.IDP_FormCaption =Спампоўванне дадатковых файлаў +be.IDP_FormDescription =Калі ласка, пачакайце, пакуль усталёўнік пампуе дадатковыя файлы... +be.IDP_TotalProgress =Агульны прагрэс +be.IDP_CurrentFile =Бягучы файл +be.IDP_File =Файл: +be.IDP_Speed =Хуткасць: +be.IDP_Status =Стан: +be.IDP_ElapsedTime =Мінула часу: +be.IDP_RemainingTime =Засталося часу: +be.IDP_DetailsButton =Падрабязней +be.IDP_HideButton =Схаваць +be.IDP_RetryButton =Паўтарыць +be.IDP_IgnoreButton = +be.IDP_KBs =КБ/с +be.IDP_MBs =МБ/с +be.IDP_X_of_X =%.2f з %.2f +be.IDP_KB =КБ +be.IDP_MB =МБ +be.IDP_GB =ГБ +be.IDP_Initializing =Ініцыялізацыя... +be.IDP_GettingFileInformation=Атрыманне звестак пра файл... +be.IDP_StartingDownload =Спампоўванне пачынаецца... +be.IDP_Connecting =Злучэнне... +be.IDP_Downloading =Спампоўванне... +be.IDP_DownloadComplete =Спампоўванне скончылася +be.IDP_DownloadFailed =Не ўдалося спампаваць +be.IDP_CannotConnect =Нельга злучыцца +be.IDP_CancellingDownload =Скасаванне спампоўвання... +be.IDP_Unknown =Невядома +be.IDP_DownloadCancelled =Загрузка отменена +be.IDP_RetryNext =Праверце сваё злучэнне з Сецівам і націсніце 'Паўтарыць' каб пачаць спампоўванне нанова, або націсніце 'Далей' каб працягнуць усталяванне. +be.IDP_RetryCancel =Праверце сваё злучэнне з Сецівам і націсніце 'Паўтарыць' каб пачаць спампоўванне нанова, або націсніце 'Скасаваць' каб скасаваць усталяванне. +be.IDP_FilesNotDownloaded = +be.IDP_HTTPError_X =Памылка HTTP %d +be.IDP_400 =Памылковы запыт (400) +be.IDP_401 =Доступ забаронены (401) +be.IDP_404 =Файл не знойдзены (404) +be.IDP_407 =Неабходна аўтарызацыя прокси (407) +be.IDP_500 =Унутраная памылка сервера (500) +be.IDP_502 =Памылковы шлюз (502) +be.IDP_503 =Сервер часовы недаступны (503) diff --git a/idp/unicode/idplang/brazilianPortuguese.iss b/idp/unicode/idplang/brazilianPortuguese.iss new file mode 100644 index 0000000..f44bfa7 --- /dev/null +++ b/idp/unicode/idplang/brazilianPortuguese.iss @@ -0,0 +1,42 @@ +[CustomMessages] +pt_br.IDP_FormCaption =Baixando arquivos +pt_br.IDP_FormDescription =Por favor aguarde, enquanto recebe arquivos adicionais... +pt_br.IDP_TotalProgress =Progresso total +pt_br.IDP_CurrentFile =Arquivo atual +pt_br.IDP_File =Arquivo: +pt_br.IDP_Speed =Velocidade: +pt_br.IDP_Status =Estado: +pt_br.IDP_ElapsedTime =Tempo decorrido: +pt_br.IDP_RemainingTime =Tempo remanescente: +pt_br.IDP_DetailsButton =Detalhes +pt_br.IDP_HideButton =Ocultar +pt_br.IDP_RetryButton =Repetir +pt_br.IDP_IgnoreButton = +pt_br.IDP_KBs =KB/s +pt_br.IDP_MBs =MB/s +pt_br.IDP_X_of_X =%.2f de %.2f +pt_br.IDP_KB =KB +pt_br.IDP_MB =MB +pt_br.IDP_GB =GB +pt_br.IDP_Initializing =Inicializando... +pt_br.IDP_GettingFileInformation=Recebendo informações do arquivo... +pt_br.IDP_StartingDownload =Iniciando o download... +pt_br.IDP_Connecting =Conectando... +pt_br.IDP_Downloading =Baixando... +pt_br.IDP_DownloadComplete =Download finalizado +pt_br.IDP_DownloadFailed =Falha no download +pt_br.IDP_CannotConnect =Não pode conectar +pt_br.IDP_CancellingDownload =Cancelando o download... +pt_br.IDP_Unknown =Desconhecido +pt_br.IDP_DownloadCancelled =Download cancelado +pt_br.IDP_RetryNext =Verifique sua conexão e clique em 'Repetir' para tentar novamente o download dos arquivos, ou clique em 'Próximo' para continuar a instalação mesmo assim. +pt_br.IDP_RetryCancel =Verifique sua conexão e clique em 'Repetir' para tentar novamente o download dos arquivos, ou clique em 'Cancel' para finalizar a Instalação. +pt_br.IDP_FilesNotDownloaded = +pt_br.IDP_HTTPError_X =erro HTTP %d +pt_br.IDP_400 =Requisição inválida (400) +pt_br.IDP_401 =Acesso negado (401) +pt_br.IDP_404 =Arquivo não encontrado (404) +pt_br.IDP_407 =Autenticação de proxy necessária (407) +pt_br.IDP_500 =Erro interno do servidor (500) +pt_br.IDP_502 =Bad Gateway (502) +pt_br.IDP_503 =Serviço temporariamente indisponível (503) diff --git a/idp/unicode/idplang/bulgarian.iss b/idp/unicode/idplang/bulgarian.iss new file mode 100644 index 0000000..a0ff8b0 --- /dev/null +++ b/idp/unicode/idplang/bulgarian.iss @@ -0,0 +1,42 @@ +[CustomMessages] +bg.IDP_FormCaption =Изтегляне на допълнителни файлове +bg.IDP_FormDescription =Моля, изчакайте, докато съветникът изтегля допълнителните файлове... +bg.IDP_TotalProgress =Общ ход +bg.IDP_CurrentFile =Текущ файл +bg.IDP_File =Файл: +bg.IDP_Speed =Скорост: +bg.IDP_Status =Състояние: +bg.IDP_ElapsedTime =Изминало време: +bg.IDP_RemainingTime =Оставащо време: +bg.IDP_DetailsButton =Повече информация +bg.IDP_HideButton =Скрий +bg.IDP_RetryButton =Опитай отново +bg.IDP_IgnoreButton =Пренебрегни +bg.IDP_KBs =КБ/с +bg.IDP_MBs =МБ/с +bg.IDP_X_of_X =%.2f от %.2f +bg.IDP_KB =КБ +bg.IDP_MB =МБ +bg.IDP_GB =ГБ +bg.IDP_Initializing =Стартиране... +bg.IDP_GettingFileInformation=Получаване на информация за файла... +bg.IDP_StartingDownload =Започване на изтеглянето... +bg.IDP_Connecting =Свързване... +bg.IDP_Downloading =Изтегляне... +bg.IDP_DownloadComplete =Изтеглянето е завършено +bg.IDP_DownloadFailed =Изтеглянето беше неуспешно +bg.IDP_CannotConnect =Връзката е невъзможна +bg.IDP_CancellingDownload =Отмяна на изтеглянето... +bg.IDP_Unknown =Неизвестно +bg.IDP_DownloadCancelled =Изтеглянето е отменено +bg.IDP_RetryNext =Проверете Вашата Интернет връзка и кликнете „Опитай отново“, за да направите повторен опит за изтегляне на файловете, или кликнете „Напред“, за да продължите с инсталацията въпреки това. +bg.IDP_RetryCancel =Проверете Вашата Интернет връзка и кликнете „Опитай отново“, за да направите повторен опит за изтегляне на файловете, или кликнете „Отмени“, за да прекратите инсталацията. +bg.IDP_FilesNotDownloaded =Следните файлове не бяха изтеглени: +bg.IDP_HTTPError_X =HTTP грешка %d +bg.IDP_400 =Грешна заявка (400) +bg.IDP_401 =Достъпът е отказан (401) +bg.IDP_404 =Файлът не е открит (404) +bg.IDP_407 =Изисква се идентификация на прокси (407) +bg.IDP_500 =Вътрешна сървърна грешка (500) +bg.IDP_502 =Грешен шлюз (502) +bg.IDP_503 =Услугата е временно недостъпна (503) diff --git a/idp/unicode/idplang/czech.iss b/idp/unicode/idplang/czech.iss new file mode 100644 index 0000000..4b5b268 --- /dev/null +++ b/idp/unicode/idplang/czech.iss @@ -0,0 +1,42 @@ +[CustomMessages] +cz.IDP_FormCaption =Stahování souborů +cz.IDP_FormDescription =Prosím čekejte, než instalátor stáhne dodatečné soubory... +cz.IDP_TotalProgress =Celkový průběh stahování +cz.IDP_CurrentFile =Aktuální soubor +cz.IDP_File =Soubor: +cz.IDP_Speed =Rychlost: +cz.IDP_Status =Stav: +cz.IDP_ElapsedTime =Uplynulý čas: +cz.IDP_RemainingTime =Zbývá: +cz.IDP_DetailsButton =Detaily +cz.IDP_HideButton =Skrýt +cz.IDP_RetryButton =Znovu +cz.IDP_IgnoreButton =Ignorovat +cz.IDP_KBs =KB/s +cz.IDP_MBs =MB/s +cz.IDP_X_of_X =%.2f of %.2f +cz.IDP_KB =KB +cz.IDP_MB =MB +cz.IDP_GB =GB +cz.IDP_Initializing =Inicializace... +cz.IDP_GettingFileInformation=Stahování informací o souboru... +cz.IDP_StartingDownload =Začínám stahovat... +cz.IDP_Connecting =Navazování spojení... +cz.IDP_Downloading =Stahování... +cz.IDP_DownloadComplete =Stahování ukončeno +cz.IDP_DownloadFailed =Stahování selhalo +cz.IDP_CannotConnect =Není možné navázat spojení +cz.IDP_CancellingDownload =Ukončení stahování... +cz.IDP_Unknown =Neznámé +cz.IDP_DownloadCancelled =Stahování zrušeno +cz.IDP_RetryNext =Zkontrolujte připojení k internetu a klikněte na "Znovu" pro opakované stahování souborů, nebo klikměte na "Další" a pokračujte v instalaci. +cz.IDP_RetryCancel =Zkontrolujte připojení k internetu a klikněte na "Znovu" pro opakované stahování souborů, nebo klikměte na "Zrušit" a zrušte instalaci. +cz.IDP_FilesNotDownloaded =Následující soubory nebyly staženy: +cz.IDP_HTTPError_X =Chyba HTTP %d +cz.IDP_400 =Nesprávný požadavek (400) +cz.IDP_401 =Přístup zakázán (401) +cz.IDP_404 =Soubor nenalezen (404) +cz.IDP_407 =Vyžadováno ověření proxy (407) +cz.IDP_500 =Chyba serveru (500) +cz.IDP_502 =Chyba brány (502) +cz.IDP_503 =Služba je dočasně nedostupná (503) \ No newline at end of file diff --git a/idp/unicode/idplang/default.iss b/idp/unicode/idplang/default.iss index f04f625..d847b86 100644 --- a/idp/unicode/idplang/default.iss +++ b/idp/unicode/idplang/default.iss @@ -1,6 +1,6 @@ [CustomMessages] IDP_FormCaption =Downloading additional files -IDP_FormDescription =Please wait, while setup downloading additional files... +IDP_FormDescription =Please wait while Setup is downloading additional files... IDP_TotalProgress =Total progress IDP_CurrentFile =Current file IDP_File =File: diff --git a/idp/unicode/idplang/finnish.iss b/idp/unicode/idplang/finnish.iss new file mode 100644 index 0000000..a812dc9 --- /dev/null +++ b/idp/unicode/idplang/finnish.iss @@ -0,0 +1,42 @@ +[CustomMessages] +fi.IDP_FormCaption =Tiedostojen lataus +fi.IDP_FormDescription =Odota, asennusohjelma lataa nyt tiedostoja koneellesi... +fi.IDP_TotalProgress =Latauksien edistyminen +fi.IDP_CurrentFile =Nyt ladattava tiedosto +fi.IDP_File =Tiedosto: +fi.IDP_Speed =Nopeus: +fi.IDP_Status =Tila: +fi.IDP_ElapsedTime =Aikaa käytetty: +fi.IDP_RemainingTime =Aikaa jäljellä: +fi.IDP_DetailsButton =Tiedot +fi.IDP_HideButton =Piilota +fi.IDP_RetryButton =Yritä uudelleen +fi.IDP_IgnoreButton =Hylkää +fi.IDP_KBs =KT/s +fi.IDP_MBs =MT/s +fi.IDP_X_of_X =%.2f of %.2f +fi.IDP_KB =KT +fi.IDP_MB =MT +fi.IDP_GB =GT +fi.IDP_Initializing =Alustetaan... +fi.IDP_GettingFileInformation=Haetaan tiedostojen tietoja... +fi.IDP_StartingDownload =Aloitetaan latausta... +fi.IDP_Connecting =Yhdistetään... +fi.IDP_Downloading =Ladataan... +fi.IDP_DownloadComplete =Lataus valmis +fi.IDP_DownloadFailed =Lataus epäonnistui +fi.IDP_CannotConnect =Virhe yhdistettäessä +fi.IDP_CancellingDownload =Peruutetaan latausta... +fi.IDP_Unknown =Tuntematon +fi.IDP_DownloadCancelled =Lataus peruttiin +fi.IDP_RetryNext =Tarkista nettiyhteytesi tila ja klikkaa 'Yritä uudelleen' jatkaaksesi tiedostojen lataamista, tai klikkaa 'Seuraava' jatkaaksesi asennusta ilman ladattuja tiedostoja. +fi.IDP_RetryCancel =Tarkista nettiyhteytesi tila ja klikkaa 'Yritä uudelleen' jatkaaksesi tiedostojen lataamista, tai klikkaa 'Peruuta' keskeyttääksesi asennus. +fi.IDP_FilesNotDownloaded =Seuraavia tiedostoja ei pystytty lataamaan: +fi.IDP_HTTPError_X =HTTP virhe %d +fi.IDP_400 =Virheellinen pyyntö (400) +fi.IDP_401 =Käyttö estetty (401) +fi.IDP_404 =Tiedostoa ei löydy (404) +;fi.IDP_407 =??? +fi.IDP_500 =Palvelimen sisäinen virhe (500) +fi.IDP_502 =Virheellinen gateway (502) +fi.IDP_503 =Palvelu väliaikaisesti ei saatavilla (503) diff --git a/idp/unicode/idplang/french.iss b/idp/unicode/idplang/french.iss new file mode 100644 index 0000000..1a0c25a --- /dev/null +++ b/idp/unicode/idplang/french.iss @@ -0,0 +1,42 @@ +[CustomMessages] +fr.IDP_FormCaption =Téléchargement des fichiers additionnels +fr.IDP_FormDescription =Veuillez patienter durant le téléchargement des fichiers additionnels... +fr.IDP_TotalProgress =Progression générale: +fr.IDP_CurrentFile =Fichier en cours: +fr.IDP_File =Fichier: +fr.IDP_Speed =Vitesse: +fr.IDP_Status =Status: +fr.IDP_ElapsedTime =Temps écoulé: +fr.IDP_RemainingTime =Temps restant: +fr.IDP_DetailsButton =Détails +fr.IDP_HideButton =Cacher +fr.IDP_RetryButton =Réessayer +fr.IDP_IgnoreButton =Ignorer +fr.IDP_KBs =KO/s +fr.IDP_MBs =MO/s +fr.IDP_X_of_X =%.2f de %.2f +fr.IDP_KB =KO +fr.IDP_MB =MO +fr.IDP_GB =GB +fr.IDP_Initializing =Initializing... +fr.IDP_GettingFileInformation=Récupération du fichier d'information... +fr.IDP_StartingDownload =Début du téléchargement... +fr.IDP_Connecting =Connexion... +fr.IDP_Downloading =Téléchargement... +fr.IDP_DownloadComplete =Téléchargement terminé +fr.IDP_DownloadFailed =Téléchargement interrompu +fr.IDP_CannotConnect =Impossible de se connecter +fr.IDP_CancellingDownload =Annulation de téléchargement... +fr.IDP_Unknown =Inconnu +fr.IDP_DownloadCancelled =Télécharger annulé +fr.IDP_RetryNext =Désolé, le fichier n'a pu être téléchargé. Cliquez réessayer pour essayer à nouveau de le télécharger, ou cliquez suivant pour continuer l'installation. +fr.IDP_RetryCancel =Désolé, le fichier n'a pu être téléchargé. Cliquez réessayer pour essayer à nouveau de le télécharger, ou cliquez annuler pour terminer l'installation. +fr.IDP_FilesNotDownloaded =Les fichiers suivants n'ont pas put téléchargés: +fr.IDP_HTTPError_X =Erreur HTTP %d +fr.IDP_400 =Requête incorrecte (400) +fr.IDP_401 =Accès Refusé (401) +fr.IDP_404 =Fichier introuvable (404) +fr.IDP_407 =Authentification proxy requise (407) +fr.IDP_500 =Erreur interne du serveur (500) +fr.IDP_502 =Mauvaise Passerelle (502) +fr.IDP_503 =Service Temporairement Indisponible (503) diff --git a/idp/unicode/idplang/german.iss b/idp/unicode/idplang/german.iss new file mode 100644 index 0000000..47018e0 --- /dev/null +++ b/idp/unicode/idplang/german.iss @@ -0,0 +1,42 @@ +[CustomMessages] +de.IDP_FormCaption =Download zusätzlicher Dateien +de.IDP_FormDescription =Bitte warten, das Setup lädt nun zusätzliche Dateien... +de.IDP_TotalProgress =Gesamter Fortschritt: +de.IDP_CurrentFile =Aktuelle Datei: +de.IDP_File =Datei: +de.IDP_Speed =Geschwindigkeit: +de.IDP_Status =Status: +de.IDP_ElapsedTime =Vergangene Zeit: +de.IDP_RemainingTime =Verbleibende Zeit: +de.IDP_DetailsButton =Details +de.IDP_HideButton =Verstecken +de.IDP_RetryButton =Wiederholen +de.IDP_IgnoreButton = +de.IDP_KBs =kB/s +de.IDP_MBs =MB/s +de.IDP_X_of_X =%.2f von %.2f +de.IDP_KB =KB +de.IDP_MB =MB +de.IDP_GB =GB +de.IDP_Initializing =Initialisieren... +de.IDP_GettingFileInformation=Empfange Dateiinformationen... +de.IDP_StartingDownload =Starte Download... +de.IDP_Connecting =Verbinde... +de.IDP_Downloading =Downloade... +de.IDP_DownloadComplete =Download abgeschlossen +de.IDP_DownloadFailed =Download fehlgeschlagen +de.IDP_CannotConnect =Die Verbindung konnte nicht hergestellt werden +de.IDP_CancellingDownload =Download wird abgebrochen... +de.IDP_Unknown =Unbekannt +de.IDP_DownloadCancelled =Download abgebrochen +de.IDP_RetryNext =Prüfen Sie Ihre Verbindung und klicken Sie auf 'Wiederholen' für einen erneuten Versuch oder klicken Sie auf 'Weiter' um dennoch fortzusetzen. +de.IDP_RetryCancel =Prüfen Sie Ihre Verbindung und klicken Sie auf 'Wiederholen' für einen erneuten Versuch oder klicken Sie auf 'Abbrechen' um das Setup zu verlassen. +de.IDP_FilesNotDownloaded = +de.IDP_HTTPError_X =HTTP Fehler %d +de.IDP_400 =Ungültige Anforderung (400) +de.IDP_401 =Nicht autorisiert (401) +de.IDP_404 =Datei nicht gefunden (404) +;de.IDP_407 =??? +de.IDP_500 =Interner Serverfehler (500) +de.IDP_502 =Falsches Gateway (502) +de.IDP_503 =Service nicht verfügbar (503) diff --git a/idp/unicode/idplang/hungarian.iss b/idp/unicode/idplang/hungarian.iss new file mode 100644 index 0000000..43e25af --- /dev/null +++ b/idp/unicode/idplang/hungarian.iss @@ -0,0 +1,42 @@ +[CustomMessages] +hu.IDP_FormCaption =További fájlok letöltése +hu.IDP_FormDescription =Kérjük várjon, amíg a telepítő további fájlokat tölt le az internetről... +hu.IDP_TotalProgress =Teljes folyamat: +hu.IDP_CurrentFile =Jelenlegi fájl: +hu.IDP_File =Fájl: +hu.IDP_Speed =Sebesség: +hu.IDP_Status =Állapot: +hu.IDP_ElapsedTime =Eltelt idő: +hu.IDP_RemainingTime =Fennmaradó idő: +hu.IDP_DetailsButton =Részletek +hu.IDP_HideButton =Elrejtés +hu.IDP_RetryButton =Ismét +hu.IDP_IgnoreButton =Kihagy +hu.IDP_KBs =kB/s +hu.IDP_MBs =MB/s +hu.IDP_X_of_X =%.2f / %.2f +hu.IDP_KB =KB +hu.IDP_MB =MB +hu.IDP_GB =GB +hu.IDP_Initializing =Felkészülés... +hu.IDP_GettingFileInformation=A fájlinformációk lekérése... +hu.IDP_StartingDownload =A letöltés megkezdése... +hu.IDP_Connecting =Csatlakozás... +hu.IDP_Downloading =Letöltés... +hu.IDP_DownloadComplete =Letöltés befejezve +hu.IDP_DownloadFailed =Letöltés megszakítva +hu.IDP_CannotConnect =Nem sikert csatlakozni a kiszolgálóhoz +hu.IDP_CancellingDownload =A letöltés megszaktása... +hu.IDP_Unknown =Ismeretlen +hu.IDP_DownloadCancelled =Felhasználó által megszakítva +hu.IDP_RetryNext =Ellenőrizze az internetkapcsolatot, majd kattintson az "Ismét" gombra az újrapróbálkozáshoz, vagy a "Tovább" gombra a fájlok kihagyásához. +hu.IDP_RetryCancel =Ellenőrizze az internetkapcsolatot, majd kattintson az "Ismét" gombra az újrapróbálkozáshoz, vagy a "Mégse" gombra a telepítés megszakításához. +hu.IDP_FilesNotDownloaded =Az alábbi fájlok nem lettek letöltve: +hu.IDP_HTTPError_X =HTTP hiba %d +hu.IDP_400 =Nem megfelelő kérés (400) +hu.IDP_401 =Hozzáférés megtagadva (401) +hu.IDP_404 =A fájl nem található (404) +hu.IDP_407 =Proxy hitelesítés szükséges (407) +hu.IDP_500 =A kiszolgáló belső hibája (500) +hu.IDP_502 =Nem megfelelő átjáró (502) +hu.IDP_503 =A szolgáltatás átmenetileg nem elérhető (503) diff --git a/idp/unicode/idplang/italian.iss b/idp/unicode/idplang/italian.iss new file mode 100644 index 0000000..dc39bb2 --- /dev/null +++ b/idp/unicode/idplang/italian.iss @@ -0,0 +1,42 @@ +[CustomMessages] +it.IDP_FormCaption =Download file aggiuntivi +it.IDP_FormDescription =Attendere prego, download dei file aggiuntivi in corso... +it.IDP_TotalProgress =Progresso totale +it.IDP_CurrentFile =File corrente +it.IDP_File =File: +it.IDP_Speed =Velocita': +it.IDP_Status =Status: +it.IDP_ElapsedTime =Tempo trascorso: +it.IDP_RemainingTime =Tempo rimanente: +it.IDP_DetailsButton =Dettagli +it.IDP_HideButton =Nascondi +it.IDP_RetryButton =Riprova +it.IDP_IgnoreButton =Ignora +it.IDP_KBs =KB/s +it.IDP_MBs =MB/s +it.IDP_X_of_X =%.2f of %.2f +it.IDP_KB =KB +it.IDP_MB =MB +it.IDP_GB =GB +it.IDP_Initializing =Inizializzazione... +it.IDP_GettingFileInformation=Acquisizione informazioni sui file... +it.IDP_StartingDownload =Avvio download... +it.IDP_Connecting =Connessione in corso... +it.IDP_Downloading =Download in corso... +it.IDP_DownloadComplete =Download completato +it.IDP_DownloadFailed =Download fallito +it.IDP_CannotConnect =Impossibile connettersi +it.IDP_CancellingDownload =Annullamento del download... +it.IDP_Unknown =Sconosciuto +it.IDP_DownloadCancelled =Download annullato +it.IDP_RetryNext =Controlla la tua connessione e clicca 'Riprova' per provare nuovamente a scaricare i file, o clicca 'Avanti' per proseguire con l'installazione comunque. +it.IDP_RetryCancel =Controlla la tua connessione e clicca 'Riprova' per provare nuovamente a scaricare i file, o clicca 'Annulla' per uscire dall'installazione. +it.IDP_FilesNotDownloaded =I seguenti file non sono stati scaricati: +it.IDP_HTTPError_X =Errore HTTP %d +it.IDP_400 =Bad request (400) +it.IDP_401 =Access denied (401) +it.IDP_404 =File not found (404) +;it.IDP_407 =??? +it.IDP_500 =Server internal error (500) +it.IDP_502 =Bad gateway (502) +it.IDP_503 =Service temporaily unavailable (503) diff --git a/idp/unicode/idplang/polish.iss b/idp/unicode/idplang/polish.iss new file mode 100644 index 0000000..4270cd3 --- /dev/null +++ b/idp/unicode/idplang/polish.iss @@ -0,0 +1,42 @@ +[CustomMessages] +pl.IDP_FormCaption =Pobieranie dodatkowych plików +pl.IDP_FormDescription =Proszę czekać, instalator pobiera dodatkowe pliki... +pl.IDP_TotalProgress =Postęp całkowity +pl.IDP_CurrentFile =Bieżący plik +pl.IDP_File =Plik: +pl.IDP_Speed =Transfer: +pl.IDP_Status =Status: +pl.IDP_ElapsedTime =Czas pobierania: +pl.IDP_RemainingTime =Czas pozostały: +pl.IDP_DetailsButton =Szczegóły +pl.IDP_HideButton =Ukryj +pl.IDP_RetryButton =Powtórz +pl.IDP_IgnoreButton = +pl.IDP_KBs =KB/s +pl.IDP_MBs =MB/s +pl.IDP_X_of_X =%.2f z %.2f +pl.IDP_MB =KB +pl.IDP_MB =MB +pl.IDP_MB =GB +pl.IDP_Initializing =Trwa inicjalizacja... +pl.IDP_GettingFileInformation=Pobieranie informacji o pliku... +pl.IDP_StartingDownload =Rozpoczęcie pobierania... +pl.IDP_Connecting =Nawiązywanie połączenia... +pl.IDP_Downloading =Pobieranie... +pl.IDP_DownloadComplete =Pobieranie zakończone +pl.IDP_DownloadFailed =Pobieranie nieudane +pl.IDP_CannotConnect =Nie można nazwiązać połączenia +pl.IDP_CancellingDownload =Anulowanie pobierania... +pl.IDP_Unknown =Nieznany +pl.IDP_DownloadCancelled =Pobieranie anulowane +pl.IDP_RetryNext =Sprawdź połączenie sieciowe i kliknij 'Powtórz' aby pobrać pliki ponownie lub kliknij 'Dalej' aby kontynuować instalację. +pl.IDP_RetryCancel =Sprawdź połączenie sieciowe i kliknij 'Powtórz' aby pobrać pliki ponownie lub kliknij 'Anuluj' aby przerwać instalację. +pl.IDP_FilesNotDownloaded = +pl.IDP_HTTPError_X =Błąd HTTP %d +pl.IDP_400 =Nieprawidłowe żądanie (400) +pl.IDP_401 =Dostęp zabroniony (401) +pl.IDP_404 =Plik nie został znaleziony (404) +;pl.IDP_407 =??? +pl.IDP_500 =Błąd wewnętrzny serwera (500) +pl.IDP_502 =Błąd bramy sieciowej (502) +pl.IDP_503 =Usługa czasowo niedostępna (503) diff --git a/idp/unicode/idplang/russian.iss b/idp/unicode/idplang/russian.iss new file mode 100644 index 0000000..dd367f8 --- /dev/null +++ b/idp/unicode/idplang/russian.iss @@ -0,0 +1,42 @@ +[CustomMessages] +ru.IDP_FormCaption =Скачивание дополнительных файлов +ru.IDP_FormDescription =Пожалуйста подождите, пока инсталлятор скачает дополнительные файлы... +ru.IDP_TotalProgress =Общий прогресс +ru.IDP_CurrentFile =Текущий файл +ru.IDP_File =Файл: +ru.IDP_Speed =Скорость: +ru.IDP_Status =Состояние: +ru.IDP_ElapsedTime =Прошло времени: +ru.IDP_RemainingTime =Осталось времени: +ru.IDP_DetailsButton =Подробно +ru.IDP_HideButton =Скрыть +ru.IDP_RetryButton =Повтор +ru.IDP_IgnoreButton =Пропустить +ru.IDP_KBs =КБ/с +ru.IDP_MBs =МБ/с +ru.IDP_X_of_X =%.2f из %.2f +ru.IDP_KB =КБ +ru.IDP_MB =МБ +ru.IDP_GB =ГБ +ru.IDP_Initializing =Инициализация... +ru.IDP_GettingFileInformation=Получение информации о файле... +ru.IDP_StartingDownload =Начало загрузки... +ru.IDP_Connecting =Соединение... +ru.IDP_Downloading =Загрузка... +ru.IDP_DownloadComplete =Загрузка завершена +ru.IDP_DownloadFailed =Загрузка не удалась +ru.IDP_CannotConnect =Невозможно соединиться +ru.IDP_CancellingDownload =Отмена загрузки... +ru.IDP_Unknown =Неизвестно +ru.IDP_DownloadCancelled =Загрузка отменена +ru.IDP_RetryNext =Проверьте ваше подключение к сети Интернет и нажмите 'Повторить' чтобы начать скачивание заново, или нажмите 'Далее' для продолжения установки. +ru.IDP_RetryCancel =Проверьте ваше подключение к сети Интернет и нажмите 'Повторить' чтобы начать скачивание заново, или нажмите 'Отмена' чтобы прервать установку. +ru.IDP_FilesNotDownloaded =Не удалось загрузить следующие файлы: +ru.IDP_HTTPError_X =Ошибка HTTP %d +ru.IDP_400 =Неверный запрос (400) +ru.IDP_401 =Доступ запрещен (401) +ru.IDP_404 =Файл не найден (404) +ru.IDP_407 =Необходима авторизация прокси (407) +ru.IDP_500 =Внутренняя ошибка сервера (500) +ru.IDP_502 =Неправильный шлюз (502) +ru.IDP_503 =Сервер временно недоступен (503) diff --git a/idp/unicode/idplang/slovak.iss b/idp/unicode/idplang/slovak.iss new file mode 100644 index 0000000..bd70fcc --- /dev/null +++ b/idp/unicode/idplang/slovak.iss @@ -0,0 +1,42 @@ +[CustomMessages] +sk.IDP_FormCaption =Preberanie súborov +sk.IDP_FormDescription =Prosím čakajte, kým inštalátor prevezme dodatočné súbory... +sk.IDP_TotalProgress =Celkový progres +sk.IDP_CurrentFile =Aktuálny súbor +sk.IDP_File =Súbor: +sk.IDP_Speed =Rýchlosť: +sk.IDP_Status =Stav: +sk.IDP_ElapsedTime =Ubehnutý čas: +sk.IDP_RemainingTime =Zostáva: +sk.IDP_DetailsButton =Detaily +sk.IDP_HideButton =Skryť +sk.IDP_RetryButton =Znova +sk.IDP_IgnoreButton =Ignorovať +sk.IDP_KBs =KB/s +sk.IDP_MBs =MB/s +sk.IDP_X_of_X =%.2f of %.2f +sk.IDP_KB =KB +sk.IDP_MB =MB +sk.IDP_GB =GB +sk.IDP_Initializing =Inicializácia... +sk.IDP_GettingFileInformation=Preberanie informácií o súbore... +sk.IDP_StartingDownload =Začínam prebereť... +sk.IDP_Connecting =Nadväzovanie spojenia... +sk.IDP_Downloading =Preberanie... +sk.IDP_DownloadComplete =Preberanie ukončené +sk.IDP_DownloadFailed =Preberanie zlyhalo +sk.IDP_CannotConnect =Nie je možné nadviazať spojenie +sk.IDP_CancellingDownload =Ukončenie preberania... +sk.IDP_Unknown =Neznáme +sk.IDP_DownloadCancelled =Preberanie zrušené +sk.IDP_RetryNext =Skontrolujte nastavenie siete a kliknite na 'Znova' na opätovné prebratie súborov, alebo kliknite na 'Ďalej' a pokračujte v inštalácii. +sk.IDP_RetryCancel =Skontrolujte nastavenie siete a kliknite na 'Znova' na opätovné prebratie súborov, alebo kliknite na 'Zrušiť' a zrušte inštaláciu. +sk.IDP_FilesNotDownloaded =Nasledujúce súbory neboli stiahnuté: +sk.IDP_HTTPError_X =Chyba HTTP %d +sk.IDP_400 =Nesprávna požiadavka (400) +sk.IDP_401 =Prístup zakázaný (401) +sk.IDP_404 =Súbor nenájdený (404) +sk.IDP_407 =Proxy authentication required (407) +sk.IDP_500 =Chyba servera (500) +sk.IDP_502 =Chyba gateway (502) +sk.IDP_503 =Služba je dočasne nedostupná (503) diff --git a/idp/unicode/idplang/spanish.iss b/idp/unicode/idplang/spanish.iss new file mode 100644 index 0000000..67c211b --- /dev/null +++ b/idp/unicode/idplang/spanish.iss @@ -0,0 +1,42 @@ +[CustomMessages] +es.IDP_FormCaption =Descargando Archivos adicionales +es.IDP_FormDescription =Por favor, espere mientras se descargan archivos adicionales... +es.IDP_TotalProgress =Progreso Total +es.IDP_CurrentFile =Archivo actual +es.IDP_File =Archivo: +es.IDP_Speed =Velocidad: +es.IDP_Status =Estado: +es.IDP_ElapsedTime =Tiempo Transcurrido: +es.IDP_RemainingTime =Tiempo Restante: +es.IDP_DetailsButton =Detalles +es.IDP_HideButton =Ocultar +es.IDP_RetryButton =Reintentar +es.IDP_IgnoreButton =Ignorar +es.IDP_KBs =KB/s +es.IDP_MBs =MB/s +es.IDP_X_of_X =%.2f de %.2f +es.IDP_KB =KB +es.IDP_MB =MB +es.IDP_GB =GB +es.IDP_Initializing =Iniciando... +es.IDP_GettingFileInformation=Obteniendo información del Archivo... +es.IDP_StartingDownload =Iniciando descarga... +es.IDP_Connecting =Conectando... +es.IDP_Downloading =Descargando... +es.IDP_DownloadComplete =Descarga completada +es.IDP_DownloadFailed =Descarga fallida +es.IDP_CannotConnect =No se puede conectar +es.IDP_CancellingDownload =Cancelando descarga... +es.IDP_Unknown =Desconocido +es.IDP_DownloadCancelled =Descarga cancelada +es.IDP_RetryNext =Compruebe su conexión y pulse "Reintentar' para tratar de descargar de nuevo, o pulse 'Siguiente' para continuar instalando de todos modos. +es.IDP_RetryCancel =Compruebe su conexión y pulse "Reintentar' para tratar de descargar de nuevo, o pulse 'Cancelar' para descartar la descarga. +es.IDP_FilesNotDownloaded =Los siguientesArchivos no han sido descargados: +es.IDP_HTTPError_X =Error HTTP %d +es.IDP_400 =Error 'Bad request' (400) +es.IDP_401 =Acceso denegado (401) +es.IDP_404 =Archivo no encontrado (404) +es.IDP_407 =Autentificación de Proxy requerida (407) +es.IDP_500 =Error interno del servidor (500) +es.IDP_502 =Error 'Bad gateway' (502) +es.IDP_503 =Servicio no disponible temporalmente (503) diff --git a/seed.ini b/seed.ini index 1105a24..d405bcb 100644 --- a/seed.ini +++ b/seed.ini @@ -1,16 +1,16 @@ [Installer] -Version=10002 +Version=10003 DownloadUrl=https://github.com/pymedusa/MedusaInstaller [Python.x86] -url=https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi -size=18907136 -sha1=662142691e0beba07a0bacee48e5e93a02537ff7 +url=https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi +size=19161088 +sha1=7e3b54236dbdbea8fe2458db501176578a4d59c0 [Python.x64] -url=https://www.python.org/ftp/python/2.7.12/python-2.7.12.amd64.msi -size=19820544 -sha1=55b4591c47be64d810f6da26831051933e7f45ff +url=https://www.python.org/ftp/python/2.7.13/python-2.7.13.amd64.msi +size=20082688 +sha1=d9113142bae8829365c595735e1ad1f9f5e2894c [Git.x86] url=https://github.com/git-for-windows/git/releases/download/v2.10.0.windows.1/PortableGit-2.10.0-32-bit.7z.exe diff --git a/utils/unzip.exe b/utils/unzip.exe deleted file mode 100644 index b103877..0000000 Binary files a/utils/unzip.exe and /dev/null differ