Changeset 379:476e04537509


Ignore:
Timestamp:
12/18/12 13:53:40 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Added Hungarian languge support for the installer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mlx.nsi

    r376 r379  
    5050;Pages
    5151
    52 
    5352  !insertmacro MUI_PAGE_LICENSE "license.txt"
    5453  Page custom optionsPage ;optionsPageLeave
     
    6968
    7069  Function optionsPage
    71      !insertmacro MUI_HEADER_TEXT "Installation Options" "Choose the options for the installation"
     70     !insertmacro MUI_HEADER_TEXT $(InstallOpts_Title) $(InstallOpts_SubTitle)
    7271
    7372     nsDialogs::Create 1018
     
    7877     ${Endif}
    7978
    80      ${NSD_CreateLabel} 0 0 100% 32u "If you select the option below, the program will be installed in a way that it can be used besides another, already existing installation. Its default configuration will be such that it does not conflict with another logger running as a primary one. Normally, you should leave this unchecked."
     79     ${NSD_CreateLabel} 0 0 100% 32u $(InstallOpts_SecondaryExpl)
    8180     Pop $Variable
    8281
    83      ${NSD_CreateCheckBox} 12 62 100% 12u "Install as a secondary copy"
     82     ${NSD_CreateCheckBox} 12 62 100% 12u $(InstallOpts_Secondary)
    8483     Pop $Secondary
    8584     ${NSD_SetState} $Secondary $Secondary_State
     
    106105
    107106  !insertmacro MUI_LANGUAGE "English"
     107  !insertmacro MUI_LANGUAGE "Hungarian"
    108108
    109109;--------------------------------
     
    146146
    147147  ;Language strings
    148   LangString DESC_SecMLX ${LANG_ENGLISH} "MAVA Logger X."
     148  LangString DESC_SecMLX ${LANG_ENGLISH} "The MAVA Logger X application itself."
     149  LangString DESC_SecMLX ${LANG_HUNGARIAN} "Maga a MAVA Logger X alkalmazás."
    149150
    150151  ;Assign language strings to sections
     
    152153    !insertmacro MUI_DESCRIPTION_TEXT ${SecMLX} $(DESC_SecMLX)
    153154  !insertmacro MUI_FUNCTION_DESCRIPTION_END
     155
     156  LangString InstallOpts_Title ${LANG_ENGLISH} "Installation Options"
     157  LangString InstallOpts_Title ${LANG_HUNGARIAN} "Telepítési beállítások"
     158
     159  LangString InstallOpts_SubTitle ${LANG_ENGLISH} "Choose the options for the installation"
     160  LangString InstallOpts_SubTitle ${LANG_HUNGARIAN} "Válassza ki a telepítés beállításait"
     161
     162  LangString InstallOpts_SecondaryExpl ${LANG_ENGLISH} "If you select the option below, the program will be installed in a way that it can be used besides another, already existing installation. Its default configuration will be such that it does not conflict with another logger running as a primary one. Normally, you should leave this unchecked."
     163  LangString InstallOpts_SecondaryExpl ${LANG_HUNGARIAN} "Az alábbi opció kijelölésével a programot úgy fogjuk telepíteni, hogy azt egy másik mellett, azzal egyidejûen lehessen használni. Az alapértelmezett konfigurációja elkerüli a másik futó loggerrel való ütközést. Általában azonban ezt az opciót nem kell kijelölni."
     164
     165  LangString InstallOpts_Secondary ${LANG_ENGLISH} "Install as a secondary copy"
     166  LangString InstallOpts_Secondary ${LANG_HUNGARIAN} "Telepítés másodlagos példányként"
    154167
    155168;--------------------------------
Note: See TracChangeset for help on using the changeset viewer.