Select Keyboard

Here you can set the keyboard layout you wish to use with Mageia​​.

A suggested keyboard layout (highlighted), has been chosen for you based upon your previously selected language and timezone choices.


CC BY-SA 3.0
Uploaded on 02/07/2019
loading table of contents...
ask_before_blanking://) {
+ $in->ask_okcancel(_("Error"),
[_("I can't read your partition table, it's too corrupted for me :(
I'll try to go on blanking bad partitions"), $err]);
- } else {
- $in->ask_warn('', $err);
- 1;
- }
- };
+ } else {
+ $in->ask_warn('', $err);
+ 1;
+ }
+ };
+ } else { fsedit::empty_all_hds() }
+};
$SIG{__DIE__} = sub { my $m = chomp_($_[0]); log::l("ERROR: $m") };
my $fstab = [ fsedit::get_all_fstab($all_hds) ];
@@ -85,10 +95,17 @@ fs::get_raw_hds('', $all_hds);
fs::merge_info_from_fstab([ fsedit::get_really_all_fstab($all_hds) ]);
fs::merge_info_from_mtab([ fsedit::get_really_all_fstab($all_hds) ]);
-if ($ENV{TEST_DEFAULT_OPTIONS}) {
- fs::set_all_default_options($all_hds);
- fs::set_removable_mntpoints($all_hds);
+$all_hds->{current_fstab} = fs::fstab_to_string($all_hds);
+
+if ($type eq 'hd') {
+ diskdrake::interactive::main($in, $all_hds);
+} elsif ($type eq 'removable') {
+ require diskdrake::removable;
+ diskdrake::removable::main($in, $all_hds);
+} else {
+ $in->ask_warn('', "Sorry only a gtk frontend is available") if !$in->isa('interactive_gtk');
+ require diskdrake::smbnfs_gtk;
+ diskdrake::smbnfs_gtk::main($in, $all_hds, $type);
}
-diskdrake_interactive::main($in, $all_hds);
$in->exit(0);