Changeset 156 for smplayer/trunk/setup
- Timestamp:
- Feb 21, 2014, 5:26:03 PM (11 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 30 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 154
- Property svn:mergeinfo changed
-
smplayer/trunk/setup/license.txt
r139 r156 1 A. SMPlayer License2 B. Youtube Terms of Services3 4 ====================================================5 6 A. SMPlayer License7 8 1 GNU GENERAL PUBLIC LICENSE 9 2 Version 2, June 1991 … … 346 339 Public License instead of this License. 347 340 348 ====================================================349 350 B. Youtube Terms of Services351 352 By using SMPlayer you hereby agree to be bound by Google Terms of Services located353 at http://www.google.com/accounts/TOS354 -
smplayer/trunk/setup/scripts/install_smplayer.cmd
r142 r156 6 6 echo. 7 7 8 set /P QTVER="Qt Version (Default: 4. 7.4): "9 if "%QTVER%"=="" set QTVER=4. 7.48 set /P QTVER="Qt Version (Default: 4.8.4): " 9 if "%QTVER%"=="" set QTVER=4.8.4 10 10 11 11 set OUTPUT_DIR=smplayer-build … … 16 16 set SMPLAYER_SKINS_DIR=svn\smplayer-skins 17 17 set MPLAYER_DIR=mplayer 18 set QT_DIR=C:\QtSDK\Desktop\Qt\%QTVER%\mingw 18 rem set QT_DIR=C:\QtSDK\Desktop\Qt\%QTVER%\mingw 19 set QT_DIR=C:\Qt\%QTVER% 19 20 20 21 echo. … … 32 33 copy %QT_DIR%\bin\QtNetwork4.dll %OUTPUT_DIR% 33 34 copy %QT_DIR%\bin\QtXml4.dll %OUTPUT_DIR% 35 copy %QT_DIR%\bin\QtScript4.dll %OUTPUT_DIR% 34 36 copy %QT_DIR%\bin\mingwm10.dll %OUTPUT_DIR% 35 37 if %QTVER% geq 4.6.0 ( -
smplayer/trunk/setup/scripts/make_pkgs.cmd
r142 r156 57 57 echo --- Creating SMPlayer NSIS Packages --- 58 58 echo. 59 echo Format: VER_MAJOR.VER_MINOR.VER_BUILD.VER_REVISION 60 echo Example: 0.8.1.0 61 echo. 62 echo Note: VER_REVISION must be defined as '0' if not used 59 echo Format: VER_MAJOR.VER_MINOR.VER_BUILD[.VER_REVISION] 60 echo VER_REVISION is optional (set to 0 if blank) 63 61 echo. 64 62 65 63 :: Reset in case ran again in same command prompt instance 64 set NSIS_PKG_VER= 66 65 set VER_MAJOR= 67 66 set VER_MINOR= 68 67 set VER_BUILD= 69 68 set VER_REVISION= 70 71 set /P VER_MAJOR="VER_MAJOR: " 72 set /P VER_MINOR="VER_MINOR: " 73 set /P VER_BUILD="VER_BUILD: " 74 set /P VER_REVISION="VER_REVISION: " 75 76 echo. 77 78 if %VER_REVISION% neq 0 ( 79 80 %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DVER_REVISION=%VER_REVISION% %TOP_LEVEL_DIR%\smplayer.nsi 81 rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DVER_REVISION=%VER_REVISION% /DWIN64 %TOP_LEVEL_DIR%\smplayer.nsi 82 rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DVER_REVISION=%VER_REVISION% /DWIN64 %TOP_LEVEL_DIR%\smplayer.full.nsi 83 69 set VER_REV_CMD= 70 71 :nsispkgver_again 72 Set /p NSIS_PKG_VER="Version: " 73 74 for /f "tokens=1 delims=." %%j in ("%NSIS_PKG_VER%") do set VER_MAJOR=%%j 75 for /f "tokens=2 delims=." %%k in ("%NSIS_PKG_VER%") do set VER_MINOR=%%k 76 for /f "tokens=3 delims=." %%l in ("%NSIS_PKG_VER%") do set VER_BUILD=%%l 77 for /f "tokens=4 delims=." %%m in ("%NSIS_PKG_VER%") do set VER_REVISION=%%m 78 79 if [%VER_MAJOR%]==[] ( 80 echo Major Version # must be specified [#.x.x] 81 echo. 82 goto nsispkgver_again 83 ) 84 85 if [%VER_MINOR%]==[] ( 86 echo Minor Version # must be specified [x.#.x] 87 echo. 88 goto nsispkgver_again 89 ) 90 91 if [%VER_BUILD%]==[] ( 92 echo Build Version # must be specified [x.x.#] 93 echo. 94 goto nsispkgver_again 95 ) 96 97 if [%VER_REVISION%]==[] ( 98 set VER_REV_CMD= 84 99 ) else ( 85 86 %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% %TOP_LEVEL_DIR%\smplayer.nsi 87 rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DWIN64 %TOP_LEVEL_DIR%\smplayer.nsi 88 rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DWIN64 %TOP_LEVEL_DIR%\smplayer.full.nsi 89 90 ) 91 92 echo. 100 set VER_REV_CMD= /DVER_REVISION=%VER_REVISION% 101 ) 102 103 if exist %TOP_LEVEL_DIR%\smplayer-build ( 104 %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD%%VER_REV_CMD% %TOP_LEVEL_DIR%\smplayer.nsi 105 ) 106 107 if exist %TOP_LEVEL_DIR%\smplayer-build64 ( 108 %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD%%VER_REV_CMD% /DWIN64 %TOP_LEVEL_DIR%\smplayer.nsi 109 ) 93 110 94 111 goto end … … 122 139 123 140 echo. 124 echo ###### Backing up files #######141 echo Backing up files... 125 142 echo. 126 143 … … 130 147 131 148 echo. 132 echo ###### Create screenshots dir. #######149 echo Creating screenshots dir... 133 150 echo. 134 151 … … 136 153 137 154 echo. 138 echo ###### Create mplayer config ####### 139 echo. 140 141 echo ## MPlayer Windows configuration>> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config 155 echo Creating smplayer.ini... 156 echo. 157 158 echo [%%General]> %SMPLAYER_PORTABLE_DIR%\smplayer.ini 159 echo screenshot_directory=.\\screenshots>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini 160 echo.>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini 161 echo [advanced]>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini 162 echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini 163 164 echo. 165 echo Creating smplayer_orig.ini... 166 echo. 167 168 echo [%%General]> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini 169 echo screenshot_directory=.\\screenshots>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini 170 echo.>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini 171 echo [advanced]>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini 172 echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini 173 174 echo. 175 echo Creating mplayer config... 176 echo. 177 178 echo ## MPlayer Windows configuration> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config 142 179 echo.>> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config 143 180 echo subfont=c:\windows\fonts\arial.ttf>> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config … … 145 182 146 183 echo. 147 echo ###### Copying portable .exe #######184 echo Copying portable .exe... 148 185 echo. 149 186 … … 152 189 153 190 echo. 154 echo ###### Creating portable package #######155 echo. 156 7za a -t7z %OUTPUT_DIR%\smplayer-portable-%SMPLAYER_VER%.7z %SMPLAYER_PORTABLE_DIR% -xr!*.bak -xr!qxtcore.dll - mx9191 echo Finalizing portable package... 192 echo. 193 7za a -t7z %OUTPUT_DIR%\smplayer-portable-%SMPLAYER_VER%.7z %SMPLAYER_PORTABLE_DIR% -xr!*.bak -xr!qxtcore.dll -xr!mplayer64.exe -mx9 157 194 158 195 echo. -
smplayer/trunk/setup/smplayer.nsi
r142 r156 97 97 Var Reinstall_OverwriteButton 98 98 Var Reinstall_OverwriteButton_State 99 Var Reinstall_RemoveSettings 100 Var Reinstall_RemoveSettings_State 99 101 Var Reinstall_Uninstall 100 102 Var Reinstall_UninstallButton … … 361 363 362 364 SetOutPath "$INSTDIR\mplayer" 363 File /r /x mencoder.exe "${SMPLAYER_BUILD_DIR}\mplayer\*.*" 365 File /r /x mplayer.exe /x mencoder.exe /x mplayer64.exe /x mencoder64.exe "${SMPLAYER_BUILD_DIR}\mplayer\*.*" 366 !ifdef WIN64 367 File /oname=mplayer.exe "${SMPLAYER_BUILD_DIR}\mplayer\mplayer64.exe" 368 !else 369 File "${SMPLAYER_BUILD_DIR}\mplayer\mplayer.exe" 370 !endif 364 371 365 372 WriteRegDWORD HKLM "${SMPLAYER_REG_KEY}" Installed_MPlayer 0x1 … … 368 375 369 376 Section /o $(Section_MPlayerCodecs) SecCodecs 377 378 !ifdef WIN64 379 SectionIn RO 380 !endif 370 381 371 382 AddSize 22931 … … 442 453 ${MementoSectionEnd} 443 454 455 Section /o $(Reinstall_Msg5) SecResetSettings 456 457 NsExec::Exec '"$INSTDIR\smplayer.exe" -delete-config' 458 459 SectionEnd 460 444 461 ;-------------------------------- 445 462 ;Install/Uninstall information … … 492 509 !insertmacro MUI_DESCRIPTION_TEXT ${SecThemes} $(Section_IconThemes_Desc) 493 510 !insertmacro MUI_DESCRIPTION_TEXT ${SecTranslations} $(Section_Translations_Desc) 511 !insertmacro MUI_DESCRIPTION_TEXT ${SecResetSettings} $(Section_ResetSettings_Desc) 494 512 !insertmacro MUI_FUNCTION_DESCRIPTION_END 495 513 … … 642 660 Function .onInit 643 661 644 /*645 662 ${Unless} ${AtLeastWinXP} 646 663 MessageBox MB_YESNO|MB_ICONSTOP $(OS_Not_Supported) /SD IDNO IDYES installonoldwindows … … 648 665 installonoldwindows: 649 666 ${EndIf} 650 */651 667 652 668 !ifdef WIN64 … … 719 735 ${MementoSectionSave} 720 736 721 ExecShell "open" "http://smplayer.sourceforge.net/thank-you.php?version=${SMPLAYER_VERSION}" 737 /* 738 ${Unless} $Reinstall_Uninstall == 1 739 ExecShell "open" "http://smplayer.sourceforge.net/thank-you.php?version=${SMPLAYER_VERSION}" 740 ${EndIf} 741 */ 722 742 723 743 FunctionEnd … … 736 756 FunctionEnd 737 757 738 Function un.onUninstSuccess758 /* Function un.onUninstSuccess 739 759 740 760 ;Don't launch uninstall page if reinstalling … … 745 765 ExecShell "open" "http://smplayer.sourceforge.net/uninstall.php?version=${SMPLAYER_VERSION}" 746 766 747 FunctionEnd 767 FunctionEnd */ 748 768 749 769 Function CheckPreviousVersion … … 794 814 795 815 ;MPlayer codecs section doesn't use Memento so we need to restore it manually 796 ReadRegDWORD $R0 HKLM "${SMPLAYER_REG_KEY}" "Installed_Codecs" 797 ${If} $R0 == 1 798 !insertmacro SelectSection ${SecCodecs} 799 ${EndIf} 816 ;32-bit only 817 !ifdef WIN64 818 !insertmacro UnSelectSection ${SecCodecs} 819 !else 820 ReadRegDWORD $R0 HKLM "${SMPLAYER_REG_KEY}" "Installed_Codecs" 821 ${If} $R0 == 1 822 !insertmacro SelectSection ${SecCodecs} 823 ${EndIf} 824 !endif 800 825 801 826 ;Gets start menu folder name … … 834 859 Pop $Reinstall_ChgSettings 835 860 836 ${NSD_CreateLabel} 0 115u 100% 16u 861 ${NSD_CreateCheckBox} 0 102u 100% 8u $(Reinstall_Msg5) 862 Pop $Reinstall_RemoveSettings 863 864 ${NSD_CreateLabel} 0 121u 100% 16u 837 865 Pop $Reinstall_Message 838 866 … … 844 872 ${Endif} 845 873 874 ${If} $Reinstall_RemoveSettings_State == 1 875 SendMessage $Reinstall_RemoveSettings ${BM_SETCHECK} 1 0 876 ${Endif} 877 846 878 ${NSD_OnClick} $Reinstall_OverwriteButton PageReinstallUpdate 847 879 ${NSD_OnClick} $Reinstall_UninstallButton PageReinstallUpdate … … 859 891 ${NSD_GetState} $Reinstall_UninstallButton $Reinstall_UninstallButton_State 860 892 ${NSD_GetState} $Reinstall_ChgSettings $Reinstall_ChgSettings_State 893 ${NSD_GetState} $Reinstall_RemoveSettings $Reinstall_RemoveSettings_State 894 895 ${If} $Reinstall_RemoveSettings_State == 1 896 !insertmacro SelectSection ${SecResetSettings} 897 ${EndIf} 861 898 862 899 FunctionEnd … … 871 908 872 909 EnableWindow $Reinstall_ChgSettings 1 910 EnableWindow $Reinstall_RemoveSettings 1 873 911 874 912 GetDlgItem $R0 $HWNDPARENT 1 … … 886 924 ${NSD_SetState} $Reinstall_ChgSettings 0 887 925 926 EnableWindow $Reinstall_RemoveSettings 0 927 ${NSD_SetState} $Reinstall_RemoveSettings 0 928 888 929 GetDlgItem $R0 $HWNDPARENT 1 889 930 SendMessage $R0 ${WM_SETTEXT} 0 "STR:$(^UninstallBtn)" -
smplayer/trunk/setup/translations/basque.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Kodek Binarioak" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Aukerazko kodekak MPlayerrentzat. (Internet Elkarketa beharrezkoa da ezarpenerako)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "MPlayer laguntzen duen programa bat erabili daiteke kodeatzeko edo eraldatzeko sostengatutako audio edo bideo jarioak." … … 47 51 ${LangFileString} Section_Translations "Hizkuntzak" 48 52 ${LangFileString} Section_Translations_Desc "SMPlayer-entzako Ez Ingelerazko hizkuntza agiriak." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "Kodek binario paketeek jatorrizkoan ez dauden kodek sostengua gehitzen dute, RealVideo aldaera berrienak eta formato ez arrunt asko bezalakoak.$\nOhartu hauek ez direla beharrezkoak heuskarri arruntenak irakurtzeko, DVD, MPEG-1/2/4, etab." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Klikatu Kendu jarraitzeko gertu zaudenean." 63 69 ${LangFileString} Reinstall_Msg4 "Aldatu Ezarpenaren Hobespenak" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "berrezarri" -
smplayer/trunk/setup/translations/catalan.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/croatian.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/czech.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binární kodeky" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Přídavné kodeky MPlayeru. (Pro instalaci je potřeba připojení k Internetu)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "Dodatkový program pro MPlayer, který se využívá k enkódování nebo transformaci audio/video souborů." … … 47 51 ${LangFileString} Section_Translations "Lokalizace" 48 52 ${LangFileString} Section_Translations_Desc "Neanglické lokalizace." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "Binární kodeky podporují formáty, které zatím nejsou implementovány nativně, např. novější varianty RealVideo a jiné málo používané formáty.$\nPro většinu běžných formátů nejsou potřeba (DVD, MPEG-1/2/4, apod.)." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Stiskněte Odinstalovat jste-li připraveni." 63 69 ${LangFileString} Reinstall_Msg4 "Změnit nastavení instalace" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstalovat" -
smplayer/trunk/setup/translations/danish.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/dutch.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/english.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/finnish.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/french.nsh
r142 r156 8 8 9 9 ; Startup 10 ${LangFileString} Installer_Is_Running " The installer is already running."11 ${LangFileString} Installer_No_Admin " You must be logged in as an administrator when installing this program."12 ${LangFileString} SMPlayer_Is_Running " An instance of SMPlayer is running. Please exit SMPlayer and try again."10 ${LangFileString} Installer_Is_Running "L'installateur est déjà en cours d'exécution." 11 ${LangFileString} Installer_No_Admin "Vous devez être connecté comme administrateur pour installer ce programme." 12 ${LangFileString} SMPlayer_Is_Running "Une instance de SMPlayer est en cours d'exécution. Veuillez quitter SMPlayer puis réessayer l'installation." 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 "Système d'exploitation non supporté.$\nSMPlayer ${SMPLAYER_VERSION} requiert au minimum Windows XP et pourrait ne pas fonctionner correctement sur votre système.$\nSouhaitez-vous vraiment continuer l'installation ?" 15 15 ${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software." 16 ${LangFileString} Existing_32bitInst " An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."17 ${LangFileString} Existing_64bitInst " An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first."16 ${LangFileString} Existing_32bitInst "Une installation de SMPlayer 32 bits existe. Vous devez désinstaller SMPlayer 32 bits d'abord." 17 ${LangFileString} Existing_64bitInst "Une installation de SMPlayer 64 bits existe. Vous devez désinstaller SMPlayer 64 bits d'abord." 18 18 19 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"20 ${LangFileString} WelcomePage_Title "Installation de $(^NameDA)" 21 ${LangFileString} WelcomePage_Text "Ce programme va vous guider à travers l'installation de $(^NameDA).$\r$\n$\r$\nIl est recommandé de quitter toutes les instances de SMPlayer avant de continuer. Ceci permet de mettre à jour les fichiers concernés sans avoir besoin de redémarrer votre ordinateur.$\r$\n$\r$\n$_CLICK" 22 22 23 23 ; Components Page 24 ${LangFileString} ShortcutGroupTitle " Shortcuts"25 ${LangFileString} MPlayerGroupTitle "MPlayer Components"24 ${LangFileString} ShortcutGroupTitle "Raccourcis" 25 ${LangFileString} MPlayerGroupTitle "Composants de MPlayer" 26 26 27 ${LangFileString} Section_SMPlayer "SMPlayer (requi red)"28 ${LangFileString} Section_SMPlayer_Desc "SMPlayer, shared libraries, anddocumentation."27 ${LangFileString} Section_SMPlayer "SMPlayer (requis)" 28 ${LangFileString} Section_SMPlayer_Desc "SMPlayer, bibliothèques partagées et documentation." 29 29 30 ${LangFileString} Section_DesktopShortcut " Desktop"31 ${LangFileString} Section_DesktopShortcut_Desc "Cr eates a shortcut to SMPlayer on the desktop."30 ${LangFileString} Section_DesktopShortcut "Bureau" 31 ${LangFileString} Section_DesktopShortcut_Desc "Crée un raccourci vers SMPlayer sur le bureau." 32 32 33 ${LangFileString} Section_StartMenu " Start Menu"34 ${LangFileString} Section_StartMenu_Desc "Cr eate a Start Menu entry for SMPlayer."33 ${LangFileString} Section_StartMenu "Menu Démarrer" 34 ${LangFileString} Section_StartMenu_Desc "Crée une entrée pour SMPlayer dans le menu Démarrer." 35 35 36 ${LangFileString} Section_MPlayer "MPlayer (requi red)"37 ${LangFileString} Section_MPlayer_Desc "MPlayer; requi red for playback."36 ${LangFileString} Section_MPlayer "MPlayer (requis)" 37 ${LangFileString} Section_MPlayer_Desc "MPlayer; requis pour la lecture." 38 38 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 39 ${LangFileString} Section_MPlayerCodecs "Codecs binaires" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 43 ${LangFileString} Section_MPlayerCodecs_Desc "Codecs optionnels pour MPlayer. (Connexion Internet requise durant l'installation.)" 44 !endif 41 45 42 ${LangFileString} Section_MEncoder_Desc " A companion program to MPlayer that can be used to encode or transform supported audio or video streams."46 ${LangFileString} Section_MEncoder_Desc "Programme permettant d'encoder ou de convertir des flux audio et/ou vidéos supportés par MPlayer." 43 47 44 ${LangFileString} Section_IconThemes " Icon Themes"45 ${LangFileString} Section_IconThemes_Desc " Additional icon themes for SMPlayer."48 ${LangFileString} Section_IconThemes "Thèmes d'icônes" 49 ${LangFileString} Section_IconThemes_Desc "Thèmes d'icônes supplémentaires pour SMPlayer." 46 50 47 ${LangFileString} Section_Translations "Langu ages"48 ${LangFileString} Section_Translations_Desc " Non-English language files for SMPlayer."51 ${LangFileString} Section_Translations "Langues" 52 ${LangFileString} Section_Translations_Desc "Fichiers de langues (autres qie l'anglais) pour SMPlayer." 49 53 50 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 55 56 ${LangFileString} MPlayer_Codec_Msg "Les paquets de codecs binaires ajoutent le support pour les codecs qui ne sont pas encore nativement supportés, tels que les nouvelles variantes de RealVideo et d'autres formats peu communs.$\nRemarque : Ces codecs ne sont pas nécessaires pour lire les formats communs tels que les DVD, MPE-1/2/4, etc." 51 57 52 58 ; Upgrade/Reinstall Page 53 ${LangFileString} Reinstall_Header_Text "S elect Install Type"54 ${LangFileString} Reinstall_Header_SubText "S elect Overwrite or Uninstall mode."59 ${LangFileString} Reinstall_Header_Text "Sélectionnez le type d'installation." 60 ${LangFileString} Reinstall_Header_SubText "Sélectionnez le mode Remplacement ou Désinstallation." 55 61 56 ${LangFileString} Reinstall_Msg1 "You have an existing installation of SMPlayer in the following folder:" 57 ${LangFileString} Reinstall_Msg2 "Please select how to proceed:" 58 ${LangFileString} Reinstall_Overwrite "Overwrite ($Inst_Type) the existing installation" 59 ${LangFileString} Reinstall_Uninstall "Uninstall (remove) the existing installation" 60 ${LangFileString} Reinstall_Msg3_1 "Click Start when ready to proceed." 61 ${LangFileString} Reinstall_Msg3_2 "Click Next when ready to proceed." 62 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 62 ${LangFileString} Reinstall_Msg1 "Il existe déjà une installation de SMPlayer dans le dossier suivant :" 63 ${LangFileString} Reinstall_Msg2 "Veuillez sélectionner l'opération à effectuer :" 64 ${LangFileString} Reinstall_Overwrite "Remplacer l'installation existante. ($Inst_Type)" 65 ${LangFileString} Reinstall_Uninstall "Désinstaller l'installation existante. (Supprimer)" 66 ${LangFileString} Reinstall_Msg3_1 "Cliquez sur « Démarrer » une fois prêt à continuer." 67 ${LangFileString} Reinstall_Msg3_2 "Cliquez sur « Suivant » une fois prêt à continuer." 68 ${LangFileString} Reinstall_Msg3_3 "Cliquez sur « Désinstaller » une fois prêt à continuer." 69 ${LangFileString} Reinstall_Msg4 "Changer les paramètres d'installation." 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 ${LangFileString} Type_Reinstall " reinstall"66 ${LangFileString} Type_Downgrade " downgrade"67 ${LangFileString} Type_Upgrade " upgrade"72 ${LangFileString} Type_Reinstall "Réinstaller la même version." 73 ${LangFileString} Type_Downgrade "Installer une version plus ancienne." 74 ${LangFileString} Type_Upgrade "Installer une version plus récente." 68 75 69 ${LangFileString} StartBtn " Start"76 ${LangFileString} StartBtn "Commencer" 70 77 71 78 ; Codecs Section 72 ${LangFileString} Codecs_DL_Msg " Downloading MPlayer codecs..."73 ${LangFileString} Codecs_DL_Retry " MPlayer codecs were not successfully installed. Retry?"74 ${LangFileString} Codecs_DL_Failed " Failed to download MPlayer codecs: '$R0'."75 ${LangFileString} Codecs_Inst_Failed " Failed to install MPlayer codecs."79 ${LangFileString} Codecs_DL_Msg "Télécharge les codecs de MPlayer..." 80 ${LangFileString} Codecs_DL_Retry "Les codecs de MPlayer n'ont pas été correctement installés. Réessayer ?" 81 ${LangFileString} Codecs_DL_Failed "Échec du téléchargement des codecs de MPlayer : '$R0'." 82 ${LangFileString} Codecs_Inst_Failed "Échec de l'installation des codecs de MPlayer." 76 83 77 84 ; Uninstaller 78 ${LangFileString} Uninstaller_No_Admin " This installation can only be uninstalled by a user with administrator privileges."79 ${LangFileString} Uninstaller_Aborted " Uninstall aborted by user."80 ${LangFileString} Uninstaller_NotInstalled "I t does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"81 ${LangFileString} Uninstaller_64bitOnly " This installation can only be uninstalled on 64-bit Windows."85 ${LangFileString} Uninstaller_No_Admin "Cette installation ne peut être désinstallée que par un utilisateur ayant les privilèges d'administrateur." 86 ${LangFileString} Uninstaller_Aborted "Désinstallation abandonnée par l'utilisateur." 87 ${LangFileString} Uninstaller_NotInstalled "Il ne semble pas que SMPlayer soit installé dans le dossier '$INSTDIR'.$\r$\nContinuer quand même (déconseillé) ?" 88 ${LangFileString} Uninstaller_64bitOnly "Cette installation ne peut être désinstallée qu'à partir de Windows 64 bits." 82 89 83 90 ; Vista & Later Default Programs Registration 84 ${LangFileString} Application_Description "SMPlayer is a complete front-end for MPlayer, from basic features like playing videos, DVDs, VCDs to more advanced features like support for MPlayer filters, edl lists, and more."91 ${LangFileString} Application_Description "SMPlayer est une interface utilisateur pour MPlayer, de ses fonctionnalités les plus élémentaires (telles que lire des vidéos, des DVD, des VCD) aux plus avancées (telles que le support des filtres MPlayer, les listes EDL, etc.)." 85 92 86 93 ; Misc 87 ${LangFileString} Info_Codecs_Backup " Backing up codecs from previous installation..."88 ${LangFileString} Info_Codecs_Restore "Rest oring codecs from previous installation..."89 ${LangFileString} Info_Del_Files " Deleting Files..."90 ${LangFileString} Info_Del_Registry " Deleting Registry Keys..."91 ${LangFileString} Info_Del_Shortcuts " Deleting Shortcuts..."92 ${LangFileString} Info_Rest_Assoc "Rest oring file associations..."93 ${LangFileString} Info_RollBack " Rolling back changes..."94 ${LangFileString} Info_Files_Extract "Extra cting files..."94 ${LangFileString} Info_Codecs_Backup "Sauvegarde les codecs de l'installation précédente..." 95 ${LangFileString} Info_Codecs_Restore "Restaure les codecs de l'installation précédente..." 96 ${LangFileString} Info_Del_Files "Supprime les fichiers..." 97 ${LangFileString} Info_Del_Registry "Supprime les clés de registre..." 98 ${LangFileString} Info_Del_Shortcuts "Supprime les raccourcis..." 99 ${LangFileString} Info_Rest_Assoc "Restaure les associations de fichier..." 100 ${LangFileString} Info_RollBack "Défait les changements..." 101 ${LangFileString} Info_Files_Extract "Extrait les fichiers..." -
smplayer/trunk/setup/translations/german.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binärcodecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optionale Codecs für MPlayer. (Internetverbindung benötigt für Installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Lokalisierungen" 48 52 ${LangFileString} Section_Translations_Desc "Nicht englische Lokalisierungen." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "Binärcodec-Pakete werden eingesetzt für Codecs, die noch nicht nativ implementiert sind – wie neuere Varianten von RealVideo und viele ungewöhnliche Formate.$\nHinweis: Die Pakete sind nicht notwendig, um die gängigsten Formate wiederzugeben (DVD, MPEG-1/2/4, etc.)" … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/hebrew.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/hungarian.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "A bináris kodek csomagok támogatást nyújtanak natívan még nem támogatott kodekekhez, mint pl. az újabb RealVideo variánsok és sok ritka formátum.$\nNem szükségesek a legtöbb gyakori formátum lejátszásához, mint a DVD-k, MPEG-1/2/4, stb." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/italian.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Codec binari" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Codec aggiuntivi per MPlayer. (Connessione a Internet richiesta per l'installazione)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Localizzazioni" 48 52 ${LangFileString} Section_Translations_Desc "Localizzazioni non Inglesi." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "I pacchetti di codec binari forniscono il supporto per i codec che non sono stati ancora implementati nativamente, per esempio per le varianti di RealVideo e anche un sacco di formati poco utilizzati.$\nNota che non sono richiesti per riprodurre i formati più comuni come DVD, MPEG-1/2/4, ecc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/japanese.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "バイナリ コーデック" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "MPlayer のオプション コーデックです。(インストールにはインターネット接続が必要です)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "サポートされたオーディオまたはビデオ ストリームのエンコードや変換に使用できる MPlayer の姉妹プログラムです。" … … 47 51 ${LangFileString} Section_Translations "言語" 48 52 ${LangFileString} Section_Translations_Desc "SMPlayer の英語以外のの言語ファイルです。" 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "バイナリ コーデック パッケージは新しい RealVideo 派生や多くの希少なフォーマットなど、まだ自然には実装されていないコーデックへのサポートを追加します。$\nDVD、MPEG-1/2/4 などの最も一般的なフォーマットの再生には必要でないことにご注意ください。" … … 62 68 ${LangFileString} Reinstall_Msg3_3 "続行するには [アンインストール] をクリックします。" 63 69 ${LangFileString} Reinstall_Msg4 "インストール設定を変更する" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "再インストール" -
smplayer/trunk/setup/translations/korean.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/norwegian.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/polish.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Kodeki" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Opcjonalne kodeki do MPlayera. (Wymagane połączenie z internetem)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "Jest to prosty koder (kompresor) filmów, zaprojektowany do kodowania filmów otwieralnych MPlayerem do innych obsługiwanych formatów" … … 46 50 ${LangFileString} Section_Translations "Tłumaczenia" 47 51 ${LangFileString} Section_Translations_Desc "Tłumaczenia na inne języki." 52 53 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 48 54 49 55 ${LangFileString} MPlayer_Codec_Msg "Paczka z kodekami dodaje wsparcie dla kodeków, które nie są jeszcze natywnie wspierane, np. nowsze warianty RealVideo, oraz wiele mniej znanych formatów.$\nProszę mieć na uwadze, że paczka nie jest wymagana do odtworzenia popularnych formatów, takich jak DVD, MPEG-1/2/4, itp." … … 61 67 ${LangFileString} Reinstall_Msg3_3 "Kliknij Odinstaluj, gdy będziesz gotów." 62 68 ${LangFileString} Reinstall_Msg4 "Zmiana Ustawień Instalacji" 69 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 63 70 64 71 ${LangFileString} Type_Reinstall "zainstaluj ponownie" -
smplayer/trunk/setup/translations/portuguese.nsh
r142 r156 18 18 19 19 ; Welcome page 20 ${LangFileString} WelcomePage_Title " $(^NameDA) Setup"20 ${LangFileString} WelcomePage_Title "Configuração do $(^NameDA)" 21 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" 22 22 … … 29 29 30 30 ${LangFileString} Section_DesktopShortcut "Ambiente de trabalho" 31 ${LangFileString} Section_DesktopShortcut_Desc "Cria um atalho parao SMPlayer no ambiente de trabalho."31 ${LangFileString} Section_DesktopShortcut_Desc "Cria um atalho do SMPlayer no ambiente de trabalho." 32 32 33 33 ${LangFileString} Section_StartMenu "Menu Iniciar" 34 ${LangFileString} Section_StartMenu_Desc "Cria uma entrada no Menu Iniciar para o SMPlayer."34 ${LangFileString} Section_StartMenu_Desc "Cria uma entrada do SMPlayer no menu Iniciar." 35 35 36 36 ${LangFileString} Section_MPlayer "MPlayer (obrigatório)" … … 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Codificadores" 40 ${LangFileString} Section_MPlayerCodecs_Desc "Codificadores opcionais para o MPlayer. (precisa de uma ligação à Internet)" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Os codificadores binários não são suportados por esta versão." 42 !else 43 ${LangFileString} Section_MPlayerCodecs_Desc "Codificadores opcionais para o MPlayer. (Precisa de uma ligação à Internet)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "Um programa complementar ao MPlayer, utilizado para codificar ou converter emissões de vídeo e áudio." … … 47 51 ${LangFileString} Section_Translations "Idiomas" 48 52 ${LangFileString} Section_Translations_Desc "Idiomas adicionais para o SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Elimina as configurações existentes do SMPlayer." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "O pacote de codificadores adiciona suporte para os formatos que ainda não foram implementados no MPlayer, tais como as novas variantes RealVideo e outros formatos.$\nEstes codificadores não são necessários para os formatos mais comuns como DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Clique Desinstalar para continuar." 63 69 ${LangFileString} Reinstall_Msg4 "Alterar definições de instalação" 70 ${LangFileString} Reinstall_Msg5 "Reiniciar configurações do SMPlayer" 64 71 65 72 ${LangFileString} Type_Reinstall "Reinstalar" … … 82 89 83 90 ; Vista & Later Default Programs Registration 84 ${LangFileString} Application_Description "O SMPlayer é uma interface gráfic opara 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)."91 ${LangFileString} Application_Description "O SMPlayer é uma interface gráfica 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)." 85 92 86 93 ; Misc -
smplayer/trunk/setup/translations/russian.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Бинарные кодеки" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Дополнительные кодеки для MPlayer. (Для установки требуется подключение к сети Интернет)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "Сопутствующая MPlayer программа, которую можно использовать для кодирования и преобразования поддерживаемых аудио и видео потоков." … … 47 51 ${LangFileString} Section_Translations "Переводы" 48 52 ${LangFileString} Section_Translations_Desc "Языковые файлы SMPlayer, помимо английского." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "Пакеты с бинарными кодеками добавляют поддержку кодеков, не встроенных в mplayer, например, RealVideo и других нестандартных форматов.$\nОбратите внимание, что эти кодеки не нужны для воспроизведения большинства обычных форматов вроде DVD, MPEG-1/2/4 и т.п." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Нажмите Удалить для продолжения." 63 69 ${LangFileString} Reinstall_Msg4 "Изменить настройки установки" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "переустановить" -
smplayer/trunk/setup/translations/simpchinese.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "二进制编解码器" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "适用于 MPlayer 的可选编解码器。(安装需要使用网络连接)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "MPlayer 的配套程序,可以用来编码或转换支持的音频/视频流。" … … 47 51 ${LangFileString} Section_Translations "语言" 48 52 ${LangFileString} Section_Translations_Desc "适用于 SMPlayer 的非英语语言文件。" 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "二进制编解码器包可增加对新 RealVideo 变种和很多不常见格式的支持。$\n请注意,播放像 DVD、MPEG-1/2/4 这样平时常见的格式无需安装本编解码器包。" … … 62 68 ${LangFileString} Reinstall_Msg3_3 "单击『卸载』继续。" 63 69 ${LangFileString} Reinstall_Msg4 "更改安装设置" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "重新安装" -
smplayer/trunk/setup/translations/slovak.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/slovenian.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/spanish.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Códecs Binarios" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Códecs opcionales para MPlayer. (Se necesita conexión a internet para la instalación)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "Un programa opcional que puede ser usado para recodificar vídeos." … … 47 51 ${LangFileString} Section_Translations "Idiomas" 48 52 ${LangFileString} Section_Translations_Desc "Ficheros de idiomas para SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Borra la configuración de SMPlayer de instalaciones anteriores." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "El paquete de códecs binarios añade soporte para códecs que todavía no se han implementado nativamente, como como las nuevas variantes de RealVideo y algunos formatos poco comunes.$\nTen en cuenta de que no son necesarios para reproducir los formatos más comunes como DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Pulsa Desinstalar cuando estés listo." 63 69 ${LangFileString} Reinstall_Msg4 "Cambiar las opciones de instalación" 70 ${LangFileString} Reinstall_Msg5 "Reiniciar la configuración de SMPlayer" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstalar" -
smplayer/trunk/setup/translations/thai.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall" -
smplayer/trunk/setup/translations/tradchinese.nsh
r142 r156 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WIN64 41 ${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version." 42 !else 40 43 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif 41 45 42 46 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 47 51 ${LangFileString} Section_Translations "Languages" 48 52 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer." 53 54 ${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations." 49 55 50 56 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc." … … 62 68 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed." 63 69 ${LangFileString} Reinstall_Msg4 "Change Installation Settings" 70 ${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration" 64 71 65 72 ${LangFileString} Type_Reinstall "reinstall"
Note:
See TracChangeset
for help on using the changeset viewer.