summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig/main.pm
blob: 1e11b2b49c9937ee362cf286998af5ca4c92860b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package Xconfig::main; # $Id$

use diagnostics;
use strict;

use Xconfig::monitor;
use Xconfig::card;
use Xconfig::resolution_and_depth;
use Xconfig::various;
use Xconfig::screen;
use Xconfig::test;
use common;
use any;


sub configure_monitor {
    my ($in, $raw_X) = @_;

    my $before = $raw_X->prepare_write;
    Xconfig::monitor::configure($in, $raw_X) or return;
    if ($raw_X->prepare_write ne $before) {
	$raw_X->write;
	'config_changed';
    } else {
	'';
    }
}

sub configure_resolution {
    my ($in, $raw_X) = @_;

    my $card = Xconfig::card::from_raw_X($raw_X);
    my $monitor = Xconfig::monitor::from_raw_X($raw_X);
    my $before = $raw_X->prepare_write;
    Xconfig::resolution_and_depth::configure($in, $raw_X, $card, $monitor) or return;
    if ($raw_X->prepare_write ne $before) {
	$raw_X->write;
	'config_changed';
    } else {
	'';
    }
}


sub configure_everything_auto_install {
    my ($raw_X, $do_pkgs, $old_X, $options) = @_;
    my $X = {};
    $X->{monitor} = Xconfig::monitor::configure_auto_install($raw_X, $old_X) or return;
    $options->{VideoRam_probed} = $X->{monitor}{VideoRam_probed};
    $X->{card} = Xconfig::card::configure_auto_install($raw_X, $do_pkgs, $old_X, $options) or return;
    Xconfig::screen::configure($raw_X, $X->{card}) or return;
    $X->{resolution} = Xconfig::resolution_and_depth::configure_auto_install($raw_X, $X->{card}, $X->{monitor}, $old_X);

    &write($raw_X, $X);

    Xconfig::various::runlevel(exists $old_X->{xdm} && !$old_X->{xdm} ? 3 : 5);
    'config_changed';
}

sub configure_everything {
    my ($in, $raw_X, $do_pkgs, $auto, $options) = @_;
    my $X = {};
    my $ok = 1;
    $ok &&= $X->{monitor} = Xconfig::monitor::configure($in, $raw_X, $auto);
    $options->{VideoRam_probed} = $X->{monitor}{VideoRam_probed};
    $ok &&= $X->{card} = Xconfig::card::configure($in, $raw_X, $do_pkgs, $auto, $options);
    $ok &&= Xconfig::screen::configure($raw_X, $X->{card});
    $ok &&= $X->{resolution} = Xconfig::resolution_and_depth::configure($in, $raw_X, $X->{card}, $X->{monitor}, $auto);
    $ok &&= Xconfig::test::test($in, $raw_X, $X->{card}, '', 'skip_badcard') if !$auto;

    if (!$ok) {
	return if $auto;
	($ok) = configure_chooser_raw($in, $raw_X, $do_pkgs, $options, $X, 1);
    }
    $X->{various} ||= Xconfig::various::various($in, $X->{card}, $options, $auto);

    $ok = may_write($in, $raw_X, $X, $ok);
    
    $ok && 'config_changed';
}

sub configure_chooser_raw {
    my ($in, $raw_X, $do_pkgs, $options, $X, $b_modified) = @_;

    my %texts;

    my $update_texts = sub {
	$texts{card} = $X->{card} && $X->{card}{BoardName} || N("Custom");
	$texts{monitor} = $X->{monitor} && $X->{monitor}{ModelName} || N("Custom");
	$texts{resolution} = Xconfig::resolution_and_depth::to_string($X->{resolution});

	$texts{$_} =~ s/(.{20}).*/$1.../ foreach keys %texts; #- ensure not too long
    };
    $update_texts->();

    my $may_set = sub {
	my ($field, $val) = @_;
	if ($val) {
	    $X->{$field} = $val;
	    $X->{"modified_$field"} = 1;
	    $b_modified = 1;
	    $update_texts->();

	    if (member($field, 'card', 'monitor')) {
		Xconfig::screen::configure($raw_X, $X->{card});
		$raw_X->set_resolution($X->{resolution}) if $X->{resolution};
	    }
	}
    };

    my $ok;
    $in->ask_from_({ interactive_help_id => 'configureX_chooser',
		     if_($::isStandalone, ok => N("Quit")) }, 
		   [
		    { label => N("Graphic Card"), val => \$texts{card}, clicked => sub { 
			  $may_set->('card', Xconfig::card::configure($in, $raw_X, $do_pkgs, 0, $options));
		      } },
		    { label => N("Monitor"), val => \$texts{monitor}, clicked => sub { 
			  $may_set->('monitor', Xconfig::monitor::configure($in, $raw_X));
		      } },
		    { label => N("Resolution"), val => \$texts{resolution}, disabled => sub { !$X->{card} || !$X->{monitor} },
		      clicked => sub {
			  $may_set->('resolution', Xconfig::resolution_and_depth::configure($in, $raw_X, $X->{card}, $X->{monitor}));
		      } },
		        if_(Xconfig::card::check_bad_card($X->{card}) || $::isStandalone,
		     { val => N("Test"), disabled => sub { !$X->{card} || !$X->{monitor} },
		       clicked => sub { 
			  $ok = Xconfig::test::test($in, $raw_X, $X->{card}, 'auto', 0);
		      } },
			),
		    { val => N("Options"), clicked => sub {
			  Xconfig::various::various($in, $X->{card}, $options);
			  $X->{various} = 'done';
		      } },
		   ]);
    $ok, $b_modified;
}

sub configure_chooser {
    my ($in, $raw_X, $do_pkgs, $options) = @_;

    my $X = {
	card => scalar eval { Xconfig::card::from_raw_X($raw_X) },
	monitor => $raw_X->get_monitors && Xconfig::monitor::from_raw_X($raw_X),
	resolution => scalar eval { $raw_X->get_resolution },
    };
    my $before = $raw_X->prepare_write;
    my ($ok) = configure_chooser_raw($in, $raw_X, $do_pkgs, $options, $X);

    if ($raw_X->prepare_write ne $before) {
	may_write($in, $raw_X, $X, $ok) or return;
	'config_changed';
    } else {
	'';
    }
}

sub configure_everything_or_configure_chooser {
    my ($in, $options, $auto, $o_keyboard, $o_mouse) = @_;
    my $raw_X = Xconfig::xfree->read;
    my $default = Xconfig::default::configure($o_keyboard, $o_mouse);
    my $has_conf = @{$raw_X->{xfree3}} || @{$raw_X->{xfree4}};
    $raw_X->{xfree3} = $default->{xfree3} if !@{$raw_X->{xfree3}};
    $raw_X->{xfree4} = $default->{xfree4} if !@{$raw_X->{xfree4}};

    return $raw_X if $has_conf && $auto;

    if ($has_conf) {
	Xconfig::main::configure_chooser($in, $raw_X, $in->do_pkgs, $options) or return;
    } else {
	Xconfig::main::configure_everything($in, $raw_X, $in->do_pkgs, $auto, $options) or return;
    }
    $raw_X;
}


