mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-05-02 00:02:55 +02:00
Translations fuer den Installer gemacht
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@782 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
@@ -332,8 +332,8 @@ int main(int argc, char *argv[])
|
||||
goto EXIT;
|
||||
|
||||
if (!unattended) {
|
||||
sprintf(message, "(TR) Bitte waehlen Sie ihr Dateisystem aus:");
|
||||
rc = newtWinMenu("(TR) Dateisystemauswahl", message,
|
||||
sprintf(message, ctr[TR_CHOOSE_FILESYSTEM]);
|
||||
rc = newtWinMenu( ctr[TR_CHOOSE_FILESYSTEM], message,
|
||||
50, 5, 5, 6, fstypes, &fstype, ctr[TR_OK],
|
||||
ctr[TR_CANCEL], NULL);
|
||||
} else {
|
||||
@@ -572,16 +572,16 @@ int main(int argc, char *argv[])
|
||||
replace("/harddisk/boot/grub/grub.conf", "MOUNT", "ro");
|
||||
} else if (fstype == EXT3) {
|
||||
snprintf(commandstring, STRING_SIZE, "tune2fs -j %s3", hdparams.devnode_part);
|
||||
if (runcommandwithstatus(commandstring, "(TR) Creating journal for ext3..."))
|
||||
if (runcommandwithstatus(commandstring, ctr[TR_JOURNAL_EXT3]))
|
||||
{
|
||||
errorbox("(TR) Unable to create journal. Going back to ext2.");
|
||||
errorbox(ctr[TR_JOURNAL_ERROR]);
|
||||
replace("/harddisk/etc/fstab", "FSTYPE", "ext2");
|
||||
goto NOJOURNAL;
|
||||
}
|
||||
snprintf(commandstring, STRING_SIZE, "tune2fs -j %s4", hdparams.devnode_part);
|
||||
if (runcommandwithstatus(commandstring, "(TR) Creating journal for ext3..."))
|
||||
if (runcommandwithstatus(commandstring, ctr[TR_JOURNAL_EXT3]))
|
||||
{
|
||||
errorbox("(TR) Unable to create journal. Going back to ext2.");
|
||||
errorbox(ctr[TR_JOURNAL_ERROR]);
|
||||
replace("/harddisk/etc/fstab", "FSTYPE", "ext2");
|
||||
goto NOJOURNAL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user