Changeset 156 for smplayer/trunk/setup


Ignore:
Timestamp:
Feb 21, 2014, 5:26:03 PM (11 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update trunk to 0.8.6

Location:
smplayer/trunk
Files:
30 edited
1 copied

Legend:

Unmodified
Added
Removed
  • smplayer/trunk

  • smplayer/trunk/setup/license.txt

    r139 r156  
    1 A. SMPlayer License
    2 B. Youtube Terms of Services
    3 
    4 ====================================================
    5 
    6 A. SMPlayer License
    7 
    81                    GNU GENERAL PUBLIC LICENSE
    92                       Version 2, June 1991
     
    346339Public License instead of this License.
    347340
    348 ====================================================
    349 
    350 B. Youtube Terms of Services
    351 
    352 By using SMPlayer you hereby agree to be bound by Google Terms of Services located
    353 at http://www.google.com/accounts/TOS
    354 
  • smplayer/trunk/setup/scripts/install_smplayer.cmd

    r142 r156  
    66echo.
    77
    8 set /P QTVER="Qt Version (Default: 4.7.4): "
    9 if "%QTVER%"=="" set QTVER=4.7.4
     8set /P QTVER="Qt Version (Default: 4.8.4): "
     9if "%QTVER%"=="" set QTVER=4.8.4
    1010
    1111set OUTPUT_DIR=smplayer-build
     
    1616set SMPLAYER_SKINS_DIR=svn\smplayer-skins
    1717set MPLAYER_DIR=mplayer
    18 set QT_DIR=C:\QtSDK\Desktop\Qt\%QTVER%\mingw
     18rem set QT_DIR=C:\QtSDK\Desktop\Qt\%QTVER%\mingw
     19set QT_DIR=C:\Qt\%QTVER%
    1920
    2021echo.
     
    3233copy %QT_DIR%\bin\QtNetwork4.dll %OUTPUT_DIR%
    3334copy %QT_DIR%\bin\QtXml4.dll %OUTPUT_DIR%
     35copy %QT_DIR%\bin\QtScript4.dll %OUTPUT_DIR%
    3436copy %QT_DIR%\bin\mingwm10.dll %OUTPUT_DIR%
    3537if %QTVER% geq 4.6.0 (
  • smplayer/trunk/setup/scripts/make_pkgs.cmd

    r142 r156  
    5757echo --- Creating SMPlayer NSIS Packages ---
    5858echo.
    59 echo Format: VER_MAJOR.VER_MINOR.VER_BUILD.VER_REVISION
    60 echo Example: 0.8.1.0
    61 echo.
    62 echo Note: VER_REVISION must be defined as '0' if not used
     59echo Format: VER_MAJOR.VER_MINOR.VER_BUILD[.VER_REVISION]
     60echo VER_REVISION is optional (set to 0 if blank)
    6361echo.
    6462
    6563:: Reset in case ran again in same command prompt instance
     64set NSIS_PKG_VER=
    6665set VER_MAJOR=
    6766set VER_MINOR=
    6867set VER_BUILD=
    6968set VER_REVISION=
    70 
    71 set /P VER_MAJOR="VER_MAJOR: "
    72 set /P VER_MINOR="VER_MINOR: "
    73 set /P VER_BUILD="VER_BUILD: "
    74 set /P VER_REVISION="VER_REVISION: "
    75 
    76 echo.
    77 
    78 if %VER_REVISION% neq 0 (
    79 
    80 %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DVER_REVISION=%VER_REVISION% %TOP_LEVEL_DIR%\smplayer.nsi
    81 rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DVER_REVISION=%VER_REVISION% /DWIN64 %TOP_LEVEL_DIR%\smplayer.nsi
    82 rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DVER_REVISION=%VER_REVISION% /DWIN64 %TOP_LEVEL_DIR%\smplayer.full.nsi
    83 
     69set VER_REV_CMD=
     70
     71:nsispkgver_again
     72Set /p NSIS_PKG_VER="Version: "
     73
     74for /f "tokens=1 delims=." %%j in ("%NSIS_PKG_VER%")  do set VER_MAJOR=%%j
     75for /f "tokens=2 delims=." %%k in ("%NSIS_PKG_VER%")  do set VER_MINOR=%%k
     76for /f "tokens=3 delims=." %%l in ("%NSIS_PKG_VER%")  do set VER_BUILD=%%l
     77for /f "tokens=4 delims=." %%m in ("%NSIS_PKG_VER%")  do set VER_REVISION=%%m
     78
     79if [%VER_MAJOR%]==[] (
     80  echo Major Version # must be specified [#.x.x]
     81  echo.
     82  goto nsispkgver_again
     83)
     84
     85if [%VER_MINOR%]==[] (
     86  echo Minor Version # must be specified [x.#.x]
     87  echo.
     88  goto nsispkgver_again
     89)
     90
     91if [%VER_BUILD%]==[] (
     92  echo Build Version # must be specified [x.x.#]
     93  echo.
     94  goto nsispkgver_again
     95)
     96
     97if [%VER_REVISION%]==[] (
     98  set VER_REV_CMD=
    8499) else (
    85 
    86 %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% %TOP_LEVEL_DIR%\smplayer.nsi
    87 rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DWIN64 %TOP_LEVEL_DIR%\smplayer.nsi
    88 rem %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD% /DWIN64 %TOP_LEVEL_DIR%\smplayer.full.nsi
    89 
    90 )
    91 
    92 echo.
     100  set VER_REV_CMD= /DVER_REVISION=%VER_REVISION%
     101)
     102
     103if exist %TOP_LEVEL_DIR%\smplayer-build (
     104  %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD%%VER_REV_CMD% %TOP_LEVEL_DIR%\smplayer.nsi
     105)
     106
     107if exist %TOP_LEVEL_DIR%\smplayer-build64 (
     108  %NSIS_PATH%\makensis.exe /DVER_MAJOR=%VER_MAJOR% /DVER_MINOR=%VER_MINOR% /DVER_BUILD=%VER_BUILD%%VER_REV_CMD% /DWIN64 %TOP_LEVEL_DIR%\smplayer.nsi
     109)
    93110
    94111goto end
     
    122139
    123140echo.
    124 echo ######      Backing up files       #######
     141echo Backing up files...
    125142echo.
    126143
     
    130147
    131148echo.
    132 echo ######   Create screenshots dir.   #######
     149echo Creating screenshots dir...
    133150echo.
    134151
     
    136153
    137154echo.
    138 echo ######    Create mplayer config    #######
    139 echo.
    140 
    141 echo ## MPlayer Windows configuration>> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config
     155echo Creating smplayer.ini...
     156echo.
     157
     158echo [%%General]> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     159echo screenshot_directory=.\\screenshots>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     160echo.>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     161echo [advanced]>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     162echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_PORTABLE_DIR%\smplayer.ini
     163
     164echo.
     165echo Creating smplayer_orig.ini...
     166echo.
     167
     168echo [%%General]> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     169echo screenshot_directory=.\\screenshots>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     170echo.>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     171echo [advanced]>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     172echo mplayer_additional_options=-nofontconfig>> %SMPLAYER_PORTABLE_DIR%\smplayer_orig.ini
     173
     174echo.
     175echo Creating mplayer config...
     176echo.
     177
     178echo ## MPlayer Windows configuration> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config
    142179echo.>> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config
    143180echo subfont=c:\windows\fonts\arial.ttf>> %SMPLAYER_PORTABLE_DIR%\mplayer\mplayer\config
     
    145182
    146183echo.
    147 echo ######    Copying portable .exe    #######
     184echo Copying portable .exe...
    148185echo.
    149186
     
    152189
    153190echo.
    154 echo ######  Creating portable package  #######
    155 echo.
    156 7za a -t7z %OUTPUT_DIR%\smplayer-portable-%SMPLAYER_VER%.7z %SMPLAYER_PORTABLE_DIR% -xr!*.bak -xr!qxtcore.dll -mx9
     191echo Finalizing portable package...
     192echo.
     1937za a -t7z %OUTPUT_DIR%\smplayer-portable-%SMPLAYER_VER%.7z %SMPLAYER_PORTABLE_DIR% -xr!*.bak -xr!qxtcore.dll -xr!mplayer64.exe -mx9
    157194
    158195echo.
  • smplayer/trunk/setup/smplayer.nsi

    r142 r156  
    9797  Var Reinstall_OverwriteButton
    9898  Var Reinstall_OverwriteButton_State
     99  Var Reinstall_RemoveSettings
     100  Var Reinstall_RemoveSettings_State
    99101  Var Reinstall_Uninstall
    100102  Var Reinstall_UninstallButton
     
    361363
    362364    SetOutPath "$INSTDIR\mplayer"
    363     File /r /x mencoder.exe "${SMPLAYER_BUILD_DIR}\mplayer\*.*"
     365    File /r /x mplayer.exe /x mencoder.exe /x mplayer64.exe /x mencoder64.exe "${SMPLAYER_BUILD_DIR}\mplayer\*.*"
     366!ifdef WIN64
     367    File /oname=mplayer.exe "${SMPLAYER_BUILD_DIR}\mplayer\mplayer64.exe"
     368!else
     369    File "${SMPLAYER_BUILD_DIR}\mplayer\mplayer.exe"
     370!endif
    364371
    365372    WriteRegDWORD HKLM "${SMPLAYER_REG_KEY}" Installed_MPlayer 0x1
     
    368375
    369376  Section /o $(Section_MPlayerCodecs) SecCodecs
     377
     378!ifdef WIN64
     379    SectionIn RO
     380!endif
    370381
    371382    AddSize 22931
     
    442453${MementoSectionEnd}
    443454
     455Section /o $(Reinstall_Msg5) SecResetSettings
     456
     457    NsExec::Exec '"$INSTDIR\smplayer.exe" -delete-config'
     458
     459SectionEnd
     460
    444461;--------------------------------
    445462;Install/Uninstall information
     
    492509  !insertmacro MUI_DESCRIPTION_TEXT ${SecThemes} $(Section_IconThemes_Desc)
    493510  !insertmacro MUI_DESCRIPTION_TEXT ${SecTranslations} $(Section_Translations_Desc)
     511  !insertmacro MUI_DESCRIPTION_TEXT ${SecResetSettings} $(Section_ResetSettings_Desc)
    494512!insertmacro MUI_FUNCTION_DESCRIPTION_END
    495513
     
    642660Function .onInit
    643661
    644 /*
    645662  ${Unless} ${AtLeastWinXP}
    646663    MessageBox MB_YESNO|MB_ICONSTOP $(OS_Not_Supported) /SD IDNO IDYES installonoldwindows
     
    648665  installonoldwindows:
    649666  ${EndIf}
    650 */
    651667
    652668!ifdef WIN64
     
    719735  ${MementoSectionSave}
    720736
    721   ExecShell "open" "http://smplayer.sourceforge.net/thank-you.php?version=${SMPLAYER_VERSION}"
     737/*
     738  ${Unless} $Reinstall_Uninstall == 1
     739    ExecShell "open" "http://smplayer.sourceforge.net/thank-you.php?version=${SMPLAYER_VERSION}"
     740  ${EndIf}
     741*/
    722742
    723743FunctionEnd
     
    736756FunctionEnd
    737757
    738 Function un.onUninstSuccess
     758/* Function un.onUninstSuccess
    739759
    740760  ;Don't launch uninstall page if reinstalling
     
    745765  ExecShell "open" "http://smplayer.sourceforge.net/uninstall.php?version=${SMPLAYER_VERSION}"
    746766
    747 FunctionEnd
     767FunctionEnd */
    748768
    749769Function CheckPreviousVersion
     
    794814
    795815  ;MPlayer codecs section doesn't use Memento so we need to restore it manually
    796   ReadRegDWORD $R0 HKLM "${SMPLAYER_REG_KEY}" "Installed_Codecs"
    797   ${If} $R0 == 1
    798     !insertmacro SelectSection ${SecCodecs}
    799   ${EndIf}
     816  ;32-bit only
     817!ifdef WIN64
     818    !insertmacro UnSelectSection ${SecCodecs}
     819!else
     820    ReadRegDWORD $R0 HKLM "${SMPLAYER_REG_KEY}" "Installed_Codecs"
     821    ${If} $R0 == 1
     822      !insertmacro SelectSection ${SecCodecs}
     823    ${EndIf}
     824!endif
    800825
    801826  ;Gets start menu folder name
     
    834859  Pop $Reinstall_ChgSettings
    835860
    836   ${NSD_CreateLabel} 0 115u 100% 16u
     861  ${NSD_CreateCheckBox} 0 102u 100% 8u $(Reinstall_Msg5)
     862  Pop $Reinstall_RemoveSettings
     863
     864  ${NSD_CreateLabel} 0 121u 100% 16u
    837865  Pop $Reinstall_Message
    838866
     
    844872  ${Endif}
    845873
     874  ${If} $Reinstall_RemoveSettings_State == 1
     875    SendMessage $Reinstall_RemoveSettings ${BM_SETCHECK} 1 0
     876  ${Endif}
     877
    846878  ${NSD_OnClick} $Reinstall_OverwriteButton PageReinstallUpdate
    847879  ${NSD_OnClick} $Reinstall_UninstallButton PageReinstallUpdate
     
    859891  ${NSD_GetState} $Reinstall_UninstallButton $Reinstall_UninstallButton_State
    860892  ${NSD_GetState} $Reinstall_ChgSettings $Reinstall_ChgSettings_State
     893  ${NSD_GetState} $Reinstall_RemoveSettings $Reinstall_RemoveSettings_State
     894
     895  ${If} $Reinstall_RemoveSettings_State == 1
     896    !insertmacro SelectSection ${SecResetSettings}
     897  ${EndIf}
    861898
    862899FunctionEnd
     
    871908
    872909    EnableWindow $Reinstall_ChgSettings 1
     910    EnableWindow $Reinstall_RemoveSettings 1
    873911
    874912    GetDlgItem $R0 $HWNDPARENT 1
     
    886924    ${NSD_SetState} $Reinstall_ChgSettings 0
    887925
     926    EnableWindow $Reinstall_RemoveSettings 0
     927    ${NSD_SetState} $Reinstall_RemoveSettings 0
     928
    888929    GetDlgItem $R0 $HWNDPARENT 1
    889930    SendMessage $R0 ${WM_SETTEXT} 0 "STR:$(^UninstallBtn)"
  • smplayer/trunk/setup/translations/basque.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Kodek Binarioak"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Aukerazko kodekak MPlayerrentzat. (Internet Elkarketa beharrezkoa da ezarpenerako)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "MPlayer laguntzen duen programa bat erabili daiteke kodeatzeko edo eraldatzeko sostengatutako audio edo bideo jarioak."
     
    4751${LangFileString} Section_Translations "Hizkuntzak"
    4852${LangFileString} Section_Translations_Desc "SMPlayer-entzako Ez Ingelerazko hizkuntza agiriak."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${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."
     
    6268${LangFileString} Reinstall_Msg3_3 "Klikatu Kendu jarraitzeko gertu zaudenean."
    6369${LangFileString} Reinstall_Msg4 "Aldatu Ezarpenaren Hobespenak"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "berrezarri"
  • smplayer/trunk/setup/translations/catalan.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/croatian.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/czech.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binární kodeky"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Přídavné kodeky MPlayeru. (Pro instalaci je potřeba připojení k Internetu)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "Dodatkový program pro MPlayer, který se využívá k enkódování nebo transformaci audio/video souborů."
     
    4751${LangFileString} Section_Translations "Lokalizace"
    4852${LangFileString} Section_Translations_Desc "Neanglické lokalizace."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "Binární kodeky podporují formáty, které zatím nejsou implementovány nativně, např. novější varianty RealVideo a jiné málo používané formáty.$\nPro většinu běžných formátů nejsou potřeba (DVD, MPEG-1/2/4, apod.)."
     
    6268${LangFileString} Reinstall_Msg3_3 "Stiskněte Odinstalovat jste-li připraveni."
    6369${LangFileString} Reinstall_Msg4 "Změnit nastavení instalace"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstalovat"
  • smplayer/trunk/setup/translations/danish.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/dutch.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/english.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/finnish.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/french.nsh

    r142 r156  
    88
    99; Startup
    10 ${LangFileString} Installer_Is_Running "The installer is already running."
    11 ${LangFileString} Installer_No_Admin "You must be logged in as an administrator when installing this program."
    12 ${LangFileString} SMPlayer_Is_Running "An instance of SMPlayer is running. Please exit SMPlayer and try again."
     10${LangFileString} Installer_Is_Running "L'installateur est déjà en cours d'exécution."
     11${LangFileString} Installer_No_Admin "Vous devez être connecté comme administrateur pour installer ce programme."
     12${LangFileString} SMPlayer_Is_Running "Une instance de SMPlayer est en cours d'exécution.  Veuillez quitter SMPlayer puis réessayer l'installation."
    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?"
     14${LangFileString} OS_Not_Supported "Système d'exploitation non supporté.$\nSMPlayer ${SMPLAYER_VERSION} requiert au minimum Windows XP et pourrait ne pas fonctionner correctement sur votre système.$\nSouhaitez-vous vraiment continuer l'installation ?"
    1515${LangFileString} Win64_Required "A 64-bit Windows operating system is required to install this software."
    16 ${LangFileString} Existing_32bitInst "An existing 32-bit installation of SMPlayer exists. You must uninstall 32-bit SMPlayer first."
    17 ${LangFileString} Existing_64bitInst "An existing 64-bit installation of SMPlayer exists. You must uninstall 64-bit SMPlayer first."
     16${LangFileString} Existing_32bitInst "Une installation de SMPlayer 32 bits existe.  Vous devez désinstaller SMPlayer 32 bits d'abord."
     17${LangFileString} Existing_64bitInst "Une installation de SMPlayer 64 bits existe.  Vous devez désinstaller SMPlayer 64 bits d'abord."
    1818
    1919; Welcome page
    20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup"
    21 ${LangFileString} WelcomePage_Text "Setup will guide you through the installation of $(^NameDA).$\r$\n$\r$\nIt is recommended that you close all instances of SMPlayer before starting setup. This will make it possible to update relevant program files without having to reboot your computer.$\r$\n$\r$\n$_CLICK"
     20${LangFileString} WelcomePage_Title "Installation de $(^NameDA)"
     21${LangFileString} WelcomePage_Text "Ce programme va vous guider à travers l'installation de $(^NameDA).$\r$\n$\r$\nIl est recommandé de quitter toutes les instances de SMPlayer avant de continuer. Ceci permet de mettre à jour les fichiers concernés sans avoir besoin de redémarrer votre ordinateur.$\r$\n$\r$\n$_CLICK"
    2222
    2323; Components Page
    24 ${LangFileString} ShortcutGroupTitle "Shortcuts"
    25 ${LangFileString} MPlayerGroupTitle "MPlayer Components"
     24${LangFileString} ShortcutGroupTitle "Raccourcis"
     25  ${LangFileString} MPlayerGroupTitle "Composants de MPlayer"
    2626
    27 ${LangFileString} Section_SMPlayer "SMPlayer (required)"
    28 ${LangFileString} Section_SMPlayer_Desc "SMPlayer, shared libraries, and documentation."
     27${LangFileString} Section_SMPlayer "SMPlayer (requis)"
     28${LangFileString} Section_SMPlayer_Desc "SMPlayer, bibliothèques partagées et documentation."
    2929
    30 ${LangFileString} Section_DesktopShortcut "Desktop"
    31 ${LangFileString} Section_DesktopShortcut_Desc "Creates a shortcut to SMPlayer on the desktop."
     30${LangFileString} Section_DesktopShortcut "Bureau"
     31${LangFileString} Section_DesktopShortcut_Desc "Crée un raccourci vers SMPlayer sur le bureau."
    3232
    33 ${LangFileString} Section_StartMenu "Start Menu"
    34 ${LangFileString} Section_StartMenu_Desc "Create a Start Menu entry for SMPlayer."
     33${LangFileString} Section_StartMenu "Menu Démarrer"
     34${LangFileString} Section_StartMenu_Desc "Crée une entrée pour SMPlayer dans le menu Démarrer."
    3535
    36 ${LangFileString} Section_MPlayer "MPlayer (required)"
    37 ${LangFileString} Section_MPlayer_Desc "MPlayer; required for playback."
     36${LangFileString} Section_MPlayer "MPlayer (requis)"
     37${LangFileString} Section_MPlayer_Desc "MPlayer; requis pour la lecture."
    3838
    39 ${LangFileString} Section_MPlayerCodecs "Binary Codecs"
    40 ${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     39${LangFileString} Section_MPlayerCodecs "Codecs binaires"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
     43${LangFileString} Section_MPlayerCodecs_Desc "Codecs optionnels pour MPlayer. (Connexion Internet requise durant l'installation.)"
     44!endif
    4145
    42 ${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     46${LangFileString} Section_MEncoder_Desc "Programme permettant d'encoder ou de convertir des flux audio et/ou vidéos supportés par MPlayer."
    4347
    44 ${LangFileString} Section_IconThemes "Icon Themes"
    45 ${LangFileString} Section_IconThemes_Desc "Additional icon themes for SMPlayer."
     48${LangFileString} Section_IconThemes "Thèmes d'icônes"
     49${LangFileString} Section_IconThemes_Desc "Thèmes d'icônes supplémentaires pour SMPlayer."
    4650
    47 ${LangFileString} Section_Translations "Languages"
    48 ${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     51${LangFileString} Section_Translations "Langues"
     52${LangFileString} Section_Translations_Desc "Fichiers de langues (autres qie l'anglais) pour SMPlayer."
    4953
    50 ${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
     55
     56${LangFileString} MPlayer_Codec_Msg "Les paquets de codecs binaires ajoutent le support pour les codecs qui ne sont pas encore nativement supportés, tels que les nouvelles variantes de RealVideo et d'autres formats peu communs.$\nRemarque : Ces codecs ne sont pas nécessaires pour lire les formats communs tels que les DVD, MPE-1/2/4, etc."
    5157
    5258; Upgrade/Reinstall Page
    53 ${LangFileString} Reinstall_Header_Text "Select Install Type"
    54 ${LangFileString} Reinstall_Header_SubText "Select Overwrite or Uninstall mode."
     59${LangFileString} Reinstall_Header_Text "Sélectionnez le type d'installation."
     60${LangFileString} Reinstall_Header_SubText "Sélectionnez le mode Remplacement ou Désinstallation."
    5561
    56 ${LangFileString} Reinstall_Msg1 "You have an existing installation of SMPlayer in the following folder:"
    57 ${LangFileString} Reinstall_Msg2 "Please select how to proceed:"
    58 ${LangFileString} Reinstall_Overwrite "Overwrite ($Inst_Type) the existing installation"
    59 ${LangFileString} Reinstall_Uninstall "Uninstall (remove) the existing installation"
    60 ${LangFileString} Reinstall_Msg3_1 "Click Start when ready to proceed."
    61 ${LangFileString} Reinstall_Msg3_2 "Click Next when ready to proceed."
    62 ${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    63 ${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     62${LangFileString} Reinstall_Msg1 "Il existe déjà une installation de SMPlayer dans le dossier suivant :"
     63${LangFileString} Reinstall_Msg2 "Veuillez sélectionner l'opération à effectuer :"
     64${LangFileString} Reinstall_Overwrite "Remplacer l'installation existante. ($Inst_Type)"
     65${LangFileString} Reinstall_Uninstall "Désinstaller l'installation existante. (Supprimer)"
     66${LangFileString} Reinstall_Msg3_1 "Cliquez sur « Démarrer » une fois prêt à continuer."
     67${LangFileString} Reinstall_Msg3_2 "Cliquez sur « Suivant » une fois prêt à continuer."
     68${LangFileString} Reinstall_Msg3_3 "Cliquez sur « Désinstaller » une fois prêt à continuer."
     69${LangFileString} Reinstall_Msg4 "Changer les paramètres d'installation."
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    65 ${LangFileString} Type_Reinstall "reinstall"
    66 ${LangFileString} Type_Downgrade "downgrade"
    67 ${LangFileString} Type_Upgrade "upgrade"
     72${LangFileString} Type_Reinstall "Réinstaller la même version."
     73${LangFileString} Type_Downgrade "Installer une version plus ancienne."
     74${LangFileString} Type_Upgrade "Installer une version plus récente."
    6875
    69 ${LangFileString} StartBtn "Start"
     76${LangFileString} StartBtn "Commencer"
    7077
    7178; Codecs Section
    72 ${LangFileString} Codecs_DL_Msg "Downloading MPlayer codecs..."
    73 ${LangFileString} Codecs_DL_Retry "MPlayer codecs were not successfully installed. Retry?"
    74 ${LangFileString} Codecs_DL_Failed "Failed to download MPlayer codecs: '$R0'."
    75 ${LangFileString} Codecs_Inst_Failed "Failed to install MPlayer codecs."
     79${LangFileString} Codecs_DL_Msg "Télécharge les codecs de MPlayer..."
     80${LangFileString} Codecs_DL_Retry "Les codecs de MPlayer n'ont pas été correctement installés. Réessayer ?"
     81${LangFileString} Codecs_DL_Failed "Échec du téléchargement des codecs de MPlayer : '$R0'."
     82${LangFileString} Codecs_Inst_Failed "Échec de l'installation des codecs de MPlayer."
    7683
    7784; Uninstaller
    78 ${LangFileString} Uninstaller_No_Admin "This installation can only be uninstalled by a user with administrator privileges."
    79 ${LangFileString} Uninstaller_Aborted "Uninstall aborted by user."
    80 ${LangFileString} Uninstaller_NotInstalled "It does not appear that SMPlayer is installed in the directory '$INSTDIR'.$\r$\nContinue anyway (not recommended)?"
    81 ${LangFileString} Uninstaller_64bitOnly "This installation can only be uninstalled on 64-bit Windows."
     85${LangFileString} Uninstaller_No_Admin "Cette installation ne peut être désinstallée que par un utilisateur ayant les privilèges d'administrateur."
     86${LangFileString} Uninstaller_Aborted "Désinstallation abandonnée par l'utilisateur."
     87${LangFileString} Uninstaller_NotInstalled "Il ne semble pas que SMPlayer soit installé dans le dossier '$INSTDIR'.$\r$\nContinuer quand même (déconseillé) ?"
     88${LangFileString} Uninstaller_64bitOnly "Cette installation ne peut être désinstallée qu'à partir de Windows 64 bits."
    8289
    8390; Vista & Later Default Programs Registration
    84 ${LangFileString} Application_Description "SMPlayer is a complete front-end for MPlayer, from basic features like playing videos, DVDs, VCDs to more advanced features like support for MPlayer filters, edl lists, and more."
     91${LangFileString} Application_Description "SMPlayer est une interface utilisateur pour MPlayer, de ses fonctionnalités les plus élémentaires (telles que lire des vidéos, des DVD, des VCD) aux plus avancées (telles que le support des filtres MPlayer, les listes EDL, etc.)."
    8592
    8693; Misc
    87 ${LangFileString} Info_Codecs_Backup "Backing up codecs from previous installation..."
    88 ${LangFileString} Info_Codecs_Restore "Restoring codecs from previous installation..."
    89 ${LangFileString} Info_Del_Files "Deleting Files..."
    90 ${LangFileString} Info_Del_Registry "Deleting Registry Keys..."
    91 ${LangFileString} Info_Del_Shortcuts "Deleting Shortcuts..."
    92 ${LangFileString} Info_Rest_Assoc "Restoring file associations..."
    93 ${LangFileString} Info_RollBack "Rolling back changes..."
    94 ${LangFileString} Info_Files_Extract "Extracting files..."
     94${LangFileString} Info_Codecs_Backup "Sauvegarde les codecs de l'installation précédente..."
     95${LangFileString} Info_Codecs_Restore "Restaure les codecs de l'installation précédente..."
     96${LangFileString} Info_Del_Files "Supprime les fichiers..."
     97${LangFileString} Info_Del_Registry "Supprime les clés de registre..."
     98${LangFileString} Info_Del_Shortcuts "Supprime les raccourcis..."
     99${LangFileString} Info_Rest_Assoc "Restaure les associations de fichier..."
     100${LangFileString} Info_RollBack "Défait les changements..."
     101${LangFileString} Info_Files_Extract "Extrait les fichiers..."
  • smplayer/trunk/setup/translations/german.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binärcodecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optionale Codecs für MPlayer. (Internetverbindung benötigt für Installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Lokalisierungen"
    4852${LangFileString} Section_Translations_Desc "Nicht englische Lokalisierungen."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "Binärcodec-Pakete werden eingesetzt für Codecs, die noch nicht nativ implementiert sind – wie neuere Varianten von RealVideo und viele ungewöhnliche Formate.$\nHinweis: Die Pakete sind nicht notwendig, um die gängigsten Formate wiederzugeben (DVD, MPEG-1/2/4, etc.)"
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/hebrew.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/hungarian.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "A bináris kodek csomagok támogatást nyújtanak natívan még nem támogatott kodekekhez, mint pl. az újabb RealVideo variánsok és sok ritka formátum.$\nNem szükségesek a legtöbb gyakori formátum lejátszásához, mint a DVD-k, MPEG-1/2/4, stb."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/italian.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Codec binari"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Codec aggiuntivi per MPlayer. (Connessione a Internet richiesta per l'installazione)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Localizzazioni"
    4852${LangFileString} Section_Translations_Desc "Localizzazioni non Inglesi."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "I pacchetti di codec binari forniscono il supporto per i codec che non sono stati ancora implementati nativamente, per esempio per le varianti di RealVideo e anche un sacco di formati poco utilizzati.$\nNota che non sono richiesti per riprodurre i formati più comuni come DVD, MPEG-1/2/4, ecc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/japanese.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "バイナリ コーデック"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "MPlayer のオプション コーデックです。(インストールにはインターネット接続が必要です)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "サポートされたオーディオまたはビデオ ストリームのエンコードや変換に使用できる MPlayer の姉妹プログラムです。"
     
    4751${LangFileString} Section_Translations "言語"
    4852${LangFileString} Section_Translations_Desc "SMPlayer の英語以外のの言語ファイルです。"
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "バイナリ コーデック パッケージは新しい RealVideo 派生や多くの希少なフォーマットなど、まだ自然には実装されていないコーデックへのサポートを追加します。$\nDVD、MPEG-1/2/4 などの最も一般的なフォーマットの再生には必要でないことにご注意ください。"
     
    6268${LangFileString} Reinstall_Msg3_3 "続行するには [アンインストール] をクリックします。"
    6369${LangFileString} Reinstall_Msg4 "インストール設定を変更する"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "再インストール"
  • smplayer/trunk/setup/translations/korean.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/norwegian.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/polish.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Kodeki"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Opcjonalne kodeki do MPlayera. (Wymagane połączenie z internetem)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "Jest to prosty koder (kompresor) filmów, zaprojektowany do kodowania filmów otwieralnych MPlayerem do innych obsługiwanych formatów"
     
    4650${LangFileString} Section_Translations "Tłumaczenia"
    4751${LangFileString} Section_Translations_Desc "Tłumaczenia na inne języki."
     52
     53${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4854
    4955${LangFileString} MPlayer_Codec_Msg "Paczka z kodekami dodaje wsparcie dla kodeków, które nie są jeszcze natywnie wspierane, np. nowsze warianty RealVideo, oraz wiele mniej znanych formatów.$\nProszę mieć na uwadze, że paczka nie jest wymagana do odtworzenia popularnych formatów, takich jak DVD, MPEG-1/2/4, itp."
     
    6167${LangFileString} Reinstall_Msg3_3 "Kliknij Odinstaluj, gdy będziesz gotów."
    6268${LangFileString} Reinstall_Msg4 "Zmiana Ustawień Instalacji"
     69${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6370
    6471${LangFileString} Type_Reinstall "zainstaluj ponownie"
  • smplayer/trunk/setup/translations/portuguese.nsh

    r142 r156  
    1818
    1919; Welcome page
    20 ${LangFileString} WelcomePage_Title "$(^NameDA) Setup"
     20${LangFileString} WelcomePage_Title "Configuração do $(^NameDA)"
    2121${LangFileString} WelcomePage_Text "Esta configuração irá ajuda-lo a instalar o $(^NameDA).$\r$\n$\r$\nÉ altamente recomendado o encerramento de quaisquer instâncias do SMPlayer antes de iniciar a instalação. Deste modo, será possível atualizar os ficheiros do programa sem ter que reiniciar o computador.$\r$\n$\r$\n$_CLICK"
    2222
     
    2929
    3030${LangFileString} Section_DesktopShortcut "Ambiente de trabalho"
    31 ${LangFileString} Section_DesktopShortcut_Desc "Cria um atalho para o SMPlayer no ambiente de trabalho."
     31${LangFileString} Section_DesktopShortcut_Desc "Cria um atalho do SMPlayer no ambiente de trabalho."
    3232
    3333${LangFileString} Section_StartMenu "Menu Iniciar"
    34 ${LangFileString} Section_StartMenu_Desc "Cria uma entrada no Menu Iniciar para o SMPlayer."
     34${LangFileString} Section_StartMenu_Desc "Cria uma entrada do SMPlayer no menu Iniciar."
    3535
    3636${LangFileString} Section_MPlayer "MPlayer (obrigatório)"
     
    3838
    3939${LangFileString} Section_MPlayerCodecs "Codificadores"
    40 ${LangFileString} Section_MPlayerCodecs_Desc "Codificadores opcionais para o MPlayer. (precisa de uma ligação à Internet)"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Os codificadores binários não são suportados por esta versão."
     42!else
     43${LangFileString} Section_MPlayerCodecs_Desc "Codificadores opcionais para o MPlayer. (Precisa de uma ligação à Internet)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "Um programa complementar ao MPlayer, utilizado para codificar ou converter emissões de vídeo e áudio."
     
    4751${LangFileString} Section_Translations "Idiomas"
    4852${LangFileString} Section_Translations_Desc "Idiomas adicionais para o SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Elimina as configurações existentes do SMPlayer."
    4955
    5056${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."
     
    6268${LangFileString} Reinstall_Msg3_3 "Clique Desinstalar para continuar."
    6369${LangFileString} Reinstall_Msg4 "Alterar definições de instalação"
     70${LangFileString} Reinstall_Msg5 "Reiniciar configurações do SMPlayer"
    6471
    6572${LangFileString} Type_Reinstall "Reinstalar"
     
    8289
    8390; Vista & Later Default Programs Registration
    84 ${LangFileString} Application_Description "O SMPlayer é uma interface gráfico para o MPlayer, com funções simples como a reprodução de vídeos, DVDs e VCDs bem como outras mais avançadas(suporte a filtros MPlayer, listas e mais)."
     91${LangFileString} Application_Description "O SMPlayer é uma interface gráfica para o MPlayer, com funções simples como a reprodução de vídeos, DVDs e VCDs bem como outras mais avançadas(suporte a filtros MPlayer, listas e mais)."
    8592
    8693; Misc
  • smplayer/trunk/setup/translations/russian.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Бинарные кодеки"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Дополнительные кодеки для MPlayer. (Для установки требуется подключение к сети Интернет)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "Сопутствующая MPlayer программа, которую можно использовать для кодирования и преобразования поддерживаемых аудио и видео потоков."
     
    4751${LangFileString} Section_Translations "Переводы"
    4852${LangFileString} Section_Translations_Desc "Языковые файлы SMPlayer, помимо английского."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "Пакеты с бинарными кодеками добавляют поддержку кодеков, не встроенных в mplayer, например, RealVideo и других нестандартных форматов.$\nОбратите внимание, что эти кодеки не нужны для воспроизведения большинства обычных форматов вроде DVD, MPEG-1/2/4 и т.п."
     
    6268${LangFileString} Reinstall_Msg3_3 "Нажмите Удалить для продолжения."
    6369${LangFileString} Reinstall_Msg4 "Изменить настройки установки"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "переустановить"
  • smplayer/trunk/setup/translations/simpchinese.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "二进制编解码器"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "适用于 MPlayer 的可选编解码器。(安装需要使用网络连接)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "MPlayer 的配套程序,可以用来编码或转换支持的音频/视频流。"
     
    4751${LangFileString} Section_Translations "语言"
    4852${LangFileString} Section_Translations_Desc "适用于 SMPlayer 的非英语语言文件。"
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "二进制编解码器包可增加对新 RealVideo 变种和很多不常见格式的支持。$\n请注意,播放像 DVD、MPEG-1/2/4 这样平时常见的格式无需安装本编解码器包。"
     
    6268${LangFileString} Reinstall_Msg3_3 "单击『卸载』继续。"
    6369${LangFileString} Reinstall_Msg4 "更改安装设置"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "重新安装"
  • smplayer/trunk/setup/translations/slovak.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/slovenian.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/spanish.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Códecs Binarios"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Códecs opcionales para MPlayer. (Se necesita conexión a internet para la instalación)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "Un programa opcional que puede ser usado para recodificar vídeos."
     
    4751${LangFileString} Section_Translations "Idiomas"
    4852${LangFileString} Section_Translations_Desc "Ficheros de idiomas para SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Borra la configuración de SMPlayer de instalaciones anteriores."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "El paquete de códecs binarios añade soporte para códecs que todavía no se han implementado nativamente, como como las nuevas variantes de RealVideo y algunos formatos poco comunes.$\nTen en cuenta de que no son necesarios para reproducir los formatos más comunes como DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Pulsa Desinstalar cuando estés listo."
    6369${LangFileString} Reinstall_Msg4 "Cambiar las opciones de instalación"
     70${LangFileString} Reinstall_Msg5 "Reiniciar la configuración de SMPlayer"
    6471
    6572${LangFileString} Type_Reinstall "reinstalar"
  • smplayer/trunk/setup/translations/thai.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
  • smplayer/trunk/setup/translations/tradchinese.nsh

    r142 r156  
    3838
    3939${LangFileString} Section_MPlayerCodecs "Binary Codecs"
     40!ifdef WIN64
     41${LangFileString} Section_MPlayerCodecs_Desc "Binary codecs are not supported in this version."
     42!else
    4043${LangFileString} Section_MPlayerCodecs_Desc "Optional codecs for MPlayer. (Internet Connection required for installation)"
     44!endif
    4145
    4246${LangFileString} Section_MEncoder_Desc "A companion program to MPlayer that can be used to encode or transform supported audio or video streams."
     
    4751${LangFileString} Section_Translations "Languages"
    4852${LangFileString} Section_Translations_Desc "Non-English language files for SMPlayer."
     53
     54${LangFileString} Section_ResetSettings_Desc "Deletes SMPlayer preferences leftover from previous installations."
    4955
    5056${LangFileString} MPlayer_Codec_Msg "The binary codec packages add support for codecs that are not yet implemented natively, like newer RealVideo variants and a lot of uncommon formats.$\nNote that they are not necessary to play most common formats like DVDs, MPEG-1/2/4, etc."
     
    6268${LangFileString} Reinstall_Msg3_3 "Click Uninstall when ready to proceed."
    6369${LangFileString} Reinstall_Msg4 "Change Installation Settings"
     70${LangFileString} Reinstall_Msg5 "Reset my SMPlayer configuration"
    6471
    6572${LangFileString} Type_Reinstall "reinstall"
Note: See TracChangeset for help on using the changeset viewer.