summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakclock
blob: a1dd5b5f59fc17fe1c87fefaf3fdf470b8623349 (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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
#!/usr/bin/perl

use strict;
use lib qw(/usr/lib/libDrakX);
use POSIX;
use common;
# i18n : IMPORTANT to get correct namespace (drakconf instead of libDrakX)
BEGIN { unshift @::textdomains, 'drakconf' }
use ugtk2 qw(:all);
use interactive;
use standalone;
use timezone;

my $in = interactive->vnew('su');
my $pixmap;
my $radius;
my ($dRadians_hour, $dRadians_min, $dRadians_sec);
my $Radian;
my $timer;
my ($midx, $midy);
my $first = 1;
my $its_reset = 0;

#my $conffile = '/etc/sysconfig/ntpclock';
my $ntpfile = '/etc/ntp.conf';
my $ntpdlock = '/var/lock/subsys/ntpd';

my $my_win = ugtk2->new('print_launcher');
$my_win->{rwindow}->set_title(N("DrakClock")) unless $::isEmbedded;

$my_win->{window}->signal_connect(delete_event => sub { ugtk2->exit(0) });

my $calendar = Gtk2::Calendar->new;
$calendar->signal_connect($_ => \&cal_changed) foreach 'month-changed', 'day-selected', 'day-selected-double-click', 'prev-month', 'next-month', 'prev-year', 'next-year';

$in->{timezone} = {};
add2hash($in->{timezone}, timezone::read());

my $label_timezone = Gtk2::Label->new(defined($in->{timezone}{timezone}) ? $in->{timezone}{timezone} : N("not defined"));

my $button_time = Gtk2::Button->new(N("Change Time Zone"));
$button_time->signal_connect(clicked => sub {
				   local $::isEmbedded = 0; # to prevent sub window embedding
				   my $timezone = $in->{timezone}{timezone};
				   $in->{timezone}{timezone} = $in->ask_from_treelist(N("Timezone - DrakClock"), N("Which is your timezone?"), '/', [ timezone::getTimeZones() ], $timezone);
				   if (defined($in->{timezone}{timezone})) {
					   $in->{timezone}{UTC} = $in->ask_yesorno(N("GMT - DrakClock"), N("Is your hardware clock set to GMT?"), $in->{timezone}{UTC});
					   timezone::write($in->{timezone});
                            $label_timezone->set_text($in->{timezone}{timezone});
				   } else {
					   $in->{timezone}{timezone} = $timezone;
                            $label_timezone->set_text($timezone);    
                        }
			       });
#my $button_ntp = Gtk2::Button->new(N("Use NTP"));
#$button_time->signal_connect(clicked => sub { ask_ntp($in, $) });

my $drawing_area;

my $adjh = Gtk2::Adjustment->new(0.0, 0.0, 23.0, 1.0, 5.0, 0.0);
my $adjm = Gtk2::Adjustment->new(0.0, 0.0, 59.0, 1.0, 5.0, 0.0);
my $adjs = Gtk2::Adjustment->new(0.0, 0.0, 59.0, 1.0, 5.0, 0.0);

my ($button_reset, $check_ntp, $hb_ntp, $combo_ntpserver, $fullntp, $ntp);
my $mode = 0;

my (undef, undef, $h_old, $old_day, $old_month, $old_year) = localtime(time());

my @image_size = (300, 300);

$my_win->{window}->add(gtkpack_(gtkset_border_width(Gtk2::VBox->new, $::isEmbedded ? 0 : 5),
                                1, gtkpack_(Gtk2::HBox->new,
                                            1, gtkpack_(Gtk2::VBox->new,
                                                        0, $calendar,
                                                        0, gtkadd(gtkset_shadow_type(Gtk2::Frame->new(N("Timezone")), 'etched_in'),
                                                                  gtkpack__(gtkset_border_width(Gtk2::VBox->new, 5),
                                                                            $label_timezone,
                                                                            $button_time)),
                                                        1, gtkadd(gtkset_shadow_type(Gtk2::Frame->new(N("Network Time Protocol")), 'etched_in'),
                                                                  gtkpack_(gtkset_border_width(Gtk2::VBox->new, 5),
                                                                           0, Gtk2::Label->new(N("Your computer can synchronize its clock\n with a remote time server using NTP")),
                                                                           0, gtksignal_connect(gtkset_active($check_ntp = Gtk2::CheckButton->new(N("Enable Network Time Protocol")), $mode),  clicked => sub { 
                                                                                                    $mode = !$mode; 
                                                                                                    $hb_ntp->set_sensitive($mode);
                                                                                                    if ($mode == 1 && !$in->do_pkgs->is_installed('ntp')) {
                                                                                                        install_ntp();
                                                                                                    }
                                                                                                }),
                                                                           0, gtkpack_(gtkset_border_width($hb_ntp = Gtk2::HBox->new, 5),
                                                                                       0, Gtk2::Label->new(N("Server:")),
                                                                                       1, $combo_ntpserver = Gtk2::Combo->new
                                                                                      )
                                                                          ))
                                                       ),
                                            0, gtkpack_(Gtk2::VBox->new,
                                                        0, gtkpack_(Gtk2::HBox->new,
                                                                    0, $drawing_area = gtkset_size_request(Gtk2::DrawingArea->new, @image_size),
                                                                   ),
                                                        0, gtkpack_(my $time_box = Gtk2::HBox->new(1,0),
                                                                    0, my $spinner_h = Gtk2::SpinButton->new($adjh, 0, 0),
                                                                    0, my $spinner_m = Gtk2::SpinButton->new($adjm, 0, 0),
                                                                    0, my $spinner_s = Gtk2::SpinButton->new($adjs, 0, 0),
                                                                   ),
                                                       ),
                                           ),
                                0, create_okcancel(my $w =
                                                   {
                                                    cancel_clicked => sub { ugtk2->exit(0) },
                                                    ok_clicked => sub {
                                                        if ($check_ntp->get_active) {
                                                            my $choosed_serv = $combo_ntpserver->entry->get_text;
                                                            $choosed_serv =~ s/(\S+)\s*(.*)$/$1/;
                                                            timezone::ntp_server($1);
                                                            system("/sbin/chkconfig --level 35 ntpd on");
                                                            system("service ntpd stop");
                                                            #verify that we have a valid hostname (thx sam)
                                                            $choosed_serv =~ s/[^-a-zA-Z0-9.]//g;
                                                            system("/usr/sbin/ntpdate", $choosed_serv);
                                                            system("service ntpd start");
                                                        } else {
                                                            if (-e $ntpdlock) { 
                                                                system("service ntpd stop");
                                                                system("/sbin/chkconfig --level 35 ntpd off");
                                                            }
                                                        }
                                                        my ($year, $month, $day) = $calendar->get_date;
                                                        $month++;
                                                        my ($hour, $min, $sec) = ($adjh->get_value, $adjm->get_value, $adjs->get_value);
                                                        system("date " .
                                                               join('', map { print_it0($_) } ($month, $day, $hour, $min, $year)) . '.' . print_it0($sec));
                                                        -e '/sbin/hwclock' and system('/sbin/hwclock --systohc');
                                                        system("dcop kicker Panel restart") if $ENV{DESKTOP} eq 'kde';
                                                        ugtk2->exit(0);
                                                    },
                                                   },
                                                   undef, undef, '',
                                                   [ N("Reset"), sub {
                                                         $its_reset = 1;
                                                         $timer = Glib::Timeout->add(120, \&update_time);
                                                         Repaint($drawing_area, 1);
                                                         $calendar->select_month($old_month, $old_year);
                                                         $calendar->select_day($old_day);
                                                         $button_reset->set_sensitive(0);
                                                         $its_reset = 0;
                                                     } ]
                                                  ),
                               )
                      );
$button_reset = $w->{buttons}{N("Reset")};

$time_box->set_direction('ltr');

my $servers = get_server();
$combo_ntpserver->set_popdown_strings(@$servers);
if (-e $ntpfile && -e $ntpdlock) {
    $ntp = timezone::ntp_server();
    $ntp and ntp_widget_state(1);
    foreach my $s (@$servers) {
	$s =~ /^\Q$ntp / and $fullntp = $s;
	$fullntp and last
    }
    $fullntp |= $ntp;
    $combo_ntpserver->entry->set_text($fullntp);
} else { ntp_widget_state(0) }
  
my $pressed;
$drawing_area->set_events([ 'button_press_mask', 'button_release_mask', "pointer_motion_mask" ]);
$drawing_area->signal_connect(expose_event => \&expose_event);
$drawing_area->signal_connect(realize => sub {
                                  my $window = $drawing_area->window;
                                  $pixmap = Gtk2::Gdk::Pixmap->new($window, @image_size, $window->get_depth);
                              });

$drawing_area->signal_connect(button_press_event   => sub { $pressed = 1 });
$drawing_area->signal_connect(button_release_event => sub { $first = 1; $pressed = 0 });
$drawing_area->signal_connect(motion_notify_event  => \&motion_event);

$spinner_h->set_wrap(1);
$spinner_h->signal_connect(activate => \&spinned);
$spinner_h->signal_connect(button_release_event => \&spinned);
$spinner_h->signal_connect(scroll_event => \&spinned);
$spinner_h->signal_connect(changed => \&changed);

$spinner_m->set_wrap(1);
$spinner_m->signal_connect(activate => \&spinned);
$spinner_m->signal_connect(scroll_event => \&spinned);
$spinner_m->signal_connect(button_release_event => \&spinned);

$spinner_s->set_wrap(1);
$spinner_s->signal_connect(activate => \&spinned);
$spinner_s->signal_connect(scroll_event => \&spinned);
$spinner_s->signal_connect(button_release_event => \&spinned);

$my_win->{window}->show_all;

gtkflush();

my $is24 = $h_old > 12;
$old_year += 1900;
$calendar->select_month($old_month, $old_year);
$calendar->select_day($old_day);
$button_reset->set_sensitive(0);
$timer = Glib::Timeout->add(120, \&update_time);

$drawing_area->show;
$my_win->main;
ugtk2->exit(0);

sub ntp_widget_state {
    my ($state) = @_;
    $check_ntp->set_active($state);  
    $hb_ntp->set_sensitive($state);
    $mode = $state;
}
sub install_ntp() {
    $my_win->{window}->set_sensitive(0);
    if (warn_dialog(N("Warning"), N("We need to install ntp package\n to enable Network Time Protocol

Do you want to install ntp ?"))) {
	$in->do_pkgs->install('ntp');
    } else {
	ntp_widget_state(0);
    }
    $my_win->{window}->set_sensitive(1);
}
sub get_server() {
    my $servs = timezone::ntp_servers();
    [ map { "$_  ($servs->{$_})" } sort keys %$servs ]
}
sub update_time() {
    Repaint($drawing_area, 1);
};

sub cal_changed() {
    !$its_reset and $timer and Glib::Source->remove($timer);
    $button_reset->set_sensitive(1);
}

sub changed() {
  my $val   = $adjh->get_value;
  my $limit = ($is24 ? 18 : 6);
  if (($limit > $val  &&  $h_old > $limit  &&  $h_old < ($is24 ? 24 : 12)) ||
      ($limit < $val  &&  $h_old < $limit  &&  $val-$h_old != 12)) {
    $is24 = !$is24;
  }
  $h_old = $val;
}

sub spinned() {
    Glib::Source->remove($timer);
    $button_reset->set_sensitive(1);
    time_to_rad($adjs->get_value, $adjm->get_value, $adjh->get_value);
    Repaint($drawing_area);
    0;
}

sub motion_event {
    my ($widget, $event) = @_;
    $pressed or return;
    if ($first) {
	Glib::Source->remove($timer);
	$Radian = determine_radian($event->x, $event->y);
	$button_reset->set_sensitive(1);
    }

    $$Radian = -atan2($event->x - $midx, $event->y - $midy) + $PI;

    Repaint($widget);
    rad_to_time();
    $first = 0;
}

sub determine_radian {
    my ($x, $y) = @_;

    my $res;
    my $r;
    foreach (\$dRadians_hour, \$dRadians_min, \$dRadians_sec) {
	my $d = sqrt(($x - ($midx + 7/10 * $radius * sin($$_)))**2 + ($y - ($midy - 7/10 * $radius * cos($$_)))**2);
	$res or $res = $d, $r = $_;
	$d < $res and $res = $d, $r = $_;
    }
    $r;
}

sub expose_event {
    my ($widget, $event) = @_;
    my ($x, $y, $width, $height) = $event->area->values;
    $widget->window->draw_drawable($widget->style->fg_gc('normal'), $pixmap, $x, $y, $x, $y, $width, $height);
    0;
}

sub rad_to_time() {
    $adjh->set_value(POSIX::floor($dRadians_hour * 6 / $PI) + ($is24 ? 12 : 0));
    $adjm->set_value(POSIX::floor($dRadians_min*30/$PI));
    $adjs->set_value(POSIX::floor($dRadians_sec*30/$PI));
}

sub time_to_rad {
    my ($sec, $min, $hour) = @_;
    $dRadians_hour = $hour % 12 * $PI / 6;
    $dRadians_min = $min * $PI / 30;
    $dRadians_sec = $sec * $PI / 30;
    $adjh->set_value($hour);
    $adjm->set_value($min);
    $adjs->set_value($sec);
}

sub Repaint {
    my ($drawing_area, $o_update_time) = @_;
    my ($sec, $min, $hour) = localtime(time());
    time_to_rad($sec, $min, $hour) if $o_update_time;
    my ($width, $height) = ($drawing_area->allocation->width, $drawing_area->allocation->height);
    my $dRadians_hour_real = $dRadians_hour + $dRadians_min / 12;
    my $dRadians_min_real  = POSIX::floor($dRadians_min / $PI * 30) * $PI / 30;
    my $dRadians_sec_real  = $dRadians_sec;
    $pixmap->draw_rectangle($drawing_area->style->white_gc, 1, 0, 0, $width, $height);
    my ($midx, $midy) = ($width / 2, $height / 2);
    $radius = ($midx < $midy ? $midx : $midy) - 10;

    my $gray_gc  = $drawing_area->style->bg_gc('normal');
    my $black_gc = $drawing_area->style->black_gc;
    foreach ([ $gray_gc, 5 ], [ $black_gc, 0 ]) {
      &DrawTickAt($pixmap,  $_->[0], $midx, $midy, $_->[1]);
      &DrawHour($pixmap, $_->[0], $midx, $midy, $dRadians_hour_real, $_->[1]);
      &DrawMin($pixmap,  $_->[0], $midx, $midy, $dRadians_min_real,  $_->[1]);
      &DrawSec($pixmap,  $_->[0], $midx, $midy, $dRadians_sec_real,  $_->[1]);
    }
    &DrawPointAt($pixmap, $black_gc, $_, $midx, $midy) foreach (1..60);
    $drawing_area->queue_draw;
    1;
}

sub DrawSec {
    my ($pixmap, $gc, $midx, $midy, $dRadians, $dec) = @_;
    $pixmap->draw_line($gc,
		       $midx+$dec, $midy+$dec,
		       $midx+$dec + (8/10 * $radius * sin($dRadians)),
		       $midy+$dec - (8/10 * $radius * cos($dRadians)))
}

sub DrawMin {
    my ($pixmap, $gc, $midx, $midy, $dRadians, $dec) = @_;
    $pixmap->draw_polygon($gc, 1, $midx+$dec - 3/100 * $radius * sin($dRadians),       $midy+$dec + 3/100 * $radius * cos($dRadians),
				    $midx+$dec - 3/100 * $radius * sin($dRadians+$PI/2), $midy+$dec + 3/100 * $radius * cos($dRadians+$PI/2),
				    $midx+$dec + 8/10  * $radius * sin($dRadians),       $midy+$dec - 8/10  * $radius * cos($dRadians),
				    $midx+$dec + 3/100 * $radius * sin($dRadians+$PI/2), $midy+$dec - 3/100 * $radius * cos($dRadians+$PI/2)
				    );
}

sub DrawHour {
    my ($pixmap, $gc, $midx, $midy, $dRadians, $dec) = @_;
    $pixmap->draw_polygon($gc, 1, $midx+$dec - 5/100 * $radius * sin($dRadians),       $midy+$dec + 5/100 * $radius * cos($dRadians),
				    $midx+$dec - 5/100 * $radius * sin($dRadians+$PI/2), $midy+$dec + 5/100 * $radius * cos($dRadians+$PI/2),
				    $midx+$dec + 7/10  * $radius * sin($dRadians),       $midy+$dec - 7/10  * $radius * cos($dRadians),
				    $midx+$dec + 5/100 * $radius * sin($dRadians+$PI/2), $midy+$dec - 5/100 * $radius * cos($dRadians+$PI/2)
				    );
}

sub DrawTickAt {
    my ($pixmap, $gc, $cx, $cy, $dec) = @_;
    foreach my $nHour (1..12) {
      my $dRadians = $nHour * $PI / 6.0;
      $pixmap->draw_line($gc,
			 $cx + $dec + 9/10 * $radius * sin($dRadians),
			 $cy + $dec - 9/10 * $radius * cos($dRadians),
			 $cx + $dec + 1    * $radius * sin($dRadians),
			 $cy + $dec - 1    * $radius * cos($dRadians));
    }
}

sub DrawPointAt {
    my ($pixmap, $black_gc, $nHour, $cx, $cy) = @_;
    my $dRadians = $nHour * $PI / 30;

    $pixmap->draw_points($black_gc,
			$cx + 95/100 * $radius * sin($dRadians),
			$cy - 95/100 * $radius * cos($dRadians))
}


sub print_it0 { sprintf("%02d", $_[0]) }
dd'>+#, c-format
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "Honduras"
@@ -9484,6 +9613,45 @@ msgstr "Tip datotečnega sistema: "
msgid "Gujarati"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" While you can use a pool of IP addresses, rather than setup a "
+"specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. "
+"Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client "
+"machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' "
+"tools. This is enabled \n"
+" by creating separate config files associated with the client's IP "
+"address and creating \n"
+" read/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+" with the configuration, you can remove root login privileges from "
+"the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing "
+"clients."
+msgstr ""
+
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
@@ -9757,45 +9925,6 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating separate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login privileges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing clients."
-msgstr ""
-
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Configure Local Area Network..."
@@ -10170,23 +10299,11 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbug:1
#, c-format
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Application Name\n"
+"or Full Path:"
msgstr ""
#: ../../services.pm:1
@@ -10527,19 +10644,6 @@ msgstr "Nameščanje paketa %s"
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add a scanner manually"
@@ -10644,7 +10748,7 @@ msgstr "Odstrani vnos"
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
@@ -10961,11 +11065,6 @@ msgid ""
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
-msgid "No partition available"
-msgstr "Zaganjam X"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
@@ -10976,6 +11075,11 @@ msgstr ""
msgid "Unselected All"
msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#, fuzzy, c-format
+msgid "No partition available"
+msgstr "Zaganjam X"
+
#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Printer Management \n"
@@ -11016,7 +11120,7 @@ msgstr ""
msgid "modem"
msgstr "Premakni"
-#: ../../install_steps.pm:1
+#: ../../lang.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "Pozdravljeni v %s"
@@ -11089,6 +11193,13 @@ msgstr ""
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+msgstr ""
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -11212,26 +11323,6 @@ msgid ""
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured."
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -11999,7 +12090,7 @@ msgstr ""
msgid "Local Printer"
msgstr "Tiskalnik"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "Kam želite priklopiti napravo %s?"
@@ -12101,36 +12192,6 @@ msgstr "Naprava miške: %s\n"
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs its images."
-msgstr ""
-
#: ../../help.pm:1
#, c-format
msgid ""
@@ -12381,6 +12442,11 @@ msgstr "maj"
msgid "Yaboot mode"
msgstr ""
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr ""
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
@@ -12393,11 +12459,6 @@ msgid ""
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr ""
-
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Select another media to restore from"
@@ -12713,23 +12774,6 @@ msgid ""
" --id <id_label> - load the html help page which refers to id_label\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Select a scanner model"
@@ -13074,11 +13118,6 @@ msgstr ""
msgid "Sharing of local printers"
msgstr "Odstrani vnos"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr ""
-
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
@@ -13089,6 +13128,11 @@ msgstr ""
msgid "Available printers"
msgstr "Odstrani vnos"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "NO"
+msgstr ""
+
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
@@ -13118,21 +13162,6 @@ msgid ""
"Press \"%s\" to continue."
msgstr "Nastavitev RAMDAC"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Interface \"%s\""
@@ -13885,6 +13914,17 @@ msgstr "FAT"
msgid "Refresh the list"
msgstr "Spisek uporabnikov"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -14417,12 +14457,17 @@ msgstr "Splošno"
msgid "Cylinder %d to %d\n"
msgstr "Cilinder %d do cilinder %d\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "YOUR TEXT HERE"
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "New profile..."
msgstr ""
-#: ../../standalone/draksec:1
+#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "NONE"
msgstr ""
@@ -14961,6 +15006,11 @@ msgstr "Drugo"
msgid "burner"
msgstr "Izberite strežnik"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Bug Description/System Information"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " (Default is all users)"
@@ -15083,6 +15133,26 @@ msgstr "Izberite strežnik"
msgid "If no port is given, 631 will be taken as default."
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be\n"
+" turned back off, retaining the configuration files, once the client "
+"machine is configured."
+msgstr ""
+
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -15272,7 +15342,7 @@ msgid ""
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Next"
msgstr "Naslednje"
@@ -16461,7 +16531,7 @@ msgstr ""
msgid "format of floppies supported by the drive"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
@@ -17020,6 +17090,11 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Find Package"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
@@ -17135,6 +17210,24 @@ msgstr "Nastavitev zaslona"
msgid "hard disk model"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
@@ -17312,14 +17405,14 @@ msgstr ""
msgid "Unmount"
msgstr "Odklopi"
-#: ../../standalone/drakfont:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Uninstall Fonts"
+msgid "Microsoft Explorer"
msgstr ""
-#: ../../mouse.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Microsoft Explorer"
+msgid "Uninstall Fonts"
msgstr ""
#: ../../keyboard.pm:1
@@ -17664,17 +17757,6 @@ msgstr "Odstrani vnos"
msgid "enable radio support"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files."
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scanner sharing to hosts: "
diff --git a/perl-install/share/po/sr.po b/perl-install/share/po/sr.po
index dfafb708a..c619cd3f5 100644
--- a/perl-install/share/po/sr.po
+++ b/perl-install/share/po/sr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"POT-Creation-Date: 2003-09-16 13:45+0200\n"
"PO-Revision-Date: 2003-02-28 18:21+0100\n"
"Last-Translator: Toma Jankovic <tomaja@net.yu>\n"
"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
@@ -188,7 +188,7 @@ msgstr ""
" , email "
"root-."
-#: ../../standalone/drakconnect:1
+#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr ""
@@ -507,6 +507,11 @@ msgstr ""
msgid "Iraq"
msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "connecting to %s ..."
+msgstr " Bugzilla ..."
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
@@ -552,6 +557,21 @@ msgstr " "
msgid "Default desktop"
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on %s\n"
+" where you'll find a form to fill in. The information displayed above will "
+"be \n"
+"transferred to that server."
+msgstr ""
+" , .\n"
+" web %s\n"
+" . "
+" \n"
+" ."
+
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
@@ -1140,6 +1160,36 @@ msgstr ""
" \n"
" - ( j)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \tdrakTermServ will configure this file to work in conjunction with "
+"the images created\n"
+" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to \n"
+" \teach diskless client.\n"
+"\n"
+" \tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t}\n"
+" \t\t\n"
+" \tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \tputs its images."
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
@@ -1821,16 +1871,16 @@ msgstr ""
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristi %c i %c slova da bi oznacili izbor"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr " 2 "
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Enable \"%s\" to execute the file"
+msgstr ""
+
#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
@@ -3095,6 +3145,23 @@ msgstr " j , e "
#: ../../standalone/drakTermServ:1
#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \tThe diskless client machines need either ROM images on the NIC, or "
+"a boot floppy\n"
+" \tor CD to initate the boot sequence. drakTermServ will help "
+"generate these\n"
+" \timages, based on the NIC in the client machine.\n"
+" \t\t\n"
+" \tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO image %s"
@@ -3503,33 +3570,6 @@ msgstr " "
msgid "Auto-detect printers connected to this machine"
msgstr "- "
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-"XawTV !\n"
-"\n"
-"\n"
-" TV DrakX ( bttv \n"
-"saa7134 \"/etc/modules\") xawtv, "
-"\n"
-" \"lspcidrake -v -f\" \"install\\@mandrakesoft.com\"\n"
-" \"undetected TV card\".\n"
-"\n"
-"\n"
-" \"urpmi xawtv\" root, ."
-
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
@@ -4109,6 +4149,20 @@ msgstr "/etc/hosts.allow /etc/hosts.deny - "
msgid "Restore From Tape"
msgstr " "
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid ""
+"To submit a bug report, click the report button, which will open your "
+"default browser\n"
+"to Anthill where you will be able to upload the above information as a bug "
+"report."
+msgstr ""
+" , .\n"
+" web %s\n"
+" . "
+" \n"
+" ."
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
@@ -4265,7 +4319,7 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr " , !"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Insert floppy"
msgstr " %s"
@@ -4407,10 +4461,17 @@ msgstr " "
msgid "Couldn't access the floppy!"
msgstr " !"
-#: ../../standalone/drakbug:1
+#: ../../install_messages.pm:1
#, c-format
-msgid "connecting to Bugzilla wizard ..."
-msgstr " Bugzilla ..."
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -4594,6 +4655,11 @@ msgstr ""
msgid "Description"
msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Please enter summary text."
+msgstr " "
+
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
@@ -5556,7 +5622,7 @@ msgstr ""
msgid "Right Control key"
msgstr " Alt "
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -6690,6 +6756,22 @@ msgstr ""
msgid "busmouse"
msgstr "bus "
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
+"be created.\n"
+" \tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical \n"
+" \tinterface to help manage/customize these images. To create the "
+"file \n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
@@ -7074,24 +7156,6 @@ msgstr ""
msgid "Floppy"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -7695,6 +7759,11 @@ msgstr "ee j"
msgid "Choose file"
msgstr " "
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Summary: "
+msgstr "a"
+
#: ../../network/shorewall.pm:1
#, c-format
msgid ""
@@ -7771,6 +7840,17 @@ msgstr " "
msgid "the vendor name of the processor"
msgstr " "
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain %s:\n"
+" \tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
+" \thelps in this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
@@ -8093,6 +8173,11 @@ msgstr " "
msgid "Encryption key for %s"
msgstr " "
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you want to recover your system?"
+msgstr " aboot ?"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -8531,6 +8616,11 @@ msgstr " X-a"
msgid ", "
msgstr ", "
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit lspci"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
@@ -8774,6 +8864,11 @@ msgstr ""
"\n"
" a e ."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit cpuinfo"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
@@ -8784,6 +8879,11 @@ msgstr " "
msgid "Ethiopia"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "YES"
+msgstr ""
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
@@ -9132,15 +9232,6 @@ msgstr " "
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr " \"%s\" SMB/Windows \"%s\""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include:\n"
-msgstr ""
-"\n"
-"- n (%s) :\n"
-
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
@@ -9465,6 +9556,11 @@ msgstr " - a : %s\n"
msgid "Path"
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "NOT FOUND"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -10066,18 +10162,6 @@ msgstr "a"
msgid "Total Progress"
msgstr " "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -10225,6 +10309,26 @@ msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
" Backup- ( backup-)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP \n"
+" \taddress and net boot images to the machine. drakTermServ helps "
+"create/remove \n"
+" \tthese entries.\n"
+"\t\t\t\n"
+" \t(PCI cards may omit the image - etherboot will request the correct "
+"image. \n"
+"\t\t\tYou should also consider that when etherboot looks for the images, it "
+"expects \n"
+"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
@@ -10344,6 +10448,13 @@ msgstr ""
"x \n"
" "
+#: ../../fsedit.pm:1
+#, c-format
+msgid ""
+"You may not be able to install lilo (since lilo doesn't handle a LV on "
+"multiple PVs)"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
@@ -10643,6 +10754,16 @@ msgstr " "
msgid "Unselect fonts installed"
msgstr " "
+#: ../../mouse.pm:1
+#, c-format
+msgid "Wheel"
+msgstr ""
+
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Submit kernel version"
+msgstr "j a"
+
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
@@ -10664,11 +10785,6 @@ msgstr ""
msgid "Searching for configured scanners ..."
msgstr " ..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr ""
-
#: ../../harddrake/data.pm:1
#, c-format
msgid "Videocard"
@@ -10737,6 +10853,11 @@ msgstr ""
msgid "Button 2 Emulation"
msgstr "j 2 a"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Please enter a package name."
+msgstr " "
+
#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "Run chkrootkit checks"
@@ -10820,6 +10941,11 @@ msgstr ""
"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+
#: ../../lang.pm:1
#, c-format
msgid "Honduras"
@@ -10989,6 +11115,45 @@ msgstr " "
msgid "Gujarati"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" While you can use a pool of IP addresses, rather than setup a "
+"specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. "
+"Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client "
+"machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' "
+"tools. This is enabled \n"
+" by creating separate config files associated with the client's IP "
+"address and creating \n"
+" read/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+" with the configuration, you can remove root login privileges from "
+"the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing "
+"clients."
+msgstr ""
+
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
@@ -11323,45 +11488,6 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating separate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login privileges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing clients."
-msgstr ""
-
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -11778,23 +11904,11 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbug:1
#, c-format
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Application Name\n"
+"or Full Path:"
msgstr ""
#: ../../services.pm:1
@@ -12191,28 +12305,6 @@ msgstr " j %s a"
msgid "You will receive an alert if the load is higher than this value"
msgstr " "
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-" , .\n"
-" web https://drakbug."
-"mandrakesoft.com\n"
-" . "
-" \n"
-" \n"
-"\n"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add a scanner manually"
@@ -12354,7 +12446,7 @@ msgstr ""
"\n"
" shell . zero - ."
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
@@ -12725,11 +12817,6 @@ msgstr ""
" \"%s\" ,\n"
" ?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No partition available"
-msgstr " "
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
@@ -12740,6 +12827,11 @@ msgstr " : "
msgid "Unselected All"
msgstr " "
+#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "No partition available"
+msgstr " "
+
#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Printer Management \n"
@@ -12780,7 +12872,7 @@ msgstr " -->"
msgid "modem"
msgstr ""
-#: ../../install_steps.pm:1
+#: ../../lang.pm:1
#, c-format
msgid "Welcome to %s"
msgstr " %s"
@@ -12857,6 +12949,15 @@ msgstr ""
msgid "Not the correct CD label. Disk is labelled %s."
msgstr " ƴ. %s."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+msgstr ""
+"\n"
+"- n (%s) :\n"
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -12996,26 +13097,6 @@ msgstr ""
"\n"
"- :\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured."
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -13881,7 +13962,7 @@ msgstr ""
msgid "Local Printer"
msgstr " "
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr " %s ?"
@@ -13986,36 +14067,6 @@ msgstr " : %s\n"
msgid "Reselect correct fonts"
msgstr " "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs its images."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -14282,6 +14333,11 @@ msgstr ""
msgid "Yaboot mode"
msgstr "Yaboot "
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr " 3 "
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
@@ -14297,11 +14353,6 @@ msgstr ""
" \"lilo\" root "
" LiLo ."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr " 3 "
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Select another media to restore from"
@@ -14640,23 +14691,6 @@ msgid ""
" --id <id_label> - load the html help page which refers to id_label\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Select a scanner model"
@@ -15066,11 +15100,6 @@ msgstr " "
msgid "Sharing of local printers"
msgstr " "
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
-
#: ../../security/help.pm:1
#, fuzzy, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
@@ -15084,6 +15113,11 @@ msgstr ""
msgid "Available printers"
msgstr " "
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "NO"
+msgstr "ľ"
+
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
@@ -15120,21 +15154,6 @@ msgstr ""
"\n"
" \" \" ."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
@@ -15976,6 +15995,17 @@ msgstr "İ°"
msgid "Refresh the list"
msgstr " "
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -16547,12 +16577,17 @@ msgstr "Generic"
msgid "Cylinder %d to %d\n"
msgstr " %d %d\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "YOUR TEXT HERE"
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "New profile..."
msgstr " ..."
-#: ../../standalone/draksec:1
+#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "NONE"
msgstr ""
@@ -17136,6 +17171,11 @@ msgstr " "
msgid "burner"
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Bug Description/System Information"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " (Default is all users)"
@@ -17270,6 +17310,26 @@ msgstr "Dialup "
msgid "If no port is given, 631 will be taken as default."
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be\n"
+" turned back off, retaining the configuration files, once the client "
+"machine is configured."
+msgstr ""
+
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -17501,7 +17561,7 @@ msgstr ""
"LPT2:, ..., USB : /dev/usb/lp0, USB : /dev/usb/"
"lp1, ...)."
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Next"
msgstr ""
@@ -18845,7 +18905,7 @@ msgstr ""
msgid "format of floppies supported by the drive"
msgstr " "
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
@@ -19568,6 +19628,11 @@ msgstr ""
"\n"
" ?\n"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Find Package"
+msgstr "%d "
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
@@ -19683,6 +19748,24 @@ msgstr "LAN a"
msgid "hard disk model"
msgstr " "
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
@@ -19867,16 +19950,16 @@ msgstr "UK a"
msgid "Unmount"
msgstr ""
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr " "
-
#: ../../mouse.pm:1
#, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft Explorer"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Uninstall Fonts"
+msgstr " "
+
#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
@@ -20244,17 +20327,6 @@ msgstr " \"%s\" ..."
msgid "enable radio support"
msgstr " "
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files."
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Scanner sharing to hosts: "
@@ -20687,6 +20759,31 @@ msgstr ""
" a a . (pine, mutt, tin..) "
"aae a"
+#~ msgid ""
+#~ "XawTV isn't installed!\n"
+#~ "\n"
+#~ "\n"
+#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
+#~ "saa7134\n"
+#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
+#~ "results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+#~ "with subject \"undetected TV card\".\n"
+#~ "\n"
+#~ "\n"
+#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
+#~ msgstr ""
+#~ "XawTV !\n"
+#~ "\n"
+#~ "\n"
+#~ " TV DrakX ( bttv \n"
+#~ "saa7134 \"/etc/modules\") xawtv, "
+#~ "\n"
+#~ " \"lspcidrake -v -f\" \"install\\@mandrakesoft.com\"\n"
+#~ " \"undetected TV card\".\n"
+#~ "\n"
+#~ "\n"
+#~ " \"urpmi xawtv\" root, ."
+
#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
@@ -20855,9 +20952,6 @@ msgstr ""
#~ msgid "Please enter the host name or IP."
#~ msgstr " IP."
-#~ msgid "Please enter your login"
-#~ msgstr " "
-
#~ msgid ""
#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s"
#~ "\\@epita.fr>"
diff --git a/perl-install/share/po/sr@Latn.po b/perl-install/share/po/sr@Latn.po
index 85f8b247a..41122cff6 100644
--- a/perl-install/share/po/sr@Latn.po
+++ b/perl-install/share/po/sr@Latn.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"POT-Creation-Date: 2003-09-16 13:45+0200\n"
"PO-Revision-Date: 2003-02-28 18:21+0100\n"
"Last-Translator: Toma Jankovic_<tomaja@net.yu>\n"
"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
@@ -189,7 +189,7 @@ msgstr ""
"ukoliko je podeeno, poaljite izvetaj na ovu email adresu uli je poaljite "
"root-u."
-#: ../../standalone/drakconnect:1
+#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "Parametri"
@@ -508,6 +508,11 @@ msgstr "Bus"
msgid "Iraq"
msgstr "Irak"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "connecting to %s ..."
+msgstr "konektujem se na Bugzilla arobnjak ..."
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
@@ -554,6 +559,21 @@ msgstr "Trai instalirane fontove"
msgid "Default desktop"
msgstr "Podrazumevano"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on %s\n"
+" where you'll find a form to fill in. The information displayed above will "
+"be \n"
+"transferred to that server."
+msgstr ""
+"Da bi prijavili bag, kliknite na taster prijava.\n"
+"Ovo e otvoriti prozor web pretraivaa sa adresom %s\n"
+" gde e te pronai formular koji treba da popunite.Informacija koja je gore "
+"prokazana e biti \n"
+"prebaena na taj server."
+
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
@@ -1142,6 +1162,36 @@ msgstr ""
"Protokol za Ostatak sveta \n"
" bez D-kanala (zakupljene linije)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \tdrakTermServ will configure this file to work in conjunction with "
+"the images created\n"
+" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to \n"
+" \teach diskless client.\n"
+"\n"
+" \tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t}\n"
+" \t\t\n"
+" \tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \tputs its images."
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
@@ -1825,16 +1875,16 @@ msgstr ""
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristi %c i %c slova da bi oznacili izbor"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Generiki 2 tastera mi"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Enable \"%s\" to execute the file"
+msgstr ""
+
#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
@@ -3101,6 +3151,23 @@ msgstr "Ovo je obavezni paket,i ne moe biti deselektovan"
#: ../../standalone/drakTermServ:1
#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \tThe diskless client machines need either ROM images on the NIC, or "
+"a boot floppy\n"
+" \tor CD to initate the boot sequence. drakTermServ will help "
+"generate these\n"
+" \timages, based on the NIC in the client machine.\n"
+" \t\t\n"
+" \tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO image je %s"
@@ -3509,33 +3576,6 @@ msgstr "Sakrij fajlove"
msgid "Auto-detect printers connected to this machine"
msgstr "Auto-detekcija tampaa povezanih sa ovom mainom"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-"XawTV nije instaliran!\n"
-"\n"
-"\n"
-"Ukoliko imate TV karticu ali je DrakX nije detektovao (bez bttv ili\n"
-"saa7134 modula u \"/etc/modules\") niti je instalirao xawtv, molim vas da "
-"poaljete\n"
-"rezultate od \"lspcidrake -v -f\" na \"install\\@mandrakesoft.com\"\n"
-"sa subjektom \"undetected TV card\".\n"
-"\n"
-"\n"
-"Noete ga instalirati ukucavanjem \"urpmi xawtv\" kao root, u konzoli."
-
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
@@ -4116,6 +4156,20 @@ msgstr "/etc/hosts.allow i /etc/hosts.deny je ve podeen - nije izmenjen"
msgid "Restore From Tape"
msgstr "Obnovi sa trake"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid ""
+"To submit a bug report, click the report button, which will open your "
+"default browser\n"
+"to Anthill where you will be able to upload the above information as a bug "
+"report."
+msgstr ""
+"Da bi prijavili bag, kliknite na taster prijava.\n"
+"Ovo e otvoriti prozor web pretraivaa sa adresom %s\n"
+" gde e te pronai formular koji treba da popunite.Informacija koja je gore "
+"prokazana e biti \n"
+"prebaena na taj server."
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
@@ -4272,7 +4326,7 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr "Potrebno je ime hosta, korisniko ime i lozinka!"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Insert floppy"
msgstr "Ubacite disketu u ureaj %s"
@@ -4414,10 +4468,17 @@ msgstr "Mreni interfejs je ve podeen"
msgid "Couldn't access the floppy!"
msgstr "Ne mogu da pristupim disketi!"
-#: ../../standalone/drakbug:1
+#: ../../install_messages.pm:1
#, c-format
-msgid "connecting to Bugzilla wizard ..."
-msgstr "konektujem se na Bugzilla arobnjak ..."
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -4601,6 +4662,11 @@ msgstr "Prihvati"
msgid "Description"
msgstr "Opis"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Please enter summary text."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
@@ -5565,7 +5631,7 @@ msgstr ""
msgid "Right Control key"
msgstr "Desni Alt taster"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -6699,6 +6765,22 @@ msgstr ""
msgid "busmouse"
msgstr "bus mi"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
+"be created.\n"
+" \tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical \n"
+" \tinterface to help manage/customize these images. To create the "
+"file \n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
@@ -7083,24 +7165,6 @@ msgstr ""
msgid "Floppy"
msgstr "Flopi"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -7705,6 +7769,11 @@ msgstr "Deljenje internet konekcije"
msgid "Choose file"
msgstr "Izaberi datoteku"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Summary: "
+msgstr "Saetak"
+
#: ../../network/shorewall.pm:1
#, c-format
msgid ""
@@ -7781,6 +7850,17 @@ msgstr "Francuske June Teritorije"
msgid "the vendor name of the processor"
msgstr "imee prizvoaa procesora"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain %s:\n"
+" \tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
+" \thelps in this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
@@ -8104,6 +8184,11 @@ msgstr "Obnovi korisnike"
msgid "Encryption key for %s"
msgstr "Klju za enkripciju"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you want to recover your system?"
+msgstr "Da li elite da koristite aboot ?"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -8542,6 +8627,11 @@ msgstr "Konfigurisanje X-a"
msgid ", "
msgstr ", "
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit lspci"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
@@ -8785,6 +8875,11 @@ msgstr ""
"\n"
"Sada podeavam vau lokalnu mreu sa ovim adapterom."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit cpuinfo"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
@@ -8795,6 +8890,11 @@ msgstr "Minimalno instaliraj"
msgid "Ethiopia"
msgstr "Etiopija"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "YES"
+msgstr ""
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
@@ -9143,15 +9243,6 @@ msgstr "Tip instalacije"
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "tampa \"%s\" na SMB/Windows serveru \"%s\""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include:\n"
-msgstr ""
-"\n"
-"- Demonn (%s) ukljuuje :\n"
-
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
@@ -9476,6 +9567,11 @@ msgstr "Monitor - horizontalna frekvencija: %s\n"
msgid "Path"
msgstr "Putanja"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "NOT FOUND"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -10078,18 +10174,6 @@ msgstr "vano"
msgid "Total Progress"
msgstr "Ukupni napredak"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -10237,6 +10321,26 @@ msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
"Koristi Inkrementalni Backup-ove (ne zamenjuj ih sa starim backup-ovima)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP \n"
+" \taddress and net boot images to the machine. drakTermServ helps "
+"create/remove \n"
+" \tthese entries.\n"
+"\t\t\t\n"
+" \t(PCI cards may omit the image - etherboot will request the correct "
+"image. \n"
+"\t\t\tYou should also consider that when etherboot looks for the images, it "
+"expects \n"
+"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
@@ -10356,6 +10460,13 @@ msgstr ""
"x koordinata tekst boksa\n"
"u broju karaktera"
+#: ../../fsedit.pm:1
+#, c-format
+msgid ""
+"You may not be able to install lilo (since lilo doesn't handle a LV on "
+"multiple PVs)"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
@@ -10655,6 +10766,16 @@ msgstr "Potrebno je ime hosta"
msgid "Unselect fonts installed"
msgstr "Deselektovani fontovi instalirani"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Wheel"
+msgstr "Toki"
+
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Submit kernel version"
+msgstr "Verzija kernela"
+
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
@@ -10676,11 +10797,6 @@ msgstr "Poniti"
msgid "Searching for configured scanners ..."
msgstr "Traim podeene skenere ..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Toki"
-
#: ../../harddrake/data.pm:1
#, c-format
msgid "Videocard"
@@ -10749,6 +10865,11 @@ msgstr "Podrazumevano"
msgid "Button 2 Emulation"
msgstr "Emulacija 2 tastera"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Please enter a package name."
+msgstr "Odredite korisniko ime"
+
#: ../../security/l10n.pm:1
#, fuzzy, c-format
msgid "Run chkrootkit checks"
@@ -10832,6 +10953,11 @@ msgstr ""
"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+
#: ../../lang.pm:1
#, c-format
msgid "Honduras"
@@ -11001,6 +11127,45 @@ msgstr "Klju za enkripciju fajl sistema"
msgid "Gujarati"
msgstr "Gujarati"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" While you can use a pool of IP addresses, rather than setup a "
+"specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. "
+"Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client "
+"machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' "
+"tools. This is enabled \n"
+" by creating separate config files associated with the client's IP "
+"address and creating \n"
+" read/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+" with the configuration, you can remove root login privileges from "
+"the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing "
+"clients."
+msgstr ""
+
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
@@ -11335,45 +11500,6 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating separate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login privileges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing clients."
-msgstr ""
-
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -11790,23 +11916,11 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbug:1
#, c-format
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Application Name\n"
+"or Full Path:"
msgstr ""
#: ../../services.pm:1
@@ -12203,28 +12317,6 @@ msgstr "Problemi pri instalaciji %s paketa"
msgid "You will receive an alert if the load is higher than this value"
msgstr "Oglasie se alarm ukoliko je uitano vee od ove vrednosti"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"Da bi prijavili bag, kliknite na taster prijava.\n"
-"Ovo e otvoriti prozor web pretraivaa sa adresom https://drakbug."
-"mandrakesoft.com\n"
-" gde e te pronai formular koji treba da popunite.Informacija koja je gore "
-"prokazana e biti \n"
-"prebaena na taj server\n"
-"\n"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add a scanner manually"
@@ -12368,7 +12460,7 @@ msgstr ""
"\n"
"Podesite shell pauzu. Vrednost zero - nula znai da nema pauze."
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
@@ -12740,11 +12832,6 @@ msgstr ""
"tampa \"%s\" ve postoji,\n"
"da li stvarno elite da ponovo upiete njegove opcije?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "nema dostupnih particija"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
@@ -12755,6 +12842,11 @@ msgstr "Koristi skenere na hostovima: "
msgid "Unselected All"
msgstr "Deselektuj Sve"
+#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "nema dostupnih particija"
+
#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Printer Management \n"
@@ -12795,7 +12887,7 @@ msgstr "Kompajliraj celi Kernel -->"
msgid "modem"
msgstr "Modem"
-#: ../../install_steps.pm:1
+#: ../../lang.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "Dobroli u %s"
@@ -12872,6 +12964,15 @@ msgstr ""
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "NIje ipstavna oznaka CDa. Disk je oznaen sa %s."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+msgstr ""
+"\n"
+"- Demonn (%s) ukljuuje :\n"
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -13011,26 +13112,6 @@ msgstr ""
"\n"
"- Sistemski fajlovi:\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured."
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -13897,7 +13978,7 @@ msgstr ""
msgid "Local Printer"
msgstr "Lokalni tampa"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "Gde biste da montirate %s ureaj ?"
@@ -14002,36 +14083,6 @@ msgstr "Mi je postavljen na ureaj: %s\n"
msgid "Reselect correct fonts"
msgstr "Ponovo selektuj ispravne fontove"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs its images."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -14298,6 +14349,11 @@ msgstr "Maj"
msgid "Yaboot mode"
msgstr "Yaboot mod"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "Generiki 3 tastera mi"
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
@@ -14313,11 +14369,6 @@ msgstr ""
"Pokrenite \"lilo\" kao root iz komandne linije da bi zavrili instalciju "
"teme za LiLo starter."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Generiki 3 tastera mi"
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Select another media to restore from"
@@ -14657,23 +14708,6 @@ msgid ""
" --id <id_label> - load the html help page which refers to id_label\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Select a scanner model"
@@ -15083,11 +15117,6 @@ msgstr "Ime domena"
msgid "Sharing of local printers"
msgstr "Deljenje lokalnih tampaa"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
-
#: ../../security/help.pm:1
#, fuzzy, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
@@ -15101,6 +15130,11 @@ msgstr ""
msgid "Available printers"
msgstr "Dostupni tampai"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "NO"
+msgstr "INFO"
+
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
@@ -15137,21 +15171,6 @@ msgstr ""
"\n"
"Pritisnite \"U redu\" za nastavak."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
@@ -15994,6 +16013,17 @@ msgstr "FATALNA"
msgid "Refresh the list"
msgstr "Osvei listu"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -16565,12 +16595,17 @@ msgstr "Generic"
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "YOUR TEXT HERE"
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "New profile..."
msgstr "Novi profil..."
-#: ../../standalone/draksec:1
+#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "NONE"
msgstr ""
@@ -17154,6 +17189,11 @@ msgstr "Drugi multimedijalni ureaji"
msgid "burner"
msgstr "tampa"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Bug Description/System Information"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " (Default is all users)"
@@ -17288,6 +17328,26 @@ msgstr "Dialup opcije"
msgid "If no port is given, 631 will be taken as default."
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be\n"
+" turned back off, retaining the configuration files, once the client "
+"machine is configured."
+msgstr ""
+
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -17519,7 +17579,7 @@ msgstr ""
"LPT2:, ..., prvi USB tampa: /dev/usb/lp0, drugi USB tampa: /dev/usb/"
"lp1, ...)."
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Next"
msgstr "Sledei"
@@ -18863,7 +18923,7 @@ msgstr ""
msgid "format of floppies supported by the drive"
msgstr "Format disketa koje ureaj prihvata"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
@@ -19588,6 +19648,11 @@ msgstr ""
"\n"
"Da li se pristajete da izgubite sve particije?\n"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Find Package"
+msgstr "%d paketa"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
@@ -19703,6 +19768,24 @@ msgstr "LAN konfiguracija"
msgid "hard disk model"
msgstr "model hard diska"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
@@ -19887,16 +19970,16 @@ msgstr "UK tastatura"
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Deinstaliraj fontove"
-
#: ../../mouse.pm:1
#, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft Explorer"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Uninstall Fonts"
+msgstr "Deinstaliraj fontove"
+
#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
@@ -20264,17 +20347,6 @@ msgstr "Pokreem \"%s\" ..."
msgid "enable radio support"
msgstr "omogui podrku za radio"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files."
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Scanner sharing to hosts: "
@@ -20708,6 +20780,31 @@ msgstr ""
"Skup alata za itanje i slanje el.pote i vesti (pine, mutt, tin..) i za "
"pretraivanje Interneta"
+#~ msgid ""
+#~ "XawTV isn't installed!\n"
+#~ "\n"
+#~ "\n"
+#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
+#~ "saa7134\n"
+#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
+#~ "results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+#~ "with subject \"undetected TV card\".\n"
+#~ "\n"
+#~ "\n"
+#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
+#~ msgstr ""
+#~ "XawTV nije instaliran!\n"
+#~ "\n"
+#~ "\n"
+#~ "Ukoliko imate TV karticu ali je DrakX nije detektovao (bez bttv ili\n"
+#~ "saa7134 modula u \"/etc/modules\") niti je instalirao xawtv, molim vas da "
+#~ "poaljete\n"
+#~ "rezultate od \"lspcidrake -v -f\" na \"install\\@mandrakesoft.com\"\n"
+#~ "sa subjektom \"undetected TV card\".\n"
+#~ "\n"
+#~ "\n"
+#~ "Noete ga instalirati ukucavanjem \"urpmi xawtv\" kao root, u konzoli."
+
#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
diff --git a/perl-install/share/po/ta.po b/perl-install/share/po/ta.po
index 992510a53..e1aaa85c7 100644
--- a/perl-install/share/po/ta.po
+++ b/perl-install/share/po/ta.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 1.0\n"
-"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"POT-Creation-Date: 2003-09-16 13:45+0200\n"
"PO-Revision-Date: 2002-09-06 00:35+0800\n"
"Last-Translator: prabu anand <prabu_anand2000@yahoo.com>\n"
"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
@@ -180,7 +180,7 @@ msgstr "வலையமைப்பு அட்ைட"
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "வரைமுறை"
@@ -482,6 +482,11 @@ msgstr "பாட்ைட"
msgid "Iraq"
msgstr "ஈராக்"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "connecting to %s ..."
+msgstr "பக்சிலாவோடு இணைகிறது"
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
@@ -525,6 +530,16 @@ msgstr "பொதி மேலாளர்"
msgid "Default desktop"
msgstr "மேசை"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on %s\n"
+" where you'll find a form to fill in. The information displayed above will "
+"be \n"
+"transferred to that server."
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
@@ -1102,6 +1117,36 @@ msgstr ""
"ஏனைய பகுதிகளில் பயன்படுத்தப்படும் வரைமுறை\n"
"No D-Channel (குத்தகை இணைப்புகள்)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \tdrakTermServ will configure this file to work in conjunction with "
+"the images created\n"
+" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to \n"
+" \teach diskless client.\n"
+"\n"
+" \tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t}\n"
+" \t\t\n"
+" \tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \tputs its images."
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
@@ -1725,16 +1770,16 @@ msgstr ""
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted"
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "பொதுவான 2 பொத்தான் எலி"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Enable \"%s\" to execute the file"
+msgstr ""
+
#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
@@ -2851,6 +2896,23 @@ msgstr "இது கட்டாய பொதி. இதனை நீக்க
#: ../../standalone/drakTermServ:1
#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \tThe diskless client machines need either ROM images on the NIC, or "
+"a boot floppy\n"
+" \tor CD to initate the boot sequence. drakTermServ will help "
+"generate these\n"
+" \timages, based on the NIC in the client machine.\n"
+" \t\t\n"
+" \tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
@@ -3228,22 +3290,6 @@ msgstr "கோப்புகளை மறைக்கவும்"
msgid "Auto-detect printers connected to this machine"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
@@ -3799,6 +3845,15 @@ msgstr ""
msgid "Restore From Tape"
msgstr "தட்டின் வகிர் அமைப்புகளை பழைய நிலைக்கு கொண்டு வாருங்கள்"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click the report button, which will open your "
+"default browser\n"
+"to Anthill where you will be able to upload the above information as a bug "
+"report."
+msgstr ""
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
@@ -3935,7 +3990,7 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Insert floppy"
msgstr " %s ல் நெகிழ்வட்ைட உள்ளிடவும்"
@@ -4071,10 +4126,17 @@ msgstr "வலையமைப்பு அட்ைட ஏற்கனவே வ
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../install_messages.pm:1
#, c-format
-msgid "connecting to Bugzilla wizard ..."
-msgstr "பக்சிலாவோடு இணைகிறது"
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -4250,6 +4312,11 @@ msgstr "ஒப்புக் கொள்கிறேன்"
msgid "Description"
msgstr "குறிப்பு"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Please enter summary text."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
@@ -5147,7 +5214,7 @@ msgstr ""
msgid "Right Control key"
msgstr "வலது Alt விசை"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -6178,6 +6245,22 @@ msgstr ""
msgid "busmouse"
msgstr "பஸ்எலி"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
+"be created.\n"
+" \tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical \n"
+" \tinterface to help manage/customize these images. To create the "
+"file \n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
@@ -6522,24 +6605,6 @@ msgstr ":புதிய பயனர்குறிப்பின் பெய
msgid "Floppy"
msgstr "ெநகிழ்வட்டு"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -7083,6 +7148,11 @@ msgstr "இணையத் தொடர்பு பரிமாறி"
msgid "Choose file"
msgstr "சாதனத்ைத தேர்வுச் செய்யுங்கள்"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Summary: "
+msgstr "உரை"
+
#: ../../network/shorewall.pm:1
#, c-format
msgid ""
@@ -7155,6 +7225,17 @@ msgstr "பிரஞ்சு தென் குடியிருப்பு"
msgid "the vendor name of the processor"
msgstr "சாதனங்களின் விற்பவர் பெயர்"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain %s:\n"
+" \tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
+" \thelps in this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
@@ -7451,6 +7532,11 @@ msgstr ""
msgid "Encryption key for %s"
msgstr "மறைக்குறியீட்டுச் சாவி"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you want to recover your system?"
+msgstr "தயவுசெய்து நிறுவுவதற்கு ஆங்கிலத்ைத பயன்படுத்துங்கள்"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -7867,6 +7953,11 @@ msgstr "X-ஐ வடிவமைக்கவும்"
msgid ", "
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit lspci"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove selected host/network"
@@ -8095,6 +8186,11 @@ msgstr ""
"\n"
"இதை வைத்து உங்கள் வலையமைப்பாக்கத்ைத அமைக்கட்டுமா"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit cpuinfo"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
@@ -8105,6 +8201,11 @@ msgstr "குறைந்தபட்ச நிறுவல்"
msgid "Ethiopia"
msgstr "எத்தியோப்பியா"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "YES"
+msgstr ""
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
@@ -8429,13 +8530,6 @@ msgstr "நிறுவல் முறை"
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include:\n"
-msgstr ""
-
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
@@ -8743,6 +8837,11 @@ msgstr "திரையகத்தின் கிடையான ஒத்த
msgid "Path"
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "NOT FOUND"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -9312,18 +9411,6 @@ msgstr "முக்கியமானவை"
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -9465,6 +9552,26 @@ msgstr "எவ்வித X வடிவமைப்ேபா வைத்த
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP \n"
+" \taddress and net boot images to the machine. drakTermServ helps "
+"create/remove \n"
+" \tthese entries.\n"
+"\t\t\t\n"
+" \t(PCI cards may omit the image - etherboot will request the correct "
+"image. \n"
+"\t\t\tYou should also consider that when etherboot looks for the images, it "
+"expects \n"
+"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
@@ -9576,6 +9683,13 @@ msgid ""
"in number of characters"
msgstr ""
+#: ../../fsedit.pm:1
+#, c-format
+msgid ""
+"You may not be able to install lilo (since lilo doesn't handle a LV on "
+"multiple PVs)"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
@@ -9867,6 +9981,16 @@ msgstr "கணினியின்பெயர்: "
msgid "Unselect fonts installed"
msgstr "நிறுவப்படவில்ைல"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Wheel"
+msgstr "சக்கரம்"
+
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Submit kernel version"
+msgstr "கரு வெளியீடு"
+
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
@@ -9888,11 +10012,6 @@ msgstr "தவிர்"
msgid "Searching for configured scanners ..."
msgstr "உள்ளமைக் அச்சுப்பொறி"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "சக்கரம்"
-
#: ../../harddrake/data.pm:1
#, c-format
msgid "Videocard"
@@ -9958,6 +10077,11 @@ msgstr "கொடாநிலை"
msgid "Button 2 Emulation"
msgstr "2-பொத்தான் போன்மி"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Please enter a package name."
+msgstr "பயனருக்கு ஓர் பெயர் கொடுக்கவும்"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Run chkrootkit checks"
@@ -10037,6 +10161,11 @@ msgid ""
"\n"
msgstr ""
+#: ../../install_messages.pm:1
+#, fuzzy, c-format
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
+
#: ../../lang.pm:1
#, c-format
msgid "Honduras"
@@ -10187,6 +10316,45 @@ msgstr "கோப்பமைப்பு மறைக்குறியீட
msgid "Gujarati"
msgstr "குஜராத்தி"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" While you can use a pool of IP addresses, rather than setup a "
+"specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. "
+"Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client "
+"machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' "
+"tools. This is enabled \n"
+" by creating separate config files associated with the client's IP "
+"address and creating \n"
+" read/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+" with the configuration, you can remove root login privileges from "
+"the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing "
+"clients."
+msgstr ""
+
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
@@ -10493,45 +10661,6 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating separate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login privileges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing clients."
-msgstr ""
-
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -10914,23 +11043,11 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbug:1
#, c-format
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Application Name\n"
+"or Full Path:"
msgstr ""
#: ../../services.pm:1
@@ -11286,22 +11403,6 @@ msgstr "%s பொதிகளை நிறுவுவதில் பிழை
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"பிழை அறிவிப்பாளன்\n"
-
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Add a scanner manually"
@@ -11433,7 +11534,7 @@ msgstr "பாதுகாப்பு மேலாளர்(பெயர் அ
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
@@ -11758,11 +11859,6 @@ msgid ""
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "வகிர் ஏதுமில்ைல"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
@@ -11773,6 +11869,11 @@ msgstr ""
msgid "Unselected All"
msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "வகிர் ஏதுமில்ைல"
+
#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Printer Management \n"
@@ -11813,7 +11914,7 @@ msgstr "முழு கருவையையும் உருவாக்க
msgid "modem"
msgstr "ேமாடம்"
-#: ../../install_steps.pm:1
+#: ../../lang.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "%s க்கு நல்வரவு "
@@ -11884,6 +11985,13 @@ msgstr ""
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+msgstr ""
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -12013,26 +12121,6 @@ msgid ""
"- System Files:\n"
msgstr "சாளர பாந்தம்"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured."
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -12815,7 +12903,7 @@ msgstr ""
msgid "Local Printer"
msgstr "உள்ளமை அச்சுப்ெபாறி"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "உங்கள் %s வட்ைட எங்கு ஏற்ற விரும்புகிறீர்கள்?"
@@ -12921,36 +13009,6 @@ msgstr "எலியின் வகை: %s\n"
msgid "Reselect correct fonts"
msgstr "எழுத்துருத் தேர்வாளர்"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs its images."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -13206,6 +13264,11 @@ msgstr "மே"
msgid "Yaboot mode"
msgstr "யாதொடக்க முறைமை"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "பொதுவான 3 பொத்தான் எலி"
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
@@ -13220,11 +13283,6 @@ msgstr ""
"லிலோவை மீண்டும் துவக்க முடியவில்ைல\n"
"\"லிலோ\" என்ற கட்டளையை நிர்வாகியாக மாறிக் கொடு"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "பொதுவான 3 பொத்தான் எலி"
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Select another media to restore from"
@@ -13543,23 +13601,6 @@ msgid ""
" --id <id_label> - load the html help page which refers to id_label\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Select a scanner model"
@@ -13938,11 +13979,6 @@ msgstr "களத்தின் பெயர்"
msgid "Sharing of local printers"
msgstr "உள்ளமைக் அச்சுப்ெபாறி"
-#: ../../install_messages.pm:1
-#, fuzzy, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
@@ -13953,6 +13989,11 @@ msgstr ""
msgid "Available printers"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "NO"
+msgstr "தகவல்"
+
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
@@ -13989,21 +14030,6 @@ msgstr ""
"\n"
"சரி என்பதை கிளிக் செய்யவும்"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
@@ -14782,6 +14808,17 @@ msgstr "கடுமையான பிழை"
msgid "Refresh the list"
msgstr "பயனரின் பட்டியல்"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -15318,12 +15355,17 @@ msgstr "பொது-இன திரையகம்"
msgid "Cylinder %d to %d\n"
msgstr "%d முதல் %d வரை உள்ள உருளைகள்\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "YOUR TEXT HERE"
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "New profile..."
msgstr "புதிய பயனர்குறிப்பு "
-#: ../../standalone/draksec:1
+#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "NONE"
msgstr ""
@@ -15895,6 +15937,11 @@ msgstr "மற்ற பல்லூடக சாதனங்கள்"
msgid "burner"
msgstr "அச்சுப்ெபாறி"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Bug Description/System Information"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " (Default is all users)"
@@ -16019,6 +16066,26 @@ msgstr "அழைப்பு வழி விருப்பத்ேதர்
msgid "If no port is given, 631 will be taken as default."
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be\n"
+" turned back off, retaining the configuration files, once the client "
+"machine is configured."
+msgstr ""
+
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -16242,7 +16309,7 @@ msgid ""
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Next"
msgstr "அடுத்து"
@@ -17498,7 +17565,7 @@ msgstr ""
msgid "format of floppies supported by the drive"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
@@ -18164,6 +18231,11 @@ msgstr ""
"\n"
"உங்கள் வன் வட்டில் உள்ள அனைத்து விவரங்களையும் இழக்க சம்மதமா?\n"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Find Package"
+msgstr "%d பொதிகள்"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
@@ -18279,6 +18351,24 @@ msgstr "LAN வடிவமைப்பு.."
msgid "hard disk model"
msgstr "வன்தட்டின் வகை"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
@@ -18456,16 +18546,16 @@ msgstr "ஆங்கில விசைப்பலகை"
msgid "Unmount"
msgstr "இறக்கு"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr ""
-
#: ../../mouse.pm:1
#, c-format
msgid "Microsoft Explorer"
msgstr "மைக்ேரசாப்ட் Explorer-மேலோடி"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Uninstall Fonts"
+msgstr ""
+
#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
@@ -18816,17 +18906,6 @@ msgstr "\"%s\" ...நடைபெறுகிறது"
msgid "enable radio support"
msgstr "வாெனாலி ஆதரவை ெசயலபடுத்து"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files."
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scanner sharing to hosts: "
diff --git a/perl-install/share/po/tg.po b/perl-install/share/po/tg.po
index ca3358ff9..2b1944c26 100644
--- a/perl-install/share/po/tg.po
+++ b/perl-install/share/po/tg.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.30\n"
-"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"POT-Creation-Date: 2003-09-16 13:45+0200\n"
"PO-Revision-Date: 2003-02-13 11:05+0500\n"
"Last-Translator: Dilshod Marupov <dma165@hotmail.com>\n"
"Language-Team: Tajik\n"
@@ -178,7 +178,7 @@ msgstr ""
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "Параметрҳо"
@@ -474,6 +474,11 @@ msgstr ""
msgid "Iraq"
msgstr "Ироқ"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "connecting to %s ..."
+msgstr "Хориҷкунии %s ..."
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
@@ -513,6 +518,16 @@ msgstr ""
msgid "Default desktop"
msgstr "Мизи корӣ"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on %s\n"
+" where you'll find a form to fill in. The information displayed above will "
+"be \n"
+"transferred to that server."
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
@@ -965,6 +980,36 @@ msgid ""
"No D-Channel (leased lines)"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \tdrakTermServ will configure this file to work in conjunction with "
+"the images created\n"
+" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to \n"
+" \teach diskless client.\n"
+"\n"
+" \tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t}\n"
+" \t\t\n"
+" \tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \tputs its images."
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
@@ -1578,14 +1623,14 @@ msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
"Барои интихоби элемегнтҳои рӯшаншуда %c ва дагмаҳои %c-ро истифода баред."
-#: ../../standalone/drakperm:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Enable \"%s\" to execute the file"
+msgid "Generic 2 Button Mouse"
msgstr ""
-#: ../../mouse.pm:1
+#: ../../standalone/drakperm:1
#, c-format
-msgid "Generic 2 Button Mouse"
+msgid "Enable \"%s\" to execute the file"
msgstr ""
#: ../../lvm.pm:1
@@ -2696,6 +2741,23 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \tThe diskless client machines need either ROM images on the NIC, or "
+"a boot floppy\n"
+" \tor CD to initate the boot sequence. drakTermServ will help "
+"generate these\n"
+" \timages, based on the NIC in the client machine.\n"
+" \t\t\n"
+" \tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
@@ -3070,22 +3132,6 @@ msgstr "Руст кардани файлҳо"
msgid "Auto-detect printers connected to this machine"
msgstr ""
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
@@ -3581,6 +3627,15 @@ msgstr ""
msgid "Restore From Tape"
msgstr "Барқарор Аз Лента"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click the report button, which will open your "
+"default browser\n"
+"to Anthill where you will be able to upload the above information as a bug "
+"report."
+msgstr ""
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
@@ -3718,7 +3773,7 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Insert floppy"
msgstr "Дискет"
@@ -3854,9 +3909,16 @@ msgstr ""
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../install_messages.pm:1
#, c-format
-msgid "connecting to Bugzilla wizard ..."
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
msgstr ""
#: ../../network/drakfirewall.pm:1
@@ -4031,6 +4093,11 @@ msgstr ""
msgid "Description"
msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Please enter summary text."
+msgstr "Лутфан номи дохилӣ гузоред"
+
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
@@ -4918,7 +4985,7 @@ msgstr ""
msgid "Right Control key"
msgstr "Идоракунии Дурдаст"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -5904,6 +5971,22 @@ msgstr ""
msgid "busmouse"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
+"be created.\n"
+" \tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical \n"
+" \tinterface to help manage/customize these images. To create the "
+"file \n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
@@ -6239,24 +6322,6 @@ msgstr ""
msgid "Floppy"
msgstr "Дискет"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -6782,6 +6847,11 @@ msgstr ""
msgid "Choose file"
msgstr "Файл интихоб кунед"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Summary: "
+msgstr ""
+
#: ../../network/shorewall.pm:1
#, c-format
msgid ""
@@ -6854,6 +6924,17 @@ msgstr "Қаламрави Ҷанубии Фаронса"
msgid "the vendor name of the processor"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain %s:\n"
+" \tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
+" \thelps in this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
@@ -7144,6 +7225,11 @@ msgstr ""
msgid "Encryption key for %s"
msgstr "Калидҳои рамздошта мувофиқ нестанд"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you want to recover your system?"
+msgstr "Шумо шаклро санҷидан мехоҳед"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -7558,6 +7644,11 @@ msgstr "Ба танзим даровардан"
msgid ", "
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit lspci"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
@@ -7764,6 +7855,11 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit cpuinfo"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
@@ -7774,6 +7870,11 @@ msgstr ""
msgid "Ethiopia"
msgstr "Ҳабашистон"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "YES"
+msgstr ""
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
@@ -8095,13 +8196,6 @@ msgstr ""
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr ""
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include:\n"
-msgstr ""
-
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
@@ -8402,6 +8496,11 @@ msgstr "Ҳамгомкунии Уфуқии Монитор: %s\n"
msgid "Path"
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "NOT FOUND"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -8951,18 +9050,6 @@ msgstr ""
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file."
-msgstr ""
-
#: ../../help.pm:1
#, c-format
msgid ""
@@ -9076,6 +9163,26 @@ msgstr "Кадом шакли XОзодро Шумо доштан мехоҳед
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP \n"
+" \taddress and net boot images to the machine. drakTermServ helps "
+"create/remove \n"
+" \tthese entries.\n"
+"\t\t\t\n"
+" \t(PCI cards may omit the image - etherboot will request the correct "
+"image. \n"
+"\t\t\tYou should also consider that when etherboot looks for the images, it "
+"expects \n"
+"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
@@ -9185,6 +9292,13 @@ msgid ""
"in number of characters"
msgstr ""
+#: ../../fsedit.pm:1
+#, c-format
+msgid ""
+"You may not be able to install lilo (since lilo doesn't handle a LV on "
+"multiple PVs)"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
@@ -9482,6 +9596,16 @@ msgstr ""
msgid "Unselect fonts installed"
msgstr ""
+#: ../../mouse.pm:1
+#, c-format
+msgid "Wheel"
+msgstr ""
+
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit kernel version"
+msgstr ""
+
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
@@ -9503,11 +9627,6 @@ msgstr "Бекор кардан"
msgid "Searching for configured scanners ..."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr ""
-
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Videocard"
@@ -9573,6 +9692,11 @@ msgstr "Пешфарз"
msgid "Button 2 Emulation"
msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Please enter a package name."
+msgstr "Илтимос ноим корвандро диҳед"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Run chkrootkit checks"
@@ -9652,6 +9776,11 @@ msgid ""
"\n"
msgstr ""
+#: ../../install_messages.pm:1
+#, fuzzy, c-format
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
+
#: ../../lang.pm:1
#, c-format
msgid "Honduras"
@@ -9803,6 +9932,45 @@ msgstr "Калиди рамздоштаи Файлсистем"
msgid "Gujarati"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" While you can use a pool of IP addresses, rather than setup a "
+"specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. "
+"Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client "
+"machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' "
+"tools. This is enabled \n"
+" by creating separate config files associated with the client's IP "
+"address and creating \n"
+" read/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+" with the configuration, you can remove root login privileges from "
+"the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing "
+"clients."
+msgstr ""
+
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
@@ -10112,45 +10280,6 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating separate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login privileges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing clients."
-msgstr ""
-
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -10523,23 +10652,11 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbug:1
#, c-format
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Application Name\n"
+"or Full Path:"
msgstr ""
#: ../../services.pm:1
@@ -10881,19 +10998,6 @@ msgstr ""
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add a scanner manually"
@@ -10998,7 +11102,7 @@ msgstr ""
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
@@ -11313,11 +11417,6 @@ msgid ""
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "Ягон бахшбандӣ дастрас нест"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
@@ -11328,6 +11427,11 @@ msgstr ""
msgid "Unselected All"
msgstr "Ноинтихоби Ҳама"
+#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "Ягон бахшбандӣ дастрас нест"
+
#: ../../standalone/printerdrake:1
#, c-format
msgid "Printer Management \n"
@@ -11368,7 +11472,7 @@ msgstr ""
msgid "modem"
msgstr "Модел"
-#: ../../install_steps.pm:1
+#: ../../lang.pm:1
#, c-format
msgid "Welcome to %s"
msgstr ""
@@ -11441,6 +11545,13 @@ msgstr ""
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+msgstr ""
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -11565,26 +11676,6 @@ msgid ""
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured."
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -12350,7 +12441,7 @@ msgstr ""
msgid "Local Printer"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "Шумо дар куҷо дастгоҳи %s-ро васл кардан мехоҳед?"
@@ -12452,36 +12543,6 @@ msgstr "Дастгоҳи муш: %s\n"
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs its images."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -12739,6 +12800,11 @@ msgstr "Мая"
msgid "Yaboot mode"
msgstr "Усули Yaboot"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr ""
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
@@ -12751,11 +12817,6 @@ msgid ""
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr ""
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Select another media to restore from"
@@ -13071,23 +13132,6 @@ msgid ""
" --id <id_label> - load the html help page which refers to id_label\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Select a scanner model"
@@ -13463,11 +13507,6 @@ msgstr ""
msgid "Sharing of local printers"
msgstr ""
-#: ../../install_messages.pm:1
-#, fuzzy, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
@@ -13478,6 +13517,11 @@ msgstr ""
msgid "Available printers"
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "NO"
+msgstr ""
+
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
@@ -13507,21 +13551,6 @@ msgid ""
"Press \"%s\" to continue."
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
@@ -14282,6 +14311,17 @@ msgstr "ДАҒАЛ"
msgid "Refresh the list"
msgstr "Рӯйхати корвандҳо"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -14815,12 +14855,17 @@ msgstr ""
msgid "Cylinder %d to %d\n"
msgstr "Силиндри %d то %d\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "YOUR TEXT HERE"
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "New profile..."
msgstr ""
-#: ../../standalone/draksec:1
+#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "NONE"
msgstr ""
@@ -15374,6 +15419,11 @@ msgstr "Муҳити Дигар"
msgid "burner"
msgstr "корванд"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Bug Description/System Information"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " (Default is all users)"
@@ -15496,6 +15546,26 @@ msgstr ""
msgid "If no port is given, 631 will be taken as default."
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be\n"
+" turned back off, retaining the configuration files, once the client "
+"machine is configured."
+msgstr ""
+
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -15711,7 +15781,7 @@ msgid ""
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Next"
msgstr ""
@@ -16950,7 +17020,7 @@ msgstr ""
msgid "format of floppies supported by the drive"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
@@ -17563,6 +17633,11 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Find Package"
+msgstr "%d қуттиҳо"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
@@ -17678,6 +17753,24 @@ msgstr ""
msgid "hard disk model"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
@@ -17853,14 +17946,14 @@ msgstr ""
msgid "Unmount"
msgstr "Ҷудо кунӣ"
-#: ../../standalone/drakfont:1
+#: ../../mouse.pm:1
#, c-format
-msgid "Uninstall Fonts"
+msgid "Microsoft Explorer"
msgstr ""
-#: ../../mouse.pm:1
+#: ../../standalone/drakfont:1
#, c-format
-msgid "Microsoft Explorer"
+msgid "Uninstall Fonts"
msgstr ""
#: ../../keyboard.pm:1
@@ -18205,17 +18298,6 @@ msgstr ""
msgid "enable radio support"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files."
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Scanner sharing to hosts: "
@@ -18634,9 +18716,6 @@ msgstr ""
#~ msgid "Please relog into %s to activate the changes"
#~ msgstr "Лутфан барои фаъол кардани ивазҳо ба %s бозсабт шавед"
-#~ msgid "Please enter your login"
-#~ msgstr "Лутфан номи дохилӣ гузоред"
-
#~ msgid "path"
#~ msgstr "роҳ"
diff --git a/perl-install/share/po/th.po b/perl-install/share/po/th.po
index 82e81fd7f..48233fa21 100644
--- a/perl-install/share/po/th.po
+++ b/perl-install/share/po/th.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"POT-Creation-Date: 2003-09-16 13:45+0200\n"
"PO-Revision-Date: 2001-09-10 14:24GMT+7\n"
"Last-Translator: Wachara Chinsettawong <wachara@yahoo.com>\n"
"Language-Team: Thai <th@li.org>\n"
@@ -177,7 +177,7 @@ msgstr "Ethernet Card"
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "Parameters"
@@ -483,6 +483,11 @@ msgstr ""
msgid "Iraq"
msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "connecting to %s ..."
+msgstr "อ่าน CUPS drivers database..."
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
@@ -522,6 +527,16 @@ msgstr ""
msgid "Default desktop"
msgstr "Default"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on %s\n"
+" where you'll find a form to fill in. The information displayed above will "
+"be \n"
+"transferred to that server."
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
@@ -1095,6 +1110,36 @@ msgstr ""
"Rest of the world \n"
"No D-Channel (leased lines)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \tdrakTermServ will configure this file to work in conjunction with "
+"the images created\n"
+" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to \n"
+" \teach diskless client.\n"
+"\n"
+" \tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t}\n"
+" \t\t\n"
+" \tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \tputs its images."
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
@@ -1686,16 +1731,16 @@ msgstr ""
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "ใช้ %c และ %c เพื่อเลือก."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Enable \"%s\" to execute the file"
+msgstr ""
+
#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
@@ -2702,6 +2747,23 @@ msgstr "นี่คือแพกเกจที่ต้องติดตั
#: ../../standalone/drakTermServ:1
#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \tThe diskless client machines need either ROM images on the NIC, or "
+"a boot floppy\n"
+" \tor CD to initate the boot sequence. drakTermServ will help "
+"generate these\n"
+" \timages, based on the NIC in the client machine.\n"
+" \t\t\n"
+" \tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
@@ -3082,22 +3144,6 @@ msgstr "mkraid failed"
msgid "Auto-detect printers connected to this machine"
msgstr "เครื่องพิมพ์แบบรีโมท"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
@@ -3594,6 +3640,15 @@ msgstr ""
msgid "Restore From Tape"
msgstr "กู้ตารางพาร์ติชั่น"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click the report button, which will open your "
+"default browser\n"
+"to Anthill where you will be able to upload the above information as a bug "
+"report."
+msgstr ""
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
@@ -3728,7 +3783,7 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Insert floppy"
msgstr "ให้ใส่แผ่นฟล้อปปี้ลงในไดรว์ %s"
@@ -3864,9 +3919,16 @@ msgstr "ไม่มีการคอนฟิกจอภาพ"
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../install_messages.pm:1
#, c-format
-msgid "connecting to Bugzilla wizard ..."
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
msgstr ""
#: ../../network/drakfirewall.pm:1
@@ -4045,6 +4107,11 @@ msgstr "ยอมรับ"
msgid "Description"
msgstr "รายละเอียด"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Please enter summary text."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
@@ -4872,7 +4939,7 @@ msgstr ""
msgid "Right Control key"
msgstr "เครื่องพิมพ์แบบรีโมท"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -5831,6 +5898,22 @@ msgstr ""
msgid "busmouse"
msgstr "busmouse"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
+"be created.\n"
+" \tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical \n"
+" \tinterface to help manage/customize these images. To create the "
+"file \n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
@@ -6169,24 +6252,6 @@ msgstr ""
msgid "Floppy"
msgstr "บันทึกลงแผ่นฟล้อปปี้"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -6715,6 +6780,11 @@ msgstr "การเชื่อมต่อกับ Internet แบบ sharing
msgid "Choose file"
msgstr "เลือก file"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Summary: "
+msgstr "รวมความ"
+
#: ../../network/shorewall.pm:1
#, c-format
msgid ""
@@ -6787,6 +6857,17 @@ msgstr ""
msgid "the vendor name of the processor"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain %s:\n"
+" \tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
+" \thelps in this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
@@ -7074,6 +7155,11 @@ msgstr "เรียกคืนจากไฟล์"
msgid "Encryption key for %s"
msgstr "รหัสผ่านไม่เหมือนกัน"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you want to recover your system?"
+msgstr "คุณต้องการใช้ aboot หรือไม่"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -7496,6 +7582,11 @@ msgstr "คอนฟิกระบบ X"
msgid ", "
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit lspci"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove selected host/network"
@@ -7721,6 +7812,11 @@ msgstr ""
"\n"
"ผมกำลังจะใช้ adapter นี้กับระบบ LAN"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit cpuinfo"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Minimal install"
@@ -7731,6 +7827,11 @@ msgstr "ออกจากการติดตั้ง"
msgid "Ethiopia"
msgstr "Estonian"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "YES"
+msgstr ""
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
@@ -8010,13 +8111,6 @@ msgstr ""
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/วินโดวส์ 95/98/NT"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include:\n"
-msgstr ""
-
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
@@ -8322,6 +8416,11 @@ msgstr "อัตราความถี่กวาดตามแนวนอ
msgid "Path"
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "NOT FOUND"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -8856,18 +8955,6 @@ msgstr "สำคัญ"
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -9002,6 +9089,26 @@ msgstr "XFree ชนิดใหนที่คุณต้องการมี
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP \n"
+" \taddress and net boot images to the machine. drakTermServ helps "
+"create/remove \n"
+" \tthese entries.\n"
+"\t\t\t\n"
+" \t(PCI cards may omit the image - etherboot will request the correct "
+"image. \n"
+"\t\t\tYou should also consider that when etherboot looks for the images, it "
+"expects \n"
+"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
@@ -9111,6 +9218,13 @@ msgid ""
"in number of characters"
msgstr ""
+#: ../../fsedit.pm:1
+#, c-format
+msgid ""
+"You may not be able to install lilo (since lilo doesn't handle a LV on "
+"multiple PVs)"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Updating package selection"
@@ -9373,6 +9487,16 @@ msgstr "ชื่อโฮสต์:"
msgid "Unselect fonts installed"
msgstr ""
+#: ../../mouse.pm:1
+#, c-format
+msgid "Wheel"
+msgstr "Wheel"
+
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Submit kernel version"
+msgstr "kernel version"
+
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
@@ -9394,11 +9518,6 @@ msgstr "ยกเลิก"
msgid "Searching for configured scanners ..."
msgstr "เครื่องพิมพ์โลคอล (ต่อติดกับตัวเครื่อง)"
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Wheel"
-
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Videocard"
@@ -9464,6 +9583,11 @@ msgstr "Default"
msgid "Button 2 Emulation"
msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Please enter a package name."
+msgstr "โปรดป้อนชื่อผู้ใช้"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Run chkrootkit checks"
@@ -9543,6 +9667,11 @@ msgid ""
"\n"
msgstr ""
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "Honduras"
@@ -9693,6 +9822,45 @@ msgstr "ประเภทของระบบไฟล์: "
msgid "Gujarati"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" While you can use a pool of IP addresses, rather than setup a "
+"specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. "
+"Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client "
+"machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' "
+"tools. This is enabled \n"
+" by creating separate config files associated with the client's IP "
+"address and creating \n"
+" read/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+" with the configuration, you can remove root login privileges from "
+"the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing "
+"clients."
+msgstr ""
+
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
@@ -9966,45 +10134,6 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating separate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login privileges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing clients."
-msgstr ""
-
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -10382,23 +10511,11 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbug:1
#, c-format
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Application Name\n"
+"or Full Path:"
msgstr ""
#: ../../services.pm:1
@@ -10761,19 +10878,6 @@ msgstr "ปัญหาการติดตั้งแพ็คเก็จ %s
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add a scanner manually"
@@ -10878,7 +10982,7 @@ msgstr "อ๊อปชั่นของเครื่องพิมพ์แ
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
@@ -11203,11 +11307,6 @@ msgid ""
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "ไม่มีพาร์ติชั่นเหลือ"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
@@ -11218,6 +11317,11 @@ msgstr ""
msgid "Unselected All"
msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "ไม่มีพาร์ติชั่นเหลือ"
+
#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Printer Management \n"
@@ -11258,7 +11362,7 @@ msgstr ""
msgid "modem"
msgstr "Mouse"
-#: ../../install_steps.pm:1
+#: ../../lang.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "ยินดีต้อนรับสู่ %s"
@@ -11329,6 +11433,13 @@ msgstr ""
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+msgstr ""
+
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid ""
@@ -11460,26 +11571,6 @@ msgid ""
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured."
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -12254,7 +12345,7 @@ msgstr ""
msgid "Local Printer"
msgstr "เครื่องพิมพ์โลคอล (ต่อติดกับตัวเครื่อง)"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "คุณต้องการเม้าท์อุปกรณ์ %s ไว้ที่ใด?"
@@ -12354,36 +12445,6 @@ msgstr "ดีไวซ์ของเม้าส์: %s\n"
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs its images."
-msgstr ""
-
#: ../../help.pm:1
#, c-format
msgid ""
@@ -12633,6 +12694,11 @@ msgstr "พฤษภาคม"
msgid "Yaboot mode"
msgstr "Boot mode"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "เม้าส์แบบปกติที่ใช้งานสามปุ่ม"
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
@@ -12645,11 +12711,6 @@ msgid ""
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "เม้าส์แบบปกติที่ใช้งานสามปุ่ม"
-
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Select another media to restore from"
@@ -12965,23 +13026,6 @@ msgid ""
" --id <id_label> - load the html help page which refers to id_label\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Select a scanner model"
@@ -13328,11 +13372,6 @@ msgstr "ชื่อโดเมน"
msgid "Sharing of local printers"
msgstr "เครื่องพิมพ์โลคอล (ต่อติดกับตัวเครื่อง)"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr ""
-
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
@@ -13343,6 +13382,11 @@ msgstr ""
msgid "Available printers"
msgstr "เครื่องพิมพ์โลคอล (ต่อติดกับตัวเครื่อง)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "NO"
+msgstr ""
+
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
@@ -13374,21 +13418,6 @@ msgstr ""
"\n"
"คุณสามารถเลิกติดต่อหรือทำการปรับแต่งการติดต่อของคุณใหม่"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Interface \"%s\""
@@ -14150,6 +14179,17 @@ msgstr "FAT"
msgid "Refresh the list"
msgstr "ฟอร์แมต loopback file %s"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -14684,12 +14724,17 @@ msgstr "Generic"
msgid "Cylinder %d to %d\n"
msgstr "ไซลินเดอร์ %d เป็น ไซลินเดอร์ %d\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "YOUR TEXT HERE"
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "New profile..."
msgstr "profile ใหม่..."
-#: ../../standalone/draksec:1
+#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "NONE"
msgstr ""
@@ -15233,6 +15278,11 @@ msgstr "อื่นๆ"
msgid "burner"
msgstr "เครื่องพิมพ์"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Bug Description/System Information"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " (Default is all users)"
@@ -15355,6 +15405,26 @@ msgstr "อ็อปชั่นของการหมุนโทรศัพ
msgid "If no port is given, 631 will be taken as default."
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be\n"
+" turned back off, retaining the configuration files, once the client "
+"machine is configured."
+msgstr ""
+
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -15550,7 +15620,7 @@ msgid ""
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Next"
msgstr "Next ->"
@@ -16745,7 +16815,7 @@ msgstr ""
msgid "format of floppies supported by the drive"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
@@ -17310,6 +17380,11 @@ msgstr ""
"\n"
"คุณแน่ใจว่าจะยอมให้พาร์ติชั่นทั้งหมดถูกลบไป\n"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Find Package"
+msgstr "แพ็คเก็จ %d ชุด"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
@@ -17425,6 +17500,24 @@ msgstr "การปรับแต่ง LAN"
msgid "hard disk model"
msgstr "Card mem (DMA)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
@@ -17602,16 +17695,16 @@ msgstr "อังกฤษ"
msgid "Unmount"
msgstr "เลิกเม้าท์์ระบบไฟล์"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr ""
-
#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft IntelliMouse"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Uninstall Fonts"
+msgstr ""
+
#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
@@ -17958,17 +18051,6 @@ msgstr "อ่าน CUPS drivers database..."
msgid "enable radio support"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files."
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scanner sharing to hosts: "
diff --git a/perl-install/share/po/tr.po b/perl-install/share/po/tr.po
index b2d8c01a5..1756967eb 100644
--- a/perl-install/share/po/tr.po
+++ b/perl-install/share/po/tr.po
@@ -14,7 +14,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-tr\n"
-"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"POT-Creation-Date: 2003-09-16 13:45+0200\n"
"PO-Revision-Date: 2003-09-11 22:21+0300\n"
"Last-Translator: Ömer Fadıl USTA <omer_fad@hotmail.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
@@ -199,7 +199,7 @@ msgstr ""
"Ayarlanırsa, raporlar root kullanıcısı yerine verilen posta adresine "
"gönderilir"
-#: ../../standalone/drakconnect:1
+#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "Paremetreler"
@@ -514,6 +514,11 @@ msgstr "Veriyolu"
msgid "Iraq"
msgstr "Irak"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "connecting to %s ..."
+msgstr "Bugzilla sihirbazına bağlanılıyor..."
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
@@ -557,6 +562,20 @@ msgstr "Yüklü yazıtiplerini ara"
msgid "Default desktop"
msgstr "Öntanımlı masaüstü"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on %s\n"
+" where you'll find a form to fill in. The information displayed above will "
+"be \n"
+"transferred to that server."
+msgstr ""
+"Hata bildirimi göndermek için düğmeye tıklayın.\n"
+"Web tarayıcısı %s adresiyle açılacaktır.\n"
+"Oradaki formu doldurunca yukarıdaki bilgilerilerle birlikte oraya\n"
+"gönderilecek."
+
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
@@ -1120,6 +1139,36 @@ msgstr ""
"Dünyanın diğer kısımları için protokol \n"
" D-Kanalı yok (kiralık hat)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \tdrakTermServ will configure this file to work in conjunction with "
+"the images created\n"
+" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to \n"
+" \teach diskless client.\n"
+"\n"
+" \tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t}\n"
+" \t\t\n"
+" \tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \tputs its images."
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
@@ -1780,16 +1829,16 @@ msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
"Bir secenegi isaretli duruma getirmek icin %c ve %c tuslarini kullaniniz."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Sıradan 2 Tuşlu Fare"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Enable \"%s\" to execute the file"
+msgstr ""
+
#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
@@ -3002,6 +3051,23 @@ msgstr "Bu zorunlu bir pakettir, seçmemek olmaz"
#: ../../standalone/drakTermServ:1
#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \tThe diskless client machines need either ROM images on the NIC, or "
+"a boot floppy\n"
+" \tor CD to initate the boot sequence. drakTermServ will help "
+"generate these\n"
+" \timages, based on the NIC in the client machine.\n"
+" \t\t\n"
+" \tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO görüntüsü: %s"
@@ -3403,33 +3469,6 @@ msgstr "Dosyaları gizle"
msgid "Auto-detect printers connected to this machine"
msgstr "Bu makineye bağlı yazıcıları otomatik tanı"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-"XawTV kurulu değil!\n"
-"\n"
-"\n"
-"Eğer bir TV kartınız varsa ancak DrakX bunu algılayamadıysa (\"/etc/modules\n"
-"dosyasında bttv modulü yoksa) ya da xawtv yi yüklemedi ise lütfen \n"
-"\"lspcidrake -v -f\"\n"
-" komutunun sonuçlarını \"install\\@mandrakesoft.com\" \n"
-"adresine konu kısmına \"undetected TV card\" yazarak gönderin.\n"
-"\n"
-"\n"
-"Konsolda root olarak \"urpmi xawtv\" komutuyla kurabilirsiniz."
-
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
@@ -4001,6 +4040,19 @@ msgstr ""
msgid "Restore From Tape"
msgstr "Banttan Geri Al"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid ""
+"To submit a bug report, click the report button, which will open your "
+"default browser\n"
+"to Anthill where you will be able to upload the above information as a bug "
+"report."
+msgstr ""
+"Hata bildirimi göndermek için düğmeye tıklayın.\n"
+"Web tarayıcısı %s adresiyle açılacaktır.\n"
+"Oradaki formu doldurunca yukarıdaki bilgilerilerle birlikte oraya\n"
+"gönderilecek."
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
@@ -4139,7 +4191,7 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr "Makine adı, kullanıcı adı ve parola gerekli!"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Insert floppy"
msgstr "disket yerleştirin"
@@ -4283,10 +4335,17 @@ msgstr "Ağ bağdaştırıcı zaten yapılandırılmış"
msgid "Couldn't access the floppy!"
msgstr "Diskete erişilemiyor!"
-#: ../../standalone/drakbug:1
+#: ../../install_messages.pm:1
#, c-format
-msgid "connecting to Bugzilla wizard ..."
-msgstr "Bugzilla sihirbazına bağlanılıyor..."
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -4472,6 +4531,11 @@ msgstr "Kabul"
msgid "Description"
msgstr "Tanım"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Please enter summary text."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
@@ -5428,7 +5492,7 @@ msgstr ""
msgid "Right Control key"
msgstr "Sağ Kontrol tuşu"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -6503,6 +6567,22 @@ msgstr ""
msgid "busmouse"
msgstr "bus fare"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
+"be created.\n"
+" \tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical \n"
+" \tinterface to help manage/customize these images. To create the "
+"file \n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
@@ -6863,24 +6943,6 @@ msgstr ""
msgid "Floppy"
msgstr "Disket Sürücü"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -7494,6 +7556,11 @@ msgstr "İnternet Bağlantısı Paylaşımı"
msgid "Choose file"
msgstr "Dosya seçin"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Summary: "
+msgstr "Özet"
+
#: ../../network/shorewall.pm:1
#, c-format
msgid ""
@@ -7570,6 +7637,17 @@ msgstr "Fransa'nın Güney Bölgeleri"
msgid "the vendor name of the processor"
msgstr "işlemcinin üreticisinin adı"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain %s:\n"
+" \tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
+" \thelps in this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
@@ -7884,6 +7962,11 @@ msgstr "Kullanıcıları geri al"
msgid "Encryption key for %s"
msgstr "%s için Parola"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you want to recover your system?"
+msgstr "aboot uygulamasını kullanmak istiyor musunuz?"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -8320,6 +8403,11 @@ msgstr "/_CUPS'u Yapılandır"
msgid ", "
msgstr ", "
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit lspci"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
@@ -8561,6 +8649,11 @@ msgstr ""
"\n"
"Yerel ağınız şimdi bu bağdaştırıcıyla yapılandırılacak."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit cpuinfo"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
@@ -8571,6 +8664,11 @@ msgstr "En ufak kurulum"
msgid "Ethiopia"
msgstr "Etiyopya"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "YES"
+msgstr ""
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
@@ -8903,15 +9001,6 @@ msgstr "Kurulum türü"
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "SMB/Windows sunucusu olan \"%2$s\"deki \"%1$s\" adlı yazıcı"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include:\n"
-msgstr ""
-"\n"
-"- Ardsüreç (%s) bulunsun :\n"
-
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
@@ -9232,6 +9321,11 @@ msgstr "Monitörün Yatay Tazelemesi: %s\n"
msgid "Path"
msgstr "Yol"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "NOT FOUND"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -9816,18 +9910,6 @@ msgstr "önemli"
msgid "Total Progress"
msgstr "İşlenen Toplam"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -9952,6 +10034,26 @@ msgstr "Yapılandırma tamamlandı, ayarların uygulanmasını ister misiniz ?"
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr "Fark Yedeklemesi Yapılsın (eski yedeklemeler kullanılmaz)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP \n"
+" \taddress and net boot images to the machine. drakTermServ helps "
+"create/remove \n"
+" \tthese entries.\n"
+"\t\t\t\n"
+" \t(PCI cards may omit the image - etherboot will request the correct "
+"image. \n"
+"\t\t\tYou should also consider that when etherboot looks for the images, it "
+"expects \n"
+"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
@@ -10071,6 +10173,13 @@ msgstr ""
"karakter sayısı olarak\n"
"metin kutusunun x koordinatı"
+#: ../../fsedit.pm:1
+#, c-format
+msgid ""
+"You may not be able to install lilo (since lilo doesn't handle a LV on "
+"multiple PVs)"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
@@ -10372,6 +10481,16 @@ msgstr "Makina adı gerekiyor"
msgid "Unselect fonts installed"
msgstr "Yüklü yazı tiplerini seçimden çıkar"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Wheel"
+msgstr "Tekerli"
+
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Submit kernel version"
+msgstr "Çekirdek sürümü"
+
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
@@ -10393,11 +10512,6 @@ msgstr "İptal"
msgid "Searching for configured scanners ..."
msgstr "Yapılandırılmış tarayıcılar aranıyor ..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Tekerli"
-
#: ../../harddrake/data.pm:1
#, c-format
msgid "Videocard"
@@ -10466,6 +10580,11 @@ msgstr "Öntanımlı"
msgid "Button 2 Emulation"
msgstr "2. Tuş emülasyonu"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Please enter a package name."
+msgstr "Lütfen bir kullanıcı adı verin"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Run chkrootkit checks"
@@ -10549,6 +10668,11 @@ msgstr ""
"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+
#: ../../lang.pm:1
#, c-format
msgid "Honduras"
@@ -10713,6 +10837,45 @@ msgstr "Dosya sistemi parolası"
msgid "Gujarati"
msgstr "Güceratça"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" While you can use a pool of IP addresses, rather than setup a "
+"specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. "
+"Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client "
+"machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' "
+"tools. This is enabled \n"
+" by creating separate config files associated with the client's IP "
+"address and creating \n"
+" read/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+" with the configuration, you can remove root login privileges from "
+"the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing "
+"clients."
+msgstr ""
+
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
@@ -11039,45 +11202,6 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating separate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login privileges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing clients."
-msgstr ""
-
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -11486,23 +11610,11 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbug:1
#, c-format
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Application Name\n"
+"or Full Path:"
msgstr ""
#: ../../services.pm:1
@@ -11885,26 +11997,6 @@ msgstr "%s paketi kurulumunda problem"
msgid "You will receive an alert if the load is higher than this value"
msgstr "Yükleme bu değerden fazlaysa bir uyarı alacaksınız"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"Hata bildirimi göndermek için düğmeye tıklayın.\n"
-"Web tarayıcısı https://drakbug.mandrakesoft.com adresiyle açılacaktır.\n"
-"Oradaki formu doldurunca yukarıdaki bilgilerilerle birlikte oraya\n"
-"gönderilecek.\n"
-"\n"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add a scanner manually"
@@ -12043,7 +12135,7 @@ msgstr "Güvenlik Yöneticisi:"
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
@@ -12411,11 +12503,6 @@ msgstr ""
"Onun yapılandırmasının üzerine yazılmasını\n"
"gerçekten istiyor musunuz?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "hiç bölüm bulunamadı"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
@@ -12426,6 +12513,11 @@ msgstr "Şu makinelerdeki tarayıcıları kullan: "
msgid "Unselected All"
msgstr "Tümünü Seçimden Çıkar"
+#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "hiç bölüm bulunamadı"
+
#: ../../standalone/printerdrake:1
#, c-format
msgid "Printer Management \n"
@@ -12466,7 +12558,7 @@ msgstr "Bütün Çekirdeği Derle -->"
msgid "modem"
msgstr "modem"
-#: ../../install_steps.pm:1
+#: ../../lang.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "%s Hoş Geldiniz"
@@ -12553,6 +12645,15 @@ msgstr ""
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "Yanlış CD etiketi. CD, %s olarak etiketlenmiş."
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+msgstr ""
+"\n"
+"- Ardsüreç (%s) bulunsun :\n"
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -12690,26 +12791,6 @@ msgstr ""
"\n"
"- Sistem Dosyaları:\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured."
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -13521,7 +13602,7 @@ msgstr "Linux'un geleceğini imar edin!"
msgid "Local Printer"
msgstr "Yerel Yazıcı"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "%s aygıtını nereye bağlamak istiyorsunuz?"
@@ -13627,36 +13708,6 @@ msgstr "Fare aygıtı: %s\n"
msgid "Reselect correct fonts"
msgstr "Doğru yazı tiplerini yeniden seç"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs its images."
-msgstr ""
-
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
@@ -13921,6 +13972,11 @@ msgstr "Mayıs"
msgid "Yaboot mode"
msgstr "Yaboot kipi"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "Sıradan 3 Tuşlu Fare"
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
@@ -13936,11 +13992,6 @@ msgstr ""
"LiLo tema kurulumunu tamamlamak için root kullanıcısı olarak komut satırında "
"\"lilo\" komutunu verin."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Sıradan 3 Tuşlu Fare"
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Select another media to restore from"
@@ -14262,23 +14313,6 @@ msgid ""
" --id <id_label> - load the html help page which refers to id_label\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Select a scanner model"
@@ -14673,11 +14707,6 @@ msgstr "Alan adı"
msgid "Sharing of local printers"
msgstr "Yerel yazıcılar paylaşılıyor"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
-
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
@@ -14688,6 +14717,11 @@ msgstr ""
msgid "Available printers"
msgstr "Mevcut yazıcılar"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "NO"
+msgstr "BİLGİ"
+
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
@@ -14724,21 +14758,6 @@ msgstr ""
"\n"
"Devam etmek için Tamam'a tıklayınız."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
@@ -15546,6 +15565,17 @@ msgstr "ÖLÜMCÜL"
msgid "Refresh the list"
msgstr "Listeyi tazeler"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -16098,12 +16128,17 @@ msgstr "Genel"
msgid "Cylinder %d to %d\n"
msgstr "%d. silindirden %d. silindire kadar\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "YOUR TEXT HERE"
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "New profile..."
msgstr "Yeni Profil..."
-#: ../../standalone/draksec:1
+#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "NONE"
msgstr "HİÇBİRİ"
@@ -16680,6 +16715,11 @@ msgstr "Diğer Çoklu Ortam aygıtları"
msgid "burner"
msgstr "cdyazıcı"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Bug Description/System Information"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, c-format
msgid " (Default is all users)"
@@ -16814,6 +16854,26 @@ msgstr "Çevirmeli ağ seçenekleri"
msgid "If no port is given, 631 will be taken as default."
msgstr "Eğer liman numarası girilmezse, 631 öntanımlı olarak alınacaktır."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be\n"
+" turned back off, retaining the configuration files, once the client "
+"machine is configured."
+msgstr ""
+
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -17042,7 +17102,7 @@ msgstr ""
"olarak /dev/lp1,..., 1. USB yazıcı için /dev/usb/lp0, 2. USB yazıcı için /"
"dev/usb/lp1, ...)."
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Next"
msgstr "İleri"
@@ -18361,7 +18421,7 @@ msgstr " adsl"
msgid "format of floppies supported by the drive"
msgstr "Sürücü tarafından desteklenilen biçimlendirme tarzları"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
@@ -19056,6 +19116,11 @@ msgstr ""
"\n"
"Bütün bölümlemeleri kaybetmeyi kabul ediyor musunuz?\n"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Find Package"
+msgstr "%d paket"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
@@ -19171,6 +19236,24 @@ msgstr "Yerel Ağ yapılandırması"
msgid "hard disk model"
msgstr "sabit disk modeli"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
@@ -19353,16 +19436,16 @@ msgstr "İngiliz (UK) klavye"
msgid "Unmount"
msgstr "Ayır"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Yazı tiplerini Kaldır"
-
#: ../../mouse.pm:1
#, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft Explorer"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Uninstall Fonts"
+msgstr "Yazı tiplerini Kaldır"
+
#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
@@ -19738,17 +19821,6 @@ msgstr "\"%s\" çalıştırılıyor..."
msgid "enable radio support"
msgstr "radyo desteğini etkinleştir"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files."
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Scanner sharing to hosts: "
@@ -20171,6 +20243,32 @@ msgstr "NFS sunucusu, SMB sunucusu, Vekil Sunucu, ssh Sunucu"
msgid "Set of tools to read and send mail and news and to browse the Web"
msgstr "Webde dolaşmak , posta , haber okumak ve yollamak için araçları ayarla"
+#~ msgid ""
+#~ "XawTV isn't installed!\n"
+#~ "\n"
+#~ "\n"
+#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
+#~ "saa7134\n"
+#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
+#~ "results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+#~ "with subject \"undetected TV card\".\n"
+#~ "\n"
+#~ "\n"
+#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
+#~ msgstr ""
+#~ "XawTV kurulu değil!\n"
+#~ "\n"
+#~ "\n"
+#~ "Eğer bir TV kartınız varsa ancak DrakX bunu algılayamadıysa (\"/etc/"
+#~ "modules\n"
+#~ "dosyasında bttv modulü yoksa) ya da xawtv yi yüklemedi ise lütfen \n"
+#~ "\"lspcidrake -v -f\"\n"
+#~ " komutunun sonuçlarını \"install\\@mandrakesoft.com\" \n"
+#~ "adresine konu kısmına \"undetected TV card\" yazarak gönderin.\n"
+#~ "\n"
+#~ "\n"
+#~ "Konsolda root olarak \"urpmi xawtv\" komutuyla kurabilirsiniz."
+
#~ msgid "http://www.mandrakelinux.com/en/91errata.php3"
#~ msgstr "http://www.mandrakelinux.com/en/91errata.php3"
diff --git a/perl-install/share/po/uz.po b/perl-install/share/po/uz.po
index d63271d56..f62222752 100644
--- a/perl-install/share/po/uz.po
+++ b/perl-install/share/po/uz.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-uz@Cyrl\n"
-"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"POT-Creation-Date: 2003-09-16 13:45+0200\n"
"PO-Revision-Date: 2003-09-10 23:11+0200\n"
"Last-Translator: Mashrab Kuvatov <kmashrab@uni-bremen.de>\n"
"Language-Team: Uzbek <uz-li@yahoogroups.com>\n"
@@ -188,7 +188,7 @@ msgstr "Ethernet karta"
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
-#: ../../standalone/drakconnect:1
+#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "Parameterlar"
@@ -494,6 +494,11 @@ msgstr ""
msgid "Iraq"
msgstr "Iroq"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "connecting to %s ..."
+msgstr "Bugzilla yordamchisi bilan aloqa o'rnatilmoqda..."
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
@@ -533,6 +538,16 @@ msgstr "O'rnatilgan shriftlarni qidirish"
msgid "Default desktop"
msgstr "Andoza ish stoli"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on %s\n"
+" where you'll find a form to fill in. The information displayed above will "
+"be \n"
+"transferred to that server."
+msgstr ""
+
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
@@ -1129,6 +1144,36 @@ msgid ""
"No D-Channel (leased lines)"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \tdrakTermServ will configure this file to work in conjunction with "
+"the images created\n"
+" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to \n"
+" \teach diskless client.\n"
+"\n"
+" \tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t}\n"
+" \t\t\n"
+" \tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \tputs its images."
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
@@ -1720,16 +1765,16 @@ msgstr ""
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Belgilash uchun %c va %c tugmalaridan foydalaning."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr ""
-
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "2 tugmali andoza sichqoncha"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Enable \"%s\" to execute the file"
+msgstr ""
+
#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
@@ -2767,6 +2812,23 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \tThe diskless client machines need either ROM images on the NIC, or "
+"a boot floppy\n"
+" \tor CD to initate the boot sequence. drakTermServ will help "
+"generate these\n"
+" \timages, based on the NIC in the client machine.\n"
+" \t\t\n"
+" \tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
@@ -3158,22 +3220,6 @@ msgstr "Fayllarni yashirish"
msgid "Auto-detect printers connected to this machine"
msgstr "Bu kompyuterga ulangan printerlarni avtomatik ravishda aniqlash"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
@@ -3694,6 +3740,15 @@ msgstr ""
msgid "Restore From Tape"
msgstr "Magnit tasmasidan tiklash"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click the report button, which will open your "
+"default browser\n"
+"to Anthill where you will be able to upload the above information as a bug "
+"report."
+msgstr ""
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
@@ -3828,7 +3883,7 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr "Kompyuterning nomi, foydalanuvchi va maxfiy so'z kerak!"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Insert floppy"
msgstr "Disketni qo'ying"
@@ -3968,10 +4023,17 @@ msgstr "Tarmoq interfeysi allaqachon moslangan"
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakbug:1
+#: ../../install_messages.pm:1
#, c-format
-msgid "connecting to Bugzilla wizard ..."
-msgstr "Bugzilla yordamchisi bilan aloqa o'rnatilmoqda..."
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -4151,6 +4213,11 @@ msgstr "Qabul qilish"
msgid "Description"
msgstr "Ta'rifi"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Please enter summary text."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
@@ -4993,7 +5060,7 @@ msgstr ""
msgid "Right Control key"
msgstr "O'ng Ctrl tugmasi"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -5959,6 +6026,22 @@ msgstr ""
msgid "busmouse"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
+"be created.\n"
+" \tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical \n"
+" \tinterface to help manage/customize these images. To create the "
+"file \n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
@@ -6316,24 +6399,6 @@ msgstr ""
msgid "Floppy"
msgstr "Disket"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network."
-msgstr ""
-
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -6881,6 +6946,11 @@ msgstr ""
msgid "Choose file"
msgstr "Faylni tanlash"
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Summary: "
+msgstr "Hisobot"
+
#: ../../network/shorewall.pm:1
#, c-format
msgid ""
@@ -6953,6 +7023,17 @@ msgstr "Frantsiyaning Janubiy Erlari"
msgid "the vendor name of the processor"
msgstr "Protsessorni ishlab chiqargan firmaning nomi"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain %s:\n"
+" \tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
+" \thelps in this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
@@ -7248,6 +7329,11 @@ msgstr "Foydalanuvchilarni tiklash"
msgid "Encryption key for %s"
msgstr "%s uchun kodlash kaliti"
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Do you want to recover your system?"
+msgstr "aboot dasturidan foydalanishni istaysizmi?"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -7675,6 +7761,11 @@ msgstr "/CUPS'ni _moslash"
msgid ", "
msgstr ", "
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit lspci"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
@@ -7899,6 +7990,11 @@ msgstr ""
"\n"
"Men shu adapter bilan lokal tarmog'ingizni o'rnataman."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit cpuinfo"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
@@ -7909,6 +8005,11 @@ msgstr "Minimal o'rnatish"
msgid "Ethiopia"
msgstr "Efiopiya"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "YES"
+msgstr ""
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
@@ -8194,13 +8295,6 @@ msgstr "O'rnatishning turi"
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "\"%s\" printer \"%s\" SMB/Windows serverida"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include:\n"
-msgstr ""
-
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
@@ -8505,6 +8599,11 @@ msgstr "Monitorning HorizSync: %s\n"
msgid "Path"
msgstr "Yo'l"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "NOT FOUND"
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -9053,18 +9152,6 @@ msgstr "muhim"
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file."
-msgstr ""
-
#: ../../help.pm:1
#, c-format
msgid ""
@@ -9178,6 +9265,26 @@ msgstr "Moslash bajarildi, moslamalarni qo'llashni istaysizmi?"
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP \n"
+" \taddress and net boot images to the machine. drakTermServ helps "
+"create/remove \n"
+" \tthese entries.\n"
+"\t\t\t\n"
+" \t(PCI cards may omit the image - etherboot will request the correct "
+"image. \n"
+"\t\t\tYou should also consider that when etherboot looks for the images, it "
+"expects \n"
+"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
@@ -9294,6 +9401,13 @@ msgstr ""
"matn oynasining x koordinatasi\n"
"belgilar sonida"
+#: ../../fsedit.pm:1
+#, c-format
+msgid ""
+"You may not be able to install lilo (since lilo doesn't handle a LV on "
+"multiple PVs)"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
@@ -9557,6 +9671,16 @@ msgstr "Xostning homi kerak"
msgid "Unselect fonts installed"
msgstr "O'rnatilgan shriftlarni belgilashni bekor qilish"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Wheel"
+msgstr "G'ildirakli"
+
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Submit kernel version"
+msgstr "Internet stantsiya"
+
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
@@ -9578,11 +9702,6 @@ msgstr "Bekor qilish"
msgid "Searching for configured scanners ..."
msgstr "Moslangan skannerlar qidirilmoqda..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "G'ildirakli"
-
#: ../../harddrake/data.pm:1
#, c-format
msgid "Videocard"
@@ -9648,6 +9767,11 @@ msgstr "Andoza"
msgid "Button 2 Emulation"
msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Please enter a package name."
+msgstr "Iltimos foydalanuvchining ismini kiriting"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Run chkrootkit checks"
@@ -9731,6 +9855,11 @@ msgstr ""
"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+
#: ../../lang.pm:1
#, c-format
msgid "Honduras"
@@ -9877,6 +10006,45 @@ msgstr "Fayl sistemaning kodlash kaliti"
msgid "Gujarati"
msgstr "Gujarati"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" While you can use a pool of IP addresses, rather than setup a "
+"specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. "
+"Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client "
+"machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' "
+"tools. This is enabled \n"
+" by creating separate config files associated with the client's IP "
+"address and creating \n"
+" read/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+" with the configuration, you can remove root login privileges from "
+"the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing "
+"clients."
+msgstr ""
+
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
@@ -10152,45 +10320,6 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating separate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login privileges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing clients."
-msgstr ""
-
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -10575,23 +10704,11 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbug:1
#, c-format
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Application Name\n"
+"or Full Path:"
msgstr ""
#: ../../services.pm:1
@@ -10950,19 +11067,6 @@ msgstr "Paketni (%s) o'rnatishda muammolar paydo bo'ldi"
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add a scanner manually"
@@ -11067,7 +11171,7 @@ msgstr "Xavfsizlik boshqaruvchisi:"
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy succeeded"
msgstr ""
@@ -11389,11 +11493,6 @@ msgstr ""
"Printer \"%s\" allaqachon mavjud.\n"
"Uning moslamalarini almashtirishni rostdan istaysizmi?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "Diskning qismi yo'q."
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
@@ -11404,6 +11503,11 @@ msgstr "Quyidagi kompyuterlardagi skannerlardan foydalanish:"
msgid "Unselected All"
msgstr "Hech qaysini tanlamash"
+#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "Diskning qismi yo'q."
+
#: ../../standalone/printerdrake:1
#, c-format
msgid "Printer Management \n"
@@ -11444,7 +11548,7 @@ msgstr ""
msgid "modem"
msgstr "modem"
-#: ../../install_steps.pm:1
+#: ../../lang.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "%s'ga marhamat"
@@ -11514,6 +11618,13 @@ msgstr ""
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+msgstr ""
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -11638,26 +11749,6 @@ msgstr ""
"\n"
"- Sistemaning fayllari:\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured."
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -12447,7 +12538,7 @@ msgstr "Linux'ning kelajagini yarating!"
msgid "Local Printer"
msgstr "Lokal printer"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "%s uskunani qaerga ulamoqchisiz?"
@@ -12549,36 +12640,6 @@ msgstr "Sichqonchaning uskunasi: %s\n"
msgid "Reselect correct fonts"
msgstr "To'g'ri shriftlarni boshqadan tanlash"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs its images."
-msgstr ""
-
#: ../../help.pm:1
#, c-format
msgid ""
@@ -12837,6 +12898,11 @@ msgstr "May"
msgid "Yaboot mode"
msgstr "Yaboot usuli"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "3 tugmali andoza sichqoncha"
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
@@ -12852,11 +12918,6 @@ msgstr ""
"LiLo mavzusini o'rnatishni tugatish uchun konsolda root sifatida \"lilo\" "
"buyrug'ini bajaring."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "3 tugmali andoza sichqoncha"
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Select another media to restore from"
@@ -13183,23 +13244,6 @@ msgid ""
" --id <id_label> - load the html help page which refers to id_label\n"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Select a scanner model"
@@ -13549,11 +13593,6 @@ msgstr ""
msgid "Sharing of local printers"
msgstr ""
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
-
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
@@ -13564,6 +13603,11 @@ msgstr ""
msgid "Available printers"
msgstr "Mavjud bo'lgan printerlar"
+#: ../../standalone/drakbackup:1
+#, fuzzy, c-format
+msgid "NO"
+msgstr "MA'LUMOT"
+
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
@@ -13597,21 +13641,6 @@ msgstr ""
"\n"
"Davom etish uchun \"%s\" tugmasini bosing."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
@@ -14393,6 +14422,17 @@ msgstr ""
msgid "Refresh the list"
msgstr "Ro'yxatni yangilash"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tdrakTermServ will help create these files."
+msgstr ""
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -14932,12 +14972,17 @@ msgstr "Andoza"
msgid "Cylinder %d to %d\n"
msgstr "Tsilindr %d dan %d gacha\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "YOUR TEXT HERE"
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "New profile..."
msgstr ""
-#: ../../standalone/draksec:1
+#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "NONE"
msgstr ""
@@ -15495,6 +15540,11 @@ msgstr "Boshqa multimedia uskunalar"
msgid "burner"
msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Bug Description/System Information"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, c-format
msgid " (Default is all users)"
@@ -15629,6 +15679,26 @@ msgid "If no port is given, 631 will be taken as default."
msgstr ""
"Agar hech qanday port ko'rsatilmasa, andoza sifatida 631 qabul qilinadi."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be\n"
+" turned back off, retaining the configuration files, once the client "
+"machine is configured."
+msgstr ""
+
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -15829,7 +15899,7 @@ msgstr ""
" (Parallel portlar: /dev/lp0, /dev/lp1, ..., LPT1:, LPT2:, ... ga teng, 1-"
"chi USB printer: /dev/usb/lp0, 2-chi USB printer: /dev/usb/lp1, ...)."
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Next"
msgstr "Keyingisi"
@@ -17058,7 +17128,7 @@ msgstr " adsl"
msgid "format of floppies supported by the drive"
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
@@ -17624,6 +17694,11 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
+#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Find Package"
+msgstr "%d paket"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
@@ -17741,6 +17816,24 @@ msgstr "Lokal tarmoqni moslash"
msgid "hard disk model"
msgstr "qattiq diskning modeli"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
+msgstr ""
+
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
@@ -17916,16 +18009,16 @@ msgstr "Buyuk Britaniya"
msgid "Unmount"
msgstr "Uzish"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Shriftlarni o'chirish"
-
#: ../../mouse.pm:1
#, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft Explorer"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Uninstall Fonts"
+msgstr "Shriftlarni o'chirish"
+
#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
@@ -18297,17 +18390,6 @@ msgstr "\"%s\" ishga tushirilmoqda..."
msgid "enable radio support"
msgstr ""
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files."
-msgstr ""
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Scanner sharing to hosts: "
diff --git a/perl-install/share/po/uz@Cyrl.po b/perl-install/share/po/uz@Cyrl.po
index 4ff9c763d..cd2928918 100644
--- a/perl-install/share/po/uz@Cyrl.po
+++ b/perl-install/share/po/uz@Cyrl.po
@@ -4002,6 +4002,18 @@ msgstr "Тармоқ интерфейси аллақачон мосланган"
msgid "Couldn't access the floppy!"
msgstr ""
+#: ../../install_messages.pm:1
+#, c-format
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
+
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Mail Server"
diff --git a/perl-install/share/po/wa.po b/perl-install/share/po/wa.po
index 01f5366f0..89d0dc6a1 100644
--- a/perl-install/share/po/wa.po
+++ b/perl-install/share/po/wa.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2003-09-09 17:07+0200\n"
+"POT-Creation-Date: 2003-09-16 13:45+0200\n"
"PO-Revision-Date: 2003-07-25 19:33+0200\n"
"Last-Translator: Pablo Saratxaga <pablo@mandrakesoft.com>\n"
"Language-Team: Walon <linux-wa@chanae.alphanet.ch>\n"
@@ -195,7 +195,7 @@ msgstr ""
"S' il est metou, evoy li rapoirt pa emile a ciste adresse la, tmint "
"l'evoy a root"
-#: ../../standalone/drakconnect:1
+#: ../../modules/interactive.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Parameters"
msgstr "Parametes"
@@ -513,6 +513,11 @@ msgstr "Bus"
msgid "Iraq"
msgstr "Irak"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "connecting to %s ..."
+msgstr "raloyaedje a %s ..."
+
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
@@ -561,6 +566,20 @@ msgstr "Cweri les fontes astalyes"
msgid "Default desktop"
msgstr "Prmetou scribanne"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on %s\n"
+" where you'll find a form to fill in. The information displayed above will "
+"be \n"
+"transferred to that server."
+msgstr ""
+"Po-z evoy on rapoirt di bug, clitchz sol boton di rapoirt.\n"
+"oula droveyr on betchteu sol waibe %s\n"
+"wice ki vos trovroz des kesse a rimpli.\n"
+"Les informcions hynyes chal dzeur seront evoyeyes sol sierveu."
+
#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
@@ -1039,6 +1058,36 @@ msgstr ""
"Protocole po les tes payis \n"
" nou can D (leased lines)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - /etc/xinetd.d/tftp:\n"
+" \tdrakTermServ will configure this file to work in conjunction with "
+"the images created\n"
+" \tby mkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
+"the boot image to \n"
+" \teach diskless client.\n"
+"\n"
+" \tA typical tftp configuration file looks like:\n"
+" \t\t\n"
+" \tservice tftp\n"
+"\t\t\t{\n"
+" disable = no\n"
+" socket_type = dgram\n"
+" protocol = udp\n"
+" wait = yes\n"
+" user = root\n"
+" server = /usr/sbin/in.tftpd\n"
+" server_args = -s /var/lib/tftpboot\n"
+" \t}\n"
+" \t\t\n"
+" \tThe changes here from the default installation are changing the "
+"disable flag to\n"
+" \t'no' and changing the directory path to /var/lib/tftpboot, where "
+"mkinitrd-net\n"
+" \tputs its images."
+msgstr ""
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
@@ -1703,16 +1752,16 @@ msgstr ""
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Eployiz les tapes %c et %c po mete les intreyes e sorbriyance."
-#: ../../standalone/drakperm:1
-#, c-format
-msgid "Enable \"%s\" to execute the file"
-msgstr "Permete l'enondaedje do fitch pa %s"
-
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Sori tipike a 2 botons"
+#: ../../standalone/drakperm:1
+#, c-format
+msgid "Enable \"%s\" to execute the file"
+msgstr "Permete l'enondaedje do fitch pa %s"
+
#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
@@ -2948,6 +2997,37 @@ msgstr "Ci pacaedje est obligatwere, vos n'poloz nn li distchoezi"
#: ../../standalone/drakTermServ:1
#, c-format
+msgid ""
+" - Create etherboot floppies/CDs:\n"
+" \tThe diskless client machines need either ROM images on the NIC, or "
+"a boot floppy\n"
+" \tor CD to initate the boot sequence. drakTermServ will help "
+"generate these\n"
+" \timages, based on the NIC in the client machine.\n"
+" \t\t\n"
+" \tA basic example of creating a boot floppy for a 3Com 3c509 "
+"manually:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+msgstr ""
+" - Ahiver des plaketes/plakes lazer d'enondaedje rantoele "
+"(etherboot):\n"
+" \t\tLes cliyints sins deurs plakes ont mezjhe soeye-t i d'imdjes "
+"ROM so leu cte rantoele,\n"
+" \t\tsoeye-t i d'ene plakete ou plake lazer d'enondaedje. "
+"drakTermServ vos aidr\n"
+" \t\ta-z ahiver ces imdjes la, sorlon li cte rantoele del ndjole "
+"cliyint.\n"
+"\n"
+" \t\tn egzimpe d'askepiaedje al mwin d'ene plakete d'enondaedje "
+"po ene cte 3Com 3c509:\n"
+" \t\t\n"
+" \tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid "Etherboot ISO image is %s"
msgstr "L'imdje etherboot ISO est %s"
@@ -3362,33 +3442,6 @@ msgstr "Catch les fitchs"
msgid "Auto-detect printers connected to this machine"
msgstr "Oto-deteccion des scrireces raloyeyes a ciste ndjole chal"
-#: ../../standalone/drakxtv:1
-#, c-format
-msgid ""
-"XawTV isn't installed!\n"
-"\n"
-"\n"
-"If you do have a TV card but DrakX has neither detected it (no bttv nor "
-"saa7134\n"
-"module in \"/etc/modules\") nor installed xawtv, please send the\n"
-"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
-"with subject \"undetected TV card\".\n"
-"\n"
-"\n"
-"You can install it by typing \"urpmi xawtv\" as root, in a console."
-msgstr ""
-"XawTV n'est nn astal!\n"
-"\n"
-"Si vos avoz ene cte TV ki DrakX nel a nn trov (nou module bttv ou "
-"saa7134\n"
-"dins /etc/modules) nern astal xawtv, evoyz s'i vs plait\n"
-"les rezultats del comande lspcidrake -v -f a l'adresse:\n"
-"install\\@mandrakesoft.com avou come sudjet undetected TV card.\n"
-"\n"
-"\n"
-"Vos l'poloz astaler tot tapant dins ene conzle, come root, li comande:\n"
-"urpmi xawtv."
-
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
@@ -3980,6 +4033,18 @@ msgstr "/etc/hosts.allow eyet /etc/hosts.deny sont ddja apontys - nn candjs"
msgid "Restore From Tape"
msgstr "Rapexh a prti d'ene binde"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid ""
+"To submit a bug report, click the report button, which will open your "
+"default browser\n"
+"to Anthill where you will be able to upload the above information as a bug "
+"report."
+msgstr ""
+"Po-z evoy on rapoirt di bug, clitchz sol boton di rapoirt.\n"
+"oula droveyr on betchteu sol waibe da Anthill\n"
+"wice ki vos trovroz des kesse a rimpli po f on rapoirt di bug."
+
#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
@@ -4122,7 +4187,7 @@ msgstr ""
msgid "Need hostname, username and password!"
msgstr "Dj'a mezjhe do no d'lodjoe, do no d'uzeu eyet do scret!"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Insert floppy"
msgstr "Metoz ene plakete divins l'ljheu"
@@ -4265,10 +4330,17 @@ msgstr "L'eterface rantoele est ddja apontieye"
msgid "Couldn't access the floppy!"
msgstr "Dji n'a savou aveur accs al plakete!"
-#: ../../standalone/drakbug:1
+#: ../../install_messages.pm:1
#, c-format
-msgid "connecting to Bugzilla wizard ..."
-msgstr "Macrea d'raloyaedje a bugzilla..."
+msgid ""
+"Warning: Free Software may not necessarily be patent free, and some Free\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
+"MP3 decoders included may require a licence for further usage (see\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
+"may be applicable to you, check your local laws."
+msgstr ""
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -4456,6 +4528,11 @@ msgstr "Accepter"
msgid "Description"
msgstr "Discrijhaedje"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Please enter summary text."
+msgstr "Dinez on tecse di rascourti s'i vs plait."
+
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
@@ -5436,7 +5513,7 @@ msgstr ""
msgid "Right Control key"
msgstr "Li tape Control di droete"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid ""
"Insert a FAT formatted floppy in drive %s with %s in root directory and "
@@ -6584,6 +6661,34 @@ msgstr "Adviertixhmint: l'adresse IP %s est normlmint resservye!"
msgid "busmouse"
msgstr "sori bus"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Create Etherboot Enabled Boot Images:\n"
+" \tTo boot a kernel via etherboot, a special kernel/initrd image must "
+"be created.\n"
+" \tmkinitrd-net does much of this work and drakTermServ is just a "
+"graphical \n"
+" \tinterface to help manage/customize these images. To create the "
+"file \n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
+"include in \n"
+" \tdhcpd.conf, you should create the etherboot images for at least "
+"one full kernel."
+msgstr ""
+" - Ahiver des imdjes d'enondaedje po-z enonder pa rantoele "
+"(etherboot):\n"
+" \tPo-z enonder on nawea pal rantoele, i vs ft ahiver ene imdje di "
+"nawea/initrd specile.\n"
+" \tmkinitrd-net fwait l'gros d'l'ovraedje et drakTermServ est "
+"djusse ene eterface\n"
+" \tgrafike po vs aid a manaedj/aponty ces imdjes la. Po-z askepy "
+"li fitch\n"
+" \t/etc/dhcpd.conf.etherboot-pcimap.include k'est prin et ljhou "
+"padhcpd.conf,\n"
+" \tvos dvoz f des imdjes d'enondaedje rantoele po on nawea etir "
+"pol moens ."
+
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
@@ -6947,38 +7052,6 @@ msgstr ""
msgid "Floppy"
msgstr "Plakete"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/exports:\n"
-" \t\tClusternfs allows export of the root filesystem to diskless "
-"clients. drakTermServ\n"
-" \t\tsets up the correct entry to allow anonymous access to the root "
-"filesystem from\n"
-" \t\tdiskless clients.\n"
-"\n"
-" \t\tA typical exports entry for clusternfs is:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\t\t\t\n"
-"\t\t\tWith SUBNET/MASK being defined for your network."
-msgstr ""
-" - Mintni /etc/exports:\n"
-" \t\tClusternfs permete d'ebaguer li sistinme di fitchs raecene vi "
-"les cliyints.\n"
-" \t\tdrakTermServ aponteye les bouns intryes po permete les accs "
-"anonimes\n"
-" \t\t sistinme di fitchs raecene a prti des cliyints sins deurs "
-"plakes.\n"
-"\n"
-" \t\tEne intrye d'ebagaedje tipike po clusternfs sereut:\n"
-" \t\t\n"
-" \t\t/ (ro,all_squash)\n"
-" \t\t/home SUBNET/MASK(rw,root_squash)\n"
-"\n"
-" \t\tAvou SUBNET/MASK definis po vosse rantoele."
-
#: ../../standalone/drakfont:1
#, c-format
msgid "Ghostscript referencing"
@@ -7604,6 +7677,11 @@ msgstr "Prtaedje do raloyaedje al rantoele daegnrece"
msgid "Choose file"
msgstr "Tchoezixhoz on fitch"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Summary: "
+msgstr "Rascourti: "
+
#: ../../network/shorewall.pm:1
#, c-format
msgid ""
@@ -7680,6 +7758,17 @@ msgstr ""
msgid "the vendor name of the processor"
msgstr "li no do vindeu do processeu"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain %s:\n"
+" \tFor users to be able to log into the system from a diskless "
+"client, their entry in\n"
+" \t/etc/shadow needs to be duplicated in %s. drakTermServ\n"
+" \thelps in this respect by adding or removing system users from this "
+"file."
+msgstr ""
+
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
@@ -8007,6 +8096,11 @@ msgstr "Rapexh uzeus"
msgid "Encryption key for %s"
msgstr "Cl d'ecriptaedje po %s"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Do you want to recover your system?"
+msgstr "Voloz vs rapexh vosse sistinme?"
+
#: ../../services.pm:1
#, c-format
msgid ""
@@ -8454,6 +8548,11 @@ msgstr "/_Aponty CUPS"
msgid ", "
msgstr ", "
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit lspci"
+msgstr "Evoy l'rexhowe di lspci"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
@@ -8698,6 +8797,11 @@ msgstr ""
"\n"
"Dji va-z aponty vosse rantoele locle avou cisse cte la."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit cpuinfo"
+msgstr "Evoy l'info sol CPU"
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
@@ -8708,6 +8812,11 @@ msgstr "Astalcion minimle"
msgid "Ethiopia"
msgstr "Etiopeye"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "YES"
+msgstr "OYI"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
@@ -9050,13 +9159,6 @@ msgstr "Sre d'astalaedje"
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Sicrirece %s sol sierveu SMB/Windows %s"
-#: ../../standalone/drakbackup:1
-#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include:\n"
-msgstr ""
-
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
@@ -9379,6 +9481,11 @@ msgstr "Frcwnce di cotch del waitrole: %s\n"
msgid "Path"
msgstr "Tchimin"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "NOT FOUND"
+msgstr "NN TROV"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -9588,6 +9695,8 @@ msgid ""
"Expect is an extension to the Tcl scripting language that allows interactive "
"sessions without user intervention."
msgstr ""
+"Expect est ene egztension pol lingaedje di scripe Tcl ki permete di f des "
+"sessions interactives sins intervincion di l'uzeu."
#: ../../lang.pm:1
#, c-format
@@ -9981,18 +10090,6 @@ msgstr "ki vnt bn a pont"
msgid "Total Progress"
msgstr "Avanmint tot"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Maintain /etc/shadow\\$\\$CLIENT\\$\\$:\n"
-" \t\tFor users to be able to log into the system from a diskless "
-"client, their entry in\n"
-" \t\t/etc/shadow needs to be duplicated in /etc/shadow\\$\\$CLIENTS\\$"
-"\\$. drakTermServ helps\n"
-" \t\tin this respect by adding or removing system users from this "
-"file."
-msgstr ""
-
#: ../../help.pm:1
#, c-format
msgid ""
@@ -10122,6 +10219,26 @@ msgstr "L'apontiaedje est fini, el voloz vs mete en alaedje?"
msgid "Use Incremental/Differential Backups (do not replace old backups)"
msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/dhcpd.conf:\n"
+" \tTo net boot clients, each client needs a dhcpd.conf entry, "
+"assigning an IP \n"
+" \taddress and net boot images to the machine. drakTermServ helps "
+"create/remove \n"
+" \tthese entries.\n"
+"\t\t\t\n"
+" \t(PCI cards may omit the image - etherboot will request the correct "
+"image. \n"
+"\t\t\tYou should also consider that when etherboot looks for the images, it "
+"expects \n"
+"\t\t\tnames like boot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
+"\t\t\t \n"
+" \tA typical dhcpd.conf stanza to support a diskless client looks "
+"like:"
+msgstr ""
+
#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
@@ -10241,6 +10358,13 @@ msgstr ""
"cowordonyes X (e caracteres)\n"
"pol boesse di tecse"
+#: ../../fsedit.pm:1
+#, c-format
+msgid ""
+"You may not be able to install lilo (since lilo doesn't handle a LV on "
+"multiple PVs)"
+msgstr ""
+
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
@@ -10542,6 +10666,16 @@ msgstr "I gn a mezjhe d'on no d'lodjoe"
msgid "Unselect fonts installed"
msgstr "Distchoezi les fontes astalyes"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Wheel"
+msgstr "Rlete"
+
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Submit kernel version"
+msgstr "Evoy l'modye do nawea"
+
#: ../../any.pm:1 ../../help.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
#: ../../ugtk2.pm:1 ../../Xconfig/resolution_and_depth.pm:1
@@ -10563,11 +10697,6 @@ msgstr "Rinonc"
msgid "Searching for configured scanners ..."
msgstr "Dji cwir aprs des scanreces d'apontieyes..."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Wheel"
-msgstr "Rlete"
-
#: ../../harddrake/data.pm:1
#, c-format
msgid "Videocard"
@@ -10636,6 +10765,11 @@ msgstr "Prmetou"
msgid "Button 2 Emulation"
msgstr "Emulcion do 2inme boton"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Please enter a package name."
+msgstr "Dinez on no d'pacaedje, s'i vs plait"
+
#: ../../security/l10n.pm:1
#, c-format
msgid "Run chkrootkit checks"
@@ -10719,6 +10853,11 @@ msgstr ""
" Stew Benedict <sbenedict\\@mandrakesoft.com>\n"
"\n"
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/92errata.php3"
+msgstr "http://www.mandrakelinux.com/en/92errata.php3"
+
#: ../../lang.pm:1
#, c-format
msgid "Honduras"
@@ -10892,6 +11031,45 @@ msgstr "Cl d'ecriptaedje do sistinme di fitchs"
msgid "Gujarati"
msgstr "Indyinne (Gujarati)"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" While you can use a pool of IP addresses, rather than setup a "
+"specific entry for\n"
+" a client machine, using a fixed address scheme facilitates using the "
+"functionality\n"
+" of client-specific configuration files that ClusterNFS provides.\n"
+"\t\t\t\n"
+" Note: The '#type' entry is only used by drakTermServ. Clients can "
+"either be 'thin'\n"
+" or 'fat'. Thin clients run most software on the server via xdmcp, "
+"while fat clients run \n"
+" most software on the client machine. A special inittab, %s is\n"
+" written for thin clients. System config files xdm-config, kdmrc, and "
+"gdm.conf are \n"
+" modified if thin clients are used, to enable xdmcp. Since there are "
+"security issues in \n"
+" using xdmcp, hosts.deny and hosts.allow are modified to limit access "
+"to the local\n"
+" subnet.\n"
+"\t\t\t\n"
+" Note: The '#hdw_config' entry is also only used by drakTermServ. "
+"Clients can either \n"
+" be 'true' or 'false'. 'true' enables root login at the client "
+"machine and allows local \n"
+" hardware configuration of sound, mouse, and X, using the 'drak' "
+"tools. This is enabled \n"
+" by creating separate config files associated with the client's IP "
+"address and creating \n"
+" read/write mount points to allow the client to alter the file. Once "
+"you are satisfied \n"
+" with the configuration, you can remove root login privileges from "
+"the client.\n"
+"\t\t\t\n"
+" Note: You must stop/start the server after adding or changing "
+"clients."
+msgstr ""
+
#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
@@ -11216,45 +11394,6 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-"\t\t\tWhile you can use a pool of IP addresses, rather than setup a specific "
-"entry for\n"
-"\t\t\ta client machine, using a fixed address scheme facilitates using the "
-"functionality\n"
-"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
-"either be 'thin'\n"
-"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
-"while fat clients run \n"
-"\t\t\tmost software on the client machine. A special inittab, /etc/inittab\\$"
-"\\$IP=client_ip\\$\\$ is\n"
-"\t\t\twritten for thin clients. System config files xdm-config, kdmrc, and "
-"gdm.conf are \n"
-"\t\t\tmodified if thin clients are used, to enable xdmcp. Since there are "
-"security issues in \n"
-"\t\t\tusing xdmcp, hosts.deny and hosts.allow are modified to limit access "
-"to the local\n"
-"\t\t\tsubnet.\n"
-"\t\t\t\n"
-"\t\t\tNote: The \"#hdw_config\" entry is also only used by drakTermServ. "
-"Clients can either \n"
-"\t\t\tbe 'true' or 'false'. 'true' enables root login at the client machine "
-"and allows local \n"
-"\t\t\thardware configuration of sound, mouse, and X, using the 'drak' tools. "
-"This is enabled \n"
-"\t\t\tby creating separate config files associated with the client's IP "
-"address and creating \n"
-"\t\t\tread/write mount points to allow the client to alter the file. Once "
-"you are satisfied \n"
-"\t\t\twith the configuration, you can remove root login privileges from the "
-"client.\n"
-"\t\t\t\n"
-"\t\t\tNote: You must stop/start the server after adding or changing clients."
-msgstr ""
-
#: ../../standalone/drakconnect:1
#, c-format
msgid "Configure Local Area Network..."
@@ -11667,23 +11806,11 @@ msgstr "/dev/hda"
msgid "/dev/hdb"
msgstr "/dev/hdb"
-#: ../../standalone/drakTermServ:1
+#: ../../standalone/drakbug:1
#, c-format
msgid ""
-" - Maintain /etc/dhcpd.conf:\n"
-" \t\tTo net boot clients, each client needs a dhcpd.conf entry, "
-"assigning an IP address\n"
-" \t\tand net boot images to the machine. drakTermServ helps create/"
-"remove these entries.\n"
-"\t\t\t\n"
-" \t\t(PCI cards may omit the image - etherboot will request the "
-"correct image. You should\n"
-" \t\talso consider that when etherboot looks for the images, it "
-"expects names like\n"
-" \t\tboot-3c59x.nbi, rather than boot-3c59x.2.4.19-16mdk.nbi).\n"
-"\t\t\t \n"
-" \t\tA typical dhcpd.conf stanza to support a diskless client looks "
-"like:"
+"Application Name\n"
+"or Full Path:"
msgstr ""
#: ../../services.pm:1
@@ -12072,26 +12199,6 @@ msgid "You will receive an alert if the load is higher than this value"
msgstr ""
"Vos ruroz ene abranle si l'tchedje est pus hte kel valixhance dinye chal"
-#: ../../standalone/drakbug:1
-#, c-format
-msgid ""
-"\n"
-"\n"
-"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
-" where you'll find a form to fill in.The information displayed above will "
-"be \n"
-"transferred to that server\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"Po-z evoy on rapoirt di bug, clitchz sol boton di rapoirt.\n"
-"oula droveyr on betchteu sol waibe https://drakbug.mandrakesoft.com\n"
-"wice ki vos trovroz des kesse a rimpli.\n"
-"Les informcions hynyes chal dzeur seront evoyeyes sol sierveu\n"
-"\n"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Add a scanner manually"
@@ -12232,7 +12339,7 @@ msgstr "Manaedjeu pol svrit:"
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy succeeded"
msgstr "Li copiaedje do firmware a st comift"
@@ -12604,11 +12711,6 @@ msgstr ""
"Li scrirece %s egzistye dedja,\n"
"voloz vs vormint spotch si apontiaedje?"
-#: ../../install_steps_interactive.pm:1
-#, c-format
-msgid "No partition available"
-msgstr "nole prticion di disponibe"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
@@ -12619,6 +12721,11 @@ msgstr "Eploy les scanreces so les lodjoes: "
msgid "Unselected All"
msgstr "Distchoezi tot"
+#: ../../install_steps_interactive.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "No partition available"
+msgstr "nole prticion di disponibe"
+
#: ../../standalone/printerdrake:1
#, c-format
msgid "Printer Management \n"
@@ -12659,7 +12766,7 @@ msgstr "Costrure nawea etir -->"
msgid "modem"
msgstr "modem"
-#: ../../install_steps.pm:1
+#: ../../lang.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "Wilicome a %s"
@@ -12744,6 +12851,13 @@ msgstr ""
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- Daemon, %s via:\n"
+msgstr ""
+
#: ../../standalone/drakgw:1
#, c-format
msgid ""
@@ -12880,26 +12994,6 @@ msgstr ""
"\n"
"- Fitchs sistinme:\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client system configuration files:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-"\t\t\t\tclients can customize files such as /etc/modules.conf, /etc/"
-"sysconfig/mouse, \n"
-" \t\t/etc/sysconfig/keyboard on a per-client basis.\n"
-"\n"
-" Note: Enabling local client hardware configuration does enable root "
-"login to the terminal \n"
-" server on each client machine that has this feature enabled. Local "
-"configuration can be turned\n"
-" back off, retaining the configuration files, once the client machine "
-"is configured."
-msgstr ""
-
#: ../../standalone/drakbug:1
#, c-format
msgid "Standalone Tools"
@@ -13755,7 +13849,7 @@ msgstr "Costrujhoz l'avni di Linux!"
msgid "Local Printer"
msgstr "Sicrirece locle"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Floppy access error, unable to mount device %s"
msgstr "k n'a nn st tot ljahnt l'plakete so l'ndjin %s"
@@ -13863,36 +13957,6 @@ msgstr "ndjin del sori: %s\n"
msgid "Reselect correct fonts"
msgstr "Ritchoezi les fontes corekes"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - /etc/xinetd.d/tftp:\n"
-" \t\tdrakTermServ will configure this file to work in conjunction "
-"with the images created by\n"
-" \t\tmkinitrd-net, and the entries in /etc/dhcpd.conf, to serve up "
-"the boot image to each\n"
-" \t\tdiskless client.\n"
-"\n"
-" \t\tA typical tftp configuration file looks like:\n"
-" \t\t\n"
-" \t\tservice tftp\n"
-"\t\t\t{\n"
-" disable = no\n"
-" socket_type = dgram\n"
-" protocol = udp\n"
-" wait = yes\n"
-" user = root\n"
-" server = /usr/sbin/in.tftpd\n"
-" server_args = -s /var/lib/tftpboot\n"
-" \t\t}\n"
-" \t\t\n"
-" \t\tThe changes here from the default installation are changing the "
-"disable flag to\n"
-" \t\t'no' and changing the directory path to /var/lib/tftpboot, where "
-"mkinitrd-net\n"
-" \t\tputs its images."
-msgstr ""
-
#: ../../help.pm:1
#, c-format
msgid ""
@@ -14218,6 +14282,11 @@ msgstr "May"
msgid "Yaboot mode"
msgstr "Mde di yaboot"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "Sori tipike a 3 botons"
+
#: ../../standalone/drakxtv:1
#, c-format
msgid "USA (cable)"
@@ -14233,11 +14302,6 @@ msgstr ""
"Enondez lilo come root e l'roye di comande po completer l'astalaedje do "
"tinme di lilo."
-#: ../../mouse.pm:1
-#, c-format
-msgid "Generic 3 Button Mouse"
-msgstr "Sori tipike a 3 botons"
-
#: ../../standalone/drakbackup:1
#, c-format
msgid "Select another media to restore from"
@@ -14586,37 +14650,6 @@ msgstr ""
" --id <etikete_id> - tchedje li pdje d'aidance ki corespond a "
"l'etikete\n"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create etherboot floppies/CDs:\n"
-" \t\tThe diskless client machines need either ROM images on the NIC, "
-"or a boot floppy\n"
-" \t\tor CD to initate the boot sequence. drakTermServ will help "
-"generate these images,\n"
-" \t\tbased on the NIC in the client machine.\n"
-" \t\t\n"
-" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
-"manually:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-msgstr ""
-" - Ahiver des plaketes/plakes lazer d'enondaedje rantoele "
-"(etherboot):\n"
-" \t\tLes cliyints sins deurs plakes ont mezjhe soeye-t i d'imdjes "
-"ROM so leu cte rantoele,\n"
-" \t\tsoeye-t i d'ene plakete ou plake lazer d'enondaedje. "
-"drakTermServ vos aidr\n"
-" \t\ta-z ahiver ces imdjes la, sorlon li cte rantoele del ndjole "
-"cliyint.\n"
-"\n"
-" \t\tn egzimpe d'askepiaedje al mwin d'ene plakete d'enondaedje "
-"po ene cte 3Com 3c509:\n"
-" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
-" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0"
-
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Select a scanner model"
@@ -15021,11 +15054,6 @@ msgstr "No di dominne"
msgid "Sharing of local printers"
msgstr "Prtaedjaedje di sicrireces locles"
-#: ../../install_messages.pm:1
-#, c-format
-msgid "http://www.mandrakelinux.com/en/92errata.php3"
-msgstr "http://www.mandrakelinux.com/en/92errata.php3"
-
#: ../../security/help.pm:1
#, c-format
msgid "Enable/Disable libsafe if libsafe is found on the system."
@@ -15037,6 +15065,11 @@ msgstr ""
msgid "Available printers"
msgstr "Sicrireces k'i gn a"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "NO"
+msgstr "NENI"
+
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
@@ -15070,33 +15103,6 @@ msgstr ""
"\n"
"Clitchz so %s po continuwer."
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Create Etherboot Enabled Boot Images:\n"
-" \t\tTo boot a kernel via etherboot, a special kernel/initrd image "
-"must be created.\n"
-" \t\tmkinitrd-net does much of this work and drakTermServ is just a "
-"graphical interface\n"
-" \t\tto help manage/customize these images. To create the file \n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include that is pulled in as an "
-"include in \n"
-" \t\tdhcpd.conf, you should create the etherboot images for at least "
-"one full kernel."
-msgstr ""
-" - Ahiver des imdjes d'enondaedje po-z enonder pa rantoele "
-"(etherboot):\n"
-" \t\tPo-z enonder on nawea pal rantoele, i vs ft ahiver ene imdje "
-"di nawea/initrd specile.\n"
-" \t\tmkinitrd-net fwait l'gros d'l'ovraedje et drakTermServ est "
-"djusse ene eterface\n"
-" \t\tgrafike po vs aid a manaedj/aponty ces imdjes la. Po-z "
-"askepy li fitch\n"
-" \t\t/etc/dhcpd.conf.etherboot-pcimap.include k'est prin et ljhou "
-"padhcpd.conf,\n"
-" \t\tvos dvoz f des imdjes d'enondaedje rantoele po on nawea etir "
-"pol moens ."
-
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
@@ -15930,6 +15936,23 @@ msgstr "AROKE MOIRT"
msgid "Refresh the list"
msgstr "Rafrister l'djivye"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client %s:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tdrakTermServ will help create these files."
+msgstr ""
+" - Fitch cliyint %s:\n"
+" \t\tAvou clusternfs, tchaeke posse cliyint sins deurs plakes a\n"
+" \t\tsi prpe fitch d'apontiaedje da sinne e sistinme di fitchs\n"
+" \t\traecene do sierveu. Tot permetant l'apontiaedje loc del\n"
+" \t\tndjolreye des cliyints, drakTermServ aidr-st a f ces fitchs "
+"la."
+
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
@@ -16505,12 +16528,17 @@ msgstr "Djenerike"
msgid "Cylinder %d to %d\n"
msgstr "Do cilinde %d cilinde %d\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "YOUR TEXT HERE"
+msgstr ""
+
#: ../../standalone/drakconnect:1
#, c-format
msgid "New profile..."
msgstr "Novea profil..."
-#: ../../standalone/draksec:1
+#: ../../modules/interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "NONE"
msgstr "NOUK"
@@ -17095,6 +17123,11 @@ msgstr "tes ndjins multimedia"
msgid "burner"
msgstr "broleu"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Bug Description/System Information"
+msgstr ""
+
#: ../../standalone/drakbackup:1
#, c-format
msgid " (Default is all users)"
@@ -17231,6 +17264,26 @@ msgstr "Tchuzes di houcaedje pa modem"
msgid "If no port is given, 631 will be taken as default."
msgstr "Si nou prt n'est dn, li prmetowe valixhance sr 631."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Per client system configuration files:\n"
+" \tThrough clusternfs, each diskless client can have its own unique "
+"configuration files\n"
+" \ton the root filesystem of the server. By allowing local client "
+"hardware configuration, \n"
+" \tclients can customize files such as /etc/modules.conf, /etc/"
+"sysconfig/mouse, \n"
+" \t/etc/sysconfig/keyboard on a per-client basis.\n"
+"\n"
+" Note: Enabling local client hardware configuration does enable root "
+"login to the terminal \n"
+" server on each client machine that has this feature enabled. Local "
+"configuration can be\n"
+" turned back off, retaining the configuration files, once the client "
+"machine is configured."
+msgstr ""
+
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
@@ -17462,7 +17515,7 @@ msgstr ""
"LPT2:,..., Li 1re sicrirece USB: /dev/usb/lp0, li 2inme sicrirece USB: /dev/"
"usb/lp1,...) "
-#: ../../network/adsl.pm:1 ../../network/netconnect.pm:1
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Next"
msgstr "Shuvant"
@@ -18794,7 +18847,7 @@ msgstr " adsl"
msgid "format of floppies supported by the drive"
msgstr "Sre di plaketes ki sont-st acceptyes p mineu"
-#: ../../network/adsl.pm:1
+#: ../../network/tools.pm:1
#, c-format
msgid "Firmware copy failed, file %s not found"
msgstr ""
@@ -19524,6 +19577,11 @@ msgstr ""
"\n"
"Estoz vs d'acoird di piede totes les prticions?\n"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Find Package"
+msgstr "Trover on pacaedje"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
@@ -19639,6 +19697,38 @@ msgstr "Apontiaedje del rantoele locle"
msgid "hard disk model"
msgstr "Modele del deure plake"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+" - Maintain /etc/exports:\n"
+" \tClusternfs allows export of the root filesystem to diskless "
+"clients. drakTermServ\n"
+" \tsets up the correct entry to allow anonymous access to the root "
+"filesystem from\n"
+" \tdiskless clients.\n"
+"\n"
+" \tA typical exports entry for clusternfs is:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\t\t\t\n"
+" \tWith SUBNET/MASK being defined for your network."
+msgstr ""
+" - Mintni /etc/exports:\n"
+" \t\tClusternfs permete d'ebaguer li sistinme di fitchs raecene vi "
+"les cliyints.\n"
+" \t\tdrakTermServ aponteye les bouns intryes po permete les accs "
+"anonimes\n"
+" \t\t sistinme di fitchs raecene a prti des cliyints sins deurs "
+"plakes.\n"
+"\n"
+" \t\tEne intrye d'ebagaedje tipike po clusternfs sereut:\n"
+" \t\t\n"
+" \t/\t\t\t\t\t(ro,all_squash)\n"
+" \t/home\t\t\t\tSUBNET/MASK(rw,root_squash)\n"
+"\n"
+" \t\tAvou SUBNET/MASK definis po vosse rantoele."
+
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
@@ -19826,16 +19916,16 @@ msgstr "Taprece do Rweyme Uni"
msgid "Unmount"
msgstr "Dismonter"
-#: ../../standalone/drakfont:1
-#, c-format
-msgid "Uninstall Fonts"
-msgstr "Disastaler les fontes"
-
#: ../../mouse.pm:1
#, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft Explorer"
+#: ../../standalone/drakfont:1
+#, c-format
+msgid "Uninstall Fonts"
+msgstr "Disastaler les fontes"
+
#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
@@ -20217,23 +20307,6 @@ msgstr "Dj'enonde %s..."
msgid "enable radio support"
msgstr "mete en alaedje li sopoirt pol radio"
-#: ../../standalone/drakTermServ:1
-#, c-format
-msgid ""
-" - Per client /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tThrough clusternfs, each diskless client can have its own unique "
-"configuration files\n"
-" \t\ton the root filesystem of the server. By allowing local client "
-"hardware configuration, \n"
-" \t\tdrakTermServ will help create these files."
-msgstr ""
-" - Fitch cliyint /etc/X11/XF86Config-4\\$\\$IP-ADDRESS\\$\\$:\n"
-" \t\tAvou clusternfs, tchaeke posse cliyint sins deurs plakes a\n"
-" \t\tsi prpe fitch d'apontiaedje da sinne e sistinme di fitchs\n"
-" \t\traecene do sierveu. Tot permetant l'apontiaedje loc del\n"
-" \t\tndjolreye des cliyints, drakTermServ aidr-st a f ces fitchs "
-"la."
-
# c-format
#: ../../standalone/scannerdrake:1
#, c-format
@@ -20678,6 +20751,31 @@ msgstr ""
"Eshonna d'usteyes po lre et evoy des messaedjes et po naivy so les "
"pdjes waibe"
+#~ msgid ""
+#~ "XawTV isn't installed!\n"
+#~ "\n"
+#~ "\n"
+#~ "If you do have a TV card but DrakX has neither detected it (no bttv nor "
+#~ "saa7134\n"
+#~ "module in \"/etc/modules\") nor installed xawtv, please send the\n"
+#~ "results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+#~ "with subject \"undetected TV card\".\n"
+#~ "\n"
+#~ "\n"
+#~ "You can install it by typing \"urpmi xawtv\" as root, in a console."
+#~ msgstr ""
+#~ "XawTV n'est nn astal!\n"
+#~ "\n"
+#~ "Si vos avoz ene cte TV ki DrakX nel a nn trov (nou module bttv ou "
+#~ "saa7134\n"
+#~ "dins /etc/modules) nern astal xawtv, evoyz s'i vs plait\n"
+#~ "les rezultats del comande lspcidrake -v -f a l'adresse:\n"
+#~ "install\\@mandrakesoft.com avou come sudjet undetected TV card.\n"
+#~ "\n"
+#~ "\n"
+#~ "Vos l'poloz astaler tot tapant dins ene conzle, come root, li comande:\n"
+#~ "urpmi xawtv."
+
#~ msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
#~ msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
@@ -20747,9 +20845,6 @@ msgstr ""
#~ msgid "Please enter the host name or IP."
#~ msgstr "dinez l' no do lodjoe ou l'adresse IP, s'i vs plait."
-#~ msgid "Please enter your login"
-#~ msgstr "Dinez vosse no d'elodjaedje s'i vs plait"
-
#~ msgid ""
#~ " Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s"
#~ "\\@epita.fr>"