Installer localizations

(NSIS 3 required)
This commit is contained in:
Jindra Petřík
2015-11-22 18:52:23 +01:00
parent ab702f4725
commit 3cb68b617b
19 changed files with 1113 additions and 99 deletions

View File

@@ -6,18 +6,24 @@
;--------------------------------
;General
;These are defined in Ant script:
;!define APP_VER "4.0"
;!define APP_VER_MAJOR 4
;!define APP_VER_MINOR 0
;!define APP_URL "http://www.free-decompiler.com/flash/"
;!define APP_PUBLISHER "JPEXS"
;!define APP_NAME "JPEXS Free Flash Decompiler"
;!define JRE_VERSION "1.8"
;These are defined in Ant script:
!ifndef APP_VER
!define APP_VER "0.0"
!define APP_VER_MAJOR 0
!define APP_VER_MINOR 0
!define APP_URL "https://www.free-decompiler.com/flash/"
!define APP_PUBLISHER "JPEXS"
!define APP_NAME "JPEXS Free Flash Decompiler"
!define JRE_VERSION "1.8"
!endif
Unicode true
!define APP_EXENAME "ffdec.exe"
!addplugindir "nsis_plugins\ansi\"
;!addplugindir "nsis_plugins\unicode\"
;!addplugindir "nsis_plugins\ansi\"
!addplugindir "nsis_plugins\unicode\"
SetCompressor /SOLID lzma
@@ -72,8 +78,6 @@ SetCompressor /SOLID lzma
!insertmacro MUI_UNPAGE_WELCOME
!insertmacro MUI_UNPAGE_INSTFILES
!include LogicLib.nsh
; Return on top of stack the total size of the selected (installed) sections, formated as DWORD
@@ -126,7 +130,7 @@ Function StrLoc
$R6 = TempStr (temp)*/
;Get input from user
Exch $R0
Exch $R0
Exch
Exch $R1
Exch 2
@@ -382,24 +386,66 @@ var SMDir
;--------------------------------
;Languages
!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "Czech"
!insertmacro MUI_LANGUAGE "SimpChinese"
!insertmacro MUI_LANGUAGE "Dutch"
!insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "Hungarian"
!insertmacro MUI_LANGUAGE "Polish"
!insertmacro MUI_LANGUAGE "Portuguese"
!insertmacro MUI_LANGUAGE "PortugueseBR"
!insertmacro MUI_LANGUAGE "Russian"
!insertmacro MUI_LANGUAGE "Spanish"
!insertmacro MUI_LANGUAGE "Swedish"
!insertmacro MUI_LANGUAGE "Ukrainian"
!define !IfExist `!insertmacro _!IfExist ""`
!define !IfNExist `!insertmacro _!IfExist "n"`
!macro _!IfExist _OP _FilePath
!ifdef !IfExistIsTrue
!undef !IfExistIsTrue
!endif
!tempfile "!IfExistTmp"
!system `IF EXIST "${_FilePath}" Echo !define "!IfExistIsTrue" > "${!IfExistTmp}"`
!include /NONFATAL "${!IfExistTmp}"
!delfile /NONFATAL "${!IfExistTmp}"
!undef !IfExistTmp
!if${_OP}def !IfExistIsTrue
!macroend
!macro LANG_LOAD LANGLOAD
!insertmacro MUI_LANGUAGE "${LANGLOAD}"
${!IfExist} "nsis_locales\${LANGLOAD}.nsh"
!verbose push
!verbose 0
!include "nsis_locales\${LANGLOAD}.nsh"
!verbose pop
!undef LANG
!endif
!macroend
!macro LANG_STRING NAME VALUE
LangString "${NAME}" ${LANG_${LANG}} "${VALUE}"
!macroend
!macro LANG_UNSTRING NAME VALUE
!insertmacro LANG_STRING "un.${NAME}" "${VALUE}"
!macroend
!insertmacro LANG_LOAD "English"
!insertmacro LANG_LOAD "Catalan"
!insertmacro LANG_LOAD "Czech"
!insertmacro LANG_LOAD "SimpChinese"
!insertmacro LANG_LOAD "Dutch"
!insertmacro LANG_LOAD "French"
!insertmacro LANG_LOAD "German"
!insertmacro LANG_LOAD "Hungarian"
!insertmacro LANG_LOAD "Polish"
!insertmacro LANG_LOAD "Portuguese"
!insertmacro LANG_LOAD "PortugueseBR"
!insertmacro LANG_LOAD "Russian"
!insertmacro LANG_LOAD "Spanish"
!insertmacro LANG_LOAD "Swedish"
!insertmacro LANG_LOAD "Ukrainian"
!insertmacro LANG_LOAD "Italian"
;--------------------------------
;Installer Sections
@@ -431,7 +477,7 @@ var SMDir
!macroend
Function HelpUsClick
ExecShell "Open" "http://www.free-decompiler.com/flash/help_us.html"
ExecShell "Open" "https://www.free-decompiler.com/flash/help_us.html"
FunctionEnd
@@ -530,14 +576,14 @@ Function CUSTOM_PAGE_HELPUS
pop $1
!insertmacro MUI_HEADER_TEXT "Help us" "Do you know you can help us?"
${NSD_CreateLabel} 0 0 100% 50 "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro MUI_HEADER_TEXT "$(STRING_HELP_US)" "$(STRING_HELP_US_DOYOU)"
${NSD_CreateLabel} 0 0 100% 50 "$(STRING_HELP_US_FREE)"
pop $1
${NSD_CreateLabel} 0 75 100% 50 "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
${NSD_CreateLabel} 0 75 100% 50 "$(STRING_HELP_US_DONATE)"
pop $1
${NSD_CreateLabel} 0 150 125 25 "Click here for more info:"
${NSD_CreateLabel} 0 150 200 25 "$(STRING_HELP_US_MORE)"
pop $1
${NSD_CreateButton} 130 145 75 25 "Help us!"
${NSD_CreateButton} 225 145 80 25 "$(STRING_HELP_US_BUTTON)"
pop $1
${NSD_OnClick} $1 HelpUsClick
nsDialogs::Show
@@ -680,7 +726,7 @@ FunctionEnd
Section "FFDec" SecDummy
SetShellVarContext all
SetOutPath "$INSTDIR"
@@ -755,18 +801,16 @@ var f
var pgname
var pghtml
Section "Download PlayerGlobal.swc" SecPlayerGlobal
checkadobe:
DetailPrint "Checking Adobe site for newest PlayerGlobal.swc file"
Section "$(STRING_SWC)" SecPlayerGlobal
;checkadobe:
DetailPrint "$(STRING_SWC_CHECK)"
GetTempFileName $pghtml
inetc::get /SILENT /USERAGENT "${APP_NAME} Setup" "https://www.adobe.com/support/flashplayer/downloads.html" "$pghtml"
Pop $0
StrCmp $0 "OK" dlok
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "PlayerGlobal.SWC was not found on Adobe webpages. You can download it later manually." /SD IDIGNORE IDRETRY checkadobe IDIGNORE exit
;MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "PlayerGlobal.SWC was not found on Adobe webpages. You can download it later manually. (Error returned was: $0, tempfile: $pghtml)" /SD IDIGNORE IDRETRY checkadobe IDIGNORE exit
Abort
MessageBox MB_OK "$(STRING_SWC_NOTFOUND)"
Goto exit
dlok:
StrCpy $pgfound 0
FileOpen $f "$pghtml" r
@@ -790,9 +834,8 @@ loop:
done:
FileClose $f
StrCmp $pgfound 2 +3
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "PlayerGlobal.SWC was not found on Adobe webpages. You can download it later manually." /SD IDIGNORE IDRETRY checkadobe IDIGNORE exit
Abort
MessageBox MB_OK "$(STRING_SWC_NOTFOUND)"
Goto exit
${StrRPos} $pos $txt "/"
IntOp $pos $pos + 1
@@ -801,21 +844,22 @@ Abort
IfFileExists "$APPDATA\JPEXS\FFDec\flashlib\$pgname" swcexists
CreateDirectory "$APPDATA\JPEXS\FFDec\flashlib"
DetailPrint "Starting download PlayerGlobal.swc"
DetailPrint "$(STRING_STARTING_DOWNLOAS) PlayerGlobal.swc"
inetc::get /USERAGENT "${APP_NAME} Setup" $txt "$APPDATA\JPEXS\FFDec\flashlib\$pgname"
Pop $0
StrCmp $0 "OK" saved
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "Failed to download PlayerGlobal.SWC from Adobe webpages. You can download it later manually." /SD IDIGNORE IDRETRY checkadobe IDIGNORE exit
Abort
MessageBox MB_OK "$(STRING_SWC_NOTFOUND)"
Goto exit
saved:
DetailPrint "PlayerGlobal.swc saved to $APPDATA\JPEXS\FFDec\flashlib\$pgname"
DetailPrint "PlayerGlobal.swc $(STRING_SAVED_TO) $APPDATA\JPEXS\FFDec\flashlib\$pgname"
Goto exit
swcexists:
DetailPrint "$APPDATA\JPEXS\FFDec\flashlib\$pgname already exists, skipping download"
DetailPrint "$APPDATA\JPEXS\FFDec\flashlib\$pgname $(STRING_EXISTS_SKIP_DOWNLOAD)"
exit:
SectionEnd
Section "Desktop Shortcut"
Section $(STRING_DESKTOP_SHORTCUT) SecShortcut
SetShellVarContext all
CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$INSTDIR\${APP_EXENAME}" ""
SectionEnd
@@ -826,7 +870,7 @@ Function .onInit
SectionSetFlags ${SecDummy} $0
FunctionEnd
Section "Add to context menu" SecContextMenu
Section "$(STRING_ADD_CONTEXT_MENU)" SecContextMenu
SetRegView 64
Push "swf"
Call AddToExtContextMenu
@@ -844,24 +888,14 @@ SectionEnd
;--------------------------------
;Descriptions
;Language strings
;LangString DESC_SecDummy ${LANG_ENGLISH} "Application GUI and Libraries"
;LangString DESC_SecDummy ${LANG_CZECH} "Aplika<6B>n<EFBFBD> rozhran<61> a knihovny"
;LangString DESC_PlayerGlobal ${LANG_ENGLISH} "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
;LangString DESC_PlayerGlobal ${LANG_CZECH} "St<53>hnout knihovnu FlashPlayeru ze str<74>nek Adobe - u<>ite<74>n<EFBFBD> pro p<><70>mou editaci ActionScriptu a dal<61><6C> v<>ci"
;Assign language strings to sections
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${SecDummy} "Application GUI and Libraries"
!insertmacro MUI_DESCRIPTION_TEXT ${SecPlayerGlobal} "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro MUI_DESCRIPTION_TEXT ${SecContextMenu} "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro MUI_DESCRIPTION_TEXT ${SecDummy} "$(STRING_SECTION_APP)"
!insertmacro MUI_DESCRIPTION_TEXT ${SecPlayerGlobal} "$(STRING_SECTION_SWC)"
!insertmacro MUI_DESCRIPTION_TEXT ${SecContextMenu} "$(STRING_SECTION_CONTEXT_MENU)"
!insertmacro MUI_DESCRIPTION_TEXT ${SecShortcut} "$(STRING_SECTION_SHORTCUT)"
!insertmacro MUI_FUNCTION_DESCRIPTION_END
;LangString DESC_UninstLocal ${LANG_ENGLISH} "Remove user configuration"
;LangString DESC_UninstLocal ${LANG_CZECH} "Odstranit u<>ivatelskou konfiguraci"
@@ -869,7 +903,7 @@ Var mycheckbox
Var uninstlocal
Function un.ModifyUnWelcome
${NSD_CreateCheckbox} 120u -18u 50% 12u "Remove user configuration"
${NSD_CreateCheckbox} 120u -18u 50% 12u "$(STRING_UNINST_USER)"
Pop $mycheckbox
SetCtlColors $mycheckbox "" ${MUI_BGCOLOR}
;${NSD_Check} $mycheckbox ; Check it by default

