This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via 1d76272bd30ec4933a268be3a6a41c72a43a43f4 (commit) via 707ca1fb846cbbdca61c7107f4f1e44b0b089c92 (commit) from 18b39b38aed96e348b3996f7e69aed88c7c95d4f (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 1d76272bd30ec4933a268be3a6a41c72a43a43f4 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Tue Feb 5 23:59:38 2013 +0100
installer: fix dutch language.
commit 707ca1fb846cbbdca61c7107f4f1e44b0b089c92 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Tue Feb 5 23:33:43 2013 +0100
configroot: rootfile update.
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/common/configroot | 1 + src/install+setup/install/main.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-)
Difference in files: diff --git a/config/rootfiles/common/configroot b/config/rootfiles/common/configroot index 1d2fc9d..51fd388 100644 --- a/config/rootfiles/common/configroot +++ b/config/rootfiles/common/configroot @@ -59,6 +59,7 @@ var/ipfire/langs #var/ipfire/langs/es.pl #var/ipfire/langs/fr.pl #var/ipfire/langs/list +#var/ipfire/langs/nl.pl #var/ipfire/langs/pl.pl #var/ipfire/langs/ru.pl var/ipfire/logging diff --git a/src/install+setup/install/main.c b/src/install+setup/install/main.c index 04942fa..14139b5 100644 --- a/src/install+setup/install/main.c +++ b/src/install+setup/install/main.c @@ -35,6 +35,7 @@ extern char *en_tr[]; extern char *es_tr[]; extern char *de_tr[]; extern char *fr_tr[]; +extern char *nl_tr[]; extern char *pl_tr[]; extern char *ru_tr[];
@@ -45,7 +46,7 @@ int main(int argc, char *argv[])
char *langnames[] = { "Deutsch", "English", "Français", "Español", "Nederlands", "Polski", "Русский", NULL }; char *shortlangnames[] = { "de", "en", "fr", "es", "nl", "pl", "ru", NULL }; - char **langtrs[] = { de_tr, en_tr, fr_tr, es_tr, pl_tr, ru_tr, NULL }; + char **langtrs[] = { de_tr, en_tr, fr_tr, es_tr, nl_tr, pl_tr, ru_tr, NULL }; char hdletter; char harddrive[30], sourcedrive[5]; /* Device holder. */ char harddrive_info[STRING_SIZE]; /* Additional infos about target */
hooks/post-receive -- IPFire 2.x development tree