Sun, 01 Nov 2009 03:34:32 +0000
Use a private GTK+ Runtime copy on Windows.
We've resisted doing this for a while, but this it has become the norm and is
the safest thing to do.
There are now two installers; an "offline" installer and an "online" installer.
* The "offline" installer will contain the GTK+ runtime (very similar to the
current default installer).
* The "online" installer will not contain GTK+, but will download it during
the installation process if it is selected(mandatory if not already present)
* Both installers have an option to download debug symbols during installation
(Not selected by default).
(Another set of updates to support the external debug symbols will follow)
| 13503 | 1 | ;; |
| 2 | ;; valencian.nsh | |
| 3 | ;; | |
|
15816
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
4 | ;; Valencian language strings for the Windows Pidgin NSIS installer. |
| 13503 | 5 | ;; Windows Code page: 1252 |
| 6 | ;; | |
| 7 | ;; Version 3 | |
|
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
|
8 | ;; Note: If translating this file, replace "!insertmacro PIDGIN_MACRO_DEFAULT_STRING" |
| 13503 | 9 | ;; with "!define". |
| 10 | ||
|
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
|
11 | ; Make sure to update the PIDGIN_MACRO_LANGUAGEFILE_END macro in |
| 13503 | 12 | ; langmacros.nsh when updating this file |
| 13 | ||
| 14 | ; Startup Checks | |
| 15 | !define INSTALLER_IS_RUNNING "L'instalador encara està eixecutant-se." | |
|
15816
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
16 | !define PIDGIN_IS_RUNNING "Una instancia de Pidgin està eixecutant-se. Ix del Pidgin i torna a intentar-ho." |
| 13503 | 17 | |
| 18 | ; 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
|
19 | !define PIDGIN_LICENSE_BUTTON "Següent >" |
|
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
|
20 | !define PIDGIN_LICENSE_BOTTOM_TEXT "$(^Name) es distribuit baix llicencia GNU General Public License (GPL). La llicencia es proporcionada per proposits informatius aci. $_CLICK" |
| 13503 | 21 | |
| 22 | ; Components Page | |
|
15816
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
23 | !define PIDGIN_SECTION_TITLE "Client Mensageria Instantanea Pidgin (necessari)" |
| 13503 | 24 | !define GTK_SECTION_TITLE "Entorn d'Eixecucio GTK+ (necessari)" |
|
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 | !define PIDGIN_SHORTCUTS_SECTION_TITLE "Enllaços directes" |
|
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
|
26 | !define PIDGIN_DESKTOP_SHORTCUT_SECTION_TITLE "Escritori" |
|
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
|
27 | !define PIDGIN_STARTMENU_SHORTCUT_SECTION_TITLE "Menu d'Inici" |
|
15816
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
28 | !define PIDGIN_SECTION_DESCRIPTION "Archius i dlls del nucleu de Pidgin" |
|
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
29 | !define GTK_SECTION_DESCRIPTION "Una ferramenta multi-plataforma GUI, usada per Pidgin" |
|
16305
b2aa56593869
Remove GTK+ theme selection from installer. The next GTK+ runtime installer will contain a theme selector utility.
Daniel Atallah <datallah@pidgin.im>
parents:
15816
diff
changeset
|
30 | |
|
15816
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
31 | !define PIDGIN_SHORTCUTS_SECTION_DESCRIPTION "Enllaços directes per a iniciar Pidgin" |
|
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
32 | !define PIDGIN_DESKTOP_SHORTCUT_DESC "Crear un enllaç directe a Pidgin en l'Escritori" |
|
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
33 | !define PIDGIN_STARTMENU_SHORTCUT_DESC "Crear una entrada per a Pidgin en Menu Inici" |
| 13503 | 34 | |
| 35 | ; GTK+ Directory Page | |
| 36 | ||
| 37 | ; Installer Finish Page | |
|
15816
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
38 | !define PIDGIN_FINISH_VISIT_WEB_SITE "Visita la pagina de Pidgin per a Windows" |
| 13503 | 39 | |
| 40 | ; GTK+ Section Prompts | |
| 41 | ||
| 42 | ; Uninstall Section Prompts | |
|
15816
6fb46b27dedc
More installer stuff.
Daniel Atallah <datallah@pidgin.im>
parents:
15805
diff
changeset
|
43 | !define un.PIDGIN_UNINSTALL_ERROR_1 "El desinstalador podria no trobar les entrades del registre de Pidgin.$\rProbablement un atre usuari instalà esta aplicacio." |
|
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
|
44 | !define un.PIDGIN_UNINSTALL_ERROR_2 "No tens permis per a desinstalar esta aplicacio." |
| 13503 | 45 | |
| 46 | ; 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
|
47 | !define PIDGIN_SPELLCHECK_SECTION_TITLE "Soport de Correccio Ortografica" |
|
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 | !define PIDGIN_SPELLCHECK_ERROR "Erro Instalant Correccio Ortografica" |
|
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 | !define PIDGIN_SPELLCHECK_DICT_ERROR "Erro Instalant Diccionari de Correccio Ortografica" |
|
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 | !define PIDGIN_SPELLCHECK_SECTION_DESCRIPTION "Soport per a Correccio Ortografica. (es requerix conexio a Internet per a fer l'instalacio)" |
| 13503 | 51 | !define ASPELL_INSTALL_FAILED "L'Instalacio fallà" |
|
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
|
52 | !define PIDGIN_SPELLCHECK_BRETON "Breto" |
|
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 | !define PIDGIN_SPELLCHECK_CATALAN "Català" |
|
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 | !define PIDGIN_SPELLCHECK_CZECH "Chec" |
|
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
|
55 | !define PIDGIN_SPELLCHECK_WELSH "Galés" |
|
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
|
56 | !define PIDGIN_SPELLCHECK_DANISH "Danes" |
|
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 | !define PIDGIN_SPELLCHECK_GERMAN "Alemà" |
|
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
|
58 | !define PIDGIN_SPELLCHECK_GREEK "Grec" |
|
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 | !define PIDGIN_SPELLCHECK_ENGLISH "Angles" |
|
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 | !define PIDGIN_SPELLCHECK_ESPERANTO "Esperanto" |
|
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 | !define PIDGIN_SPELLCHECK_SPANISH "Espanyol" |
|
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
|
62 | !define PIDGIN_SPELLCHECK_FAROESE "Feroes" |
|
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
|
63 | !define PIDGIN_SPELLCHECK_FRENCH "Frances" |
|
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 | !define PIDGIN_SPELLCHECK_ITALIAN "Italià" |
|
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 | !define PIDGIN_SPELLCHECK_DUTCH "Holandes" |
|
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
|
66 | !define PIDGIN_SPELLCHECK_NORWEGIAN "Noruec" |
|
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
|
67 | !define PIDGIN_SPELLCHECK_POLISH "Polac" |
|
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
|
68 | !define PIDGIN_SPELLCHECK_PORTUGUESE "Portugues" |
|
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
|
69 | !define PIDGIN_SPELLCHECK_ROMANIAN "Romanes" |
|
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
|
70 | !define PIDGIN_SPELLCHECK_RUSSIAN "Rus" |
|
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 | !define PIDGIN_SPELLCHECK_SLOVAK "Eslovac" |
|
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 | !define PIDGIN_SPELLCHECK_SWEDISH "Suec" |
|
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
|
73 | !define PIDGIN_SPELLCHECK_UKRAINIAN "Ucranià" |
| 13503 | 74 |