61
nsis_locales/Catalan.nsh Normal file
View File

@@ -0,0 +1,61 @@
!define LANG "CATALAN" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

62
nsis_locales/Czech.nsh Normal file
View File

@@ -0,0 +1,62 @@
!define LANG "CZECH" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "Knihovna PlayerGlobal.SWC nebyla nalezena na stránkách Adobe. Možná přístup blokuje váš firewall nebo používáte proxy. Cestu k SWC souboru lze později nastavit v rozšířených nastaveních v aplikaci."
!insertmacro LANG_STRING STRING_SAVED_TO "staženo do"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "již existuje, nestahuji"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Začátek stahování"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Zástupce na ploše"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Přidat do kontextového menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Grafické rozhraní a knihovny"
!insertmacro LANG_STRING STRING_SECTION_SWC "Stáhnout knihovnu FlashPlayeru ze stránek Adobe - používá se například pro přímou editaci ActionScriptu."
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Přidá FFDec do kontextového menu SWF a GFX souborů v průzkumníku."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Vytvoří zástupce na ploše windows"
!insertmacro LANG_STRING STRING_UNINST_USER "Odstranit uživatelskou konfiguraci"
!insertmacro LANG_STRING STRING_HELP_US "Pomožte nám"
!insertmacro LANG_STRING STRING_HELP_US_FREE "Celý tento dekompilátor je k dispozici zdarma a s otevřeným kódem. Pokud nás chcete podpořit, můžete o našem dekompilátoru říct dalším lidem. Použijte odkaz na naše stránky, informujte ostatní."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "Pokud chcete ocenit čas a prostředky, které autor investoval do vývoje, přijímáme a oceňujeme také peněžní dary."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Klikněte zde pro více informací:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Víte, že nám můžete pomoct?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Pomožte nám!"
!insertmacro LANG_STRING STRING_SWC "Stáhnout PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Kontroluji stránky Adobe pro nejnovější soubor PlayerGlobal.swc"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Vyžadován ovládací prvek Flash Player ActiveX"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "Tato aplikace vyžaduje ovládací prvek Flash ActiveX"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "Tato aplikace vyžaduje instalaci ovládacího prvku Flash ActiveX. Ten bude stažen a nainstalován jako součást instalace."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Ovládací prvek Flash ActiveX je již nainstalován"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Výsledek: Flash Active X chybí."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "Následuje stažení Flashe z "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Výsledek stažení = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Nelze stáhnout Flash ActiveX. Můžete ho stáhnout později ručně nebo použít náš vlastní zobrazovač flashe."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Spouštím instalaci Flashe"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "Instalace Flashe byla předčasně ukončena - návratový kód"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Kontroluji výsledek instalace Flashe"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Nelze nalézt Flash ActiveX i přesto, že instace Flashe byla úspěšná"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Nelze nainstalovat Flash ActiveX. Můžete ho stáhnout později ručně nebo použít náš vlastní zobrazovač flashe."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Instalace Flashe dokončena"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detekuji Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "Vyžadována instalace JRE"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "Tato aplikace vyžaduje Javu ${JRE_VERSION} nebo vyšší"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "Tato aplikace vyžaduje instalaci Java Runtime Environment. Ten bude stažen a instalován jako součást instalace."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "Vyžadována aktualizace JRE"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "Tato aplikace vyžaduje Javu ${JRE_VERSION} či vyšší"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "Tato aplikace vyžaduje novější Java Runtime Environment. Ten bude stažen a nainstalován jako součást instalace."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detekuji verzi JRE"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "Detekce verze JRE dokončena - výsledek = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Nalezeno staré JRE"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "JRE nenalezeno"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Porovnání verze "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " s "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " s výsledkem "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "Následuje stažení JRE z "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Výsledek stažení = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Nelze stáhnout Javu. Můžete jí stáhnout později ručně."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Spouštím instalaci JRE"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "Instalace JRE dokončena"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "Instalace JRE byla předčasně ukončena - návratový kód "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Kontroluji výsledek JRE instalace"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Nelze najít JRE s verzí minimálně ${JRE_VERSION}, i když instalace JRE byla úspěšná"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Nelze nainstslovat Javu. Můžete jí nainstalovat později ručně."