sub may_write {
    my ($in, $raw_X, $X, $ok) = @_;

    $ok ||= $in->ask_yesorno('', N("Keep the changes?
The current configuration is:

%s", Xconfig::various::info($raw_X, $X->{card})), 1);

    &write($raw_X, $X) if $ok;
    $ok;
}

sub write {
    my ($raw_X, $X) = @_;
    export_to_install_X($X);
    $raw_X->write;
    Xconfig::various::check_XF86Config_symlink();
    symlinkf "../..$X->{card}{prog}", "$::prefix/etc/X11/X" if $X->{card}{server} !~ /Xpmac/;
}


sub export_to_install_X {
    my ($X) = @_;

    $::isInstall or return;

    $::o->{X}{resolution_wanted} = $X->{resolution}{X};
    $::o->{X}{default_depth} = $X->{resolution}{Depth};
    $::o->{X}{bios_vga_mode} = $X->{resolution}{bios};
    $::o->{X}{monitor} = $X->{monitor} if $X->{monitor}{manually_chosen} && $X->{monitor}{vendor} ne "Plug'n Play";
    $::o->{X}{card} = $X->{monitor} if $X->{card}{manually_chosen};
    $::o->{X}{Xinerama} = 1 if $X->{card}{Xinerama};
}


#- most usefull XFree86-4.0.1 server options. Default values is the first ones.
our @options_serverflags = (
			'DontZap'                 => [ "Off", "On" ],
			'DontZoom'                => [ "Off", "On" ],
			'DisableVidModeExtension' => [ "Off", "On" ],
			'AllowNonLocalXvidtune'   => [ "Off", "On" ],
			'DisableModInDev'         => [ "Off", "On" ],
			'AllowNonLocalModInDev'   => [ "Off", "On" ],
			'AllowMouseOpenFail'      => [ "False", "True" ],
			'VTSysReq'                => [ "Off", "On" ],
			'BlankTime'               => [ "10", "5", "3", "15", "30" ],
			'StandByTime'             => [ "20", "10", "6", "30", "60" ],
			'SuspendTime'             => [ "30", "15", "9", "45", "90" ],
			'OffTime'                 => [ "40", "20", "12", "60", "120" ],
			'Pixmap'                  => [ "32", "24" ],
			'PC98'                    => [ "auto-detected", "False", "True" ],
			'NoPM'                    => [ "False", "True" ],
);

1;
class='ctx'> msgid "Default"
msgstr ""
@@ -1188,7 +1188,7 @@ msgstr ""
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903 printer/printerdrake.pm:3904 printer/printerdrake.pm:3905 printer/printerdrake.pm:5162 standalone/drakTermServ:294 standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497 standalone/drakroam:242 standalone/net_monitor:118 standalone/printerdrake:547
+#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903 printer/printerdrake.pm:3904 printer/printerdrake.pm:3905 printer/printerdrake.pm:5162 standalone/drakTermServ:294 standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497 standalone/drakroam:242 standalone/net_monitor:118 standalone/printerdrake:547
#, c-format
msgid "Close"
msgstr ""
@@ -1759,12 +1759,12 @@ msgstr ""
msgid "Server: "
msgstr ""
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521 diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521 diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr ""
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr ""
@@ -1844,7 +1844,7 @@ msgstr ""
msgid "Windows"
msgstr ""
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr ""
@@ -1915,34 +1915,34 @@ msgstr ""
msgid "Continue anyway?"
msgstr ""
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr ""
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr ""
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr ""
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2090,12 +2090,12 @@ msgstr ""
msgid "Start sector: "
msgstr ""
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr ""
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr ""
@@ -2227,220 +2227,232 @@ msgstr ""
msgid "LVM name?"
msgstr ""
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr ""
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr ""
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr ""
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr ""
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr ""
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr ""
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr ""
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr ""
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr ""
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, c-format
msgid "chunk size in KiB"
msgstr ""
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr ""
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr ""
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr ""
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr ""
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr ""
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr ""
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr ""
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr ""
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Devfs name: "
msgstr ""
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid ""
"DOS drive letter: %s (just a guess)\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198 diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205 diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr ""
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr ""
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid ""
"Start: sector %s\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr ""
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ""
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid ""
"Cylinder %d to %d\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid ""
"Number of logical extents: %d\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid ""
"Formatted\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid ""
"Not formatted\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid ""
"Mounted\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid ""
"RAID %s\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2448,7 +2460,7 @@ msgid ""
""
msgstr ""
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2456,33 +2468,33 @@ msgid ""
""
msgstr ""
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid ""
"Level %s\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, c-format
msgid ""
"Chunk size %d KiB\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid ""
"RAID-disks %s\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr ""
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2492,7 +2504,7 @@ msgid ""
""
msgstr ""
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2502,82 +2514,82 @@ msgid ""
""
msgstr ""
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr ""
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid ""
"Size: %s\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid ""
"Geometry: %s cylinders, %s heads, %s sectors\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr ""
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid ""
"LVM-disks %s\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid ""
"Partition table type: %s\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid ""
"on channel %d id %d\n"
""
msgstr ""
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr ""
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013 standalone/drakconnect:419
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013 standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr ""
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017 standalone/drakvpn:1102
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017 standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
msgstr ""
@@ -3160,7 +3172,7 @@ msgstr ""
msgid "Trouble shooting"
msgstr ""
-#: harddrake/sound.pm:269 keyboard.pm:391 lang.pm:1078 network/ndiswrapper.pm:95 network/netconnect.pm:458 printer/printerdrake.pm:1206 printer/printerdrake.pm:2230 printer/printerdrake.pm:2316 printer/printerdrake.pm:2362 printer/printerdrake.pm:2429 printer/printerdrake.pm:2464 printer/printerdrake.pm:2773 printer/printerdrake.pm:2780 printer/printerdrake.pm:3740 printer/printerdrake.pm:4069 printer/printerdrake.pm:4189 printer/printerdrake.pm:5310 standalone/drakTermServ:325 standalone/drakTermServ:1135 standalone/drakTermServ:1196 standalone/drakTermServ:1861 standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125 standalone/drakclock:224 standalone/drakconnect:969 standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478 standalone/scannerdrake:51 standalone/scannerdrake:940
+#: harddrake/sound.pm:269 keyboard.pm:391 lang.pm:1078 network/ndiswrapper.pm:95 network/netconnect.pm:458 printer/printerdrake.pm:1206 printer/printerdrake.pm:2230 printer/printerdrake.pm:2316 printer/printerdrake.pm:2362 printer/printerdrake.pm:2429 printer/printerdrake.pm:2464 printer/printerdrake.pm:2773 printer/printerdrake.pm:2780 printer/printerdrake.pm:3740 printer/printerdrake.pm:4069 printer/printerdrake.pm:4189 printer/printerdrake.pm:5310 standalone/drakTermServ:325 standalone/drakTermServ:1135 standalone/drakTermServ:1196 standalone/drakTermServ:1861 standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125 standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27 standalone/harddrake2:478 standalone/scannerdrake:51 standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr ""
@@ -5821,17 +5833,17 @@ msgstr ""
msgid "Choose a file"
msgstr ""
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514 standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514 standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347 standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr ""
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230 standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr ""
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202 standalone/drakups:303 standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238 standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303 standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr ""
@@ -7869,19 +7881,24 @@ msgstr ""
msgid "Welcome to %s"
msgstr ""
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid ""
"Remove the logical volumes first\n"
""
msgstr ""
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -8851,7 +8868,7 @@ msgstr ""
msgid "IP parameters"
msgstr ""
-#: network/netconnect.pm:582 network/netconnect.pm:890 printer/printerdrake.pm:460 standalone/drakconnect:109 standalone/drakconnect:316 standalone/drakconnect:878 standalone/drakups:286
+#: network/netconnect.pm:582 network/netconnect.pm:890 printer/printerdrake.pm:460 standalone/drakconnect:109 standalone/drakconnect:316 standalone/drakconnect:878 standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr ""
@@ -9286,7 +9303,7 @@ msgstr ""
msgid "Host name (optional)"
msgstr ""
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr ""
@@ -15043,7 +15060,7 @@ msgstr ""
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr ""
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116 standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74 standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr ""
@@ -15924,7 +15941,7 @@ msgstr ""
msgid "When"
msgstr ""
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr ""
@@ -16674,17 +16691,17 @@ msgstr ""
msgid "Drakbackup"
msgstr ""
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190 standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69 standalone/printerdrake:138 standalone/printerdrake:139 standalone/printerdrake:140
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69 standalone/printerdrake:138 standalone/printerdrake:139 standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr ""
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr ""
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192 standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75 standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr ""
@@ -16793,7 +16810,7 @@ msgstr ""
msgid "Synchronization tool"
msgstr ""
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr ""
@@ -16875,7 +16892,7 @@ msgstr ""
msgid "Kernel:"
msgstr ""
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -16883,17 +16900,17 @@ msgid ""
"Things useful to include in your report are the output of lspci, kernel version, and /proc/cpuinfo."
msgstr ""
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr ""
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr ""
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr ""
@@ -17109,7 +17126,7 @@ msgstr ""
msgid "Media class"
msgstr ""
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr ""
@@ -17322,119 +17339,6 @@ msgstr ""
msgid "You are going to close all running programs and lose your current session. Are you really sure that you want to restart the dm service?"
msgstr ""
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr ""
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr ""
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr ""
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr ""
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr ""
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr ""
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr ""
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr ""
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr ""
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr ""
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr ""
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr ""
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr ""
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr ""
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr ""
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr ""
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr ""
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr ""
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid ""
-"The creation of the boot floppy has been successfully completed \n"
-""
-msgstr ""
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -17994,6 +17898,229 @@ msgid ""
""
msgstr ""
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP (sub-)network simultaneously. for example, either `/255.255.252.0' or `/22' appended to the network base address result.\n"
+""
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-exported public FTP directories, news spool directories, etc. The opposite option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous account.\n"
+""
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port less than IPPORT_RESERVED (1024). This option is on by default. To turn it off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to disallow any request which changes the filesystem. This can also be made explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to requests before any changes made by that request have been committed to stable storage (e.g. disc drive).\n"
+""
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -20622,6 +20749,11 @@ msgstr ""
msgid "FPU"
msgstr ""
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr ""
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -21915,35 +22047,35 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr ""
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid ""
"Some devices in the \"%s\" hardware class were removed:\n"
""
msgstr ""
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid ""
"- %s was removed\n"
""
msgstr ""
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid ""
"Some devices were added: %s\n"
""
msgstr ""
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid ""
"- %s was added\n"
""
msgstr ""
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 6de75be85..4f2a6eeda 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-af\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -223,12 +223,13 @@ msgstr "Net 'n oomblik, spoor en konfigureer us toestelle"
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -313,8 +314,8 @@ msgid "No CDROM support"
msgstr "Geen CDROM ondersteunig"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Lees noukeurig!"
@@ -671,11 +672,11 @@ msgstr "Kanselleer"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Hulp"
@@ -823,7 +824,7 @@ msgstr ""
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Wag asb."
@@ -939,7 +940,7 @@ msgstr ""
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Probeer asb. weer"
@@ -1072,8 +1073,7 @@ msgstr "Netwerkkoppelvlak"
msgid "Label"
msgstr "Naam"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Verstek"
@@ -1419,7 +1419,7 @@ msgstr "Loods userdrake"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -2073,12 +2073,12 @@ msgid "Server: "
msgstr "Bediener: "
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Hegpunt: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
@@ -2165,7 +2165,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Leeg"
@@ -2240,34 +2240,34 @@ msgstr "Skakel oor na kundige gebruiksvlak"
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisielys-veranderinge te aktiveer"
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2422,12 +2422,12 @@ msgstr "Skep 'n nuwe partisie"
msgid "Start sector: "
msgstr "Begin-sektor: "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Lêerstelsel-tipe: "
@@ -2572,97 +2572,109 @@ msgstr "Kies 'n bestaande LVM om by toe te voeg"
msgid "LVM name?"
msgstr "LVM naam?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Teruglus"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Teruglus lêernaam:"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "Voorsien 'n lêernaam"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Lêer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "Lêer bestaan alreeds. Moet dit gebruik word?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "Hegopsies:"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "Verskeie"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "toestel"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "vlak"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "blokgrootte"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "Watter soort partisie?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Die partisielys op skyf %s gaan opdateer word!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "Verskuif lêers na nuwe partisie toe"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "Versteek lêers"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2671,108 +2683,108 @@ msgstr ""
"Lêergids %s bevat alreeds data\n"
"(%s)"
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "Verskuif lêers na nuwe partisie toe"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "Kopieer %s"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "Verwyder %s"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "partisie %s staan bekens as %s"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Toestel: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, fuzzy, c-format
msgid "Devfs name: "
msgstr "Rekenaarnaam: "
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Tipe:"
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Naam: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Geheg\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2781,7 +2793,7 @@ msgstr ""
"Teruglus lêer(s):\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2790,27 +2802,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleinDES, nie LILO s'n nie)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Blokgrootte %s\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lêernaam: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2823,7 +2835,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2835,75 +2847,75 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Lees-alleen"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Info:"
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipe Partisielys: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "Enkripsie-sleutel van lêerstelsel"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Kies 'n enkripsie-sleutel vir u lêerstelsel"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie enkripsie-sleutel is te eenvoudig. (moet ten minste %d karakters "
"bevat.)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "Die enkripsie-sleutels stem nie ooreen nie."
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Enkripsie-sleutel"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "Enkripsie-sleutel (nogmaals)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3565,9 +3577,9 @@ msgstr "Probleemoplossing"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Waarskuwing"
@@ -7271,22 +7283,24 @@ msgid "Choose a file"
msgstr "Kies 'n lêer"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Voeg by"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Verander"
#
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Verwyder"
@@ -9345,17 +9359,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10399,7 +10418,7 @@ msgstr "IP-Parameters"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP-adres"
@@ -10905,7 +10924,7 @@ msgid "Host name (optional)"
msgstr "Rekenaarnaam (opsioneel)"
#
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Rekenaarnaam"
@@ -18195,7 +18214,9 @@ msgstr "'/etc/hosts.allow' en 'etc'hosts.deny' is alreeds gekonfigureer"
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Konfigurasie het verander - herbegin 'clusterfs/dhcpd'?"
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "Fout!"
@@ -19198,7 +19219,7 @@ msgstr "Waar"
msgid "When"
msgstr "Wanneer"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Meer Opsies"
@@ -19935,21 +19956,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "Drakbackup"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Lêer"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Lêer/_Verlaat"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -20065,7 +20086,7 @@ msgstr "Mandriva Linux Control Center"
msgid "Synchronization tool"
msgstr "Sinkronisasie-nutsprogram"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "Alleenstaande nutsprogramme"
@@ -20150,7 +20171,7 @@ msgstr "Pakket: "
msgid "Kernel:"
msgstr "Kernel:"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, fuzzy, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -20164,17 +20185,17 @@ msgstr ""
"en 'n vorm om in te vul aan u toon. Die bogenoemde inligting\n"
"sal na daardie bediener gestuur word."
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "Verslag"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "Nie geïnstalleeer"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "Pakket is nie geïnstalleer nie"
@@ -20400,7 +20421,7 @@ msgstr "Deaktiveer"
msgid "Media class"
msgstr "Media-klas"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "Modulenaam"
@@ -20634,122 +20655,6 @@ msgid ""
"Are you really sure that you want to restart the dm service?"
msgstr ""
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "herlaaiskyf-skepping"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "Algemeen"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Toestel"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "Weergawe van kernel"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Voorkeure"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "Gevorderde voorkeure"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Grootte"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "Mkinitrd opsionele parameters"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "forseer"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "laat RAID-modules weg"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "indien nodig"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "laat SCSI-modules weg"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "Voeg module by"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "Verwyder module"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"Daar is geen medium in toestel %s nie.\n"
-"Sit asb. een in."
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Kon nie vurk nie: %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Skep van disket is voltooi"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Die selflaai-disket is suksesvol geskep.\n"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Kon nie mkbootdisk ordentelik afsluit nie:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -21405,6 +21310,240 @@ msgstr ""
"Kan nie %s vertoon nie \n"
" Geen Hulp inskrywing van hierdie tipe nie\n"
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -24559,6 +24698,11 @@ msgstr "Bus"
msgid "FPU"
msgstr ""
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Toestel"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -25948,27 +26092,27 @@ msgstr "Die pakket %s moet geïnstalleer word. Wil u dit installeer?"
msgid "Your scanner(s) will not be available on the network."
msgstr "U skandeerder(s) sal NIE op die netwerk beskikbaar wees NIE. "
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Sommige toestelle in die \"%s\"-hardewareklas is verwyder:\n"
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr ""
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "Party toestelle is bygevoeg: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr ""
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "Aftas vir hardeware aan die gang"
@@ -26132,6 +26276,76 @@ msgstr ""
msgid "Installation failed"
msgstr "Installasie het gefaal!"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "herlaaiskyf-skepping"
+
+#~ msgid "General"
+#~ msgstr "Algemeen"
+
+#~ msgid "Kernel version"
+#~ msgstr "Weergawe van kernel"
+
+#~ msgid "Preferences"
+#~ msgstr "Voorkeure"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "Gevorderde voorkeure"
+
+#~ msgid "Size"
+#~ msgstr "Grootte"
+
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "Mkinitrd opsionele parameters"
+
+#~ msgid "force"
+#~ msgstr "forseer"
+
+#~ msgid "omit raid modules"
+#~ msgstr "laat RAID-modules weg"
+
+#~ msgid "if needed"
+#~ msgstr "indien nodig"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "laat SCSI-modules weg"
+
+#~ msgid "Add a module"
+#~ msgstr "Voeg module by"
+
+#~ msgid "Remove a module"
+#~ msgstr "Verwyder module"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "Versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "Daar is geen medium in toestel %s nie.\n"
+#~ "Sit asb. een in."
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "Kon nie vurk nie: %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "Skep van disket is voltooi"
+
+#~ msgid "The creation of the boot floppy has been successfully completed \n"
+#~ msgstr "Die selflaai-disket is suksesvol geskep.\n"
+
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "Kon nie mkbootdisk ordentelik afsluit nie:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index bd77c415a..02393bb64 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -187,12 +187,13 @@ msgstr "እባክዎ ይጠብቁ፣ መሳሪያዎችን ፈልጎ በማግ
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -260,8 +261,8 @@ msgid "No CDROM support"
msgstr "የሲዲ-ሮም ድጋፍ የለም"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "በጥንቃቄ ያንብቡ!"
@@ -598,11 +599,11 @@ msgstr "ተወው"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "እርዳታ"
@@ -736,7 +737,7 @@ msgstr ""
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "እባክዎ ይጠብቁ"
@@ -839,7 +840,7 @@ msgstr ""
msgid "The passwords do not match"
msgstr "ሚስጢራዊ ቃላቱ አይመሳሰሉም"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "እባክዎ እንደገና ይሞክሩ"
@@ -972,8 +973,7 @@ msgstr "የተጠቃሚው እይታ"
msgid "Label"
msgstr "መለያ"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "ቀዳሚ"
@@ -1310,7 +1310,7 @@ msgstr "userdrake አስጀምር"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -1932,12 +1932,12 @@ msgid "Server: "
msgstr "ሰርቨር:"
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr ""
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "ምርጫዎች: %s"
@@ -2019,7 +2019,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "ባዶ"
@@ -2094,34 +2094,34 @@ msgstr ""
msgid "Continue anyway?"
msgstr "ለማንኛውም ቀጥል?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "ሳታስቀምጥ ውጣ"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr ""
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr ""
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2272,12 +2272,12 @@ msgstr "አዲስ ክፋይ ፍጠር"
msgid "Start sector: "
msgstr "ሴክተር ጀምር፦"
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "መጠን በMB:"
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "የፋይል ሲስተም አይነት: "
@@ -2411,205 +2411,217 @@ msgstr ""
msgid "LVM name?"
msgstr "የLVM ስም?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr ""
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr ""
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "የዞሮ መመለሻ ፋይል ስም: "
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "የፋይል ስም ይስጡ"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "ፋይሉ በፊትም ነበር። ልጠቀምበት?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "የተከላ ምርጫዎች"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr ""
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "መሳሪያ"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "ደረጃ"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "የፊደል ቅርጽ መጠን፦"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "ይጠንቀቁ: ይህ አሰራር አደገኛ ነው።"
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "ምን አይነት አከፋፈል?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr ""
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "ወደ አዲሱ ክፋይ ፋይሎችን አንቀሳቅስ"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "ፋይሎች ደብቅ"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr ""
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "%sን በመገልበጥ ላይ"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "%sን በማስወገድ ላይ"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "%s ከአሁን በኋላ %s በመባል ይታወቃል"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "መሳሪያ: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, fuzzy, c-format
msgid "Devfs name: "
msgstr "መሳሪያ: "
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr ""
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "አይነት: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "ስም: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "ጀምር፦ ሴክተር %sን\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "መጠን: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ""
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "CD ወደ"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr ""
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "አልተስተካከለም\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr ""
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, fuzzy, c-format
msgid "RAID %s\n"
msgstr "URI፦"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2618,34 +2630,34 @@ msgstr ""
"ዞሮ መመለሻ ፋይል(ሎች):\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "ደረጃ %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "የፊደል ቅርጽ መጠን፦"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr ""
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "ዞሮ መመለሻ ፋይል ስም: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2654,7 +2666,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2663,73 +2675,73 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "ለንባብ ብቻ"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "መጠን፦ %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ""
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "መረጃ: "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr ""
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "የክፋይ ጠረጴዛ ዓይነት: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "በጣቢያ %d ID %d\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "የፋይል-ሲስተም ሚስጢራዊ ግልበጣ ቁልፍ"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr ""
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "የሚስጢራዊ ግልበጣ ቁልፍ"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "የሚስጢራዊ ግልበጣ ቁልፍ (እንደገና)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3337,9 +3349,9 @@ msgstr ""
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "ማስጠንቀቂያ"
@@ -6125,21 +6137,23 @@ msgid "Choose a file"
msgstr "ፋይል ይምረጡ"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "ጨምር"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "ለውጥ"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "አስወግድ"
@@ -8185,17 +8199,22 @@ msgstr ""
msgid "Welcome to %s"
msgstr "ወደ %s እንኳን ደህና መጡ"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr ""
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -9194,7 +9213,7 @@ msgstr "IP መለኪያዎች"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP አድራሻ"
@@ -9649,7 +9668,7 @@ msgstr ""
msgid "Host name (optional)"
msgstr "ህገ ወጥ የዶሴ ስም"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "የእንግዳ ተቀባይ ስም"
@@ -15988,7 +16007,9 @@ msgstr ""
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr ""
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "ስህተት!"
@@ -16900,7 +16921,7 @@ msgstr ""
msgid "When"
msgstr ""
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "ተጨማሪ ምርጫዎች"
@@ -17590,21 +17611,21 @@ msgstr ""
msgid "Drakbackup"
msgstr ""
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/ፋይል (_F)"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/ፋይል (F)/ውጣ (_Q)"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -17716,7 +17737,7 @@ msgstr "የMandriva Linux ቁጥጥር ማእከል"
msgid "Synchronization tool"
msgstr "የመስሪያውን ምልክት"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, fuzzy, c-format
msgid "Standalone Tools"
msgstr "/መሣሪያዎች/Toolbox"
@@ -17798,7 +17819,7 @@ msgstr "ጥቅል"
msgid "Kernel:"
msgstr ""
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -17808,17 +17829,17 @@ msgid ""
"version, and /proc/cpuinfo."
msgstr ""
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "ሪፖርት"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, fuzzy, c-format
msgid "Not installed"
msgstr "አልተገኘም"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, fuzzy, c-format
msgid "Package not installed"
msgstr "ማንበብ አልቻለም፦ "
@@ -18037,7 +18058,7 @@ msgstr "አይቻል"
msgid "Media class"
msgstr ""
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, fuzzy, c-format
msgid "Module name"
msgstr "የፋይል ስም አቅድ"
@@ -18256,117 +18277,6 @@ msgid ""
"Are you really sure that you want to restart the dm service?"
msgstr ""
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr ""
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr ""
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "አጠቃላይ"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "መሳሪያ"
-
-#: standalone/drakfloppy:88
-#, fuzzy, c-format
-msgid "Kernel version"
-msgstr "ቅጂውን አጣራ"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "ምርጫዎች"
-
-#: standalone/drakfloppy:117
-#, fuzzy, c-format
-msgid "Advanced preferences"
-msgstr "ምርጫዎችን ይምረጡ"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "መጠን"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr ""
-
-#: standalone/drakfloppy:141
-#, fuzzy, c-format
-msgid "force"
-msgstr "ጽሁፉን ከቀኝ ወደግራ አስገድድ"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr ""
-
-#: standalone/drakfloppy:143
-#, fuzzy, c-format
-msgid "if needed"
-msgstr "አስቀምጥ (__S__) (አስፈላጊ)"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr ""
-
-#: standalone/drakfloppy:147
-#, fuzzy, c-format
-msgid "Add a module"
-msgstr "ሰነዶችን ጨምር"
-
-#: standalone/drakfloppy:156
-#, fuzzy, c-format
-msgid "Remove a module"
-msgstr "የገጹን እራስጌ አጥፋ"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr ""
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-
-#: standalone/drakfloppy:300
-#, fuzzy, c-format
-msgid "Unable to fork: %s"
-msgstr "እንደገና የሚሰራ ምንም የለም።"
-
-#: standalone/drakfloppy:303
-#, fuzzy, c-format
-msgid "Floppy creation completed"
-msgstr " የመጨረሻው መስመር ተጠናቋል።"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr ""
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-
#: standalone/drakfont:183
#, fuzzy, c-format
msgid "Search installed fonts"
@@ -18931,6 +18841,240 @@ msgid ""
". No Help entry of this type\n"
msgstr ""
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -21579,6 +21723,11 @@ msgstr "ኦገስት"
msgid "FPU"
msgstr ""
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "መሳሪያ"
+
#: standalone/harddrake2:148
#, fuzzy, c-format
msgid "Partitions"
@@ -22912,27 +23061,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr ""
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr ""
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr ""
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr ""
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr ""
@@ -23094,6 +23243,47 @@ msgstr ""
msgid "Installation failed"
msgstr "%s አልተገኘም"
+#~ msgid "General"
+#~ msgstr "አጠቃላይ"
+
+#, fuzzy
+#~ msgid "Kernel version"
+#~ msgstr "ቅጂውን አጣራ"
+
+#~ msgid "Preferences"
+#~ msgstr "ምርጫዎች"
+
+#, fuzzy
+#~ msgid "Advanced preferences"
+#~ msgstr "ምርጫዎችን ይምረጡ"
+
+#~ msgid "Size"
+#~ msgstr "መጠን"
+
+#, fuzzy
+#~ msgid "force"
+#~ msgstr "ጽሁፉን ከቀኝ ወደግራ አስገድድ"
+
+#, fuzzy
+#~ msgid "if needed"
+#~ msgstr "አስቀምጥ (__S__) (አስፈላጊ)"
+
+#, fuzzy
+#~ msgid "Add a module"
+#~ msgstr "ሰነዶችን ጨምር"
+
+#, fuzzy
+#~ msgid "Remove a module"
+#~ msgstr "የገጹን እራስጌ አጥፋ"
+
+#, fuzzy
+#~ msgid "Unable to fork: %s"
+#~ msgstr "እንደገና የሚሰራ ምንም የለም።"
+
+#, fuzzy
+#~ msgid "Floppy creation completed"
+#~ msgstr " የመጨረሻው መስመር ተጠናቋል።"
+
#, fuzzy
#~ msgid "use PPPoE"
#~ msgstr "በጥቅም ላይ ያለ"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 1c7f04c3b..249ac5b68 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-03-03 01:06+0300\n"
"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
"Language-Team: Arabic <support@arabeyes.org>\n"
@@ -225,12 +225,13 @@ msgstr "الرجاء الانتظار، جاري اكتشاف وتهيئة ال
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -315,8 +316,8 @@ msgid "No CDROM support"
msgstr "ليس هناك دعم لقارئ الأقراص المدمجة"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "اقرأ جيدا!"
@@ -670,11 +671,11 @@ msgstr "إلغاء"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "مساعدة"
@@ -820,7 +821,7 @@ msgstr ""
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "الرجاء الانتظار"
@@ -940,7 +941,7 @@ msgstr "خيار ``تشديد خيارات سطر الأوامر`` لا ينفع
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "الرجاء المحاولة مجدداً"
@@ -1073,8 +1074,7 @@ msgstr "سجلّ إعداد الشبكة "
msgid "Label"
msgstr "تسمية"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "افتراضي"
@@ -1423,7 +1423,7 @@ msgstr "تشغيل userdrake"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -2075,12 +2075,12 @@ msgid "Server: "
msgstr "الخادم: "
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "مكان التركيب:"
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
@@ -2168,7 +2168,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "ويندوز"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "فارغ"
@@ -2243,37 +2243,37 @@ msgstr "الانتقال إلى وضعية الخبير"
msgid "Continue anyway?"
msgstr "استمرار على أي حال؟"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-"يفضّل أن تنسّق التّجزيء %s.\n"
-"إن لم تفعل فلن يسجّل أي مُدخل لنقطة التّركيب %s في fstab.\n"
-"هل تريد الخروج على أي حال؟"
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "الخروج بدون حفظ"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "هل تريد الخروج بدون كتابة جدول التجزئة؟"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "هل تريد حفظ تعديلات /etc/fstab"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "تحتاج إلى إعادة التثبيت لتفعيل التعديلات على جدول التجزئة"
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+"يفضّل أن تنسّق التّجزيء %s.\n"
+"إن لم تفعل فلن يسجّل أي مُدخل لنقطة التّركيب %s في fstab.\n"
+"هل تريد الخروج على أي حال؟"
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2426,12 +2426,12 @@ msgstr "إنشاء تجزيء جديد"
msgid "Start sector: "
msgstr "قطاع البداية: "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "الحجم بالميغابايت: "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "نوع نظام المفات: "
@@ -2572,97 +2572,109 @@ msgstr "اختيار LVM، موجود للإضافة إليه"
msgid "LVM name?"
msgstr "اسم LVM؟"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "هذه التجزيء لا يمكن استخدامه لـloopback"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "اسم ملف Loopback: "
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "إعطاء اسم ملف"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "هذا الملف مستخدم من loopback أخرى، اختر ملفا آخر"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "الملف موجود مسبقا، هل تريد استخدامه؟"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "خيارات التركيب"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "متنوعة"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "جهاز"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "المستوى"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, c-format
msgid "chunk size in KiB"
msgstr "حجم القطعة الكبيرة بالكيلوبايت (KiB)"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "كن حذرا: هذه العملية خطيرة"
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "أي نوع من التجزئة؟"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "ستحتاج إلى إعادة التشغيل قبل أن يتم تفعيل التعديلات"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "جدول التجزئة للقرص %s سيتم كتابته إلى القرص!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "بعد تنسيق التجزيء %s، فإن كل البيانات الموجودة على هذا التجزيء ستفقد"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "نقل الملفات إلى تجزيء جديد"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "تخبئة الملفات"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2671,108 +2683,108 @@ msgstr ""
"الدليل %s يحتوي مسبقا على بعض البيانات\n"
"(%s)"
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "جاري نقل الملفات إلى التجزيء الجديد"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "جاري نسخ %s"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "جاري ازالة %s"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "التجزبء %s معروف الآن بالإسم %s"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr "تجزيئات تم إعادة ترقيمها:"
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "الجهاز: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Devfs name: "
msgstr "اسم Devfs: "
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr "علامة المجلّد: "
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "حرف سواقة دوس: %s (مجرد تخمين)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "النوع: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "الاسم: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "البداية: قطاع %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "الحجم: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr "، %s قطاع"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "الاسطوانة %d إلى %d\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "مُنسّق\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "غير مُنسّق\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "محمل\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2781,7 +2793,7 @@ msgstr ""
"ملفـ(ات) Loopback\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2790,27 +2802,27 @@ msgstr ""
"التجزيء الذي يتم إقلاعه افتراضيا\n"
" (لـ MS-DOS و ليس لـ lilo)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "المستوى %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "حجم القطعة الكبيرة %d كيلوبايت (KiB)\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "أقراص RAID %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "اسم ملف Loopback: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2823,7 +2835,7 @@ msgstr ""
"تجزيء Driver. عليك\n"
"تركه لوحده.\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2836,73 +2848,73 @@ msgstr ""
"هذا هو\n"
"للإقلاع المزدوج في نظامك.\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "للقراءة فقط"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "الحجم: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "الهندسة: %s اسطوانة، %s رأس، %s قطاع\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "معلومات: "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "أقراص LVM %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "نوع جدول التجزئة: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "على القناة %d id %d\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "مفتاح تشفير نظام الملفات"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "اختيار مفتاح تشفير نظام الملفات"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "مفتاح التشفير هذا بسيط جدا (يجب أن يكون %d حرفا على الأقل)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "مفاتيح التشفير غير متطابقة"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "مفتاح التشفير"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "مفتاح التشفير (مرة أخرى)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3556,9 +3568,9 @@ msgstr "حل المشاكل"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "تحذير"
@@ -7430,21 +7442,23 @@ msgid "Choose a file"
msgstr "اختيار ملف"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "إضافة"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "تعديل"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "حذف"
@@ -9509,17 +9523,22 @@ msgstr "، "
msgid "Welcome to %s"
msgstr "أهلا في %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "حذف الكتل المنطقية أولاً\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10562,7 +10581,7 @@ msgstr "مُعطيات IP"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "عنوان IP"
@@ -11061,7 +11080,7 @@ msgstr "أخيراً وليس آخراً يمكنك أيضاً أن تدخل ع
msgid "Host name (optional)"
msgstr "اسم المضيف (اختياري)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "اسم المضيف"
@@ -18362,7 +18381,9 @@ msgstr "/etc/hosts.allow و /etc/hosts.deny معدّان مسبقاً - لم ي
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "تغيّرت التّهيئة - هل أعيد تشغيل clusternfs/dhcpd؟"
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "خطأ!"
@@ -19350,7 +19371,7 @@ msgstr "أين"
msgid "When"
msgstr "متى "
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "خيارات أكثر"
@@ -20081,21 +20102,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "Drakbackup"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_ملف"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/ملف/_خروج"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -20214,7 +20235,7 @@ msgstr "مركز تحكّم ماندريبا لينكس"
msgid "Synchronization tool"
msgstr "أداة المزامنة"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "الأدوات المنفصلة"
@@ -20298,7 +20319,7 @@ msgstr "الحزمة: "
msgid "Kernel:"
msgstr "النواة:"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -20314,17 +20335,17 @@ msgstr ""
"بعض الأشياء المفيد شملها في تقريرك هي مخرجات lspci، ونسخة النواة، و/proc/"
"cpuinfo."
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "تقرير"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "غير مثبت"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "لم يتم تثبيت الحزمة"
@@ -20549,7 +20570,7 @@ msgstr "تعطيل"
msgid "Media class"
msgstr "فئة الوسيط"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "اسم الوحدة"
@@ -20784,122 +20805,6 @@ msgstr ""
"أنت بصدد إغلاق كلّ البرامج المشتغلة وخسران جلستك الحالية. هل تنوي فعلا إعادة "
"بدأ خدمة dm؟"
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "إنشاء قرص الإقلاع"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "عام"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "الجهاز"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "نسخة النواة"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "تفضيلات"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "تفضيلات متقدمة"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "حجم"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "مُعامِلات mkinitrd الاختياريّة"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "اجبار"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "إهمال وحدات raid"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "إذا احتجته"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "إهمال وحدات SCSI"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "إضافة وحدة"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "إزالة وحدة"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "تأكد من وجود الوسيط للوحدة %s"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
-"فضلاً ادخل وسط فى الوحدة."
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "تعذر تنفيذ: %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "اكتمل إنشاء القرص المرن"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "تمّ إنشاء قرص الإقلاع المرن بنجاح \n"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"لا يمكن إغلاق mkbootdisk بشكل ملائم:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -21548,6 +21453,240 @@ msgstr ""
"لا يمكن عرض %s \n"
". ليس هناك مُدخل مساعدة لهذا النّوع\n"
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -24714,6 +24853,11 @@ msgstr "العلل"
msgid "FPU"
msgstr "FPU"
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "الجهاز"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -26105,27 +26249,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr "ماسحاتك لن تكون متوفّرة على الشّبكة."
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "تمت إزالة بعض الأجهزة في فئة العتاد \"%s\":\n"
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr "- تمّت إزالة %s\n"
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "تمّت إضافة بعض الأجهزة: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr "- تمّت إضافة %s\n"
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "جاري جس العتاد"
@@ -26289,6 +26433,76 @@ msgstr ""
msgid "Installation failed"
msgstr "فشل التّثبيت"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "إنشاء قرص الإقلاع"
+
+#~ msgid "General"
+#~ msgstr "عام"
+
+#~ msgid "Kernel version"
+#~ msgstr "نسخة النواة"
+
+#~ msgid "Preferences"
+#~ msgstr "تفضيلات"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "تفضيلات متقدمة"
+
+#~ msgid "Size"
+#~ msgstr "حجم"
+
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "مُعامِلات mkinitrd الاختياريّة"
+
+#~ msgid "force"
+#~ msgstr "اجبار"
+
+#~ msgid "omit raid modules"
+#~ msgstr "إهمال وحدات raid"
+
+#~ msgid "if needed"
+#~ msgstr "إذا احتجته"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "إهمال وحدات SCSI"
+
+#~ msgid "Add a module"
+#~ msgstr "إضافة وحدة"
+
+#~ msgid "Remove a module"
+#~ msgstr "إزالة وحدة"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "تأكد من وجود الوسيط للوحدة %s"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
+#~ "فضلاً ادخل وسط فى الوحدة."
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "تعذر تنفيذ: %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "اكتمل إنشاء القرص المرن"
+
+#~ msgid "The creation of the boot floppy has been successfully completed \n"
+#~ msgstr "تمّ إنشاء قرص الإقلاع المرن بنجاح \n"
+
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "لا يمكن إغلاق mkbootdisk بشكل ملائم:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr "لا يمكنك استخدام كتلة LVM المنطقيّة لمكان التركيب %s"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 546e84fff..94939c528 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -194,12 +194,13 @@ msgstr "Xahiş edirik gözləyin, avadanlıqlar tapılır və quraşdırılır..
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -269,8 +270,8 @@ msgid "No CDROM support"
msgstr "CDROM dəstəyi yoxdur"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Diqqətlə oxuyun!"
@@ -620,11 +621,11 @@ msgstr "Ləğv Et"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Yardım"
@@ -772,7 +773,7 @@ msgstr ""
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Xahiş edirik, gözləyin"
@@ -888,7 +889,7 @@ msgstr ""
msgid "The passwords do not match"
msgstr "Şifrələr uyğun gəlmir"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Xahiş edirik, təkrar sınayın"
@@ -1021,8 +1022,7 @@ msgstr "Şəbəkə profili"
msgid "Label"
msgstr "Etiket"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Ön Qurğulu"
@@ -1376,7 +1376,7 @@ msgstr "Userdrake-ni başlat"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -2022,12 +2022,12 @@ msgid "Server: "
msgstr "Verici:"
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Seçimlər: %s"
@@ -2116,7 +2116,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Boş"
@@ -2191,36 +2191,36 @@ msgstr "Mütəxəssis moduna keç"
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Qeyd etmədən Çıx"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Bölmə cədvəli qeyd edilmədən çıxılsın?"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Dəyişikliklər /etc/fstab faylına qeyd edilsin?"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölmə cəvəlindəki dəyişikliklərin tətbiq edilməsi üçün kompüterinizi yenidən "
"başlatmalısınız."
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2373,12 +2373,12 @@ msgstr "Yeni bölmə yarat"
msgid "Start sector: "
msgstr "Başlanğıç sektoru: "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Fayl sistemi növü: "
@@ -2524,98 +2524,110 @@ msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
msgid "LVM name?"
msgstr "LVM adı?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Bu disk bölməsi loopback üçün işlədilə bilməz"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Loopback fayl adı: "
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "Fayl adı verin"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Fayl başqa bir loopback tərəfindən istifadədədir, başqasını seçin"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da mövcuddur. İşlədilsin?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "Bağlama seçimləri"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "Müxtəlif"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "avadanlıq"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "səviyyə"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "parça böyüklüyü"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Diqqətlı olun: bu əməliyyat təhlükəlidir."
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "Hansı növ bölmələndirmə?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar itəcək."
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "Faylları yeni bölməyə daşı"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "Faylları gizlət"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2624,108 +2636,108 @@ msgstr ""
"%s cərgəsi onsuzda mə'lumat daxil edir\n"
"(%s)"
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "Fayllar yeni bölməyə daşınır"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "%s köçürülür"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "%s silinir"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "%s bölməsi indi %s olaraq bilinir"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Avadanlıq: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, fuzzy, c-format
msgid "Devfs name: "
msgstr "Ev sahibi adı:"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sürücü hərfi: %s (bir təxmindir)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Növ: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Ad: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "Başlanğıc: sektor %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Böyüklüyü: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d'dən silindr %d'yə\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Şəkilləndirilmiş\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "Şəkilləndirilməmiş\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Bağlı\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAİD %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2734,7 +2746,7 @@ msgstr ""
"Loopback fayl(lar)ı:\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2743,27 +2755,27 @@ msgstr ""
"Əsas olaraq açılan bölmə\n"
" (MS-DOS açılışı üçün, lilo üçün deyil)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Səviyyə %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Parça böyüklüyü %s\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAİD-diskləri %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylı adı: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2775,7 +2787,7 @@ msgstr ""
"Bu bölmə Sürücü bölməsidir.\n"
"Bunu elə beləcə buraxın.\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2787,73 +2799,73 @@ msgstr ""
"Bu, sisteminizin ikili açılışı üçün\n"
"xüsusi Bootstrap bölməsidir.\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Sırf oxuna bilən"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Böyüklük: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Mə'lumat: "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskləri %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmə cədvəli növü: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "%d kanalında, %d id'li\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "Fayl sistemi şifrələmə açarı"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Fayl sistemi şifrələmə açarınızı seçin"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu şifrələmə açarı çox sadədir (ən az %d hərf böyüklüyündə olmalıdır)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "Şifrələmə açarları uyğun gəlmir"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Şifrələmə açarı"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "Şifrələrmə açarı (təkrar)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3513,9 +3525,9 @@ msgstr "Problem həlli"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Xəbərdarlıq"
@@ -7422,21 +7434,23 @@ msgid "Choose a file"
msgstr "Fayl seç"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Əlavə et"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Təkmilləşdir"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Sil"
@@ -9493,17 +9507,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoş Gəldiniz"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Əvvəlcə məntiqi həcmləri sil\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10539,7 +10558,7 @@ msgstr "IP parametrləri"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP ünvanı"
@@ -11007,7 +11026,7 @@ msgstr ""
msgid "Host name (optional)"
msgstr "Qovşaq adı (arzuya görə)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Ev sahibi adı"
@@ -18175,7 +18194,9 @@ msgstr ""
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Qurğu dəyişdirildi - clusternfs/dhcpd yenidən başladılsın?"
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "Xəta!"
@@ -19173,7 +19194,7 @@ msgstr "Hara"
msgid "When"
msgstr "Bu zaman"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Əlavə Seçimlər"
@@ -19906,21 +19927,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "Drakbackup"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Fayl"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Fayl/_Çıx"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -20035,7 +20056,7 @@ msgstr "Mandriva Linux İdarə Mərkəzi"
msgid "Synchronization tool"
msgstr "Sinxronlaşdırma vasitəsi"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "Tək Vasitələr"
@@ -20119,7 +20140,7 @@ msgstr "Paket:"
msgid "Kernel:"
msgstr "Çəyirdək:"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, fuzzy, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -20134,17 +20155,17 @@ msgstr ""
"be \n"
"transferred to that server."
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "Raport Göndər"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "Qurulmayıb"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "Paket qurulmayıb"
@@ -20363,7 +20384,7 @@ msgstr "Qeyri-fəallaşdır"
msgid "Media class"
msgstr "Mediya sinifi"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "Modul adı"
@@ -20596,122 +20617,6 @@ msgid ""
"Are you really sure that you want to restart the dm service?"
msgstr ""
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "Açılış disketi yaradılması"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "Ümumi"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Avadanlıq"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "Çəyirdək buraxılışı"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Qurğular"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "Ətraflı qurğularr"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Böyüklük"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "Mkinitrd arzuya bağlı olan arqumentləri"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "zorla"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "raid modulları keç"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "lazım olarsa"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "scsi modulları keç"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "Modul əlavə et"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "Modulu sil"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "%s avadanlığında medya olduğundan əmin olun"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"Mediya yoxdur, ya da %s avadanlığına yazmaya qarşı qorumalıdır.\n"
-"Xahiş edirik, birini taxın."
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Fork edilə bilmir: %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Disket yaradılması tamamlandı"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Açılış disketi yaradılması müvəffəqiyyətlə başa çatdı \n"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"mkbootdisk düzgün bağlana bilmədi:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -21350,6 +21255,240 @@ msgstr ""
"%s göstərilə bilmir \n"
". Bu növ üçün Yardım girişi yoxdur\n"
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -24105,6 +24244,11 @@ msgstr "Yol"
msgid "FPU"
msgstr ""
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Avadanlıq"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -25483,27 +25627,27 @@ msgstr "%s paketi qurulmalıdır. Qurmaq istəyirsiniz?"
msgid "Your scanner(s) will not be available on the network."
msgstr "Darayıcı(ları)nız şəbəkə üstündə istifadə edilə bilməyəcək."
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "\"%s\" sinifindəki bəzi avadanlıqlar çıxarıldı:\n"
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr ""
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "Bə'zi avadanlıqlar əlavə edildi: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr ""
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "Avadanlıq sınaması fəaliyyətdədir"
@@ -25668,6 +25812,76 @@ msgstr ""
msgid "Installation failed"
msgstr "Qurulum bacarılmadı"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "Açılış disketi yaradılması"
+
+#~ msgid "General"
+#~ msgstr "Ümumi"
+
+#~ msgid "Kernel version"
+#~ msgstr "Çəyirdək buraxılışı"
+
+#~ msgid "Preferences"
+#~ msgstr "Qurğular"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "Ətraflı qurğularr"
+
+#~ msgid "Size"
+#~ msgstr "Böyüklük"
+
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "Mkinitrd arzuya bağlı olan arqumentləri"
+
+#~ msgid "force"
+#~ msgstr "zorla"
+
+#~ msgid "omit raid modules"
+#~ msgstr "raid modulları keç"
+
+#~ msgid "if needed"
+#~ msgstr "lazım olarsa"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "scsi modulları keç"
+
+#~ msgid "Add a module"
+#~ msgstr "Modul əlavə et"
+
+#~ msgid "Remove a module"
+#~ msgstr "Modulu sil"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "%s avadanlığında medya olduğundan əmin olun"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "Mediya yoxdur, ya da %s avadanlığına yazmaya qarşı qorumalıdır.\n"
+#~ "Xahiş edirik, birini taxın."
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "Fork edilə bilmir: %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "Disket yaradılması tamamlandı"
+
+#~ msgid "The creation of the boot floppy has been successfully completed \n"
+#~ msgstr "Açılış disketi yaradılması müvəffəqiyyətlə başa çatdı \n"
+
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "mkbootdisk düzgün bağlana bilmədi:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr ""
#~ "%s bağlama nöqtəsi üçün LVM Məntiqi Həcmini istifadə edə bilməzsiniz"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 16c991629..5a585a63e 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -187,12 +187,13 @@ msgstr "Канфігурацыя сыстэмы друку (прынтэры, з
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -262,8 +263,8 @@ msgid "No CDROM support"
msgstr ""
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Чытайце ўважліва!"
@@ -618,11 +619,11 @@ msgstr "Адмена"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Дапамога"
@@ -758,7 +759,7 @@ msgstr ""
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Калі ласка, пачакайце"
@@ -862,7 +863,7 @@ msgstr ""
msgid "The passwords do not match"
msgstr "Паролі не супадаюць"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"
@@ -995,8 +996,7 @@ msgstr "Сеткавы інтэрфейс"
msgid "Label"
msgstr "Метка"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Па дамаўленню"
@@ -1337,7 +1337,7 @@ msgstr ""
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -1960,12 +1960,12 @@ msgid "Server: "
msgstr "Паслужнік: "
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Пункт манціравання:"
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Опцыі: %s"
@@ -2049,7 +2049,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Вокны"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Пуста"
@@ -2124,34 +2124,34 @@ msgstr "Рэжым эксперту"
msgid "Continue anyway?"
msgstr "Сапраўды працягваць?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Выйсці без захавання"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Выйсці без запісу табліцы раздзелаў"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, fuzzy, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ці жадаеце пратэсціраваць настройкі?"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Каб мадыфікацыя табліцы раздзелаў здейснілася, патрэбна перазагрузка."
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2306,12 +2306,12 @@ msgstr "Стварэнне новага раздзелу"
msgid "Start sector: "
msgstr "Пачатковы сектар:"
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "Памер у Мб:"
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Тып файлавай сістэмы:"
@@ -2448,212 +2448,224 @@ msgstr "Выбярыце існуючы LVM для дабаўлення"
msgid "LVM name?"
msgstr ""
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Гэты раздзел не можа быць выкарыстаны пад віртуальную файлавую сістэму"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Віртуальная файлавая сістэма (loopback)"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Імя віртуальнага раздзелу"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, fuzzy, c-format
msgid "Give a file name"
msgstr "Уласнае імя"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "Файл ужо існуе. Выкарыстаць яго?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, fuzzy, c-format
msgid "Mount options"
msgstr "Опцыі модулю:"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, fuzzy, c-format
msgid "Various"
msgstr "прылада"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "прылада"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "узровень"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "памер блоку"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Будзьце уважлівы. Гэтую аперацыю нельга адмяніць"
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr ""
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Каб змяненні ўступілі ў дзеянне, необходна перазагрузіцца"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Табліца размяшчэння прылады %s будзе запісана на дыск!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Усе дадзеные ў раздзеле %s будуць страчаны пасля фарматавання"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, fuzzy, c-format
msgid "Move files to the new partition"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, fuzzy, c-format
msgid "Hide files"
msgstr "Загрузіць файл(ы)"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, fuzzy, c-format
msgid "Moving files to the new partition"
msgstr "Не хапае прасторы для стварэння новых раздзелаў"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, fuzzy, c-format
msgid "Copying %s"
msgstr "Копія:"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Памеры экрану: %s\n"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Прылада:"
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, fuzzy, c-format
msgid "Devfs name: "
msgstr "Імя машыны"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Літара для DOS-дыску: %s (наўгад)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Тып: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Імя: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "Пачатак: сектар %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Памер: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s сектараў"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Фарматаванне\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "Не адфарматавана\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Заманціравана\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Імя файлу віртуальнай файлавай сістэмы: %s"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2662,27 +2674,27 @@ msgstr ""
"Загрузачны раздзел па дамаўленню\n"
" (для загрузкі MS-DOS, а не для lilo)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Узровень %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Памер фрагменту %s\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-дыскі %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Імя файлу віртуальнай файлавай сістэмы: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2691,7 +2703,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2700,74 +2712,74 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Толькі для чытаньня"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Памер: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геаметрыя: %s цыліндраў, %s галовак, %s сектараў\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Інфармацыя: "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-дыскі %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Тып табліцы раздзелаў: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, fuzzy, c-format
msgid "Filesystem encryption key"
msgstr "Тыпы файлавых сістэмаў:"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Гэты пароль занадта просты (яго даўжыня павінна быць не меней за %d літараў)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, fuzzy, c-format
msgid "The encryption keys do not match"
msgstr "Паролі не супадаюць"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr ""
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr ""
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3375,9 +3387,9 @@ msgstr "Настройкі мышы"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Увага!"
@@ -6211,21 +6223,23 @@ msgid "Choose a file"
msgstr "Выбар файла"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Дадаць"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Зьмяненьне"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Выдаліць"
@@ -8269,17 +8283,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr ""
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -9295,7 +9314,7 @@ msgstr "Інтэрнэт"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP адрас"
@@ -9757,7 +9776,7 @@ msgstr ""
msgid "Host name (optional)"
msgstr "Імя машыны"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Імя машыны"
@@ -16189,7 +16208,9 @@ msgstr ""
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr ""
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "Памылка!"
@@ -17100,7 +17121,7 @@ msgstr "Дзе"
msgid "When"
msgstr "З колам"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Болей выбараў"
@@ -17792,21 +17813,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "Чорны"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Файл"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Файл/_Выйсьці"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -17918,7 +17939,7 @@ msgstr "Цэнтар кіраваньня"
msgid "Synchronization tool"
msgstr "Канфігурацыя сістэмных сэрвісаў"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, fuzzy, c-format
msgid "Standalone Tools"
msgstr "Кансольныя інструментальныя сродкі"
@@ -18000,7 +18021,7 @@ msgstr "Пэйджэр"
msgid "Kernel:"
msgstr "Імя"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -18010,17 +18031,17 @@ msgid ""
"version, and /proc/cpuinfo."
msgstr ""
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, fuzzy, c-format
msgid "Report"
msgstr "Цыклічна"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, fuzzy, c-format
msgid "Not installed"
msgstr "Заканчэнне ўсталявання"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, fuzzy, c-format
msgid "Package not installed"
msgstr "Выбар пакетаў"
@@ -18239,7 +18260,7 @@ msgstr "Выключыць"
msgid "Media class"
msgstr ""
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, fuzzy, c-format
msgid "Module name"
msgstr "Назва файла"
@@ -18460,117 +18481,6 @@ msgid ""
"Are you really sure that you want to restart the dm service?"
msgstr ""
-#: standalone/drakfloppy:41
-#, fuzzy, c-format
-msgid "drakfloppy"
-msgstr "Захаванне на дыскету"
-
-#: standalone/drakfloppy:78
-#, fuzzy, c-format
-msgid "Boot disk creation"
-msgstr "Настройка IDE"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "Агульныя"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Прылада"
-
-#: standalone/drakfloppy:88
-#, fuzzy, c-format
-msgid "Kernel version"
-msgstr "Канфігурацыя"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Усталяваньні"
-
-#: standalone/drakfloppy:117
-#, fuzzy, c-format
-msgid "Advanced preferences"
-msgstr "Адмысловыя ўсталяваньні"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Памер"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr ""
-
-#: standalone/drakfloppy:141
-#, fuzzy, c-format
-msgid "force"
-msgstr "Усталяваньні"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr ""
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr ""
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr ""
-
-#: standalone/drakfloppy:147
-#, fuzzy, c-format
-msgid "Add a module"
-msgstr "Дадаць карыстальніка"
-
-#: standalone/drakfloppy:156
-#, fuzzy, c-format
-msgid "Remove a module"
-msgstr "/Выдаліць дохлыя файлы"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr ""
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-
-#: standalone/drakfloppy:300
-#, fuzzy, c-format
-msgid "Unable to fork: %s"
-msgstr "Немагчыма адчыніць файл %s\n"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr ""
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr ""
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -19158,6 +19068,240 @@ msgid ""
". No Help entry of this type\n"
msgstr ""
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -21810,6 +21954,11 @@ msgstr "Прац."
msgid "FPU"
msgstr ""
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Прылада"
+
#: standalone/harddrake2:148
#, fuzzy, c-format
msgid "Partitions"
@@ -23143,27 +23292,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr ""
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr ""
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, fuzzy, c-format
msgid "Some devices were added: %s\n"
msgstr "Мыш: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr ""
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr ""
@@ -23325,6 +23474,47 @@ msgstr ""
msgid "Installation failed"
msgstr "Усталяванне SILO"
+#, fuzzy
+#~ msgid "drakfloppy"
+#~ msgstr "Захаванне на дыскету"
+
+#, fuzzy
+#~ msgid "Boot disk creation"
+#~ msgstr "Настройка IDE"
+
+#~ msgid "General"
+#~ msgstr "Агульныя"
+
+#, fuzzy
+#~ msgid "Kernel version"
+#~ msgstr "Канфігурацыя"
+
+#~ msgid "Preferences"
+#~ msgstr "Усталяваньні"
+
+#, fuzzy
+#~ msgid "Advanced preferences"
+#~ msgstr "Адмысловыя ўсталяваньні"
+
+#~ msgid "Size"
+#~ msgstr "Памер"
+
+#, fuzzy
+#~ msgid "force"
+#~ msgstr "Усталяваньні"
+
+#, fuzzy
+#~ msgid "Add a module"
+#~ msgstr "Дадаць карыстальніка"
+
+#, fuzzy
+#~ msgid "Remove a module"
+#~ msgstr "/Выдаліць дохлыя файлы"
+
+#, fuzzy
+#~ msgid "Unable to fork: %s"
+#~ msgstr "Немагчыма адчыніць файл %s\n"
+
#~ msgid "use PPPoE"
#~ msgstr "выкарыстоўваць PPPoE"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index f07c1b2e1..1ee16565c 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-bg\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2004-09-15 13:27+0200\n"
"Last-Translator: Boyan Ivanov <boyan17@bulgaria.com>\n"
"Language-Team: Bulgarian <dict@linux.zonebg.com>\n"
@@ -192,12 +192,13 @@ msgstr "Моля, изберете ниво на сигурност..."
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -267,8 +268,8 @@ msgid "No CDROM support"
msgstr "Подръжка на радио:"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Прочетете внимателно !"
@@ -622,11 +623,11 @@ msgstr "Отказ"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Помощ"
@@ -766,7 +767,7 @@ msgstr ""
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Моля изчакайте"
@@ -880,7 +881,7 @@ msgstr "Опцията ``Ограничи опциите от командния
msgid "The passwords do not match"
msgstr "Паролите не съвпадат"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Моля, опитайте отново"
@@ -1013,8 +1014,7 @@ msgstr "Нов профил..."
msgid "Label"
msgstr "Етикет"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "По подразбиране"
@@ -1366,7 +1366,7 @@ msgstr "Стартира userdrake"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -1995,12 +1995,12 @@ msgid "Server: "
msgstr "Сървър: "
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Място на монтиране: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Опции: %s"
@@ -2089,7 +2089,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Празен"
@@ -2164,34 +2164,34 @@ msgstr "Премини в Експертен режим"
msgid "Continue anyway?"
msgstr "Продължение въпреки всичко ?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Изход без запис"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Изход, без да запис на таблицата на дяловете ?"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Искате ли да запазите промените в /etc/fstab"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Налага се ра рестартирате, преди модификациите да предизвикат ефект"
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2346,12 +2346,12 @@ msgstr "Създай нов дял"
msgid "Start sector: "
msgstr "Начален сектор: "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "Големина в MB: "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Вид файлова система: "
@@ -2490,97 +2490,109 @@ msgstr "Изберете съществуващ LVM за прибавяне"
msgid "LVM name?"
msgstr "LVM име ?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Този дял не може да бъде използван за loopback"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Име на loopback файла: "
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "Дайте име на файл"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Файлът вече се използва то друг loopback, изберете друг файл."
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "Файлът вече съшествува. Да го използвам ли ?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "Опции за mount:"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "Различни"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "устройство"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "ниво"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, fuzzy, c-format
msgid "chunk size in KiB"
msgstr "големина на парчето"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Внимание: тази операция е опасна"
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "Какъв тип разделяне на дялове ?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Трябва да рестартирате, преди промените да влязат в сила"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Таблицата на дяловете на устройство %s ще бъде записана върху диска !"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "След форматиране на дяла %s, всички данни върху него ще бъдат загубени"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "Премести файловете на нов дял"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "Скрий файловете"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2589,108 +2601,108 @@ msgstr ""
"Директорията %s вече съдържа някакви данни\n"
"(%s)"
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "Премести файловете на нов дял"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "Копиране на %s"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "Изтриване на %s"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "дял %s сега е известен като %s"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Устройство: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, fuzzy, c-format
msgid "Devfs name: "
msgstr "Име на хост:"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Буква на устройството под DOS: %s (просто предположение)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Вид: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Име: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "Начало: сектор %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Размер: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s сектора"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "От цилиндър %d до цилиндър %d\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Форматиран\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "Неформатиран\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Монтиран\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2699,7 +2711,7 @@ msgstr ""
"Loopback файл(ове):\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2708,27 +2720,27 @@ msgstr ""
"Дял, който се стартира по подразбиране\n"
" (за MS-DOS boot, не за lilo)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Ниво %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, fuzzy, c-format
msgid "Chunk size %d KiB\n"
msgstr "Размер на парчето %s\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-дискове %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Име на loopback файла: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2741,7 +2753,7 @@ msgstr ""
"Драйвер-дял, може би трябва\n"
"трябва да го оставите.\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2754,74 +2766,74 @@ msgstr ""
"ивица на дяла е за двойно\n"
"стартиране на системата ви.\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Само за четене"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Размер: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Геометрия: %s цилиндри, %s глави, %s сектори\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Информация: "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-дискове %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Тип на таблицата с дялове: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "на канал %d id %d\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "Криптиращ ключ за файлова система"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Избор на криптиращ ключ за еашата файлова система"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Криптиращ ключ е прекалено прост (трябва да бъде дълга поне %d символа)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "Ключовете за криптиране не съвпадат"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Ключ за криптиране"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "Ключ за криптиране (отново)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, fuzzy, c-format
msgid "Encryption algorithm"
@@ -3454,9 +3466,9 @@ msgstr ""
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Предупреждение"
@@ -7030,21 +7042,23 @@ msgid "Choose a file"
msgstr "Изберете файл"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Добавя"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Модифицира"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Премахва"
@@ -9095,17 +9109,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "Добре дошли в %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Първо премахни логичните дялово\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10141,7 +10160,7 @@ msgstr "Параметри"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP адрес"
@@ -10606,7 +10625,7 @@ msgstr ""
msgid "Host name (optional)"
msgstr "Първи DNS сървър (по избор)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Име на хост:"
@@ -17301,7 +17320,9 @@ msgstr ""
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Настройката е променена - растартиране на clusternfs/dhcpd"
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "Грешка !"
@@ -18230,7 +18251,7 @@ msgstr "Къде"
msgid "When"
msgstr "Кога"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Допълнителни опции"
@@ -18932,21 +18953,21 @@ msgstr ""
msgid "Drakbackup"
msgstr ""
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Файл"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Файл/_Излиза"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -19060,7 +19081,7 @@ msgstr "Контролен център на Mandriva Linux"
msgid "Synchronization tool"
msgstr ""
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "Самостоятелни инструменти"
@@ -19142,7 +19163,7 @@ msgstr "Пакет: "
msgid "Kernel:"
msgstr "Ядро:"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -19152,17 +19173,17 @@ msgid ""
"version, and /proc/cpuinfo."
msgstr ""
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "Рапорт"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "Не е инсталиран"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "Пакета не е инсталиран"
@@ -19383,7 +19404,7 @@ msgstr "Изключване"
msgid "Media class"
msgstr "Клас носител"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "Име на модул"
@@ -19611,122 +19632,6 @@ msgid ""
"Are you really sure that you want to restart the dm service?"
msgstr ""
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "Създаване на стартираща дискета"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "Основно"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Устройство"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "Версия на ядрото"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Настройки"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "Допълнителни опции"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Големина"
-
-#: standalone/drakfloppy:139
-#, fuzzy, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "mkinitrd допълнителни аргументи"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "принудително"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "без raid модули"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "ако е нужно"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "без scsi модули"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "Добави модула"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "Премахни модула"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Проверете имате ли дискета в устройството %s"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"Няма носител в устойството или е защитена от писане %s.\n"
-"Моля поставете един."
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Не мога да направя 'fork': %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Създаването на дискета приключи"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr ""
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, fuzzy, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Неможе да се затвори правилно mkbootdisk: \n"
-" %s \n"
-" %s"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -20320,6 +20225,240 @@ msgid ""
". No Help entry of this type\n"
msgstr ""
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -22996,6 +23135,11 @@ msgstr "Шина"
msgid "FPU"
msgstr ""
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Устройство"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -24359,27 +24503,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr ""
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr ""
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, fuzzy, c-format
msgid "Some devices were added: %s\n"
msgstr "Устройство на мишката: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr ""
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "Прогрес на хардуерна проба"
@@ -24543,6 +24687,75 @@ msgstr ""
msgid "Installation failed"
msgstr "Инсталацията провалена"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "Създаване на стартираща дискета"
+
+#~ msgid "General"
+#~ msgstr "Основно"
+
+#~ msgid "Kernel version"
+#~ msgstr "Версия на ядрото"
+
+#~ msgid "Preferences"
+#~ msgstr "Настройки"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "Допълнителни опции"
+
+#~ msgid "Size"
+#~ msgstr "Големина"
+
+#, fuzzy
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "mkinitrd допълнителни аргументи"
+
+#~ msgid "force"
+#~ msgstr "принудително"
+
+#~ msgid "omit raid modules"
+#~ msgstr "без raid модули"
+
+#~ msgid "if needed"
+#~ msgstr "ако е нужно"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "без scsi модули"
+
+#~ msgid "Add a module"
+#~ msgstr "Добави модула"
+
+#~ msgid "Remove a module"
+#~ msgstr "Премахни модула"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "Проверете имате ли дискета в устройството %s"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "Няма носител в устойството или е защитена от писане %s.\n"
+#~ "Моля поставете един."
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "Не мога да направя 'fork': %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "Създаването на дискета приключи"
+
+#, fuzzy
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "Неможе да се затвори правилно mkbootdisk: \n"
+#~ " %s \n"
+#~ " %s"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr "Не можете да използвате LVM тип за място на монтиране %s"
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index 12b172047..f6827a776 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX HEAD\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-03-19 23:18+0600\n"
"Last-Translator: Samia <mailsamia2001@yahoo.com>\n"
"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
@@ -230,12 +230,13 @@ msgstr "অনুগ্রহ করে অপেক্ষা করুন, ড
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -321,8 +322,8 @@ msgid "No CDROM support"
msgstr "সিডিরমের কোন সাপোর্ট নেই"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "সতর্কতার সাথে পড়ো!"
@@ -677,11 +678,11 @@ msgstr "বাতিল"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "সাহায্য"
@@ -831,7 +832,7 @@ msgstr "অনান্য"
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "অনুগ্রহ করে অপেক্ষা করুন"
@@ -949,7 +950,7 @@ msgstr "``নিয়ন্ত্রিত কমান্ড লাইন অপ
msgid "The passwords do not match"
msgstr "পাসওয়ার্ডটি মিলছে না"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "অনুগ্রহ করে আবার চেষ্ট করুন"
@@ -1082,8 +1083,7 @@ msgstr "নেটওয়ার্ক প্রোফাইল"
msgid "Label"
msgstr "শিরোনাম"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "স্বাভাবিক"
@@ -1431,7 +1431,7 @@ msgstr "userdrake শুরু করো"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -2093,12 +2093,12 @@ msgid "Server: "
msgstr "সার্ভার:"
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "মাউন্ট পয়েন্ট:"
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "অপশন: %s"
@@ -2186,7 +2186,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "উইন্ডোজ"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "শূণ্য"
@@ -2261,38 +2261,38 @@ msgstr "দক্ষ মোডে বদল করো"
msgid "Continue anyway?"
msgstr "অগ্রসর হবে?"
-# সাম
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-"পার্টিশন %s ফরম্যাট করা প্রয়োজন।\n"
-"অন্যথা fstab এ মাউন্ট পয়েন্ট %s এর কোন এন্ট্রি লেখা হবে না।\n"
-"তবুও বের হয়ে যাব কি?"
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "সংরক্ষণ ছাড়াই বের হও"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "কোন পার্টিশন টেবিল না লিখেই বের হয়ে যাব?"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "আপনি /etc/fstab -এর পরিবর্তন সেভ করতে চান?"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "পার্টিশন টেবিলের পরিবর্তনগুলি কার্যকর করবার জন্য আপনাকে রা-ষ্টার্ট করতে হবে"
+# সাম
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+"পার্টিশন %s ফরম্যাট করা প্রয়োজন।\n"
+"অন্যথা fstab এ মাউন্ট পয়েন্ট %s এর কোন এন্ট্রি লেখা হবে না।\n"
+"তবুও বের হয়ে যাব কি?"
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2448,12 +2448,12 @@ msgstr "একটি নতুন পার্টিশন তৈরী কর
msgid "Start sector: "
msgstr "শুরুর সেক্টর:"
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "মেগাবাইটে সাইজ:"
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "ফাইলসিস্টেমের ধরণ:"
@@ -2595,97 +2595,109 @@ msgstr "যোগ করার জন্য উপস্থিত একটি L
msgid "LVM name?"
msgstr "LVM-এর নাম?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "লুপব্যাকের জন্য এই পার্টিশনটি ব্যবহার করা যাবেনা"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Loopback ফাইলের নাম: "
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "একটি ফাইলের নাম দিন"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "ফাইলটি আগে থেকেই অন্য একটি লুপব্যাকে ব্যবহৃত হচ্ছে, আরেকটি পছন্দ করুন"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "ফাইল আগে থেকেই আছে, ব্যবহার করব?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "মাউন্ট অপসন"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "বিভিন্ন"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "ডিভাইস"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "লেভেল"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, c-format
msgid "chunk size in KiB"
msgstr "কিলোবাইট এ chunk সাইজ"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "খুবই সাবধান: এই কাজটি ঝুঁকিপূর্ন।"
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "কি ধরণের পার্টিশন হবে?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "পরিবর্তনগুলি অবস্থান নেবার জন্য আপনাকে রি-ষ্টার্ট করতে হবে"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s ড্রাইভের পার্টিশন টেবিল ডিস্কে লিখতে যাচ্ছি!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "পার্টিশন %s -কে ফরমেট করার পরে এই পার্টিশনের সমস্থ ডাটা হারিয়ে যাবে"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "ফাইলগুলিক একটি নতুন পার্টিশনে সরিয়ে ফেলো"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "ফাইল লুকানো হোক"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2694,109 +2706,109 @@ msgstr ""
"%s ডিরেক্টরীতে আগে থেকেই ডাটা আছে\n"
"(%s)"
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "ফাইলগুলিকে একটু নতুন পার্টিশনে নিয়ে যাওয়া হচ্ছে"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "%s কপি করা হচ্ছে"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "%s মুছে ফেলা হচ্ছে"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "পার্টিশন %s-কে এখন %s নামে জানা যাবে"
# সাম: renumber = পুনর্বিন্যাস?
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr "পার্টিশনগুলো পুনঃসংখ্যান করা হয়েছে: "
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "ডিভাইস:"
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Devfs name: "
msgstr "Devfs নাম:"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr "ভলিউম লেবেল:"
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS ড্রাইভ লেটার: %s (শুধুমাত্র একটি অনুমান)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "ধরণ:"
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "নাম:"
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "শুরু: সেক্টর %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "সাইজ: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s সেক্টরসমূহ"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "সিলিন্ডার %d থেকে %d পর্যন্ত\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "ফরমেট করা হয়েছে\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "ফরমেট করা হয়নি\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "মাউন্ট করা হয়েছে\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2805,7 +2817,7 @@ msgstr ""
"লুপব্যাক ফাইল(গুলি):\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2814,27 +2826,27 @@ msgstr ""
"পার্টিশন সাধারণভাবে বুট হয়েছে\n"
" (MS-DOS বুটের জনে, lilo-র জন্য নয়)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "লেভেল %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "চাঙ্ক সাইজ %d কিলোবাইট\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-ডিস্কসমূহ %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "লুপব্যাক ফাইলের নাম: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2847,7 +2859,7 @@ msgstr ""
"ড্রাইভার পার্টিশন। আপনার উচিত হবে\n"
"এটাকে এটা ছেড়ে দেয়া।\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2860,73 +2872,73 @@ msgstr ""
"পার্টিশন হচ্ছে আপনার\n"
"সিস্টেমের ডুয়াল-বুটিং এর জন্য।\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "শুধুমাত্র পড়া যাবে"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "সাইজ: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "জ্যামিতি: %s-গুলি সিলিন্ডার, %s-গুলি হেড, %s-গুলি সেক্টর\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "তথ্য:"
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-ডিস্কসমূহ %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "পার্টিশন টেবিলের ধরণ: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "%d চ্যানেলে %d আইডিতে\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "ফাইল সিস্টেমের এনক্রিপশন কী"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "আপনার ফাইল সিস্টেমের এনক্রিপশন কী পছন্দ করুন"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "এই এনক্রিপশন কী টি খুবই সাধারণ (অবশ্যই %d অক্ষর বড় হতে হবে)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "এনক্রিপশন কীগুলি মিলছেনা"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "এনক্রিপশন কী"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "এনক্রিপশন কী (পুনরায়)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3591,9 +3603,9 @@ msgstr "ট্রাবল শুটিং"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "নোটিশ"
@@ -6963,21 +6975,23 @@ msgid "Choose a file"
msgstr "একটি ফাইল পছন্দ করুন"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "যোগ"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "পরিবর্তন"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "মুছে ফেলো"
@@ -9048,17 +9062,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "%s -এ আপনাকে স্বাগতম"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "প্রথমে লজিকাল ভলিউম সরিয়ে ফেলুন\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10117,7 +10136,7 @@ msgstr "IP প্যারামিটারসমূহ"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP ঠিকানাসমূহ"
@@ -10617,7 +10636,7 @@ msgstr ""
msgid "Host name (optional)"
msgstr "হোস্টের নাম (ঐচ্ছিক)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "হোস্টের নাম"
@@ -18265,7 +18284,9 @@ msgstr ""
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "কনফিগারেশন বদলানো হয়েছে - clusternfs/dhcpd আবার শুরু করবো? "
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "সমস্যা!"
@@ -19254,7 +19275,7 @@ msgstr "কোথায়"
msgid "When"
msgstr "কখন"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "আরো অপশন"
@@ -19992,23 +20013,23 @@ msgstr ""
msgid "Drakbackup"
msgstr "ড্রেকব্যাক-আপ"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/ফাইল (_ফ)"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/ফাইল/প্রস্থান (_প)"
# X11 keysyms must be used here;
# bengali letter "প" is 0x10009aa
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>0x10009aa"
@@ -20129,7 +20150,7 @@ msgstr "ম্যান্ড্রিব লিনাক্স নিয়ন্
msgid "Synchronization tool"
msgstr "সমন্বয়কারী সফটওয়ার"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "স্বয়ংসম্পূর্ণ সফটওয়ার"
@@ -20218,7 +20239,7 @@ msgid "Kernel:"
msgstr "কার্ণেল:"
# সাম
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -20233,17 +20254,17 @@ msgstr ""
"আপনার রিপোর্টে lspci আউটপুট, কার্নেল সংস্করণ এবং /proc/cpuinfo জাতীয় প্রয়োজনীয় "
"তথ্য সংযুক্ত করুন।"
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "রিপোর্ট"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "ইনস্টল করা নেই"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "প্যাকেজ ইনস্টল করা নেই"
@@ -20468,7 +20489,7 @@ msgstr "নিষ্ক্রিয়"
msgid "Media class"
msgstr "মিডিয়া শ্রেণী"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "মডিউলের নাম"
@@ -20707,122 +20728,6 @@ msgstr ""
"আপনি সকল চলন্ত প্রোগ্রাম বন্ধ করতে যাচ্ছে এবং আপনার বর্তমান সেশন হারাতে যাচ্ছেন। "
"আপনি কি আসলেই নিশ্চিত্‍ যে আপনি dm সার্ভিস পুনরায় চালু করতে যাচ্ছেন?"
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "ড্রেকফ্লপি"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "বুট ডিস্ক তৈরি"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "সাধারণ"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "ডিভাইস"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "কার্ণেল সংস্করণ"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "পছন্দ"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "অগ্রসর পছন্দ"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "আকার"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "Mkinitrd'র ঐচ্ছিক আর্গুমেন্ট"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "জোরপূর্বক"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "রেইড (RAID) মডিউল বাদ দাও"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "যদি প্রয়োজন হয়"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "SCSI মডিউল বাদ দাও"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "একটি মডিউল সংযুক্ত করুন"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "একটি মডিউল সরিয়ে ফেলুন"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "নিশ্চিত হোন যে ডিভাইস %s এর জন্য কোন মিডিয়া উপস্থিত আছে"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"%s ডিভাইসের জন্য কোন মিডিয়াম নেই অথবা তার লেখার অনুমতি নেই।\n"
-"অনুগ্রহ করে একটি প্রবেশ করান।"
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "ফর্ক করতে ব্যর্থ: %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "ফ্লপি তৈরি সম্পন্ন হয়েছে"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "বুট ফ্লপি তৈরি সফলভাবে সম্পন্ন হয়েছে \n"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"mkbootdisk সঠিকভাবে বন্ধ করতে ব্যর্থ:\n"
-"\n"
-"<span foreground=\"লাল\"><tt>%s</tt></span>"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -21484,6 +21389,240 @@ msgstr ""
"%s দেখানো যাবে না \n"
"এই ধরণের কোন সহায়ক এন্ট্রি নেই\n"
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -24630,6 +24769,11 @@ msgstr "প্রোগ্রাম ত্রুটিসমূহ"
msgid "FPU"
msgstr "এফপিউ"
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "ডিভাইস"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -26075,27 +26219,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr "আপনার স্কেনার(গুলি) নেটওয়ার্কে বরাদ্দ থাকবে না।"
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "\"%s\" হার্ডওয়্যার শ্রেণীর কিছু ডিভাইস অপসরণ করা হয়েছে:\n"
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr "- %s অপসারিত হয়েছে\n"
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "কিছু ডিভাইস সমূহ যুক্ত করা হয়েছে: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr "- %s যুক্ত করা হয়েছে\n"
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "হার্ডওয়্যারের অনুসন্ধান চলছে"
@@ -26264,6 +26408,76 @@ msgstr ""
msgid "Installation failed"
msgstr "ইনস্টলেশন ব্যর্থ হয়েছে"
+#~ msgid "drakfloppy"
+#~ msgstr "ড্রেকফ্লপি"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "বুট ডিস্ক তৈরি"
+
+#~ msgid "General"
+#~ msgstr "সাধারণ"
+
+#~ msgid "Kernel version"
+#~ msgstr "কার্ণেল সংস্করণ"
+
+#~ msgid "Preferences"
+#~ msgstr "পছন্দ"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "অগ্রসর পছন্দ"
+
+#~ msgid "Size"
+#~ msgstr "আকার"
+
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "Mkinitrd'র ঐচ্ছিক আর্গুমেন্ট"
+
+#~ msgid "force"
+#~ msgstr "জোরপূর্বক"
+
+#~ msgid "omit raid modules"
+#~ msgstr "রেইড (RAID) মডিউল বাদ দাও"
+
+#~ msgid "if needed"
+#~ msgstr "যদি প্রয়োজন হয়"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "SCSI মডিউল বাদ দাও"
+
+#~ msgid "Add a module"
+#~ msgstr "একটি মডিউল সংযুক্ত করুন"
+
+#~ msgid "Remove a module"
+#~ msgstr "একটি মডিউল সরিয়ে ফেলুন"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "নিশ্চিত হোন যে ডিভাইস %s এর জন্য কোন মিডিয়া উপস্থিত আছে"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "%s ডিভাইসের জন্য কোন মিডিয়াম নেই অথবা তার লেখার অনুমতি নেই।\n"
+#~ "অনুগ্রহ করে একটি প্রবেশ করান।"
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "ফর্ক করতে ব্যর্থ: %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "ফ্লপি তৈরি সম্পন্ন হয়েছে"
+
+#~ msgid "The creation of the boot floppy has been successfully completed \n"
+#~ msgstr "বুট ফ্লপি তৈরি সফলভাবে সম্পন্ন হয়েছে \n"
+
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "mkbootdisk সঠিকভাবে বন্ধ করতে ব্যর্থ:\n"
+#~ "\n"
+#~ "<span foreground=\"লাল\"><tt>%s</tt></span>"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr "আপনি LVM লজিকাল ভলিউমকে %s মাউন্ট পয়েন্ট হিসেবে ব্যবহার করতে পারবেননা"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 3318e6ce3..22060c288 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-07-04 16:14+0200\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandriva.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -191,12 +191,13 @@ msgstr ""
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -266,8 +267,8 @@ msgid "No CDROM support"
msgstr "Ne m'eus ket implij ar CD-ROMoù"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Lennit aketus !"
@@ -617,11 +618,11 @@ msgstr "Nullañ"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Skoazell"
@@ -760,7 +761,7 @@ msgstr "hini all"
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Gortozit mar plij"
@@ -864,7 +865,7 @@ msgstr "Didalvout eo « Strishaat dibarzhoù al linenn urzhiañ » hep tremeng
msgid "The passwords do not match"
msgstr "An tremegerioù ne glot ket"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
@@ -997,8 +998,7 @@ msgstr "Profil rouedad"
msgid "Label"
msgstr "Skridennad"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Dre ziouer"
@@ -1341,7 +1341,7 @@ msgstr "Lañsañ userdrake"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -1968,12 +1968,12 @@ msgid "Server: "
msgstr "Servijer : "
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Poent marc'hañ : "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Dibarzhoù : %s"
@@ -2061,7 +2061,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Goullo"
@@ -2136,34 +2136,34 @@ msgstr "Tremen er mod mailh"
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Kuitaat hep enrollañ"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivañ an daolenn barzhañ ?"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Mennout a rit skrivañ kemmoù /etc/fstab"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ret eo deoc'h adloc'hañ evit ma talvezo kemmoù an daolenn barzhañ"
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2318,12 +2318,12 @@ msgstr "Krouiñ ur parzhadur nevez"
msgid "Start sector: "
msgstr "Rann kregiñ : "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "Ment e Mo : "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroù : "
@@ -2460,206 +2460,218 @@ msgstr "Dibabit da be LVM ouzhpennañ"
msgid "LVM name?"
msgstr "Anv LVM ?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-mañ evit saveteiñ"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Saveteiñ"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiñ : "
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "Roit ur anv restr"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiñ all endeo, dibabit unan all"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "Ar restr a zo endeo. E implijout ?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "Dibarzhoù marc'hañ"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "A bep sort"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "trobarzhell"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "live"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, c-format
msgid "chunk size in KiB"
msgstr "ment diaoz (KiO)"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezh : arvarus eo an obererezh-mañ."
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "Peseurt eo ar parzhadur ?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'hañ a-raok ma talvezo ar c'hemm"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezañ skrivet war bladenn eo taolenn barzhañ an ardivink %s !"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiñ ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "Dilec'hiañ retroù er parzhadur nevez"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "Kuzhat ar restroù"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "O tilec'hiañ retroù er parzhadur nevez"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "Adskrivañ %s"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "Lemel %s"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "ar parzhadur %s 'zo %s bremañ"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Kemmet eo niverennoù ar parzhadurioù : "
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Trobarzhell : "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Devfs name: "
msgstr "Anv DevFS : "
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr "Anv al levrenn : "
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Seurt : "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Anv : "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiñ : rann %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Ment : %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Kranenn %d da %d\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Furmadet\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "N'eo ket furmadet\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Marc'het\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2668,7 +2680,7 @@ msgstr ""
"Restr(où) saveteiñ :\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2677,27 +2689,27 @@ msgstr ""
"Parzhadur loc'het dre ziouer\n"
" (evit loc'hañ MS-DOS, ket evit lilo)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Ment diaoz %d KiO\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "Pladennoù RAID %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiñ : %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2706,7 +2718,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2715,74 +2727,74 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Lenn-hepken"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Ment : %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Titouroù : "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "Pladennoù LVM %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhañ : %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "war kanol %d Nn %d\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "Alc'hwez enrinegadur ar reizhiad restroù"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Dibab hoc'h alc'hwez enrinegadur ar reizhiad restroù"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Re eeun eo an alc'hwez enrinegadur-se (%d arouezenn a zo ret d'an nebeutañ)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "An alc'hwezoù enrinegadur ne glot ket"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Alc'hwez enrinegadur"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "Alc'hwez enrinegadur (adarre)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3407,9 +3419,9 @@ msgstr ""
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Ho evezh"
@@ -6269,21 +6281,23 @@ msgid "Choose a file"
msgstr "Dibabit ur restr"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Ouzhpennañ"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Kemmañ"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Dilemel"
@@ -8329,17 +8343,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "Degemer e %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Lemel al levrenn poellek da gentañ\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -9353,7 +9372,7 @@ msgstr "Kefluniadur IP"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "Chomlec'h IP"
@@ -9815,7 +9834,7 @@ msgstr ""
msgid "Host name (optional)"
msgstr "Anv ostiz (diret)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Anv an ostiz"
@@ -16280,7 +16299,9 @@ msgstr ""
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Kefluniadur kemmet - adloc'hañ clusternfs/dhcpd ?"
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "Fazi !"
@@ -17191,7 +17212,7 @@ msgstr "Pelec'h"
msgid "When"
msgstr "Pa"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Dibarzhoù a-gresk"
@@ -17896,21 +17917,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "Drakbackup"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Restr"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Restr/_Kuitaat"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -18024,7 +18045,7 @@ msgstr "Kreizenn ren Mandriva Linux"
msgid "Synchronization tool"
msgstr ""
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr ""
@@ -18108,7 +18129,7 @@ msgstr "Pakad :"
msgid "Kernel:"
msgstr "Kalon :"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -18118,17 +18139,17 @@ msgid ""
"version, and /proc/cpuinfo."
msgstr ""
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "Dezrevell"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "N'eo ket staliet"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "N'eo ket staliet ar pakad"
@@ -18351,7 +18372,7 @@ msgstr "Marvaat "
msgid "Media class"
msgstr ""
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "Anv ar mollad"
@@ -18573,117 +18594,6 @@ msgid ""
"Are you really sure that you want to restart the dm service?"
msgstr ""
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "krouidigezh ar bladenn lañsañ"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "Pennañ"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Trobarzhell"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "Doare ar galon"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Dibarzhoù"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "Dibarzhoù barek"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Ment"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr ""
-
-#: standalone/drakfloppy:141
-#, fuzzy, c-format
-msgid "force"
-msgstr "Dilec'hiañ"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "raid ebet"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "ma zo red"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "scsi ebet"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "Ouzhpennañ ur mollad"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "Lemel ur mollad"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr ""
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "N'eo ket fork : %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Echu eo krouidigezh ar bladenn lañsañ"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr ""
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -19250,6 +19160,240 @@ msgid ""
". No Help entry of this type\n"
msgstr ""
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -21938,6 +22082,11 @@ msgstr "Bugoù"
msgid "FPU"
msgstr ""
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Trobarzhell"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -23280,27 +23429,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr ""
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr "- Dilemet oa %s\n"
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "Ouzhpennet oa an trobarzhelloù zo : %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr "- Ouzhpennet oa %s\n"
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "Emaon o klask ar perientel"
@@ -23464,6 +23613,52 @@ msgstr ""
msgid "Installation failed"
msgstr " Sac'het eo ar staliadur"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "krouidigezh ar bladenn lañsañ"
+
+#~ msgid "General"
+#~ msgstr "Pennañ"
+
+#~ msgid "Kernel version"
+#~ msgstr "Doare ar galon"
+
+#~ msgid "Preferences"
+#~ msgstr "Dibarzhoù"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "Dibarzhoù barek"
+
+#~ msgid "Size"
+#~ msgstr "Ment"
+
+#, fuzzy
+#~ msgid "force"
+#~ msgstr "Dilec'hiañ"
+
+#~ msgid "omit raid modules"
+#~ msgstr "raid ebet"
+
+#~ msgid "if needed"
+#~ msgstr "ma zo red"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "scsi ebet"
+
+#~ msgid "Add a module"
+#~ msgstr "Ouzhpennañ ur mollad"
+
+#~ msgid "Remove a module"
+#~ msgstr "Lemel ur mollad"
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "N'eo ket fork : %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "Echu eo krouidigezh ar bladenn lañsañ"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr "Ne mennit ket implij ul levrenn poellek evit ar poent marc'hañ %s"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 3e6e3a720..0ec3097ef 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bs\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-02-26 11:13+0100\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
"Language-Team: Bosanski <lokal@lugbih.org>\n"
@@ -223,12 +223,13 @@ msgstr "Molim sačekajte, otkrivam i podešavam uređaje..."
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -313,8 +314,8 @@ msgid "No CDROM support"
msgstr "Nema CDROM podrške"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Pročitajte pažljivo!"
@@ -669,11 +670,11 @@ msgstr "Odustani"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Pomoć"
@@ -821,7 +822,7 @@ msgstr ""
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Molim sačekajte"
@@ -943,7 +944,7 @@ msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
msgid "The passwords do not match"
msgstr "Šifre se ne poklapaju"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
@@ -1076,8 +1077,7 @@ msgstr "Mrežni profil"
msgid "Label"
msgstr "Oznaka"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Default"
@@ -1433,7 +1433,7 @@ msgstr "Pokreni userdrake"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -2093,12 +2093,12 @@ msgid "Server: "
msgstr "Server:"
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
@@ -2186,7 +2186,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Prazno"
@@ -2261,37 +2261,37 @@ msgstr "Prebaci u ekspertni mod"
msgid "Continue anyway?"
msgstr "Svejedno nastavljate?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-"Trebali biste formatirati particiju %s.\n"
-"U suprotnom tačka montiranja %s neće biti zapisana u fstab.\n"
-"Da svejedno izađem?"
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Izlaz bez spašavanja"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Izlazite bez pisanja tabele particija?"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Želite li spasiti izmjene u /etc/fstab ?"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+"Trebali biste formatirati particiju %s.\n"
+"U suprotnom tačka montiranja %s neće biti zapisana u fstab.\n"
+"Da svejedno izađem?"
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2446,12 +2446,12 @@ msgstr "Napravi novu particiju"
msgid "Start sector: "
msgstr "Početni sektor: "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "Veličina u MB: "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Tip datotečnog sistema: "
@@ -2598,100 +2598,112 @@ msgstr "Izaberite postojeći LVM na koji ćete dodati"
msgid "LVM name?"
msgstr "Naziv LVMa?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Ova particija se ne može koristiti za loopback"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Naziv loopback datoteke: "
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "Dajte naziv datoteke"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Datoteku već koristi drugi loopback, izaberite neku drugu"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Želite li je koristiti?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "Opcije montiranja"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "Razno"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "uređaj"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "nivo"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, c-format
msgid "chunk size in KiB"
msgstr "veličina chunka u KiB"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna."
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "Prebaci datoteke na novu particiju"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2700,108 +2712,108 @@ msgstr ""
"Direktorij %s već sadrži neke podatke\n"
"(%s)"
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "Premještam datoteke na novu particiju"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je od sada poznata kao %s"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Oznake particija su promijenjene: "
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Uređaj: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Devfs name: "
msgstr "Devfs ime: "
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr "Oznaka volumena: "
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Tip: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Ime: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sector %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Formatirana\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "Nije formatirana\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Montirana\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2810,7 +2822,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2819,27 +2831,27 @@ msgstr ""
"Particija koja se boota po defaultu\n"
" (za MS-DOS boot, ne za lilo)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Veličina chunka %d KiB\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Naziv loopback datoteke: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2852,7 +2864,7 @@ msgstr ""
"particija Driver particija. Vjerovatno\n"
"biste je trebali ostaviti na miru.\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2865,75 +2877,75 @@ msgstr ""
"particija je za\n"
"dvojni boot vašeg sistema.\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Samo za čitanje"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Info: "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "na kanalu %d id %d\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "Ključ za kodiranje datotečnog sistema"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaš ključ za kodiranje datotečnog sistema"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ovaj ključ enkripcije je previše jednostavan (mora imati najmanje %d "
"karaktera)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "Ključevi enkripcije se ne poklapaju"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Ključ enkripcije"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "Ključ enkripcije (još jednom)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3592,9 +3604,9 @@ msgstr "Kako ukloniti problem?"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Upozorenje"
@@ -7555,21 +7567,23 @@ msgid "Choose a file"
msgstr "Izaberi datoteku"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Dodaj"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Izmijeni"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Pobriši"
@@ -9626,17 +9640,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logičke volumene\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10679,7 +10698,7 @@ msgstr "IP parametri"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP adresa"
@@ -11183,7 +11202,7 @@ msgstr ""
msgid "Host name (optional)"
msgstr "Ime računara (opcionalno)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Ime računara"
@@ -18637,7 +18656,9 @@ msgstr "/etc/hosts.allow i /etc/hosts.deny su već podešeni - bez izmjene"
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Konfiguracija je promijenjena - da restartujem clusternfs/dhcpd?"
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "Greška!"
@@ -19632,7 +19653,7 @@ msgstr "Gdje"
msgid "When"
msgstr "Kada"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Više opcija"
@@ -20364,21 +20385,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "Drakbackup"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Datoteka"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -20499,7 +20520,7 @@ msgstr "Mandriva Linux Kontrolni centar"
msgid "Synchronization tool"
msgstr "Alat za sinhroniziranje"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "Samostalni alati"
@@ -20583,7 +20604,7 @@ msgstr "Paket:"
msgid "Kernel:"
msgstr "Kernel:"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -20599,17 +20620,17 @@ msgstr ""
"Korisne stvari koje možete uključiti u vaš izvještaj su izlaz naredbe lspci, "
"verzija kernela i sadržaj datoteke /proc/cpuinfo."
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "Izvještaj"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "Nije instaliran"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "Paket nije instaliran"
@@ -20834,7 +20855,7 @@ msgstr "Isključi"
msgid "Media class"
msgstr "Klasa medija"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "Naziv modula"
@@ -21069,122 +21090,6 @@ msgstr ""
"Sada ćete zatvoriti sve pokrenute programe i izgubiti vašu sesiju. Da li ste "
"stvarno sigurni da želite restartovati dm servis ?"
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "Pravljenje boot diskete"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "Općenito"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Uređaj"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "Kernel verzija"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Opcije"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "Napredne opcije"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Veličina"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "Mkinitrd opcionalni argumenti"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "prisili"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "izostavi raid module"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "ako je potrebno"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "izostavi scsi module"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "Dodaj modul"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "Ukloni modul"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Provjerite da li je ubačena disketa za ovaj uređaj %s"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"Nema medija ili je zabranjeno pisanje na medij za uređaj %s.\n"
-"Molim ubacite neki medij."
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Ne mogu izvrsiti fork: %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Pravljenje floppy-ja završeno"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Pravljenje boot diskete je uspješno završeno \n"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Ne mogu ispravno zatvoriti mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -21840,6 +21745,240 @@ msgstr ""
"Ne mogu prikazati %s \n"
". Nema datoteke za Pomoć pod ovim imenom\n"
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -25002,6 +25141,11 @@ msgstr "Bugovi"
msgid "FPU"
msgstr "FPU"
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Uređaj"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -26404,27 +26548,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr "Vaši skeneri neće biti dostupni putem mreže."
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Uklonjeni su neki uređaji u \"%s\" klasi hardvera:\n"
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr "- %s je uklonjen\n"
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "Dodani su neki uređaji: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr "- %s je dodan\n"
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "Hardversko probanje u toku"
@@ -26588,6 +26732,76 @@ msgstr ""
msgid "Installation failed"
msgstr "Instalacija nije uspjela"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "Pravljenje boot diskete"
+
+#~ msgid "General"
+#~ msgstr "Općenito"
+
+#~ msgid "Kernel version"
+#~ msgstr "Kernel verzija"
+
+#~ msgid "Preferences"
+#~ msgstr "Opcije"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "Napredne opcije"
+
+#~ msgid "Size"
+#~ msgstr "Veličina"
+
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "Mkinitrd opcionalni argumenti"
+
+#~ msgid "force"
+#~ msgstr "prisili"
+
+#~ msgid "omit raid modules"
+#~ msgstr "izostavi raid module"
+
+#~ msgid "if needed"
+#~ msgstr "ako je potrebno"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "izostavi scsi module"
+
+#~ msgid "Add a module"
+#~ msgstr "Dodaj modul"
+
+#~ msgid "Remove a module"
+#~ msgstr "Ukloni modul"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "Provjerite da li je ubačena disketa za ovaj uređaj %s"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "Nema medija ili je zabranjeno pisanje na medij za uređaj %s.\n"
+#~ "Molim ubacite neki medij."
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "Ne mogu izvrsiti fork: %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "Pravljenje floppy-ja završeno"
+
+#~ msgid "The creation of the boot floppy has been successfully completed \n"
+#~ msgstr "Pravljenje boot diskete je uspješno završeno \n"
+
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "Ne mogu ispravno zatvoriti mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr "Ne možete koristiti LVM logički volumen za tačku montiranja %s"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 916646aab..84ccef97b 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: ca\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-04-02 00:51+0200\n"
"Last-Translator: Albert Astals Cid <astals11@terra.es>\n"
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -195,12 +195,13 @@ msgstr "Espereu si us plau, s'està detectant i configurant els dispositius..."
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -271,8 +272,8 @@ msgid "No CDROM support"
msgstr "Sense suport CDROM"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
@@ -635,11 +636,11 @@ msgstr "Cancel·la"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Ajuda"
@@ -788,7 +789,7 @@ msgstr "altre"
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Espereu si us plau"
@@ -908,7 +909,7 @@ msgstr ""
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
@@ -1041,8 +1042,7 @@ msgstr "Perfil de xarxa"
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Predeterminat"
@@ -1401,7 +1401,7 @@ msgstr "Executa userdrake"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -2070,12 +2070,12 @@ msgid "Server: "
msgstr "Servidor: "
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
@@ -2164,7 +2164,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Buit"
@@ -2242,37 +2242,37 @@ msgstr "Canvia al mode expert"
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense escriure la taula de particions?"
#
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voleu desar les modificacions a /etc/fstab"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldrà tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2433,12 +2433,12 @@ msgstr "Crea una nova partició"
msgid "Start sector: "
msgstr "Sector d'inici: "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
@@ -2586,102 +2586,114 @@ msgstr "Escolliu un LVM existent al qual afegir-ho"
msgid "LVM name?"
msgstr "Nom LVM?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Aquesta partició no es pot utilitzar per al loopback"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
#
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "Proporcioneu un nom de fitxer"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Un altre loopback ja està utilitzant el fitxer, escolliu-ne un altre"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
#
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "Opcions de muntatge"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "Diversos"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "dispositiu"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "nivell"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, c-format
msgid "chunk size in KiB"
msgstr "mida del fragment en KB"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operació és perillosa."
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "Quin tipus de particionament voleu?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldrà tornar a arrencar per tal que les modificacions tinguin efecte"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriurà al disc!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
#
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "Mou els fitxers a la nova partició"
#
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "Fitxers ocults"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2691,108 +2703,108 @@ msgstr ""
"(%s)"
#
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "S'estan movent els fitxers a la nova partició"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "S'està copiant %s"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "S'està esborrant %s"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "la partició %s ara és %s"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr ""
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Dispositiu: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Devfs name: "
msgstr "Nom devfs: "
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr ""
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat de DOS: %s (només és una suposició)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Tipus: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Nom: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Mida: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindre %d a %d\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Formatat\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Muntat\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2801,7 +2813,7 @@ msgstr ""
"Fitxer(s) de loopback:\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2810,27 +2822,27 @@ msgstr ""
"Partició arrencada per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Mida del fragment %d KB\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2843,7 +2855,7 @@ msgstr ""
"una partició de programes de control. Potser\n"
"és millor que no la toqueu.\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2856,53 +2868,53 @@ msgstr ""
"Bootstrap és per arrencar\n"
"el vostre sistema en dual.\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Només lectura"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Mida: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Informació: "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discs LVM %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "al canal %d amb id %d\n"
#
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "Clau de xifratge del sistema de fitxers: "
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Escolliu la clau de xifratge del sistema de fitxers"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
@@ -2910,23 +2922,23 @@ msgstr ""
"caràcters)"
#
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "Les claus de xifratge no coincideixen"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Clau de xifratge"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "Clau de xifratge (un altre cop)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3604,9 +3616,9 @@ msgstr "Resolució de problemes"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Advertència"
@@ -7615,23 +7627,25 @@ msgid "Choose a file"
msgstr "Trieu un fitxer"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Afegeix"
#
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Modifica"
#
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Elimina"
@@ -9701,17 +9715,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lògics\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10767,7 +10786,7 @@ msgstr "Paràmetres IP"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "Adreça IP"
@@ -11249,7 +11268,7 @@ msgstr ""
msgid "Host name (optional)"
msgstr "Nom de l'ordinador (opcional)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Nom de l'ordinador"
@@ -18729,7 +18748,9 @@ msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "La configuració ha canviat; voleu reiniciar el clúster nfs/dhcpd?"
#
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "S'ha produït un error!"
@@ -19748,7 +19769,7 @@ msgid "When"
msgstr "Quan"
#
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Més opcions"
@@ -20523,21 +20544,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "Drakbackup"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Fitxer"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Fitxer/_Surt"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -20657,7 +20678,7 @@ msgstr "Centre de Control Mandriva Linux"
msgid "Synchronization tool"
msgstr "Eina de sincronització"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "Eines autònomes"
@@ -20743,7 +20764,7 @@ msgstr "Paquet: "
msgid "Kernel:"
msgstr "Nucli:"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, fuzzy, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -20758,19 +20779,19 @@ msgstr ""
"s'enviarà al servidor."
#
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "Informa"
#
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "No instal·lat"
#
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "El paquet no està instal·lat"
@@ -20999,7 +21020,7 @@ msgstr "Inhabilita"
msgid "Media class"
msgstr "Tipus de mitjà"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "Nom del mòdul"
@@ -21235,123 +21256,6 @@ msgid ""
"Are you really sure that you want to restart the dm service?"
msgstr ""
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "Creació del disc d'arrencada"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "General"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Dispositiu"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "Versió del nucli"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Preferències"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "Opcions avançades"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Mida"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "Arguments opcionals de l'mkinitrd"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "imposa"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "omet els mòduls RAID"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "si cal"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "omet els mòduls SCSI"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "Afegeix un mòdul"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "Elimina un mòdul"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"No hi ha cap suport al dispositiu %s o està protegit contra escriptura.\n"
-"Si us plau, inseriu-ne un."
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "No es pot bifurcar: %s"
-
-#
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Creació del disquet completa"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "La creació del disc d'arrencada s'ha completat amb èxit \n"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"No es pot tancar l'mkbootdisk correctament: \n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -22038,6 +21942,240 @@ msgid ""
". No Help entry of this type\n"
msgstr ""
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -24816,6 +24954,11 @@ msgstr "Errors"
msgid "FPU"
msgstr "FPU"
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Dispositiu"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -26252,27 +26395,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr "Els vostre(s) escànner(s) no estaran disponibles a la xarxa."
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "S'han suprimit alguns dispositius en la classe \"%s\" de maquinari:\n"
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr ""
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "S'han afegit alguns dispositius: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr "- s'ha afegit %s\n"
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "Comprovació de maquinari en curs"
@@ -26438,6 +26581,77 @@ msgstr ""
msgid "Installation failed"
msgstr "La instal·lació ha fallat"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "Creació del disc d'arrencada"
+
+#~ msgid "General"
+#~ msgstr "General"
+
+#~ msgid "Kernel version"
+#~ msgstr "Versió del nucli"
+
+#~ msgid "Preferences"
+#~ msgstr "Preferències"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "Opcions avançades"
+
+#~ msgid "Size"
+#~ msgstr "Mida"
+
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "Arguments opcionals de l'mkinitrd"
+
+#~ msgid "force"
+#~ msgstr "imposa"
+
+#~ msgid "omit raid modules"
+#~ msgstr "omet els mòduls RAID"
+
+#~ msgid "if needed"
+#~ msgstr "si cal"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "omet els mòduls SCSI"
+
+#~ msgid "Add a module"
+#~ msgstr "Afegeix un mòdul"
+
+#~ msgid "Remove a module"
+#~ msgstr "Elimina un mòdul"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "No hi ha cap suport al dispositiu %s o està protegit contra escriptura.\n"
+#~ "Si us plau, inseriu-ne un."
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "No es pot bifurcar: %s"
+
+#
+#~ msgid "Floppy creation completed"
+#~ msgstr "Creació del disquet completa"
+
+#~ msgid "The creation of the boot floppy has been successfully completed \n"
+#~ msgstr "La creació del disc d'arrencada s'ha completat amb èxit \n"
+
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "No es pot tancar l'mkbootdisk correctament: \n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr "No podeu utilitzar un volum lògic LVM per al punt de muntatge %s"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 2c616d428..b8ba3de03 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: cs\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-04-02 10:06+0200\n"
"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -228,12 +228,13 @@ msgstr "Čekejte prosím, vyhledávám a nastavuji zařízení..."
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -318,8 +319,8 @@ msgid "No CDROM support"
msgstr "Bez podpory CDROM"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Čtěte pozorně!"
@@ -676,11 +677,11 @@ msgstr "Zrušit"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Nápověda"
@@ -827,7 +828,7 @@ msgstr "jiné"
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Prosím počkejte"
@@ -949,7 +950,7 @@ msgstr ""
msgid "The passwords do not match"
msgstr "Hesla nejsou shodná"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Zkuste to znovu, prosím"
@@ -1082,8 +1083,7 @@ msgstr "Síťový profil"
msgid "Label"
msgstr "Značka"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Výchozí"
@@ -1437,7 +1437,7 @@ msgstr "Spustit UserDrake"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -2101,12 +2101,12 @@ msgid "Server: "
msgstr "Server: "
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Adresář připojení (mount point): "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Volby: %s"
@@ -2194,7 +2194,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Prázdný"
@@ -2269,37 +2269,37 @@ msgstr "Přepnout se do režimu 'expert'"
msgid "Continue anyway?"
msgstr "Přesto chcete pokračovat?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-"Měli byste naformátovat oddíl %s.\n"
-"Jinak nebude do tabulky fstab zapsána položka pro přípojný bod %s.\n"
-"Chcete přesto skončit?"
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Konec bez uložení"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Chcete skončit bez zapsání do tabulky oddílů?"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Chcete uložit úpravy souboru /etc/fstab?"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Aby se projevily změny v tabulce oddílů, musíte restartovat počítač"
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+"Měli byste naformátovat oddíl %s.\n"
+"Jinak nebude do tabulky fstab zapsána položka pro přípojný bod %s.\n"
+"Chcete přesto skončit?"
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2455,12 +2455,12 @@ msgstr "Vytvořit nový oddíl"
msgid "Start sector: "
msgstr "Počáteční sektor: "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "Velikost v MB: "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Souborový systém: "
@@ -2601,97 +2601,109 @@ msgstr "Zvolte existující LVM pro přidání"
msgid "LVM name?"
msgstr "Název pro LVM?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Tento oddíl nemůže být použit pro loopback"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Název souboru loopbacku:"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "Zadejte název souboru"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Soubor už je používán jiným loopbackem, zvolte si jiný"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "Soubor už existuje. Mám ho použít?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "Volby pro připojení"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "Další"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "zařízení"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "úroveň"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, c-format
msgid "chunk size in KiB"
msgstr "velikost bloku v kB"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Buďte opatrní: tato akce je nebezpečná."
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "Jaký typ diskového oddílu?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Aby se změny uplatnily budete muset restartovat počítač"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Bude zapsána nová tabulka oddílů na disku %s!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Když naformátujete oddíl %s, ztratíte tím všechna jeho data"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "Přesunout soubory na nový diskový oddíl"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "Schovat soubory"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2700,108 +2712,108 @@ msgstr ""
"Adresář %s již obsahuje nějaká data\n"
"(%s)"
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "Přesunuji soubory na nový diskový oddíl"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "Kopíruji %s"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "Odstraňuji %s"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "oddíl %s je nyní rozpoznán jako %s"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Oddíly byly přečíslovány: "
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Zařízení: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Devfs name: "
msgstr "Název Devfs: "
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr "Název svazku: "
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Písmeno v DOSu: %s (jenom odhad)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Typ: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Jméno: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "Začátek: sektor %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Velikost: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorů"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Od cylindru %d do cylindru %d\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Naformátovaný\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "Nenaformátovaný\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Připojený\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2810,7 +2822,7 @@ msgstr ""
"Loopback soubor(y): \n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2819,27 +2831,27 @@ msgstr ""
"Standardní startovací oddíl\n"
" (pro MS-DOS, ne pro LILO)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Úroveň %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Velikost bloku (chunk) %d kB\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID disky %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback soubor: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2852,7 +2864,7 @@ msgstr ""
"s ovladači, je lepší\n"
"no nechat neporušený.\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2865,74 +2877,74 @@ msgstr ""
"oddíl je pro spuštění\n"
"dalšího systému.\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Pouze pro čtení"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Velikost: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylindrů, %s hlav, %s sektorů\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Informace: "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM disky %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabulky oddílů: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "na kanále %d id %d\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "Klíč pro šifrovaný souborový systém"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Vyberte si šifrovací klíč pro souborový systém"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Tento šifrovací klíč je příliš jednoduchý (musí být alespoň %d znaků dlouhý)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "Šifrovací klíče se neshodují"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Šifrovací klíč"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "Šifrovací klíč (znovu)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3594,9 +3606,9 @@ msgstr "Řešení problémů"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Varování"
@@ -7535,21 +7547,23 @@ msgid "Choose a file"
msgstr "Vyberte soubor"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Přidat"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Změnit"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Odebrat"
@@ -9606,17 +9620,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "Vítá vás %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Odeberte nejdříve logické disky\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10661,7 +10680,7 @@ msgstr "Parametry IP"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP adresa"
@@ -11163,7 +11182,7 @@ msgstr "Jedním s posledních kroků je vložení IP adresy pro DNS server(y)."
msgid "Host name (optional)"
msgstr "Název počítače (volitelné)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Název počítače"
@@ -18596,7 +18615,9 @@ msgstr "/etc/hosts.allow a /etc/hosts.deny jsou již nastaveny - beze změn"
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Změnilo se nastavení - restartovat clusternfs/dhcpd?"
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "Chyba!"
@@ -19587,7 +19608,7 @@ msgstr "Kde"
msgid "When"
msgstr "Kdy"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Další volby"
@@ -20319,21 +20340,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "DrakBackup"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Soubor"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Soubor/U_končit"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>K"
@@ -20452,7 +20473,7 @@ msgstr "Ovládací centrum Mandriva Linux"
msgid "Synchronization tool"
msgstr "Nástroj na synchronizaci"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "Samostatné nástroje"
@@ -20536,7 +20557,7 @@ msgstr "Balíček: "
msgid "Kernel:"
msgstr "Jádro: "
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -20552,17 +20573,17 @@ msgstr ""
"K nahlášené chybě je užitečné přiložit výstup příkazu lspci, verzi jádra a "
"obsah souboru /proc/cpuinfo."
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "Hlášení"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "Není instalováno"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "Balíček není nainstalován"
@@ -20787,7 +20808,7 @@ msgstr "Vypnout"
msgid "Media class"
msgstr "Třída médií"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "Název modulu"
@@ -21022,122 +21043,6 @@ msgstr ""
"Chystáte se zavřít všechny běžící programy a ztratit vaše současné sezení. "
"Jste si opravdu jisti, že chcete restartovat službu dm?"
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "Vytváření zaváděcí diskety"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "Obecné"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Zařízení"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "Verze jádra"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Předvolby"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "Rozšířené volby"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Velikost"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "Volitelné argumenty pro mkinitrd"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "vnutit"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "vynechat RAID moduly"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "pokud je potřeba"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "vynechat SCSI moduly"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "Přidat modul"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "Odebrat modul"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Zkontrolujte, zda v je zařízení %s vloženo médium"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"V zařízení %s není žádné médium, nebo je médium chráněno proti zápisu.\n"
-"Vložte prosím nějaké."
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Nelze provést fork: %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Vytváření diskety ukončeno"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Vytvoření zaváděcí diskety bylo úspěšně dokončeno \n"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Nelze korektně ukončit mkbootdisk: \n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -21788,6 +21693,240 @@ msgstr ""
"%s nelze zobrazit.\n"
"K této položce není žádná nápověda\n"
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -24940,6 +25079,11 @@ msgstr "Chyby"
msgid "FPU"
msgstr "FPU"
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Zařízení"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -26342,27 +26486,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr "Váš skener(y) nebude přístupný na síti."
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Některá zařízení v třídě hardware \"%s\" byla odstraněna:\n"
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr "- %s bylo odstraněno\n"
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "Některá zařízení byla přidána: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr "- %s bylo přidáno\n"
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "Probíhá detekce hardware"
@@ -26527,6 +26671,76 @@ msgstr ""
msgid "Installation failed"
msgstr "Instalace selhala"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "Vytváření zaváděcí diskety"
+
+#~ msgid "General"
+#~ msgstr "Obecné"
+
+#~ msgid "Kernel version"
+#~ msgstr "Verze jádra"
+
+#~ msgid "Preferences"
+#~ msgstr "Předvolby"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "Rozšířené volby"
+
+#~ msgid "Size"
+#~ msgstr "Velikost"
+
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "Volitelné argumenty pro mkinitrd"
+
+#~ msgid "force"
+#~ msgstr "vnutit"
+
+#~ msgid "omit raid modules"
+#~ msgstr "vynechat RAID moduly"
+
+#~ msgid "if needed"
+#~ msgstr "pokud je potřeba"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "vynechat SCSI moduly"
+
+#~ msgid "Add a module"
+#~ msgstr "Přidat modul"
+
+#~ msgid "Remove a module"
+#~ msgstr "Odebrat modul"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "Zkontrolujte, zda v je zařízení %s vloženo médium"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "V zařízení %s není žádné médium, nebo je médium chráněno proti zápisu.\n"
+#~ "Vložte prosím nějaké."
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "Nelze provést fork: %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "Vytváření diskety ukončeno"
+
+#~ msgid "The creation of the boot floppy has been successfully completed \n"
+#~ msgstr "Vytvoření zaváděcí diskety bylo úspěšně dokončeno \n"
+
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "Nelze korektně ukončit mkbootdisk: \n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr "Nelze použít LVM Logického disku na připojený bod %s"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 69a2daf15..3b806b736 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mandriva DrakX.cy\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-06-28 17:01+0200\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Cymraeg <post@meddal.com>\n"
@@ -226,12 +226,13 @@ msgstr "Arhoswch, canfod a ffurfweddu dyfeisiau..."
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -316,8 +317,8 @@ msgid "No CDROM support"
msgstr "Dim cefnogaeth CD-ROM"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"
@@ -672,11 +673,11 @@ msgstr "Diddymu"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Cymorth"
@@ -823,7 +824,7 @@ msgstr "arall"
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Arhoswch"
@@ -943,7 +944,7 @@ msgstr ""
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cyd-fynd"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Ceisiwch eto"
@@ -1076,8 +1077,7 @@ msgstr "Proffil rhwydwaith"
msgid "Label"
msgstr "Label"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Rhagosodedig"
@@ -1430,7 +1430,7 @@ msgstr "Cychwyn userdrake"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -2086,12 +2086,12 @@ msgid "Server: "
msgstr "Gweinydd:"
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
@@ -2179,7 +2179,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Gwag"
@@ -2254,38 +2254,38 @@ msgstr "Cyffredinol > Arbenigwr"
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-"Dylech fformatio rhaniad %s.\n"
-"Fel arall ni fydd mynediad i bwynt gosod %s yn cael ei ysgrifennu yn fstab.\n"
-"Gadael beth bynnag?"
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Gorffen heb gadw"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu'r tabl rhaniadau?"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bydd angen i chi ail gychwyn cyn i'r newidiadau yn eich tabl rhaniad ddigwydd"
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+"Dylech fformatio rhaniad %s.\n"
+"Fel arall ni fydd mynediad i bwynt gosod %s yn cael ei ysgrifennu yn fstab.\n"
+"Gadael beth bynnag?"
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2438,12 +2438,12 @@ msgstr "Creu rhaniad newydd"
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Math o system ffeilio"
@@ -2589,99 +2589,111 @@ msgstr "Dewis LVM presennol i ychwanegu ato"
msgid "LVM name?"
msgstr "Enw LVM"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Nid oes modd defnyddio'r rhaniad ar gyfer cylchol"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Cylch-ôl"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Enw ffeil gylchol"
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "Rhowch enw ffeil"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddefnyddio eisoes gam cylchol arall, dewiswch un arall"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "Dewisiadau gosod"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "Amrywiol"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "dyfais"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "lefel"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, c-format
msgid "chunk size in KiB"
msgstr "Maint darn yn KiB"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus."
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "Pa fath o raniad ?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ailgychwyn cyn i'r newidiadau ddod i rym"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg %s yn mynd i gael ei ysgrifennu i'r ddisg!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "Cuddio ffeiliau"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2690,108 +2702,108 @@ msgstr ""
"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
"(%s)"
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "Copïo %s"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Mae'r rhaniadau wedi eu hail-rifo"
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Dyfais: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Devfs name: "
msgstr "Enw devfs:"
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr "Label y gyfrol:"
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg DOS: %s (dim ond dyfalu)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Math: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Enw : "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Nifer clystyrau rhesymegol: %d\n"
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Wedi ei fformatio\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Gosodwyd\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2800,7 +2812,7 @@ msgstr ""
"Ffeil(iau) Cylch-ôl:\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2809,27 +2821,27 @@ msgstr ""
"Cychwyn y rhaniad fel rhagosodwyd\n"
" (ar gyfer cychwyn MS-DOS, nid ar gyfer lilo)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Maint darn %d KiB\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil gylchol: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2842,7 +2854,7 @@ msgstr ""
"yw'r rhaniad hwn. Gwell gadael\n"
"llonydd iddo.\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2855,74 +2867,74 @@ msgstr ""
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Darllen yn unig"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Gwybodaeth:"
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "Disg LVM %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tabl rhaniad math: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "ar sianel %d id %d\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml (mae'n rhaid bod o leiaf %d nod o hyd)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cyd-fynd"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Allwedd amgryptio"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3588,9 +3600,9 @@ msgstr "Datrys problemau"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Rhybudd"
@@ -7494,21 +7506,23 @@ msgid "Choose a file"
msgstr "Dewis ffeil"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Ychwanegu"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Newid"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Tynnu"
@@ -9571,17 +9585,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10630,7 +10649,7 @@ msgstr "Paramedrau IP"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "Cyfeiriad IP"
@@ -11132,7 +11151,7 @@ msgstr "Yn olaf mae modd i chi deipio cyfeiriadau IP eich gweinydd DNS."
msgid "Host name (optional)"
msgstr "Enw gwesteiwr (dewisol)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Enw gwesteiwr"
@@ -18632,7 +18651,9 @@ msgstr ""
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Newidiodd ffurfweddiad - ailgychwyn clusternfs/dhcpd?"
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "Gwall!"
@@ -19637,7 +19658,7 @@ msgstr "Lle"
msgid "When"
msgstr "Pryd"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Dewisiadau Eraill"
@@ -20371,21 +20392,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "Drakbackup"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Ffeil"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Ffeil/_Gadael"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -20504,7 +20525,7 @@ msgstr "Canolfan Rheoli Mandriva Linux"
msgid "Synchronization tool"
msgstr "Offeryn Cydamseru"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "Offer Unigol"
@@ -20588,7 +20609,7 @@ msgstr "Pecynnau"
msgid "Kernel:"
msgstr "Kernel:"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -20603,17 +20624,17 @@ msgstr ""
"Pethau defnyddiol i'w cynnwys yn yr adroddiad fyddai allbwn lspci, fersiwn y "
"cnewyllyn a /proc/cpuinfo."
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "Adroddiad"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "Heb ei osod"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "Pecyn heb ei osod"
@@ -20838,7 +20859,7 @@ msgstr "Analluogi"
msgid "Media class"
msgstr "Dosbarth y cyfrwng"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "Enw'r modiwl"
@@ -21075,122 +21096,6 @@ msgstr ""
"Rydych yn mynd i gau pob rhaglen sy'n rhedeg a cholli eich sesiwn presennol. "
"Ydych chi'n siŵr eich bod am ailgychwyn y gwasanaeth dm?"
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "Creu disg cychwyn"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "Cyffredinol"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Dyfais"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "Fersiwn cnewyllyn"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Dewisiadau"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "Dewisiadau Uwch"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Maint"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "Ymresymiad dewisol mkinitrd"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "grym"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "peidio cynnwys modiwlau raid"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "os oes angen"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "peidio cynnwys modiwlau scsi"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "Ychwanegu modiwl"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "Tynnu modiwl"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Gwnewch yn siŵr fod y deunydd ar gael ar gyfer y ddyfais %s"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r ddyfais %s.\n"
-"Rhowch un i mewn.."
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Methu fforchio: %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Creu disg meddal wedi ei gwblhau"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Mae creu'r disg meddal cychwyn wedi bod yn llwyddiant\n"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Methu cau mkbootdisk yn iawn: \n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -21849,6 +21754,240 @@ msgstr ""
"Methu dangos %s \n"
". Dim cofnod Cymorth o'r fath\n"
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -25011,6 +25150,11 @@ msgstr "Gwallau"
msgid "FPU"
msgstr "FPU (Cyd-brosesydd Rhifol)"
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Dyfais"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -26419,27 +26563,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr "Ni fydd eich sganiwr(sganwyr) ar gael ar y rhwydwaith"
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Cafodd rhai dyfeisiau yn nosbarth caledwedd\"%s\" eu tynnu:\n"
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr "- %s wedi ei dynnu\n"
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "Ychwanegwyd rhai dyfeisiau: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr "- %s wedi ei ychwanegu\n"
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "Canfod caledwedd ar waith"
@@ -26603,6 +26747,77 @@ msgstr ""
msgid "Installation failed"
msgstr "Methodd y gosod"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "Creu disg cychwyn"
+
+#~ msgid "General"
+#~ msgstr "Cyffredinol"
+
+#~ msgid "Kernel version"
+#~ msgstr "Fersiwn cnewyllyn"
+
+#~ msgid "Preferences"
+#~ msgstr "Dewisiadau"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "Dewisiadau Uwch"
+
+#~ msgid "Size"
+#~ msgstr "Maint"
+
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "Ymresymiad dewisol mkinitrd"
+
+#~ msgid "force"
+#~ msgstr "grym"
+
+#~ msgid "omit raid modules"
+#~ msgstr "peidio cynnwys modiwlau raid"
+
+#~ msgid "if needed"
+#~ msgstr "os oes angen"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "peidio cynnwys modiwlau scsi"
+
+#~ msgid "Add a module"
+#~ msgstr "Ychwanegu modiwl"
+
+#~ msgid "Remove a module"
+#~ msgstr "Tynnu modiwl"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "Gwnewch yn siŵr fod y deunydd ar gael ar gyfer y ddyfais %s"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r ddyfais %"
+#~ "s.\n"
+#~ "Rhowch un i mewn.."
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "Methu fforchio: %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "Creu disg meddal wedi ei gwblhau"
+
+#~ msgid "The creation of the boot floppy has been successfully completed \n"
+#~ msgstr "Mae creu'r disg meddal cychwyn wedi bod yn llwyddiant\n"
+
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "Methu cau mkbootdisk yn iawn: \n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr ""
#~ "Does dim modd defnyddio Cyfrol Resymegol LVM ar gyfer pwynt gosod %s"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 944d18c2e..078456dad 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: da\n"
-"POT-Creation-Date: 2005-07-01 16:44+0200\n"
+"POT-Creation-Date: 2005-07-05 16:34+0200\n"
"PO-Revision-Date: 2005-04-29 08:32+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
@@ -228,12 +228,13 @@ msgstr "Vent venligst, finder og konfigurerer enheder..."
#: standalone/drakbackup:4324 standalone/drakclock:124
#: standalone/drakconnect:672 standalone/drakconnect:676
#: standalone/drakconnect:681 standalone/drakconnect:696
-#: standalone/drakfloppy:297 standalone/drakfloppy:300
-#: standalone/drakfloppy:306 standalone/drakfont:210 standalone/drakfont:223
-#: standalone/drakfont:261 standalone/drakgw:50 standalone/drakgw:188
-#: standalone/drakgw:217 standalone/drakgw:258 standalone/drakgw:292
-#: standalone/drakgw:397 standalone/drakroam:41 standalone/draksplash:15
-#: standalone/drakxtv:107 standalone/finish-install:49 standalone/logdrake:168
+#: standalone/drakfont:210 standalone/drakfont:223 standalone/drakfont:261
+#: standalone/drakgw:50 standalone/drakgw:188 standalone/drakgw:217
+#: standalone/drakgw:258 standalone/drakgw:292 standalone/drakgw:397
+#: standalone/drakhosts:227 standalone/drakhosts:234 standalone/drakhosts:242
+#: standalone/draknfs:351 standalone/draknfs:358 standalone/draknfs:366
+#: standalone/drakroam:41 standalone/draksplash:15 standalone/drakxtv:107
+#: standalone/finish-install:49 standalone/logdrake:168
#: standalone/logdrake:437 standalone/logdrake:442 standalone/scannerdrake:59
#: standalone/scannerdrake:202 standalone/scannerdrake:261
#: standalone/scannerdrake:715 standalone/scannerdrake:726
@@ -319,8 +320,8 @@ msgid "No CDROM support"
msgstr "Ingen cdrom-understøttelse"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:92
-#: diskdrake/interactive.pm:1039 diskdrake/interactive.pm:1049
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1046 diskdrake/interactive.pm:1056
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Read carefully!"
msgstr "Læs omhyggeligt!"
@@ -680,11 +681,11 @@ msgstr "Annullér"
#: Xconfig/resolution_and_depth.pm:372 diskdrake/hd_gtk.pm:150
#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:527
#: interactive/gtk.pm:677 interactive/gtk.pm:679 standalone/drakTermServ:284
-#: standalone/drakbackup:3883 standalone/drakbug:104
+#: standalone/drakbackup:3883 standalone/drakbug:105
#: standalone/drakconnect:153 standalone/drakconnect:236
-#: standalone/drakfont:509 standalone/drakperm:133 standalone/draksec:336
-#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1040 ugtk2.pm:1041
+#: standalone/drakfont:509 standalone/draknfs:131 standalone/draknfs:133
+#: standalone/drakperm:133 standalone/draksec:336 standalone/draksec:338
+#: standalone/draksec:356 standalone/draksec:358 ugtk2.pm:1040 ugtk2.pm:1041
#, c-format
msgid "Help"
msgstr "Hjælp"
@@ -832,7 +833,7 @@ msgstr "andet"
#: any.pm:142 harddrake/sound.pm:190 interactive.pm:470 pkgs.pm:458
#: standalone/drakconnect:160 standalone/drakconnect:635 standalone/draksec:68
#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:245
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Please wait"
msgstr "Vent venligst"
@@ -954,7 +955,7 @@ msgstr ""
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1299
+#: any.pm:276 any.pm:609 authentication.pm:181 diskdrake/interactive.pm:1306
#, c-format
msgid "Please try again"
msgstr "Prøv igen"
@@ -1087,8 +1088,7 @@ msgstr "Netværksprofil"
msgid "Label"
msgstr "Mærkat"
-#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/drakfloppy:84
-#: standalone/drakfloppy:90 standalone/draksec:52
+#: any.pm:382 any.pm:392 harddrake/v4l.pm:358 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "Standard"
@@ -1437,7 +1437,7 @@ msgstr "Start userdrake"
#: any.pm:1015 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
-#: standalone/drakbackup:4083 standalone/drakbug:127 standalone/drakfont:497
+#: standalone/drakbackup:4083 standalone/drakbug:126 standalone/drakfont:497
#: standalone/drakroam:242 standalone/net_monitor:118
#: standalone/printerdrake:547
#, c-format
@@ -2104,12 +2104,12 @@ msgid "Server: "
msgstr "Server: "
#: diskdrake/dav.pm:110 diskdrake/interactive.pm:521
-#: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1259
+#: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1266
#, c-format
msgid "Mount point: "
msgstr "Monteringssti: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1273
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
@@ -2196,7 +2196,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1196
+#: diskdrake/hd_gtk.pm:336 diskdrake/interactive.pm:1203
#, c-format
msgid "Empty"
msgstr "Tom"
@@ -2271,38 +2271,38 @@ msgstr "Normal -> Ekspert"
msgid "Continue anyway?"
msgstr "Fortsæt alligevel?"
-#: diskdrake/interactive.pm:278
-#, c-format
-msgid ""
-"You should format partition %s.\n"
-"Otherwise no entry for mount point %s will be written in fstab.\n"
-"Quit anyway?"
-msgstr ""
-"Du bør formatere partition %s.\n"
-"Ellers vil der ikke blive skrevet noget indgangspunkt for monteringspunktet %"
-"s i fstab.\n"
-"Afslut alligevel?"
-
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without saving"
msgstr "Afslut uden at gemme"
-#: diskdrake/interactive.pm:285
+#: diskdrake/interactive.pm:280
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Afslut uden at skrive partitionstabellen?"
-#: diskdrake/interactive.pm:290
+#: diskdrake/interactive.pm:285
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ønsker du at gemme /etc/fstab-ændringerne?"
-#: diskdrake/interactive.pm:297 install_steps_interactive.pm:329
+#: diskdrake/interactive.pm:292 install_steps_interactive.pm:329
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Du skal genstarte for at aktivere ændringerne i partitionstabellen"
+#: diskdrake/interactive.pm:297
+#, c-format
+msgid ""
+"You should format partition %s.\n"
+"Otherwise no entry for mount point %s will be written in fstab.\n"
+"Quit anyway?"
+msgstr ""
+"Du bør formatere partition %s.\n"
+"Ellers vil der ikke blive skrevet noget indgangspunkt for monteringspunktet %"
+"s i fstab.\n"
+"Afslut alligevel?"
+
#: diskdrake/interactive.pm:310 help.pm:530
#, c-format
msgid "Clear all"
@@ -2457,12 +2457,12 @@ msgstr "Opret en ny partition"
msgid "Start sector: "
msgstr "Startsektor: "
-#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:919
+#: diskdrake/interactive.pm:519 diskdrake/interactive.pm:926
#, c-format
msgid "Size in MB: "
msgstr "Størrelse i Mb: "
-#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:920
+#: diskdrake/interactive.pm:520 diskdrake/interactive.pm:927
#, c-format
msgid "Filesystem type: "
msgstr "Filsystemstype: "
@@ -2607,98 +2607,110 @@ msgstr "Vælg en eksisterende LVM som skal udvides"
msgid "LVM name?"
msgstr "LVM-navn?"
-#: diskdrake/interactive.pm:904
+#: diskdrake/interactive.pm:891
+#, c-format
+msgid ""
+"Physical volume %s is still in use.\n"
+"Do you want to move used physical extents on this volume to other volumes?"
+msgstr ""
+
+#: diskdrake/interactive.pm:893
+#, c-format
+msgid "Moving physical extents"
+msgstr ""
+
+#: diskdrake/interactive.pm:911
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Denne partition kan ikke bruges til loopback"
-#: diskdrake/interactive.pm:917
+#: diskdrake/interactive.pm:924
#, c-format
msgid "Loopback"
msgstr "Loopback"
-#: diskdrake/interactive.pm:918
+#: diskdrake/interactive.pm:925
#, c-format
msgid "Loopback file name: "
msgstr "Loopback-filnavn: "
-#: diskdrake/interactive.pm:923
+#: diskdrake/interactive.pm:930
#, c-format
msgid "Give a file name"
msgstr "Giv et filnavn"
-#: diskdrake/interactive.pm:926
+#: diskdrake/interactive.pm:933
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Filen er allerede brugt af en anden loopback, vælg en anden fil"
-#: diskdrake/interactive.pm:927
+#: diskdrake/interactive.pm:934
#, c-format
msgid "File already exists. Use it?"
msgstr "Filen findes allerede. Skal den bruges?"
-#: diskdrake/interactive.pm:950
+#: diskdrake/interactive.pm:957
#, c-format
msgid "Mount options"
msgstr "Modulindstillinger"
-#: diskdrake/interactive.pm:957
+#: diskdrake/interactive.pm:964
#, c-format
msgid "Various"
msgstr "Diverse"
-#: diskdrake/interactive.pm:1021
+#: diskdrake/interactive.pm:1028
#, c-format
msgid "device"
msgstr "enhed"
-#: diskdrake/interactive.pm:1022
+#: diskdrake/interactive.pm:1029
#, c-format
msgid "level"
msgstr "niveau"
-#: diskdrake/interactive.pm:1023
+#: diskdrake/interactive.pm:1030
#, c-format
msgid "chunk size in KiB"
msgstr "fragmentstørrelse i KiB"
-#: diskdrake/interactive.pm:1040
+#: diskdrake/interactive.pm:1047
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Vær forsigtig: denne operation er farlig."
-#: diskdrake/interactive.pm:1055
+#: diskdrake/interactive.pm:1062
#, c-format
msgid "What type of partitioning?"
msgstr "Hvilken slags partitionering?"
-#: diskdrake/interactive.pm:1093
+#: diskdrake/interactive.pm:1100
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr "Du skal genstarte maskinen for at aktivere ændringerne"
-#: diskdrake/interactive.pm:1102
+#: diskdrake/interactive.pm:1109
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partitionstabellen for disk %s vil nu blive skrevet på disken!"
-#: diskdrake/interactive.pm:1111
+#: diskdrake/interactive.pm:1118
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Efter formatering af partitionen %s vil alle data på denne partition gå tabt"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Move files to the new partition"
msgstr "Flyt filer til den nye partition"
-#: diskdrake/interactive.pm:1127
+#: diskdrake/interactive.pm:1134
#, c-format
msgid "Hide files"
msgstr "Skjul filer"
-#: diskdrake/interactive.pm:1128
+#: diskdrake/interactive.pm:1135
#, c-format
msgid ""
"Directory %s already contains data\n"
@@ -2707,108 +2719,108 @@ msgstr ""
"Katalog %s indeholder allerede nogen data\n"
"(%s)"
-#: diskdrake/interactive.pm:1139
+#: diskdrake/interactive.pm:1146
#, c-format
msgid "Moving files to the new partition"
msgstr "Flytter filer til den nye partition"
-#: diskdrake/interactive.pm:1143
+#: diskdrake/interactive.pm:1150
#, c-format
msgid "Copying %s"
msgstr "Kopierer %s"
-#: diskdrake/interactive.pm:1147
+#: diskdrake/interactive.pm:1154
#, c-format
msgid "Removing %s"
msgstr "Fjerner %s"
-#: diskdrake/interactive.pm:1161
+#: diskdrake/interactive.pm:1168
#, c-format
msgid "partition %s is now known as %s"
msgstr "partition %s er nu kendt som %s"
-#: diskdrake/interactive.pm:1162
+#: diskdrake/interactive.pm:1169
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Partitioner er blevet omnummererede: "
-#: diskdrake/interactive.pm:1182 diskdrake/interactive.pm:1244
+#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1251
#, c-format
msgid "Device: "
msgstr "Enhed: "
-#: diskdrake/interactive.pm:1183
+#: diskdrake/interactive.pm:1190
#, c-format
msgid "Devfs name: "
msgstr "Devfs-navn: "
-#: diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1191
#, c-format
msgid "Volume label: "
msgstr "Etikette for drev: "
-#: diskdrake/interactive.pm:1185
+#: diskdrake/interactive.pm:1192
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-drevbogstav: %s (bare et gæt)\n"
-#: diskdrake/interactive.pm:1189 diskdrake/interactive.pm:1198
-#: diskdrake/interactive.pm:1262
+#: diskdrake/interactive.pm:1196 diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1269
#, c-format
msgid "Type: "
msgstr "Type: "
-#: diskdrake/interactive.pm:1193 install_steps_gtk.pm:296
+#: diskdrake/interactive.pm:1200 install_steps_gtk.pm:296
#, c-format
msgid "Name: "
msgstr "Navn: "
-#: diskdrake/interactive.pm:1200
+#: diskdrake/interactive.pm:1207
#, c-format
msgid "Start: sector %s\n"
msgstr "Start: sektor %s\n"
-#: diskdrake/interactive.pm:1201
+#: diskdrake/interactive.pm:1208
#, c-format
msgid "Size: %s"
msgstr "Størrelse: %s"
-#: diskdrake/interactive.pm:1203
+#: diskdrake/interactive.pm:1210
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorer"
-#: diskdrake/interactive.pm:1205
+#: diskdrake/interactive.pm:1212
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cylinder %d til %d\n"
-#: diskdrake/interactive.pm:1206
+#: diskdrake/interactive.pm:1213
#, c-format
msgid "Number of logical extents: %d\n"
msgstr ""
-#: diskdrake/interactive.pm:1207
+#: diskdrake/interactive.pm:1214
#, c-format
msgid "Formatted\n"
msgstr "Formateret\n"
-#: diskdrake/interactive.pm:1208
+#: diskdrake/interactive.pm:1215
#, c-format
msgid "Not formatted\n"
msgstr "Ikke formateret\n"
-#: diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1216
#, c-format
msgid "Mounted\n"
msgstr "Monteret\n"
-#: diskdrake/interactive.pm:1210
+#: diskdrake/interactive.pm:1217
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"
-#: diskdrake/interactive.pm:1215
+#: diskdrake/interactive.pm:1222
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2817,7 +2829,7 @@ msgstr ""
"Loopback-fil(er):\n"
" %s\n"
-#: diskdrake/interactive.pm:1216
+#: diskdrake/interactive.pm:1223
#, c-format
msgid ""
"Partition booted by default\n"
@@ -2826,27 +2838,27 @@ msgstr ""
"Partition som opstartes som standard\n"
" (gælder kun MS-DOS-opstart, ikke LILO)\n"
-#: diskdrake/interactive.pm:1218
+#: diskdrake/interactive.pm:1225
#, c-format
msgid "Level %s\n"
msgstr "Niveau %s\n"
-#: diskdrake/interactive.pm:1219
+#: diskdrake/interactive.pm:1226
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Fragmentstørrelse %d KiB\n"
-#: diskdrake/interactive.pm:1220
+#: diskdrake/interactive.pm:1227
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diske %s\n"
-#: diskdrake/interactive.pm:1222
+#: diskdrake/interactive.pm:1229
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback-filnavn: %s"
-#: diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1232
#, c-format
msgid ""
"\n"
@@ -2859,7 +2871,7 @@ msgstr ""
"en driver-partition. Du skal\n"
"nok bare lade den være.\n"
-#: diskdrake/interactive.pm:1228
+#: diskdrake/interactive.pm:1235
#, c-format
msgid ""
"\n"
@@ -2872,74 +2884,74 @@ msgstr ""
"partition er for at\n"
"dual-boote dit system.\n"
-#: diskdrake/interactive.pm:1245
+#: diskdrake/interactive.pm:1252
#, c-format
msgid "Read-only"
msgstr "Skrivebeskyttet"
-#: diskdrake/interactive.pm:1246
+#: diskdrake/interactive.pm:1253
#, c-format
msgid "Size: %s\n"
msgstr "Størrelse: %s\n"
-#: diskdrake/interactive.pm:1247
+#: diskdrake/interactive.pm:1254
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Opbygning: %s cylindre, %s hoveder, %s sektorer\n"
-#: diskdrake/interactive.pm:1248
+#: diskdrake/interactive.pm:1255
#, c-format
msgid "Info: "
msgstr "Info: "
-#: diskdrake/interactive.pm:1249
+#: diskdrake/interactive.pm:1256
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diske %s\n"
-#: diskdrake/interactive.pm:1250
+#: diskdrake/interactive.pm:1257
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabel-type: %s\n"
-#: diskdrake/interactive.pm:1251
+#: diskdrake/interactive.pm:1258
#, c-format
msgid "on channel %d id %d\n"
msgstr "på kanal %d id %d\n"
-#: diskdrake/interactive.pm:1294
+#: diskdrake/interactive.pm:1301
#, c-format
msgid "Filesystem encryption key"
msgstr "Krypteringsnøgle for filsystem"
-#: diskdrake/interactive.pm:1295
+#: diskdrake/interactive.pm:1302
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Vælg din krypteringsnøgle for filsystemet"
-#: diskdrake/interactive.pm:1298
+#: diskdrake/interactive.pm:1305
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Denne krypteringsnøgle er for nem at gætte (skal mindst være på %d tegn)"
-#: diskdrake/interactive.pm:1299
+#: diskdrake/interactive.pm:1306
#, c-format
msgid "The encryption keys do not match"
msgstr "Krypteringsnøglerne stemmer ikke overens"
-#: diskdrake/interactive.pm:1302 network/netconnect.pm:1013
+#: diskdrake/interactive.pm:1309 network/netconnect.pm:1013
#: standalone/drakconnect:419
#, c-format
msgid "Encryption key"
msgstr "Krypteringsnøgle"
-#: diskdrake/interactive.pm:1303
+#: diskdrake/interactive.pm:1310
#, c-format
msgid "Encryption key (again)"
msgstr "Krypteringsnøgle (igen)"
-#: diskdrake/interactive.pm:1304 standalone/drakvpn:1017
+#: diskdrake/interactive.pm:1311 standalone/drakvpn:1017
#: standalone/drakvpn:1102
#, c-format
msgid "Encryption algorithm"
@@ -3598,9 +3610,9 @@ msgstr "Problemløsning"
#: standalone/drakTermServ:325 standalone/drakTermServ:1135
#: standalone/drakTermServ:1196 standalone/drakTermServ:1861
#: standalone/drakbackup:497 standalone/drakbackup:596 standalone/drakboot:125
-#: standalone/drakclock:224 standalone/drakconnect:969
-#: standalone/drakfloppy:291 standalone/drakups:27 standalone/harddrake2:478
-#: standalone/scannerdrake:51 standalone/scannerdrake:940
+#: standalone/drakclock:224 standalone/drakconnect:969 standalone/drakups:27
+#: standalone/harddrake2:478 standalone/scannerdrake:51
+#: standalone/scannerdrake:940
#, c-format
msgid "Warning"
msgstr "Advarsel"
@@ -7463,21 +7475,23 @@ msgid "Choose a file"
msgstr "Vælg en fil"
#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakbackup:1514
-#: standalone/drakfont:656 standalone/drakroam:218 standalone/drakups:301
-#: standalone/drakups:361 standalone/drakups:381 standalone/drakvpn:319
-#: standalone/drakvpn:680
+#: standalone/drakfont:656 standalone/drakhosts:223 standalone/draknfs:347
+#: standalone/drakroam:218 standalone/drakups:301 standalone/drakups:361
+#: standalone/drakups:381 standalone/drakvpn:319 standalone/drakvpn:680
#, c-format
msgid "Add"
msgstr "Tilføj"
-#: interactive.pm:317 interactive/gtk.pm:505
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:230
+#: standalone/draknfs:354
#, c-format
msgid "Modify"
msgstr "Ændr"
-#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakroam:202
-#: standalone/drakups:303 standalone/drakups:363 standalone/drakups:383
-#: standalone/drakvpn:319 standalone/drakvpn:680
+#: interactive.pm:317 interactive/gtk.pm:505 standalone/drakhosts:238
+#: standalone/draknfs:362 standalone/drakroam:202 standalone/drakups:303
+#: standalone/drakups:363 standalone/drakups:383 standalone/drakvpn:319
+#: standalone/drakvpn:680
#, c-format
msgid "Remove"
msgstr "Fjern"
@@ -9534,17 +9548,22 @@ msgstr ", "
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: lvm.pm:130
+#: lvm.pm:83
+#, c-format
+msgid "Moving used physical extents to other physical volumes failed"
+msgstr ""
+
+#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:139
+#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Fjern de logiske delarkiver først\n"
-#: lvm.pm:172
+#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physicals volumes"
msgstr ""
@@ -10590,7 +10609,7 @@ msgstr "IP-parametre"
#: network/netconnect.pm:582 network/netconnect.pm:890
#: printer/printerdrake.pm:460 standalone/drakconnect:109
#: standalone/drakconnect:316 standalone/drakconnect:878
-#: standalone/drakups:286
+#: standalone/drakhosts:192 standalone/drakups:286
#, c-format
msgid "IP address"
msgstr "IP-adresse"
@@ -11096,7 +11115,7 @@ msgstr "Sidst, men ikke mindst, indtast din DNS-servers IP-adresser."
msgid "Host name (optional)"
msgstr "Værtsnavn (kan udelades)"
-#: network/netconnect.pm:1159
+#: network/netconnect.pm:1159 standalone/drakhosts:192
#, c-format
msgid "Host name"
msgstr "Værtsnavn"
@@ -18553,7 +18572,9 @@ msgstr ""
msgid "Configuration changed - restart clusternfs/dhcpd?"
msgstr "Konfiguration ændret - genstart clusternfs/dhcpd?"
-#: standalone/drakautoinst:38
+#: standalone/drakautoinst:38 standalone/drakhosts:116
+#: standalone/drakhosts:123 standalone/draknfs:38 standalone/draknfs:74
+#: standalone/draknfs:244
#, c-format
msgid "Error!"
msgstr "Fejl!"
@@ -19551,7 +19572,7 @@ msgstr "Hvor"
msgid "When"
msgstr "Hvornår"
-#: standalone/drakbackup:2271
+#: standalone/drakbackup:2271 standalone/draknfs:230
#, c-format
msgid "More Options"
msgstr "Flere muligheder"
@@ -20282,21 +20303,21 @@ msgstr ""
msgid "Drakbackup"
msgstr "Drakbackup"
-#: standalone/drakboot:76 standalone/drakfloppy:47 standalone/harddrake2:190
-#: standalone/harddrake2:191 standalone/harddrake2:192 standalone/logdrake:69
+#: standalone/drakboot:76 standalone/harddrake2:190 standalone/harddrake2:191
+#: standalone/harddrake2:192 standalone/logdrake:69
#: standalone/printerdrake:138 standalone/printerdrake:139
#: standalone/printerdrake:140
#, c-format
msgid "/_File"
msgstr "/_Fil"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/logdrake:75
+#: standalone/drakboot:77 standalone/logdrake:75
#, c-format
msgid "/File/_Quit"
msgstr "/Fil/_Afslut"
-#: standalone/drakboot:77 standalone/drakfloppy:48 standalone/harddrake2:192
-#: standalone/logdrake:75 standalone/printerdrake:140
+#: standalone/drakboot:77 standalone/harddrake2:192 standalone/logdrake:75
+#: standalone/printerdrake:140
#, c-format
msgid "<control>Q"
msgstr "<control>Q"
@@ -20416,7 +20437,7 @@ msgstr "Mandriva Linux Kontrolcenter"
msgid "Synchronization tool"
msgstr "Synkroniseringsværktøj"
-#: standalone/drakbug:49 standalone/drakbug:149
+#: standalone/drakbug:49 standalone/drakbug:152
#, c-format
msgid "Standalone Tools"
msgstr "Fritstående værktøjer"
@@ -20500,7 +20521,7 @@ msgstr "Pakke: "
msgid "Kernel:"
msgstr "Kerne:"
-#: standalone/drakbug:100
+#: standalone/drakbug:101
#, c-format
msgid ""
"To submit a bug report, click on the report button. \n"
@@ -20515,17 +20536,17 @@ msgstr ""
"vil blive overført til den server. Nyttige ting at medtage i din rapport er "
"uddata fra lspci, kerneversion og /proc/cpuinfo."
-#: standalone/drakbug:106
+#: standalone/drakbug:107
#, c-format
msgid "Report"
msgstr "Rapport"
-#: standalone/drakbug:159
+#: standalone/drakbug:162
#, c-format
msgid "Not installed"
msgstr "Ikke installeret"
-#: standalone/drakbug:171
+#: standalone/drakbug:174
#, c-format
msgid "Package not installed"
msgstr "Pakke ikke installeret"
@@ -20750,7 +20771,7 @@ msgstr "Deaktivér"
msgid "Media class"
msgstr "Medieklasse"
-#: standalone/drakconnect:594 standalone/drakfloppy:136
+#: standalone/drakconnect:594
#, c-format
msgid "Module name"
msgstr "Modulnavn"
@@ -20985,122 +21006,6 @@ msgstr ""
"Du er ved at lukke alle kørnede programmer og tabe din nuværende session. Er "
"du sikker på at du ønsker at genstarte dm-tjenesten?"
-#: standalone/drakfloppy:41
-#, c-format
-msgid "drakfloppy"
-msgstr "drakfloppy"
-
-#: standalone/drakfloppy:78
-#, c-format
-msgid "Boot disk creation"
-msgstr "Fremstilling af opstartsdiskette"
-
-#: standalone/drakfloppy:79
-#, c-format
-msgid "General"
-msgstr "Generelt"
-
-#: standalone/drakfloppy:82 standalone/harddrake2:147
-#, c-format
-msgid "Device"
-msgstr "Enhed"
-
-#: standalone/drakfloppy:88
-#, c-format
-msgid "Kernel version"
-msgstr "Kerne-version"
-
-#: standalone/drakfloppy:103
-#, c-format
-msgid "Preferences"
-msgstr "Præferencer"
-
-#: standalone/drakfloppy:117
-#, c-format
-msgid "Advanced preferences"
-msgstr "Avancerede foretrukne"
-
-#: standalone/drakfloppy:136
-#, c-format
-msgid "Size"
-msgstr "Størrelse"
-
-#: standalone/drakfloppy:139
-#, c-format
-msgid "Mkinitrd optional arguments"
-msgstr "Mkinitrd valgfrie argumenter"
-
-#: standalone/drakfloppy:141
-#, c-format
-msgid "force"
-msgstr "tving"
-
-#: standalone/drakfloppy:142
-#, c-format
-msgid "omit raid modules"
-msgstr "undgå raid-moduler"
-
-#: standalone/drakfloppy:143
-#, c-format
-msgid "if needed"
-msgstr "hvis nødvendigt"
-
-#: standalone/drakfloppy:144
-#, c-format
-msgid "omit scsi modules"
-msgstr "undgå scsi-moduler"
-
-#: standalone/drakfloppy:147
-#, c-format
-msgid "Add a module"
-msgstr "Tilføj et modul"
-
-#: standalone/drakfloppy:156
-#, c-format
-msgid "Remove a module"
-msgstr "Fjern et modul"
-
-#: standalone/drakfloppy:291
-#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
-
-#: standalone/drakfloppy:297
-#, c-format
-msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
-msgstr ""
-"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
-"Indsæt venligst noget."
-
-#: standalone/drakfloppy:300
-#, c-format
-msgid "Unable to fork: %s"
-msgstr "Kan ikke fork(): %s"
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "Floppy creation completed"
-msgstr "Fremstilling af diskette fuldført."
-
-#: standalone/drakfloppy:303
-#, c-format
-msgid "The creation of the boot floppy has been successfully completed \n"
-msgstr "Oprettelsen af opstartsdisketten er færdig\n"
-
-#. -PO: Do not alter the <span ..> and </span> tags
-#: standalone/drakfloppy:308
-#, c-format
-msgid ""
-"Unable to properly close mkbootdisk:\n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-msgstr ""
-"Kan ikke lukke mkbootdisk ordentligt: \n"
-"\n"
-"<span foreground=\"Red\"><tt>%s</tt></span>"
-
#: standalone/drakfont:183
#, c-format
msgid "Search installed fonts"
@@ -21755,6 +21660,240 @@ msgstr ""
"%s kan ikke vises \n"
"Ingenhjælpeindgang af denne type\n"
+#: standalone/drakhosts:106
+#, c-format
+msgid "Please %s information"
+msgstr ""
+
+#: standalone/drakhosts:108
+#, c-format
+msgid "IP address:"
+msgstr ""
+
+#: standalone/drakhosts:109
+#, c-format
+msgid "Host name:"
+msgstr ""
+
+#: standalone/drakhosts:110
+#, c-format
+msgid "Host Aliases:"
+msgstr ""
+
+#: standalone/drakhosts:116
+#, c-format
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: standalone/drakhosts:123
+#, c-format
+msgid "Same IP is already in %s file."
+msgstr ""
+
+#: standalone/drakhosts:192
+#, c-format
+msgid "Host Aliases"
+msgstr ""
+
+#: standalone/drakhosts:227
+#, c-format
+msgid "Failed to add host."
+msgstr ""
+
+#: standalone/drakhosts:234
+#, c-format
+msgid "Failed to Modify host."
+msgstr ""
+
+#: standalone/drakhosts:242
+#, c-format
+msgid "Failed to remove host."
+msgstr ""
+
+#: standalone/draknfs:38
+#, c-format
+msgid "You are not root. Exiting..."
+msgstr ""
+
+#: standalone/draknfs:69
+#, c-format
+msgid "Directory Selection"
+msgstr ""
+
+#: standalone/draknfs:74
+#, c-format
+msgid "Should be a directory."
+msgstr ""
+
+#: standalone/draknfs:103
+#, c-format
+msgid ""
+"NFS clients may be specified in a number of ways:\n"
+"single host: You may specify a host either by an abbreviated name recognized "
+"be the resolver, the fully qualified domain name, or an IP address.\n"
+"\n"
+"netgroups: NIS netgroups may be given as @group.\n"
+"\n"
+"wildcards: machine names may contain the wildcard characters * and ?. For "
+"instance: *.cs.foo.edu matches all hosts in the domain cs.foo.edu.\n"
+"\n"
+"IP networks: you can also export directories to all hosts on an IP "
+"(sub-)network simultaneously. for example, either `/255.255.252.0' or "
+"`/22' appended to the network base address result.\n"
+msgstr ""
+
+#: standalone/draknfs:113
+#, c-format
+msgid ""
+"root_squash: map requests from uid/gid 0 to the anonymous uid/gid.\n"
+"\n"
+"no_root_squash: turn off root squashing. This option is mainly useful for "
+"diskless clients.\n"
+"\n"
+"all_squash: map all uids and gids to the anonymous user. Useful for NFS-"
+"exported public FTP directories, news spool directories, etc. The opposite "
+"option is no_all_squash, which is the default setting.\n"
+"\n"
+"anonuid and anongid: explicitly set the uid and gid of the anonymous "
+"account.\n"
+msgstr ""
+
+#: standalone/draknfs:122
+#, c-format
+msgid ""
+"secure: this option requires that requests originate on an internet port "
+"less than IPPORT_RESERVED (1024). This option is on by default. To turn it "
+"off, specify insecure.\n"
+"\n"
+"rw: allow both read and write requests on this NFS volume. The default is to "
+"disallow any request which changes the filesystem. This can also be made "
+"explicit by using the ro option.\n"
+"\n"
+"async: allows the NFS server to violate the NFS protocol and reply to "
+"requests before any changes made by that request have been committed to "
+"stable storage (e.g. disc drive).\n"
+msgstr ""
+
+#: standalone/draknfs:167
+#, c-format
+msgid "dir path"
+msgstr ""
+
+#: standalone/draknfs:206
+#, c-format
+msgid "NFS directory"
+msgstr ""
+
+#: standalone/draknfs:208
+#, c-format
+msgid "Directory:"
+msgstr ""
+
+#: standalone/draknfs:211
+#, c-format
+msgid "Host access"
+msgstr ""
+
+#: standalone/draknfs:213
+#, c-format
+msgid "Access:"
+msgstr ""
+
+#: standalone/draknfs:213 standalone/draknfs:218
+#, c-format
+msgid "Help User ID"
+msgstr ""
+
+#: standalone/draknfs:216
+#, c-format
+msgid "User ID Mapping"
+msgstr ""
+
+#: standalone/draknfs:218
+#, c-format
+msgid "User ID:"
+msgstr ""
+
+#: standalone/draknfs:219
+#, c-format
+msgid "anonuid:"
+msgstr ""
+
+#: standalone/draknfs:220
+#, c-format
+msgid "anongid:"
+msgstr ""
+
+#: standalone/draknfs:223 standalone/draknfs:313
+#, c-format
+msgid "General Options"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Force sync:"
+msgstr ""
+
+#: standalone/draknfs:225
+#, c-format
+msgid "Help General options"
+msgstr ""
+
+#: standalone/draknfs:226
+#, c-format
+msgid "port below 1024:"
+msgstr ""
+
+#: standalone/draknfs:227
+#, c-format
+msgid "Read/Write request:"
+msgstr ""
+
+#: standalone/draknfs:232
+#, c-format
+msgid "options:"
+msgstr ""
+
+#: standalone/draknfs:244
+#, c-format
+msgid "Please enter a directory to share."
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Share Directory"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "Hosts Wildcard"
+msgstr ""
+
+#: standalone/draknfs:313
+#, c-format
+msgid "More options"
+msgstr ""
+
+#: standalone/draknfs:351
+#, c-format
+msgid "Failed to add NFS share."
+msgstr ""
+
+#: standalone/draknfs:358
+#, c-format
+msgid "Failed to Modify NFS share."
+msgstr ""
+
+#: standalone/draknfs:366
+#, c-format
+msgid "Failed to remove an NFS share."
+msgstr ""
+
+#: standalone/draknfs:371
+#, c-format
+msgid "Reload NFS server"
+msgstr ""
+
#: standalone/drakperm:21
#, c-format
msgid "System settings"
@@ -24911,6 +25050,11 @@ msgstr "Fejl"
msgid "FPU"
msgstr "FPU"
+#: standalone/harddrake2:147
+#, c-format
+msgid "Device"
+msgstr "Enhed"
+
#: standalone/harddrake2:148
#, c-format
msgid "Partitions"
@@ -26318,27 +26462,27 @@ msgstr ""
msgid "Your scanner(s) will not be available on the network."
msgstr "Dinne skannere vil ikke være tilgængelige på netværket."
-#: standalone/service_harddrake:105
+#: standalone/service_harddrake:104
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Nogen enheder i maskinelklassen '%s' blev fjernet:\n"
-#: standalone/service_harddrake:106
+#: standalone/service_harddrake:105
#, c-format
msgid "- %s was removed\n"
msgstr "- %s blev fjernet\n"
-#: standalone/service_harddrake:109
+#: standalone/service_harddrake:108
#, c-format
msgid "Some devices were added: %s\n"
msgstr "Nogen enheder blev tilføjet: %s\n"
-#: standalone/service_harddrake:110
+#: standalone/service_harddrake:109
#, c-format
msgid "- %s was added\n"
msgstr "- %s blev tilføjet\n"
-#: standalone/service_harddrake:207
+#: standalone/service_harddrake:206
#, c-format
msgid "Hardware probing in progress"
msgstr "Søgning efter udstyr udføres"
@@ -26502,6 +26646,76 @@ msgstr ""
msgid "Installation failed"
msgstr "Installation mislykkedes"
+#~ msgid "drakfloppy"
+#~ msgstr "drakfloppy"
+
+#~ msgid "Boot disk creation"
+#~ msgstr "Fremstilling af opstartsdiskette"
+
+#~ msgid "General"
+#~ msgstr "Generelt"
+
+#~ msgid "Kernel version"
+#~ msgstr "Kerne-version"
+
+#~ msgid "Preferences"
+#~ msgstr "Præferencer"
+
+#~ msgid "Advanced preferences"
+#~ msgstr "Avancerede foretrukne"
+
+#~ msgid "Size"
+#~ msgstr "Størrelse"
+
+#~ msgid "Mkinitrd optional arguments"
+#~ msgstr "Mkinitrd valgfrie argumenter"
+
+#~ msgid "force"
+#~ msgstr "tving"
+
+#~ msgid "omit raid modules"
+#~ msgstr "undgå raid-moduler"
+
+#~ msgid "if needed"
+#~ msgstr "hvis nødvendigt"
+
+#~ msgid "omit scsi modules"
+#~ msgstr "undgå scsi-moduler"
+
+#~ msgid "Add a module"
+#~ msgstr "Tilføj et modul"
+
+#~ msgid "Remove a module"
+#~ msgstr "Fjern et modul"
+
+#~ msgid "Be sure a media is present for the device %s"
+#~ msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
+
+#~ msgid ""
+#~ "There is no medium or it is write-protected for device %s.\n"
+#~ "Please insert one."
+#~ msgstr ""
+#~ "Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
+#~ "Indsæt venligst noget."
+
+#~ msgid "Unable to fork: %s"
+#~ msgstr "Kan ikke fork(): %s"
+
+#~ msgid "Floppy creation completed"
+#~ msgstr "Fremstilling af diskette fuldført."
+
+#~ msgid "The creation of the boot floppy has been successfully completed \n"
+#~ msgstr "Oprettelsen af opstartsdisketten er færdig\n"
+
+#~ msgid ""
+#~ "Unable to properly close mkbootdisk:\n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+#~ msgstr ""
+#~ "Kan ikke lukke mkbootdisk ordentligt: \n"
+#~ "\n"
+#~ "<span foreground=\"Red\"><tt>%s</tt></span>"
+
#~ msgid "You can not use a LVM Logical Volume for mount point %s"
#~ msgstr "Du kan ikke bruge et LVM logisk delarkiv for monteringspunkt %s"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index f64488a69..dd4616011 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po