Changeset 142 for smplayer/trunk/setup
- Timestamp:
- May 27, 2013, 3:28:05 PM (12 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 1 deleted
- 28 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 140
- Property svn:mergeinfo changed
-
smplayer/trunk/setup/scripts/install_smplayer.cmd
r139 r142 46 46 mkdir %OUTPUT_DIR%\translations 47 47 copy %SMPLAYER_DIR%\src\translations\*.qm %OUTPUT_DIR%\translations 48 copy %SMPLAYER_DIR%\qt-translations\*.qm %OUTPUT_DIR%\translations 48 49 49 50 echo. -
smplayer/trunk/setup/scripts/make_pkgs.cmd
r139 r142 134 134 135 135 mkdir %SMPLAYER_PORTABLE_DIR%\screenshots 136 137 echo.138 echo ###### Create smplayer.ini #######139 echo.140 141 echo [%%General]>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini142 echo screenshot_directory=.\\screenshots>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini143 echo.>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini144 echo [advanced]>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini145 echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini146 147 echo.148 echo ###### Create smplayer_orig.ini #######149 echo.150 151 echo [%%General]>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini152 echo screenshot_directory=.\\screenshots>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini153 echo.>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini154 echo [advanced]>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini155 echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini156 136 157 137 echo. -
smplayer/trunk/setup/smplayer.nsi
r139 r142 43 43 !define SMPLAYER_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\SMPlayer" 44 44 45 ;Fallback versions 46 ;These can be changed in the compiler, otherwise 47 ;if not defined the values shown here will be used. 48 !ifndef DEFAULT_CODECS_VERSION 49 !define DEFAULT_CODECS_VERSION "windows-essential-20071007" 50 !endif 51 52 ;Version control 53 !ifndef VERSION_FILE_URL 54 !define VERSION_FILE_URL "http://smplayer.sourceforge.net/mplayer-version-info" 55 !endif 45 !define CODEC_VERSION "windows-essential-20071007" 56 46 57 47 ;-------------------------------- … … 110 100 Var Reinstall_UninstallButton 111 101 Var Reinstall_UninstallButton_State 102 Var Restore_Codecs 112 103 Var SMPlayer_Path 113 104 Var SMPlayer_UnStrPath … … 233 224 !insertmacro MUI_LANGUAGE "Slovenian" 234 225 !insertmacro MUI_LANGUAGE "Spanish" 226 !insertmacro MUI_LANGUAGE "Thai" 235 227 !insertmacro MUI_LANGUAGE "TradChinese" 236 228 … … 260 252 !insertmacro LANGFILE_INCLUDE "translations\slovenian.nsh" 261 253 !insertmacro LANGFILE_INCLUDE "translations\spanish.nsh" 254 !insertmacro LANGFILE_INCLUDE "translations\thai.nsh" 262 255 !insertmacro LANGFILE_INCLUDE "translations\tradchinese.nsh" 263 256 … … 271 264 !insertmacro MUI_RESERVEFILE_LANGDLL 272 265 ReserveFile "${NSISDIR}\Plugins\UserInfo.dll" 273 ReserveFile "FindProcDLL.dll"274 266 275 267 ;-------------------------------- … … 288 280 Quit 289 281 ${ElseIf} $Reinstall_OverwriteButton_State == 1 282 283 Call Backup_Codecs 284 290 285 ${If} "$INSTDIR" == "$SMPlayer_Path" 291 286 ExecWait '"$SMPlayer_UnStrPath" /S /R _?=$SMPlayer_Path' … … 293 288 ExecWait '"$SMPlayer_UnStrPath" /S /R' 294 289 ${EndIf} 290 291 Sleep 2500 292 295 293 ${EndIf} 296 294 … … 363 361 364 362 SetOutPath "$INSTDIR\mplayer" 365 File /r "${SMPLAYER_BUILD_DIR}\mplayer\*.*"363 File /r /x mencoder.exe "${SMPLAYER_BUILD_DIR}\mplayer\*.*" 366 364 367 365 WriteRegDWORD HKLM "${SMPLAYER_REG_KEY}" Installed_MPlayer 0x1 … … 371 369 Section /o $(Section_MPlayerCodecs) SecCodecs 372 370 373 AddSize 22300 374 375 Var /GLOBAL Codec_Version 376 377 Call GetVerInfo 378 379 /* Read from version-info 380 If it was unable to download, set version to that defined in the 381 beginning of the script. */ 382 ${If} ${FileExists} "$PLUGINSDIR\version-info" 383 ReadINIStr $Codec_Version "$PLUGINSDIR\version-info" smplayer mplayercodecs 384 ${Else} 385 StrCpy $Codec_Version ${DEFAULT_CODECS_VERSION} 371 AddSize 22931 372 373 ${If} $Restore_Codecs == 1 374 DetailPrint $(Info_Codecs_Restore) 375 CopyFiles /SILENT "$PLUGINSDIR\codecbak\*" "$INSTDIR\mplayer\codecs" 376 Goto check_codecs 377 ${ElseIf} ${FileExists} "$EXEDIR\${CODEC_VERSION}.zip" 378 CopyFiles /SILENT "$EXEDIR\${CODEC_VERSION}.zip" "$PLUGINSDIR" 379 Goto extract_codecs 386 380 ${EndIf} 387 381 388 retry_codecs :382 retry_codecs_dl: 389 383 390 384 DetailPrint $(Codecs_DL_Msg) 385 !ifndef USE_NSISDL 391 386 inetc::get /CONNECTTIMEOUT 15000 /RESUME "" /BANNER $(Codecs_DL_Msg) /CAPTION $(Codecs_DL_Msg) \ 392 "http://www.mplayerhq.hu/MPlayer/releases/codecs/$ Codec_Version.zip" \393 "$PLUGINSDIR\$ Codec_Version.zip" /END387 "http://www.mplayerhq.hu/MPlayer/releases/codecs/${CODEC_VERSION}.zip" \ 388 "$PLUGINSDIR\${CODEC_VERSION}.zip" /END 394 389 Pop $R0 395 StrCmp $R0 OK 0 check_codecs 390 StrCmp $R0 OK +4 0 391 !else 392 NSISdl::download /TIMEOUT=15000 \ 393 "http://www.mplayerhq.hu/MPlayer/releases/codecs/${CODEC_VERSION}.zip" \ 394 "$PLUGINSDIR\${CODEC_VERSION}.zip" /END 395 Pop $R0 396 StrCmp $R0 "success" +4 0 397 !endif 398 DetailPrint $(Codecs_DL_Failed) 399 MessageBox MB_RETRYCANCEL|MB_ICONEXCLAMATION $(Codecs_DL_Retry) /SD IDCANCEL IDRETRY retry_codecs_dl 400 Goto check_codecs 401 402 extract_codecs: 396 403 397 404 DetailPrint $(Info_Files_Extract) 398 nsExec::Exec '"$PLUGINSDIR\7za.exe" x "$PLUGINSDIR\$ Codec_Version.zip" -y -o"$PLUGINSDIR"'405 nsExec::Exec '"$PLUGINSDIR\7za.exe" x "$PLUGINSDIR\${CODEC_VERSION}.zip" -y -o"$PLUGINSDIR"' 399 406 400 407 CreateDirectory "$INSTDIR\mplayer\codecs" 401 CopyFiles /SILENT "$PLUGINSDIR\$ Codec_Version\*" "$INSTDIR\mplayer\codecs"408 CopyFiles /SILENT "$PLUGINSDIR\${CODEC_VERSION}\*" "$INSTDIR\mplayer\codecs" 402 409 403 410 check_codecs: 404 411 405 ${If} $R0 != "OK" 406 DetailPrint $(Codecs_DL_Failed) 407 ${EndIf} 408 409 IfFileExists "$INSTDIR\mplayer\codecs\*.dll" codecsInstSuccess codecsInstFailed 410 codecsInstSuccess: 412 IfFileExists "$INSTDIR\mplayer\codecs\*.dll" 0 codecsInstFailed 411 413 WriteRegDWORD HKLM "${SMPLAYER_REG_KEY}" Installed_Codecs 0x1 412 414 Goto done 413 415 codecsInstFailed: 414 MessageBox MB_RETRYCANCEL|MB_ICONEXCLAMATION $(Codecs_DL_Retry) /SD IDCANCEL IDRETRY retry_codecs415 416 DetailPrint $(Codecs_Inst_Failed) 416 417 WriteRegDWORD HKLM "${SMPLAYER_REG_KEY}" Installed_Codecs 0x0 … … 498 499 !macro MacroAllExtensions _action 499 500 !insertmacro ${_action} ".3gp" 501 !insertmacro ${_action} ".aac" 500 502 !insertmacro ${_action} ".ac3" 501 503 !insertmacro ${_action} ".ape" 502 504 !insertmacro ${_action} ".asf" 503 505 !insertmacro ${_action} ".avi" 506 !insertmacro ${_action} ".bik" 504 507 !insertmacro ${_action} ".bin" 505 508 !insertmacro ${_action} ".dat" 506 509 !insertmacro ${_action} ".divx" 510 !insertmacro ${_action} ".dts" 507 511 !insertmacro ${_action} ".dv" 508 512 !insertmacro ${_action} ".dvr-ms" … … 515 519 !insertmacro ${_action} ".m2t" 516 520 !insertmacro ${_action} ".m2ts" 521 !insertmacro ${_action} ".mts" 517 522 !insertmacro ${_action} ".m2v" 518 523 !insertmacro ${_action} ".m3u" … … 541 546 !insertmacro ${_action} ".rm" 542 547 !insertmacro ${_action} ".rmvb" 548 !insertmacro ${_action} ".smk" 543 549 !insertmacro ${_action} ".swf" 544 550 !insertmacro ${_action} ".thd" … … 591 597 Delete "$INSTDIR\zlib1.dll" 592 598 Delete "$INSTDIR\Qt*.dll" 599 Delete "$INSTDIR\sample.avi" 593 600 Delete "$INSTDIR\smplayer.exe" 594 601 Delete "$INSTDIR\smtube.exe" … … 613 620 ;Shared functions 614 621 622 !ifdef USE_RUNCHECK 615 623 !macro RunCheckMacro UN 616 624 Function ${UN}RunCheck 617 625 618 retry_runcheck: 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 626 retry_runcheck: 627 FindWindow $0 "QWidget" "SMPlayer" 628 StrCmp $0 0 notRunning 629 MessageBox MB_RETRYCANCEL|MB_ICONEXCLAMATION $(SMPlayer_Is_Running) /SD IDCANCEL IDRETRY retry_runcheck 630 Abort 631 notrunning: 623 632 624 633 FunctionEnd … … 626 635 !insertmacro RunCheckMacro "" 627 636 !insertmacro RunCheckMacro "un." 637 !endif 628 638 629 639 ;-------------------------------- … … 632 642 Function .onInit 633 643 644 /* 634 645 ${Unless} ${AtLeastWinXP} 635 646 MessageBox MB_YESNO|MB_ICONSTOP $(OS_Not_Supported) /SD IDNO IDYES installonoldwindows … … 637 648 installonoldwindows: 638 649 ${EndIf} 650 */ 639 651 640 652 !ifdef WIN64 … … 675 687 Abort 676 688 689 !ifdef USE_RUNCHECK 677 690 ;Check if SMPlayer is running 678 691 ;Allow skipping check using /NORUNCHECK … … 681 694 IfErrors 0 +2 682 695 Call RunCheck 696 !endif 683 697 684 698 ;Check for admin on < Vista … … 705 719 ${MementoSectionSave} 706 720 721 ExecShell "open" "http://smplayer.sourceforge.net/thank-you.php?version=${SMPLAYER_VERSION}" 722 707 723 FunctionEnd 708 724 … … 717 733 Delete "$INSTDIR\${SMPLAYER_UNINST_EXE}" 718 734 RMDir "$INSTDIR" 735 736 FunctionEnd 737 738 Function un.onUninstSuccess 739 740 ;Don't launch uninstall page if reinstalling 741 ${un.GetParameters} $R0 742 ${un.GetOptionsS} $R0 "/R" $R1 743 744 IfErrors 0 +2 745 ExecShell "open" "http://smplayer.sourceforge.net/uninstall.php?version=${SMPLAYER_VERSION}" 719 746 720 747 FunctionEnd … … 747 774 FunctionEnd 748 775 749 Function GetVerInfo 750 751 IfFileExists "$PLUGINSDIR\version-info" end_dl_ver_info 0 752 DetailPrint $(VerInfo_DL_Msg) 753 inetc::get /CONNECTTIMEOUT 15000 /SILENT ${VERSION_FILE_URL} "$PLUGINSDIR\version-info" /END 754 Pop $R0 755 StrCmp $R0 OK +2 756 DetailPrint $(VerInfo_DL_Failed) 757 758 end_dl_ver_info: 776 Function Backup_Codecs 777 778 ${IfNot} ${SectionIsSelected} ${SecCodecs} 779 Return 780 ${EndIf} 781 782 IfFileExists "$SMPlayer_Path\mplayer\codecs\*.dll" 0 NoBackup 783 DetailPrint $(Info_Codecs_Backup) 784 CreateDirectory "$PLUGINSDIR\codecbak" 785 CopyFiles /SILENT "$SMPlayer_Path\mplayer\codecs\*" "$PLUGINSDIR\codecbak" 786 StrCpy $Restore_Codecs 1 787 Return 788 NoBackup: 789 StrCpy $Restore_Codecs 0 759 790 760 791 FunctionEnd … … 969 1000 ${EndIf} 970 1001 1002 !ifdef USE_RUNCHECK 971 1003 ;Check if SMPlayer is running 972 1004 ;Allow skipping check using /NORUNCHECK … … 975 1007 IfErrors 0 +2 976 1008 Call un.RunCheck 1009 !endif 977 1010 978 1011 ;Gets start menu folder name -
smplayer/trunk/setup/translations/basque.nsh
r139 r142 19 19 ; Welcome page 20 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"21 ${LangFileString} WelcomePage_Text "Ezartzaileak $(^NameDA)-ren ezarpenean zehar gidatuko zaitu.$\r$\n$\r$\nGomendagarria da SMPlayer eskabide guztiak istea ezarpena hasi aurretik. Honek zure ordenagailua berrabiarazi gabe programa agiri garrantzitsuak eguneratu ahal izatea egiten du.$\r$\n$\r$\n$_CLICK" 22 22 23 23 ; Components Page … … 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Kodek Binarioak" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Aukerazko kodekak MPlayerrentzat."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Aukerazko kodekak MPlayerrentzat. (Internet Elkarketa beharrezkoa da ezarpenerako)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "MPlayer laguntzen duen programa bat erabili daiteke kodeatzeko edo eraldatzeko sostengatutako audio edo bideo jarioak." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Hutsegitea MPlayer kodekak ezartzerakoan." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Bertsio argibideak jeisten..."83 ${LangFileString} VerInfo_DL_Failed "Hutsegitea bertsio argibideak jeisterakoan: '$R0'. Berezko bertsioa erabiltzen."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "Ezarpen hau administratzaile eskubidea duen erabiltzaileak bakarrik kendu dezake." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Agiriak Ezabatzen..." 96 90 ${LangFileString} Info_Del_Registry "Erresgistro Giltzak Ezabatzen..." -
smplayer/trunk/setup/translations/catalan.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/croatian.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/czech.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binární kodeky" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Přídavné kodeky MPlayeru."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Přídavné kodeky MPlayeru. (Pro instalaci je potřeba připojení k Internetu)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "Dodatkový program pro MPlayer, který se využívá k enkódování nebo transformaci audio/video souborů." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Nepovedlo se nainstalovat kodeky MPlayeru." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Stahuji informace o verzích..."83 ${LangFileString} VerInfo_DL_Failed "Nepovedlo se stáhnout informace o verzích: '$R0'. Užita výchozí verze."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "Odinstalaci je potřeba provést s právy administrátora." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Mažu soubory..." 96 90 ${LangFileString} Info_Del_Registry "Mažu záznamy registru..." -
smplayer/trunk/setup/translations/danish.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/dutch.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/english.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/finnish.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/french.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/german.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binärcodecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optionale Codecs für MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optionale Codecs für MPlayer. (Internetverbindung benötigt für Installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Fehler beim Installieren der MPlayer-Codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Informationen der Version herunterladen …"83 ${LangFileString} VerInfo_DL_Failed "Fehler beim Herunterladen der Versionsinfo: '$R0'. Standard-Version wird genommen."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "Es sind Administratorrechte nötig, um dieses Programm zu deinstallieren." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/hebrew.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/hungarian.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Az MPlayer kodekek telepítése nem sikerült." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Verzió információ letöltése..."83 ${LangFileString} VerInfo_DL_Failed "Verzió információ letöltése nem sikerült: '$R0'. Alapértelmezett verzió használata."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "A program eltávolításához rendszergazda jogosultság szükséges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/italian.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Codec binari" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Codec aggiuntivi per MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Codec aggiuntivi per MPlayer. (Connessione a Internet richiesta per l'installazione)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Installazione dei codec di MPlayer fallita." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Sto scaricando le informazioni di versione..."83 ${LangFileString} VerInfo_DL_Failed "Scaricamento delle informazioni di versione fallito: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "La disinstallazione può essere effettuata solo da un utente con permessi amministrativi." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/japanese.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "バイナリ コーデック" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "MPlayer のオプション コーデックです。"42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "MPlayer のオプション コーデックです。(インストールにはインターネット接続が必要です)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "サポートされたオーディオまたはビデオ ストリームのエンコードや変換に使用できる MPlayer の姉妹プログラムです。" … … 79 75 ${LangFileString} Codecs_Inst_Failed "MPlayer コーデックのインストールに失敗しました。" 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "バージョン情報をダウンロードしています..."83 ${LangFileString} VerInfo_DL_Failed "バージョン情報のダウンロードに失敗しました: '$R0'。既定のバージョンを使用します。"84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "このインストールは管理者特権のあるユーザーによってのみアンインストールできます。" … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "以前のインストールからのコーデックをバックアップしています..." 88 ${LangFileString} Info_Codecs_Restore "以前のインストールからのコーデックを復元しています..." 95 89 ${LangFileString} Info_Del_Files "ファイルを削除しています..." 96 90 ${LangFileString} Info_Del_Registry "レジストリ キーを削除しています..." -
smplayer/trunk/setup/translations/korean.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/norwegian.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/polish.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Kodeki" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Opcjonalne kodeki do MPlayera."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Opcjonalne kodeki do MPlayera. (Wymagane połączenie z internetem)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "Jest to prosty koder (kompresor) filmów, zaprojektowany do kodowania filmów otwieralnych MPlayerem do innych obsługiwanych formatów" … … 78 74 ${LangFileString} Codecs_Inst_Failed "Nie udało się zainstalować Kodeków MPlayera." 79 75 80 ; Version information81 ${LangFileString} VerInfo_DL_Msg "Pobieram informacje o wersji..."82 ${LangFileString} VerInfo_DL_Failed "Nie udało się pobrać informacji o wersji: '$R0'. Użyta zostanie wersja domyślna."83 84 76 ; Uninstaller 85 77 ${LangFileString} Uninstaller_No_Admin "Aplikacja może być usunięta tylko przez osobe z uprawnieniami Administratora." … … 92 84 93 85 ; Misc 86 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 87 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 94 88 ${LangFileString} Info_Del_Files "Usuwanie Plików..." 95 89 ${LangFileString} Info_Del_Registry "Usuwanie Kluczy Rejestru..." -
smplayer/trunk/setup/translations/portuguese.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Codificadores" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Codificadores opcionais para o MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Codificadores opcionais para o MPlayer. (precisa de uma ligação à Internet)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "Um programa complementar ao MPlayer, utilizado para codificar ou converter emissões de vídeo e áudio." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Falha ao instalar os codificadores MPlayer." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "A transferir informações da versão..."83 ${LangFileString} VerInfo_DL_Failed "Ocorreu um erro ao transferir ao informações da versão: '$R0'. A utilizar versão padrão."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "Esta aplicação só pode ser desinstalada no modo de administrador." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "A copiar codificadores da instalação anterior..." 88 ${LangFileString} Info_Codecs_Restore "A restaurar codificadores da instalação anterior..." 95 89 ${LangFileString} Info_Del_Files "A eliminar ficheiros..." 96 90 ${LangFileString} Info_Del_Registry "A eliminar chaves de registo..." -
smplayer/trunk/setup/translations/russian.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Бинарные кодеки" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Дополнительные кодеки для MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Дополнительные кодеки для MPlayer. (Для установки требуется подключение к сети Интернет)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "Сопутствующая MPlayer программа, которую можно использовать для кодирования и преобразования поддерживаемых аудио и видео потоков." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Ошибка при установке бинарных кодеков для MPlayer." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Загрузка информации о версии..."83 ${LangFileString} VerInfo_DL_Failed "Не удалось загрузить информацию о версии: '$R0'. Будет использована версия по умолчанию."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "Эта установка может быть удалена только пользователем с правами администратора." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Удаление файлов..." 96 90 ${LangFileString} Info_Del_Registry "Удаление ключей реестра..." -
smplayer/trunk/setup/translations/simpchinese.nsh
r139 r142 8 8 9 9 ; Startup 10 ${LangFileString} Installer_Is_Running "安装程序已 经在运行。"10 ${LangFileString} Installer_Is_Running "安装程序已在运行。" 11 11 ${LangFileString} Installer_No_Admin "安装此程序时,您必须以管理员身份登录。" 12 ${LangFileString} SMPlayer_Is_Running "SMPlayer 的 一个实例正在运行。请退出 SMPlayer,然后再试一次。"12 ${LangFileString} SMPlayer_Is_Running "SMPlayer 的实例正在运行。请退出 SMPlayer,然后重试。" 13 13 14 ${LangFileString} OS_Not_Supported "不支持的操作系统。$\nSMPlayer ${SMPLAYER_VERSION} 要求至少是Windows XP,其在您的系统上可能无法正常工作。$\n您真的要继续安装吗?"14 ${LangFileString} OS_Not_Supported "不支持的操作系统。$\nSMPlayer ${SMPLAYER_VERSION} 至少需要 Windows XP,其在您的系统上可能无法正常工作。$\n您真的要继续安装吗?" 15 15 ${LangFileString} Win64_Required "安装此软件需要 64 位 Windows 操作系统。" 16 ${LangFileString} Existing_32bitInst " 存在一个现有的 SMPlayer 32 位安装。您必须先卸载 32 位的 SMPlayer。"17 ${LangFileString} Existing_64bitInst " 存在一个现有的 SMPlayer 64 位安装。您必须先卸载 64 位的 SMPlayer。"16 ${LangFileString} Existing_32bitInst "SMPlayer 的 32 位安装已存在。您必须先卸载 32 位的 SMPlayer。" 17 ${LangFileString} Existing_64bitInst "SMPlayer 的 64 位安装已存在。您必须先卸载 64 位的 SMPlayer。" 18 18 19 19 ; Welcome page 20 20 ${LangFileString} WelcomePage_Title "$(^NameDA) 安装程序" 21 ${LangFileString} WelcomePage_Text "安装程序将引导您完成 $(^NameDA) 的安装。$\r$\n$\r$\n建议您在开始安装之前关闭所有的 SMPlayer 实例。这将使它能够更新相关的程序文件,而无需重新启动您的计算机。$\r$\n$\r$\n$_CLICK"21 ${LangFileString} WelcomePage_Text "安装程序将引导您完成安装 $(^NameDA)。$\r$\n$\r$\n建议您在开始安装前关闭所有的 SMPlayer 实例。这将使其能够更新相关的程序文件,而无需重新启动您的计算机。$\r$\n$\r$\n$_CLICK" 22 22 23 23 ; Components Page … … 26 26 27 27 ${LangFileString} Section_SMPlayer "SMPlayer (必需)" 28 ${LangFileString} Section_SMPlayer_Desc "SMPlayer 主程序、共享库和文档。"28 ${LangFileString} Section_SMPlayer_Desc "SMPlayer、共享库和文档。" 29 29 30 30 ${LangFileString} Section_DesktopShortcut "桌面" … … 35 35 36 36 ${LangFileString} Section_MPlayer "MPlayer (必需)" 37 ${LangFileString} Section_MPlayer_Desc "播放 媒体文件所必需的 MPlayer 内核。"37 ${LangFileString} Section_MPlayer_Desc "播放所必需的 MPlayer。" 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "二进制编解码器" 40 !ifdef WITH_CODECS 41 ${LangFileString} Section_MPlayerCodecs_Desc "适用于 MPlayer 的可选编解码器包。" 42 !else ifndef WITH_CODECS 43 ${LangFileString} Section_MPlayerCodecs_Desc "适用于 MPlayer 的可选编解码器包。(安装需要使用网络连接)" 44 !endif 40 ${LangFileString} Section_MPlayerCodecs_Desc "适用于 MPlayer 的可选编解码器。(安装需要使用网络连接)" 45 41 46 42 ${LangFileString} Section_MEncoder_Desc "MPlayer 的配套程序,可以用来编码或转换支持的音频/视频流。" 47 43 48 44 ${LangFileString} Section_IconThemes "图标主题" 49 ${LangFileString} Section_IconThemes_Desc " SMPlayer 的附加图标主题。"45 ${LangFileString} Section_IconThemes_Desc "适用于 SMPlayer 的附加图标主题。" 50 46 51 47 ${LangFileString} Section_Translations "语言" 52 ${LangFileString} Section_Translations_Desc " SMPlayer 的语言文件。(除英语)"48 ${LangFileString} Section_Translations_Desc "适用于 SMPlayer 的非英语语言文件。" 53 49 54 50 ${LangFileString} MPlayer_Codec_Msg "二进制编解码器包可增加对新 RealVideo 变种和很多不常见格式的支持。$\n请注意,播放像 DVD、MPEG-1/2/4 这样平时常见的格式无需安装本编解码器包。" … … 56 52 ; Upgrade/Reinstall Page 57 53 ${LangFileString} Reinstall_Header_Text "选择安装类型" 58 ${LangFileString} Reinstall_Header_SubText "选择 “覆盖”或“卸载”模式。"54 ${LangFileString} Reinstall_Header_SubText "选择『覆盖』或『卸载』模式。" 59 55 60 56 ${LangFileString} Reinstall_Msg1 "您有一个现有的 SMPlayer 安装位于以下文件夹:" 61 57 ${LangFileString} Reinstall_Msg2 "请选择如何继续:" 62 ${LangFileString} Reinstall_Overwrite "覆盖 ($Inst_Type)现有的安装"63 ${LangFileString} Reinstall_Uninstall "卸载 (移除)现有的安装"64 ${LangFileString} Reinstall_Msg3_1 "单击 “开始”继续。"65 ${LangFileString} Reinstall_Msg3_2 "单击 “下一步”继续。"66 ${LangFileString} Reinstall_Msg3_3 "单击 “卸载”继续。"58 ${LangFileString} Reinstall_Overwrite "覆盖($Inst_Type)现有的安装" 59 ${LangFileString} Reinstall_Uninstall "卸载(移除)现有的安装" 60 ${LangFileString} Reinstall_Msg3_1 "单击『开始』继续。" 61 ${LangFileString} Reinstall_Msg3_2 "单击『下一步』继续。" 62 ${LangFileString} Reinstall_Msg3_3 "单击『卸载』继续。" 67 63 ${LangFileString} Reinstall_Msg4 "更改安装设置" 68 64 … … 76 72 ${LangFileString} Codecs_DL_Msg "正在下载 MPlayer 编解码器..." 77 73 ${LangFileString} Codecs_DL_Retry "MPlayer 编解码器没有成功安装。是否重试?" 78 ${LangFileString} Codecs_DL_Failed "MPlayer 编解码器下载失败: '$R0'。" 79 ${LangFileString} Codecs_Inst_Failed "MPlayer 编解码器安装失败。" 80 81 ; Version information 82 ${LangFileString} VerInfo_DL_Msg "正在下载版本信息..." 83 ${LangFileString} VerInfo_DL_Failed "版本信息下载失败: '$R0'。将使用默认版本。" 74 ${LangFileString} Codecs_DL_Failed "无法下载 MPlayer 编解码器: 『$R0』。" 75 ${LangFileString} Codecs_Inst_Failed "无法安装 MPlayer 编解码器。" 84 76 85 77 ; Uninstaller 86 ${LangFileString} Uninstaller_No_Admin "安装只能由 具有管理员权限的用户卸载。"87 ${LangFileString} Uninstaller_Aborted "卸载 由用户中止。"88 ${LangFileString} Uninstaller_NotInstalled "没有发现 SMPlayer 被安装在目录 '$INSTDIR' 中。$\r$\n仍然要继续吗? (不推荐)"78 ${LangFileString} Uninstaller_No_Admin "安装只能由拥有管理员权限的用户卸载。" 79 ${LangFileString} Uninstaller_Aborted "卸载被用户终止。" 80 ${LangFileString} Uninstaller_NotInstalled "没有发现 SMPlayer 被安装在目录『$INSTDIR』中。$\r$\n仍然继续吗(不推荐)?" 89 81 ${LangFileString} Uninstaller_64bitOnly "安装只能在 64 位 Windows 中卸载。" 90 82 91 83 ; Vista & Later Default Programs Registration 92 ${LangFileString} Application_Description "SMPlayer 是一个完备的 MPlayer 前端,从像播放视频、DVD、VCD 这样的基本功能,到支持 MPlayer 过滤器、EDL 列表等更多 高级功能。"84 ${LangFileString} Application_Description "SMPlayer 是一个完备的 MPlayer 前端,从像播放视频、DVD、VCD 这样的基本功能,到支持 MPlayer 过滤器、EDL 列表等更多的高级功能。" 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "正在从以前的安装中备份编解码器..." 88 ${LangFileString} Info_Codecs_Restore "正在从以前的安装中恢复编解码器..." 95 89 ${LangFileString} Info_Del_Files "正在删除文件..." 96 90 ${LangFileString} Info_Del_Registry "正在删除注册表项..." -
smplayer/trunk/setup/translations/slovak.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/slovenian.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..." -
smplayer/trunk/setup/translations/spanish.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Códecs Binarios" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Códecs opcionales para MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Códecs opcionales para MPlayer. (Se necesita conexión a internet para la instalación)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "Un programa opcional que puede ser usado para recodificar vídeos." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Ha fallado la instalación del los códecs del MPlayer." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Descargando la información de la versión..."83 ${LangFileString} VerInfo_DL_Failed "Ha fallado la descarga de la información de la versión: '$R0'. Se usará la versión por defecto."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "Este programa sólo se puede desinstalar por un usuario con permisos de administrador." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Haciendo una copia de seguridad de los códecs de una instalación previa..." 88 ${LangFileString} Info_Codecs_Restore "Restaurando los códecs de una instalación previa..." 95 89 ${LangFileString} Info_Del_Files "Borrando ficheros..." 96 90 ${LangFileString} Info_Del_Registry "Borrando claves del registro..." -
smplayer/trunk/setup/translations/tradchinese.nsh
r139 r142 38 38 39 39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs" 40 !ifdef WITH_CODECS41 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."42 !else ifndef WITH_CODECS43 40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)" 44 !endif45 41 46 42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams." … … 79 75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs." 80 76 81 ; Version information82 ${LangFileString} VerInfo_DL_Msg "Downloading version information..."83 ${LangFileString} VerInfo_DL_Failed "Failed to download version info: '$R0'. Using a default version."84 85 77 ; Uninstaller 86 78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges." … … 93 85 94 86 ; Misc 87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..." 88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..." 95 89 ${LangFileString} Info_Del_Files "Deleting Files..." 96 90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..."
Note:
See TracChangeset
for help on using the changeset viewer.