61
nsis_locales/Dutch.nsh Normal file
View File

@@ -0,0 +1,61 @@
!define LANG "DUTCH" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

67
nsis_locales/English.nsh Normal file
View File

@@ -0,0 +1,67 @@
!define LANG "ENGLISH" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."
;!insertmacro LANG_STRING STRING_ ""

61
nsis_locales/French.nsh Normal file
View File

@@ -0,0 +1,61 @@
!define LANG "FRENCH" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

60
nsis_locales/German.nsh Normal file
View File

@@ -0,0 +1,60 @@
!define LANG "GERMAN" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

View File

@@ -0,0 +1,61 @@
!define LANG "HUNGARIAN" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

60
nsis_locales/Italian.nsh Normal file
View File

@@ -0,0 +1,60 @@
!define LANG "ITALIAN" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

62
nsis_locales/Polish.nsh Normal file
View File

@@ -0,0 +1,62 @@
!define LANG "POLISH" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

View File

@@ -0,0 +1,61 @@
!define LANG "PORTUGUESE" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

View File

@@ -0,0 +1,61 @@
!define LANG "PORTUGUESEBR" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

60
nsis_locales/Russian.nsh Normal file
View File

@@ -0,0 +1,60 @@
!define LANG "RUSSIAN" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

View File

@@ -0,0 +1,60 @@
!define LANG "SIMPCHINESE" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

61
nsis_locales/Spanish.nsh Normal file
View File

@@ -0,0 +1,61 @@
!define LANG "SPANISH" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

61
nsis_locales/Swedish.nsh Normal file
View File

@@ -0,0 +1,61 @@
!define LANG "SWEDISH" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

View File

@@ -0,0 +1,61 @@
!define LANG "UKRAINIAN" ; Must be the lang name define by NSIS
!insertmacro LANG_STRING STRING_SWC_NOTFOUND "PlayerGlobal.SWC was not found on Adobe webpages. Maybe your firewall is blocking access or you have some proxy enabled. You can set the path to the SWC file later in advanced settings."
!insertmacro LANG_STRING STRING_SAVED_TO "saved to"
!insertmacro LANG_STRING STRING_EXISTS_SKIP_DOWNLOAD "already exists, skipping download"
!insertmacro LANG_STRING STRING_STARTING_DOWNLOAS "Starting download"
!insertmacro LANG_STRING STRING_DESKTOP_SHORTCUT "Desktop Shortcut"
!insertmacro LANG_STRING STRING_ADD_CONTEXT_MENU "Add to context menu"
!insertmacro LANG_STRING STRING_SECTION_APP "Application GUI and Libraries"
!insertmacro LANG_STRING STRING_SECTION_SWC "Download FlashPlayer library from Adobe site - useful for ActionScript direct editation and other features"
!insertmacro LANG_STRING STRING_SECTION_CONTEXT_MENU "Adds FFDec to context menu of SWF and GFX files in windows explorer."
!insertmacro LANG_STRING STRING_SECTION_SHORTCUT "Creates shortcut link on desktop"
!insertmacro LANG_STRING STRING_UNINST_USER "Remove user configuration"
!insertmacro LANG_STRING STRING_HELP_US "Help us"
!insertmacro LANG_STRING STRING_HELP_US_FREE "This whole decompiler is Free and OpenSource. If you want to support us, you can tell other people about our decompiler. Use link to our pages, share a word."
!insertmacro LANG_STRING STRING_HELP_US_DONATE "If you wish to express your appreciation for the time and resources the author has spent developing, we also do accept and appreciate monetary donations."
!insertmacro LANG_STRING STRING_HELP_US_MORE "Click here for more info:"
!insertmacro LANG_STRING STRING_HELP_US_DOYOU "Do you know you can help us?"
!insertmacro LANG_STRING STRING_HELP_US_BUTTON "Help us!"
!insertmacro LANG_STRING STRING_SWC "Download PlayerGlobal.swc"
!insertmacro LANG_STRING STRING_SWC_CHECK "Checking Adobe site for newest PlayerGlobal.swc file"
;Flash ActiveX:
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED_TITLE "Flash Player ActiveX control required"
!insertmacro LANG_STRING STRING_FLASH_AX_REQUIRED "This application requires Flash ActiveX control"
!insertmacro LANG_STRING STRING_FLASH_AX_WILLINSTALL "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_FLASH_AX_ALREADYINSTALLED "Flash ActiveX already installed"
!insertmacro LANG_STRING STRING_FLASH_AX_MISSING "Result: Flash Active X is missing."
!insertmacro LANG_STRING STRING_FLASH_AX_WILLDOWNLOAD "About to download Flash from "
!insertmacro LANG_STRING STRING_FLASH_AX_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_FLASH_AX_CANNOTDOWNLOAD "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_LAUNCHSETUP "Launching Flash setup"
!insertmacro LANG_STRING STRING_FLASH_AX_INTERRUPTED "The Flash setup has been abnormally interrupted - return code"
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPOUTCOME "Checking the Flash Setup's outcome"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEFINDAFTER "Unable to find Flash ActiveX, even though the Flash setup was successful"
!insertmacro LANG_STRING STRING_FLASH_AX_UNABLEINSTALL "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer."
!insertmacro LANG_STRING STRING_FLASH_AX_SETUPFINISHED "Flash Setup finished"
!insertmacro LANG_STRING STRING_FLASH_AX_DETECTING "Detecting Flash ActiveX"
;JRE:
!insertmacro LANG_STRING STRING_JRE_REQUIRED_TITLE "JRE Installation Required"
!insertmacro LANG_STRING STRING_JRE_REQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_REQUITED_INFO "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_TITLE "JRE Update Required"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED "This application requires Java ${JRE_VERSION} or higher"
!insertmacro LANG_STRING STRING_JRE_UPDATEREQUIRED_INFO "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro LANG_STRING STRING_JRE_DETECTVERSION "Detecting JRE Version"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE "JRE Version detection complete - result = "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_OLD "Old JRE found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPLETE_NO "No JRE Found"
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_1 "Comparing version "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_2 " to "
!insertmacro LANG_STRING STRING_JRE_DETECTCOMPARE_3 " results in "
!insertmacro LANG_STRING STRING_JRE_WILLDOWNLOAD "About to download JRE from "
!insertmacro LANG_STRING STRING_JRE_DOWNRESULT "Download result = "
!insertmacro LANG_STRING STRING_JRE_CANNOTDOWNLOAD "Cannot download Java. You can download it later manually."
!insertmacro LANG_STRING STRING_JRE_LAUNCHSETUP "Launching JRE setup"
!insertmacro LANG_STRING STRING_JRE_SETUPFINISHED "JRE Setup finished"
!insertmacro LANG_STRING STRING_JRE_INTERRUPTED "The JRE setup has been abnormally interrupted - return code "
!insertmacro LANG_STRING STRING_JRE_SETUPOUTCOME "Checking the JRE Setup's outcome"
!insertmacro LANG_STRING STRING_JRE_UNABLEFINDAFTER "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful"
!insertmacro LANG_STRING STRING_JRE_UNABLEINSTALL "Unable to install Java. You can install it later manually."

