pidgin/win32/nsis/langmacros.nsh

Fri, 27 Apr 2007 21:53:20 +0000

author
Daniel Atallah <datallah@pidgin.im>
date
Fri, 27 Apr 2007 21:53:20 +0000
changeset 16602
e26771ee55df
parent 16305
b2aa56593869
child 17722
0e6a85627c70
child 18068
b6554e3c8224
permissions
-rw-r--r--

Remove unused strings cruft from the installer that were left over from when it dealt with the GTK+ theme (It seems like I already did this before). Also, make installing GTK+ optional if it is already installed.

7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
1 ;;
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
2 ;; Windows Pidgin NSIS installer language macros
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
3 ;;
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
4
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
5 !macro PIDGIN_MACRO_DEFAULT_STRING LABEL VALUE
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
6 !ifndef "${LABEL}"
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
7 !define "${LABEL}" "${VALUE}"
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
8 !ifdef INSERT_DEFAULT
10920
f68798385106 [gaim-migrate @ 12686]
Daniel Atallah <datallah@pidgin.im>
parents: 10212
diff changeset
9 !warning "${LANG} lang file missing ${LABEL}, using default..."
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
10 !endif
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
11 !endif
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
12 !macroend
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
13
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
14 !macro PIDGIN_MACRO_LANGSTRING_INSERT LABEL LANG
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
15 LangString "${LABEL}" "${LANG_${LANG}}" "${${LABEL}}"
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
16 !undef "${LABEL}"
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
17 !macroend
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
18
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
19 !macro PIDGIN_MACRO_LANGUAGEFILE_BEGIN LANG
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
20 !define CUR_LANG "${LANG}"
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
21 !macroend
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
22
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
23 !macro PIDGIN_MACRO_LANGUAGEFILE_END
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
24 !define INSERT_DEFAULT
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
25 !include "${PIDGIN_DEFAULT_LANGFILE}"
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
26 !undef INSERT_DEFAULT
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
27
15856
322e0965615f Add support for registering URI handlers to the windows installer.
Daniel Atallah <datallah@pidgin.im>
parents: 15805
diff changeset
28 ; Pidgin Language file Version 3
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
29 ; String labels should match those from the default language file.
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
30
10212
9a9c18b72773 [gaim-migrate @ 11336]
Herman Bloggs <herman@bluedigits.com>
parents: 7571
diff changeset
31 ; Startup checks
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
32 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT INSTALLER_IS_RUNNING ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
33 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_IS_RUNNING ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
34 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT GTK_INSTALLER_NEEDED ${CUR_LANG}
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
35
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
36 ; License Page
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
37 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_LICENSE_BUTTON ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
38 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_LICENSE_BOTTOM_TEXT ${CUR_LANG}
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
39
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
40 ; Components Page
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
41 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SECTION_TITLE ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
42 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT GTK_SECTION_TITLE ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
43 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SHORTCUTS_SECTION_TITLE ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
44 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_DESKTOP_SHORTCUT_SECTION_TITLE ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
45 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_STARTMENU_SHORTCUT_SECTION_TITLE ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
46 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SECTION_DESCRIPTION ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
47 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT GTK_SECTION_DESCRIPTION ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
48 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SHORTCUTS_SECTION_DESCRIPTION ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
49 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_DESKTOP_SHORTCUT_DESC ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
50 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_STARTMENU_SHORTCUT_DESC ${CUR_LANG}
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
51
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
52 ; GTK+ Directory Page
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
53 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT GTK_UPGRADE_PROMPT ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
54 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT GTK_WINDOWS_INCOMPATIBLE ${CUR_LANG}
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
55
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
56 ; Installer Finish Page
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
57 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_FINISH_VISIT_WEB_SITE ${CUR_LANG}
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
58
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
59 ; Pidgin Section Prompts and Texts
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
60 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_UNINSTALL_DESC ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
61 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_PROMPT_CONTINUE_WITHOUT_UNINSTALL ${CUR_LANG}
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
62
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
63 ; GTK+ Section Prompts
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
64 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT GTK_INSTALL_ERROR ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
65 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT GTK_BAD_INSTALL_PATH ${CUR_LANG}
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
66
15856
322e0965615f Add support for registering URI handlers to the windows installer.
Daniel Atallah <datallah@pidgin.im>
parents: 15805
diff changeset
67 ; URI Handler section
322e0965615f Add support for registering URI handlers to the windows installer.
Daniel Atallah <datallah@pidgin.im>
parents: 15805
diff changeset
68 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT URI_HANDLERS_SECTION_TITLE ${CUR_LANG}
322e0965615f Add support for registering URI handlers to the windows installer.
Daniel Atallah <datallah@pidgin.im>
parents: 15805
diff changeset
69
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
70 ; Uninstall Section Prompts
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
71 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT un.PIDGIN_UNINSTALL_ERROR_1 ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
72 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT un.PIDGIN_UNINSTALL_ERROR_2 ${CUR_LANG}
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
73
11578
70230c5dded2 [gaim-migrate @ 13847]
Daniel Atallah <datallah@pidgin.im>
parents: 10920
diff changeset
74 ; Spellcheck Section Prompts
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
75 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_SECTION_TITLE ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
76 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_ERROR ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
77 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_DICT_ERROR ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
78 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_SECTION_DESCRIPTION ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
79 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT ASPELL_INSTALL_FAILED ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
80 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_BRETON ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
81 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_CATALAN ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
82 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_CZECH ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
83 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_WELSH ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
84 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_DANISH ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
85 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_GERMAN ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
86 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_ENGLISH ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
87 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_GREEK ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
88 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_ESPERANTO ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
89 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_SPANISH ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
90 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_FAROESE ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
91 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_FRENCH ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
92 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_ITALIAN ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
93 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_DUTCH ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
94 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_NORWEGIAN ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
95 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_POLISH ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
96 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_PORTUGUESE ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
97 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_ROMANIAN ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
98 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_RUSSIAN ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
99 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_SLOVAK ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
100 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_SWEDISH ${CUR_LANG}
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
101 !insertmacro PIDGIN_MACRO_LANGSTRING_INSERT PIDGIN_SPELLCHECK_UKRAINIAN ${CUR_LANG}
11578
70230c5dded2 [gaim-migrate @ 13847]
Daniel Atallah <datallah@pidgin.im>
parents: 10920
diff changeset
102
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
103 !undef CUR_LANG
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
104 !macroend
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
105
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
106 !macro PIDGIN_MACRO_INCLUDE_LANGFILE LANG FILE
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
107 !insertmacro PIDGIN_MACRO_LANGUAGEFILE_BEGIN "${LANG}"
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
108 !include "${FILE}"
15805
a80eb333bae9 Updates to the win32 installer. It isn't complete yet, but this a good saving point.
Daniel Atallah <datallah@pidgin.im>
parents: 15435
diff changeset
109 !insertmacro PIDGIN_MACRO_LANGUAGEFILE_END
7571
cf6c03a3e508 [gaim-migrate @ 8187]
Herman Bloggs <herman@bluedigits.com>
parents:
diff changeset
110 !macroend

mercurial