[dia] Added Spanish locale generation for NSIS installer.



commit 620e3ea3199daf3b10959ab704ad0435a7f9cb2a
Author: Steffen Macke <sdteffen sdteffen de>
Date:   Thu Jan 27 22:38:55 2011 +0100

    Added Spanish locale generation for NSIS installer.

 installer/win32/locale/makefile.msc |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)
---
diff --git a/installer/win32/locale/makefile.msc b/installer/win32/locale/makefile.msc
index 74ad985..237905b 100755
--- a/installer/win32/locale/makefile.msc
+++ b/installer/win32/locale/makefile.msc
@@ -2,6 +2,7 @@ GENNSH = ..\gennsh
 ICONV = iconv
 
 LOCALEFILES = \
+	es.nsh \
 	eu.nsh \
 	fi.nsh \
 	gl.nsh \
@@ -13,12 +14,16 @@ UTF8FILES = \
 	finnish.nsh \
 	galego.nsh \
 	korean.nsh \
-	chinese.nsh
+	chinese.nsh \
+	spanish.nsh
 	
 all: $(LOCALEFILES)	
 
 clean:
 	del $(LOCALEFILES) $(UTF8FILES)
+
+es.nsh: spanish.nsh
+	$(ICONV) -f UTF-8 -t ISO-8859-1 spanish.nsh > $@
 	
 eu.nsh: basque.nsh
 	$(ICONV) -f UTF-8 -t ISO-8859-1  basque.nsh  > $@
@@ -51,6 +56,10 @@ ko.nsh: korean.nsh
 chinese.nsh:	
 	SET LANG=zh_CN
 	$(GENNSH) > $@
+
+spanish.nsh:
+	SET LANG=es
+	$(GENNSH) > $@
 	
 zh.nsh: chinese.nsh	
 	$(ICONV) -f UTF-8 -t GB2312 chinese.nsh > $@



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]