View File

@@ -29,8 +29,8 @@ Function CUSTOM_PAGE_FLASHINFO
pop $1
!insertmacro MUI_HEADER_TEXT "Flash Player ActiveX control required" "This application requires Flash ActiveX control"
${NSD_CreateLabel} 0 0 100% 100% "This application requires installation of the Flash ActiveX control. This will be downloaded and installed as part of the installation."
!insertmacro MUI_HEADER_TEXT $(STRING_FLASH_AX_REQUIRED_TITLE) $(STRING_FLASH_AX_REQUIRED)
${NSD_CreateLabel} 0 0 100% 100% $(STRING_FLASH_AX_WILLINSTALL)
pop $1
goto ShowDialog
@@ -49,29 +49,29 @@ Function DownloadAndInstallFlashIfNecessary
Push $0
Push $1
DetailPrint "Detecting Flash ActiveX"
DetailPrint "$(STRING_FLASH_AX_DETECTING)"
SetRegView 32
ClearErrors
ReadRegStr $R0 HKCR "CLSID\{D27CDB6E-AE6D-11cf-96B8-444553540000}" ""
IfErrors downloadFlash
DetailPrint "Flash ActiveX already installed"
DetailPrint "$(STRING_FLASH_AX_ALREADYINSTALLED)"
Goto End
downloadFlash:
DetailPrint "Result: Flash Active X is missing."
DetailPrint "About to download Flash from ${FLASH_URL}"
DetailPrint "$(STRING_FLASH_AX_MISSING)"
DetailPrint "$(STRING_FLASH_AX_WILLDOWNLOAD) ${FLASH_URL}"
Inetc::get "${FLASH_URL}" "$TEMP\flash_ax_setup.exe" /END
Pop $0 # return value = exit code, "OK" if OK
DetailPrint "Download result = $0"
DetailPrint "$(STRING_FLASH_AX_DOWNRESULT)$0"
strcmp $0 "OK" downloadsuccessful
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "Cannot download Flash ActiveX. You can download it later manually or use our own flash viewer." /SD IDIGNORE IDRETRY downloadFlash IDIGNORE End
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "$(STRING_FLASH_AX_CANNOTDOWNLOAD)" /SD IDIGNORE IDRETRY downloadFlash IDIGNORE End
Abort
downloadsuccessful:
DetailPrint "Launching Flash setup"
DetailPrint "$(STRING_FLASH_AX_LAUNCHSETUP)"
IfSilent doSilent
ExecWait '"$TEMP\flash_ax_setup.exe"' $0
@@ -81,24 +81,24 @@ doSilent:
flashSetupFinished:
DetailPrint "Flash Setup finished"
DetailPrint "$(STRING_FLASH_AX_SETUPFINISHED)"
Delete "$TEMP\flash_ax_setup.exe"
StrCmp $0 "0" InstallVerif 0
Push "The Flash setup has been abnormally interrupted - return code $0"
Push "$(STRING_FLASH_AX_INTERRUPTED) $0"
Goto ExitInstallFlash
InstallVerif:
DetailPrint "Checking the Flash Setup's outcome"
DetailPrint "$(STRING_FLASH_AX_SETUPOUTCOME)"
SetRegView 32
ClearErrors
ReadRegStr $R0 HKCR "CLSID\{D27CDB6E-AE6D-11cf-96B8-444553540000}" ""
IfErrors 0 ExitInstallFlash
Push "Unable to find Flash ActiveX, even though the Flash setup was successful$\n$\n$1"
Push "$(STRING_FLASH_AX_UNABLEFINDAFTER)$\n$\n$1"
Goto ExitInstallFlash
ExitInstallFlash:
Pop $1
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "Unable to install Flash ActiveX. You can download it later manually or use our own flash viewer.\n$\n$1" /SD IDIGNORE IDRETRY downloadFlash IDIGNORE End
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "$(STRING_FLASH_AX_UNABLEINSTALL)\n$\n$1" /SD IDIGNORE IDRETRY downloadFlash IDIGNORE End
Pop $1 ; Restore $1
Pop $0 ; Restore $0
Abort

