Added Polish NSIS prompts.
This commit is contained in:
parent
83652d2aed
commit
a570f51ba0
|
@ -0,0 +1,28 @@
|
||||||
|
;Additional text definitions for Polish
|
||||||
|
|
||||||
|
;File name of license file
|
||||||
|
LicenseLangString MUILicense ${LANG_POLISH} "..\licendoc.txt"
|
||||||
|
|
||||||
|
;Component option
|
||||||
|
LangString TITLE_SEC01 ${LANG_POLISH} "Pliki aplikacji"
|
||||||
|
LangString TITLE_SEC02 ${LANG_POLISH} "Biblioteki i elementy"
|
||||||
|
LangString TITLE_SEC03 ${LANG_POLISH} "Przykładowe projekty"
|
||||||
|
LangString TITLE_SEC04 ${LANG_POLISH} "Pliki pomocy."
|
||||||
|
|
||||||
|
;Component option descriptions
|
||||||
|
LangString DESC_SEC01 ${LANG_POLISH} "Główne pliki aplikacji."
|
||||||
|
LangString DESC_SEC02 ${LANG_POLISH} "Biblioteki i elementy są potrzebne jeżeli wcześniej nie zostały zainstalowane."
|
||||||
|
LangString DESC_SEC03 ${LANG_POLISH} "Kilka przykładowych projektów i tutoriali."
|
||||||
|
LangString DESC_SEC04 ${LANG_POLISH} "Pliki pomocy."
|
||||||
|
|
||||||
|
;General messages
|
||||||
|
LangString WINGS3D_PROMPT ${LANG_POLISH} "Aby edytować lub tworzyć modele obiektów 3D musisz zainstalować Wings3D. \
|
||||||
|
Wings3D oraz instrukcja obsługi może zostać pobrana za darmo ze strony Wings3D. Zaznacz tę opcję, aby otworzyć stronę główną Wings3D"
|
||||||
|
|
||||||
|
LangString UNINST_PROMPT ${LANG_POLISH} "Czy jesteś pewny, że chcesz usunąć $(^Name) i jego wszystkie komponenty? $\n\
|
||||||
|
Zostaną również usunięte wszystkie zmodyfikowane i nowe pliki, biblioteki i moduły znajdujące się w katalogu programu"
|
||||||
|
|
||||||
|
LangString UNINST_SUCCESS ${LANG_POLISH} "$(^Name) został pomyślnie usunięty z twojego komputera."
|
||||||
|
LangString INSTALLER_RUNNING ${LANG_POLISH} "Instalator jest już uruchomiony."
|
||||||
|
LangString UNINSTALLER_RUNNING ${LANG_POLISH} "Deinstalator jest już uruchomiony."
|
||||||
|
LangString ALREADY_INSTALLED ${LANG_POLISH} "${PRODUCT_NAME} jest już zainstalowany. Ponowna instalacja nadpisze istniejące pliki. Czy kontynuować?"
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
; General Product Description Definitions
|
; General Product Description Definitions
|
||||||
!define PRODUCT_NAME "KiCad"
|
!define PRODUCT_NAME "KiCad"
|
||||||
!define PRODUCT_VERSION "2006.09.17"
|
!define PRODUCT_VERSION "2007.05.25"
|
||||||
!define PRODUCT_WEB_SITE "http://www.lis.inpg.fr/realise_au_lis/kicad/"
|
!define PRODUCT_WEB_SITE "http://www.lis.inpg.fr/realise_au_lis/kicad/"
|
||||||
!define COMPANY_NAME ""
|
!define COMPANY_NAME ""
|
||||||
!define TRADE_MARKS ""
|
!define TRADE_MARKS ""
|
||||||
|
@ -74,9 +74,11 @@ ShowUnInstDetails hide
|
||||||
; - This must be after all page macros have been inserted
|
; - This must be after all page macros have been inserted
|
||||||
!insertmacro MUI_LANGUAGE "English" ;first language is the default language
|
!insertmacro MUI_LANGUAGE "English" ;first language is the default language
|
||||||
!insertmacro MUI_LANGUAGE "French"
|
!insertmacro MUI_LANGUAGE "French"
|
||||||
|
!insertmacro MUI_LANGUAGE "Polish"
|
||||||
|
|
||||||
!include "English.nsh"
|
!include "English.nsh"
|
||||||
!include "French.nsh"
|
!include "French.nsh"
|
||||||
|
!include "Polish.nsh"
|
||||||
|
|
||||||
; MUI end ------
|
; MUI end ------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue