Changeset 135 for smplayer/trunk/setup


Ignore:
Timestamp:
Oct 24, 2012, 8:25:23 PM (13 years ago)
Author:
Silvan Scherrer
Message:

SMplayer: update trunk to 0.8.1

Location:
smplayer/trunk
Files:
28 edited

Legend:

Unmodified
Added
Removed
  • smplayer/trunk

  • smplayer/trunk/setup/scripts/install_smplayer.cmd

    r124 r135  
    2424copy %SMPLAYER_DIR%\src\release\smplayer.exe %OUTPUT_DIR%
    2525copy %SMPLAYER_DIR%\dxlist\release\dxlist.exe %OUTPUT_DIR%
    26 copy %SMPLAYER_DIR%\zlib-1.2.6\zlib1.dll %OUTPUT_DIR%
     26copy %SMPLAYER_DIR%\zlib\zlib1.dll %OUTPUT_DIR%
    2727copy %SMPLAYER_DIR%\*.txt %OUTPUT_DIR%
    2828copy %QT_DIR%\bin\QtCore4.dll %OUTPUT_DIR%
  • smplayer/trunk/setup/scripts/make_pkgs.cmd

    r128 r135  
    1313echo * Release Packages
    1414echo.
    15 echo 1 - Portable SMPlayer Package
    16 echo 2 - SMPlayer Package w/o MPlayer
    17 echo 3 - MPlayer Package
     15echo 1 - NSIS SMPlayer Packages
     16echo 2 - Portable SMPlayer Package
     17echo 3 - SMPlayer Package w/o MPlayer
     18echo 4 - MPlayer Package
    1819echo.
    1920echo * Update Packages
    2021echo.
    21 echo 4 - SMPlayer SVN Update Package
    22 echo 5 - Qt DLL Package
    23 
    24 echo.
    25 
     22echo 5 - SMPlayer SVN Update Package
     23echo 6 - Qt DLL Package
     24
     25echo.
     26
     27:: Relative directory of all the source files to this script
    2628set TOP_LEVEL_DIR=..
     29
     30:: Reset in case ran again in same command prompt instance
     31set SMPLAYER_VER=
     32
     33:: NSIS path
     34set NSIS_PATH="C:\Program Files (x86)\NSIS\Unicode"
    2735
    2836set SMPLAYER_DIR=%TOP_LEVEL_DIR%\smplayer-build
     
    3644echo.
    3745
    38 if "%USER_CHOICE%" == "1"     goto portable
    39 if "%USER_CHOICE%" == "2"     goto nomplayer
    40 if "%USER_CHOICE%" == "3"     goto mplayer
    41 if "%USER_CHOICE%" == "4"     goto svn_updpkg
    42 if "%USER_CHOICE%" == "5"     goto qtdlls
    43 if "%USER_CHOICE%" == ""      goto end
     46if "%USER_CHOICE%" == "1" (
     47  goto nsispkg
     48
     49) else if "%USER_CHOICE%" == "2" (
     50  goto portable
     51
     52) else if "%USER_CHOICE%" == "3" (
     53  goto nomplayer
     54
     55) else if "%USER_CHOICE%" == "4" (
     56  goto mplayer
     57
     58) else if "%USER_CHOICE%" == "5" (
     59  goto svn_updpkg
     60
     61) else if "%USER_CHOICE%" == "6" (
     62  goto qtdlls
     63
     64) else (
     65  goto reask
     66)
     67
     68:nsispkg
     69
     70echo --- Creating SMPlayer NSIS Packages ---
     71echo.
     72echo Format: VER_MAJOR.VER_MINOR.VER_BUILD.VER_REVISION
     73echo Example: 0.8.1.0
     74echo.
     75echo Note: VER_REVISION must be defined as '0' if not used
     76echo.
     77
     78:: Reset in case ran again in same command prompt instance
     79set VER_MAJOR=
     80set VER_MINOR=
     81set VER_BUILD=
     82set VER_REVISION=
     83
     84set /P VER_MAJOR="VER_MAJOR: "
     85set /P VER_MINOR="VER_MINOR: "
     86set /P VER_BUILD="VER_BUILD: "
     87set /P VER_REVISION="VER_REVISION: "
     88
     89echo.
     90
     91if %VER_REVISION% neq 0 (
     92
     93%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
     94rem %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
     95rem %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
     96
     97) else (
     98
     99%NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% %TOP_LEVEL_DIR%\smplayer.nsi
     100rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DWIN64 %TOP_LEVEL_DIR%\smplayer.nsi
     101rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DWIN64 %TOP_LEVEL_DIR%\smplayer.full.nsi
     102
     103)
     104
     105echo.
     106
     107goto end
    44108
    45109:portable
     
    48112
    49113set /P SMPLAYER_VER="SMPlayer Version: "
    50 if "%SMPLAYER_VER%"=="" exit
    51 echo.
     114if "%SMPLAYER_VER%"=="" goto end
     115echo.
     116
     117:: Check for portable exes
     118if not exist %PORTABLE_EXE_DIR%\smplayer-portable.exe (
     119  echo SMPlayer portable EXE not found!
     120        goto end
     121)
     122
     123if not exist %PORTABLE_EXE_DIR%\smtube-portable.exe (
     124  echo SMTube portable EXE not found!
     125        goto end
     126)
    52127
    53128ren %SMPLAYER_DIR% smplayer-portable-%SMPLAYER_VER%
    54 set SMPLAYER_DIR=%TOP_LEVEL_DIR%\smplayer-portable-%SMPLAYER_VER%
     129set SMPLAYER_PORTABLE_DIR=%TOP_LEVEL_DIR%\smplayer-portable-%SMPLAYER_VER%
     130
     131if not exist %TOP_LEVEL_DIR%\smplayer-portable-%SMPLAYER_VER% (
     132  echo Oops! Unable to find renamed directory, make sure no files are opened.
     133        goto end
     134)
    55135
    56136echo.
     
    58138echo.
    59139
    60 ren %SMPLAYER_DIR%\smplayer.exe smplayer.bak
    61 ren %SMPLAYER_DIR%\mplayer\mplayer\config config.bak
     140ren %SMPLAYER_PORTABLE_DIR%\smplayer.exe smplayer.bak
     141ren %SMPLAYER_PORTABLE_DIR%\smtube.exe smtube.bak
     142ren %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config config.bak
    62143
    63144echo.
     
    65146echo.
    66147
    67 mkdir %SMPLAYER_DIR%\screenshots
     148mkdir %SMPLAYER_PORTABLE_DIR%\screenshots
    68149
    69150echo.
     
    71152echo.
    72153
    73 echo [%%General]>> %SMPLAYER_DIR%\smplayer.ini
    74 echo screenshot_directory=.\\screenshots>> %SMPLAYER_DIR%\smplayer.ini
    75 echo.>> %SMPLAYER_DIR%\smplayer.ini
    76 echo [advanced]>> %SMPLAYER_DIR%\smplayer.ini
    77 echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_DIR%\smplayer.ini
     154echo [%%General]>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     155echo screenshot_directory=.\\screenshots>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     156echo.>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     157echo [advanced]>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     158echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
    78159
    79160echo.
     
    81162echo.
    82163
    83 echo [%%General]>> %SMPLAYER_DIR%\smplayer_orig.ini
    84 echo screenshot_directory=.\\screenshots>> %SMPLAYER_DIR%\smplayer_orig.ini
    85 echo.>> %SMPLAYER_DIR%\smplayer_orig.ini
    86 echo [advanced]>> %SMPLAYER_DIR%\smplayer_orig.ini
    87 echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_DIR%\smplayer_orig.ini
     164echo [%%General]>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     165echo screenshot_directory=.\\screenshots>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     166echo.>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     167echo [advanced]>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     168echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
    88169
    89170echo.
     
    91172echo.
    92173
    93 echo ## MPlayer Windows configuration>> %SMPLAYER_DIR%\mplayer\mplayer\config
    94 echo.>> %SMPLAYER_DIR%\mplayer\mplayer\config
    95 echo subfont=c:\windows\fonts\arial.ttf>> %SMPLAYER_DIR%\mplayer\mplayer\config
    96 echo ^<cachedir^>../fontconfig^</cachedir^>> %SMPLAYER_DIR%\mplayer\fonts\local.conf
     174echo ## MPlayer Windows configuration>> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config
     175echo.>> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config
     176echo subfont=c:\windows\fonts\arial.ttf>> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config
     177echo ^<cachedir^>../fontconfig^</cachedir^>> %SMPLAYER_PORTABLE_DIR%\mplayer\fonts\local.conf
    97178
    98179echo.
     
    100181echo.
    101182
    102 copy /y %PORTABLE_EXE_DIR%\smplayer-portable.exe %SMPLAYER_DIR%\smplayer.exe
     183copy /y %PORTABLE_EXE_DIR%\smplayer-portable.exe %SMPLAYER_PORTABLE_DIR%\smplayer.exe
     184copy /y %PORTABLE_EXE_DIR%\smtube-portable.exe %SMPLAYER_PORTABLE_DIR%\smtube.exe
    103185
    104186echo.
    105187echo ######  Creating portable package  #######
    106188echo.
    107 7za a -t7z %OUTPUT_DIR%\smplayer-portable-%SMPLAYER_VER%.7z %SMPLAYER_DIR% -xr!*.bak -xr!qxtcore.dll -mx9
     1897za a -t7z %OUTPUT_DIR%\smplayer-portable-%SMPLAYER_VER%.7z %SMPLAYER_PORTABLE_DIR% -xr!*.bak -xr!qxtcore.dll -mx9
    108190
    109191echo.
    110192echo Restoring source folder(s) back to its original state...
    111193echo.
    112 rmdir %SMPLAYER_DIR%\screenshots
    113 del %SMPLAYER_DIR%\smplayer.ini
    114 del %SMPLAYER_DIR%\smplayer_orig.ini
    115 del %SMPLAYER_DIR%\smplayer.exe
    116 del %SMPLAYER_DIR%\mplayer\mplayer\config
    117 del %SMPLAYER_DIR%\mplayer\fonts\local.conf
    118 ren %SMPLAYER_DIR%\smplayer.bak smplayer.exe
    119 ren %SMPLAYER_DIR%\mplayer\mplayer\config.bak config
    120 ren %SMPLAYER_DIR% smplayer-build
     194rmdir %SMPLAYER_PORTABLE_DIR%\screenshots
     195del %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     196del %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     197del %SMPLAYER_PORTABLE_DIR%\smplayer.exe
     198del %SMPLAYER_PORTABLE_DIR%\smtube.exe
     199del %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config
     200del %SMPLAYER_PORTABLE_DIR%\mplayer\fonts\local.conf
     201ren %SMPLAYER_PORTABLE_DIR%\smplayer.bak smplayer.exe
     202ren %SMPLAYER_PORTABLE_DIR%\smtube.bak smtube.exe
     203ren %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config.bak config
     204ren %SMPLAYER_PORTABLE_DIR% smplayer-build
    121205
    122206goto end
     
    127211
    128212set /P SMPLAYER_VER="SMPlayer Version: "
    129 if "%SMPLAYER_VER%"=="" exit
     213if "%SMPLAYER_VER%"=="" goto end
    130214echo.
    131215
     
    152236set MPLAYER_DIR=%TOP_LEVEL_DIR%\mplayer-svn-%MP_REV%
    153237
    154 7za a -t7z %OUTPUT_DIR%\mplayer-svn-%MP_REV%.7z %MPLAYER_DIR% -mx9
     2387za a -t7z %OUTPUT_DIR%\mplayer-svn-%MP_REV%.7z %MPLAYER_DIR% -xr!mencoder.exe -mx9
    155239
    156240ren %MPLAYER_DIR% mplayer
     
    168252
    169253set /P SMPLAYER_SVN="SMPlayer SVN Revision: "
    170 if "%SMPLAYER_SVN%"=="" exit
     254if "%SMPLAYER_SVN%"=="" goto end
    171255
    1722567za a -t7z %OUTPUT_DIR%\smplayer_update_svn_r%SMPLAYER_SVN%.7z %SMPLAYER_DIR%\smplayer.exe %SMPLAYER_DIR%\translations -mx9
     
    177261
    178262set /P QTVER="Qt Version: "
    179 if "%QTVER%"=="" exit
     263if "%QTVER%"=="" goto end
    180264
    181265echo.
  • smplayer/trunk/setup/smplayer.nsi

    r132 r135  
    1 ; Installer script for win32 SMPlayer
     1; Installer script for win32/win64 SMPlayer
    22; Written by redxii (redxii@users.sourceforge.net)
    3 ; Tested/Developed with Unicode NSIS 2.46.4
     3; Tested/Developed with Unicode NSIS 2.46.5
    44
    55!ifndef VER_MAJOR | VER_MINOR | VER_BUILD
     
    5050!endif
    5151
    52 !ifndef WITH_MPLAYER
    53 
    54   !ifndef DEFAULT_MPLAYER_VERSION
    55     !define DEFAULT_MPLAYER_VERSION "mplayer-svn-33216"
    56   !endif
    57 
    58 !endif
    59 
    6052  ;Version control
    6153!ifndef VERSION_FILE_URL
     
    7062  BrandingText "SMPlayer for Windows v${SMPLAYER_VERSION}"
    7163!ifdef WIN64
    72   !ifdef WITH_MPLAYER
    73     OutFile "smplayer-${SMPLAYER_VERSION}-x64.exe"
    74   !else ifndef WITH_MPLAYER
    75     OutFile "smplayer-${SMPLAYER_VERSION}-dl-x64.exe"
    76   !endif
     64  OutFile "output\smplayer-${SMPLAYER_VERSION}-x86_64.exe"
    7765!else
    78   !ifdef WITH_MPLAYER
    79     ;OutFile "smplayer-${SMPLAYER_VERSION}-x86.exe"
    80     OutFile "smplayer-${SMPLAYER_VERSION}-win32.exe"
    81   !else ifndef WITH_MPLAYER
    82     ;OutFile "smplayer-${SMPLAYER_VERSION}-dl-x86.exe"
    83     OutFile "smplayer-${SMPLAYER_VERSION}-webdl.exe"
    84   !endif
     66  OutFile "output\smplayer-${SMPLAYER_VERSION}-x86.exe"
    8567!endif
    8668
     
    9274  VIAddVersionKey "LegalCopyright" ""
    9375!ifdef WIN64
    94   !ifdef WITH_MPLAYER
    95     VIAddVersionKey "FileDescription" "SMPlayer Installer x64 (Offline)"
    96   !else ifndef WITH_MPLAYER
    97     VIAddVersionKey "FileDescription" "SMPlayer Installer x64 (Web Downloader)"
    98   !endif
     76  VIAddVersionKey "FileDescription" "SMPlayer Installer (64-bit)"
    9977!else
    100   !ifdef WITH_MPLAYER
    101     ;VIAddVersionKey "FileDescription" "SMPlayer Installer x86 (Offline)"
    102     VIAddVersionKey "FileDescription" "SMPlayer Installer (Offline)"
    103   !else ifndef WITH_MPLAYER
    104     ;VIAddVersionKey "FileDescription" "SMPlayer Installer x86 (Web Downloader)"
    105     VIAddVersionKey "FileDescription" "SMPlayer Installer (Web Downloader)"
    106   !endif
     78  VIAddVersionKey "FileDescription" "SMPlayer Installer (32-bit)"
    10779!endif
    10880
     
    12698;Variables
    12799
    128   Var Codec_Version
    129100  Var Dialog_Reinstall
    130101  Var Inst_Type
     
    140111  Var Reinstall_UninstallButton_State
    141112  Var SMPlayer_Path
     113  Var SMPlayer_UnStrPath
    142114  Var SMPlayer_StartMenuFolder
    143115
     
    307279
    308280    ${If} $Reinstall_UninstallButton_State == 1
    309       Exec '"$SMPlayer_Path\uninst.exe" /X'
     281      Exec '"$SMPlayer_UnStrPath" /X'
    310282      Quit
    311283    ${ElseIf} $Reinstall_OverwriteButton_State == 1
    312284      ${If} "$INSTDIR" == "$SMPlayer_Path"
    313         ExecWait '"$SMPlayer_Path\uninst.exe" /S /R _?=$SMPlayer_Path'
     285        ExecWait '"$SMPlayer_UnStrPath" /S /R _?=$SMPlayer_Path'
    314286      ${Else}
    315         ExecWait '"$SMPlayer_Path\uninst.exe" /S /R'
     287        ExecWait '"$SMPlayer_UnStrPath" /S /R'
    316288      ${EndIf}
    317289    ${EndIf}
     
    354326SectionGroup $(ShortcutGroupTitle)
    355327
    356   ${MementoUnselectedSection} $(Section_DesktopShortcut) SecDesktopShortcut
     328  ${MementoSection} $(Section_DesktopShortcut) SecDesktopShortcut
    357329
    358330    SetOutPath "$INSTDIR"
     
    368340      CreateShortCut "$SMPROGRAMS\$SMPlayer_StartMenuFolder\SMPlayer.lnk" "$INSTDIR\smplayer.exe"
    369341      CreateShortCut "$SMPROGRAMS\$SMPlayer_StartMenuFolder\SMTube.lnk" "$INSTDIR\smtube.exe"
    370       WriteINIStr    "$SMPROGRAMS\$SMPlayer_StartMenuFolder\SMPlayer on the Web.url" "InternetShortcut" "URL" "http://smplayer.sf.net"
     342      WriteINIStr    "$SMPROGRAMS\$SMPlayer_StartMenuFolder\SMPlayer on the Web.url" "InternetShortcut" "URL" "http://smplayer.sourceforge.net"
    371343      CreateShortCut "$SMPROGRAMS\$SMPlayer_StartMenuFolder\Uninstall SMPlayer.lnk" "$INSTDIR\${SMPLAYER_UNINST_EXE}"
    372344    !insertmacro MUI_STARTMENU_WRITE_END
     
    384356    SectionIn RO
    385357
    386 !ifdef WITH_MPLAYER
    387358    SetOutPath "$INSTDIR\mplayer"
    388359    File /r "${SMPLAYER_BUILD_DIR}\mplayer\*.*"
    389360
    390361    WriteRegDWORD HKLM "${SMPLAYER_REG_KEY}" Installed_MPlayer 0x1
    391 !else ifndef WITH_MPLAYER
    392     AddSize 16800
    393 
    394     Var /GLOBAL MPlayer_Version
    395 
    396     Call GetVerInfo
    397 
    398     /* Read from version-info
    399     If it was unable to download, set version to that defined in the
    400     beginning of the script. */
    401     ${If} ${FileExists} "$PLUGINSDIR\version-info"
    402       ReadINIStr $MPlayer_Version "$PLUGINSDIR\version-info" smplayer mplayer
    403     ${Else}
    404       StrCpy $MPlayer_Version ${DEFAULT_MPLAYER_VERSION}
    405     ${EndIf}
    406 
    407     retry_mplayer:
    408 
    409     DetailPrint $(MPlayer_DL_Msg)
    410     inetc::get /CONNECTTIMEOUT 15000 /RESUME "" /BANNER $(MPlayer_DL_Msg) /CAPTION $(MPlayer_DL_Msg) \"http://downloads.sourceforge.net/smplayer/$MPlayer_Version.7z?big_mirror=0" \
    411     "$PLUGINSDIR\$MPlayer_Version.7z" /END
    412     Pop $R0
    413     StrCmp $R0 OK 0 check_mplayer
    414 
    415     DetailPrint $(Info_Files_Extract)
    416     nsExec::Exec '"$PLUGINSDIR\7za.exe" x "$PLUGINSDIR\$MPlayer_Version.7z" -y -o"$PLUGINSDIR"'
    417 
    418     CreateDirectory "$INSTDIR\mplayer"
    419     CopyFiles /SILENT "$PLUGINSDIR\$MPlayer_Version\*" "$INSTDIR\mplayer"
    420 
    421     check_mplayer:
    422 
    423     ${If} $R0 != "OK"
    424       DetailPrint $(MPlayer_DL_Failed)
    425     ${EndIf}
    426 
    427     IfFileExists "$INSTDIR\mplayer\mplayer.exe" mplayerInstSuccess mplayerInstFailed
    428       mplayerInstSuccess:
    429         WriteRegDWORD HKLM "${SMPLAYER_REG_KEY}" Installed_MPlayer 0x1
    430         Goto done
    431       mplayerInstFailed:
    432         MessageBox MB_RETRYCANCEL|MB_ICONEXCLAMATION $(MPlayer_DL_Retry) /SD IDCANCEL IDRETRY retry_mplayer
    433         Abort $(MPlayer_Inst_Failed)
    434 
    435     done:
    436 !endif
     362
    437363  SectionEnd
    438364
     
    440366
    441367    AddSize 22300
     368
     369    Var /GLOBAL Codec_Version
    442370
    443371    Call GetVerInfo
     
    534462  WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "DisplayIcon" "$INSTDIR\smplayer.exe"
    535463  WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "DisplayVersion" "${SMPLAYER_VERSION}"
    536   WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "HelpLink" "http://smplayer.berlios.de/forum"
     464  WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "HelpLink" "http://smplayer.sourceforge.net/forum"
    537465  WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "Publisher" "Ricardo Villalba"
    538466  WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "UninstallString" "$INSTDIR\${SMPLAYER_UNINST_EXE}"
    539   WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "URLInfoAbout" "http://smplayer.sf.net"
    540   WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "URLUpdateInfo" "http://smplayer.sf.net"
     467  WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "URLInfoAbout" "http://smplayer.sourceforge.net"
     468  WriteRegStr HKLM "${SMPLAYER_UNINST_KEY}" "URLUpdateInfo" "http://smplayer.sourceforge.net"
    541469  WriteRegDWORD HKLM "${SMPLAYER_UNINST_KEY}" "NoModify" "1"
    542470  WriteRegDWORD HKLM "${SMPLAYER_UNINST_KEY}" "NoRepair" "1"
     
    583511  !insertmacro ${_action} ".m3u"
    584512  !insertmacro ${_action} ".m3u8"
     513  !insertmacro ${_action} ".m4a"
    585514  !insertmacro ${_action} ".m4v"
     515  !insertmacro ${_action} ".mka"
    586516  !insertmacro ${_action} ".mkv"
    587517  !insertmacro ${_action} ".mov"
     
    593523  !insertmacro ${_action} ".mqv"
    594524  !insertmacro ${_action} ".nsv"
     525  !insertmacro ${_action} ".oga"
    595526  !insertmacro ${_action} ".ogg"
    596527  !insertmacro ${_action} ".ogm"
    597528  !insertmacro ${_action} ".ogv"
     529  !insertmacro ${_action} ".ogx"
    598530  !insertmacro ${_action} ".pls"
    599531  !insertmacro ${_action} ".ra"
     
    613545  !insertmacro ${_action} ".wma"
    614546  !insertmacro ${_action} ".wmv"
     547  !insertmacro ${_action} ".wtv"
    615548!macroend
    616549
     
    677610
    678611  retry_runcheck:
    679   FindProcDLL::FindProc "smplayer.exe"
    680   IntCmp $R0 1 0 +3
    681     MessageBox MB_RETRYCANCEL|MB_ICONEXCLAMATION $(SMPlayer_Is_Running) /SD IDCANCEL IDRETRY retry_runcheck
    682     Abort
     612        FindProcDLL::FindProc "smplayer.exe"
     613        IntCmp $R0 1 0 +3
     614                MessageBox MB_RETRYCANCEL|MB_ICONEXCLAMATION $(SMPlayer_Is_Running) /SD IDCANCEL IDRETRY retry_runcheck
     615                Abort
    683616
    684617FunctionEnd
     
    691624
    692625Function .onInit
     626
     627  ${Unless} ${AtLeastWinXP}
     628    MessageBox MB_YESNO|MB_ICONSTOP $(OS_Not_Supported) /SD IDNO IDYES installonoldwindows
     629    Abort
     630        installonoldwindows:
     631  ${EndIf}
    693632
    694633!ifdef WIN64
     
    721660!endif
    722661
    723   !ifdef PRE_RELEASE
    724     MessageBox MB_OK|MB_ICONINFORMATION "This is a pre-release version of SMPlayer. Please report all issues."
    725   !endif
    726 
    727662  ;Check if setup is already running
    728663  System::Call 'kernel32::CreateMutexW(i 0, i 0, t "SMPlayerSetup") i .r1 ?e'
     
    778713  ClearErrors
    779714  ReadRegStr $Previous_Version HKLM "${SMPLAYER_REG_KEY}" "Version"
     715  ReadRegStr $SMPlayer_UnStrPath HKLM "${SMPLAYER_UNINST_KEY}" "UninstallString"
    780716  ReadRegStr $SMPlayer_Path HKLM "${SMPLAYER_REG_KEY}" "Path"
    781717
     
    1007943!ifdef WIN64
    1008944  ${IfNot} ${RunningX64}
    1009     MessageBox MB_OK|MB_ICONSTOP "This installation can only be uninstalled on 64-bit Windows."
     945    MessageBox MB_OK|MB_ICONSTOP $(Uninstaller_64bitOnly)
    1010946    Abort
    1011947  ${EndIf}
  • smplayer/trunk/setup/translations/basque.nsh

    r132 r135  
    55;
    66
    7 !insertmacro LANGFILE "Basque" "Euskera"
     7!insertmacro LANGFILE "Basque" "Euskara"
    88
    99; Startup
    1010${LangFileString} Installer_Is_Running "Ezartzailea jadanik lanean dago."
    1111${LangFileString} Installer_No_Admin "Administratzaile bezala saioa hasita egon behar duzu programa hau ezartzerakoan."
    12 ${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
     12${LangFileString} SMPlayer_Is_Running "SMPlayerren eskabide bat lanean ari da. Mesedez irten SMPlayerretik eta saiatu berriro."
    1313
    14 ${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    15 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
    16 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first."
     14${LangFileString} OS_Not_Supported "Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"
     15${LangFileString} Win64_Required "64-biteko Windows sistema eragile bat behar da software hau ezartzeko."
     16${LangFileString} Existing_32bitInst "32-biteko SMPlayer ezarpen bat dago. Lehenik 32-biteko SMPlayer kendu behar duzu."
     17${LangFileString} Existing_64bitInst "64-biteko SMPlayer ezarpen bat dago. Lehenik 64-biteko SMPlayer kendu behar duzu."
    1718
    1819; Components Page
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (beharrezkoa)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; beharrezkoa irakurketarako."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; beharrezkoa irakurketarako. (Internet Elkarketa beharrezkoa da ezarpenerako)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Kodek Binarioak"
     
    4542${LangFileString} Section_MEncoder_Desc "MPlayer laguntzen duen programa bat erabili daiteke kodeatzeko edo eraldatzeko sostengatutako audio edo bideo jarioak."
    4643
    47 ${LangFileString} Section_IconThemes "Ikono Gaiak"
    48 ${LangFileString} Section_IconThemes_Desc "SMPlayer-entzako ikono gai gehigarriak."
     44${LangFileString} Section_IconThemes "Ikur Gaiak"
     45${LangFileString} Section_IconThemes_Desc "SMPlayer-entzako ikur gai gehigarriak."
    4946
    5047${LangFileString} Section_Translations "Hizkuntzak"
    5148${LangFileString} Section_Translations_Desc "SMPlayer-entzako Ez Ingelerazko hizkuntza agiriak."
    5249
    53 ${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 formato arruntenak irakurtzeko, DVD, MPEG-1/2/4, etab."
     50${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."
    5451
    5552; Upgrade/Reinstall Page
    56 ${LangFileString} Reinstall_Header_Text "Select Install Type"
    57 ${LangFileString} Reinstall_Header_SubText "Select Overwrite or Uninstall mode."
     53${LangFileString} Reinstall_Header_Text "Hautatu Ezarpen Mota"
     54${LangFileString} Reinstall_Header_SubText "Hautatu Gainidatzi edo Kendu modua."
    5855
    59 ${LangFileString} Reinstall_Msg1 "You have an existing installation of SMPlayer in the following folder:"
    60 ${LangFileString} Reinstall_Msg2 "Please select how to proceed:"
    61 ${LangFileString} Reinstall_Overwrite "Overwrite ($Inst_Type) the existing installation"
    62 ${LangFileString} Reinstall_Uninstall "Uninstall (remove) the existing installation"
    63 ${LangFileString} Reinstall_Msg3_1 "Click Start when ready to proceed."
    64 ${LangFileString} Reinstall_Msg3_2 "Click Next when ready to proceed."
    65 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    66 ${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     56${LangFileString} Reinstall_Msg1 "Jadanik baduzu SMPlayerren ezarpen bat agiritegi honetan:"
     57${LangFileString} Reinstall_Msg2 "Mesedez hautatu nola jarraitu:"
     58${LangFileString} Reinstall_Overwrite "Gainidatzi ($Inst_Type) dagoen ezarpena"
     59${LangFileString} Reinstall_Uninstall "Kendu (kendu) dagoen ezarpena"
     60${LangFileString} Reinstall_Msg3_1 "Klikatu Hasi jarraitzeko gertu zaudenean."
     61${LangFileString} Reinstall_Msg3_2 "Klikatu Hurrengoa jarraitzeko gertu zaudenean."
     62${LangFileString} Reinstall_Msg3_3 "Klikatu Kendu jarraitzeko gertu zaudenean."
     63${LangFileString} Reinstall_Msg4 "Aldatu Ezarpenaren Hobespenak"
    6764
    68 ${LangFileString} Type_Reinstall "reinstall"
    69 ${LangFileString} Type_Downgrade "downgrade"
    70 ${LangFileString} Type_Upgrade "upgrade"
     65${LangFileString} Type_Reinstall "berrezarri"
     66${LangFileString} Type_Downgrade "aurrekoratu"
     67${LangFileString} Type_Upgrade "eguneratu"
    7168
    72 ${LangFileString} StartBtn "Start"
     69${LangFileString} StartBtn "Hasi"
    7370
    7471; MPlayer Section
     
    8986
    9087; Uninstaller
    91 ${LangFileString} Uninstaller_No_Admin "Ezarpen hau administrari eskubidea duen erabiltzaileak bakarrik kendu dezake."
     88${LangFileString} Uninstaller_No_Admin "Ezarpen hau administratzaile eskubidea duen erabiltzaileak bakarrik kendu dezake."
    9289${LangFileString} Uninstaller_Aborted "Kentzea erabiltzaileak utzita."
    9390${LangFileString} Uninstaller_NotInstalled "Ez da agertzen SMPlayer zuzenbidean ezarrita dagoenik '$INSTDIR'.$\r$\nJarraitu horrela ere (ez da gomendagarria)?"
     91${LangFileString} Uninstaller_64bitOnly "Ezarpen hau 64-biteko Windowsetik bakarrik kendu daiteke."
    9492
    9593; Vista & Later Default Programs Registration
     
    10199${LangFileString} Info_Del_Shortcuts "Lasterbideak Ezabatzen..."
    102100${LangFileString} Info_Rest_Assoc "Agiri elkarketak birrezartzen..."
    103 ${LangFileString} Info_RollBack "Rolling back changes..."
     101${LangFileString} Info_RollBack "Aldaketak desegiten..."
    104102${LangFileString} Info_Files_Extract "Agiriak ateratzen..."
  • smplayer/trunk/setup/translations/catalan.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/croatian.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/czech.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
    14 ${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    15 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
    16 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first."
     14${LangFileString} OS_Not_Supported "Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"
     15${LangFileString} Win64_Required "Pro instalaci tohoto software je zapotřebí mít 64-bitový oprační systém Windows."
     16${LangFileString} Existing_32bitInst "Máte nainstalovánu 32-bitovou verzi SMPlayeru. Musíte nejprve odinstalovat 32-bitový SMPlayer."
     17${LangFileString} Existing_64bitInst "Máte nainstalovánu 64-bitovou verzi SMPlayeru. Musíte nejprve odinstalovat 64-bitový SMPlayer."
    1718
    1819; Components Page
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (vyžadován)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; vyžadován pro přehrávání."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; vyžadován pro přehrávání. (Pro instalaci je potřeba připojení k Internetu)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binární kodeky"
     
    4340!endif
    4441
    45 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     42${LangFileString} Section_MEncoder_Desc "Dodatkový program pro MPlayer, který se využívá k enkódování nebo transformaci audio/video souborů."
    4643
    4744${LangFileString} Section_IconThemes "Témata ikon"
     
    5451
    5552; Upgrade/Reinstall Page
    56 ${LangFileString} Reinstall_Header_Text "Select Install Type"
    57 ${LangFileString} Reinstall_Header_SubText "Select Overwrite or Uninstall mode."
     53${LangFileString} Reinstall_Header_Text "Vyberte typ instalace"
     54${LangFileString} Reinstall_Header_SubText "Vyberte přepsání nebo odinstalaci."
    5855
    59 ${LangFileString} Reinstall_Msg1 "You have an existing installation of SMPlayer in the following folder:"
    60 ${LangFileString} Reinstall_Msg2 "Please select how to proceed:"
    61 ${LangFileString} Reinstall_Overwrite "Overwrite ($Inst_Type) the existing installation"
    62 ${LangFileString} Reinstall_Uninstall "Uninstall (remove) the existing installation"
    63 ${LangFileString} Reinstall_Msg3_1 "Click Start when ready to proceed."
    64 ${LangFileString} Reinstall_Msg3_2 "Click Next when ready to proceed."
    65 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    66 ${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     56${LangFileString} Reinstall_Msg1 "SMPlayer již máte nainstalován v tomto adresáři:"
     57${LangFileString} Reinstall_Msg2 "Prosím vyberte jak pokračovat:"
     58${LangFileString} Reinstall_Overwrite "Přepsat ($Inst_Type) existující instalaci"
     59${LangFileString} Reinstall_Uninstall "Odinstalovat (odebrat) existující instalaci"
     60${LangFileString} Reinstall_Msg3_1 "Stiskněte Start jste-li připraveni."
     61${LangFileString} Reinstall_Msg3_2 "Stiskněte Další jste-li připraveni."
     62${LangFileString} Reinstall_Msg3_3 "Stiskněte Odinstalovat jste-li připraveni."
     63${LangFileString} Reinstall_Msg4 "Změnit nastavení instalace"
    6764
    68 ${LangFileString} Type_Reinstall "reinstall"
     65${LangFileString} Type_Reinstall "reinstalovat"
    6966${LangFileString} Type_Downgrade "downgrade"
    7067${LangFileString} Type_Upgrade "upgrade"
     
    9289${LangFileString} Uninstaller_Aborted "Odinstalace přerušena uživatelem."
    9390${LangFileString} Uninstaller_NotInstalled "V adresáři '$INSTDIR' není SMPlayer nainstalován .$\r$\nPokračovat (nedoporučeno)?"
     91${LangFileString} Uninstaller_64bitOnly "Tato instalace jde odinstalovat pouze na 64-bitové verzi Windows."
    9492
    9593; Vista & Later Default Programs Registration
     
    9795
    9896; Misc
    99 ${LangFileString} Info_Del_Files "Deleting Files..."
    100 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..."
    101 ${LangFileString} Info_Del_Shortcuts "Deleting Shortcuts..."
    102 ${LangFileString} Info_Rest_Assoc "Restoring file associations..."
    103 ${LangFileString} Info_RollBack "Rolling back changes..."
    104 ${LangFileString} Info_Files_Extract "Extracting files..."
     97${LangFileString} Info_Del_Files "Mažu soubory..."
     98${LangFileString} Info_Del_Registry "Mažu záznamy registru..."
     99${LangFileString} Info_Del_Shortcuts "Mažu zástupce..."
     100${LangFileString} Info_Rest_Assoc "Obnovuji asociace souborů..."
     101${LangFileString} Info_RollBack "Beru zpět změny..."
     102${LangFileString} Info_Files_Extract "Extrahuji soubory..."
  • smplayer/trunk/setup/translations/danish.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/dutch.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/english.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/finnish.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/french.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/german.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (erforderlich)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer – benötigt für die Wiedergabe."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer – benötigt für die Wiedergabe. (Internetverbindung benötigt für Installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binärcodecs"
     
    9289${LangFileString} Uninstaller_Aborted "Die Deinstallation ist vom Benutzer abgebrochen worden."
    9390${LangFileString} Uninstaller_NotInstalled "Es scheint, dass SMPlayer nicht im Verzeichnis '$INSTDIR' installiert ist.$\r$\nTrotzdem fortfahren (nicht empfohlen)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/hebrew.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/hungarian.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Az eltávolítást a felhasználó megszakította."
    9390${LangFileString} Uninstaller_NotInstalled "Nem úgy néz ki, mint ha az SMPlayer ebbe a könyvtárba lett volna telepítve: '$INSTDIR'.$\r$\nMégis folytassam (nem ajánlott)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/italian.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (essenziale)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; essenziale per la riproduzione."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; essenziale per la riproduzione. (Connessione a Internet richiesta per l'installazione)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Codec binari"
     
    9289${LangFileString} Uninstaller_Aborted "Disinstallazione annullata dall'utente."
    9390${LangFileString} Uninstaller_NotInstalled "Sembra che SMPlayer non sia installato nella cartella '$INSTDIR'.$\r$\nContinua comunque (non raccomandato)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/japanese.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "SMPlayer のインスタンスが実行中です。SMPlayer を終了してやり直してください。"
    1313
    14 ${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    15 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
    16 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first."
     14${LangFileString} OS_Not_Supported "Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"
     15${LangFileString} Win64_Required "このソフトウェアをインストールするには 64 ビットの Windows オペレーティング システムが必要です。"
     16${LangFileString} Existing_32bitInst "32 ビットの SMPlayer が既にインストールされています。先に 32 ビットの SMPlayer をアンインストールする必要があります。"
     17${LangFileString} Existing_64bitInst "64 ビットの SMPlayer が既にインストールされています。先に 64 ビットの SMPlayer をアンインストールする必要があります。"
    1718
    1819; Components Page
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (必須)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "再生のために必要な MPlayer です。"
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "再生のために必要な MPlayer です。(インストールにはインターネット接続が必要です)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "バイナリ コーデック"
     
    9289${LangFileString} Uninstaller_Aborted "アンインストールはユーザーによって中止されました。"
    9390${LangFileString} Uninstaller_NotInstalled "ディレクトリ '$INSTDIR' に SMPlayer がインストールされているように見えません。$\r$\nこのまま続行しますか (推奨されません)?"
     91${LangFileString} Uninstaller_64bitOnly "このインストールは 64 ビットの Windows でのみアンインストールできます。"
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/korean.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/norwegian.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/polish.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (wymagane)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; wymagany do odtwarzania filmów."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; wymagany do odtwarzania filmów. (Wymagane połączenie z internetem)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Kodeki"
     
    9188${LangFileString} Uninstaller_Aborted "Usuwanie anulowane przez użytkownika."
    9289${LangFileString} Uninstaller_NotInstalled "Wygląda na to, że SMPlayer nie został zainstalowany w katalogu '$INSTDIR'.$\r$\nKontynuować mimo to (nie zalecane)?"
     90${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9391
    9492; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/portuguese.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "Já existe uma instância SMPlayer em execução. Feche o SMPlayer e tente novamente."
    1313
    14 ${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    15 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
    16 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first."
     14${LangFileString} OS_Not_Supported "Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"
     15${LangFileString} Win64_Required "Para instalar esta versão, tem que possuir um sistema de 64 bits."
     16${LangFileString} Existing_32bitInst "Já existe uma instalação 32 bits do SMPlayer. Tem que a desinstalar antes de uma nova instalação."
     17${LangFileString} Existing_64bitInst "Já existe uma instalação 64 bits do SMPlayer. Tem que a desinstalar antes de uma nova instalação."
    1718
    1819; Components Page
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (obrigatório)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; necessário para a reprodução."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; necessário para a reprodução. (Precisa de uma ligação à Internet)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Codificadores"
     
    4037${LangFileString} Section_MPlayerCodecs_Desc "Codificadores opcionais para o MPlayer."
    4138!else ifndef WITH_CODECS
    42 ${LangFileString} Section_MPlayerCodecs_Desc "Codificadores opcionais para o MPlayer. (Precisa de uma ligação à Internet)"
     39${LangFileString} Section_MPlayerCodecs_Desc "Codificadores opcionais para o MPlayer. (precisa de uma ligação à Internet)"
    4340!endif
    4441
     
    5148${LangFileString} Section_Translations_Desc "Idiomas adicionais para o SMPlayer."
    5249
    53 ${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 não usuais.$\nNote que estes não serão necessários para os formatos mais comuns como DVDs, MPEG-1/2/4, etc."
     50${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."
    5451
    5552; Upgrade/Reinstall Page
     
    9289${LangFileString} Uninstaller_Aborted "Desinstalação cancelada pelo utilizador."
    9390${LangFileString} Uninstaller_NotInstalled "Parece que o SMPlayer não está instalado no diretório '$INSTDIR'.$\r$\nContinuar (não recomendado)?"
     91${LangFileString} Uninstaller_64bitOnly "Esta instalação só pode ser desinstalada num sistema Windows de 64 bits."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/russian.nsh

    r132 r135  
    99; Startup
    1010${LangFileString} Installer_Is_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."
     11${LangFileString} Installer_No_Admin "Для установки программы необходимо войти в систему как администратор."
     12${LangFileString} SMPlayer_Is_Running "Экземпляр SMPlayer запущен. Пожалуйста, закройте SMPlayer и попытайтесь снова."
    1313
    14 ${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    15 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
    16 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first."
     14${LangFileString} OS_Not_Supported "Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"
     15${LangFileString} Win64_Required "Для установки данного ПО требуется 64-битная ОС Windows."
     16${LangFileString} Existing_32bitInst "Существует 32-битная установка SMPlayer. Сначала далите 32-битный SMPlayer."
     17${LangFileString} Existing_64bitInst "Существует 64-битная установка SMPlayer. Сначала далите 64-битный SMPlayer."
    1718
    1819; Components Page
    19 ${LangFileString} ShortcutGroupTitle "Shortcuts"
    20 ${LangFileString} MPlayerGroupTitle "MPlayer Components"
     20${LangFileString} ShortcutGroupTitle "Ярлыки"
     21${LangFileString} MPlayerGroupTitle "Компоненты MPlayer"
    2122
    22 ${LangFileString} Section_SMPlayer "SMPlayer (required)"
    23 ${LangFileString} Section_SMPlayer_Desc "SMPlayer, shared libraries, and documentation."
     23${LangFileString} Section_SMPlayer "SMPlayer (необходимо)"
     24${LangFileString} Section_SMPlayer_Desc "SMPlayer, разделяемые библиотеки и документация."
    2425
    25 ${LangFileString} Section_DesktopShortcut "Desktop"
    26 ${LangFileString} Section_DesktopShortcut_Desc "Creates a shortcut to SMPlayer on the desktop."
     26${LangFileString} Section_DesktopShortcut "Рабочий стол"
     27${LangFileString} Section_DesktopShortcut_Desc "Создаёт ярлыки SMPlayer на рабочем столе."
    2728
    28 ${LangFileString} Section_StartMenu "Start Menu"
    29 ${LangFileString} Section_StartMenu_Desc "Create a Start Menu entry for SMPlayer."
     29${LangFileString} Section_StartMenu "Стартовое меню"
     30${LangFileString} Section_StartMenu_Desc "Создаёт ярлыки SMPlayer в стартовом меню."
    3031
    31 ${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    33 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
     32${LangFileString} Section_MPlayer "MPlayer (необходимо)"
     33${LangFileString} Section_MPlayer_Desc "MPlayer; необходимо для воспроизведения."
     34
     35${LangFileString} Section_MPlayerCodecs "Бинарные кодеки"
     36!ifdef WITH_CODECS
     37${LangFileString} Section_MPlayerCodecs_Desc "Дополнительные кодеки для MPlayer."
     38!else ifndef WITH_CODECS
     39${LangFileString} Section_MPlayerCodecs_Desc "Дополнительные кодеки для MPlayer. (Для установки требуется подключение к сети Интернет)"
    3640!endif
    3741
    38 ${LangFileString} Section_MPlayerCodecs "Binary Codecs"
    39 !ifdef WITH_CODECS
    40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer."
    41 !else ifndef WITH_CODECS
    42 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
    43 !endif
     42${LangFileString} Section_MEncoder_Desc "Сопутствующая MPlayer программа, которую можно использовать для кодирования и преобразования поддерживаемых аудио и видео потоков."
    4443
    45 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     44${LangFileString} Section_IconThemes "Темы иконок"
     45${LangFileString} Section_IconThemes_Desc "Дополнительные темы иконок для SMPlayer."
    4646
    47 ${LangFileString} Section_IconThemes "Icon Themes"
    48 ${LangFileString} Section_IconThemes_Desc "Additional icon themes for SMPlayer."
    49 
    50 ${LangFileString} Section_Translations "Languages"
    51 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     47${LangFileString} Section_Translations "Переводы"
     48${LangFileString} Section_Translations_Desc "Языковые файлы SMPlayer, помимо английского."
    5249
    5350${LangFileString} MPlayer_Codec_Msg "Пакеты с бинарными кодеками добавляют поддержку кодеков, не встроенных в mplayer, например, RealVideo и других нестандартных форматов.$\nОбратите внимание, что эти кодеки не нужны для воспроизведения большинства обычных форматов вроде DVD, MPEG-1/2/4 и т.п."
    5451
    5552; Upgrade/Reinstall Page
    56 ${LangFileString} Reinstall_Header_Text "Select Install Type"
    57 ${LangFileString} Reinstall_Header_SubText "Select Overwrite or Uninstall mode."
     53${LangFileString} Reinstall_Header_Text "Выберите тип установки"
     54${LangFileString} Reinstall_Header_SubText "Выберите режим установки поверх или удаления."
    5855
    59 ${LangFileString} Reinstall_Msg1 "You have an existing installation of SMPlayer in the following folder:"
    60 ${LangFileString} Reinstall_Msg2 "Please select how to proceed:"
    61 ${LangFileString} Reinstall_Overwrite "Overwrite ($Inst_Type) the existing installation"
    62 ${LangFileString} Reinstall_Uninstall "Uninstall (remove) the existing installation"
    63 ${LangFileString} Reinstall_Msg3_1 "Click Start when ready to proceed."
    64 ${LangFileString} Reinstall_Msg3_2 "Click Next when ready to proceed."
    65 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    66 ${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     56${LangFileString} Reinstall_Msg1 "Существует установка SMPlayer в следующем каталоге:"
     57${LangFileString} Reinstall_Msg2 "Выберите метод для продолжения:"
     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 "Нажмите Удалить для продолжения."
     63${LangFileString} Reinstall_Msg4 "Изменить настройки установки"
    6764
    68 ${LangFileString} Type_Reinstall "reinstall"
    69 ${LangFileString} Type_Downgrade "downgrade"
    70 ${LangFileString} Type_Upgrade "upgrade"
     65${LangFileString} Type_Reinstall "переустановить"
     66${LangFileString} Type_Downgrade "откатить"
     67${LangFileString} Type_Upgrade "обновить"
    7168
    72 ${LangFileString} StartBtn "Start"
     69${LangFileString} StartBtn "Старт"
    7370
    7471; MPlayer Section
    7572${LangFileString} MPlayer_DL_Msg "Загрузка MPlayer..."
    76 ${LangFileString} MPlayer_DL_Retry "MPlayer was not successfully installed. Retry?"
     73${LangFileString} MPlayer_DL_Retry "Не удалось успешно установить MPlayer. Попытаться ещё раз?"
    7774${LangFileString} MPlayer_DL_Failed "Не удалось загрузить MPlayer: '$R0'."
    7875${LangFileString} MPlayer_Inst_Failed "Ошибка при установке MPlayer. MPlayer требуется для воспроизведения."
     
    8077; Codecs Section
    8178${LangFileString} Codecs_DL_Msg "Загрузка бинарных кодеков для MPlayer..."
    82 ${LangFileString} Codecs_DL_Retry "MPlayer codecs were not successfully installed. Retry?"
     79${LangFileString} Codecs_DL_Retry "Не удалось успешно установить кодеки MPlayer. Попытаться ещё раз?"
    8380${LangFileString} Codecs_DL_Failed "Не удалось загрузить бинарные кодеки для MPlayer: '$R0'."
    8481${LangFileString} Codecs_Inst_Failed "Ошибка при установке бинарных кодеков для MPlayer."
     
    8683; Version information
    8784${LangFileString} VerInfo_DL_Msg "Загрузка информации о версии..."
    88 ${LangFileString} VerInfo_DL_Failed "Не удалось загрузить информацию о версии: '$R0'. Using a default version."
     85${LangFileString} VerInfo_DL_Failed "Не удалось загрузить информацию о версии: '$R0'. Будет использована версия по умолчанию."
    8986
    9087; Uninstaller
    91 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges."
     88${LangFileString} Uninstaller_No_Admin "Эта установка может быть удалена только пользователем с правами администратора."
    9289${LangFileString} Uninstaller_Aborted "Удаление прервано пользователем."
    9390${LangFileString} Uninstaller_NotInstalled "Не похоже, что SMPlayer установлен в каталог '$INSTDIR'.$\r$\nПродолжить всё равно (не рекомендуется)?"
     91${LangFileString} Uninstaller_64bitOnly "Эта установка может быть удалена только на 64-битной Windows."
    9492
    9593; Vista & Later Default Programs Registration
     
    9795
    9896; Misc
    99 ${LangFileString} Info_Del_Files "Deleting Files..."
    100 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..."
    101 ${LangFileString} Info_Del_Shortcuts "Deleting Shortcuts..."
    102 ${LangFileString} Info_Rest_Assoc "Restoring file associations..."
    103 ${LangFileString} Info_RollBack "Rolling back changes..."
    104 ${LangFileString} Info_Files_Extract "Extracting files..."
     97${LangFileString} Info_Del_Files "Удаление файлов..."
     98${LangFileString} Info_Del_Registry "Удаление ключей реестра..."
     99${LangFileString} Info_Del_Shortcuts "Удаление ярлыков..."
     100${LangFileString} Info_Rest_Assoc "Восстановление ассоциаций файлов..."
     101${LangFileString} Info_RollBack "Откат изменений..."
     102${LangFileString} Info_Files_Extract "Извлечение файлов..."
  • smplayer/trunk/setup/translations/simpchinese.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "一个 SMPlayer 实例正在运行。请退出 SMPlayer,然后再试一次。"
    1313
    14 ${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    15 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
    16 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first."
     14${LangFileString} OS_Not_Supported "Unsupported operating system.$\nSMPlayer ${SMPLAYER_VERSION} requires at least Windows XP and may not work correctly on your system.$\nDo you really want to continue with the installation?"
     15${LangFileString} Win64_Required "安装本软件需要 64 位 Windows 操作系统。"
     16${LangFileString} Existing_32bitInst "一个 SMPlayer 的 32 位安装已经存在。您必须先卸载 32 位 SMPlayer。"
     17${LangFileString} Existing_64bitInst "一个 SMPlayer 的 64 位安装已经存在。您必须先卸载 64 位 SMPlayer。"
    1718
    1819; Components Page
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (必需)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "播放媒体文件所必需的 MPlayer 内核。"
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "播放媒体文件所必需的 MPlayer 内核。(安装需要使用网络连接)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "二进制编解码器"
     
    9289${LangFileString} Uninstaller_Aborted "卸载由用户中止。"
    9390${LangFileString} Uninstaller_NotInstalled "没有发现 SMPlayer 被安装在目录 '$INSTDIR' 中。$\r$\n仍要继续吗? (不推荐)"
     91${LangFileString} Uninstaller_64bitOnly "本安装只能在 64 位 Windows 中卸载。"
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/slovak.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/slovenian.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/spanish.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "SMPlayer se está ejecutando. Por favor, ciérralo e inténtalo de nuevo."
    1313
     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?"
    1415${LangFileString} Win64_Required "Se necesita un Windows de 64 bits para instalar este programa."
    1516${LangFileString} Existing_32bitInst "Existe una versión de 32 bits instalada. Debes desinstalarla primero."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (requerido)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; requerido para la reproducción multimedia."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; requerido para la reproducción multimedia. (Se necesita conexión a internet para la instalación)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Códecs Binarios"
     
    9289${LangFileString} Uninstaller_Aborted "Desinstalación cancelada por el usuario."
    9390${LangFileString} Uninstaller_NotInstalled "No parece que el SMPlayer esté instalado en el directorio '$INSTDIR'.$\r$\n¿Continuar de todos modos (no recomendado)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
  • smplayer/trunk/setup/translations/tradchinese.nsh

    r132 r135  
    1212${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
    1313
     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?"
    1415${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    1516${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
     
    3031
    3132${LangFileString} Section_MPlayer "MPlayer (required)"
    32 !ifdef WITH_MPLAYER
    3333${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
    34 !else ifndef WITH_MPLAYER
    35 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback. (Internet Connection required for installation)"
    36 !endif
    3734
    3835${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     
    9289${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    9390${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
     91${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
    9492
    9593; Vista & Later Default Programs Registration
Note: See TracChangeset for help on using the changeset viewer.