View File

@@ -52,14 +52,14 @@ Function CUSTOM_PAGE_JREINFO
NoFound:
!insertmacro MUI_HEADER_TEXT "JRE Installation Required" "This application requires Java ${JRE_VERSION} or higher"
${NSD_CreateLabel} 0 0 100% 100% "This application requires installation of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro MUI_HEADER_TEXT "$(STRING_JRE_REQUIRED_TITLE)" "$(STRING_JRE_REQUIRED)"
${NSD_CreateLabel} 0 0 100% 100% "$(STRING_JRE_REQUITED_INFO)"
pop $1
goto ShowDialog
FoundOld:
!insertmacro MUI_HEADER_TEXT "JRE Update Required" "This application requires Java ${JRE_VERSION} or higher"
${NSD_CreateLabel} 0 0 100% 100% "This application requires a more recent version of the Java Runtime Environment. This will be downloaded and installed as part of the installation."
!insertmacro MUI_HEADER_TEXT "$(STRING_JRE_UPDATEREQUIRED_TITLE)" "$(STRING_JRE_UPDATEREQUIRED)"
${NSD_CreateLabel} 0 0 100% 100% "$(STRING_JRE_UPDATEREQUIRED_INFO)"
pop $1
goto ShowDialog
@@ -91,12 +91,12 @@ Function DownloadAndInstallJREIfNecessary
Push $0
Push $1
DetailPrint "Detecting JRE Version"
DetailPrint "$(STRING_JRE_DETECTVERSION)"
Push "${JRE_VERSION}"
Call DetectJRE
Pop $0 ; Get return value from stack
Pop $1 ; get JRE path (or error message)
DetailPrint "JRE Version detection complete - result = $1"
DetailPrint "$(STRING_JRE_DETECTCOMPLETE)$1"
strcmp $0 "OK" End downloadJRE
@@ -110,19 +110,19 @@ downloadJRE:
${EndIf}
Pop $JRE_URL
DetailPrint "About to download JRE from $JRE_URL"
DetailPrint "$(STRING_JRE_WILLDOWNLOAD)$JRE_URL"
Inetc::get "$JRE_URL" "$TEMP\jre_Setup.exe" /END
Pop $0 # return value = exit code, "OK" if OK
DetailPrint "Download result = $0"
DetailPrint "$(STRING_JRE_DOWNRESULT)$0"
strcmp $0 "OK" downloadsuccessful
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "Cannot download Java. You can download it later manually." /SD IDIGNORE IDRETRY downloadJRE IDIGNORE End
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "$(STRING_JRE_CANNOTDOWNLOAD)" /SD IDIGNORE IDRETRY downloadJRE IDIGNORE End
Abort
downloadsuccessful:
DetailPrint "Launching JRE setup"
DetailPrint "$(STRING_JRE_LAUNCHSETUP)"
IfSilent doSilent
ExecWait '"$TEMP\jre_setup.exe" REBOOT=Suppress /L \"$TEMP\jre_setup.log\"' $0
@@ -132,14 +132,14 @@ doSilent:
jreSetupFinished:
DetailPrint "JRE Setup finished"
DetailPrint "$(STRING_JRE_SETUPFINISHED)"
Delete "$TEMP\jre_setup.exe"
StrCmp $0 "0" InstallVerif 0
Push "The JRE setup has been abnormally interrupted - return code $0"
Push "$(STRING_JRE_INTERRUPTED)$0"
Goto ExitInstallJRE
InstallVerif:
DetailPrint "Checking the JRE Setup's outcome"
DetailPrint "$(STRING_JRE_SETUPOUTCOME)"
Push "${JRE_VERSION}"
Call DetectJRE
Pop $0 ; DetectJRE's return value
@@ -147,7 +147,7 @@ InstallVerif:
StrCmp $0 "OK" 0 JavaVerStillWrong
Goto JREPathStorage
JavaVerStillWrong:
Push "Unable to find JRE with version above ${JRE_VERSION}, even though the JRE setup was successful$\n$\n$1"
Push "$(STRING_JRE_UNABLEFINDAFTER)$\n$\n$1"
Goto ExitInstallJRE
JREPathStorage:
@@ -158,7 +158,7 @@ JREPathStorage:
ExitInstallJRE:
Pop $1
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "Unable to install Java. You can installl it later manually.$\n$\n$1" /SD IDIGNORE IDRETRY downloadJRE IDIGNORE End
MessageBox MB_ABORTRETRYIGNORE|MB_ICONSTOP "$(STRING_JRE_UNABLEINSTALL)$\n$\n$1" /SD IDIGNORE IDRETRY downloadJRE IDIGNORE End
Pop $1 ; Restore $1
Pop $0 ; Restore $0
Abort
@@ -229,20 +229,20 @@ GetJRE:
IfFileExists "$2\bin\java.exe" 0 NoFound
${VersionCompare} $0 $1 $3 ; $3 now contains the result of the comparison
DetailPrint "Comparing version $0 to $1 results in $3"
DetailPrint "$(STRING_JRE_DETECTCOMPARE_1)$0$(STRING_JRE_DETECTCOMPARE_2)$1$(STRING_JRE_DETECTCOMPARE_3)$3"
intcmp $3 1 FoundOld
goto FoundNew
NoFound:
; No JRE found
strcpy $0 "0"
strcpy $1 "No JRE Found"
strcpy $1 "$(STRING_JRE_DETECTCOMPLETE_NO)"
Goto DetectJREEnd
FoundOld:
; An old JRE was found
strcpy $0 "-1"
strcpy $1 "Old JRE found"
strcpy $1 "$(STRING_JRE_DETECTCOMPLETE_OLD)"
Goto DetectJREEnd
FoundNew:
; A suitable JRE was found