Changeset 139 for smplayer/trunk/setup
- Timestamp:
- Dec 3, 2012, 7:05:11 PM (13 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 28 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 137
- Property svn:mergeinfo changed
-
smplayer/trunk/setup/scripts/install_smplayer.cmd
r135 r139 14 14 set SMTUBE_DIR=svn\smtube 15 15 set SMPLAYER_THEMES_DIR=svn\smplayer-themes 16 set SMPLAYER_SKINS_DIR=svn\smplayer-skins 16 17 set MPLAYER_DIR=mplayer 17 18 set QT_DIR=C:\QtSDK\Desktop\Qt\%QTVER%\mingw … … 25 26 copy %SMPLAYER_DIR%\dxlist\release\dxlist.exe %OUTPUT_DIR% 26 27 copy %SMPLAYER_DIR%\zlib\zlib1.dll %OUTPUT_DIR% 28 copy %SMPLAYER_DIR%\setup\sample.avi %OUTPUT_DIR% 27 29 copy %SMPLAYER_DIR%\*.txt %OUTPUT_DIR% 28 30 copy %QT_DIR%\bin\QtCore4.dll %OUTPUT_DIR% … … 68 70 69 71 echo. 72 echo ###### Skins Themes ####### 73 echo. 74 svn export --force %SMPLAYER_SKINS_DIR%\themes %OUTPUT_DIR%\themes 75 76 echo. 70 77 echo ###### MPlayer ####### 71 78 echo. -
smplayer/trunk/setup/scripts/make_pkgs.cmd
r135 r139 5 5 echo Be sure to have a compiled portable smplayer.exe, renamed as 6 6 echo `smplayer-portable.exe` in the same directory as this script or an 7 echo alternate location you specify in this script. 7 echo alternate location you specify in this script when creating the portable 8 echo packages. 8 9 echo. 9 10 echo Configure your build environment at the beginning of this script. 10 11 echo. 11 12 echo 7zip command-line (http://7zip.org) is required by this script. 12 echo.13 echo * Release Packages14 13 echo. 15 14 echo 1 - NSIS SMPlayer Packages … … 17 16 echo 3 - SMPlayer Package w/o MPlayer 18 17 echo 4 - MPlayer Package 19 echo.20 echo * Update Packages21 echo.22 echo 5 - SMPlayer SVN Update Package23 echo 6 - Qt DLL Package24 18 25 19 echo. … … 38 32 set OUTPUT_DIR=%TOP_LEVEL_DIR%\output 39 33 set PORTABLE_EXE_DIR=%TOP_LEVEL_DIR%\portable 40 set QT_DIR=E:\Buildsys\Qt\%QTVER%41 34 42 35 :reask … … 55 48 ) else if "%USER_CHOICE%" == "4" ( 56 49 goto mplayer 57 58 ) else if "%USER_CHOICE%" == "5" (59 goto svn_updpkg60 61 ) else if "%USER_CHOICE%" == "6" (62 goto qtdlls63 50 64 51 ) else ( … … 246 233 goto end 247 234 248 :svn_updpkg249 echo.250 echo --- Creating SVN Update Package ---251 echo.252 253 set /P SMPLAYER_SVN="SMPlayer SVN Revision: "254 if "%SMPLAYER_SVN%"=="" goto end255 256 7za a -t7z %OUTPUT_DIR%\smplayer_update_svn_r%SMPLAYER_SVN%.7z %SMPLAYER_DIR%\smplayer.exe %SMPLAYER_DIR%\translations -mx9257 258 goto end259 260 :qtdlls261 262 set /P QTVER="Qt Version: "263 if "%QTVER%"=="" goto end264 265 echo.266 echo --- Creating Qt DLL Package ---267 echo.268 269 mkdir imageformats270 copy %QT_DIR%\%QTVER%\plugins\imageformats\qjpeg4.dll imageformats271 7za a -t7z %OUTPUT_DIR%\qt_%QTVER%_dlls.7z %QT_DIR%\%QTVER%\bin\libgcc_s_dw2-1.dll %QT_DIR%\%QTVER%\bin\mingwm10.dll %QT_DIR%\%QTVER%\bin\QtCore4.dll %QT_DIR%\%QTVER%\bin\QtGui4.dll %QT_DIR%\%QTVER%\bin\QtNetwork4.dll %QT_DIR%\%QTVER%\bin\QtXml4.dll imageformats -mx9272 rd /s /q imageformats273 274 goto end275 276 235 :end 277 236 -
smplayer/trunk/setup/smplayer.nsi
r135 r139 1 ; 2 ; 3 ; 1 ;Installer script for win32/win64 SMPlayer 2 ;Written by redxii (redxii@users.sourceforge.net) 3 ;Tested/Developed with Unicode NSIS 2.46.5 4 4 5 5 !ifndef VER_MAJOR | VER_MINOR | VER_BUILD … … 62 62 BrandingText "SMPlayer for Windows v${SMPLAYER_VERSION}" 63 63 !ifdef WIN64 64 OutFile "output\smplayer-${SMPLAYER_VERSION}-x 86_64.exe"64 OutFile "output\smplayer-${SMPLAYER_VERSION}-x64.exe" 65 65 !else 66 OutFile "output\smplayer-${SMPLAYER_VERSION}- x86.exe"66 OutFile "output\smplayer-${SMPLAYER_VERSION}-win32.exe" 67 67 !endif 68 68 … … 121 121 !define MUI_UNICON "smplayer-orange-uninstaller.ico" 122 122 123 ; 123 ;Misc 124 124 !define MUI_WELCOMEFINISHPAGE_BITMAP "smplayer-orange-wizard.bmp" 125 125 !define MUI_UNWELCOMEFINISHPAGE_BITMAP "smplayer-orange-wizard-un.bmp" 126 126 !define MUI_ABORTWARNING 127 127 128 ; License page 128 ;Welcome page 129 !define MUI_WELCOMEPAGE_TITLE $(WelcomePage_Title) 130 !define MUI_WELCOMEPAGE_TEXT $(WelcomePage_Text) 131 132 ;License page 129 133 !define MUI_LICENSEPAGE_RADIOBUTTONS 130 134 131 ; 135 ;Components page 132 136 !define MUI_COMPONENTSPAGE_SMALLDESC 133 137 134 ; 138 ;Finish page 135 139 !define MUI_FINISHPAGE_LINK "http://smplayer.sourceforge.net" 136 140 !define MUI_FINISHPAGE_LINK_LOCATION "http://smplayer.sourceforge.net" … … 173 177 174 178 ;Install pages 179 #Welcome 175 180 !insertmacro MUI_PAGE_WELCOME 176 !insertmacro MUI_PAGE_LICENSE "${SMPLAYER_BUILD_DIR}\Copying.txt" 181 182 #License 183 !insertmacro MUI_PAGE_LICENSE "license.txt" 177 184 178 185 #Upgrade/Reinstall … … 198 205 !insertmacro MUI_UNPAGE_CONFIRM 199 206 !insertmacro MUI_UNPAGE_INSTFILES 200 !define MUI_PAGE_CUSTOMFUNCTION_PRE un.FinishPagePre201 207 !insertmacro MUI_UNPAGE_FINISH 202 208 … … 229 235 !insertmacro MUI_LANGUAGE "TradChinese" 230 236 231 ; 237 ;Custom translations for setup 232 238 233 239 !insertmacro LANGFILE_INCLUDE "translations\english.nsh" … … 413 419 done: 414 420 415 421 SectionEnd 416 422 417 423 SectionGroupEnd … … 448 454 ;Allows user to use 'start smplayer.exe' 449 455 WriteRegStr HKLM "${SMPLAYER_APP_PATHS_KEY}" "" "$INSTDIR\smplayer.exe" 456 WriteRegStr HKLM "${SMPLAYER_APP_PATHS_KEY}" "Path" "$INSTDIR" 450 457 451 458 ;Default Programs Registration (Vista & later) … … 610 617 611 618 retry_runcheck: 612 613 614 615 619 FindProcDLL::FindProc "smplayer.exe" 620 IntCmp $R0 1 0 +3 621 MessageBox MB_RETRYCANCEL|MB_ICONEXCLAMATION $(SMPlayer_Is_Running) /SD IDCANCEL IDRETRY retry_runcheck 622 Abort 616 623 617 624 FunctionEnd … … 628 635 MessageBox MB_YESNO|MB_ICONSTOP $(OS_Not_Supported) /SD IDNO IDYES installonoldwindows 629 636 Abort 630 637 installonoldwindows: 631 638 ${EndIf} 632 639 … … 644 651 MessageBox MB_OK|MB_ICONSTOP $(Existing_32bitInst) 645 652 Abort 646 653 647 654 SetRegView 64 648 655 !else … … 655 662 MessageBox MB_OK|MB_ICONSTOP $(Existing_64bitInst) 656 663 Abort 657 664 658 665 SetRegView 32 659 666 ${EndIf} … … 669 676 670 677 ;Check if SMPlayer is running 671 Call RunCheck 678 ;Allow skipping check using /NORUNCHECK 679 ${GetParameters} $R0 680 ${GetOptions} $R0 "/NORUNCHECK" $R1 681 IfErrors 0 +2 682 Call RunCheck 672 683 673 684 ;Check for admin on < Vista … … 959 970 960 971 ;Check if SMPlayer is running 961 Call un.RunCheck 972 ;Allow skipping check using /NORUNCHECK 973 ${un.GetParameters} $R0 974 ${un.GetOptions} $R0 "/NORUNCHECK" $R1 975 IfErrors 0 +2 976 Call un.RunCheck 962 977 963 978 ;Gets start menu folder name … … 979 994 980 995 FunctionEnd 981 982 Function un.FinishPagePre983 984 ${un.GetParameters} $R0985 986 ${un.GetOptionsS} $R0 "/X" $R1987 ${Unless} ${Errors}988 Abort989 ${EndUnless}990 991 FunctionEnd -
smplayer/trunk/setup/translations/basque.nsh
r135 r139 12 12 ${LangFileString} SMPlayer_Is_Running "SMPlayerren eskabide bat lanean ari da. Mesedez irten SMPlayerretik eta saiatu berriro." 13 13 14 ${LangFileString} OS_Not_Supported " Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"14 ${LangFileString} OS_Not_Supported "Sistema eragile sostengu gabea.$\nSMPlayer ${SMPLAYER_VERSION} gutxienez Windows XP behar du eta ezin du zuzen lan egin zure sisteman.$\nEgitan nahi duzu ezarpenarekin jarraitzea?" 15 15 ${LangFileString} Win64_Required "64-biteko Windows sistema eragile bat behar da software hau ezartzeko." 16 16 ${LangFileString} Existing_32bitInst "32-biteko SMPlayer ezarpen bat dago. Lehenik 32-biteko SMPlayer kendu behar duzu." 17 17 ${LangFileString} Existing_64bitInst "64-biteko SMPlayer ezarpen bat dago. Lehenik 64-biteko SMPlayer kendu behar duzu." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 24 28 ${LangFileString} Section_SMPlayer_Desc "SMPlayer, elkarbanatutako liburutegiak, eta agiritza." 25 29 26 ${LangFileString} Section_DesktopShortcut "Mah igaina"27 ${LangFileString} Section_DesktopShortcut_Desc "Sortu SMPlayer lasterbide bat mah igainean."30 ${LangFileString} Section_DesktopShortcut "Mahaigaina" 31 ${LangFileString} Section_DesktopShortcut_Desc "Sortu SMPlayer lasterbide bat mahaigainean." 28 32 29 33 ${LangFileString} Section_StartMenu "Hasiera Menua" … … 69 73 ${LangFileString} StartBtn "Hasi" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "MPlayer jeisten..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer ez da ongi ezarri. Berriro saiatu?"74 ${LangFileString} MPlayer_DL_Failed "Hutsegitea MPlayer: '$R0'. jeisterakoan"75 ${LangFileString} MPlayer_Inst_Failed "Hutsegitea MPlayer ezartzerakoan. MPlayer beharrezkoa da irakurketarako"76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "MPlayer kodekak jeisten..." -
smplayer/trunk/setup/translations/catalan.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/croatian.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer Codecs..." -
smplayer/trunk/setup/translations/czech.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "Máte nainstalovánu 32-bitovou verzi SMPlayeru. Musíte nejprve odinstalovat 32-bitový SMPlayer." 17 17 ${LangFileString} Existing_64bitInst "Máte nainstalovánu 64-bitovou verzi SMPlayeru. Musíte nejprve odinstalovat 64-bitový SMPlayer." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Stahuji MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer se nepovedlo nainstalovat. Zkusit znovu?"74 ${LangFileString} MPlayer_DL_Failed "Nepovedlo se stáhnout MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Nepovedlo se nainstalovat MPlayer. MPlayer je potřebný pro přehrávání."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Instaluji kodeky MPlayeru..." -
smplayer/trunk/setup/translations/danish.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/dutch.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/english.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer Codecs..." -
smplayer/trunk/setup/translations/finnish.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/french.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/german.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "MPlayer herunterladen …"73 ${LangFileString} MPlayer_DL_Retry "MPlayer ist nicht erfolgreich installiert worden. Erneut versuchen?"74 ${LangFileString} MPlayer_DL_Failed "Fehler beim Herunterladen von MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Fehler beim Installieren von MPlayer. MPlayer ist erforderlich für die Wiedergabe."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "MPlayer-Codecs herunterladen …" -
smplayer/trunk/setup/translations/hebrew.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/hungarian.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Az MPlayer letöltése..."73 ${LangFileString} MPlayer_DL_Retry "Az MPlayer telepítése nem sikerült. Újra próbáljam?"74 ${LangFileString} MPlayer_DL_Failed "Az MPlayer letöltése nem sikerült: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Az MPlayer telepítése nem sikerült. Az MPlayerre szükség van a lejátszáshoz."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "MPlayer kodekek letöltése..." -
smplayer/trunk/setup/translations/italian.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Sto scaricando MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer non è stato completamente installato. Riprova?"74 ${LangFileString} MPlayer_DL_Failed "Scaricamento di MPlayer fallito: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Installazione di MPlayer fallita. MPlayer è un componente necessario per la riproduzione multimediale."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Sto scaricando i codec di MPlayer..." -
smplayer/trunk/setup/translations/japanese.nsh
r135 r139 12 12 ${LangFileString} SMPlayer_Is_Running "SMPlayer のインスタンスが実行中です。SMPlayer を終了してやり直してください。" 13 13 14 ${LangFileString} OS_Not_Supported " Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"14 ${LangFileString} OS_Not_Supported "サポートされていないオペレーティング システムです。$\nSMPlayer ${SMPLAYER_VERSION} は Windows XP 以上を必要とし、お使いのシステムでは正常に動作しない可能性があります。$\n本当にインストールを続行しますか?" 15 15 ${LangFileString} Win64_Required "このソフトウェアをインストールするには 64 ビットの Windows オペレーティング システムが必要です。" 16 16 ${LangFileString} Existing_32bitInst "32 ビットの SMPlayer が既にインストールされています。先に 32 ビットの SMPlayer をアンインストールする必要があります。" 17 17 ${LangFileString} Existing_64bitInst "64 ビットの SMPlayer が既にインストールされています。先に 64 ビットの SMPlayer をアンインストールする必要があります。" 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) のセットアップ" 21 ${LangFileString} WelcomePage_Text "セットアップは $(^NameDA) のインストールをご案内します。$\r$\n$\r$\nセットアップの開始前にすべての SMPlayer のインスタンスを閉じることが推奨されます。これによりお使いのコンピューターを再起動する必要なく関連するプログラム ファイルを更新することが可能になります。$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "開始" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "MPlayer をダウンロードしています..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer は正常にインストールされませんでした。再試行しますか?"74 ${LangFileString} MPlayer_DL_Failed "MPlayer のダウンロードに失敗しました: '$R0'。"75 ${LangFileString} MPlayer_Inst_Failed "MPlayer のインストールに失敗しました。MPlayer は再生に必要です。"76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "MPlayer コーデックをダウンロードしています..." -
smplayer/trunk/setup/translations/korean.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/norwegian.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/polish.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 68 72 ${LangFileString} StartBtn "Start" 69 73 70 ; MPlayer Section71 ${LangFileString} MPlayer_DL_Msg "Pobieram MPlayera..."72 ${LangFileString} MPlayer_DL_Retry "Instalacja MPlayera nie powiodła się. Ponowić próbę?"73 ${LangFileString} MPlayer_DL_Failed "Nie udało się pobrać MPlayera: '$R0'."74 ${LangFileString} MPlayer_Inst_Failed "Nie udało się zainstalować MPlayera. Bez MPlayera odtwarzanie filmów nie jest możliwe."75 76 74 ; Codecs Section 77 75 ${LangFileString} Codecs_DL_Msg "Pobieram kodeki do MPlayera..." -
smplayer/trunk/setup/translations/portuguese.nsh
r135 r139 12 12 ${LangFileString} SMPlayer_Is_Running "Já existe uma instância SMPlayer em execução. Feche o SMPlayer e tente novamente." 13 13 14 ${LangFileString} OS_Not_Supported " Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"14 ${LangFileString} OS_Not_Supported "O sistema operativo não é suportado.$\nO SMPlayer ${SMPLAYER_VERSION} requer, pelo menos, o Windows XP para funcionar corretamente.$\nQuer mesmo continuar com a instalação?" 15 15 ${LangFileString} Win64_Required "Para instalar esta versão, tem que possuir um sistema de 64 bits." 16 ${LangFileString} Existing_32bitInst "Já existe uma instalação 32 bits do SMPlayer. Tem que a desinstalar antes de uma nova instalação." 17 ${LangFileString} Existing_64bitInst "Já existe uma instalação 64 bits do SMPlayer. Tem que a desinstalar antes de uma nova instalação." 16 ${LangFileString} Existing_32bitInst "Já existe uma instalação 32 bits do SMPlayer. Tem que a desinstalar antes de efetuar uma nova instalação." 17 ${LangFileString} Existing_64bitInst "Já existe uma instalação 64 bits do SMPlayer. Tem que a desinstalar antes de efetuar uma nova instalação." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Esta configuração irá ajuda-lo a instalar o $(^NameDA).$\r$\n$\r$\nÉ altamente recomendado o encerramento de quaisquer instâncias do SMPlayer antes de iniciar a instalação. Deste modo, será possível atualizar os ficheiros do programa sem ter que reiniciar o computador.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 55 59 56 60 ${LangFileString} Reinstall_Msg1 "Você possui uma instalação do SMPlayer nesta pasta:" 57 ${LangFileString} Reinstall_Msg2 "Por favor ,escolha o método a utilizar:"61 ${LangFileString} Reinstall_Msg2 "Por favor escolha o método a utilizar:" 58 62 ${LangFileString} Reinstall_Overwrite "Substituir ($Inst_Type) a instalação existente" 59 63 ${LangFileString} Reinstall_Uninstall "Desinstalar (remove) a instalação existente" … … 68 72 69 73 ${LangFileString} StartBtn "Iniciar" 70 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "A transferir o MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "O MPlayer não foi instalado corretamente. Tentar novamente?"74 ${LangFileString} MPlayer_DL_Failed "Falha ao transferir o MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Falha ao instalar o MPlayer. O MPlayer é necessário para reproduzir ficheiros."76 74 77 75 ; Codecs Section … … 92 90 93 91 ; Vista & Later Default Programs Registration 94 ${LangFileString} Application_Description "O SMPlayer é um interface gráfico para o MPlayer, com funções simples como a reprodução de vídeos, DVDs e VCDs bem como outras mais avançadas(suporte a filtros MPlayer, listas e mais)."92 ${LangFileString} Application_Description "O SMPlayer é uma interface gráfico para o MPlayer, com funções simples como a reprodução de vídeos, DVDs e VCDs bem como outras mais avançadas(suporte a filtros MPlayer, listas e mais)." 95 93 96 94 ; Misc -
smplayer/trunk/setup/translations/russian.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "Существует 32-битная установка SMPlayer. Сначала далите 32-битный SMPlayer." 17 17 ${LangFileString} Existing_64bitInst "Существует 64-битная установка SMPlayer. Сначала далите 64-битный SMPlayer." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Старт" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Загрузка MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "Не удалось успешно установить MPlayer. Попытаться ещё раз?"74 ${LangFileString} MPlayer_DL_Failed "Не удалось загрузить MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Ошибка при установке MPlayer. MPlayer требуется для воспроизведения."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Загрузка бинарных кодеков для MPlayer..." -
smplayer/trunk/setup/translations/simpchinese.nsh
r135 r139 8 8 9 9 ; Startup 10 ${LangFileString} Installer_Is_Running "安装程序已经 运行。"11 ${LangFileString} Installer_No_Admin "安装 本程序时,您必须以管理员身份登录。"12 ${LangFileString} SMPlayer_Is_Running " 一个 SMPlayer实例正在运行。请退出 SMPlayer,然后再试一次。"10 ${LangFileString} Installer_Is_Running "安装程序已经在运行。" 11 ${LangFileString} Installer_No_Admin "安装此程序时,您必须以管理员身份登录。" 12 ${LangFileString} SMPlayer_Is_Running "SMPlayer 的一个实例正在运行。请退出 SMPlayer,然后再试一次。" 13 13 14 ${LangFileString} OS_Not_Supported "Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?" 15 ${LangFileString} Win64_Required "安装本软件需要 64 位 Windows 操作系统。" 16 ${LangFileString} Existing_32bitInst "一个 SMPlayer 的 32 位安装已经存在。您必须先卸载 32 位 SMPlayer。" 17 ${LangFileString} Existing_64bitInst "一个 SMPlayer 的 64 位安装已经存在。您必须先卸载 64 位 SMPlayer。" 14 ${LangFileString} OS_Not_Supported "不支持的操作系统。$\nSMPlayer ${SMPLAYER_VERSION} 要求至少是 Windows XP,其在您的系统上可能无法正常工作。$\n您真的要继续安装吗?" 15 ${LangFileString} Win64_Required "安装此软件需要 64 位 Windows 操作系统。" 16 ${LangFileString} Existing_32bitInst "存在一个现有的 SMPlayer 32 位安装。您必须先卸载 32 位的 SMPlayer。" 17 ${LangFileString} Existing_64bitInst "存在一个现有的 SMPlayer 64 位安装。您必须先卸载 64 位的 SMPlayer。" 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) 安装程序" 21 ${LangFileString} WelcomePage_Text "安装程序将引导您完成 $(^NameDA) 的安装。$\r$\n$\r$\n建议您在开始安装之前关闭所有的 SMPlayer 实例。这将使它能够更新相关的程序文件,而无需重新启动您的计算机。$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 35 39 ${LangFileString} Section_MPlayerCodecs "二进制编解码器" 36 40 !ifdef WITH_CODECS 37 ${LangFileString} Section_MPlayerCodecs_Desc " 用于 MPlayer 的可选编解码器包。"41 ${LangFileString} Section_MPlayerCodecs_Desc "适用于 MPlayer 的可选编解码器包。" 38 42 !else ifndef WITH_CODECS 39 ${LangFileString} Section_MPlayerCodecs_Desc " 用于 MPlayer 的可选编解码器包。(安装需要使用网络连接)"43 ${LangFileString} Section_MPlayerCodecs_Desc "适用于 MPlayer 的可选编解码器包。(安装需要使用网络连接)" 40 44 !endif 41 45 42 ${LangFileString} Section_MEncoder_Desc "MPlayer 伴侣程序,可用于编码或转换支持的音频/视频流。"46 ${LangFileString} Section_MEncoder_Desc "MPlayer 的配套程序,可以用来编码或转换支持的音频/视频流。" 43 47 44 48 ${LangFileString} Section_IconThemes "图标主题" 45 ${LangFileString} Section_IconThemes_Desc " 用于SMPlayer 的附加图标主题。"49 ${LangFileString} Section_IconThemes_Desc "SMPlayer 的附加图标主题。" 46 50 47 51 ${LangFileString} Section_Translations "语言" 48 ${LangFileString} Section_Translations_Desc " 用于 SMPlayer 的语言文件 (除英语)。"52 ${LangFileString} Section_Translations_Desc "SMPlayer 的语言文件。(除英语)" 49 53 50 ${LangFileString} MPlayer_Codec_Msg "二进制编解码器包可增加对新 RealVideo 变种和很多不常见格式的支持。$\n请注意,播放像 DVD ,MPEG-1/2/4 这样平时常见的格式无需安装本编解码器包。"54 ${LangFileString} MPlayer_Codec_Msg "二进制编解码器包可增加对新 RealVideo 变种和很多不常见格式的支持。$\n请注意,播放像 DVD、MPEG-1/2/4 这样平时常见的格式无需安装本编解码器包。" 51 55 52 56 ; Upgrade/Reinstall Page 53 57 ${LangFileString} Reinstall_Header_Text "选择安装类型" 54 ${LangFileString} Reinstall_Header_SubText "选择 覆盖或卸载模式。"58 ${LangFileString} Reinstall_Header_SubText "选择“覆盖”或“卸载”模式。" 55 59 56 ${LangFileString} Reinstall_Msg1 "您有一个 已存在的 SMPlayer 安装位于以下文件夹:"60 ${LangFileString} Reinstall_Msg1 "您有一个现有的 SMPlayer 安装位于以下文件夹:" 57 61 ${LangFileString} Reinstall_Msg2 "请选择如何继续:" 58 62 ${LangFileString} Reinstall_Overwrite "覆盖 ($Inst_Type) 现有的安装" … … 69 73 ${LangFileString} StartBtn "开始" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "正在下载 MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer 没有成功安装。是否重试?"74 ${LangFileString} MPlayer_DL_Failed "无法下载 MPlayer: '$R0'。"75 ${LangFileString} MPlayer_Inst_Failed "无法安装 MPlayer。要播放媒体文件必须安装 MPlayer。"76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "正在下载 MPlayer 编解码器..." 79 77 ${LangFileString} Codecs_DL_Retry "MPlayer 编解码器没有成功安装。是否重试?" 80 ${LangFileString} Codecs_DL_Failed " 无法下载 MPlayer 编解码器: '$R0'。"81 ${LangFileString} Codecs_Inst_Failed " 无法安装 MPlayer 编解码器。"78 ${LangFileString} Codecs_DL_Failed "MPlayer 编解码器下载失败: '$R0'。" 79 ${LangFileString} Codecs_Inst_Failed "MPlayer 编解码器安装失败。" 82 80 83 81 ; Version information 84 82 ${LangFileString} VerInfo_DL_Msg "正在下载版本信息..." 85 ${LangFileString} VerInfo_DL_Failed " 无法下载版本信息: '$R0'。将使用默认版本。"83 ${LangFileString} VerInfo_DL_Failed "版本信息下载失败: '$R0'。将使用默认版本。" 86 84 87 85 ; Uninstaller 88 ${LangFileString} Uninstaller_No_Admin " 本安装只能由具有管理员权限的用户卸载。"86 ${LangFileString} Uninstaller_No_Admin "安装只能由具有管理员权限的用户卸载。" 89 87 ${LangFileString} Uninstaller_Aborted "卸载由用户中止。" 90 ${LangFileString} Uninstaller_NotInstalled "没有发现 SMPlayer 被安装在目录 '$INSTDIR' 中。$\r$\n仍 要继续吗? (不推荐)"91 ${LangFileString} Uninstaller_64bitOnly " 本安装只能在 64 位 Windows 中卸载。"88 ${LangFileString} Uninstaller_NotInstalled "没有发现 SMPlayer 被安装在目录 '$INSTDIR' 中。$\r$\n仍然要继续吗? (不推荐)" 89 ${LangFileString} Uninstaller_64bitOnly "安装只能在 64 位 Windows 中卸载。" 92 90 93 91 ; Vista & Later Default Programs Registration 94 ${LangFileString} Application_Description "SMPlayer 是一个 从播放视频、DVD、VCD 等基本特性到支持 MPlayer 过滤器、EDL 列表等高级特性的完整 MPlayer 前端程序。"92 ${LangFileString} Application_Description "SMPlayer 是一个完备的 MPlayer 前端,从像播放视频、DVD、VCD 这样的基本功能,到支持 MPlayer 过滤器、EDL 列表等更多高级功能。" 95 93 96 94 ; Misc -
smplayer/trunk/setup/translations/slovak.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/slovenian.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..." -
smplayer/trunk/setup/translations/spanish.nsh
r135 r139 12 12 ${LangFileString} SMPlayer_Is_Running "SMPlayer se está ejecutando. Por favor, ciérralo e inténtalo de nuevo." 13 13 14 ${LangFileString} OS_Not_Supported " Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"14 ${LangFileString} OS_Not_Supported "Sistema operativo no soportado.$\nSMPlayer ${SMPLAYER_VERSION} requiere al menos Windows XP y podría no funcionar correctamente en este sistema.$\n¿Realmente quieres continuar con la instalación?" 15 15 ${LangFileString} Win64_Required "Se necesita un Windows de 64 bits para instalar este programa." 16 16 ${LangFileString} Existing_32bitInst "Existe una versión de 32 bits instalada. Debes desinstalarla primero." 17 17 ${LangFileString} Existing_64bitInst "Existe una versión de 64 bits instalada. Debes desinstalarla primero." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "Instalación de $(^NameDA)" 21 ${LangFileString} WelcomePage_Text "A continuación se procederá a la instalación de $(^NameDA).$\r$\n$\r$\nSe recomienda cerrar todos los procesos de SMPlayer antes de comenzar con la instalación. De esta manera será posible actualizar los ficheros del programa sin tener que reiniciar el ordenador.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Comenzar" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Descargando el MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "El MPlayer no se ha instalado correctamente. ¿Reintentar?"74 ${LangFileString} MPlayer_DL_Failed "Ha fallado la descarga del MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Ha fallado la instalación del MPlayer. El MPlayer es imprescindible o no se podrá reproducir nada."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Descargando los códecs del MPlayer..." … … 89 87 ${LangFileString} Uninstaller_Aborted "Desinstalación cancelada por el usuario." 90 88 ${LangFileString} Uninstaller_NotInstalled "No parece que el SMPlayer esté instalado en el directorio '$INSTDIR'.$\r$\n¿Continuar de todos modos (no recomendado)?" 91 ${LangFileString} Uninstaller_64bitOnly " This installation can only be uninstalled on 64-bit Windows."89 ${LangFileString} Uninstaller_64bitOnly "Esta instalación sólo se puede desinstalar en Windows de 64 bits." 92 90 93 91 ; Vista & Later Default Programs Registration -
smplayer/trunk/setup/translations/tradchinese.nsh
r135 r139 16 16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first." 17 17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first." 18 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup" 21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK" 18 22 19 23 ; Components Page … … 69 73 ${LangFileString} StartBtn "Start" 70 74 71 ; MPlayer Section72 ${LangFileString} MPlayer_DL_Msg "Downloading MPlayer..."73 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"74 ${LangFileString} MPlayer_DL_Failed "Failed to download MPlayer: '$R0'."75 ${LangFileString} MPlayer_Inst_Failed "Failed to install MPlayer. MPlayer is required for playback."76 77 75 ; Codecs Section 78 76 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..."
Note:
See TracChangeset
for help on using the changeset viewer.