aboutsummaryrefslogtreecommitdiffstats
path: root/editgroups.cgi
blob: d3515b019fb05887b36e3fd48056f78619e1adc3 (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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
#!/usr/bin/perl -w
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): Dave Miller <justdave@syndicomm.com>
#                 Joel Peshkin <bugreport@peshkin.net>
#                 Jacob Steenhagen <jake@bugzilla.org>
#                 Vlad Dascalu <jocuri@softhome.net>

# Code derived from editowners.cgi and editusers.cgi

use strict;
use lib ".";

use Bugzilla;
use Bugzilla::Constants;
require "CGI.pl";

use vars qw($template $vars);

Bugzilla->login(LOGIN_REQUIRED);

print Bugzilla->cgi->header();

if (!UserInGroup("creategroups")) {
    PutHeader("Not Authorized","Edit Groups","","Not Authorized for this function!");
    print "<H1>Sorry, you aren't a member of the 'creategroups' group.</H1>\n";
    print "And so, you aren't allowed to edit the groups.\n";
    print "<p>\n";
    PutFooter();
    exit;
}

my $action  = trim($::FORM{action} || '');

# TestGroup: check if the group name exists
sub TestGroup ($)
{
    my $group = shift;

    # does the group exist?
    SendSQL("SELECT name
             FROM groups
             WHERE name=" . SqlQuote($group));
    return FetchOneColumn();
}

sub ShowError ($)
{
    my $msgtext = shift;
    print "<TABLE BGCOLOR=\"#FF0000\" CELLPADDING=15><TR><TD>";
    print "<B>$msgtext</B>";
    print "</TD></TR></TABLE><P>";
    return 1;
}

#
# Displays a text like "a.", "a or b.", "a, b or c.", "a, b, c or d."
#

sub PutTrailer (@)
{
    my (@links) = ("Back to the <a href=\"./\">index</a>", @_);

    my $count = $#links;
    my $num = 0;
    print "<P>\n";
    foreach (@links) {
        print $_;
        if ($num == $count) {
            print ".\n";
        }
        elsif ($num == $count-1) {
            print " or ";
        }
        else {
            print ", ";
        }
        $num++;
    }
    PutFooter();
}

#
# action='' -> No action specified, get a list.
#

unless ($action) {
    PutHeader("Edit Groups","Edit Groups","This lets you edit the groups available to put users in.");

    print "<table border=1>\n";
    print "<tr>";
    print "<th>Name</th>";
    print "<th>Description</th>";
    print "<th>User RegExp</th>";
    print "<th>Use For Bugs</th>";
    print "<th>Type</th>";
    print "<th>Action</th>";
    print "</tr>\n";

    SendSQL("SELECT id,name,description,userregexp,isactive,isbuggroup " .
            "FROM groups " .
            "ORDER BY isbuggroup, name");

    while (MoreSQLData()) {
        my ($groupid, $name, $desc, $regexp, $isactive, $isbuggroup) = FetchSQLData();
        print "<tr>\n";
        print "<td>" . html_quote($name) . "</td>\n";
        print "<td>" . html_quote($desc) . "</td>\n";
        print "<td>" . html_quote($regexp) . "&nbsp</td>\n";
        print "<td align=center>";
        print "X" if (($isactive != 0) && ($isbuggroup != 0));
        print "&nbsp</td>\n";
        print "<td> &nbsp ";
        print (($isbuggroup == 0 ) ? "system" : "user"); 
        print "&nbsp</td>\n";
        print "<td align=center valign=middle>
               <a href=\"editgroups.cgi?action=changeform&group=$groupid\">Edit</a>";
        print " | <a href=\"editgroups.cgi?action=del&group=$groupid\">Delete</a>" if ($isbuggroup != 0);
        print "</td></tr>\n";
    }

    print "<tr>\n";
    print "<td colspan=5></td>\n";
    print "<td><a href=\"editgroups.cgi?action=add\">Add Group</a></td>\n";
    print "</tr>\n";
    print "</table>\n";
    print "<p>";
    print "<b>Name</b> is what is used with the UserInGroup() function in any
customized cgi files you write that use a given group.  It can also be used by
people submitting bugs by email to limit a bug to a certain set of groups. <p>";
    print "<b>Description</b> is what will be shown in the bug reports to
members of the group where they can choose whether the bug will be restricted
to others in the same group.<p>";
    print "<b>User RegExp</b> is optional, and if filled in, will automatically
grant membership to this group to anyone with an
email address that matches this perl regular expression. Do not forget the trailing \'\$\'.  Example \'\@mycompany\\.com\$\'<p>";
    print "The <b>Use For Bugs</b> flag determines whether or not the group is eligible to be used for bugs.
If you remove this flag, it will no longer be possible for users to add bugs
to this group, although bugs already in the group will remain in the group.
Doing so is a much less drastic way to stop a group from growing
than deleting the group as well as a way to maintain lists of users without cluttering the lists of groups used for bug restrictions.<p>";
    print "The <b>Type</b> field identifies system groups.<p>";  

    PutFooter();
    exit;
}

#
#
# action='changeform' -> present form for altering an existing group
#
# (next action will be 'postchanges')
#

if ($action eq 'changeform') {
    PutHeader("Change Group");

    my $gid = trim($::FORM{group} || '');
    unless ($gid) {
        ShowError("No group specified.<BR>" .
                  "Click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }

    SendSQL("SELECT id, name, description, userregexp, isactive, isbuggroup
             FROM groups WHERE id=" . SqlQuote($gid));
    my ($group_id, $name, $description, $rexp, $isactive, $isbuggroup) 
        = FetchSQLData();

    print "<FORM METHOD=POST ACTION=editgroups.cgi>\n";
    print "<TABLE BORDER=1 CELLPADDING=4>";
    print "<TR><TH>Group:</TH><TD>";
    if ($isbuggroup == 0) {
        print html_quote($name);
    } else {
        print "<INPUT TYPE=HIDDEN NAME=\"oldname\" VALUE=\"" . 
        html_quote($name) . "\">
        <INPUT SIZE=60 NAME=\"name\" VALUE=\"" . html_quote($name) . "\">";
    }
    print "</TD></TR><TR><TH>Description:</TH><TD>";
    if ($isbuggroup == 0) {
        print html_quote($description);
    } else {
        print "<INPUT TYPE=HIDDEN NAME=\"olddesc\" VALUE=\"" .
        html_quote($description) . "\">
        <INPUT SIZE=70 NAME=\"desc\" VALUE=\"" . 
            html_quote($description) . "\">";
    }
    print "</TD></TR><TR>
           <TH>User Regexp:</TH><TD>";
    print "<INPUT TYPE=HIDDEN NAME=\"oldrexp\" VALUE=\"" . 
           html_quote($rexp) . "\">
           <INPUT SIZE=40 NAME=\"rexp\" VALUE=\"" . 
           html_quote($rexp) . "\"></TD></TR>";
    if ($isbuggroup == 1) {
        print "<TR><TH>Use For Bugs:</TH><TD>
        <INPUT TYPE=checkbox NAME =\"isactive\" VALUE=1 " . (($isactive == 1) ? "CHECKED" : "") . ">
        <INPUT TYPE=HIDDEN NAME=\"oldisactive\" VALUE=$isactive>
        </TD>
        </TR>";
    }
    print "</TABLE>
           <BR>
           Users become members of this group in one of three ways:
           <BR>
           - by being explicity included when the user is edited
           <BR>
           - by matching the user regexp above
           <BR>
           - by being a member of one of the groups included in this group
           by checking the boxes  
           below. <P>\n";

    print "<TABLE>";
    print "<TR><TD COLSPAN=4>Members of these groups can grant membership to this group</TD></TR>";
    print "<TR><TD ALIGN=CENTER>|</TD><TD COLSPAN=3>Members of these groups are included in this group</TD></TR>";
    print "<TR><TD ALIGN=CENTER>|</TD><TD ALIGN=CENTER>|</TD><TD COLSPAN=2></TD><TR>";

    # For each group, we use left joins to establish the existence of
    # a record making that group a member of this group
    # and the existence of a record permitting that group to bless
    # this one
    SendSQL("SELECT groups.id, groups.name, groups.description," .
             " group_group_map.member_id IS NOT NULL," .
             " B.member_id IS NOT NULL" .
             " FROM groups" .
             " LEFT JOIN group_group_map" .
             " ON group_group_map.member_id = groups.id" .
             " AND group_group_map.grantor_id = $group_id" .
             " AND group_group_map.isbless = 0" .
             " LEFT JOIN group_group_map as B" .
             " ON B.member_id = groups.id" .
             " AND B.grantor_id = $group_id" .
             " AND B.isbless" .
             " WHERE groups.id != $group_id ORDER by name");

    while (MoreSQLData()) {
        my ($grpid, $grpnam, $grpdesc, $grpmember, $blessmember) = FetchSQLData();
        my $grpchecked = $grpmember ? "CHECKED" : "";
        my $blesschecked = $blessmember ? "CHECKED" : "";
        print "<TR>";
        print "<TD><INPUT TYPE=checkbox NAME=\"bless-$grpid\" $blesschecked VALUE=1>";
        print "<INPUT TYPE=HIDDEN NAME=\"oldbless-$grpid\" VALUE=$blessmember></TD>";
        print "<TD><INPUT TYPE=checkbox NAME=\"grp-$grpid\" $grpchecked VALUE=1>";
        print "<INPUT TYPE=HIDDEN NAME=\"oldgrp-$grpid\" VALUE=$grpmember></TD>";
        print "<TD><B>" . html_quote($grpnam) . "</B></TD>";
        print "<TD>" . html_quote($grpdesc) . "</TD>";
        print "</TR>\n";
    }

    print "</TABLE><BR>";
    print "<INPUT TYPE=SUBMIT VALUE=\"Submit\">\n";
    print <<EOF;
<table width="76%" border="1">
  <tr>
    <td><p><strong>Conversion of groups created with Bugzilla versions 2.16 and
        prior:</strong></p>
          <ul>
            <li>Remove all explicit memberships from this group: 
              <input name="remove_explicit_members" type="submit" id="remove_explicit_members" value="Remove Memberships">
</li>
            <li>Remove all explicit memberships that are included in the above
            regular expression: 
              <input name="remove_explicit_members_regexp" type="submit" id="remove_explicit_members_regexp" value="Remove memberships included in regular expression"> 
            </li>
          </ul>          <p><br>            
              </p>
      </p></td>
  </tr>
</table>
<BR>
EOF
    print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"postchanges\">\n";
    print "<INPUT TYPE=HIDDEN NAME=\"group\" VALUE=$gid>\n";
    print "</FORM>";



    PutTrailer("back to the <a href=\"editgroups.cgi\">group list</a>");
    exit;
}

#
# action='add' -> present form for parameters for new group
#
# (next action will be 'new')
#

if ($action eq 'add') {
    print Bugzilla->cgi->header();

    $template->process("admin/groups/create.html.tmpl", $vars)
      || ThrowTemplateError($template->error());
    
    exit;
}



#
# action='new' -> add group entered in the 'action=add' screen
#

if ($action eq 'new') {
    PutHeader("Adding new group");

    # Cleanups and valididy checks
    my $name = trim($::FORM{name} || '');
    my $desc = trim($::FORM{desc} || '');
    my $regexp = trim($::FORM{regexp} || '');
    # convert an undefined value in the inactive field to zero
    # (this occurs when the inactive checkbox is not checked
    # and the browser does not send the field to the server)
    my $isactive = $::FORM{isactive} || 0;

    unless ($name) {
        ShowError("You must enter a name for the new group.<BR>" .
                  "Please click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }
    unless ($desc) {
        ShowError("You must enter a description for the new group.<BR>" .
                  "Please click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }
    if (TestGroup($name)) {
        ShowError("The group '" . $name . "' already exists.<BR>" .
                  "Please click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }

    if ($isactive != 0 && $isactive != 1) {
        ShowError("The active flag was improperly set.  There may be " . 
                  "a problem with Bugzilla or a bug in your browser.<br>" . 
                  "Please click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }

    if (!eval {qr/$regexp/}) {
        ShowError("The regular expression you entered is invalid. " .
                  "Please click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }

    # Add the new group
    SendSQL("INSERT INTO groups ( " .
            "name, description, isbuggroup, userregexp, isactive, last_changed " .
            " ) VALUES ( " .
            SqlQuote($name) . ", " .
            SqlQuote($desc) . ", " .
            "1," .
            SqlQuote($regexp) . ", " . 
            $isactive . ", NOW())" );
    SendSQL("SELECT last_insert_id()");
    my $gid = FetchOneColumn();
    my $admin = GroupNameToId('admin');
    SendSQL("INSERT INTO group_group_map (member_id, grantor_id, isbless)
             VALUES ($admin, $gid, 0)");
    SendSQL("INSERT INTO group_group_map (member_id, grantor_id, isbless)
             VALUES ($admin, $gid, 1)");
    # Permit all existing products to use the new group if makeproductgroups.
    if ($::FORM{insertnew}) {
        SendSQL("INSERT INTO group_control_map " .
                "(group_id, product_id, entry, membercontrol, " .
                "othercontrol, canedit) " .
                "SELECT $gid, products.id, 0, " .
                CONTROLMAPSHOWN . ", " .
                CONTROLMAPNA . ", 0 " .
                "FROM products");
    }
    print "OK, done.<p>\n";
    PutTrailer("<a href=\"editgroups.cgi?action=add\">add</a> another group",
               "back to the <a href=\"editgroups.cgi\">group list</a>");
    exit;
}

#
# action='del' -> ask if user really wants to delete
#
# (next action would be 'delete')
#

if ($action eq 'del') {
    PutHeader("Delete group");
    my $gid = trim($::FORM{group} || '');
    unless ($gid) {
        ShowError("No group specified.<BR>" .
                  "Click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }
    SendSQL("SELECT id FROM groups WHERE id=" . SqlQuote($gid));
    if (!FetchOneColumn()) {
        ShowError("That group doesn't exist.<BR>" .
                  "Click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }
    SendSQL("SELECT name,description " .
            "FROM groups " .
            "WHERE id = " . SqlQuote($gid));

    my ($name, $desc) = FetchSQLData();
    print "<table border=1>\n";
    print "<tr>";
    print "<th>Id</th>";
    print "<th>Name</th>";
    print "<th>Description</th>";
    print "</tr>\n";
    print "<tr>\n";
    print "<td>$gid</td>\n";
    print "<td>$name</td>\n";
    print "<td>$desc</td>\n";
    print "</tr>\n";
    print "</table>\n";

    print "<FORM METHOD=POST ACTION=editgroups.cgi>\n";
    my $cantdelete = 0;
    SendSQL("SELECT user_id FROM user_group_map 
             WHERE group_id = $gid AND isbless = 0");
    if (!FetchOneColumn()) {} else {
       $cantdelete = 1;
       print "
<B>One or more users belong to this group. You cannot delete this group while
there are users in it.</B><BR>
<A HREF=\"editusers.cgi?action=list&group=$gid\">Show me which users.</A> - <INPUT TYPE=CHECKBOX NAME=\"removeusers\">Remove all users from
this group for me<P>
";
    }
    SendSQL("SELECT bug_id FROM bug_group_map WHERE group_id = $gid");
    my $buglist="";
    if (MoreSQLData()) {
        $cantdelete = 1;
        my $buglist = "0";
        while (MoreSQLData()) {
            my ($bug) = FetchSQLData();
            $buglist .= "," . $bug;
        }
       print "
<B>One or more bug reports are visible only to this group.
You cannot delete this group while any bugs are using it.</B><BR>
<A HREF=\"buglist.cgi?bug_id=$buglist\">Show me which bugs.</A> -
<INPUT TYPE=CHECKBOX NAME=\"removebugs\">Remove all bugs from this group
restriction for me<BR>
<B>NOTE:</B> It's quite possible to make confidential bugs public by checking
this box.  It is <B>strongly</B> suggested that you review the bugs in this
group before checking the box.<P>
";
    }
    SendSQL("SELECT name FROM products WHERE name=" . SqlQuote($name));
    if (MoreSQLData()) {
       $cantdelete = 1;
       print "
<B>This group is tied to the <U>$name</U> product.
You cannot delete this group while it is tied to a product.</B><BR>
<INPUT TYPE=CHECKBOX NAME=\"unbind\">Delete this group anyway, and make the
<U>$name</U> product publicly visible.<BR>
";
    }

    print "<H2>Confirmation</H2>\n";
    print "<P>Do you really want to delete this group?\n";
    if ($cantdelete) {
      print "<BR><B>You must check all of the above boxes or correct the " .
            "indicated problems first before you can proceed.</B>";
    }
    print "<P><INPUT TYPE=SUBMIT VALUE=\"Yes, delete\">\n";
    print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"delete\">\n";
    print "<INPUT TYPE=HIDDEN NAME=\"group\" VALUE=\"$gid\">\n";
    print "</FORM>";

    PutTrailer("<a href=editgroups.cgi>No, go back to the group list</a>");
    exit;
}

#
# action='delete' -> really delete the group
#

if ($action eq 'delete') {
    PutHeader("Deleting group");
    my $gid = trim($::FORM{group} || '');
    unless ($gid) {
        ShowError("No group specified.<BR>" .
                  "Click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }
    SendSQL("SELECT name " .
            "FROM groups " .
            "WHERE id = " . SqlQuote($gid));
    my ($name) = FetchSQLData();

    my $cantdelete = 0;

    SendSQL("SELECT user_id FROM user_group_map 
             WHERE group_id = $gid AND isbless = 0");
    if (FetchOneColumn()) {
      if (!defined $::FORM{'removeusers'}) {
        $cantdelete = 1;
      }
    }
    SendSQL("SELECT bug_id FROM bug_group_map WHERE group_id = $gid");
    if (FetchOneColumn()) {
      if (!defined $::FORM{'removebugs'}) {
        $cantdelete = 1;
      }
    }
    SendSQL("SELECT name FROM products WHERE name=" . SqlQuote($name));
    if (FetchOneColumn()) {
      if (!defined $::FORM{'unbind'}) {
        $cantdelete = 1;
      }
    }

    if ($cantdelete == 1) {
      ShowError("This group cannot be deleted because there are " .
          "records in the database which refer to it.  All such records " .
          "must be removed or altered to remove the reference to this " .
          "group before the group can be deleted.");
      print "<a href=\"editgroups.cgi?action=del&group=$gid\">" .
            "View</a> the list of which records are affected.<br>";
      PutTrailer("back to the <a href=\"editgroups.cgi\">group list</a>");
      exit;
    }

    SendSQL("DELETE FROM user_group_map WHERE group_id = $gid");
    SendSQL("DELETE FROM group_group_map WHERE grantor_id = $gid");
    SendSQL("DELETE FROM bug_group_map WHERE group_id = $gid");
    SendSQL("DELETE FROM group_control_map WHERE group_id = $gid");
    SendSQL("DELETE FROM groups WHERE id = $gid");
    print "<B>Group $gid has been deleted.</B><BR>";


    PutTrailer("back to the <a href=\"editgroups.cgi\">group list</a>");
    exit;
}

#
# action='postchanges' -> update the groups
#

if ($action eq 'postchanges') {

    # ZLL: Bug 181589: we need to have something to remove explictly listed users from
    # groups in order for the conversion to 2.18 groups to work
    if ($::FORM{remove_explicit_members}) {
        PutHeader("Confirm: Remove All Explicit Members?");
        my ($gid, $chgs) = doGroupChanges();
        print "<br><br>\n";
        if ($chgs) {
            print "Group updated, please confirm removal:<p>\n";
        }
        confirmRemove(0,$gid);
        PutFooter();
        exit;
    } elsif ($::FORM{remove_explicit_members_regexp}) {
        PutHeader("Confirm: Remove Explicit Members in the Regular Expression?");
        my ($gid, $chgs, $rexp) = doGroupChanges();
        print "<br><br>\n";
        if ($chgs) {
            print "Group updated, please confirm removal:<p>\n";
        }
        confirmRemove(1, $gid, $rexp);
        PutFooter();
        exit;
    }
    
   # if we got this far, the admin doesn't want to convert, so just save their changes
   
    PutHeader("Updating group hierarchy");
    my ($gid, $chgs) = doGroupChanges();
    
    if (!$chgs) {
        print "You didn't change anything!<BR>\n";
        print "If you really meant it, hit the <B>Back</B> button and try again.<p>\n";
    } else {
        print "Done.<p>\n";
    }
    PutTrailer("back to the <a href=\"editgroups.cgi\">group list</a>");
    exit;
}

if (($action eq 'remove_all_regexp') || ($action eq 'remove_all')) {
    # remove all explicit users from the group with gid $::FORM{group} 
    # that match the regexp stored in the db for that group 
    # or all of them period
    my $dbh = Bugzilla->dbh;
    my $gid = $::FORM{group};
    my $sth = $dbh->prepare("SELECT name, userregexp FROM groups
                             WHERE id = ?");
    $sth->execute($gid);
    my ($name, $regexp) = $sth->fetchrow_array();
    if ($action eq 'remove_all_regexp') {
        PutHeader("Removing All Explicit Group Memberships Matching "
                . "Group RegExp from \'" . html_quote($name) . "\'");
    } else {
        PutHeader("Removing All Explicit Group Memberships from \'"
                . html_quote($name) . "\'");
    }
    $dbh->do("LOCK TABLES
                  groups WRITE,
                  profiles READ,
                  user_group_map WRITE");
    $sth = $dbh->prepare("SELECT user_group_map.user_id, profiles.login_name
                             FROM user_group_map, profiles
                             WHERE user_group_map.user_id = profiles.userid
                             AND user_group_map.group_id = ?
                             AND isderived = 0
                             AND isbless = 0");
    $sth->execute($gid);
    my $sth2 = $dbh->prepare("DELETE FROM user_group_map
                              WHERE user_id = ?
                              AND isbless = 0
                              AND group_id = ?");
    if ($action eq 'remove_all_regexp') {
        print "<br><b>Removing explicit memberships of users matching \'"
              . html_quote($regexp) . "\'...</b><br>\n";
    } else {
        print "<br><b>Removing explicit membership</b><br>\n";
    }
    while ( my ($userid, $userlogin) = $sth->fetchrow_array() ) {
        if ((($regexp =~ /\S/) && ($userlogin =~ m/$regexp/i))
            || ($action eq 'remove_all'))
        {
            $sth2->execute($userid,$gid);
            print html_quote($userlogin) . " removed<br>\n";
        }
    }
    print "<br><b>Done</b><br>";

    $sth = $dbh->prepare("UPDATE groups
             SET last_changed = NOW()
             WHERE id = ?");
    $sth->execute($gid);
    $dbh->do("UNLOCK TABLES");
    PutTrailer("back to the <a href=\"editgroups.cgi\">group list</a>");
    exit;
}




#
# No valid action found
#

PutHeader("Error");
print "I don't have a clue what you want.<BR>\n";

PutTrailer("<a href=editgroups.cgi>Try the group list</a>");

# confirm if the user wants to remove the explicit users
sub confirmRemove {
    my ($remove_regexp_only, $group, $regexp) = @_;
    
    if (!$remove_regexp_only) { 
        print "This option will remove ";
        print "all explicitly defined users ";
    } elsif ($regexp =~ /\S/) { 
        print "This option will remove ";
        print "all users included in the regular expression: " . 
              html_quote($regexp) . " ";
    } else {
        print "<b>There is no regular expression defined.</b>\n";
        print "No users will be removed<p>\n";
        print "<a href=\"editgroups.cgi\">return to the Edit Groups page</a>\n";
        return;
    }
    print "from group $::FORM{name}.<p>\n";
    print "Generally, you will only need to do this when upgrading groups ";
    print "created with Bugzilla versions 2.16 and prior. Use this option ";
    print "with <b>extreme care</b> and consult the Bugzilla Guide for ";
    print "further information.<p>\n";
    
    print "<FORM METHOD=POST ACTION=editgroups.cgi>\n";
    print "<INPUT TYPE=HIDDEN NAME=\"group\" VALUE=$group>\n";
    
    if ($remove_regexp_only) {
        print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"remove_all_regexp\">\n";
    } else {
        print "<INPUT TYPE=HIDDEN NAME=\"action\" VALUE=\"remove_all\">\n";
    }
    
    print "<INPUT NAME=\"confirm\" TYPE=SUBMIT VALUE=\"Confirm\">\n";
    print "<p>Or <a href=\"editgroups.cgi\">return to the Edit Groups page</a>\n";
    print "</FORM>";
}

# Helper sub to handle the making of changes to a group
sub doGroupChanges {
    my $gid = trim($::FORM{group} || '');
    unless ($gid) {
        ShowError("No group specified.<BR>" .
                  "Click the <b>Back</b> button and try again.");
        PutFooter();
        exit;
    }
    SendSQL("SELECT isbuggroup FROM groups WHERE id = $gid");
    my ($isbuggroup) = FetchSQLData();
    my $chgs = 0;
    if (($isbuggroup == 1) && ($::FORM{"oldname"} ne $::FORM{"name"})) {
        $chgs = 1;
        SendSQL("UPDATE groups SET name = " . 
            SqlQuote($::FORM{"name"}) . " WHERE id = $gid");
    }
    if (($isbuggroup == 1) && ($::FORM{"olddesc"} ne $::FORM{"desc"})) {
        $chgs = 1;
        SendSQL("UPDATE groups SET description = " . 
            SqlQuote($::FORM{"desc"}) . " WHERE id = $gid");
    }
    if ($::FORM{"oldrexp"} ne $::FORM{"rexp"}) {
        $chgs = 1;
        if (!eval {qr/$::FORM{"rexp"}/}) {
            ShowError("The regular expression you entered is invalid. " .
                      "Please click the <b>Back</b> button and try again.");
            PutFooter();
            exit;
        }
        SendSQL("UPDATE groups SET userregexp = " . 
            SqlQuote($::FORM{"rexp"}) . " WHERE id = $gid");
    }
    if (($isbuggroup == 1) && ($::FORM{"oldisactive"} ne $::FORM{"isactive"})) {
        $chgs = 1;
        SendSQL("UPDATE groups SET isactive = " . 
            SqlQuote($::FORM{"isactive"}) . " WHERE id = $gid");
    }
    
    print "Checking....";
    foreach my $b (grep(/^oldgrp-\d*$/, keys %::FORM)) {
        if (defined($::FORM{$b})) {
            my $v = substr($b, 7);
            my $grp = $::FORM{"grp-$v"} || 0;
            if ($::FORM{"oldgrp-$v"} != $grp) {
                $chgs = 1;
                print "changed";
                if ($grp != 0) {
                    print " set ";
                    SendSQL("INSERT INTO group_group_map 
                             (member_id, grantor_id, isbless)
                             VALUES ($v, $gid, 0)");
                } else {
                    print " cleared ";
                    SendSQL("DELETE FROM group_group_map
                             WHERE member_id = $v AND grantor_id = $gid
                             AND isbless = 0");
                }
            }

            my $bless = $::FORM{"bless-$v"} || 0;
            if ($::FORM{"oldbless-$v"} != $bless) {
                $chgs = 1;
                print "changed";
                if ($bless != 0) {
                    print " set ";
                    SendSQL("INSERT INTO group_group_map 
                             (member_id, grantor_id, isbless)
                             VALUES ($v, $gid, 1)");
                } else {
                    print " cleared ";
                    SendSQL("DELETE FROM group_group_map
                             WHERE member_id = $v AND grantor_id = $gid
                             AND isbless = 1");
                }
            }

        }
    }
    
    if ($chgs) {
        # mark the changes
        SendSQL("UPDATE groups SET last_changed = NOW() WHERE id = $gid");
    }
    return $gid, $chgs, $::FORM{"rexp"};
}
>3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367
# Translation file of Mandrake graphic install
# Copyright (C) 1999 Mandrakesoft
# Linux Indonesia <http://www.linux.or.id>, 1999-2001
# Mohammad DAMT <mdamt@cdl2000.com>, 1999-2001
# Andy <chandy@indo.net.id>, 1999
# Kelana <nk@telkom.net>, 1999
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
"POT-Creation-Date: 2001-06-02 17:16+0200\n"
"PO-Revision-Date: 2001-04-10 21:55+07:00\n"
"Last-Translator: Mohammad DAMT <mdamt@mdamt.net>\n"
"Language-Team: Bahasa Indonesia <id@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.6\n"

#: ../../Xconfigurator.pm_.c:232
msgid "Configure all heads independantly"
msgstr "Konfigurasikan semua monitor secara terpisah"

#: ../../Xconfigurator.pm_.c:233
msgid "Use Xinerama extension"
msgstr "Gunakan ekstensi Xinerama"

#: ../../Xconfigurator.pm_.c:236
#, c-format
msgid "Configure only card \"%s\" (%s)"
msgstr "Konfigurasikan kard ini sja \"%s\" (%s)"

#: ../../Xconfigurator.pm_.c:239
msgid "Multi-head configuration"
msgstr "Konfigurasi monitor lebih dari satu"

#: ../../Xconfigurator.pm_.c:240
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
"Sistem Anda mendukung penggunaan monitor lebih dari satu.\n"
"Silakan pilih"

#: ../../Xconfigurator.pm_.c:249
msgid "Graphic card"
msgstr "Card Grafik"

#: ../../Xconfigurator.pm_.c:249
msgid "Select a graphic card"
msgstr "Pilih kartu grafis"

#: ../../Xconfigurator.pm_.c:250
msgid "Choose a X server"
msgstr "Pilih server X"

#: ../../Xconfigurator.pm_.c:250
msgid "X server"
msgstr "Server X"

#: ../../Xconfigurator.pm_.c:309 ../../Xconfigurator.pm_.c:316
#: ../../Xconfigurator.pm_.c:366
#, c-format
msgid "XFree %s"
msgstr "XFree %s"

#: ../../Xconfigurator.pm_.c:312
msgid "Which configuration of XFree do you want to have?"
msgstr "Konfigurasi XFree mana yang Anda inginkan?"

#: ../../Xconfigurator.pm_.c:324
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Card Anda memiliki akselerasi hardware 3D, namun hanya bisa digunakan pada "
"XFree %s.\n"
"Card Anda ini bisa digunakan pada XFree %s yang memiliki dukungan baik dalam "
"2D."

#: ../../Xconfigurator.pm_.c:326 ../../Xconfigurator.pm_.c:359
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Card Anda dapat menggunakan akselerasi hardware 3D pada XFree %s."

#: ../../Xconfigurator.pm_.c:328 ../../Xconfigurator.pm_.c:361
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D"

#: ../../Xconfigurator.pm_.c:336 ../../Xconfigurator.pm_.c:350
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
"Card Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG."

#: ../../Xconfigurator.pm_.c:338 ../../Xconfigurator.pm_.c:352
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D PERCOBAAN"

#: ../../Xconfigurator.pm_.c:347
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Card Anda dapat menggunakan akselerasi hardware 3D pada XFree %s,\n"
"NAMUN INI BARU DALAM TAHAP PERCOBAAN DAN DAPAT MEMBUAT KOMPUTER ANDA HANG.\n"
"Card Anda ini dapat digunakan XFree %s yang lebih baik dalam 2D."

#: ../../Xconfigurator.pm_.c:371
msgid "XFree configuration"
msgstr "Konfigurasi XFree"

#: ../../Xconfigurator.pm_.c:416
msgid "Select the memory size of your graphic card"
msgstr "Pilih memori kartu grafis Anda"

#: ../../Xconfigurator.pm_.c:463
msgid "Choose options for server"
msgstr "Pilih opsi untk server"

#: ../../Xconfigurator.pm_.c:480
msgid "Choose a monitor"
msgstr "Pilih jenis monitor anda"

#: ../../Xconfigurator.pm_.c:480
msgid "Monitor"
msgstr "Monitor"

#: ../../Xconfigurator.pm_.c:483
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"Ada dua parameter penting, yaitu laju refresh vertikal, yaitu laju\n"
"kecepatan saat seluruh layar direfresh, dan yang lebih penting lagi adalah\n"
"laju sync horisontal, yaitu laju kecepatan saat menanyangkan scan line.\n"
"\n"
"Anda TIDAK BOLEH mengisi parameter tadi yang tidak dapat\n"
"diimbangi dengan kemampuan monitor Anda, karena monitor\n"
"Anda akan rusak berat.\n"
"Kalau Anda ragu, gunakan setting yang umum saja."

#: ../../Xconfigurator.pm_.c:490
msgid "Horizontal refresh rate"
msgstr "Laju refresh horisontal"

#: ../../Xconfigurator.pm_.c:491
msgid "Vertical refresh rate"
msgstr "Laju refresh vertikal"

#: ../../Xconfigurator.pm_.c:528
msgid "Monitor not configured"
msgstr "Monitor tidak dikonfigurasi"

#: ../../Xconfigurator.pm_.c:531
msgid "Graphic card not configured yet"
msgstr "Kartu grafis belum dikonfigurasi"

#: ../../Xconfigurator.pm_.c:534
msgid "Resolutions not chosen yet"
msgstr "Resolusi belum ditentukan"

#: ../../Xconfigurator.pm_.c:551
msgid "Do you want to test the configuration?"
msgstr "Anda ingin test konfigurasi ini?"

#: ../../Xconfigurator.pm_.c:555
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Awas: testing ini bisa membuat card komputer Anda hang"

#: ../../Xconfigurator.pm_.c:558
msgid "Test of the configuration"
msgstr "Test konfigurasi"

#: ../../Xconfigurator.pm_.c:597
msgid ""
"\n"
"try to change some parameters"
msgstr ""
"\n"
"coba ubah beberapa parameter"

#: ../../Xconfigurator.pm_.c:597
msgid "An error has occurred:"
msgstr "Ada error nih:"

#: ../../Xconfigurator.pm_.c:619
#, c-format
msgid "Leaving in %d seconds"
msgstr "Cabut dalam %d detik"

#: ../../Xconfigurator.pm_.c:630
msgid "Is this the correct setting?"
msgstr "Apa sudah sesuai settingnya?"

#: ../../Xconfigurator.pm_.c:638
msgid "An error has occurred, try to change some parameters"
msgstr "Ada kesalahan, coba ubah beberapa parameter"

#: ../../Xconfigurator.pm_.c:684 ../../printerdrake.pm_.c:277
#: ../../services.pm_.c:125
msgid "Resolution"
msgstr "Resolusi"

#: ../../Xconfigurator.pm_.c:731
msgid "Choose the resolution and the color depth"
msgstr "Pilih resolusi dan kedalaman warna"

#: ../../Xconfigurator.pm_.c:733
#, c-format
msgid "Graphic card: %s"
msgstr "Card Grafik: %s"

#: ../../Xconfigurator.pm_.c:734
#, c-format
msgid "XFree86 server: %s"
msgstr "Server XFree86: %s"

#: ../../Xconfigurator.pm_.c:750 ../../standalone/draknet_.c:280
#: ../../standalone/draknet_.c:283
msgid "Expert Mode"
msgstr "Mode Pakar"

#: ../../Xconfigurator.pm_.c:751
msgid "Show all"
msgstr "Tunjukan seluruhnya"

#: ../../Xconfigurator.pm_.c:794
msgid "Resolutions"
msgstr "Resolusi"

#: ../../Xconfigurator.pm_.c:1330
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Layout Keyboard: %s\n"

#: ../../Xconfigurator.pm_.c:1331
#, c-format
msgid "Mouse type: %s\n"
msgstr "Jenis Mouse: %s\n"

#: ../../Xconfigurator.pm_.c:1332
#, c-format
msgid "Mouse device: %s\n"
msgstr "Device Mouse: %s\n"

#: ../../Xconfigurator.pm_.c:1333
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"

#: ../../Xconfigurator.pm_.c:1334
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"

#: ../../Xconfigurator.pm_.c:1335
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"

#: ../../Xconfigurator.pm_.c:1336
#, c-format
msgid "Graphic card: %s\n"
msgstr "Card Grafik: %s\n"

#: ../../Xconfigurator.pm_.c:1337
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Memori Grafik: %s KB\n"

#: ../../Xconfigurator.pm_.c:1339
#, c-format
msgid "Color depth: %s\n"
msgstr "Pilihan kedalaman warna: %s\n"

#: ../../Xconfigurator.pm_.c:1340
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusi: %s\n"

#: ../../Xconfigurator.pm_.c:1342
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"

#: ../../Xconfigurator.pm_.c:1343
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"

#: ../../Xconfigurator.pm_.c:1362
msgid "Preparing X-Window configuration"
msgstr "Siap-siap konfigurasikan X "

#: ../../Xconfigurator.pm_.c:1382
msgid "What do you want to do?"
msgstr "Apa yang akan anda mau?"

#: ../../Xconfigurator.pm_.c:1387
msgid "Change Monitor"
msgstr "Ubah Monitor"

#: ../../Xconfigurator.pm_.c:1388
msgid "Change Graphic card"
msgstr "Ubah kartu grafis"

#: ../../Xconfigurator.pm_.c:1390
msgid "Change Server options"
msgstr "Ubah Parameter Server"

#: ../../Xconfigurator.pm_.c:1391
msgid "Change Resolution"
msgstr "Ubah Resolusi"

#: ../../Xconfigurator.pm_.c:1392
msgid "Show information"
msgstr "Lihat info"

#: ../../Xconfigurator.pm_.c:1393
msgid "Test again"
msgstr "Test lagi"

#: ../../Xconfigurator.pm_.c:1394 ../../bootlook.pm_.c:238
msgid "Quit"
msgstr "Keluar"

#: ../../Xconfigurator.pm_.c:1402
#, c-format
msgid ""
"Keep the changes?\n"
"Current configuration is:\n"
"\n"
"%s"
msgstr ""
"Lakukan perubahan?\n"
"Konfigurasi sekarang adalah:\n"
"\n"
"%s"

#: ../../Xconfigurator.pm_.c:1423
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Silahkan masuk lagi ke %s untuk mengaktifkan perubahan"

#: ../../Xconfigurator.pm_.c:1443
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Silahkan log out dan tekan Ctrl-Alt-BackSpace"

#: ../../Xconfigurator.pm_.c:1446
msgid "X at startup"
msgstr "X saat startup"

#: ../../Xconfigurator.pm_.c:1447
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
msgstr ""
"Saya bisa bikin komputermu akan menjalankan X saat booting.\n"
"Kamu mau fasilitas ini ?"

#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 warna (8 bits)"

#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 ribu warna (15 bits)"

#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 ribu warna (16 bits)"

#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 juta warna (24 bits)"

#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 milyar warna (32 bits)"

#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kb"

#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kb"

#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"

#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"

#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"

#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"

#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 mb atau lebih"

#: ../../Xconfigurator_consts.pm_.c:120
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "standard VGA, 640x480 pada 60 Hz"

#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 pada 56 Hz"

#: ../../Xconfigurator_consts.pm_.c:122
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 Kompatibel, 1024x768 pada 87 Hz interlaced (no 800x600)"

#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 pada 87 Hz interlaced, 800x600 pada 56 hz"

#: ../../Xconfigurator_consts.pm_.c:124
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 pada 60 Hz, 640x480 pada 72 Hz"

#: ../../Xconfigurator_consts.pm_.c:125
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 pada 60 Hz, 800x600 pada 72 Hz"

#: ../../Xconfigurator_consts.pm_.c:126
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "High Frequency SVGA, 1024x768 pada 70 Hz"

#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 60 Hz"

#: ../../Xconfigurator_consts.pm_.c:128
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 74 Hz"

#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frequency yang dapat mencapai 1280x1024 pada 76 Hz"

#: ../../Xconfigurator_consts.pm_.c:130
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor yang dapat mencapai 1600x1200 pada 70 Hz"

#: ../../Xconfigurator_consts.pm_.c:131
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor yang dapat mencapai 1600x1200 pada 76 Hz"

#: ../../any.pm_.c:99 ../../any.pm_.c:124
msgid "First sector of boot partition"
msgstr "Sektor pertama di partisi boot"

#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:197
msgid "First sector of drive (MBR)"
msgstr "Sektor pertama di drive (MBR)"

#: ../../any.pm_.c:103
msgid "SILO Installation"
msgstr "Instalasi SILO"

#: ../../any.pm_.c:104 ../../any.pm_.c:117
msgid "Where do you want to install the bootloader?"
msgstr "Bootloader akan diinstall di mana?"

#: ../../any.pm_.c:116
msgid "LILO/grub Installation"
msgstr "Instalasi LILO/grub"

#: ../../any.pm_.c:128 ../../any.pm_.c:142
msgid "SILO"
msgstr "SILO"

#: ../../any.pm_.c:130
msgid "LILO with text menu"
msgstr "LILO dengan menu teks"

#: ../../any.pm_.c:131 ../../any.pm_.c:142
msgid "LILO with graphical menu"
msgstr "LILO dengan menu grafik"

#: ../../any.pm_.c:134
msgid "Grub"
msgstr "Grub"

#: ../../any.pm_.c:138
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Boot dari DOS/Windows (loadlin)"

#: ../../any.pm_.c:140 ../../any.pm_.c:142
msgid "Yaboot"
msgstr "Yaboot"

#: ../../any.pm_.c:148 ../../any.pm_.c:180
msgid "Bootloader main options"
msgstr "Parameter Bootloader utama"

#: ../../any.pm_.c:149 ../../any.pm_.c:181
msgid "Bootloader to use"
msgstr "Bootloader yang hendak digunakan"

#: ../../any.pm_.c:151
msgid "Bootloader installation"
msgstr "Instalasi Bootloader"

#: ../../any.pm_.c:153 ../../any.pm_.c:183
msgid "Boot device"
msgstr "Device boot"

#: ../../any.pm_.c:154
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (tidak bisa dipakai pada BIOS kuno)"

#: ../../any.pm_.c:155
msgid "Compact"
msgstr "Compact"

#: ../../any.pm_.c:155
msgid "compact"
msgstr "compact"

#: ../../any.pm_.c:156 ../../any.pm_.c:256
msgid "Video mode"
msgstr "Mode video"

#: ../../any.pm_.c:158
msgid "Delay before booting default image"
msgstr "Delay sebelum boot ke image default"

#: ../../any.pm_.c:160 ../../any.pm_.c:741
#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:629
#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
#: ../../standalone/draknet_.c:569
msgid "Password"
msgstr "Password"

#: ../../any.pm_.c:161 ../../any.pm_.c:742
#: ../../install_steps_interactive.pm_.c:905
msgid "Password (again)"
msgstr "Password (lagi)"

#: ../../any.pm_.c:162
msgid "Restrict command line options"
msgstr "Batasi parameter command line"

#: ../../any.pm_.c:162
msgid "restrict"
msgstr "batasi"

#: ../../any.pm_.c:164
msgid "Clean /tmp at each boot"
msgstr "Hapus /tmp saat boot"

#: ../../any.pm_.c:165
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ukuram RAM yg tepat (saya nemu %d MB)"

#: ../../any.pm_.c:167
msgid "Enable multi profiles"
msgstr "Buat multi profil"

#: ../../any.pm_.c:171
msgid "Give the ram size in MB"
msgstr "Berikan jumlah RAM dalam satuan MB"

#: ../../any.pm_.c:173
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Pilihan ``Batasi parameter command line'' tidak ada gunanya tanpa password"

#: ../../any.pm_.c:174 ../../any.pm_.c:718
#: ../../install_steps_interactive.pm_.c:899
msgid "Please try again"
msgstr "Silahkan ulangi"

#: ../../any.pm_.c:174 ../../any.pm_.c:718
#: ../../install_steps_interactive.pm_.c:899
msgid "The passwords do not match"
msgstr "Password tidak sama"

#: ../../any.pm_.c:182
msgid "Init Message"
msgstr "Pesan Init"

#: ../../any.pm_.c:184
msgid "Open Firmware Delay"
msgstr "Delay Open Firmware"

#: ../../any.pm_.c:185
msgid "Kernel Boot Timeout"
msgstr "Timeout Kernel Boot"

#: ../../any.pm_.c:186
msgid "Enable CD Boot?"
msgstr "Aktifkan boot dari CD?"

#: ../../any.pm_.c:187
msgid "Enable OF Boot?"
msgstr "Aktifkan boot dari OF?"

#: ../../any.pm_.c:188
msgid "Default OS?"
msgstr "Default OS?"

#: ../../any.pm_.c:210
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ini adalah entri yang lain lagi.\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."

#: ../../any.pm_.c:220 ../../printerdrake.pm_.c:356
msgid "Add"
msgstr "Tambah"

#: ../../any.pm_.c:220 ../../any.pm_.c:729 ../../diskdrake.pm_.c:46
#: ../../printerdrake.pm_.c:356
msgid "Done"
msgstr "Selesai"

#: ../../any.pm_.c:220
#, fuzzy
msgid "Modify"
msgstr "Ganti RAID"

#: ../../any.pm_.c:228
msgid "Which type of entry do you want to add?"
msgstr "Tipe entri mana yang hendak ditambahkan"

#: ../../any.pm_.c:229
msgid "Linux"
msgstr "Linux"

#: ../../any.pm_.c:229
msgid "Other OS (SunOS...)"
msgstr "OS Lain (SunOS...)"

#: ../../any.pm_.c:230
msgid "Other OS (MacOS...)"
msgstr "OS Lain (MacOS...)"

#: ../../any.pm_.c:230
msgid "Other OS (windows...)"
msgstr "OS Lain (windows...)"

#: ../../any.pm_.c:250 ../../any.pm_.c:252
msgid "Image"
msgstr "Image"

#: ../../any.pm_.c:253 ../../any.pm_.c:264
msgid "Root"
msgstr "Root"

#: ../../any.pm_.c:254 ../../any.pm_.c:283
msgid "Append"
msgstr "Sambung"

#: ../../any.pm_.c:258
msgid "Initrd"
msgstr "Initrd"

#: ../../any.pm_.c:259
msgid "Read-write"
msgstr "Read-write"

#: ../../any.pm_.c:266
msgid "Table"
msgstr "Table"

#: ../../any.pm_.c:267
msgid "Unsafe"
msgstr "Tidak aman"

#: ../../any.pm_.c:274 ../../any.pm_.c:279 ../../any.pm_.c:282
msgid "Label"
msgstr "Label"

#: ../../any.pm_.c:276 ../../any.pm_.c:287
msgid "Default"
msgstr "Default"

#: ../../any.pm_.c:284
msgid "Initrd-size"
msgstr "Initrd-size"

#: ../../any.pm_.c:286
msgid "NoVideo"
msgstr "NoVideo"

#: ../../any.pm_.c:294
msgid "Remove entry"
msgstr "Hapus entri"

#: ../../any.pm_.c:297
msgid "Empty label not allowed"
msgstr "Label tidak boleh kosong"

#: ../../any.pm_.c:298
msgid "This label is already used"
msgstr "Label ini sudah dipakai"

#: ../../any.pm_.c:317
msgid "What type of partitioning?"
msgstr "Tipe partisi apa yang hendak digunakan?"

#: ../../any.pm_.c:608
#, c-format
msgid "Found %s %s interfaces"
msgstr "Ketemu interface %s %s"

#: ../../any.pm_.c:609
msgid "Do you have another one?"
msgstr "Anda punya lagi?"

#: ../../any.pm_.c:610
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Punya %s interface?"

#: ../../any.pm_.c:612 ../../interactive.pm_.c:104 ../../my_gtk.pm_.c:616
#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr "Tidak"

#: ../../any.pm_.c:612 ../../interactive.pm_.c:104 ../../my_gtk.pm_.c:616
msgid "Yes"
msgstr "Ya"

#: ../../any.pm_.c:613
msgid "See hardware info"
msgstr "Lihat info hardware"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: ../../any.pm_.c:648
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Menginstall driver untuk card %s %s"

#: ../../any.pm_.c:649
#, c-format
msgid "(module %s)"
msgstr "(module %s)"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../any.pm_.c:660
#, c-format
msgid "Which %s driver should I try?"
msgstr "Driver %s mana yang hendak saya coba?"

#: ../../any.pm_.c:668
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"Kadangkala, driver %s butuh informasi tambahan agar dapat bekerja normal\n"
"walaupun kadangkala juga ini tidak perlu. Nah, apakah Anda ingin untuk\n"
"memberikan parameter tambahan tadi atau biarkan saja drivernya melakukan\n"
"deteksi sendiri parameternya? Biasanya, autodetek akan membuat kompputer\n"
"jadi hengki (baca: hang), tapi biasanya sih nggak ngerusak hardwarenya."

#: ../../any.pm_.c:673
msgid "Autoprobe"
msgstr "Probe otomatis"

#: ../../any.pm_.c:673
msgid "Specify options"
msgstr "Tuliskan optionnya"

#: ../../any.pm_.c:677
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Sekarang Anda boleh berikan parameter untuk module %s."

#: ../../any.pm_.c:683
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"Silahkan berikan parameter untuk modul %s ini.\n"
"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
"Misalnya, ``io=0x300 irq=8''"

#: ../../any.pm_.c:686
msgid "Module options:"
msgstr "Pilihan Module:"

#: ../../any.pm_.c:697
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Module %s gagal diload.\n"
"Mau coba lagi dengan parameter yang lain?"

#: ../../any.pm_.c:715
#, c-format
msgid "(already added %s)"
msgstr "(Sudah ditambahkan %s)"

#: ../../any.pm_.c:719
msgid "This password is too simple"
msgstr "Password ini terlalu sederhana"

#: ../../any.pm_.c:720
msgid "Please give a user name"
msgstr "Silahkan tuliskan nama user"

#: ../../any.pm_.c:721
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Nama user hanya boleh terdiri dari huruf, angka, `-' dan `_'"

#: ../../any.pm_.c:722
msgid "This user name is already added"
msgstr "User ini sudah ada sebelumnya"

#: ../../any.pm_.c:726
msgid "Add user"
msgstr "Tambah user"

#: ../../any.pm_.c:727
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
"Masukkan user\n"
"%s"

#: ../../any.pm_.c:728
msgid "Accept user"
msgstr "Buat user"

#: ../../any.pm_.c:739
msgid "Real name"
msgstr "Nama Lengkap"

#: ../../any.pm_.c:740 ../../printerdrake.pm_.c:97
#: ../../printerdrake.pm_.c:131
msgid "User name"
msgstr "Nama user"

#: ../../any.pm_.c:743
msgid "Shell"
msgstr "Shell"

#: ../../any.pm_.c:745
msgid "Icon"
msgstr "Ikon"

#: ../../any.pm_.c:766
msgid "Autologin"
msgstr "Autologin"

#: ../../any.pm_.c:767
msgid ""
"I can set up your computer to automatically log on one user.\n"
"If you don't want to use this feature, click on the cancel button."
msgstr ""
"Saya bisa bikin komputermu akan langsung login dengan suatu user.\n"
"Kalau tidak ingin pakai fasilitas ini, tekan tombol Batal"

#: ../../any.pm_.c:769
msgid "Choose the default user:"
msgstr "Pilih user default:"

#: ../../any.pm_.c:770
msgid "Choose the window manager to run:"
msgstr "Pilih window manager yang hendak digunakan"

# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm_.c:262 ../../bootloader.pm_.c:608
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
"\n"
"Choose an operating system in the list above or\n"
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
"Selamat datang di Sang Pemilih Sistem Operasi, %s!\n"
"\n"
"pilih sistem operasi pada daftar di atas atau tunggu %d detik untuk boot ke "
"default.\n"
"\n"

# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
# transliteration be used; or maybe the english text be used; as it is best
#
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm_.c:809
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Selamat datang di sang pemilih sistem operasi, GRUB"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm_.c:812
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Gunakan tombol %c dan %c untuk memilih entri yang disorot"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm_.c:815
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Tekan enter untuk memboot OS yang terpilih, atau tekan 'e' untuk edit"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm_.c:818
msgid "commands before booting, or 'c' for a command-line."
msgstr "perintah sebelum booting, atau 'c' untuk command line."

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
#: ../../bootloader.pm_.c:821
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Entri yang dipilih akan diboot secara otomatis dalam %d detik."

#: ../../bootloader.pm_.c:825
msgid "not enough room in /boot"
msgstr "Waah /boot nggak cukup spacenya nih"

#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
#: ../../bootloader.pm_.c:918
msgid "Desktop"
msgstr "Desktop"

#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#: ../../bootloader.pm_.c:920
msgid "Start Menu"
msgstr "Start Menu"

#: ../../bootlook.pm_.c:46
msgid "no help implemented yet.\n"
msgstr "wah belom ada help-nya nih.\n"

#: ../../bootlook.pm_.c:62
msgid "Boot Style Configuration"
msgstr "Konfigurasi Tipe Boot"

#: ../../bootlook.pm_.c:79
msgid "/_File"
msgstr "/_File"

#: ../../bootlook.pm_.c:81
msgid "/File/_New"
msgstr "/File/_Baru"

#: ../../bootlook.pm_.c:82
msgid "<control>N"
msgstr "<control>N"

#: ../../bootlook.pm_.c:84
msgid "/File/_Open"
msgstr "/File/_Buka"

#: ../../bootlook.pm_.c:85
msgid "<control>O"
msgstr "<control>O"

#: ../../bootlook.pm_.c:87
msgid "/File/_Save"
msgstr "/File/_Simpan"

#: ../../bootlook.pm_.c:88
msgid "<control>S"
msgstr "<control>S"

#: ../../bootlook.pm_.c:90
msgid "/File/Save _As"
msgstr "/File/Simpan _Dengan nama lain"

#: ../../bootlook.pm_.c:91
msgid "/File/-"
msgstr "/File/-"

#: ../../bootlook.pm_.c:93
msgid "/File/_Quit"
msgstr "/File/_Keluar"

#: ../../bootlook.pm_.c:94
msgid "<control>Q"
msgstr "<control>Q"

#: ../../bootlook.pm_.c:96
msgid "/_Options"
msgstr "/_Pilihan"

#: ../../bootlook.pm_.c:98
msgid "/Options/Test"
msgstr "/Pilihan/Test"

#: ../../bootlook.pm_.c:99
msgid "/_Help"
msgstr "/_Help"

#: ../../bootlook.pm_.c:101
msgid "/Help/_About..."
msgstr "/Help/_About..."

#: ../../bootlook.pm_.c:111 ../../standalone/drakgw_.c:634
#: ../../standalone/draknet_.c:262 ../../standalone/tinyfirewall_.c:57
msgid "Configure"
msgstr "Konfigurasikan"

#: ../../bootlook.pm_.c:114
#, fuzzy, c-format
msgid ""
"You are currently using %s as Boot Manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Selamat datang di utiliti Internet Connection Sharing!\n"
"\n"
"%s\n"
"\n"
"Silakan pencet Konfigurasikan untuk mulai."

#: ../../bootlook.pm_.c:121
msgid "Lilo/grub mode"
msgstr "mode Lilo/Grub"

#: ../../bootlook.pm_.c:131
msgid "NewStyle Categorizing Monitor"
msgstr "Kategori Monitor Gaya Baru"

#: ../../bootlook.pm_.c:134
msgid "NewStyle Monitor"
msgstr "Monitor GayaBaru"

#: ../../bootlook.pm_.c:137
msgid "Traditional Monitor"
msgstr "Monitor Biasa"

#: ../../bootlook.pm_.c:140
msgid "Traditional Gtk+ Monitor"
msgstr "Monitor Biasa Gtk+"

#: ../../bootlook.pm_.c:144
msgid "Launch Aurora at boot time"
msgstr "Jalankan aurora saat boot"

#: ../../bootlook.pm_.c:169
msgid "Boot mode"
msgstr "Mode boot"

#: ../../bootlook.pm_.c:179
msgid "Launch the X-Window system at start"
msgstr "Jalankan X-Window saat sistem dimulai"

#: ../../bootlook.pm_.c:187
msgid "No, I don't want autologin"
msgstr "Tidak jack, saya tidak mau autologin"

#: ../../bootlook.pm_.c:193
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iya dong, saya mau pakai autologin (user,desktop)"

#: ../../bootlook.pm_.c:210
msgid "System mode"
msgstr "mode sistem"

#: ../../bootlook.pm_.c:228
#, fuzzy
msgid "Default Runlevel"
msgstr "Default"

#: ../../bootlook.pm_.c:236 ../../standalone/draknet_.c:88
#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:396
#: ../../standalone/draknet_.c:473 ../../standalone/draknet_.c:509
#: ../../standalone/draknet_.c:617
msgid "OK"
msgstr "OK"

#: ../../bootlook.pm_.c:238 ../../install_steps_gtk.pm_.c:576
#: ../../interactive.pm_.c:114 ../../interactive.pm_.c:269
#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:617
#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
#: ../../standalone/draknet_.c:485 ../../standalone/draknet_.c:631
#: ../../standalone/tinyfirewall_.c:63
msgid "Cancel"
msgstr "Batalkan"

#: ../../bootlook.pm_.c:315
msgid "can not open /etc/inittab for reading: $!"
msgstr "aduh, Ik ngga bisa baca file /etc/inittab nih: $!"

#: ../../bootlook.pm_.c:369
msgid "can not open /etc/sysconfig/autologin for reading: $!"
msgstr "aduh, saya ngga bisa baca file /etc/sysconfig/autologin: $!"

#: ../../bootlook.pm_.c:435 ../../standalone/drakboot_.c:47
msgid "Installation of LILO failed. The following error occured:"
msgstr "Instalasi LILO gagal. Ada kesalahan berikut:"

#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:462
msgid "Create"
msgstr "Buat"

#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Unmount"

#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:464
msgid "Delete"
msgstr "Hapus"

#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Format"

#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:653
msgid "Resize"
msgstr "Ubah ukuran"

#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:462
#: ../../diskdrake.pm_.c:518
msgid "Type"
msgstr "Tipe"

#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:539
msgid "Mount point"
msgstr "Posisi mount"

#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "Tulis /etc/fstab"

#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Berubah ke modus ahli"

#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Berubah ke modus normal"

#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Baca dari file"

#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Simpan di file"

#: ../../diskdrake.pm_.c:43
msgid "Wizard"
msgstr "Wizard"

#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Pulihkan dari floppy"

#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Simpan di floppy"

#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Hapus semua"

#: ../../diskdrake.pm_.c:54
msgid "Format all"
msgstr "Format semua"

#: ../../diskdrake.pm_.c:55
msgid "Auto allocate"
msgstr "Pengalokasian otomatis"

#: ../../diskdrake.pm_.c:59
msgid "All primary partitions are used"
msgstr "Semua partisi primary telah digunakan"

#: ../../diskdrake.pm_.c:59
msgid "I can't add any more partition"
msgstr "Aku tak bisa menambah partisi lagi"

#: ../../diskdrake.pm_.c:59
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Untuk menambahkan partisi lagi, hapus satu agar dapat membuat partisiextended"

#: ../../diskdrake.pm_.c:61
msgid "Not enough space for auto-allocating"
msgstr "Tidak ada cukup ruangan untuk mengalokasikan partisi otomatis"

#: ../../diskdrake.pm_.c:63
msgid "Undo"
msgstr "Nggak Jadi (undo)"

#: ../../diskdrake.pm_.c:64
msgid "Write partition table"
msgstr "Tulis tabel partisi"

#: ../../diskdrake.pm_.c:65 ../../install_steps_interactive.pm_.c:185
msgid "More"
msgstr "Lagi"

#: ../../diskdrake.pm_.c:116
msgid "Ext2"
msgstr "Ext2"

#: ../../diskdrake.pm_.c:116
msgid "FAT"
msgstr "FAT"

#: ../../diskdrake.pm_.c:116
msgid "HFS"
msgstr "HFS"

#: ../../diskdrake.pm_.c:116
msgid "SunOS"
msgstr "SunOS"

#: ../../diskdrake.pm_.c:116
msgid "Swap"
msgstr "Swap"

#: ../../diskdrake.pm_.c:117
msgid "Empty"
msgstr "Kosong"

#: ../../diskdrake.pm_.c:117 ../../install_steps_gtk.pm_.c:407
#: ../../mouse.pm_.c:145
msgid "Other"
msgstr "Lainnya"

#: ../../diskdrake.pm_.c:123
msgid "Filesystem types:"
msgstr "Tipe filesystem:"

#: ../../diskdrake.pm_.c:132 ../../install_steps_gtk.pm_.c:577
msgid "Details"
msgstr "Detil"

#: ../../diskdrake.pm_.c:147
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Anda punya satu partisi fat yang besar.\n"
"(dipakai oleh Microsoft Dos/Windows yah ?).\n"
"Saya sarankan untuk meresize partisi ini\n"
"(click di situ, dan pilih \"Ubah ukuran\")"

#: ../../diskdrake.pm_.c:152
msgid "Please make a backup of your data first"
msgstr "Mohon untuk membackup data Anda dulu"

#: ../../diskdrake.pm_.c:152 ../../diskdrake.pm_.c:170
#: ../../diskdrake.pm_.c:179 ../../diskdrake.pm_.c:570
#: ../../diskdrake.pm_.c:592
msgid "Read carefully!"
msgstr "Baca dengan seksama!"

#: ../../diskdrake.pm_.c:155
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"Kalau Anda mau pakai aboot, sisakan free space dulu (2048 sektor sih cukup "
"deh)\n"
"di awal disk"

#: ../../diskdrake.pm_.c:170
msgid "Be careful: this operation is dangerous."
msgstr "Hati-hati nih: operasi ini sangat berbuahayyya"

#: ../../diskdrake.pm_.c:214 ../../install_steps.pm_.c:72
#: ../../install_steps_interactive.pm_.c:37
#: ../../install_steps_interactive.pm_.c:322 ../../standalone/diskdrake_.c:66
msgid "Error"
msgstr "Ada Kesalahan"

#: ../../diskdrake.pm_.c:238 ../../diskdrake.pm_.c:748
msgid "Mount point: "
msgstr "Posisi mount: "

#: ../../diskdrake.pm_.c:239 ../../diskdrake.pm_.c:298
msgid "Device: "
msgstr "Device: "

#: ../../diskdrake.pm_.c:240
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS letter: %s (hanya tebakan)\n"

#: ../../diskdrake.pm_.c:244 ../../diskdrake.pm_.c:251
#: ../../diskdrake.pm_.c:301
msgid "Type: "
msgstr "Tipe: "

#: ../../diskdrake.pm_.c:248
msgid "Name: "
msgstr "Nama: "

#: ../../diskdrake.pm_.c:253
#, c-format
msgid "Start: sector %s\n"
msgstr "Mulai: sektor %s\n"

#: ../../diskdrake.pm_.c:254
#, c-format
msgid "Size: %s"
msgstr "Ukuran: %s"

#: ../../diskdrake.pm_.c:256
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"

#: ../../diskdrake.pm_.c:258
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Dari silinder %d sampai silinder %d\n"

#: ../../diskdrake.pm_.c:259
msgid "Formatted\n"
msgstr "Telah diformat\n"

#: ../../diskdrake.pm_.c:260
msgid "Not formatted\n"
msgstr "Belum diformat\n"

#: ../../diskdrake.pm_.c:261
msgid "Mounted\n"
msgstr "Telah di-mount\n"

#: ../../diskdrake.pm_.c:262
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"

#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "File loopback: %s\n"

#: ../../diskdrake.pm_.c:265
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Partisi di-boot secara default\n"
"    (untuk MS-DOS boot, bukan untuk lilo)\n"

#: ../../diskdrake.pm_.c:267
#, c-format
msgid "Level %s\n"
msgstr "Level %s\n"

#: ../../diskdrake.pm_.c:268
#, c-format
msgid "Chunk size %s\n"
msgstr "Ukuran chunk %s\n"

#: ../../diskdrake.pm_.c:269
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disk RAID %s\n"

#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Loopback file name: %s"
msgstr "Nama file loopback: %s"

#: ../../diskdrake.pm_.c:274
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition, you should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Mungkin partisi ini adalah \n"
"partisi driver, jadi sebaiknya\n"
"jangan diapa-apain deh.\n"

#: ../../diskdrake.pm_.c:277
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"partisi ini adalah partisi bootstrap\n"
"yang khusus digunakan \n"
"oleh sistem dual boot.\n"

#: ../../diskdrake.pm_.c:294
msgid "Please click on a partition"
msgstr "Silahkan pilih partisinya"

#: ../../diskdrake.pm_.c:299
#, c-format
msgid "Size: %s\n"
msgstr "Ukuran: %s\n"

#: ../../diskdrake.pm_.c:300
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ukuran: %s silinber, %s head, %s sektor\n"

#: ../../diskdrake.pm_.c:302
#, c-format
msgid "LVM-disks %s\n"
msgstr "Disk LVM %s\n"

#: ../../diskdrake.pm_.c:303
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisi tipe: %s\n"

#: ../../diskdrake.pm_.c:304
#, c-format
msgid "on bus %d id %d\n"
msgstr "pada bus %d id %d\n"

#: ../../diskdrake.pm_.c:320
msgid "Mount"
msgstr "Mount"

#: ../../diskdrake.pm_.c:322
msgid "Active"
msgstr "Aktif"

#: ../../diskdrake.pm_.c:324
msgid "Add to RAID"
msgstr "Tambahkan ke RAID"

#: ../../diskdrake.pm_.c:326
msgid "Remove from RAID"
msgstr "Hapus dari RAID"

#: ../../diskdrake.pm_.c:328
msgid "Modify RAID"
msgstr "Ganti RAID"

#: ../../diskdrake.pm_.c:330
msgid "Add to LVM"
msgstr "Tambahkan ke LVM"

#: ../../diskdrake.pm_.c:332
msgid "Remove from LVM"
msgstr "Hapus dari LVM"

#: ../../diskdrake.pm_.c:334
msgid "Use for loopback"
msgstr "digunakan untuk loopback"

#: ../../diskdrake.pm_.c:341
msgid "Choose action"
msgstr "Pilih maunya apa"

#: ../../diskdrake.pm_.c:435
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
"Either you use LILO and it won't work, or you don't use LILO and you don't "
"need /boot"
msgstr ""
"Maaf, Saya tidak mau membuat /boot di drive ini (silindernya > 1024).\n"
"Kalau Anda pakai LILO dan nggak jalan, atau Anda nggak mau LILO dan nggak "
"mau /boot juga"

#: ../../diskdrake.pm_.c:439
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
"Anda menambahkan partisi root diluar silinder 1024,\n"
"dan anda tidak memiliki partisi /boot. Apabila anda akan menggunakan lilo\n"
"(boot manager), hati-hati dalam menambahkan partisi /boot"

#: ../../diskdrake.pm_.c:445
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
"Anda memilih partisi RAID software sebagai root (/).\n"
"Sekarang bootloader nggak ada yang bisa handel tanpa partisi /boot.\n"
"Jadi hati-hati yah untuk tambahkan partisi /boot"

#: ../../diskdrake.pm_.c:462 ../../diskdrake.pm_.c:464
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gunakan ``%s'' saja"

#: ../../diskdrake.pm_.c:468
msgid "Use ``Unmount'' first"
msgstr "Gunakan ``unmount'' terlebih dahulu"

#: ../../diskdrake.pm_.c:469 ../../diskdrake.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Setelah mengganti tipe partisi %s, semua data pada partisi ini akan hilang"

#: ../../diskdrake.pm_.c:481
msgid "Continue anyway?"
msgstr "Cuek aja?"

#: ../../diskdrake.pm_.c:486
msgid "Quit without saving"
msgstr "Keluar tanpa menyimpan"

#: ../../diskdrake.pm_.c:486
msgid "Quit without writing the partition table?"
msgstr "Keluar dari program tanpa menyimpan dalam tabel partisi?"

#: ../../diskdrake.pm_.c:516
msgid "Change partition type"
msgstr "Merubah tipe partisi"

#: ../../diskdrake.pm_.c:517
msgid "Which filesystem do you want?"
msgstr "Filesystem apa yang anda inginkan"

#: ../../diskdrake.pm_.c:520 ../../diskdrake.pm_.c:780
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Nggak bisa pakai ReiserFS buat partisi yang ukurannya lebih kecil dari 32 MB "
"nih"

#: ../../diskdrake.pm_.c:537
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Device loopback %s akan di mount ke mana?"

#: ../../diskdrake.pm_.c:538
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Mount device %s akan di mount ke mana?"

#: ../../diskdrake.pm_.c:542
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Nggak bisa unset mount point karena partisi ini sudah digunakan untuk\n"
"loopback. Hapus dulu loopbacknya kalau mau begitu."

#: ../../diskdrake.pm_.c:561
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Sehabis memformat partisi %s semua data pada partisi ini akan hilang"

#: ../../diskdrake.pm_.c:563
msgid "Formatting"
msgstr "sedang memformat"

#: ../../diskdrake.pm_.c:564
#, c-format
msgid "Formatting loopback file %s"
msgstr "Sekarang sedang memformat file loopback %s"

#: ../../diskdrake.pm_.c:565 ../../install_steps_interactive.pm_.c:430
#, c-format
msgid "Formatting partition %s"
msgstr "Melakukan format partisi %s"

#: ../../diskdrake.pm_.c:570
msgid "After formatting all partitions,"
msgstr "Setelah melakukan format semua partisi,"

#: ../../diskdrake.pm_.c:570
msgid "all data on these partitions will be lost"
msgstr "seluruh data dalam partisi-partisi ini akan hilang"

#: ../../diskdrake.pm_.c:576
msgid "Move"
msgstr "Pindah"

#: ../../diskdrake.pm_.c:577
msgid "Which disk do you want to move it to?"
msgstr "Disk mana yang hendak dipindah?"

#: ../../diskdrake.pm_.c:578
msgid "Sector"
msgstr "Sektor"

#: ../../diskdrake.pm_.c:579
msgid "Which sector do you want to move it to?"
msgstr "Sektor mana yang hendak dipindah"

#: ../../diskdrake.pm_.c:582
msgid "Moving"
msgstr "Pindah"

#: ../../diskdrake.pm_.c:582
msgid "Moving partition..."
msgstr "Memindahkan partisi..."

#: ../../diskdrake.pm_.c:592
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabel partisi pada drive %s akan ditulis ke disk!"

#: ../../diskdrake.pm_.c:594
msgid "You'll need to reboot before the modification can take place"
msgstr "Anda harus reboot agar perubahan table partisi dapat berlaku"

#: ../../diskdrake.pm_.c:615
msgid "Computing FAT filesystem bounds"
msgstr "Sedang menghitung bound filesystem fat"

#: ../../diskdrake.pm_.c:615 ../../diskdrake.pm_.c:680
#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Sedang merubah ukuran"

#: ../../diskdrake.pm_.c:643
msgid "This partition is not resizeable"
msgstr "Partisi ini tidak dapat dirubah ukurannya"

#: ../../diskdrake.pm_.c:648
msgid "All data on this partition should be backed-up"
msgstr "semua data pada partisi ini sebaiknya dibackup dulu"

#: ../../diskdrake.pm_.c:650
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Sehabis meresize partisi %s, semua data pada partisi ini akan hilang"

#: ../../diskdrake.pm_.c:660
msgid "Choose the new size"
msgstr "Pilih ukuran baru"

#: ../../diskdrake.pm_.c:660 ../../install_steps_graphical.pm_.c:287
#: ../../install_steps_graphical.pm_.c:334
msgid "MB"
msgstr "MB"

#: ../../diskdrake.pm_.c:714
msgid "Create a new partition"
msgstr "Membuat partisi baru"

#: ../../diskdrake.pm_.c:740
msgid "Start sector: "
msgstr "Sektor awal: "

#: ../../diskdrake.pm_.c:744 ../../diskdrake.pm_.c:819
msgid "Size in MB: "
msgstr "Ukuran dalam MB: "

#: ../../diskdrake.pm_.c:747 ../../diskdrake.pm_.c:822
msgid "Filesystem type: "
msgstr "Tipe filesystem: "

#: ../../diskdrake.pm_.c:750
msgid "Preference: "
msgstr "Seting:"

#: ../../diskdrake.pm_.c:798
msgid "This partition can't be used for loopback"
msgstr "Partisi ini nggak bisa dipakai sebagai loopback"

#: ../../diskdrake.pm_.c:808
msgid "Loopback"
msgstr "Loopback"

#: ../../diskdrake.pm_.c:818
msgid "Loopback file name: "
msgstr "Nama file loopback: "

#: ../../diskdrake.pm_.c:844
msgid "File already used by another loopback, choose another one"
msgstr "File sudah digunakan loopback yang lain, pilih yang lainnya dong"

#: ../../diskdrake.pm_.c:845
msgid "File already exists. Use it?"
msgstr "File sudah ada. Gunakan file ini ?"

#: ../../diskdrake.pm_.c:867 ../../diskdrake.pm_.c:883
msgid "Select file"
msgstr "Pilih file"

#: ../../diskdrake.pm_.c:876
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Backup tabel partisi tidak memiliki ukuran yg sama\n"
"Cuek saja?"

#: ../../diskdrake.pm_.c:884
msgid "Warning"
msgstr "Awas"

#: ../../diskdrake.pm_.c:885
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"Maukkan disket di drive\n"
"semua data pada disket ini akan hilang"

#: ../../diskdrake.pm_.c:896
msgid "Trying to rescue partition table"
msgstr "Sedang mencoba menyelamatkan tabel partisi"

#: ../../diskdrake.pm_.c:905
msgid "device"
msgstr "device"

#: ../../diskdrake.pm_.c:906
msgid "level"
msgstr "level"

#: ../../diskdrake.pm_.c:907
msgid "chunk size"
msgstr "ukuran chunk"

#: ../../diskdrake.pm_.c:919
msgid "Choose an existing RAID to add to"
msgstr "Pilih RAID yang ada untuk ditambahkan ke"

#: ../../diskdrake.pm_.c:920 ../../diskdrake.pm_.c:946
msgid "new"
msgstr "baru"

#: ../../diskdrake.pm_.c:944
msgid "Choose an existing LVM to add to"
msgstr "Pilih LVM yang ada untuk ditambahkan ke"

#: ../../diskdrake.pm_.c:949
msgid "LVM name?"
msgstr "nama LVM?"

#: ../../diskdrake.pm_.c:976
msgid "Removable media automounting"
msgstr "automounting media removable"

#: ../../diskdrake.pm_.c:977
msgid "Rescue partition table"
msgstr "Selamatkan dulu tabel partisi"

#: ../../diskdrake.pm_.c:979
msgid "Reload"
msgstr "Reload"

#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#: ../../fs.pm_.c:113
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s proses format dari %s gagal"

#: ../../fs.pm_.c:143
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "tidak bisa melakukan format %s dengan tipe %s"

#: ../../fs.pm_.c:230
msgid "mount failed: "
msgstr "gagal melakukan mount: "

#: ../../fs.pm_.c:242
#, c-format
msgid "error unmounting %s: %s"
msgstr "error melakukan unmount %s: %s"

#: ../../fsedit.pm_.c:21
msgid "simple"
msgstr "simple"

#: ../../fsedit.pm_.c:30
msgid "server"
msgstr "server"

#: ../../fsedit.pm_.c:262
msgid "Mount points must begin with a leading /"
msgstr "Mount point harus diawali dengan /"

#: ../../fsedit.pm_.c:265
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Partisi dengan mount poin %s sudah ada\n"

#: ../../fsedit.pm_.c:273
#, c-format
msgid "Circular mounts %s\n"
msgstr "Mount melingkar %s\n"

#: ../../fsedit.pm_.c:285
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Anda tidak bisa menggunakan LVM Logical Volume untuk titik mount %s."

#: ../../fsedit.pm_.c:286
msgid "This directory should remain within the root filesystem"
msgstr "Direktori ini harus ada di filesystem root"

#: ../../fsedit.pm_.c:287
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Kamu harus punya filesystem sungguhan (ext2 atau reiserfs) untuk memount "
"ini\n"

#: ../../fsedit.pm_.c:369
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "error membuka file %s untuk ditulisi: %s"

#: ../../fsedit.pm_.c:453
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Error - tidak ada device yang valid untuk membuat filesystem baru.Periksa "
"kembali hardware untuk mencari penyebabnya"

#: ../../fsedit.pm_.c:467
msgid "You don't have any partitions!"
msgstr "Kok belum punya partisi ?"

#: ../../help.pm_.c:9
msgid ""
"Please choose your preferred language for installation and system usage."
msgstr "Pilihlan bahasa yang ingin Anda gunakan untuk instalasi dan sistem."

#: ../../help.pm_.c:12
msgid ""
"You need to accept the terms of the above license to continue installation.\n"
"\n"
"\n"
"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
"\n"
"Please click on \"Refuse\" if you disagree with its terms. Installation will "
"end without modifying your current\n"
"configuration."
msgstr ""
"Anda harus menerima ketentuan dalam lisensi di atas untuk melanjutkan proses "
"instalasi.\n"
"\n"
"\n"
"Silahkan tekan \"Baiklah\" bila Anda setuju dengan persyaratan di atas.\n"
"\n"
"\n"
"dan silakan tekan \"Tidak Mau\" bila Anda tidak setuju. Proses instalasi "
"akan dihentikan tanpa merubah konfigurasi yang sudah ada."

#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "Pilih layout keyboard yg dipakai dari daftar di atas"

#: ../../help.pm_.c:25
msgid ""
"If you wish other languages (than the one you choose at\n"
"beginning of installation) will be available after installation, please "
"chose\n"
"them in list above. If you want select all, you just need to select \"All\"."
msgstr ""
"Bila Anda menginginkan bahasa-bahasa lain selain bahasa yang Anda tadi pilih "
"pada saat setelah instalasi, silahkan pilih pada daftar di atas. Bila Anda "
"mau semuanya, pilih saja \"Semuanya\"."

#: ../../help.pm_.c:30
msgid ""
"Please choose \"Install\" if there are no previous version of Linux-"
"Mandrake\n"
"installed or if you wish to use several operating systems.\n"
"\n"
"\n"
"Please choose \"Update\" if you wish to update an already installed version "
"of Linux-Mandrake.\n"
"\n"
"\n"
"Depend of your knowledge in GNU/Linux, you can choose one of the following "
"levels to install or update your\n"
"Linux-Mandrake operating system:\n"
"\n"
"\t* Recommended: if you have never installed a GNU/Linux operating system "
"choose this. Installation will be\n"
"\t  be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
"the primary usage (workstation, server,\n"
"\t  development) of your system. You will need to answer to more questions "
"than in \"Recommended\" installation\n"
"\t  class, so you need to know how GNU/Linux works to choose this "
"installation class.\n"
"\n"
"\n"
"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
"installation class. As in \"Customized\"\n"
"\t  installation class, you will be able to choose the primary usage "
"(workstation, server, development). Be very\n"
"\t  careful before choose this installation class. You will be able to "
"perform a higly customized installation.\n"
"\t  Answer to some questions can be very difficult if you haven't a good "
"knowledge in GNU/Linux. So, don't choose\n"
"\t  this installation class unless you know what you are doing."
msgstr ""
"Silakan pilih \"Install\" bila sekarang Anda belum pernah menginstall Linux "
"Mandrake di komputer ini\n"
"atau bila Anda ingin menginstall banyak sistem operasi.\n"
"\n"
"\n"
"Silakan pilih \"Update\" bila Anda ingin melakukan update pada sistem Linux "
"Mandrake yang sudah ada\n"
"\n"
"\n"
"Silakan Anda pilih tingkatan install atau update bergantung dengan "
"pengetahuan Anda di bidang GNU/Linux:\n"
"\n"
"\t* Disarankan: pilih ini bila Anda belum pernah menginstall sistem operasi "
"GNU/Linux\n"
".\t proses instalasi akan sangat mudah dan Anda hanya ditanya beberapa "
"pertanyaan saja.\n"
"\n"
"\n"
"\t* Custom: pilih ini bila Anda cukup familiar dengan GNU/Linux, dan Anda "
"bisa membuat sistem Anda\n"
"\tmenjadi sesuai kebutuhan Anda (workstation, server, atau development). "
"Anda akan ditanyakan pertanyaan\n"
"\tyang lebih banyak lagi dari instalasi \"Disarankan\". Jadi Anda perlu "
"lebih jauh lagi mengenal dunia\n"
"GNU/Linux bila memilih kelas instalasi ini\n"
"\n"
"\n"
"\t* Pakar: pilih ini bila Anda memiliki pengetahuan yang luas di bidang GNU/"
"Linux,\n"
"\t sebagaimana di kelas \"Custom\", Anda akan dapat menentukan penggunaan "
"utama\n"
"\t sistem ini (workstation, server, atau development). Hati-hatilah bila "
"memilih kelas ini\n"
"\t karena Anda akan dapat melakukan instalasi yang bebas\n"
"\t Anda akan kesulitan menjawab pertanyaan yang diajukan bila Anda tidak "
"memiliki\n"
"\t pengetahuan GNU/Linux yang kuat. Jadi jangan pilih kelas ini kecuali "
"Anda\n"
"\t tahu apa yang Anda lakukan."

#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
"  - Customized: If you are familiar enough with GNU/Linux, you may then "
"choose\n"
"    the primary usage for your machine. See below for details.\n"
"\n"
"\n"
"  - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
"    perform a highly customized installation. As for a \"Customized\"\n"
"    installation class, you will be able to select the usage for your "
"system.\n"
"    But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
"DOING!"
msgstr ""
"Pilih:\n"
"\n"
"  - Customized:  Bila Anda familiar dengan Linux, Anda akan dapat\n"
" memilih penggunaan sistem ini, yaitu normal, development, atau server.\n"
" Pilih \"Normal\" untuk instalasi secara umum yang biasanya. Atau pilih\n"
" \"Development\" untuk membuat software dengan Linux Anda, atau pilih\n"
" \"Server\" bila hendak menginstall server serbaguna (mail, print, dsb)\n"
"\n"
"\n"
"  - Pakar    :  Bila Anda sangat dekat dengan GNU/Linux dan ingin\n"
" menginstall Linux sesuka hati, ini adalah kelas instalasi yang pas\n"
" untuk kamu, dan kamu bisa memilih penggunaan sistem ini sebagaimana\n"
" pada kelas \"Customized\". JANGAN COBA-COBA PAKAI MODUS INI KALAO\n"
" belom cukup makan asam garam di dunia PERLINUXAN"

#: ../../help.pm_.c:68
msgid ""
"You must now define your machine usage. Choices are:\n"
"\n"
"\t* Workstation: this the ideal choice if you intend to use your machine "
"primarily for everyday use, at office or\n"
"\t  at home.\n"
"\n"
"\n"
"\t* Development: if you intend to use your machine primarily for software "
"development, it is the good choice. You\n"
"\t  will then have a complete collection of software installed in order to "
"compile, debug and format source code,\n"
"\t  or create software packages.\n"
"\n"
"\n"
"\t* Server: if you intend to use this machine as a server, it is the good "
"choice. Either a file server (NFS or\n"
"\t  SMB), a print server (Unix style or Microsoft Windows style), an "
"authentication server (NIS), a database\n"
"\t  server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
"to be installed."
msgstr ""
"Berikut adalah pilihan penggunaan mesin Anda :\n"
"\n"
"\t*Workstation: pilih ini kalau Anda hendak menggunakan mesin Anda untuk "
"mengerjakan\n"
"\t pekerjaan sehari-hari di kantor atau di rumah\n"
"\n"
"\n"
"\t* Development: pilih ini bila Anda hendak menggunakan mesin ini untuk "
"pembuatan software.\n"
"\t Anda akan saya kasih kumpulan software yang berguna untuk melakukan "
"kompilasi,\n"
"\t debug, dan format source code, atau untuk membuat paket software\n"
"\n"
"\n"
"\t* Server : Pilih ini bila Anda hendak menggunakan mesin ini sebagai\n"
"\t server. Entah itu file server (NFS ataw SMB), print server\n"
"\t (pakai protokol Unix lp (Line Printer) atau model Windows SMB)\n"
"\t authentication server (NIS), database server dsb dsb.\n"
"\t Karena itu jangan mengharapken saya menyediakan rupa-rupa\n"
"\t software yang ngejreng (KDE,GNOME...) di sini."

#: ../../help.pm_.c:84
msgid ""
"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
"finds an SCSI adapter and knows which driver to use, it will be "
"automatically\n"
"installed.\n"
"\n"
"\n"
"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
"your\n"
"system. If there is no adapter present, you can click on \"No\". If you "
"click on\n"
"\"Yes\", a list of drivers will be presented from which you can select your\n"
"specific adapter.\n"
"\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for "
"the\n"
"options. This usually works well.\n"
"\n"
"\n"
"If not, you will need to provide options to the driver. Please review the "
"User\n"
"Guide (chapter 3, section \"Collective informations on your hardware) for "
"hints\n"
"on retrieving this information from hardware documentation, from the\n"
"manufacturer's Web site (if you have Internet access) or from Microsoft "
"Windows\n"
"(if you have it on your system)."
msgstr ""
"DrakX akan coba cari adapter SCSI PCI.\n"
"Kalau DrakX menemukan adapter SCSI dan punya drivernya, maka\n"
"drivernya akan secara otomatis diinstalkan.\n"
"\n"
"Bila Anda tidak punya adapter SCSI, SCSI ISA, atau SCSI PCI yang\n"
"DrakX nggak punya drivernya, maka DrakX akan konfirmasi lagi.\n"
"Bila memang nggak ada adapternya, klik aja 'Nggak'. Bila klik 'Ya'\n"
"maka daftar driver akan ditampilkan, dan ente silahkan pilih.\n"
"\n"
"\n"
"Kalau Anda ingin menentukan sendiri adapternya, DrakX akan \n"
"menanyakan apakah ada option lagi. Anda harus perbolehkan DrakX\n"
"mendeteksi hardwarenya. Biasanya sih bisa kalau begini.\n"
"\n"
"Kalau Anda tidak mau, Anda bisa coba kasih optionnya\n"
"Coba baca Buku Petunjuk (bab 3, bagian: \"Collective Informations on your "
"hardware\") untuk trik mendapatkan informasi\n"
"ini dari Windows (itu juga kalau Anda install yaaa),\n"
"dari dokumentasi hardware, atau dari website pabriknya\n"
"(kalau ada akses ke Internet)."

#: ../../help.pm_.c:108
msgid ""
"At this point, you need to choose where to install your\n"
"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
"existing operating system uses all the space available on it, you need to\n"
"partition it. Basically, partitioning a hard drive consists of logically\n"
"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
"Because the effects of the partitioning process are usually irreversible,\n"
"partitioning can be intimidating and stressful if you are an inexperienced "
"user.\n"
"This wizard simplifies this process. Before beginning, please consult the "
"manual\n"
"and take your time.\n"
"\n"
"\n"
"You need at least two partitions. One is for the operating system itself and "
"the\n"
"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
"If partitions have been already defined (from a previous installation or "
"from\n"
"another partitioning tool), you just need choose those to use to install "
"your\n"
"Linux system.\n"
"\n"
"\n"
"If partitions haven't been already defined, you need to create them. \n"
"To do that, use the wizard available above. Depending of your hard drive\n"
"configuration, several solutions can be available:\n"
"\n"
"\t* Use existing partition: the wizard has detected one or more existing "
"Linux partitions on your hard drive. If\n"
"\t  you want to keep them, choose this option. \n"
"\n"
"\n"
"\t* Erase entire disk: if you want delete all data and all partitions "
"present on your hard drive and replace them by\n"
"\t  your new Linux-Mandrake system, you can choose this option. Be careful "
"with this solution, you will not be\n"
"\t  able to revert your choice after confirmation.\n"
"\n"
"\n"
"\t* Use the free space on the Windows partition: if Microsoft Windows is "
"installed on your hard drive and takes\n"
"\t  all space available on it, you have to create free space for Linux data. "
"To do that you can delete your\n"
"\t  Microsoft Windows partition and data (see \"Erase entire disk\" or "
"\"Expert mode\" solutions) or resize your\n"
"\t  Microsoft Windows partition. Resizing can be performed without loss of "
"any data. This solution is\n"
"\t  recommended if you want use both Linux-Mandrake and Microsoft Windows on "
"same computer.\n"
"\n"
"\n"
"\t  Before choosing this solution, please understand that the size of your "
"Microsoft\n"
"\t  Windows partition will be smaller than at present time. It means that "
"you will have less free space under\n"
"\t  Microsoft Windows to store your data or install new software.\n"
"\n"
"\n"
"\t* Expert mode: if you want to partition manually your hard drive, you can "
"choose this option. Be careful before\n"
"\t  choosing this solution. It is powerful but it is very dangerous. You can "
"lose all your data very easily. So,\n"
"\t  don't choose this solution unless you know what you are doing."
msgstr ""
"Pada tahap ini, silakan pilih tempat di mana Linux Mandrake akan "
"diinstallkan pada hard drive Anda.\n"
"Bila hard drivenya masih kosong atau ada sistem operasi lain yang mengisi "
"seluruhnya, Anda perlu\n"
"melakukan proses partisi. Pada dasarnya, proses partisi hard drive adalah "
"membagi-bagi hard drive\n"
"secara logika untuk membuat ruangan kosong untuk diinstallkan sistem Linux "
"Mandrake.\n"
"\n"
"\n"
"Karena proses ini bersifat satu arah (tidak dapat dikembalikan ke partisi "
"semula), proses partisi dapat \n"
"membuat stress dan pusing kepala, apalagi bila Anda adalah user yang belum "
"berpengalaman.\n"
"Sekarang saya akan mempermudah proses ini. Sebelum kita mulai, silakan baca-"
"baca dulu buku\n"
"manual dan pelajari dulu dengan baik.\n"
"\n"
"\n"
"Anda membutuhkan sedikitnya dua buah partisi. Satu digunakan untuk sistem "
"operasi itu sendiri dan\n"
"satu lagi digunakan untuk virtual memory (juga dikenal dengan istilah "
"Swap).\n"
"\n"
"\n"
"Bila partisi-partisi tersebut sudah ada sebelumnya (dari hasil install "
"sebelumnya atau dibuat oleh\n"
"program partisi lain), Anda dapat memilih partisi-partisi tersebut untuk "
"digunakan sebagai tempat\n"
"menginstall sistem Linux ini.\n"
"\n"
"\n"
"Bila ternyata belum ada, Anda harus membuatnya dong. Caranya, gunakan "
"program wizard di atas\n"
"Ada beberapa cara yang dapat Anda gunakan yang bergantung pada konfigurasi "
"hard drive yang\n"
"Anda gunakan:\n"
"\n"
"\t* Gunakan partisi yang ada: wizard mendeteksi satu atau lebih partisi "
"Linux di hard drive ini. Bila\n"
"Anda ingin tetap menggunakannya, pilihlah pilihan ini.\n"
"\n"
"\n"
"\t* Hapus seluruh disk: Pilihlah ini bila Anda ingin menghapus seluruh data "
"dan partisi yang ada\n"
"di hard drive Anda untuk kemudian digantikan semuanya dengan sistem Linux "
"Mandrake. Namun\n"
"berhati-hatilah karena Anda tidak dapat mengembalikan semuanya ke dalam "
"kondisi semula.\n"
"\n"
"\n"
"\t* Gunakan ruangan kosong di partisi Windows: Pilih ini bila Anda memiliki "
"Microsoft Windows\n"
"yang juga diinstall di hard drive ini yang menggunakan seluruh kapasitas "
"drive. Caranya\n"
"Anda perlu membuat ruangan kosong untuk data Linux dengan menghapus partisi "
"dan data\n"
"Microsoft Windows (silakan baca: \"Hapus seluruh disk\" atau solusi mode "
"\"Pakar\") atau\n"
"bisa juga merubah ukuran partisi Microsoft Windowsnya. Cara ini dapat "
"digunakan tanpa harus\n"
"kehilangan data. Cara ini disarankan bila Anda ingin menggunakan Linux "
"Mandrake dan \n"
"Microsoft Windows dalam satu komputer.\n"
"\n"
"\n"
"\t* Sebelum memilih cara ini, mohon agar diketahui bahwa partisi Microsoft "
"Windows yang Anda lihat\n"
"sekarang ukurannya lebih kecil. Artinya, Anda akan memiliki ruangan yang "
"lebih kecil dalam\n"
"Microsoft Windows untuk menyimpan data atau untuk menginstall software "
"baru.\n"
"\n"
"\n"
"\t* Mode pakar: pilih ini bila Anda ingin secara manual mempartisi hard "
"drive Anda. Hati-hati\n"
"dalam memilih mode ini. Cara ini sangat powerful namun juga berbahaya. Anda "
"bisa kehilangan\n"
"data dengan mudah. Jadi jangan main-main dengan pilihan ini."

#: ../../help.pm_.c:160
msgid ""
"At this point, you need to choose what\n"
"partition(s) to use to install your new Linux-Mandrake system. If "
"partitions\n"
"have been already defined (from a previous installation of GNU/Linux or "
"from\n"
"another partitioning tool), you can use existing partitions. In other "
"cases,\n"
"hard drive partitions must be defined.\n"
"\n"
"\n"
"To create partitions, you must first select a hard drive. You can select "
"the\n"
"disk for partitioning by clicking on \"hda\" for the first IDE drive, \"hdb"
"\" for\n"
"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
"To partition the selected hard drive, you can use these options:\n"
"\n"
"   * Clear all: this option deletes all partitions available on the selected "
"hard drive.\n"
"\n"
"\n"
"   * Auto allocate: this option allows you to automatically create Ext2 and "
"swap partitions in free space of your\n"
"     hard drive.\n"
"\n"
"\n"
"   * Rescue partition table: if your partition table is damaged, you can try "
"to recover it using this option. Please\n"
"     be careful and remember that it can fail.\n"
"\n"
"\n"
"   * Undo: you can use this option to cancel your changes.\n"
"\n"
"\n"
"   * Reload: you can use this option if you wish to undo all changes and "
"load your initial partitions table\n"
"\n"
"\n"
"   * Wizard: If you wish to use a wizard to partition your hard drive, you "
"can use this option. It is recommended if\n"
"     you do not have a good knowledge in partitioning.\n"
"\n"
"\n"
"   * Restore from floppy: if you have saved your partition table on a floppy "
"during a previous installation, you can\n"
"     recover it using this option.\n"
"\n"
"\n"
"   * Save on floppy: if you wish to save your partition table on a floppy to "
"be able to recover it, you can use this\n"
"     option. It is strongly recommended to use this option\n"
"\n"
"\n"
"   * Done: when you have finished partitioning your hard drive, use this "
"option to save your changes.\n"
"\n"
"\n"
"For information, you can reach any option using the keyboard: navigate "
"trough the partitions using Tab and Up/Down arrows.\n"
"\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
"           * Ctrl-c to create a new partition (when a empty partition is "
"selected)\n"
"\n"
"           * Ctrl-d to delete a partition\n"
"\n"
"           * Ctrl-m to set the mount point\n"
"           \n"
"\n"
"           \n"
"If you are installing on a PPC Machine, you will want to create a small HFS "
"'bootstrap' partition of at least 1MB for use\n"
"by the yaboot bootloader. If you opt to make the partition a bit larger, say "
"50MB, you may find it a useful place to store \n"
"a spare kernel and ramdisk image for emergency boot situations."
msgstr ""
"Pada tahap ini, Anda harus memilih partisi mana yang hendak digunakan untuk "
"menginstall sistem Linux\n"
"Mandrake. Bila partisinya sudah dibuat (dengan menggunakan instalasi GNU/"
"Linux sebelumnya atau dengan\n"
"program partisi lain), Anda dapat menggunakan partisi-partisi tersebut, bila "
"belum Anda maka kita perlu buat\n"
"terlebih dahulu.\n"
"\n"
"\n"
"Untuk membuat partisi, pertama kali Anda perlu memilih hard drive dulu. Anda "
"kemudian dapat memilih disk\n"
"untuk dipartisi dengan mengklik \"hda\" bila hard drivenya adalah drive IDE "
"pertama, \"hdb\" bila drive itu adalah\n"
"drive IDE kedua, atau \"sda\" bila drive itu adalah drive SCSI pertama dan "
"seterusnya.\n"
"\n"
"\n"
"Untuk mempartisi hard drive, Anda bisa gunakan pilihan berikut:\n"
"\n"
"   * Hapus semua: pilihan ini menghgapus semua partisi yang ada pada hard "
"drive yang dipilih.\n"
"\n"
"\n"
"   * Alokasi otomatis: pilihan ini untuk mengkonfigurasi otomatis dalam "
"pembuatan partisi swap dan Ext2\n"
"pada ruangan kosong di hard drive.\n"
"\n"
"\n"
"   * Selamatkan tabel partisi: Bila tabel partisi Anda rusak, Anda bisa "
"mencoba mengembalikannya\n"
"dengan cara ini. Hati-hatilah dan ingat lah akan resiko kegagalan.\n"
"\n"
"\n"
"   * Nggak jadi: Anda bisa gunakan ini untuk membatalkan aksi ini\n"
"\n"
"\n"
"   * Reload: Anda bisa gunakan pilihan ini untuk membatalkan partisi dan "
"mengembalikan\n"
"tabel partisi semula.\n"
"\n"
"\n"
"   * Wizard: Bila Anda ingin menggunakan wizard untuk mempartisi hard drive, "
"pilih ini saja.\n"
"Cara ini disarankan bila Anda tidak mengetahui tentang partisi.\n"
"\n"
"\n"
"   * Restore dari Disket: Bila Anda pernah menyimpan partisi ke disket, Anda "
"bisa kembalikan\n"
"menjadi semula dengan cara ini.\n"
"\n"
"\n"
"   * Simpan ke disket: Pilih ini bila Anda hendak menyimpan tabel partisi "
"pada disket untuk\n"
"dijadikan simpanan untuk di kemudian hari. Saya sangat menyarankan Anda "
"untuk melakukan hal ini.\n"
"\n"
"\n"
"   * Selesai: pilih ini bila Anda sudah selesai mempartisi hard drive dan "
"ingin menyimpannya.\n"
"\n"
"\n"
"Sebagai informasi, Anda bisa mengakses pilihan-pilihan di atas dengan "
"menggunakan keyboard saja,\n"
"piihlah partisi dengan tombol Tab dan panah Atas/Bawah.\n"
"\n"
"\n"
"Saat partisi dipilih, Anda bisa gunakan:\n"
"\n"
"         * Ctrl C untuk membuat partisi baru pada partiisi yang masih "
"kosong\n"
"         * Ctrl D untuk menghapus partisi\n"
"         * Ctrl M untuk menset titik mount\n"
"         \n"
"\n"
"\n"
"Bila Anda menginstall pada komputer PPC, Anda perlu membuat partisi "
"bootstrap HFS kecilsebesar paling tidak 1 MB untuk\n"
"digunakan oleh bootloader yaboot. Bila Anda ingin membuat partisi itu lebih "
"besar lagi,misalnya 50 MB, Anda bisa menggunakannya untuk menyimpan\n"
"kernel cadangan dan image ramdisk untuk situasi boot darurat."

#: ../../help.pm_.c:224
msgid ""
"Above are listed the existing Linux partitions detected on\n"
"your hard drive. You can keep choices make by the wizard, they are good for "
"a\n"
"common usage. If you change these choices, you must at least define a root\n"
"partition (\"/\"). Don't choose a too little partition or you will not be "
"able\n"
"to install enough software. If you want store your data on a separate "
"partition,\n"
"you need also to choose a \"/home\" (only possible if you have more than "
"one\n"
"Linux partition available).\n"
"\n"
"\n"
"For information, each partition is listed as follows: \"Name\", \"Capacity"
"\".\n"
"\n"
"\n"
"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
"\"sd\"\n"
"if it is an SCSI hard drive.\n"
"\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
"hard drives:\n"
"\n"
"   * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
"   * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
"   * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
"   * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"\n"
"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
"\"secondary hard drive\", etc..."
msgstr ""
"Di atas telah terdaftar partisi Linux yang sudah ada yang saya deteksi pada "
"hard drive Anda. Anda dapat tetapmenggunakannya nanti. Bila Anda merubah "
"pilihan ini, Anda paling tidak perlu memberikan lokasi partisi root\n"
"(\"/\"). Jangan pilih partisi yang terlalu kecil agar bisa menginstall "
"software dengan leluasa. Bila Anda ingin\n"
"menyimpan data pada partisi lain, Anda perlu memilih partisi \"/home"
"\" (Hanya bisa dibuat bila punya lebih\n"
"dari satu partisi Linux.)\n"
"\n"
"\n"
"Sebagai Informasi, tiap-tiap partisi terdaftar dengan cara berikut: \"Nama"
"\", \"Kapasitas\".\n"
"\n"
"\n"
"\"Nama\" dituliskan dalam bentuk kode sebagai berikut: \"tipe hard drive\","
"\"nomor hard drive\",\n"
"\"nomor partisi\" (misalnya \"hda1\").\n"
"\n"
"\n"
"\"Tipe hard drive\" adalah \"hd\" bila drive tersebut bertipe IDE dan "
"bernilai \"sd\"\n"
"bila berupa drive SCSI.\n"
"\n"
"\n"
"\"Nomor Hard Drive\", selalu berupa huruf setelah \"hd\" atau \"sd\". Bila "
"berupa IDE,\n"
"maka:\n"
"\n"
"   *\"a\" berarti \"hard drive master pada kontroller IDE primer\",\n"
"\n"
"   *\"b\" berarti \"hard drive slave pada kontroler IDE primer\",\n"
"\n"
"   *\"c\" berarti \"hard drive master pada kontroler IDE sekunder\",\n"
"\n"
"   *\"d\" berarti \"hard drive slave pada kontroler IDE sekunder\",\n"
"\n"
"\n"
"Pada drive SCSI, \"a\" berarti \"hard drive utama, \"b\" berarti \"hard "
"drive kedua\", dsb..."

#: ../../help.pm_.c:258
msgid ""
"Choose the hard drive you want to erase to install your\n"
"new Linux-Mandrake partition. Be careful, all data present on it will be "
"lost\n"
"and will not be recoverable."
msgstr ""
"Pilih hard drive yang hendak dihapus untuk disediakan bagi partisi Linux "
"Mandrake.\n"
"Hati-hati, semua data di situ akan hilang dan tidak dapat dikembalikan "
"seperti semula."

#: ../../help.pm_.c:263
msgid ""
"Click on \"OK\" if you want to delete all data and\n"
"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
"you\n"
"will not be able to recover any data and partitions present on this hard "
"drive,\n"
"including any Windows data.\n"
"\n"
"\n"
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
"Pilih \"OK\" bila Anda ingin menghapus semua data dan partisi yang ada di "
"hard drive ini. Hati\n"
"hati setelah mengklik \"OK\" Anda tidak dapat mengembalikan data dan partisi "
"yang ada di drive\n"
"ini termasuk data Windows.\n"
"\n"
"\n"
"Pilih \"Batal\" untuk membatalkan aksi ini tanpa kehilangan data dan partisi "
"yang ada dalam\n"
"hard drive ini."

#: ../../help.pm_.c:273
msgid ""
"More than one Microsoft Windows partition have been\n"
"detected on your hard drive. Please choose the one you want resize to "
"install\n"
"your new Linux-Mandrake operating system.\n"
"\n"
"\n"
"For information, each partition is listed as follow; \"Linux name\", "
"\"Windows\n"
"name\" \"Capacity\".\n"
"\n"
"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive number"
"\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and \"sd"
"\"\n"
"if it is an SCSI hard drive.\n"
"\n"
"\n"
"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
"IDE hard drives:\n"
"\n"
"   * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
"   * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
"   * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
"   * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
"\"secondary hard drive\", etc.\n"
"\n"
"\n"
"\"Windows name\" is the letter of your hard drive under Windows (the first "
"disk\n"
"or partition is called \"C:\")."
msgstr ""
"Ada lebih dari satu partisi Microsoft Windows yang saya deteksi pada hard "
"drive ini. \n"
"Silakan pilih partisi yang hendak Anda rubah ukurannya untuk diinstallkan "
"sistem operasi\n"
"Linux Mandrake.\n"
"\n"
"\n"
"Sebagai Informasi, tiap-tiap partisi terdaftar dengan cara berikut: \"Nama "
"di Linux\",\"Nama di Windows\", \"Kapasitas\".\n"
"\n"
"\n"
"\"Nama di Linux\" dituliskan dalam bentuk kode sebagai berikut: \"tipe hard "
"drive\",\"nomor hard drive\",\n"
"\"nomor partisi\" (misalnya \"hda1\").\n"
"\n"
"\n"
"\"Tipe hard drive\" adalah \"hd\" bila drive tersebut bertipe IDE dan "
"bernilai \"sd\"\n"
"bila berupa drive SCSI.\n"
"\n"
"\n"
"\"Nomor Hard Drive\", selalu berupa huruf setelah \"hd\" atau \"sd\". Bila "
"berupa IDE,\n"
"maka:\n"
"\n"
"   *\"a\" berarti \"hard drive master pada kontroller IDE primer\",\n"
"\n"
"   *\"b\" berarti \"hard drive slave pada kontroler IDE primer\",\n"
"\n"
"   *\"c\" berarti \"hard drive master pada kontroler IDE sekunder\",\n"
"\n"
"   *\"d\" berarti \"hard drive slave pada kontroler IDE sekunder\",\n"
"\n"
"\n"
"Pada drive SCSI, \"a\" berarti \"hard drive utama, \"b\" berarti \"hard "
"drive kedua\", dsb...\n"
"\n"
"\n"
"\"Nama pada WIndows\" adalah huruf hard drive Anda pada WIndows (disk "
"pertamapada partisi disebut \"C:\")."

#: ../../help.pm_.c:306
msgid "Please be patient. This operation can take several minutes."
msgstr "Mohon sabar sebentar yaa... Proses ini akan makan waktu beberapa menit"

#: ../../help.pm_.c:309
msgid ""
"Any partitions that have been newly defined must be\n"
"formatted for use (formatting meaning creating a filesystem).\n"
"\n"
"\n"
"At this time, you may wish to reformat some already existing partitions to "
"erase\n"
"the data they contain. If you wish do that, please also select the "
"partitions\n"
"you want to format.\n"
"\n"
"\n"
"Please note that it is not necessary to reformat all pre-existing "
"partitions.\n"
"You must reformat the partitions containing the operating system (such as \"/"
"\",\n"
"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
"data\n"
"that you wish to keep (typically /home).\n"
"\n"
"\n"
"Please be careful selecting partitions, after formatting, all data will be\n"
"deleted and you will not be able to recover any of them.\n"
"\n"
"\n"
"Click on \"OK\" when you are ready to format partitions.\n"
"\n"
"\n"
"Click on \"Cancel\" if you want to choose other partitions to install your "
"new\n"
"Linux-Mandrake operating system."
msgstr ""
"Tiap-tiap partisi yang telah dibuat perlu diformat agar dapat digunakan "
"(format berarti membuat\n"
"filesystem).\n"
"\n"
"\n"
"Saat ini, Anda bisa melakukan format ulang pada partisi yang sudah ada untuk "
"menghapus datanya.\n"
"BIla ini hendak Anda lakukan, pilih dulu partisi yang hendak diformat.\n"
"\n"
"\n"
"Perhatikan bahwa Anda tidak perlu melakukan format ulang ini pada semua "
"partisi yang sudah ada.\n"
"Namun Anda perlu melakukan format ulang pada partisi yang akan diisi sistem "
"operasi (misalnya pada\n"
"partisi \"/\", \"./usr\", atau \"/var\"), tapi Anda tidak perlu melakukan "
"format ulang pada partisi  yang\n"
"berisi data yang hendak masih digunakan (misalnya \"/home\").\n"
"\n"
"\n"
"Mohon hati-hati dalam meilih partisi karena setelah diformat, semua data "
"akan hilang dan tidak\n"
"dapat dikembalikan ke kondisi semula.\n"
"\n"
"\n"
"Silakan pilih \"OK\" untuk melakukan format partisi\n"
"\n"
"\n"
"Silakan pilih \"Batal\" untuk memilih partisi lain untuk diinstallkan Linux "
"Mandrake."

#: ../../help.pm_.c:335
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
"it will warn you about it. If you want to go on anyway, it will proceed onto "
"the\n"
"installation of all selected groups but will drop some packages of lesser\n"
"interest. At the bottom of the list you can select the option \n"
"\"Individual package selection\"; in this case you will have to browse "
"through\n"
"more than 1000 packages..."
msgstr ""
"Sekarang kamu pilih dulu grup paket yang mau kamu install\n"
"atau yang mau diupgrade.\n"
"\n"
"DrakX sekarang akan cek apakah kamu masih punya sisa space kosong untuk\n"
"menginstall ini semua, kalau nggak nanti kamu akan diberitahu kok.\n"
"Tapi kalau kamu mau cuek aja mau install walaupun spacenya nggak cukup\n"
"gua akan menginstall semua paketnya, tapi ada beberapa paket yang aku rasa\n"
"kurang penting akan nggak diinstall. Pada daftar di bawah ini kamu bisa\n"
"pilih \"Pilih paket sendiri\"; kalau-kalau kamu pingin melihat \n"
"paket-paket yang ada (ada 1000an lebih lho...)"

#: ../../help.pm_.c:347
msgid ""
"You can now choose individually all the packages you\n"
"wish to install.\n"
"\n"
"\n"
"You can expand or collapse the tree by clicking on options in the left "
"corner of\n"
"the packages window.\n"
"\n"
"\n"
"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
"\"Toggle flat and group sorted\".\n"
"\n"
"\n"
"If you want not to be warned on dependencies, click on \"Automatic\n"
"dependencies\". If you do this, note that unselecting one package may "
"silently\n"
"unselect several other packages which depend on it."
msgstr ""
"Anda dapat memilih tiap-tiap paket yang hendak Anda install\n"
"\n"
"\n"
"Anda dapat membuka atau menutup tree dengan mengklik pada pilihan di sudut "
"kiri pada\n"
"windows paket\n"
"\n"
"\n"
"Bila Anda hendak melihat daftar paket yang diurut secara alfabet, pilih ikon "
"\"Togel flat dan urut grup\".\n"
"\n"
"\n"
"Bila Anda tidak hendak diberitahu tentang dependensi paket, pilih "
"\"Dependensi otomatis\"\n"
"Dengan cara ini bila Anda membuang suatu paket, maka paket-paket terkait "
"lainnya akan dibuang\n"
"juga secara otomatis tanpa pemberitahuan."

#: ../../help.pm_.c:364
msgid ""
"If you have all the CDs in the list above, click Ok. If you have\n"
"none of those CDs, click Cancel. If only some CDs are missing, unselect "
"them,\n"
"then click Ok."
msgstr ""
"Kalau kamu punya semua CD pada daftar di atas, tekan OK.\n"
"Kalau nggak punya sama sekali, click Baal.\n"
"Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."

#: ../../help.pm_.c:369
msgid ""
"Your new Linux-Mandrake operating system is currently being\n"
"installed. This operation should take a few minutes (it depends on size you\n"
"choose to install and the speed of your computer).\n"
"\n"
"\n"
"Please be patient."
msgstr ""
"Sistem operasi Linux Mandrake Anda yang baru sedang saya installkan.\n"
"Proses ini akan memakan waktu beberapa menit (bergantung pada ukuran yang "
"Anda install\n"
"dan kecepatan komputer Anda.)\n"
"\n"
"\n"
"Sabar ya..."

#: ../../help.pm_.c:377
msgid ""
"You can now test your mouse. Use buttons and wheel to verify\n"
"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
"driver."
msgstr ""
"Sekarang Anda bisa test mousenya. Tekan tombol mousenya dan gerakan mousenya "
"juga\n"
"untuk mencoba apakah sudah bisa atau belum. Bila belum, silahkan pilih "
"\"Batal\" untuk kembali\n"
"memilih driver yang lain."

#: ../../help.pm_.c:382
msgid ""
"Please select the correct port. For example, the COM1\n"
"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
"Pilih port yang betul. Misalnya COM1 di Windows sama dengan ttyS0 di \n"
"GNU/Linux."

#: ../../help.pm_.c:386
msgid ""
"If you wish to connect your computer to the Internet or\n"
"to a local network please choose the correct option. Please turn on your "
"device\n"
"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
"If you do not have any connection to the Internet or a local network, "
"choose\n"
"\"Disable networking\".\n"
"\n"
"\n"
"If you wish to configure the network later after installation or if you "
"have\n"
"finished to configure your network connection, choose \"Done\"."
msgstr ""
"Bila Anda hendak menghubungkan komputer ini ke Internet atau ke jaringan\n"
"lokal, silakan pilih konfigurasi yang benar. Nyalakan perangkat terkait "
"sebelum\n"
"memilih konfigurasi agar dapat dideteksi oleh DrakX secara otomatis.\n"
"\n"
"\n"
"BIla anda tidak memiliki koneksi ke Internet atau jaringan lokal, pilih "
"saja\n"
"\"Matikan Jaringan\".\n"
"\n"
"\n"
"Bila Anda hendak mengkonfigurasikan jaringan nanti setelah proses instalasi "
"selesai,atau bila Anda sudah selesai mengkonfigurasikan koneksi jaringan, "
"pilih \"Selesai\"."

#: ../../help.pm_.c:399
msgid ""
"No modem has been detected. Please select the serial port on which it is "
"plugged.\n"
"\n"
"\n"
"For information, the first serial port (called \"COM1\" under Microsoft\n"
"Windows) is called \"ttyS0\" under Linux."
msgstr ""
"Saya tidak dapat menemukan modem di komputer ini. Silakan pilih port serial "
"mana\n"
"modem Anda dicolokkan.\n"
"\n"
"\n"
"sebagai misal, port serial pertama (pada Microsoft Windows dikenal dengan "
"\"COM1\")\n"
"adalah \"ttyS0\" di GNU/Linux."

#: ../../help.pm_.c:406
msgid ""
"You may now enter dialup options. If you don't know\n"
"or are not sure what to enter, the correct informations can be obtained "
"from\n"
"your Internet Service Provider. If you do not enter the DNS (name server)\n"
"information here, this information will be obtained from your Internet "
"Service\n"
"Provider at connection time."
msgstr ""
"Sekarang Anda bisa memasukan pilihan dialup. Bila Anda tidak tahu\n"
"atau ragu-ragu, informasi yang benar bisa Anda tanyakan kepada\n"
"Internet Service Provider tempat Anda berlangganan. Bila Anda tidak\n"
"memasukan DNS (name server) di sini, informasi tersebut akan\n"
"saya cari sendiri pada Internet Service Provider Anda saat melakukan koneksi "
"nanti."

#: ../../help.pm_.c:413
msgid ""
"If your modem is an external modem, please turn on it now to let DrakX "
"detect it automatically."
msgstr ""
"Bila modem yang Anda punya adalah modem eksternal, maka tolong dong "
"dinyalakan supaya DrakXbisa mendeteksinya secara otomatis."

#: ../../help.pm_.c:416
msgid "Please turn on your modem and choose the correct one."
msgstr "Silakan nyalakan modemnya dan pilih mana modem yang Anda punya"

#: ../../help.pm_.c:419
msgid ""
"If you are not sure if informations above are\n"
"correct or if you don't know or are not sure what to enter, the correct\n"
"informations can be obtained from your Internet Service Provider. If you do "
"not\n"
"enter the DNS (name server) information here, this information will be "
"obtained\n"
"from your Internet Service Provider at connection time."
msgstr ""
"Bila Anda tidak yakin dengan informasi di atas apakah benar atau tidak\n"
"atau bahkan bila Anda sangat tidak tahu atau ragu mau isi apa, tenang saja\n"
"informasi di atas bisa Anda tanyakan kepada Internet Service Provider Anda.\n"
"Bila Anda tidak mengisi DNS (name server) di sini, nanti akan saya cari "
"sendiri\n"
"dari Internet Service Provider saat melakukan koneksi ke Internet."

#: ../../help.pm_.c:426
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, the correct informations can be\n"
"obtained from your Internet Service Provider."
msgstr ""
"Anda bisa masukkan nama host Anda sekarang. Bila Anda nggak yakin apa yang "
"harus dimasukkan,\n"
"informasi ini bisa diperoleh dari ISP."

#: ../../help.pm_.c:431
msgid ""
"You may now configure your network device.\n"
"\n"
"   * IP address: if you don't know or are not sure what to enter, ask your "
"network administrator.\n"
"     You should not enter an IP address if you select the option \"Automatic "
"IP\" below.\n"
"\n"
"   * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
"know or are not sure what to enter,\n"
"     ask your network administrator.\n"
"\n"
"   * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
"option. If selected, no value is needed in\n"
"    \"IP address\". If you don't know or are not sure if you need to select "
"this option, ask your network administrator."
msgstr ""
"Silakan konfigurasikan device jaringan Anda:\n"
"\n"
"  * Alamat IP: Kalau Anda nggak tahu, tanyakan sana pada network "
"administratornya.\n"
"     Jangan masukkan alamat IP kalau Anda pilih \"IP Otomatis\" di bawah.\n"
"\n"
"\n"
"  - Netmask: Pilih aja \"255.255.255.0\", kecuali kalau ragu tanya juga ke\n"
" network administratornya.\n"
"\n"
"\n"
"  - IP otomatis: Bila network Anda menggunakan bootp atau protokol dhcp, "
"pilih\n"
" ini. Bila Anda pilih ini, nggak usah masukkan alamat IP di \"Alamat IP\". "
"Bila\n"
" Anda ragu juga, tanya lagi ke network administrator."

#: ../../help.pm_.c:443
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, ask your network administrator."
msgstr ""
"Anda sekarang bisa memasukan nama host. Bila Anda tidak tahu atau ragu\n"
"silakan kontak network administrator Anda saja."

#: ../../help.pm_.c:447
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, leave blank."
msgstr ""
"Sekarang Anda boleh memasukan nama host. Bila tidak tahu\n"
"atau tidak pasti, kosongkan saja deh."

#: ../../help.pm_.c:451
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
"Anda bisa masukkan dialup sekarang. Bila Anda nggak yakin apa yang harus "
"dimasukkan,\n"
"informasi ini bisa diperoleh dari ISP."

#: ../../help.pm_.c:455
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
"Bila Anda mau pakai proxy, sekarang saatnya untuk mengkonfigurasi. Bila "
"Anda\n"
"nggak tahu pakai proxy apa nggak, tanya gih ke network administratornya atau "
"ISP."

#: ../../help.pm_.c:459
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
"Anda bisa install paket kriptografi bila koneksi Internet Anda telah\n"
"dikonfig dengan benar. Sekarang pilih mirror tempat Anda ingin download\n"
"paket kriptografinya dan kemudian pilih paketnya.\n"
"\n"
"Perhatikan bahwa Anda harus pilih mirror dan kriptografi sesuai ketentuan\n"
"yang berlaku di daerah Anda."

#: ../../help.pm_.c:468
msgid "You can now select your timezone according to where you live."
msgstr "Sekarang pilih zonawaktu tempat Anda tinggal"

#: ../../help.pm_.c:471
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage\n"
"Time) and translates it in local time according to the time zone you have\n"
"selected.\n"
"\n"
"\n"
"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"GNU/Linux mengatur jam dengan GMT atawa \"Greenwich Mean Time\" dan \n"
"menterjemahkannya ke waktu lokal sesuai dengan timezone yang Anda pilih.\n"
"\n"
"\n"
"Bila Anda punya Microsoft Windows di komputer ini, pilih \"Tidak\""

#: ../../help.pm_.c:479
msgid ""
"You may now choose which services you want to start at boot time.\n"
"\n"
"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
"\n"
"Be very careful in this step if you intend to use your machine as a server: "
"you\n"
"will probably want not to start any services that you don't need. Please\n"
"remember that several services can be dangerous if they are enable on a "
"server.\n"
"In general, select only the services that you really need."
msgstr ""
"Kamu boleh pilih service mana aja yang mau dijalankan saat boot.\n"
"Kamu bisa lihat keterangan servicenya pada baloon help kecil yang akan "
"muncul\n"
"kalau kamu geserkan mousenya ke atas nama servicenya.\n"
"\n"
"Hati-hati pilihnya ya, apalagi kalau mau pakai sistem ini sebagai server\n"
"jangan sembarang nyalakan service yang nggak perlu. Mohon diingat\n"
"bahwa ada service yang berbahaya bila dinyalakan pada server\n"
"Pokoknya, pilih saja service yang Anda anggap penting."

#: ../../help.pm_.c:492
msgid ""
"You can configure a local printer (connected to your computer) or remote\n"
"printer (accessible via a Unix, Netware or Microsoft Windows network)."
msgstr ""
"Sekarang Anda bisa mengkonfigurasikan printer lokal (terhubung ke komputer "
"Anda) atau\n"
"printer remote (yang diakses via jaringan Unix, Netware, atau Microsoft "
"Windows)."

#: ../../help.pm_.c:496
msgid ""
"If you wish to be able to print, please choose one printing system between\n"
"CUPS and LPR.\n"
"\n"
"\n"
"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
"means \"Common Unix Printing System\"). It is the default printing system "
"in\n"
"Linux-Mandrake.\n"
"\n"
"\n"
"LPR is the old printing system used in previous Linux-Mandrake "
"distributions.\n"
"\n"
"\n"
"If you don't have printer, click on \"None\"."
msgstr ""
"Bila Anda hendak mencetak dari sistem ini, silakan pilih sistem pencetakan "
"antara CUPS dan LPR\n"
"\n"
"\n"
"CUPS adalah sistem cetak yang baru dan powerfull di Unix (CUPS adalah "
"singkatan dari\n"
"\"Common Unix Printing System\"). Sistem ini adalah sistem pencetakan "
"default di Linux Mandrake.\n"
"\n"
"\n"
"LPR adalah sistem cetak kuno yang masih digunakan pada versi-versi lama "
"Linux Mandrake.\n"
"\n"
"\n"
"Bila Anda tidak memiliki printer, pilih \"Tidak Ada\""

#: ../../help.pm_.c:511
msgid ""
"GNU/Linux can deal with many types of printer. Each of these types requires\n"
"a different setup.\n"
"\n"
"\n"
"If your printer is physically connected to your computer, select \"Local\n"
"printer\".\n"
"\n"
"\n"
"If you want to access a printer located on a remote Unix machine, select\n"
"\"Remote printer\".\n"
"\n"
"\n"
"If you want to access a printer located on a remote Microsoft Windows "
"machine\n"
"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
"GNU/Linux dapat menggunakan berbagai jenis printer. Tiap-tiap tipe "
"memerlukan setup\n"
"yang berbeda\n"
"\n"
"\n"
"Bila printer tersambung secara fisik dalam komputer ini, pilih\n"
"\"Printer Lokal\". \n"
"\n"
"Bila Anda menggunakan printer Unix jarak jauh, pilih\n"
"\"Printer remote\".\n"
"\n"
"\n"
"Bila Anda hendak menggunakan printer pada mesin Microsoft Windows (atau\n"
"pada mesin Unix dengan SMB), maka pilih \"SMB/WIndows 95/98/NT\"."

#: ../../help.pm_.c:527
msgid ""
"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
"You have to enter some informations here.\n"
"\n"
"\n"
"   * Name of printer: the print spooler uses \"lp\" as default printer name. "
"So, you must have a printer named \"lp\".\n"
"     If you have only one printer, you can use several names for it. You "
"just need to separate them by a pipe\n"
"     character (a \"|\"). So, if you prefer a more meaningful name, you have "
"to put it first, eg: \"My printer|lp\".\n"
"     The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"\n"
"   * Description: this is optional but can be useful if several printers are "
"connected to your computer or if you allow\n"
"     other computers to access to this printer.\n"
"\n"
"\n"
"   * Location: if you want to put some information on your\n"
"     printer location, put it here (you are free to write what\n"
"     you want, for example \"2nd floor\").\n"
msgstr ""
"Silakan nyalakan printer sebelum DrakX mendeteksinya.\n"
"\n"
"Anda perlu mengisi beberapa informasi di sini.\n"
"\n"
"\n"
"   * Nama printer: spooler cetak menggunakan nama \"lp\" sebagai nama "
"printer default\n"
"Jadi Anda pelru punya sebuah printer dengan nama \"lp\". Bila Anda memiliki "
"cuma \n"
"satu buah printer saja, Anda bisa menggunakan beberapa nama. Tuliskan saja "
"nama\n"
"itu dan pisahkan dengan karakter pipe \"|\". Jadi untuk memberi nama printer "
"dengan\n"
"nama yang mudah dimengerti, Anda bisa tuliskan: \"Printer saya|lp\".\n"
"   Printer yang memiliki \"lp\" pada namanya akan menjadi printer default.\n"
"\n"
"\n"
"   * Deskripsi: ini boleh diisi boleh tidak, tapi bila diisi akan lebih "
"memudahkan Anda\n"
"untuk membedakan antara printer bila Anda memiliki printer lebih dari satu "
"buah atau bila\n"
"printer ini akan diakses oleh banyak orang.\n"
"\n"
"\n"
"   * Lokasi: Anda bisa menuliskan informasi lebih detil tentang lokasi "
"printer ini.\n"
"(misalnya \"Printer yang ada di lantai 2\").\n"

#: ../../help.pm_.c:548
msgid ""
"You need to enter some informations here.\n"
"\n"
"\n"
"   * Name of queue: the print spooler uses \"lp\" as default printer name. "
"So, you need have a printer named \"lp\".\n"
"    If you have only one printer, you can use several names for it. You just "
"need to separate them by a pipe\n"
"    character (a \"|\"). So, if you prefer to have a more meaningful name, "
"you have to put it first, eg: \"My printer|lp\".\n"
"    The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"  \n"
"   * Spool directory: it is in this directory that printing jobs are stored. "
"Keep the default choice\n"
"     if you don't know what to use\n"
"\n"
"\n"
"   * Printer Connection: If your printer is physically connected to your "
"computer, select \"Local printer\".\n"
"     If you want to access a printer located on a remote Unix machine, "
"select \"Remote lpd printer\".\n"
"\n"
"\n"
"     If you want to access a printer located on a remote Microsoft Windows "
"machine (or on Unix machine using SMB\n"
"     protocol), select \"SMB/Windows 95/98/NT\".\n"
"\n"
"\n"
"     If you want to acces a printer located on NetWare network, select "
"\"NetWare\".\n"
msgstr ""
"Anda perlu memasukkan beberapa informasi di sini.\n"
"\n"
"\n"
"   * Nama antrian: spooler cetak menggunakan nama \"lp\" sebagai nama "
"printer default\n"
"Jadi Anda pelru punya sebuah printer dengan nama \"lp\". Bila Anda memiliki "
"cuma \n"
"satu buah printer saja, Anda bisa menggunakan beberapa nama. Tuliskan saja "
"nama\n"
"itu dan pisahkan dengan karakter pipe \"|\". Jadi untuk memberi nama printer "
"dengan\n"
"nama yang mudah dimengerti, Anda bisa tuliskan: \"Printer saya|lp\".\n"
"   Printer yang memiliki \"lp\" pada namanya akan menjadi printer default.\n"
"\n"
"\n"
"   * Direktori Spool: Dalam direktori ini semua job printer akan disimpan. "
"BIla Anda tidak\n"
"mengerti biarkan saja terisi dalam nilai defaultnya.\n"
"\n"
"\n"
"   * Koneksi Printer: Bila printer tersambung secara fisik dalam komputer "
"ini, pilih\n"
"\"Printer Lokal\". Namun bila Anda menggunakan printer Unix jarak jauh, "
"pilih\n"
"\"Printer lpd remote\".\n"
"\n"
"\n"
"   Bila Anda hendak menggunakan printer pada mesin Microsoft Windows (atau\n"
"pada mesin Unix dengan SMB), maka pilih \"SMB/WIndows 95/98/NT\".\n"
"\n"
"\n"
"   Bila Anda hendak mengakses printer pada jaringan Netware, pilih \"Netware"
"\".\n"

#: ../../help.pm_.c:573
msgid ""
"Your printer has not been detected. Please enter the name of the device on\n"
"which it is connected.\n"
"\n"
"\n"
"For information, most printers are connected on the first parallel port. "
"This\n"
"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
"Windows."
msgstr ""
"Printer Anda tidak dapat dideteksi. Silakan tuliskan nama device atau di "
"mana printer Anda\n"
"tersambung.\n"
"\n"
"\n"
"Sebagai contoh, printer yang disambung ke port parallel pertma komputer "
"disebut\n"
"\"/dev/lp0\" pada GNU/Linux, dan disebut \"LPT1\" pada Microsoft Windows."

#: ../../help.pm_.c:581
msgid "You must now select your printer in the above list."
msgstr "Anda harus pilih printer yang Anda punya pada daftar di atas."

#: ../../help.pm_.c:584
msgid ""
"Please select the right options according to your printer.\n"
"Please see its documentation if you don't know what choose here.\n"
"\n"
"\n"
"You will be able to test your configuration in next step and you will be "
"able to modify it if it doesn't work as you want."
msgstr ""
"Silakan pilih konfigurasi yang tepat bergantung tipe printer yang Anda "
"punya.\n"
"Silakan baca dokumentasinya bila Anda tidak tahu harus pilih apa di sini.\n"
"\n"
"\n"
"Anda akan dapat melakukan test pada konfigurasi ini nanti dan bisa juga\n"
"merubah konfigurasi ini bila tidak berjalan sebagaimana mestinya."

#: ../../help.pm_.c:591
msgid ""
"You can now enter the root password for your Linux-Mandrake system.\n"
"The password must be entered twice to verify that both password entries are "
"identical.\n"
"\n"
"\n"
"Root is the system's administrator and is the only user allowed to modify "
"the\n"
"system configuration. Therefore, choose this password carefully. \n"
"Unauthorized use of the root account can be extemely dangerous to the "
"integrity\n"
"of the system, its data and other system connected to it.\n"
"\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
"characters long. It should never be written down.\n"
"\n"
"\n"
"Do not make the password too long or complicated, though: you must be able "
"to\n"
"remember it without too much effort."
msgstr ""
"Sekarang Anda mesti berikan password untuk root untuk\n"
"sistem Linux-Mandrake ini. Passwordnya harus diketikkan dua kali untuk\n"
"verifikasi bahwa Anda tidak salah ketik.\n"
"\n"
"\n"
"Root adalah sistem administrator. Hanya orang yang punya akses ke\n"
"acount administrator saja yang dapat mengatur dan mengelola sistem.\n"
"Awas, account administrator yang disalah gunakan atau dipakai\n"
"tanpa izin akan sangat membahayakan integritas sistem, data,\n"
"dan sistem lain yang terhubung. \n"
"\n"
"\n"
"Password haruslah campuran dari\n"
"karakter alfanumerik dan panjangnya minimal 8 karakter. Jangan\n"
"pernah menuliskan password Anda di kertas atau dimana saja. \n"
"\n"
"Jangan\n"
"buat password Anda terlalu panjang atau rumit, ntar bisa lupa."

#: ../../help.pm_.c:609
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
"Agar sistem Anda lebih secure, silahkan pilih \"Gunakan file shadow\" dan \n"
"\"Password Pakai MD5\"."

#: ../../help.pm_.c:613
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
"Bila network Anda menggunakan NIS, pilih \"Gunakan NIS\". Kalau nggak tahu, "
"tanya\n"
"network admin Anda dong."

#: ../../help.pm_.c:617
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
"one or more account(s) for each person you want to allow to use\n"
"the computer. Note that each user account will have its own\n"
"preferences (graphical environment, program settings, etc.)\n"
"and its own \"home directory\", in which these preferences are\n"
"stored.\n"
"\n"
"\n"
"First of all, create an account for yourself! Even if you will be the only "
"user\n"
"of the machine, you may NOT connect as root for daily use of the system: "
"it's a\n"
"very high security risk. Making the system unusable is very often a typo "
"away.\n"
"\n"
"\n"
"Therefore, you should connect to the system using the user account\n"
"you will have created here, and login as root only for administration\n"
"and maintenance purposes."
msgstr ""
"Silahkan Anda buat satu atau lebih user \"biasa\", setelah Anda\n"
"membuat user \"pihak berwenang\", yaitu root. Anda bisa buat\n"
"user untuk tiap orang yang Anda perbolehkan untuk mengakses komputer\n"
"ini. Perhatikan bahwa tiap account user akan memiliki preferesi\n"
"sendiri-sendiri (environment grafis, seting program dsb)\n"
"dan juga punya \"direktori home\" sendiri, tempat preferensi tadi\n"
"disimpan\n"
"\n"
"\n"
"Pertama-tama, buatlah account untuk Anda sendiri! Buatlah walau Anda\n"
"adalah satu-satunya orang yang mengakses mesin ini. Anda nanti tidak\n"
"BOLEH mengakses mesin ini untuk keperluan sehari-hari, karena merupakan\n"
"resiko besar bila Anda sering login sebagai root. Biasanya ini disebabkan\n"
"karena salah ketik, dsb.\n"
"\n"
"\n"
"Karena itu, biasakan untuk konek ke msein ini dengan menggunakan account\n"
"yang telah Anda buat disini, dan login sebagai root, hanya untuk \n"
"keperluan administratif dan maintenance saja yah."

#: ../../help.pm_.c:636
msgid ""
"Creating a boot disk is strongly recommended. If you can't\n"
"boot your computer, it's the only way to rescue your system without\n"
"reinstalling it."
msgstr ""
"Saya sangat menyarankan Anda untuk membuat boot disk. Bila Anda tidak\n"
"dapat memboot komputer Anda, boot disk adalah satu-satunya cara untuk "
"menyelamatkan sistem\n"
"tanpa menginstall ulang."

#: ../../help.pm_.c:641
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
"Sekarang saya ingin tanya kepada Anda\n"
"tempat saya bisa meletakkan informasi yang akan dipakai GNU/Linux saat "
"boot.\n"
"\n"
"\n"
"Kalau Anda kurang tahu, yah pilih saja \"Sektor pertama di \n"
"drive (MBR)\"."

#: ../../help.pm_.c:649
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
"Biasanya orang pilih \"/dev/hda\", kecuali kalau Anda pilih yang lain (yaitu "
"drive master IDE) atau \"/dev/sda\" (disk SCSI utama)."

#: ../../help.pm_.c:653
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
"\n"
"\n"
"You may also want not to give access to these other operating systems to\n"
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"LILO (LInux LOader) dan Grub adalah bootloader. Dua-duanya akan memboot\n"
"GNU/Linux atau sistem operasi lain yang ada di komputer ini.\n"
"Biasanya, sistem operasi yang sudah ada akan secara normal di deteksi dan\n"
"diinstallkan. Bila ternyata nanti nggak bisa, Anda bisa tambahkan sendiri\n"
"secara manual di sini. Hati-hati yah nanti waktu kasih parameternya.\n"
"\n"
"\n"
"Kamu juga bisa menutup akses ke sistem operasi tertentu. Caranya gampang "
"aja\n"
"kamu bisa hapus entrinya disini. Tapi untuk bisa masuk ke sistem operasi "
"itu\n"
"kamu perlu bootdisk nantinya."

#: ../../help.pm_.c:665
msgid ""
"LILO and grub main options are:\n"
"  - Boot device: Sets the name of the device (e.g. a hard disk\n"
"partition) that contains the boot sector. Unless you know specifically\n"
"otherwise, choose \"/dev/hda\".\n"
"\n"
"\n"
"  - Delay before booting default image: Specifies the number in tenths\n"
"of a second the boot loader should wait before booting the first image.\n"
"This is useful on systems that immediately boot from the hard disk after\n"
"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
"omitted or is set to zero.\n"
"\n"
"\n"
"  - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
"\n"
"    * normal: select normal 80x25 text mode.\n"
"\n"
"    * <number>:  use the corresponding text mode.\n"
"\n"
"\n"
"  - Clean \"/tmp\" at each boot: if you want delete all files and "
"directories\n"
"stored in \"/tmp\" when you boot your system, select this option.\n"
"\n"
"\n"
"  - Precise RAM if needed: unfortunately, there is no standard method to ask "
"the\n"
"BIOS about the amount of RAM present in your computer. As consequence, Linux "
"may\n"
"fail to detect your amount of RAM correctly. If this is the case, you can\n"
"specify the correct amount or RAM here. Please note that a difference of 2 "
"or 4\n"
"MB between detected memory and memory present in your system is normal."
msgstr ""
"Pilihan LILO dan grub adalah:\n"
"  - Boot device: Set nama devicenya (misalnya hard disk partisi) yang berisi "
"boot sector\n"
"                 pilih \"/dev/hda\", kecuali kalau Anda tahu yang pastinya.\n"
"\n"
"\n"
"  - Delay sebelum boot ke image default: Menentukan waktu dalam sepersepuluh "
"detik\n"
" sebelum boot loader akan meload image yang default (pertama). Ini berguna\n"
" pada sistem yang boot dari hard disk dan keyboardnya dinyalakan. Boot "
"loader\n"
" tidak menunggu bila \"delay\" dihilangkan atau diset ke nol.\n"
"\n"
"\n"
" - Video mode: Menentukan mode text VGA yang dipilih saat booting. \n"
" Setting yang bisa dipakai: \n"
"  * normal: pilih mode text 80x25\n"
"  * <angka>: gunakan mode text.\n"
"\n"
"\n"
"   - Hapus \"/tmp\" saat boot bila Anda ingin menghapus semua file-file di "
"dalam direktori\n"
"\"/tmp\" saat boot sistem dimulai.\n"
"\n"
"\n"
"   - Ukuran RAM yang tepat. Duh, ngga ada metode standar untuk mendapatkan \n"
"angka jumlah RAM yang tepat di komputer tertentu. Jadi, Linux mungkin akan\n"
"salah mendeteksi jumlah RAM yang Anda punya sekarang. Bila benar, saya "
"salah\n"
"tebak angka RAMnya di sini, silakan masukkan angka yang benar. Oh ya,\n"
"beda 2 atau 4 MB sih ngga masalah loh."

#: ../../help.pm_.c:697
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able\n"
"to boot either GNU/Linux, MacOS, or MacOSX, if present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
"\n"
"\n"
"Yaboot main options are:\n"
"\n"
"\n"
"  - Init Message: A simple text message that is displayed before the boot\n"
"prompt.\n"
"\n"
"\n"
"  - Boot Device: Indicate where you want to place the information required "
"to \n"
"boot to GNU/Linux. Generally, you will have setup a bootstrap partition "
"earlier \n"
"to hold this information.\n"
"\n"
"\n"
"  - Open Firmware Delay: Unlike LILO, there are two delays available with \n"
"yaboot.  The first delay is measured in seconds and at this point you can \n"
"choose between CD, OF boot, MacOS, or Linux.\n"
"\n"
"\n"
"  - Kernel Boot Timeout: This timeout is similar to the LILO boot delay.  "
"After \n"
"selecting Linux, you will have this delay in 0.1 seconds before your "
"default\n"
"kernel description is selected.\n"
"\n"
"\n"
"  - Enable CD Boot?: Checking this option will allow you to choose 'C' for "
"CD at\n"
"the first boot prompt.\n"
"\n"
"\n"
"  - Enable OF Boot?: Checking this option will allow you to choose 'N' for "
"Open\n"
"Firmware at the first boot prompt.\n"
"\n"
"\n"
"  - Default OS: You can select which OS will boot by default when the Open "
"Firmware \n"
"Delay expires."
msgstr ""
"Yaboot adalah bootloader untuk hardware Macintosh NewWorld. Yaboot\n"
"dapat memboot GNU/Linux, MacOS, atau MacOSX bila ada di dalam komputer ini.\n"
"Biasanya yaboot dapat mendeteksi keberadaan sistem operasi tersebut di dalam "
"komputer\n"
"dengan tepat dan langsung menginstallnya. Bila ternyata hal ini tidak "
"berlaku di komputer Anda\n"
"silakan tambahkan saja entri sistem operasi yang Anda miliki itu secara "
"manual pada layar ini.\n"
"Mohon hati-hati dalam menambahkan parameter-parameter dengan benar.\n"
"\n"
"\n"
"Pilihan utama Yaboot adalah:\n"
"\n"
"\n"
"  - Pesan Init: pesan teks yang akan ditampilkan sebelum boot prompt.\n"
"\n"
"\n"
" - Device boot: Ini adalah tempat Anda hendak memboot GNU/LInux Anda. "
"Biasanya Anda sudahmemilki\n"
"partisi bootstrap yang sudah disiapkan untuk keperluan ini.\n"
"\n"
"\n"
" - Delay Open Firmware: Tidak seperti LILO, ada dua macam delay yang "
"tersedia untuk yaboot.\n"
"delay pertama diukur dalam detik dan di sini Anda bissa memilih CD, boot OF, "
"MacOS, atau Linux\n"
"\n"
"\n"
" - Timeout boot kernel: Timeout ini mirip dengan delay boot pada LILO.\n"
"Setelah memilih Linux, Anda akan disuguhkan pada delay ini yang diukur dalam "
"0.1 detik sebelum\n"
"kernel default akan dipilih secara otomatis.\n"
"\n"
"\n"
" - Aktifkan boot CD?: Bila Anda memilih ini, Anda akan diperkenankan untuk "
"memilih 'C' (singkatan dari CD)\n"
"saat prompt boot pertama.\n"
"\n"
"\n"
" - Aktifkan boot OF?: Bila Anda memilih ini, Anda bisa memilih 'N' untuk "
"memilih Open Firmware saat \n"
"boot pertama\n"
"\n"
"\n"
" - OS Default: Anda dapat memilih OS yang akan diboot secara default bila "
"delay Open Firmware telah\n"
"terlampaui."

#: ../../help.pm_.c:738
msgid ""
"You can add additional entries for yaboot, either for other operating "
"systems,\n"
"alternate kernels, or for an emergency boot image.\n"
"\n"
"\n"
"For other OS's - the entry consists only of a label and the root partition.\n"
"\n"
"\n"
"For Linux, there are a few possible options: \n"
"\n"
"\n"
"  - Label: This is simply the name will type at the yaboot prompt to select "
"this \n"
"boot option.\n"
"\n"
"\n"
"  - Image: This would be the name of the kernel to boot.  Typically vmlinux "
"or\n"
"a variation of vmlinux with an extension.\n"
"\n"
"\n"
"  - Root: The root device or '/' for your Linux installation.\n"
"\n"
"\n"
"  \n"
"  - Append: On Apple hardware, the kernel append option is used quite often "
"to\n"
"assist in initializing video hardware, or to enable keyboard mouse button "
"emulation\n"
"for the often lacking 2nd and 3rd mouse buttons on a stock Apple mouse.  The "
"following \n"
"are some examples:\n"
"\n"
"\n"
"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
"hda=autotune\n"
"\n"
"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
"\n"
"\n"
" \n"
"  - Initrd: This option can be used either to load initial modules, before "
"the boot \n"
"device is available, or to load a ramdisk image for an emergency boot "
"situation.\n"
"\n"
"\n"
"  - Initrd-size: The default ramdisk size is generally 4096 bytes.  If you "
"should need\n"
"to allocate a large ramdisk, this option can be used.\n"
"\n"
"\n"
"  - Read-write: Normally the 'root' partition is initially brought up read-"
"only, to allow\n"
"a filesystem check before the system becomes 'live'.  You can override this "
"option here.\n"
"\n"
"\n"
"  - NoVideo: Should the Apple video hardware prove to be exceptionally "
"problematic, you can\n"
"select this option to boot in 'novideo' mode, with native framebuffer "
"support.\n"
"\n"
"\n"
"  - Default: Selects this entry as being the default Linux selection, "
"selectable by just\n"
"pressing ENTER at the yaboot prompt.  This entry will also be highlighted "
"with a '*', if you\n"
"press TAB to see the boot selections."
msgstr ""
"Anda bisa menambahkan entri tambahan untuk yaboot, baik untuk sistem operasi "
"yang\n"
"lain, atau kernel yang berbeda, atau untuk image boot darurat.\n"
"\n"
"\n"
"Untuk sistem operasi lain, entri ini berisi label dan partisi root saja.\n"
"\n"
"\n"
"untuk sistem Linux, ada beberapa pilihan:\n"
"\n"
"\n"
"  - Label: ini adalah nama yang bisa dipilih saat prompt yaboot.\n"
"\n"
"\n"
"  - image: ini adalah nama kernel untuk diboot. Biasanya bernama vmlinux "
"atau\n"
"nama lain yang mirip dengan vmlinux atau ditambahkan ekstensi lain.\n"
"\n"
"\n"
"  - root: device root atau / pada instalasi LInux di sistem \n"
"\n"
"\n"
"\n"
"  - append: pada hardware Apple, pilihan kernel append sering digunakan\n"
"untuk membantu inisialisasi hardware video, atau untuk mengaktifkan emulasi "
"tombol mouse pada keyboard\n"
"ini berguna untuk mouse Apple yang tidak memiliki tombol kedua dan ketiga.\n"
"Ini ada beberapa contohnya:\n"
"\n"
"\n"
"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103.111 "
"hda=autotone\n"
"\n"
"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
"\n"
"\n"
"\n"
"  - initrd: pilihan ini untuk meload module pada saat boot pertama, sesaat "
"sebelum\n"
"device boot aktif, atau untuk meload image ramdisk untuk situasi boot "
"darurat.\n"
"\n"
"\n"
"  - initrd-size: ukuran ramdisk default biasanya adalah 4096 byte. bila Anda "
"ingin\n"
"mengalokasikan ramdisk dengan nilai yang lebih besar, maka gunakanlah "
"pilihan ini.\n"
"\n"
"\n"
"  - read-write: biasanya partisi 'root' dimount secara read-only agar bisa "
"mengecek filesystem\n"
"sebelum dimount. Anda bisa mengganti kelakuan aslinya di sini.\n"
"\n"
"\n"
"  - NoVideo: Bila hardware video Apple bertingkah aneh, Anda bisa "
"menggunakan\n"
"pilihan ini, dengan dukungan native framebuffer.\n"
"\n"
"\n"
"  - Default: Pilihan ini adalah untuk menjadikan entri ini dapat terpilih "
"pada yaboot\n"
"hanya dengan menekan tombol ENTER pada prompt. Entri yang dijadikan default\n"
"juga akan diberi tanda dengan tanda '*' pada saat Anda menekan tombol TAB "
"untuk\n"
"memilih pilihan boot."

#: ../../help.pm_.c:793
msgid ""
"SILO is a bootloader for SPARC: it is able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
"\n"
"\n"
"You may also want not to give access to these other operating systems to\n"
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"SILO adalah bootloader untuk SPARC: Dianya akan memboot\n"
"GNU/Linux atau sistem operasi lain yang ada di komputer ini.\n"
"Biasanya, sistem operasi yang sudah ada akan secara normal di deteksi dan\n"
"diinstallkan. Bila ternyata nanti nggak bisa, Anda bisa tambahkan sendiri\n"
"secara manual di sini. Hati-hati yah nanti waktu kasih parameternya.\n"
"\n"
"\n"
"Kamu juga bisa menutup akses ke sistem operasi tertentu. Caranya gampang "
"aja\n"
"kamu bisa hapus entrinya disini. Tapi untuk bisa masuk ke sistem operasi "
"itu\n"
"kamu perlu bootdisk nantinya."

#: ../../help.pm_.c:805
msgid ""
"SILO main options are:\n"
"  - Bootloader installation: Indicate where you want to place the\n"
"information required to boot to GNU/Linux. Unless you know exactly\n"
"what you are doing, choose \"First sector of drive (MBR)\".\n"
"\n"
"\n"
"  - Delay before booting default image: Specifies the number in tenths\n"
"of a second the boot loader should wait before booting the first image.\n"
"This is useful on systems that immediately boot from the hard disk after\n"
"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
"omitted or is set to zero."
msgstr ""
"Pilihan SILO dan grub adalah:\n"
"  - Instalasi Bootloader: Tempat Anda hendak meletakkan informasi boot\n"
" ke GNU/Linux. Pilih aja \"Sektor pertama di drive (MBR)\", kecuali\n"
" elu udah tau tempatnya\n"
"\n"
"\n"
"  - Delay sebelum boot ke image default: Menentukan waktu dalam sepersepuluh "
"detik\n"
" sebelum boot loader akan meload image yang default (pertama). Ini berguna\n"
" pada sistem yang boot dari hard disk dan keyboardnya dinyalakan. Boot "
"loader\n"
" tidak menunggu bila \"delay\" dihilangkan atau diset ke nol."

#: ../../help.pm_.c:818
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
"\n"
"\n"
"When the configuration is over, X will be started (unless you\n"
"ask DrakX not to) so that you can check and see if the\n"
"settings suit you. If they don't, you can come back and\n"
"change them, as many times as necessary."
msgstr ""
"Sekarang Anda akan mengkonfigurasikan X Window System, yang merupakan\n"
"inti GUI (Graphical User Interface) bagi GNU/Linux. Sekarang,\n"
"Anda harus konfigurasikan video card dan monitor. Biasanya\n"
"tahapan ini akan otomatis, tapi Anda perlu verifikasi\n"
"hasil deteksi dan memeriksanya, bener apa nggak :)\n"
"\n"
"\n"
"Setelah itu, X akan dijalankan (kecuali kalau Anda bilang jangan)\n"
"dan periksa apakah settingnya sudah cocok atau belum.\n"
"Kalau tidak cocok, Anda bisa kembali lagi dan merubah konfigurasi\n"
"lalu coba lagi."

#: ../../help.pm_.c:831
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
msgstr ""
"Bila ada yang ngaco pada konfigurasi Xnya, silahken pakai pilihan ini untuk\n"
"membuat X Window System lebih bagus."

#: ../../help.pm_.c:835
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
"Bila Anda ingin menggunakan login grafik, pilih aje \"Ya\". Kalau nggak,\n"
"pilih aje \"Tidak\"."

#: ../../help.pm_.c:839
msgid ""
"You can choose a security level for your system. Please refer to the manual "
"for complete\n"
"  information. Basically, if you don't know what to choose, keep the default "
"option.\n"
msgstr ""
"Silakan pilih tingkat keamanan sistem ini. Baca dulu manualnya untuk info "
"lebihlengkap\n"
"Kalau Anda ngga tau, ya pilih aja pilihan defaultnya ya.\n"

#: ../../help.pm_.c:844
msgid ""
"Your system is going to reboot.\n"
"\n"
"After rebooting, your new Linux Mandrake system will load automatically.\n"
"If you want to boot into another existing operating system, please read\n"
"the additional instructions."
msgstr ""
"Sistem Anda akan direboot.\n"
"\n"
"Habis reboot, Linux Mandrake Anda akan diload otomatis.\n"
"Bila Anda ingin boot ke sistem operasi lain, silahkan baca instruksi\n"
"tambahan."

#: ../../install2.pm_.c:37
msgid "Choose your language"
msgstr "Pilih Bahasamu"

#: ../../install2.pm_.c:38
msgid "Select installation class"
msgstr "Pilih kelas instalasi"

#: ../../install2.pm_.c:39
msgid "Hard drive detection"
msgstr "Deteksi hard disk"

#: ../../install2.pm_.c:40
msgid "Configure mouse"
msgstr "Konfigurasi mouse"

#: ../../install2.pm_.c:41
msgid "Choose your keyboard"
msgstr "Pilih Keyboardmu"

#: ../../install2.pm_.c:42
msgid "Security"
msgstr "Sekuriti"

#: ../../install2.pm_.c:43
msgid "Setup filesystems"
msgstr "Setup filesystem"

#: ../../install2.pm_.c:44
msgid "Format partitions"
msgstr "Melakukan format partisi"

#: ../../install2.pm_.c:45
msgid "Choose packages to install"
msgstr "Paket yang akan diinstall"

#: ../../install2.pm_.c:46
msgid "Install system"
msgstr "Instal system"

#: ../../install2.pm_.c:47 ../../install_steps_interactive.pm_.c:894
#: ../../install_steps_interactive.pm_.c:895
msgid "Set root password"
msgstr "Set password root"

#: ../../install2.pm_.c:48
msgid "Add a user"
msgstr "Tambahkan user"

#: ../../install2.pm_.c:49
msgid "Configure networking"
msgstr "Konfigurasi jaringan"

#: ../../install2.pm_.c:51 ../../install_steps_interactive.pm_.c:818
msgid "Summary"
msgstr "Ringkasan"

#: ../../install2.pm_.c:52
msgid "Configure services"
msgstr "Konfigurasi service"

#: ../../install2.pm_.c:54
msgid "Create a bootdisk"
msgstr "Membuat bootdisk"

#: ../../install2.pm_.c:56
msgid "Install bootloader"
msgstr "Install bootloader"

#: ../../install2.pm_.c:57
msgid "Configure X"
msgstr "Konfigurasi X"

#: ../../install2.pm_.c:58
msgid "Exit install"
msgstr "Keluar dari proses instal"

#: ../../install_any.pm_.c:402
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They don't have any known security\n"
"issues, but some new could be found. In that case, you must make sure to "
"upgrade\n"
"as soon as possible.\n"
"\n"
"\n"
"Do you really want to install these servers?\n"
msgstr ""

#: ../../install_any.pm_.c:433
msgid "Can't use broadcast with no NIS domain"
msgstr ""

#: ../../install_any.pm_.c:676
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Masukkan disket yang sudah diformat dengan tipe FAT di drive %s"

#: ../../install_any.pm_.c:680
msgid "This floppy is not FAT formatted"
msgstr "Disketnya belum diformat dengan sistem FAT"

#: ../../install_any.pm_.c:690
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
"Untuk menggunakan pilihan paket yang sudah disimpan sebelumnya, bootlah "
"instalasi dengan pilihan ''linux defcfg=floppy''"

#: ../../install_any.pm_.c:712
msgid "Error reading file $f"
msgstr "Error saat membaca file $f"

#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:310
#: ../../interactive.pm_.c:99 ../../interactive.pm_.c:114
#: ../../interactive.pm_.c:269 ../../interactive_newt.pm_.c:166
#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
#: ../../my_gtk.pm_.c:617 ../../my_gtk.pm_.c:640
msgid "Ok"
msgstr "Ok"

#: ../../install_gtk.pm_.c:423
msgid "Please test the mouse"
msgstr "Silakan di test mousenya"

#: ../../install_gtk.pm_.c:424 ../../standalone/mousedrake_.c:132
msgid "To activate the mouse,"
msgstr "Untuk mengaktifkan mouse,"

#: ../../install_gtk.pm_.c:425 ../../standalone/mousedrake_.c:133
msgid "MOVE YOUR WHEEL!"
msgstr "gerakan rodanya!"

#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
"Ada hardwaare di komputer ini yang membutuhkan driver ``proprietary''.\n"
"Anda bisa mencari informasinya di: %s"

#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Pilih dulu partisi rootnya.\n"
"Caranya, buatlah partisi (atau pilih di yang sudah ada).\n"
"Lalu pilih ``Mount point'' dan set ke `/'"

#: ../../install_interactive.pm_.c:46 ../../install_steps_graphical.pm_.c:259
msgid "You must have a swap partition"
msgstr "Anda harus buat partisi swap"

#: ../../install_interactive.pm_.c:47 ../../install_steps_graphical.pm_.c:261
msgid ""
"You don't have a swap partition\n"
"\n"
"Continue anyway?"
msgstr ""
"Anda belum punya partisi swap\n"
"\n"
"Cuek aja?"

#: ../../install_interactive.pm_.c:68
msgid "Use free space"
msgstr "Gunakan space bebas"

#: ../../install_interactive.pm_.c:70
msgid "Not enough free space to allocate new partitions"
msgstr "Tidak ada cukup ruangan untuk mengalokasikan partisi baru"

#: ../../install_interactive.pm_.c:78
msgid "Use existing partition"
msgstr "Gunakan partisi yang sudah ada"

#: ../../install_interactive.pm_.c:80
msgid "There is no existing partition to use"
msgstr "Tidak ada partisi yang bisa digunakan"

#: ../../install_interactive.pm_.c:87
msgid "Use the Windows partition for loopback"
msgstr "Gunakan partisi Windows untuk loopback"

#: ../../install_interactive.pm_.c:90
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Partisi mana yang hendak dipakai oleh Linux4Win?"

#: ../../install_interactive.pm_.c:92
msgid "Choose the sizes"
msgstr "Pilih ukurannya"

#: ../../install_interactive.pm_.c:93
msgid "Root partition size in MB: "
msgstr "Ukuran partisi root dalam MB: "

#: ../../install_interactive.pm_.c:94
msgid "Swap partition size in MB: "
msgstr "Ukuran partisi swap dalam MB: "

#: ../../install_interactive.pm_.c:102
msgid "Use the free space on the Windows partition"
msgstr "Gunakan space bebas pada partisi Windows"

#: ../../install_interactive.pm_.c:105
msgid "Which partition do you want to resize?"
msgstr "partisi mana yang mau Anda rubah ukurannya?"

#: ../../install_interactive.pm_.c:107
msgid "Computing Windows filesystem bounds"
msgstr "Sedang menghitung bound filesystem Windows"

#: ../../install_interactive.pm_.c:110
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
"Saya tidak dapat merubah ukuran partisi FAT ini,\n"
"Ada error ini yang terjadi: %s"

#: ../../install_interactive.pm_.c:113
msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
msgstr ""
"Partisi Windows Anda terlalu terfragmen, silakan jalankan ``defrag'' dulu"

#: ../../install_interactive.pm_.c:114
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"AWAS!\n"
"\n"
"DrakX sekarang hendak merubah ukuran partisi Windows Anda. Hati-hati:\n"
"prosesnya ini suanguat berbuahaya. Bila Anda belum melakukannya, silahkan\n"
"keluar dari proses instalasi ini, lalu reboot ke Windows\n"
"untuk scandisk dulu (dan defrag juga) di partisi ini lalu backup datanya.\n"
"Habis itu yakin dulu, baru tekan Ok."

#: ../../install_interactive.pm_.c:123
msgid "Which size do you want to keep for windows on"
msgstr "Tentukan ukuran untuk menyimpan Windows"

#: ../../install_interactive.pm_.c:124
#, c-format
msgid "partition %s"
msgstr "Partisi %s"

#: ../../install_interactive.pm_.c:130
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Resize FAT gagal: %s"

#: ../../install_interactive.pm_.c:145
msgid ""
"There is no FAT partitions to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Tidak ada partisi FAT untuk dirubah ukurannya atau untuk digunakan sebagai "
"loopback (atau tidak ada cukup ruangan)"

#: ../../install_interactive.pm_.c:151
msgid "Erase entire disk"
msgstr "Hapus semua disk"

#: ../../install_interactive.pm_.c:151
msgid "Remove Windows(TM)"
msgstr "Buang Windows(TM)"

#: ../../install_interactive.pm_.c:154
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Anda punya lebih dari satu hard drive, di hard disk mana yang ingin "
"diinstallkan linux?"

#: ../../install_interactive.pm_.c:157
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "SEMUA partisi yang ada beserta data pada drive %s akan hilang"

#: ../../install_interactive.pm_.c:165
msgid "Custom disk partitioning"
msgstr "Lakukan partisi disk secara custom"

#: ../../install_interactive.pm_.c:169
msgid "Use fdisk"
msgstr "gunakan fdisk"

#: ../../install_interactive.pm_.c:172
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
"Anda bisa buat partisi %s \n"
"Habis itu, jangan lupa simpan dengan menekan tombol `w'"

#: ../../install_interactive.pm_.c:201
msgid "You don't have enough free space on your Windows partition"
msgstr "Eh, kamu nggak punya cukup ruangan pada partisi windows!"

#: ../../install_interactive.pm_.c:217
msgid "I can't find any room for installing"
msgstr "Aduh, ruangannya nggak cukup nih untuk menginstall"

#: ../../install_interactive.pm_.c:221
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Wizard partisi DrakX menemukan solusi berikut:"

#: ../../install_interactive.pm_.c:226
#, c-format
msgid "Partitioning failed: %s"
msgstr "Proses partisi gagal: %s"

#: ../../install_interactive.pm_.c:232
msgid "Bringing up the network"
msgstr "Up-kan Jaringan"

#: ../../install_interactive.pm_.c:237
msgid "Bringing down the network"
msgstr "Matikan Jaringan"

#: ../../install_steps.pm_.c:73
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"Ada error nih, tapi aku nggak tahu cara mengatasinya.\n"
"Lanjutkan saja, tapi resiko tanggung sendiri yah."

#: ../../install_steps.pm_.c:203
#, c-format
msgid "Duplicate mount point %s"
msgstr "Lokasi mount %s ada dua"

#: ../../install_steps.pm_.c:385
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
"\"\n"
msgstr ""
"Ada paket yang penting nggak benar diinstalnya.\n"
"Mungkin saja drive cdrom atau cdromnya yang rusak.\n"
"Cek dulu cdromnya di komputer yang sudah terinstall Linux dengan\n"
"perintah \"rpm -qpl Mandrake/RPMS/*.rpm\" dulu gih\n"

#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"

#: ../../install_steps.pm_.c:634
msgid "No floppy drive available"
msgstr "Wah maaf nih, nggak ada floppy drive yah ?"

#: ../../install_steps_auto_install.pm_.c:51
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
msgstr "Memulai langkah `%s'\n"

#: ../../install_steps_graphical.pm_.c:287
msgid "Choose the size you want to install"
msgstr "Pilih ukuran yang akan diinstal"

#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
msgstr "Ukuran total: "

#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:437
#, c-format
msgid "Version: %s\n"
msgstr "Versi: %s\n"

#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:438
#, c-format
msgid "Size: %d KB\n"
msgstr "Ukuran: %d KB\n"

#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:337
#: ../../install_steps_interactive.pm_.c:520
msgid "Choose the packages you want to install"
msgstr "Pilih paket yang akan diinstal"

#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:340
msgid "Info"
msgstr "Info"

#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:345
#: ../../install_steps_interactive.pm_.c:226
msgid "Install"
msgstr "Instal"

#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:558
#: ../../install_steps_interactive.pm_.c:675
msgid "Installing"
msgstr "Sedang melakukan instal"

#: ../../install_steps_graphical.pm_.c:499
msgid "Please wait, "
msgstr "Silahkan tunggu, "

#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:570
msgid "Time remaining "
msgstr "Sisa waktu "

#: ../../install_steps_graphical.pm_.c:502
msgid "Total time "
msgstr "Total waktu"

#: ../../install_steps_graphical.pm_.c:507
#: ../../install_steps_interactive.pm_.c:675
msgid "Preparing installation"
msgstr "Sedang menyiapkan instalasi"

#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:618
#, c-format
msgid "Installing package %s"
msgstr "Sedang instal paket %s"

#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
#: ../../install_steps_gtk.pm_.c:699
msgid "Go on anyway?"
msgstr "Cuek aja?"

#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
msgid "There was an error ordering packages:"
msgstr "Ada error mengurutkan paket"

#: ../../install_steps_graphical.pm_.c:577
msgid "Use existing configuration for X11?"
msgstr "Gunakan konfigurasi X11 yang ada?"

#: ../../install_steps_gtk.pm_.c:142
msgid ""
"Your system is low on resource. You may have some problem installing\n"
"Linux-Mandrake. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
"Sistem Anda memiliki resource yang terlalu rendah. Nantinya Anda akan\n"
"mengalami kesulitan dalam menginstall Linux-Mandrake. Bila demikian halnya, "
"Anda bias mencoba instalasi text saja. Untuk hal ini silakan\n"
"tekan `F1' saat booting pada CDROm, lalu ketikkan `tet'."

#: ../../install_steps_gtk.pm_.c:156
msgid "Please, choose one of the following classes of installation:"
msgstr "Ehm, silahkan pilih kelas instalasi di bawah:"

#: ../../install_steps_gtk.pm_.c:222
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Ukuran total grup yang dipilih kira-kira %d MB.\n"

#: ../../install_steps_gtk.pm_.c:224
#, c-format
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
"\n"
"A low percentage will install only the most important packages;\n"
"a percentage of 100%% will install all selected packages."
msgstr ""
"Kalau kamu mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
"pilih dulu persentase paket yang hendak diinstall.\n"
"\n"
"Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
"dan sebaliknya persentase 100%% akan install semua paket yang tadi sudah\n"
"dipilih"

#: ../../install_steps_gtk.pm_.c:229
#, c-format
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
"If you wish to install less than this,\n"
"select the percentage of packages that you want to install.\n"
"A low percentage will install only the most important packages;\n"
"a percentage of %d%% will install as many packages as possible."
msgstr ""
"Kamu punya hard disk cuma cukup untuk sekitar %d%% dari seluruh paketini.\n"
"\n"
"Kalau kamu mau nginstall dengan ukuran yang lebih kecil dari ini,\n"
"pilih dulu persentase paket yang hendak diinstall.\n"
"Persentasi kecil berarti akan install paket yang penting-penting saja;\n"
"dan sebaliknya persentase %d%% akan install paket yang tadi sudah\n"
"dipilih sebanyak-banyaknya"

#: ../../install_steps_gtk.pm_.c:235
msgid "You will be able to choose them more specifically in the next step."
msgstr "Anda akan bisa memilih dengan lebih lengkap nanti"

#: ../../install_steps_gtk.pm_.c:237
msgid "Percentage of packages to install"
msgstr "Persentase paket yang akan diinstall"

#: ../../install_steps_gtk.pm_.c:285 ../../install_steps_interactive.pm_.c:599
msgid "Package Group Selection"
msgstr "Pilihan Grup Paket"

#: ../../install_steps_gtk.pm_.c:305 ../../install_steps_interactive.pm_.c:614
msgid "Individual package selection"
msgstr "Pilih paket sendiri"

#: ../../install_steps_gtk.pm_.c:349
msgid "Show automatically selected packages"
msgstr "Tunjukkan paket yang sudah dipilih secara otomatis"

#: ../../install_steps_gtk.pm_.c:416
msgid "Expand Tree"
msgstr "Buka Tree"

#: ../../install_steps_gtk.pm_.c:417
msgid "Collapse Tree"
msgstr "Tutup Tree"

#: ../../install_steps_gtk.pm_.c:418
msgid "Toggle between flat and group sorted"
msgstr "Togel tampilan rata dan terurut grupnya"

#: ../../install_steps_gtk.pm_.c:435
msgid "Bad package"
msgstr "Paket Error"

#: ../../install_steps_gtk.pm_.c:436
#, c-format
msgid "Name: %s\n"
msgstr "Nama: %s\n"

#: ../../install_steps_gtk.pm_.c:439
#, c-format
msgid "Importance: %s\n"
msgstr "Derajat: %s\n"

#: ../../install_steps_gtk.pm_.c:448 ../../install_steps_interactive.pm_.c:578
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukuran total: %d / %d MB"

#: ../../install_steps_gtk.pm_.c:467
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Kamu nggak bisa pilih paket ini sebab nggak ada ruang kosong untuk "
"menginstallnya"

#: ../../install_steps_gtk.pm_.c:471
msgid "The following packages are going to be installed"
msgstr "Paket ini yang akan diinstall"

#: ../../install_steps_gtk.pm_.c:472
msgid "The following packages are going to be removed"
msgstr "Paket berikut adalah yang akan dihapus"

#: ../../install_steps_gtk.pm_.c:482
msgid "You can't select/unselect this package"
msgstr "Anda nggak bisa pilih/buang paket ini"

#: ../../install_steps_gtk.pm_.c:501
msgid "This is a mandatory package, it can't be unselected"
msgstr "Paket ini harus diinstall, nggak bisa dibuang"

#: ../../install_steps_gtk.pm_.c:503
msgid "You can't unselect this package. It is already installed"
msgstr "Anda nggak bisa buang paket ini, sebab dia sudah diinstall"

#: ../../install_steps_gtk.pm_.c:507
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
"Paket ini mesti diupgrade\n"
"Bener nggak mau dipilih?"

#: ../../install_steps_gtk.pm_.c:510
msgid "You can't unselect this package. It must be upgraded"
msgstr "Kamu nggak bisa buang paket ini. dia mesti diupgrade"

#: ../../install_steps_gtk.pm_.c:563
msgid "Estimating"
msgstr "Perkiraan"

#: ../../install_steps_gtk.pm_.c:582
msgid "Please wait, preparing installation"
msgstr "Tunggu ya, saya sedang menyiapkan instalasi"

#: ../../install_steps_gtk.pm_.c:613
#, c-format
msgid "%d packages"
msgstr "%d paket"

#: ../../install_steps_gtk.pm_.c:652
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"Peringatan\n"
"\n"
"Mohon dibaca dulu semua ketentuan di bawah. Bila Anda tidak setuju dengan "
"salah satu bagiannya\n"
"Anda tidak dapat menginstal media CD berikutnya. Silakan tekan 'Tolak' untuk "
"melanjutkan instalasi\n"
"tanpa menggunakan media ini.\n"
"\n"
"\n"
"Ada beberapa komponen yang ada di media CD berikutnya tidak dilepas dalam "
"lisensi GPL atau perjanjian\n"
"sejenis. Komponen-komponen itu diatur dalam ketentuan dan kondisi dalam "
"lisensi yang bersangkutan.\n"
"Baca dengan hati-hati dan penuhi setiap lisensi sebelum Anda menyebarkan "
"komponen tersebut.\n"
"Model lisensi tersebut akan melarang proses transfer, duplikasi (kecuali "
"untuk alasan backup), penyebaran\n"
"kembali, rekayasa ulang, de-assembly, de-kompilasi, atau modifikasi pada "
"komponen tersebut.\n"
"Tiap pelanggaran pada perjanjian akan segera mengakhiri hak-hak Anda dalam "
"lisensi tersebut.\n"
"Kecuali bila dibolehkan, Anda tidak dapat menginstall program ini dalam "
"lebih dari satu sistem\n"
"atau menggunakannya di jaringan. Bila Anda masih ragu, silakan huibungi "
"langsung distributor\n"
"atau editor komponen ini. Anda dilarang mentransfer komponen ini ke pihak "
"ketiga atau mengkopinya.\n"
"\n"
"\n"
"Semua hak pada komponen di media CD berikutnya dimiliki oleh pembuatnya "
"masing-masing\n"
"dan dilindungi oleh hukum hak cipta dan hak intelektual khusus untuk program "
"komputer.\n"

#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
msgid "Accept"
msgstr "Baiklah"

#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
msgid "Refuse"
msgstr "Tolak"

#: ../../install_steps_gtk.pm_.c:681
#, c-format
msgid ""
"Change your Cd-Rom!\n"
"\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
"done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
"Ganti CDROMnya!\n"
"\n"
"Silahkan masukkan CDROM berlabel \"%s\" di drive Anda dan tekan OK\n"
"Kalau Anda nggak punya CDROM ini, teken Batal aja untuk membatalkan "
"instalasidari CD ini."

#: ../../install_steps_gtk.pm_.c:699
msgid "There was an error installing packages:"
msgstr "Ada error saat menginstall paket"

#: ../../install_steps_interactive.pm_.c:37
msgid "An error occurred"
msgstr "Ada error"

#: ../../install_steps_interactive.pm_.c:55
msgid "Please, choose a language to use."
msgstr "Pilih dulu bahasanya dong bow"

#: ../../install_steps_interactive.pm_.c:56
msgid "You can choose other languages that will be available after install"
msgstr ""
"Anda bisa pilih bahasa lain yang akan disediakan setelah install selesai"

#: ../../install_steps_interactive.pm_.c:68
#: ../../install_steps_interactive.pm_.c:613
msgid "All"
msgstr "Semuanya"

#: ../../install_steps_interactive.pm_.c:86
msgid "License agreement"
msgstr "Persetujuan Lisensi"

#: ../../install_steps_interactive.pm_.c:87
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Linux-"
"Mandrake distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Linux-Mandrake distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read carefully this document. This document is a license agreement "
"between you and  \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by "
"law, be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
"occurance of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, "
"in no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Linux-Mandrake sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to MandrakeSoft.\n"
"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
"Documentation written \n"
"by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
"Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
"MandrakeSoft S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A.  \n"
msgstr ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Linux-"
"Mandrake distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Linux-Mandrake distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read carefully this document. This document is a license agreement "
"between you and  \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by "
"law, be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
"occurance of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, "
"in no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Linux-Mandrake sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to MandrakeSoft.\n"
"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
"Documentation written \n"
"by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
"Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
"MandrakeSoft S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A.  \n"

#: ../../install_steps_interactive.pm_.c:182
#: ../../install_steps_interactive.pm_.c:822
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Keyboard"

#: ../../install_steps_interactive.pm_.c:183
#: ../../standalone/keyboarddrake_.c:29
msgid "Please, choose your keyboard layout."
msgstr "Pilih Keyboardmu"

#: ../../install_steps_interactive.pm_.c:184
msgid "Here is the full list of keyboards available"
msgstr "Ini adalah daftar keyboard yang tersedia"

#: ../../install_steps_interactive.pm_.c:201
msgid "Install Class"
msgstr "Kelas Instal"

#: ../../install_steps_interactive.pm_.c:201
msgid "Which installation class do you want?"
msgstr "Kelas instalasi yang anda diinginkan?"

#: ../../install_steps_interactive.pm_.c:203
msgid "Install/Update"
msgstr "Instal/Update"

#: ../../install_steps_interactive.pm_.c:203
msgid "Is this an install or an update?"
msgstr "Akan instal atau update?"

#: ../../install_steps_interactive.pm_.c:212
msgid "Recommended"
msgstr "Disarankan"

#: ../../install_steps_interactive.pm_.c:215
#: ../../install_steps_interactive.pm_.c:218
msgid "Expert"
msgstr "Pakar"

#: ../../install_steps_interactive.pm_.c:226
msgid "Update"
msgstr "Update"

#: ../../install_steps_interactive.pm_.c:238 ../../standalone/mousedrake_.c:41
msgid "Please, choose the type of your mouse."
msgstr "Tipe mouse yang anda punya?"

#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:57
msgid "Mouse Port"
msgstr "Port Mouse"

#: ../../install_steps_interactive.pm_.c:245 ../../standalone/mousedrake_.c:58
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Di serial port mana mouse Anda dicolokkan ?"

#: ../../install_steps_interactive.pm_.c:253
msgid "Buttons emulation"
msgstr "Emulasi tombol"

#: ../../install_steps_interactive.pm_.c:255
msgid "Button 2 Emulation"
msgstr "Emulasi 2 tombol"

#: ../../install_steps_interactive.pm_.c:256
msgid "Button 3 Emulation"
msgstr "Emulasi tombol 3"

#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurasikan card PCMCIA"

#: ../../install_steps_interactive.pm_.c:275
msgid "PCMCIA"
msgstr "PCMCIA"

#: ../../install_steps_interactive.pm_.c:280
msgid "Configuring IDE"
msgstr "konfigurasi IDE"

#: ../../install_steps_interactive.pm_.c:280
msgid "IDE"
msgstr "IDE"

#: ../../install_steps_interactive.pm_.c:295
msgid "no available partitions"
msgstr "Tidak ada partisi"

#: ../../install_steps_interactive.pm_.c:298
msgid "Scanning partitions to find mount points"
msgstr "Mendeteksi partisi untuk mencari lokasi mount"

#: ../../install_steps_interactive.pm_.c:306
msgid "Choose the mount points"
msgstr "Pilih lokasi mount"

#: ../../install_steps_interactive.pm_.c:323
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
"The other solution is to disallow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
"Saya nggak bisa baca tabel partisi, udah hancur lebur nih :(\n"
"Aku akan coba hapus partisi yg jeleknya (SEMUA DATA akan HILANG).\n"
"Solusi lainnya adalah jangan biarkan saya memodifikasi tabel partisi.\n"
"(pesan errornya adalah %s)\n"
"\n"
"Anda setuju untuk menghapus semua partisi?\n"

#: ../../install_steps_interactive.pm_.c:336
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
"DiskDrake gagal membaca tabel partisi Anda.\n"
"Lanjutkan tapi resiko tanggung kendiri!"

#: ../../install_steps_interactive.pm_.c:361
msgid "Root Partition"
msgstr "Partisi root"

#: ../../install_steps_interactive.pm_.c:362
msgid "What is the root partition (/) of your system?"
msgstr "Apa sih partisi root (/) di sistem ini?"

#: ../../install_steps_interactive.pm_.c:376
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Anda harus reboot agar perubahan table partisi dapat berlaku"

#: ../../install_steps_interactive.pm_.c:403
msgid "Choose the partitions you want to format"
msgstr "Pilih partisi yang akan diformat"

#: ../../install_steps_interactive.pm_.c:404
msgid "Check bad blocks?"
msgstr "Periksa bad block ?"

#: ../../install_steps_interactive.pm_.c:427
msgid "Formatting partitions"
msgstr "Melakukan format partisi"

#: ../../install_steps_interactive.pm_.c:429
#, c-format
msgid "Creating and formatting file %s"
msgstr "Membuat dan memformat file %s"

#: ../../install_steps_interactive.pm_.c:432
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Instalasi tidak bisa diteruskan karena swap kurang, tambahin dong"

#: ../../install_steps_interactive.pm_.c:438
msgid "Looking for available packages"
msgstr "Sedang mencari paket yang tersedia"

#: ../../install_steps_interactive.pm_.c:444
msgid "Finding packages to upgrade"
msgstr "Mencari paket untuk diupgrade"

#: ../../install_steps_interactive.pm_.c:461
#, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
"Waduh, sistem ini nggak punya cukup space untuk install atawa upgrade (%d > %"
"d)"

#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Complete (%dMB)"
msgstr "Lengkap (%dMB)"

#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Minimum (%dMB)"
msgstr "Minimum (%dMB)"

#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Recommended (%dMB)"
msgstr "Disarankan (%dMB)"

#: ../../install_steps_interactive.pm_.c:486
msgid "Custom"
msgstr "Customized"

#: ../../install_steps_interactive.pm_.c:585
msgid "Selected size is larger than available space"
msgstr ""

#: ../../install_steps_interactive.pm_.c:650
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
"Kalau kamu punya semua CD pada daftar di bawah, tekan OK.\n"
"Kalau nggak punya sama sekali, click Cancel.\n"
"Kalau cuma punya beberapa aja, pilih aja, trus klik Ok."

#: ../../install_steps_interactive.pm_.c:655
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Label CD-ROM \"%s\""

#: ../../install_steps_interactive.pm_.c:684
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
"Sedang instal paket %s\n"
"%d%%"

#: ../../install_steps_interactive.pm_.c:693
msgid "Post-install configuration"
msgstr "Konfigurasi Instalasi akhir"

#: ../../install_steps_interactive.pm_.c:718
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
"WARNING:\n"
"\n"
"Due to different general requirements applicable to these software and "
"imposed\n"
"by various jurisdictions, customer and/or end user of theses software "
"should\n"
"ensure that the laws of his/their jurisdiction allow him/them to download, "
"stock\n"
"and/or use these software.\n"
"\n"
"In addition customer and/or end user shall particularly be aware to not "
"infringe\n"
"the laws of his/their jurisdiction. Should customer and/or end user not\n"
"respect the provision of these applicable laws, he/they will incure serious\n"
"sanctions.\n"
"\n"
"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
"liable\n"
"for special, indirect or incidental damages whatsoever (including, but not\n"
"limited to loss of profits, business interruption, loss of commercial data "
"and\n"
"other pecuniary losses, and eventual liabilities and indemnification to be "
"paid\n"
"pursuant to a court decision) arising out of use, possession, or the sole\n"
"downloading of these software, to which customer and/or end user could\n"
"eventually have access after having sign up the present agreement.\n"
"\n"
"\n"
"For any queries relating to these agreement, please contact \n"
"Mandrakesoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"
msgstr ""
"Anda sekarang bisa mendownload software khusus untuk enkripsi.\n"
"\n"
"PERHATIAN:\n"
"\n"
"Berhubung adanya peraturan yang berbeda di berbagai lokasi berkenaan\n"
"dengan penggunaan software ini, Anda dan/atau end user yang akan\n"
"menggunakan software ini harus memastikan bahwa dirinya boleh untuk\n"
"mendownload dan/atau menggunakan software ini sesuai dengan hukum\n"
"yang berlaku di lokasinya.\n"
"\n"
"Juga ditekankan bahwa Anda dan/atau end user harus sadar bahwa dirinya\n"
"tidak diperkenankan untuk melanggar hukum tersebut. Apabila melanggar\n"
"akan dikenakan sangsi yang berat.\n"
"\n"
"Mandrakesoft dan para pembuat software dan/atau penyedianya sama sekali "
"tidak\n"
"bertanggung jawab baik untuk segala kerusakan khusus, tidak langsung, dan\n"
"insidentil apapun (termasuk namun tidak terbatas pada kehilangan keuntungan\n"
"gangguan bisnis, kehilangan data komersial dan kerugian lain dan \n"
"segala kewajiban yang harus dibayarkan sesuai hukum) yang disebabkan\n"
"oleh penggunaan, kepemilikan, atau penjualan dari software yang\n"
"didownload ini, setelah Anda dan/atau end user memiliki akses\n"
"ke software tersebut setelah menandatangani perjanjian yang ada.\n"
"\n"
"Apabila ada pertanyaan mengenai perjanjian ini, silahkan hubungi\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"

#: ../../install_steps_interactive.pm_.c:750
msgid "Choose a mirror from which to get the packages"
msgstr "Pilih mirror tempat Anda ingin mengambil paket program"

#: ../../install_steps_interactive.pm_.c:761
msgid "Contacting the mirror to get the list of available packages"
msgstr "Saya sedang mencek mirror untuk mengambil daftar paket yang tersedia"

#: ../../install_steps_interactive.pm_.c:764
msgid "Please choose the packages you want to install."
msgstr "Pilih paket yang akan diinstal"

#: ../../install_steps_interactive.pm_.c:776
msgid "Which is your timezone?"
msgstr "Pilih timezone Anda"

#: ../../install_steps_interactive.pm_.c:778
msgid "Is your hardware clock set to GMT?"
msgstr "Apakah jam hardwarenya di set ke GMT?"

#: ../../install_steps_interactive.pm_.c:806 ../../printer.pm_.c:22
#: ../../printerdrake.pm_.c:415
msgid "Remote CUPS server"
msgstr "server CUPS remote"

#: ../../install_steps_interactive.pm_.c:807
msgid "No printer"
msgstr "Tidak ada printer"

#: ../../install_steps_interactive.pm_.c:821
msgid "Mouse"
msgstr "Mouse"

#: ../../install_steps_interactive.pm_.c:823
msgid "Timezone"
msgstr "Timezone"

#: ../../install_steps_interactive.pm_.c:824 ../../printerdrake.pm_.c:344
msgid "Printer"
msgstr "Printer"

#: ../../install_steps_interactive.pm_.c:826
msgid "ISDN card"
msgstr "card ISDN"

#: ../../install_steps_interactive.pm_.c:829
msgid "Sound card"
msgstr "Sound Card"

#: ../../install_steps_interactive.pm_.c:832
msgid "TV card"
msgstr "TV Card"

#: ../../install_steps_interactive.pm_.c:862
msgid "Which printing system do you want to use?"
msgstr "Sistem printer mana yang ingin digunakan?"

#: ../../install_steps_interactive.pm_.c:896
msgid "No password"
msgstr "Tak berpassword"

#: ../../install_steps_interactive.pm_.c:901
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Passwordnya terlalu mudah (harus paling tidak %d karakter)"

#: ../../install_steps_interactive.pm_.c:907
msgid "Use NIS"
msgstr "Gunakan NIS"

#: ../../install_steps_interactive.pm_.c:907
msgid "yellow pages"
msgstr "yellow pages"

#: ../../install_steps_interactive.pm_.c:914
msgid "Authentification NIS"
msgstr "Autentikasi NIS"

#: ../../install_steps_interactive.pm_.c:915
msgid "NIS Domain"
msgstr "Domain NIS"

#: ../../install_steps_interactive.pm_.c:916
msgid "NIS Server"
msgstr "Server NIS"

#: ../../install_steps_interactive.pm_.c:951
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
"SILO on your system, or another operating system removes SILO, or SILO "
"doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures.\n"
"\n"
"If you want to create a bootdisk for your system, insert a floppy in the "
"first\n"
"drive and press \"Ok\"."
msgstr ""
"Bootdisk baru membantu Anda untuk melakukan boot sistem Linux tanpa\n"
"tergantung pada bootloader. Kadang ini berguna bila Anda tidak mau install\n"
"SILO  di sistem Anda, atau saat sistem operasi lain menghapus SILO, atau "
"SILO\n"
"tidak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga bisa "
"digunakan\n"
"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?"

#: ../../install_steps_interactive.pm_.c:967
msgid "First floppy drive"
msgstr "Drive Disket Pertama"

#: ../../install_steps_interactive.pm_.c:968
msgid "Second floppy drive"
msgstr "Drive disket kedua"

#: ../../install_steps_interactive.pm_.c:969
msgid "Skip"
msgstr "Lewatkan"

#: ../../install_steps_interactive.pm_.c:974
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
"LILO (or grub) on your system, or another operating system removes LILO, or "
"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
"Bootdisk baru membantu Anda untuk melakukan boot sistem Linux tanpa\n"
"tergantung pada bootloader. Kadang ini berguna bila Anda tidak mau install\n"
"lilo (ataw grub) di sistem Anda, atau saat sistem operasi lain menghapus "
"lilo, atau lilo\n"
"tidak bisa digunakan pada konfigurasi hardware Anda. Bootdisk ini juga bisa "
"digunakan\n"
"dengan image rescue Mandrake, yang memudahkan kita untuk merecover sistem\n"
"dari kegagalan. Sekarang, saya mau tanya nih... mau bikin bootdisk nggak ?"

#: ../../install_steps_interactive.pm_.c:983
msgid "Sorry, no floppy drive available"
msgstr "Wah maaf nih, nggak ada floppy drive yah ?"

#: ../../install_steps_interactive.pm_.c:987
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Pilih drive floppy untuk membuat bootdisk"

#: ../../install_steps_interactive.pm_.c:991
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Masukkan disket di drive %s"

#: ../../install_steps_interactive.pm_.c:994
msgid "Creating bootdisk"
msgstr "Membuat bootdisk"

#: ../../install_steps_interactive.pm_.c:1001
msgid "Preparing bootloader"
msgstr "Membuat bootloader"

#: ../../install_steps_interactive.pm_.c:1010
msgid "Do you want to use aboot?"
msgstr "Mau pakai aboot saja?"

#: ../../install_steps_interactive.pm_.c:1013
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"Wah ada error saat install aboot,\n"
"Paksakan instalasi nggak walaupun nanti bisa merusak partisi awal?"

#: ../../install_steps_interactive.pm_.c:1022
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalasi bootloader gagal. Ada kesalahan berikut:"

#: ../../install_steps_interactive.pm_.c:1030
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you don't see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device $of_boot,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Ganti dulu bootdevice Open Firmware untuk mengaktifkan bootloader.\n"
"Jika Anda ngga ngeliat prompt bootloadernya waktu reboot,tekan Command-"
"Option-O-F saat reboot lalu tekan Enter\n"
"setenv boot-device $of_boot,\\\\:tbxi\n"
"lalu ketikkan: shut-down\n"
"Pada boot selanjutnya prompt bootloader akan ditampilkan deh."

#: ../../install_steps_interactive.pm_.c:1038 ../../standalone/draksec_.c:23
msgid "Low"
msgstr "Lemah"

#: ../../install_steps_interactive.pm_.c:1039 ../../standalone/draksec_.c:24
msgid "Medium"
msgstr "Sedang"

#: ../../install_steps_interactive.pm_.c:1040 ../../standalone/draksec_.c:25
msgid "High"
msgstr "Kuat"

#: ../../install_steps_interactive.pm_.c:1044 ../../standalone/draksec_.c:49
msgid "Choose security level"
msgstr "Pilih Tingkat Security"

#: ../../install_steps_interactive.pm_.c:1080
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "Mau buat disket auto install untuk replikasi linux?"

#: ../../install_steps_interactive.pm_.c:1082
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Masukkan disket kosong di drive %s"

#: ../../install_steps_interactive.pm_.c:1096
#: ../../install_steps_interactive.pm_.c:1128
msgid "Creating auto install floppy"
msgstr "Lagi buat disket auto install"

#: ../../install_steps_interactive.pm_.c:1156
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
"Ada tahapan yang tidak diselesaikan.\n"
"\n"
"Anda ingin keluar sekarang?"

#: ../../install_steps_interactive.pm_.c:1167
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
"\n"
"For information on fixes which are available for this release of Linux-"
"Mandrake,\n"
"consult the Errata available from http://www.linux-mandrake.com/.\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
"Wah Selamat nih, instalasinya sudah komplit.\n"
"Sekarang cabut media boot dan pencet tombol untuk reboot.\n"
"Untuk informasi update program untuk rilis Linux Mandrake ini,\n"
"silahkan lihat Errata di http://www.linux-mandrake.com/.\n"
"Informasi untuk konfigurasi sistem juga tersedia di \n"
"bab Instalasi di Buku Petunjuk Resmi Linux Mandrake."

#: ../../install_steps_interactive.pm_.c:1179
msgid "Generate auto install floppy"
msgstr "Buat floppy instalasi otomatis"

#: ../../install_steps_interactive.pm_.c:1181
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
"(this is meant for installing on another box).\n"
"\n"
"You may prefer to replay the installation.\n"
msgstr ""
"Bila Anda mau, auto install bisa dilakukan secara otomatis penuh,\n"
"jadi instalasinya akan mengusai hard drive!\n"
"(ini dimaksudkan untuk menginstall pada komputer lain)\n"
"\n"
"Mungkin Anda perlu mengulangi instalasinya.\n"

#: ../../install_steps_interactive.pm_.c:1186
msgid "Automated"
msgstr "Otomatis"

#: ../../install_steps_interactive.pm_.c:1186
msgid "Replay"
msgstr "Ulangi"

#: ../../install_steps_interactive.pm_.c:1189
msgid "Save packages selection"
msgstr "Simpan paket yang sudah dipilih"

#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Instalasi Linux-Mandrake %s"

#: ../../install_steps_newt.pm_.c:33
msgid ""
"  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
msgstr ""
"  <Tab>/<Alt-Tab> untuk pindah | <Spasi> untuk pilih | <F12> Layar berikut"

#: ../../interactive.pm_.c:65
msgid "kdesu missing"
msgstr "kdesu hilang nih"

#: ../../interactive.pm_.c:267
msgid "Advanced"
msgstr "Advanced"

#: ../../interactive.pm_.c:290
msgid "Please wait"
msgstr "Silahkan tunggu sebentar"

#: ../../interactive_stdio.pm_.c:35
#, c-format
msgid "Ambiguity (%s), be more precise\n"
msgstr "Tidak jelas (%s), coba yang lebih tepat\n"

#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Pilihan salah, silahkan ulangi\n"

#: ../../interactive_stdio.pm_.c:39
#, c-format
msgid " ? (default %s) "
msgstr " ? (default %s) "

#: ../../interactive_stdio.pm_.c:52
#, c-format
msgid "Your choice? (default %s) "
msgstr "Pilihan anda? (default %s) "

#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s  enter `none' for none) "
msgstr "Pilihan anda? (default %s  pilih 'none' untuk tidak ada) "

#: ../../keyboard.pm_.c:124 ../../keyboard.pm_.c:155
msgid "Czech (QWERTZ)"
msgstr "Ceko (QWERTZ)"

#: ../../keyboard.pm_.c:125 ../../keyboard.pm_.c:138 ../../keyboard.pm_.c:158
msgid "German"
msgstr "Jerman"

#: ../../keyboard.pm_.c:126
msgid "Dvorak"
msgstr "Dvorak"

#: ../../keyboard.pm_.c:127 ../../keyboard.pm_.c:164
msgid "Spanish"
msgstr "Spanyol"

#: ../../keyboard.pm_.c:128 ../../keyboard.pm_.c:165
msgid "Finnish"
msgstr "Finland"

#: ../../keyboard.pm_.c:129 ../../keyboard.pm_.c:139 ../../keyboard.pm_.c:166
msgid "French"
msgstr "Perancis"

#: ../../keyboard.pm_.c:130 ../../keyboard.pm_.c:187
msgid "Norwegian"
msgstr "Norwegia"

#: ../../keyboard.pm_.c:131
msgid "Polish"
msgstr "Polandia"

#: ../../keyboard.pm_.c:132 ../../keyboard.pm_.c:192
msgid "Russian"
msgstr "Rusia"

#: ../../keyboard.pm_.c:133 ../../keyboard.pm_.c:203
msgid "UK keyboard"
msgstr "Keyboard UK"

#: ../../keyboard.pm_.c:134 ../../keyboard.pm_.c:137 ../../keyboard.pm_.c:204
msgid "US keyboard"
msgstr "Keyboard US"

#: ../../keyboard.pm_.c:141
msgid "Armenian (old)"
msgstr "Armenia (lama)"

#: ../../keyboard.pm_.c:142
msgid "Armenian (typewriter)"
msgstr "Armenia (mesintik)"

#: ../../keyboard.pm_.c:143
msgid "Armenian (phonetic)"
msgstr "Armenia (phonetic)"

#: ../../keyboard.pm_.c:147
msgid "Azerbaidjani (latin)"
msgstr "Azerbaijan (latin)"

#: ../../keyboard.pm_.c:148
msgid "Azerbaidjani (cyrillic)"
msgstr "Azerbaijan (cyrillic)"

#: ../../keyboard.pm_.c:149
msgid "Belgian"
msgstr "Belgia"

#: ../../keyboard.pm_.c:150
msgid "Bulgarian"
msgstr "Bulgaria"

#: ../../keyboard.pm_.c:151
msgid "Brazilian (ABNT-2)"
msgstr "Brazilia"

#: ../../keyboard.pm_.c:152
msgid "Belarusian"
msgstr "Belarusia"

#: ../../keyboard.pm_.c:153
msgid "Swiss (German layout)"
msgstr "Swiss (layout Jerman)"

#: ../../keyboard.pm_.c:154
msgid "Swiss (French layout)"
msgstr "Swiss (layout Perancis)"

#: ../../keyboard.pm_.c:156
msgid "Czech (QWERTY)"
msgstr "Ceko (QWERTY)"

#: ../../keyboard.pm_.c:157
msgid "Czech (Programmers)"
msgstr "Ceko (Programmer)"

#: ../../keyboard.pm_.c:159
msgid "German (no dead keys)"
msgstr "Jerman (tanpa dead key)"

#: ../../keyboard.pm_.c:160
msgid "Danish"
msgstr "Denmark"

#: ../../keyboard.pm_.c:161
msgid "Dvorak (US)"
msgstr "Dvorak (US)"

#: ../../keyboard.pm_.c:162
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norwegia)"

#: ../../keyboard.pm_.c:163
msgid "Estonian"
msgstr "Estonia"

#: ../../keyboard.pm_.c:167
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgia (layout \"Rusia\")"

#: ../../keyboard.pm_.c:168
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgia (layout \"Latin\")"

#: ../../keyboard.pm_.c:169
msgid "Greek"
msgstr "Yunani"

#: ../../keyboard.pm_.c:170
msgid "Hungarian"
msgstr "Hungaria"

#: ../../keyboard.pm_.c:171
msgid "Croatian"
msgstr "Kroasia"

#: ../../keyboard.pm_.c:172
msgid "Israeli"
msgstr "Ibrani"

#: ../../keyboard.pm_.c:173
msgid "Israeli (Phonetic)"
msgstr "Ibrani (Phonetic)"

#: ../../keyboard.pm_.c:174
msgid "Iranian"
msgstr "Iran"

#: ../../keyboard.pm_.c:175
msgid "Icelandic"
msgstr "Islandia"

#: ../../keyboard.pm_.c:176
msgid "Italian"
msgstr "Itali"

#: ../../keyboard.pm_.c:177
msgid "Japanese 106 keys"
msgstr "Jepang 106 tombol"

#: ../../keyboard.pm_.c:178
msgid "Korean keyboard"
msgstr "Keyboard Korea"

#: ../../keyboard.pm_.c:179
msgid "Latin American"
msgstr "Amerika Latin"

#: ../../keyboard.pm_.c:180
msgid "Macedonian"
msgstr "Macedonia"

#: ../../keyboard.pm_.c:181
msgid "Dutch"
msgstr "Belanda"

#: ../../keyboard.pm_.c:182
msgid "Lithuanian AZERTY (old)"
msgstr "Lithuania AZERTY (lama)"

#: ../../keyboard.pm_.c:184
msgid "Lithuanian AZERTY (new)"
msgstr "Lithuania AZERTY (baru)"

#: ../../keyboard.pm_.c:185
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lithuania \"number row\" QWERTY"

#: ../../keyboard.pm_.c:186
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lithuania \"phonetic\" QWERTY"

#: ../../keyboard.pm_.c:188
msgid "Polish (qwerty layout)"
msgstr "Polandia (layout qwerty)"

#: ../../keyboard.pm_.c:189
msgid "Polish (qwertz layout)"
msgstr "Polandia (layout qwertz)"

#: ../../keyboard.pm_.c:190
msgid "Portuguese"
msgstr "Portugis"

#: ../../keyboard.pm_.c:191
msgid "Canadian (Quebec)"
msgstr "Kanada (Quebec)"

#: ../../keyboard.pm_.c:193
msgid "Russian (Yawerty)"
msgstr "Rusia (Yawerty)"

#: ../../keyboard.pm_.c:194
msgid "Swedish"
msgstr "Swedia"

#: ../../keyboard.pm_.c:195
msgid "Slovenian"
msgstr "Slovenia"

#: ../../keyboard.pm_.c:196
msgid "Slovakian (QWERTZ)"
msgstr "Slovakia (QWERTZ)"

#: ../../keyboard.pm_.c:197
msgid "Slovakian (QWERTY)"
msgstr "Slovakia (QWERTY)"

#: ../../keyboard.pm_.c:198
msgid "Slovakian (Programmers)"
msgstr "Slovakia (Programmer)"

#: ../../keyboard.pm_.c:199
msgid "Thai keyboard"
msgstr "Keyboard Thailand"

#: ../../keyboard.pm_.c:200
msgid "Turkish (traditional \"F\" model)"
msgstr "Turki (model \"F\" tradisional)"

#: ../../keyboard.pm_.c:201
msgid "Turkish (modern \"Q\" model)"
msgstr "Turki (model \"Q\" modern)"

#: ../../keyboard.pm_.c:202
msgid "Ukrainian"
msgstr "Ukrania"

#: ../../keyboard.pm_.c:205
msgid "US keyboard (international)"
msgstr "Keyboard US (internasional)"

#: ../../keyboard.pm_.c:206
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnam \"numeric row\" QWERTY"

#: ../../keyboard.pm_.c:207
msgid "Yugoslavian (latin/cyrillic)"
msgstr "Yugoslavia (latin/cyrillic)"

#: ../../lvm.pm_.c:70
msgid "Remove the logical volumes first\n"
msgstr "Hapus dulu volume logiknya\n"

#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
msgstr "Mouse Sun"

#: ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"

#: ../../mouse.pm_.c:32
msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"

#: ../../mouse.pm_.c:33
msgid "Generic PS2 Wheel Mouse"
msgstr "Mouse PS2 wheel generik"

#: ../../mouse.pm_.c:34
msgid "GlidePoint"
msgstr "GlidePoint"

#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:62
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"

#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:58
msgid "Genius NetMouse"
msgstr "Genius NetMouse"

#: ../../mouse.pm_.c:38
msgid "Genius NetScroll"
msgstr "Genius NetScroll"

#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:67
msgid "1 button"
msgstr "1 tombol"

#: ../../mouse.pm_.c:44
msgid "Generic"
msgstr "Generik"

#: ../../mouse.pm_.c:45
msgid "Wheel"
msgstr "wheel"

#: ../../mouse.pm_.c:48
msgid "serial"
msgstr "serial"

#: ../../mouse.pm_.c:50
msgid "Generic 2 Button Mouse"
msgstr "Mouse Generik 2 Tombol"

#: ../../mouse.pm_.c:51
msgid "Generic 3 Button Mouse"
msgstr "Mouse Generik 3 Tombol"

#: ../../mouse.pm_.c:52
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"

#: ../../mouse.pm_.c:53
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"

#: ../../mouse.pm_.c:54
msgid "Mouse Systems"
msgstr "Sistem Mouse (serial)"

#: ../../mouse.pm_.c:56
msgid "Logitech CC Series"
msgstr "Logitech CC Series"

#: ../../mouse.pm_.c:57
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"

#: ../../mouse.pm_.c:59
msgid "MM Series"
msgstr "MM Series"

#: ../../mouse.pm_.c:60
msgid "MM HitTablet"
msgstr "MM HitTablet"

#: ../../mouse.pm_.c:61
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (serial, old C7 type)"

#: ../../mouse.pm_.c:65
msgid "busmouse"
msgstr "busmouse"

#: ../../mouse.pm_.c:68
msgid "2 buttons"
msgstr "2 tombol"

#: ../../mouse.pm_.c:69
msgid "3 buttons"
msgstr "3 tombol"

#: ../../mouse.pm_.c:72
msgid "none"
msgstr "tidak ada"

#: ../../mouse.pm_.c:74
msgid "No mouse"
msgstr "Tidak pakai mouse"

#: ../../my_gtk.pm_.c:356
msgid "Finish"
msgstr "Selesai"

#: ../../my_gtk.pm_.c:356
msgid "Next ->"
msgstr "Lanjutkan ->"

#: ../../my_gtk.pm_.c:357
msgid "<- Previous"
msgstr "<- Tahap sebelumnya"

#: ../../my_gtk.pm_.c:617
msgid "Is this correct?"
msgstr "Apa sudah sesuai?"

#: ../../netconnect.pm_.c:143
msgid "Internet configuration"
msgstr "Konfigurasi Internet"

#: ../../netconnect.pm_.c:144
msgid "Do you want to try to connect to the Internet now?"
msgstr "Anda ingin test koneksi Internetnya sekarang?"

#: ../../netconnect.pm_.c:148
msgid "Testing your connection..."
msgstr "Testing koneksi ini..."

#: ../../netconnect.pm_.c:154 ../../standalone/draknet_.c:196
msgid "The system is now connected to Internet."
msgstr "Sistem ini sekarang terhubung ke Internet."

#: ../../netconnect.pm_.c:155
msgid "For Security reason, it will be disconnected now."
msgstr "Untuk alasan keamanan, sekarang akan diputus koneksinya"

#: ../../netconnect.pm_.c:156 ../../standalone/draknet_.c:196
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
"Sistem ini sepertinya tidak terhubung ke Internet deh.\n"
"Cobalah konfigurasikan ulang koneksinya."

#: ../../netconnect.pm_.c:161 ../../netconnect.pm_.c:904
#: ../../netconnect.pm_.c:934 ../../netconnect.pm_.c:1012
msgid "Network Configuration"
msgstr "Konfigurasi Jaringan"

#: ../../netconnect.pm_.c:222 ../../netconnect.pm_.c:266
#: ../../netconnect.pm_.c:276 ../../netconnect.pm_.c:283
#: ../../netconnect.pm_.c:293
msgid "ISDN Configuration"
msgstr "konfigurasi ISDN"

#: ../../netconnect.pm_.c:222
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
msgstr ""
"Pilih provider Anda.\n"
"Bila tidak ada dalam daftar, pilih Tidak Terdaftar"

#: ../../netconnect.pm_.c:236
msgid "Connection Configuration"
msgstr "Konfigurasi Koneksi"

#: ../../netconnect.pm_.c:237
msgid "Please fill or check the field below"
msgstr "Silakan isi atau cek kolom berikut"

#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:552
msgid "Card IRQ"
msgstr "IRQ card"

#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:553
msgid "Card mem (DMA)"
msgstr "Mem card (DMA)"

#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:554
msgid "Card IO"
msgstr "IO Card"

#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:555
msgid "Card IO_0"
msgstr "IO_0 card"

#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:556
msgid "Card IO_1"
msgstr "IO_1 card"

#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:557
msgid "Your personal phone number"
msgstr "Nomor telepon Anda"

#: ../../netconnect.pm_.c:245 ../../standalone/draknet_.c:558
msgid "Provider name (ex provider.net)"
msgstr "Nama provider (misalnya provider.net.id)"

#: ../../netconnect.pm_.c:246 ../../standalone/draknet_.c:559
msgid "Provider phone number"
msgstr "Nomor telepon provider"

#: ../../netconnect.pm_.c:247
msgid "Provider dns 1"
msgstr "DNS Provider 1"

#: ../../netconnect.pm_.c:248
msgid "Provider dns 2"
msgstr "DNS Provider 2"

#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:564
msgid "Dialing mode"
msgstr "mode dial"

#: ../../netconnect.pm_.c:250 ../../standalone/draknet_.c:562
msgid "Account Login (user name)"
msgstr "Login Account (username)"

#: ../../netconnect.pm_.c:251 ../../standalone/draknet_.c:563
msgid "Account Password"
msgstr "Password Account"

#: ../../netconnect.pm_.c:261
msgid "Europe"
msgstr "Eropa"

#: ../../netconnect.pm_.c:261
msgid "Europe (EDSS1)"
msgstr "Eropa (EDSS1)"

#: ../../netconnect.pm_.c:263
msgid "Rest of the world"
msgstr "Tempat-tempat lain"

#: ../../netconnect.pm_.c:263
msgid ""
"Rest of the world \n"
" no D-Channel (leased lines)"
msgstr ""
"Tempat-tempat lain \n"
" tidak pakai D-Channel (leased lines)"

#: ../../netconnect.pm_.c:267
msgid "Which protocol do you want to use ?"
msgstr "Protokol apa yang ingin Anda gunakan?"

#: ../../netconnect.pm_.c:277
msgid "What kind of card do you have?"
msgstr "Tipe card mana yang anda punya?"

#: ../../netconnect.pm_.c:278
msgid "I don't know"
msgstr "Duh, saya tidak tahu"

#: ../../netconnect.pm_.c:278
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"

#: ../../netconnect.pm_.c:278
msgid "PCI"
msgstr "PCI"

#: ../../netconnect.pm_.c:284
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
msgstr ""
"\n"
"Bila Anda punya card ISA, konfigurasi pada layar berikut nanti harusnya "
"sudah benar.\n"
"\n"
"Bila Anda punya card PCMCIA, Anda harus mengetahui irq dan io card Anda "
"itu.\n"

#: ../../netconnect.pm_.c:288
msgid "Abort"
msgstr "Batalkan"

#: ../../netconnect.pm_.c:288
msgid "Continue"
msgstr "Lanjutkan"

#: ../../netconnect.pm_.c:294
msgid "Which is your ISDN card ?"
msgstr "manakah card ISDN yang Anda punya?"

#: ../../netconnect.pm_.c:314
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
msgstr ""
"Saya mendeteksi adanya sebuah card ISDN PCI, tapi saya tidak tahu tipenya. "
"Silakan pilih card PCI tersebut pada layar berikutnya."

#: ../../netconnect.pm_.c:323
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Saya tidak menemukan card ISDN PCI. Silakan pilih satu pada layar berikutnya."

#: ../../netconnect.pm_.c:371
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
"Tidak ada adapter jaringan ethernet yang terdeteksi di sistem ini.\n"
"Saya jadinya tidak dapat mengkonfigurasikan tipe koneksi ini deh."

#: ../../netconnect.pm_.c:375 ../../standalone/drakgw_.c:232
msgid "Choose the network interface"
msgstr "Pilih interface jaringan"

#: ../../netconnect.pm_.c:376
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
msgstr "Pilih adapter jaringan yang akan digunakan untuk terhubung ke Internet"

#: ../../netconnect.pm_.c:385 ../../netconnect.pm_.c:700
#: ../../netconnect.pm_.c:845 ../../standalone/drakgw_.c:223
msgid "Network interface"
msgstr "Interface jaringan"

#: ../../netconnect.pm_.c:386
msgid ""
"\n"
"Do you agree?"
msgstr ""
"\n"
"Setuju?"

#: ../../netconnect.pm_.c:386
msgid "I'm about to restart the network device:\n"
msgstr "Saya akan merestart device jaringan ini:\n"

#: ../../netconnect.pm_.c:484
msgid "ADSL configuration"
msgstr "konfigurasi ADSL"

#: ../../netconnect.pm_.c:485
msgid "Do you want to start your connection at boot?"
msgstr "Anda mau jalankan koneksi ini saat boot?"

#: ../../netconnect.pm_.c:620
msgid "Please choose which serial port your modem is connected to."
msgstr "Di serial port mana modem Anda disambungkan?"

#: ../../netconnect.pm_.c:625
msgid "Dialup options"
msgstr "Parameter Dialup"

#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:566
msgid "Connection name"
msgstr "Nama koneksi"

#: ../../netconnect.pm_.c:627 ../../standalone/draknet_.c:567
msgid "Phone number"
msgstr "Nomor telepon"

#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Login ID"
msgstr "Login ID"

#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
msgid "Authentication"
msgstr "Autentikasi"

#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
msgid "PAP"
msgstr "PAP"

#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
msgid "Script-based"
msgstr "Script-based"

#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
msgid "Terminal-based"
msgstr "Terminal-based"

#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:571
msgid "Domain name"
msgstr "Nama domain"

#: ../../netconnect.pm_.c:632 ../../standalone/draknet_.c:572
msgid "First DNS Server (optional)"
msgstr "Server DNS Primary (boleh diisi/tidak)"

#: ../../netconnect.pm_.c:633 ../../standalone/draknet_.c:573
msgid "Second DNS Server (optional)"
msgstr "Server DNS Sekondari (boleh tidak diisi)"

#: ../../netconnect.pm_.c:701
msgid ""
"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr "Saya akan merestart device jaringan $netc->{NET_DEVICE}. Setuu?"

#: ../../netconnect.pm_.c:745
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
"Anda bisa putuskan atau konfigurasi koneksi yang ada sekarang."

#: ../../netconnect.pm_.c:745 ../../netconnect.pm_.c:748
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
"\n"
"Anda bisa mengkonfigurasikan ulang koneksi ini"

#: ../../netconnect.pm_.c:745
msgid "You are currently connected to internet."
msgstr "Sekarang Anda sedang terhubung ke Internet."

#: ../../netconnect.pm_.c:748
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
"\n"
"Anda bisa sambungkan koneksi ke Internet atau mengkonfigurasikan ulang."

#: ../../netconnect.pm_.c:748
msgid "You are not currently connected to Internet."
msgstr "Anda sedang tidak terhubung ke Internet."

#: ../../netconnect.pm_.c:752 ../../standalone/net_monitor_.c:81
msgid "Connect to Internet"
msgstr "Sambungkan koneksi Internet"

#: ../../netconnect.pm_.c:754
msgid "Disconnect from Internet"
msgstr "Putuskan koneksi Internet"

#: ../../netconnect.pm_.c:756
msgid "Configure network connection (LAN or Internet)"
msgstr "Konfigureasikan koneksi jaringan (LAN atau Internet)"

#: ../../netconnect.pm_.c:759
msgid "Internet connection & configuration"
msgstr "Koneksi dan konfigurasi Internet"

#: ../../netconnect.pm_.c:811 ../../netconnect.pm_.c:961
#: ../../netconnect.pm_.c:971 ../../netconnect.pm_.c:986
msgid "Network Configuration Wizard"
msgstr "Wizard Konfigurasi Jaringan"

#: ../../netconnect.pm_.c:812
msgid "External ISDN modem"
msgstr "Modem ISDN external"

#: ../../netconnect.pm_.c:812
msgid "Internal ISDN card"
msgstr "card ISDN Internal"

#: ../../netconnect.pm_.c:812
msgid "What kind is your ISDN connection?"
msgstr "Tipe koneksi ISDN apa yang Anda miliki?"

#: ../../netconnect.pm_.c:833 ../../netconnect.pm_.c:882
msgid "Connect to the Internet"
msgstr "Hubungan ke Internet"

#: ../../netconnect.pm_.c:834
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
"Cara yang umum untuk terkoneksi ke adsl adalah dengan menggunakan pppoe.\n"
"Namun ada juga yang menggunakan pptp, dan ada yang pakai dhcp saja.\n"
"Bila ragu, pilih saja 'gunakan pppoe'"

#: ../../netconnect.pm_.c:836
msgid "use dhcp"
msgstr "gunakan dhcp"

#: ../../netconnect.pm_.c:836
msgid "use pppoe"
msgstr "gunakan pppoe"

#: ../../netconnect.pm_.c:836
msgid "use pptp"
msgstr "gunakan pptp"

#: ../../netconnect.pm_.c:846
#, c-format
msgid "I'm about to restart the network device %s. Do you agree?"
msgstr "Sekarang saya mau restart device jaringan %s. Setuju ?"

#: ../../netconnect.pm_.c:883
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcpcd"
msgstr ""
"Klien dhcp mana yang ingin Anda pakai?\n"
"defaultnya adalah dhcpcd"

#: ../../netconnect.pm_.c:900
msgid "Network configuration"
msgstr "Konfigurasi Jaringan"

#: ../../netconnect.pm_.c:901
msgid "Do you want to restart the network"
msgstr "Anda ingin restart konfigurasi ini?"

#: ../../netconnect.pm_.c:904
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
msgstr ""
"Problem terjadi saat restart netword:\n"
"\n"
"%s"

#: ../../netconnect.pm_.c:935
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
"Click on Ok to keep your configuration, or cancel to reconfigure your "
"Internet & Network connection.\n"
msgstr ""
"Jaringan Anda sudah terkonfigurasi lho\n"
"Silakan klik OK untuk rekonfigurasi ulang koneksi jaringan/internet ini, "
"atau batal bilaAnda berubah pikiran.\n"

#: ../../netconnect.pm_.c:962
msgid ""
"Welcome to The Network Configuration Wizard\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
"Selamat Datang di Wizard Koneksi Jaringan\n"
"\n"
"Sekarang kita akan mengkonfigurasikan internet/jaringan.\n"
"Bila Anda tidak mau menggunakan deteksi otomatis, mohon untuk tidak memilih "
"pada checkboxnya.\n"

#: ../../netconnect.pm_.c:964
msgid "Choose the profile to configure"
msgstr "Pilih profil yang hendak Anda konfigurasikan"

#: ../../netconnect.pm_.c:965
msgid "Use auto detection"
msgstr "Gunakan auto detek"

#: ../../netconnect.pm_.c:971 ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Mendeteksi alat..."

#: ../../netconnect.pm_.c:978
msgid "Normal modem connection"
msgstr "Konfigurasi koneksi modem biasa "

#: ../../netconnect.pm_.c:978
#, c-format
msgid "detected on port %s"
msgstr "dideteksi pada port %s"

#: ../../netconnect.pm_.c:979
msgid "ISDN connection"
msgstr "Konfigurasi koneksi ISDN"

#: ../../netconnect.pm_.c:979
#, c-format
msgid "detected %s"
msgstr "%s telah terdeteksi"

#: ../../netconnect.pm_.c:980
msgid "DSL (or ADSL) connection"
msgstr "Konfigurasi koneksi DSL (atau ADSL)"

#: ../../netconnect.pm_.c:980
#, c-format
msgid "detected on interface %s"
msgstr "telah dideteksi ada pada interface %s"

#: ../../netconnect.pm_.c:981
msgid "Cable connection"
msgstr "Konfigurasi jaringan kabel"

#: ../../netconnect.pm_.c:982
msgid "LAN connection"
msgstr "konfigurasi LAN"

#: ../../netconnect.pm_.c:982
msgid "ethernet card(s) detected"
msgstr "ada ethernet card yang terdeteksi"

#: ../../netconnect.pm_.c:987
msgid "How do you want to connect to the Internet?"
msgstr "Pilih cara yang Anda inginkan untuk terhubung ke Internet"

#: ../../netconnect.pm_.c:1004
msgid ""
"Congratulation, The network and internet configuration is finished.\n"
"\n"
"The configuration will now be applied to your system."
msgstr ""
"Selamat deh., jaringan dan internet telah dikonfigurasikan.\n"
"\n"
"Konfigurasi yang tadi telah dilakukan sekarang akan dijalankan di sistem ini."

#: ../../netconnect.pm_.c:1007
msgid ""
"After that is done, we recommend you to restart your X\n"
"environnement to avoid hostname changing problem."
msgstr ""
"Setelah itu, silakan restart X Anda agar bebas dari masalah pergantian\n"
"nama host."

#: ../../network.pm_.c:253
msgid "no network card found"
msgstr "Tidak ada card network ya?"

#: ../../network.pm_.c:277 ../../network.pm_.c:387
msgid "Configuring network"
msgstr "Konfigureasi jaringan"

#: ../../network.pm_.c:278
msgid ""
"Please enter your host name if you know it.\n"
"Some DHCP servers require the hostname to work.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''."
msgstr ""
"Masukkan nama komputernya karena ada server DHCP yang mengharuskan adanya "
"hostname ini.\n"
"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
"misalnya ``samson.ciawi.mdamt.net''."

#: ../../network.pm_.c:282 ../../network.pm_.c:392
msgid "Host name"
msgstr "Nama Host"

#: ../../network.pm_.c:319
msgid ""
"WARNING: This device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"AWAS: device ini sebelumnya telah dikonfigurasikan untuk terhubung ke "
"Internet.\n"
"Tekan OK untuk tetap menggunakan konfigurasi lama.\n"
"Bila ingin menggantinya, silakan ganti isi pada kolom-kolom di konfigurasi "
"ini."

#: ../../network.pm_.c:324
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
"Masukkan konfigurasi IP untuk mesin ini.\n"
"Tiap item harus diberikan sebagai alamat IP dalam notasi decimal\n"
"bertitik (misalnya 202.159.35.32)."

#: ../../network.pm_.c:333 ../../network.pm_.c:334
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurasi perangkat jaringan %s"

#: ../../network.pm_.c:334
msgid " (driver $module)"
msgstr " (driver $module)"

#: ../../network.pm_.c:336 ../../standalone/draknet_.c:231
#: ../../standalone/draknet_.c:427
msgid "IP address"
msgstr "Alamat IP"

#: ../../network.pm_.c:337 ../../standalone/draknet_.c:428
msgid "Netmask"
msgstr "Netmask"

#: ../../network.pm_.c:338
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"

#: ../../network.pm_.c:338
msgid "Automatic IP"
msgstr "IP otomatis"

#: ../../network.pm_.c:359 ../../printerdrake.pm_.c:102
#: ../../printerdrake.pm_.c:425
msgid "IP address should be in format 1.2.3.4"
msgstr "Alamat IP harus dalam format 1.2.3.4"

#: ../../network.pm_.c:388
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one"
msgstr ""
"Masukkan nama komputernya.\n"
"Hostname (nama komputer) sebaiknya merupakan nama host yg fully-qualified\n"
"misalnya ``mdamt.fdns.net''.\n"
"Anda juga bisa masukkan alamat IP gatewaynya kalau ada"

#: ../../network.pm_.c:393
msgid "DNS server"
msgstr "Server DNS"

#: ../../network.pm_.c:394 ../../standalone/draknet_.c:565
msgid "Gateway"
msgstr "Gateway"

#: ../../network.pm_.c:396
msgid "Gateway device"
msgstr "Device Gateway"

#: ../../network.pm_.c:407
msgid "Proxies configuration"
msgstr "Konfigurasi proxy"

#: ../../network.pm_.c:408
msgid "HTTP proxy"
msgstr "Proxy HTTP"

#: ../../network.pm_.c:409
msgid "FTP proxy"
msgstr "Proxy FTP"

#: ../../network.pm_.c:412
msgid "Proxy should be http://..."
msgstr "Proxy biasanya http://..."

#: ../../network.pm_.c:413
msgid "Proxy should be ftp://..."
msgstr "Proxy biasanya ftp://..."

#: ../../partition_table.pm_.c:563
msgid "Extended partition not supported on this platform"
msgstr "Partisi extended nggak bisa dipakai di platform ini"

#: ../../partition_table.pm_.c:581
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr ""
"Anda punya tabel partisi tapi tidak bisa saya gunakan.\n"
"Satu-satunya cara adalah memindahkan partisi primary Anda ke partisi\n"
"extended selanjutnya"

#: ../../partition_table.pm_.c:675
#, c-format
msgid "Error reading file %s"
msgstr "Error saat membaca file %s"

#: ../../partition_table.pm_.c:682
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Proses restore dari file %s gagal: %s"

#: ../../partition_table.pm_.c:684
msgid "Bad backup file"
msgstr "File backup rusak"

#: ../../partition_table.pm_.c:706
#, c-format
msgid "Error writing to file %s"
msgstr "Error pada saat menulis file %s"

#: ../../partition_table_raw.pm_.c:161
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random trash"
msgstr ""
"Ada sesuatu yang buruk terjadi pada drive Anda,\n"
"hal ini saya ketahui saat gagal mengecek integritas data di situ.\n"
"Artinya, data apapun yang ditulis ke situ akan gagal."

#: ../../pkgs.pm_.c:24
msgid "must have"
msgstr "harus ada"

#: ../../pkgs.pm_.c:25
msgid "important"
msgstr "penting"

#: ../../pkgs.pm_.c:26
msgid "very nice"
msgstr "bagus deh"

#: ../../pkgs.pm_.c:27
msgid "nice"
msgstr "bagus"

#: ../../pkgs.pm_.c:28
msgid "maybe"
msgstr "yaah..gimana yaa"

#: ../../printer.pm_.c:20
msgid "Local printer"
msgstr "Printer lokal"

#: ../../printer.pm_.c:21
msgid "Remote printer"
msgstr "printer remote"

#: ../../printer.pm_.c:23
msgid "Remote lpd server"
msgstr "Server lpd remote"

#: ../../printer.pm_.c:24
msgid "Network printer (socket)"
msgstr "Printer jaringan (socket)"

#: ../../printer.pm_.c:25
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"

#: ../../printer.pm_.c:26
msgid "NetWare"
msgstr "NetWare"

#: ../../printer.pm_.c:27 ../../printerdrake.pm_.c:158
#: ../../printerdrake.pm_.c:160
msgid "Printer Device URI"
msgstr "Device Printer URI"

#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Test port"

#: ../../printerdrake.pm_.c:40
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "Printer dengan tipe \"%s\" telah terdeteksi di "

#: ../../printerdrake.pm_.c:52
msgid "Local Printer Device"
msgstr "Alat printer lokal"

#: ../../printerdrake.pm_.c:53
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
"Device mana yang terhubung ke printer\n"
"(ingat, /dev/lp0 = LPT1:) ?\n"

#: ../../printerdrake.pm_.c:55
msgid "Printer Device"
msgstr "Device Printer"

#: ../../printerdrake.pm_.c:74
msgid "Remote lpd Printer Options"
msgstr "Pilihan printer lpd remote"

#: ../../printerdrake.pm_.c:75
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
"Untuk dapat mencetak ke antrian lpd remote, Anda perlu\n"
"tuliskan nama host server printer dan nama antrian\n"
"yang digunakan untuk mencetak di server itu."

#: ../../printerdrake.pm_.c:78
msgid "Remote hostname"
msgstr "Nama Host Remote"

#: ../../printerdrake.pm_.c:79
msgid "Remote queue"
msgstr "Antrian remote"

#: ../../printerdrake.pm_.c:88
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Pilihan printer SMB (Windows 95/NT)"

#: ../../printerdrake.pm_.c:89
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
"TCP/IP hostname!) and possibly the IP address of the print server, as\n"
"well as the share name for the printer you wish to access and any\n"
"applicable user name, password, and workgroup information."
msgstr ""
"Untuk dapat mencetak ke Printer SMB, Anda perlu \n"
"memberitahu saya nama host SMB (biasanya tidak selalu\n"
"sama dengan nama host TCP/IPnya) dan juga alamat IP server printer,\n"
"dan juga nama share printer tersebut, oh iya...\n"
"nama user, password, dan info workgroupnya juga."

#: ../../printerdrake.pm_.c:94
msgid "SMB server host"
msgstr "Host server SMB"

#: ../../printerdrake.pm_.c:95
msgid "SMB server IP"
msgstr "IP server SMB"

#: ../../printerdrake.pm_.c:96
msgid "Share name"
msgstr "Nama share"

#: ../../printerdrake.pm_.c:99
msgid "Workgroup"
msgstr "Workgroup"

#: ../../printerdrake.pm_.c:124
msgid "NetWare Printer Options"
msgstr "Pilihan printer NetWare"

#: ../../printerdrake.pm_.c:125
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
"TCP/IP hostname!) as well as the print queue name for the printer you\n"
"wish to access and any applicable user name and password."
msgstr ""
"Kalau ingin mencetak pakai printer NetWare, sekarang coba\n"
"beritahu saya nama server printer NetWarenya (tidak selalu sama \n"
"dengan nama TCP/IPnya lho) juga nama antrian printer yang \n"
"Anda ingin gunakan beserta nama user dan passwordnya."

#: ../../printerdrake.pm_.c:129
msgid "Printer Server"
msgstr "Server Printer"

#: ../../printerdrake.pm_.c:130
msgid "Print Queue Name"
msgstr "Nama antrian printer"

#: ../../printerdrake.pm_.c:142
msgid "Socket Printer Options"
msgstr "Pilihan printer socket"

#: ../../printerdrake.pm_.c:143
msgid ""
"To print to a socket printer, you need to provide the\n"
"hostname of the printer and optionally the port number."
msgstr ""
"Untuk mencetak ke printer soket, Anda perlu menuliskan\n"
"hostname printer itu dan juga nomor portnya."

#: ../../printerdrake.pm_.c:145
msgid "Printer Hostname"
msgstr "Hostname Printer"

#: ../../printerdrake.pm_.c:146 ../../printerdrake.pm_.c:422
msgid "Port"
msgstr "Port"

#: ../../printerdrake.pm_.c:159
msgid "You can specify directly the URI to access the printer with CUPS."
msgstr "Anda bisa memasukan URI untuk mengakses printer dengan CUPS."

#: ../../printerdrake.pm_.c:192 ../../printerdrake.pm_.c:244
msgid "What type of printer do you have?"
msgstr "Tipe printer yang anda inginkan?"

#: ../../printerdrake.pm_.c:204 ../../printerdrake.pm_.c:305
msgid "Do you want to test printing?"
msgstr "Anda ingin test cetak?"

#: ../../printerdrake.pm_.c:207 ../../printerdrake.pm_.c:316
msgid "Printing test page(s)..."
msgstr "Saya sedang test cetak..."

#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:324
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
"Printing status:\n"
"%s\n"
"\n"
"Does it work properly?"
msgstr ""
"Halaman test telah dikirim ke daemon printer.\n"
"Akan butuh waktu sebentar untuk mulai mencetak.\n"
"Status cetak:\n"
"%s\n"
"\n"
"Bisa tercetak nggak?"

#: ../../printerdrake.pm_.c:218 ../../printerdrake.pm_.c:328
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
"Does it work properly?"
msgstr ""
"Halaman test telah dikirim ke daemon printer.\n"
"Akan butuh waktu sebentar untuk mulai mencetak.\n"
"Bisa tercetak nggak?"

#: ../../printerdrake.pm_.c:234
msgid "Yes, print ASCII test page"
msgstr "Ya, Test cetak ascii"

#: ../../printerdrake.pm_.c:235
msgid "Yes, print PostScript test page"
msgstr "Ya, Test cetak postscript"

#: ../../printerdrake.pm_.c:236
msgid "Yes, print both test pages"
msgstr "Ya, Test cetak postscript dan text ascii"

#: ../../printerdrake.pm_.c:243
msgid "Configure Printer"
msgstr "Konfigurasi Printer"

#: ../../printerdrake.pm_.c:273
msgid "Printer options"
msgstr "Parameter printer"

#: ../../printerdrake.pm_.c:274
msgid "Paper Size"
msgstr "Ukuran Kertas"

#: ../../printerdrake.pm_.c:275
msgid "Eject page after job?"
msgstr "Kertas di eject habis ngeprint?"

#: ../../printerdrake.pm_.c:280
msgid "Uniprint driver options"
msgstr "Parameter driver Uniprint"

#: ../../printerdrake.pm_.c:281
msgid "Color depth options"
msgstr "Pilihan kedalaman warna"

#: ../../printerdrake.pm_.c:283
msgid "Print text as PostScript?"
msgstr "Cetak text dalam PostScript?"

#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Betulkan efek tangga pada teks ?"

#: ../../printerdrake.pm_.c:287
msgid "Number of pages per output pages"
msgstr "Jumlah halaman per output"

#: ../../printerdrake.pm_.c:288
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Margin Kiri/Kanan dalam point (1/72 inci)"

#: ../../printerdrake.pm_.c:289
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Margin Atas/Bawah dalam point (1/72 inci)"

#: ../../printerdrake.pm_.c:291
msgid "Extra GhostScript options"
msgstr "Extra option pada GhostScript"

#: ../../printerdrake.pm_.c:293
msgid "Extra Text options"
msgstr "Pilihan text extra"

#: ../../printerdrake.pm_.c:295
msgid "Reverse page order"
msgstr "Balikkan urutan halaman"

#: ../../printerdrake.pm_.c:345
msgid "Would you like to configure a printer?"
msgstr "Anda ingin konfigurasikan printer?"

#: ../../printerdrake.pm_.c:351
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
msgstr ""
"Ini adalah antrian print\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."

#: ../../printerdrake.pm_.c:370
msgid "CUPS starting"
msgstr "CUPS dijalankan"

#: ../../printerdrake.pm_.c:370
msgid "Reading CUPS drivers database..."
msgstr "Saya sedang membaca database driver CUPS..."

#: ../../printerdrake.pm_.c:384 ../../printerdrake.pm_.c:450
#: ../../printerdrake.pm_.c:471 ../../printerdrake.pm_.c:479
msgid "Select Printer Connection"
msgstr "Pilih koneksi Printer"

#: ../../printerdrake.pm_.c:385 ../../printerdrake.pm_.c:472
msgid "How is the printer connected?"
msgstr "Bagaimana printer ini disambung ke komputer?"

#: ../../printerdrake.pm_.c:392
msgid "Select Remote Printer Connection"
msgstr "Pilih koneksi Printer remote"

#: ../../printerdrake.pm_.c:393
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected.\n"
"In case of doubt, select \"Remote CUPS server\"."
msgstr ""
"Dengan server CUPS remote, Anda tidak perlu mengkonfigurasikan\n"
"printer di sini; printer akan secara otomatis dideteksi.\n"
"Bila ragu, pilih saja \"server CUPS Remote\"."

#: ../../printerdrake.pm_.c:416
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected\n"
"unless you have a server on a different network; in the\n"
"latter case, you have to give the CUPS server IP address\n"
"and optionally the port number."
msgstr ""
"Dengan server CUPS remote, Anda tidak perlu mengkonfigurasikan\n"
"printer di sini; printer nantinya akan secara otomatis dideteksi\n"
"kecuali servernya ada di jaringan lain; dalam hal ini, Anda perlu\n"
"memasukan alamat IP server CUPS itu dan nomor portnya kalau ada."

#: ../../printerdrake.pm_.c:421
msgid "CUPS server IP"
msgstr "IP server CUPS"

#: ../../printerdrake.pm_.c:429
msgid "Port number should be numeric"
msgstr "Nomor port harus berupa angka"

#: ../../printerdrake.pm_.c:451 ../../printerdrake.pm_.c:480
msgid "Remove queue"
msgstr "Hapus Antrian"

#: ../../printerdrake.pm_.c:454
msgid ""
"Name of printer should contains only letters, numbers and the underscore"
msgstr "Nama printer haruslah berupa huruf, angka, dan underscore"

#: ../../printerdrake.pm_.c:461
msgid ""
"Every printer need a name (for example lp).\n"
"Other parameters such as the description of the printer or its location\n"
"can be defined. What name should be used for this printer and\n"
"how is the printer connected?"
msgstr ""
"Tiap antrian cetak harus punya nama (biasanya lp).\n"
"Parameter lain seperti keterangan dan lokasi printer bisa ditambahkan.\n"
"Sekarang saya mau tanya,\n"
"nama printer yang digunakan ini apa yah ?\n"
"Juga saya mau tanya bagaimana printernya disambungkan ke situ?"

#: ../../printerdrake.pm_.c:465
msgid "Name of printer"
msgstr "Nama Printer"

#: ../../printerdrake.pm_.c:466
msgid "Description"
msgstr "Keterangan"

#: ../../printerdrake.pm_.c:467
msgid "Location"
msgstr "Lokasi"

#: ../../printerdrake.pm_.c:482
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
"name and directory should be used for this queue and how is the printer "
"connected?"
msgstr ""
"Tiap antrian cetak harus punya nama (biasanya lp) dan direktori spool\n"
"yang dialokasikan untuknya. Sekarang saya mau tanya,\n"
"nama antrian dan direktori yang digunakan apa yah ?\n"
"Juga saya mau tanya bagaimana printernya disambungkan ke situ?"

#: ../../printerdrake.pm_.c:489
msgid "Name of queue"
msgstr "Nama Antrian"

#: ../../printerdrake.pm_.c:490
msgid "Spool directory"
msgstr "Direktori spool"

#: ../../printerdrake.pm_.c:491
msgid "Printer Connection"
msgstr "Koneksi Printer"

#: ../../raid.pm_.c:33
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Tidak dapat menambah partisi ke RAID md%d yang terformat"

#: ../../raid.pm_.c:103
msgid "Can't write file $file"
msgstr "Tidak bisa menulis ke file $file"

#: ../../raid.pm_.c:128
msgid "mkraid failed"
msgstr "mkraid gagal"

#: ../../raid.pm_.c:128
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid gagal (mungkin raidtoolsnya nggak ada?)"

#: ../../raid.pm_.c:144
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Partisi tidak cukup untuk level RAID %d\n"

#: ../../services.pm_.c:16
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""

#: ../../services.pm_.c:17
msgid "Anacron a periodic command scheduler."
msgstr "Skeduler command periodik, Anacron"

#: ../../services.pm_.c:18
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"apmd digunakan untuk monitoring status batere dan mencatatnya di syslog.\n"
"apmd juga bisa untuk mematikan mesin waktu baterenya habis."

#: ../../services.pm_.c:20
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
"Menjalankan perintah terjadwal dengan perintah at pada waktu tertentu\n"
"saat at dijalankan, dan memulai perintah secara batch waktu rata-rata load\n"
"sedang rendah."

#: ../../services.pm_.c:22
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
"Cron adalah program UNIX standar yang menjalankan program user\n"
"pada waktu yang terjadwal. vixie cron memiliki fitur yang lebih lengkap\n"
"dari cron UNIX biasa, termasuk pembenahan sekuriti yang lebih baik dan\n"
"lebih mantapnya option pada konfigurasinya."

#: ../../services.pm_.c:25
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"GPM memberikan akses ke mouse pada aplikasi Linux yang text based semacam\n"
"Midnight Commander. Dia juga bisa bikin cut-and-paste dengan mouse pada "
"konsol\n"
"dan juga bikin menu pop-up di konsol."

#: ../../services.pm_.c:28
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""

#: ../../services.pm_.c:30
msgid ""
"Apache is a World Wide Web server.  It is used to serve HTML files\n"
"and CGI."
msgstr ""
"Apache adalah server World Wide Web. Dia dipakai untuk menyediakan file\n"
"HTML dan CGI."

#: ../../services.pm_.c:32
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"daemon superserver internet (biasa dipanggil inetd) bertugas untuk\n"
"menjalankan servis-servis internet yang dibutuhkan. Dia bertanggung jawab\n"
"atas banyak server, misalnya telnet, ftp, rsh, dan rlogin. Menonaktifkan\n"
"inetd berarti menonaktifkan semua servis-servis tadi."

#: ../../services.pm_.c:36
msgid ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
msgstr ""

#: ../../services.pm_.c:38
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard.  This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
"Paket ini akan meload map keyboard yang dipilih di file\n"
"/etc/sysconfig/keyboard. Mapnya bisa dipilih dari utility kbdconfig.\n"
"Mending Anda aktifkan aja deh ini."

#: ../../services.pm_.c:41
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""

#: ../../services.pm_.c:43
msgid "Automatic detection and configuration of hardware at boot."
msgstr ""

#: ../../services.pm_.c:44
msgid ""
"Linuxconf will sometimes arrange to perform various tasks\n"
"at boot-time to maintain the system configuration."
msgstr ""

#: ../../services.pm_.c:46
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
"lpd adalah daemon printer yang jadi tulang punggung lpr. Dia\n"
"bertugas sebagai server yang memberi perintah kepada printer untuk mencetak."

#: ../../services.pm_.c:48
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""

#: ../../services.pm_.c:50
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
"named (BIND) adalah Domain Name Server (DNS) yang digunakan untuk\n"
"menterjemahkan nama host ke IP address."

#: ../../services.pm_.c:52
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Mount dan unmount semua Network File System (NFS), SMB (Lan\n"
"Manager/Windows), dan NCP (Netware)."

#: ../../services.pm_.c:54
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Aktif/nonaktifkan semua interface network yang terkonfigurasi nyala\n"
"pada saat boot."

#: ../../services.pm_.c:56
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"NFS adalah protokol populer untuk file sharing lewat network TCP/IP.\n"
"Servis ini dinyalakan untuk membuat NFS server bisa jalan dengan "
"menggunakan\n"
"konfigurasi pada file /etc/exports."

#: ../../services.pm_.c:59
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
"NFS adalah protokol populer untuk file sharing di TCP/IP\n"
"Servis ini memberikan fungsi file lock pada NFS."

#: ../../services.pm_.c:61
msgid ""
"Automatically switch on numlock key locker under console\n"
"and XFree at boot."
msgstr ""

#: ../../services.pm_.c:63
msgid "Support the OKI 4w and compatible winprinters."
msgstr ""

#: ../../services.pm_.c:64
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops.  It won't get started unless configured so it is safe to "
"have\n"
"it installed on machines that don't need it."
msgstr ""
"PCMCIA digunakan untuk menjalankan perangkat semacam ethernet atau modem "
"pada laptop.\n"
"Dia nggak bisa jalan kecuali dikonfigurasikan di sini, jadi nggak apa-apa\n"
"kalau nggak diinstall di mesin yang nggak perlu PCMCIA."

#: ../../services.pm_.c:67
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
"Portmapper mengelola koneksi RPC, yang digunakan oleh protokol seperti\n"
"NFS dan NIS. Server portmap harus jalan di mesin yang bertindak sebagai\n"
"server untuk protokol yang menggunakan mekanisme RPC."

#: ../../services.pm_.c:70
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
"Postfix adalah Mail Transport Agent yang berupa program yang bertugas\n"
"mengantarkan surat dari suatu mesin ke mesin yang lain."

#: ../../services.pm_.c:72
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"Menyimpan dan mengembalikan pool entropi sistem untuk membuat\n"
"angka acak dengan kualitas sangat acak."

#: ../../services.pm_.c:74
msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle"
msgstr ""

#: ../../services.pm_.c:76
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
"Daemon routed digunakan untuk update tabel routing IP otomatis liwat\n"
"protokol RIP. RIP dipakai di jaringan kecil, dan semakin besar jaringannya\n"
"maka protokol routing yang canggih pun semakin dibutuhkan."

#: ../../services.pm_.c:79
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"Protokol rstat digunakan pada jaringan untuk mengambil\n"
"ukuran kinerja sistem di network."

#: ../../services.pm_.c:81
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"Protokol ruser digunakan di jaringan untuk mengidentifikasi siapa\n"
"yang lagi login di jaringan."

#: ../../services.pm_.c:83
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
"Protokol rwho digunakan untuk melihat daftar user yang sedang login\n"
"di suatu sistem yang juga menjalankan daemon rwho (mirip dengan finger)."

#: ../../services.pm_.c:85
#, fuzzy
msgid "Launch the sound system on your machine"
msgstr "Jalankan X-Window saat sistem dimulai"

#: ../../services.pm_.c:86
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files.  It is a good idea to always run syslog."
msgstr ""
"Syslog adalah fasilitas yang digunakan para daemon untuk mencatat\n"
"pesan log sistem di file. Hidupkan aja deh syslognya."

#: ../../services.pm_.c:88
msgid "Load the drivers for your usb devices."
msgstr ""

#: ../../services.pm_.c:89
#, fuzzy
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr "Menghidupkan dan mematikan Server Font X saat boot dan mati."

#: ../../services.pm_.c:118
msgid "Choose which services should be automatically started at boot time"
msgstr "Pilih service mana yang hendak dijalankan saat boot scr otomatis"

#: ../../services.pm_.c:137
msgid "running"
msgstr "sedang jalan"

#: ../../services.pm_.c:137
msgid "stopped"
msgstr "dihentikan"

#: ../../services.pm_.c:151
msgid "Services and deamons"
msgstr "Services dan daemon"

#: ../../services.pm_.c:156
msgid ""
"No additionnal information\n"
"about this service, sorry."
msgstr ""
"Mohon maaf, informasi lengkap\n"
"tentang layanan ini tidak tersedia."

#: ../../services.pm_.c:163
msgid "On boot"
msgstr "Saat boot"

#: ../../standalone/diskdrake_.c:67
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
"Saya nggak bisa baca tabel partisi, udah hancur lebur nih :(\n"
"Aku akan coba hapus partisi yg jeleknya"

#: ../../standalone/drakgw_.c:37 ../../standalone/drakgw_.c:180
msgid "Internet Connection Sharing"
msgstr "Internet Connection Sharing"

#: ../../standalone/drakgw_.c:118
msgid "Internet Connection Sharing currently enabled"
msgstr "Internet Connection Sharing sudah aktif"

#: ../../standalone/drakgw_.c:119
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"Konfigurasi Internet Connection Sharing telah seleasi.\n"
"Namun sekarang sudah aktif.\n"
"\n"
"Apa yang ingin Anda lakukan?"

#: ../../standalone/drakgw_.c:123
msgid "disable"
msgstr "Matikan"

#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "dismiss"
msgstr "Selesai"

#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "reconfigure"
msgstr "Konfigurasi ulang"

#: ../../standalone/drakgw_.c:126
msgid "Disabling servers..."
msgstr "Server-server sedang dimatikan"

#: ../../standalone/drakgw_.c:134
msgid "Internet connection sharing is now disabled."
msgstr "Internet Connection Sharing telah dimatikan"

#: ../../standalone/drakgw_.c:143
msgid "Internet Connection Sharing currently disabled"
msgstr "Internet Connection Sharing masih dimatikan"

#: ../../standalone/drakgw_.c:144
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
msgstr ""
"Konfigurasi Internet Connection Sharing telah seleasi.\n"
"Namun sekarang masih dimatikan.\n"
"\n"
"Apa yang ingin Anda lakukan?"

#: ../../standalone/drakgw_.c:148
msgid "enable"
msgstr "Aktifkan"

#: ../../standalone/drakgw_.c:155
msgid "Enabling servers..."
msgstr "Server-server akan dinyalakan"

#: ../../standalone/drakgw_.c:160
msgid "Internet connection sharing is now enabled."
msgstr "Internet Connection Sharing sudah aktif"

#: ../../standalone/drakgw_.c:168
msgid "Config file content could not be interpreted."
msgstr "Isi file konfigurasi tidak dapat dibaca"

#: ../../standalone/drakgw_.c:168
msgid "Unrecognized config file"
msgstr "Config file tidak dikenal"

#: ../../standalone/drakgw_.c:181
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
"this computer's Internet connection.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
"Komputer ini bisa dikonfigurasikan agar bisa membagi koneksi Internetnya.\n"
"Dengan cara ini, komputer lain di jaringan lokal bisa menggunakn koneksi\n"
"Internet milik komputer ini.\n"
"\n"
"Perhatikan: Anda mesti punya adapter jaringan untuk mensetup Local Area "
"Network (LAN)."

#: ../../standalone/drakgw_.c:207
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interface %s (pakai module %s)"

#: ../../standalone/drakgw_.c:208
#, c-format
msgid "Interface %s"
msgstr "Interface %s"

#: ../../standalone/drakgw_.c:216
msgid "No network adapter on your system!"
msgstr "Tidak ada adapter jaringan di sistem ini!"

#: ../../standalone/drakgw_.c:217
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
"Aduh, tiada adapter jaringan ethernet yang berhasil saya cari di sistem ini. "
"Silakan jalankan tool konfigurasi hardware deh."

#: ../../standalone/drakgw_.c:224
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
"%s\n"
"\n"
"I am about to setup your Local Area Network with that adapter."
msgstr ""
"Hanya ada satu adapter jaringan yang dikonfigurasikan di sistem ini:\n"
"\n"
"%s\n"
"\n"
"Apakah Anda mau melakukan setup Local Area Network untuk adapter itu?"

#: ../../standalone/drakgw_.c:233
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Silahkan pilih adapter jaringan yang hendak disambung ke Local Area Network "
"Anda."

#: ../../standalone/drakgw_.c:242
msgid ""
"Warning, the network adapter is already configured. I will reconfigure it."
msgstr ""
"Awas, adapter jaringannya sudah dikonfigurasikan nih. Mau dikonfigurasikan "
"ulang?"

#: ../../standalone/drakgw_.c:253
msgid "Potential LAN address conflict found in current config of $_!\n"
msgstr ""
"Ada konflik alamat yang potensial pada LAN yang ada pada konfigurasi "
"sekarang di $_!\n"

#: ../../standalone/drakgw_.c:261 ../../standalone/drakgw_.c:267
msgid "Firewalling configuration detected!"
msgstr "Saya mendeteksi adanya konfigurasi firewall"

#: ../../standalone/drakgw_.c:262 ../../standalone/drakgw_.c:268
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
"Awas! Ada konfigurasi firewall yang sudah ada nih. Anda nanti perlu mengecek "
"dan membetulkan dengan cara manual setelah instalasi."

#: ../../standalone/drakgw_.c:276
msgid "Configuring..."
msgstr "Sedang membuat konfigurasi..."

#: ../../standalone/drakgw_.c:277
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Mengkonfigurasikan skrip, menginstall software, menjalankan server..."

#: ../../standalone/drakgw_.c:307
msgid "Problems installing package $_"
msgstr "Aduh, saya ada masalah saat menginstall paket $_"

#: ../../standalone/drakgw_.c:590
msgid "Congratulations!"
msgstr "Wah Selamat nih!"

#: ../../standalone/drakgw_.c:591
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
"Semuanya sudah dikonfigurasikan.\n"
"Anda sekarang bisa membagi koneksi Internet dengan komputer-komputer lain "
"pada Local Area Network di tempat Anda, dengan menggunakan konfigurasi "
"jaringan otomatis (DHCP)."

#: ../../standalone/drakgw_.c:608
msgid "The setup has already been done, but it's currently disabled."
msgstr "Konfigurasi telah seleasi.Namun sekarang masih dimatikan."

#: ../../standalone/drakgw_.c:609
msgid "The setup has already been done, and it's currently enabled."
msgstr "Konfigurasi telah selesai.Namun sekarang sudah aktif."

#: ../../standalone/drakgw_.c:610
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Internet Connection Sharing belum pernah dikonfigurasikan"

#: ../../standalone/drakgw_.c:615
msgid "Internet connection sharing configuration"
msgstr "Koneksi dan konfigurasi sharing Internet"

#: ../../standalone/drakgw_.c:622
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
"\n"
"%s\n"
"\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Selamat datang di utiliti Internet Connection Sharing!\n"
"\n"
"%s\n"
"\n"
"Silakan pencet Konfigurasikan untuk mulai."

#: ../../standalone/draknet_.c:59
#, c-format
msgid "Network configuration (%d adapters)"
msgstr "Konfigurasi Jaringan (adapter %d)"

#: ../../standalone/draknet_.c:66 ../../standalone/draknet_.c:539
msgid "Profile: "
msgstr "Profil: "

#: ../../standalone/draknet_.c:74
msgid "Del profile..."
msgstr "Hapus profil..."

#: ../../standalone/draknet_.c:80
msgid "Profile to delete:"
msgstr "Profil yang hendak dihapus:"

#: ../../standalone/draknet_.c:108
msgid "New profile..."
msgstr "Buat profil baru..."

#: ../../standalone/draknet_.c:114
msgid "Name of the profile to create:"
msgstr "Beri nama profil yang hendak dibuat:"

#: ../../standalone/draknet_.c:140
msgid "Hostname: "
msgstr "Nama Host: "

#: ../../standalone/draknet_.c:147
msgid "Internet access"
msgstr "Akses Internet"

#: ../../standalone/draknet_.c:160
msgid "Type:"
msgstr "Tipe: "

#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
msgid "Gateway:"
msgstr "Gateway:"

#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
msgid "Interface:"
msgstr "Interface: "

#: ../../standalone/draknet_.c:168
msgid "Status:"
msgstr "Status: "

#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
#: ../../standalone/net_monitor_.c:122 ../../standalone/net_monitor_.c:224
msgid "Connected"
msgstr "Tersambung"

#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
#: ../../standalone/net_monitor_.c:83 ../../standalone/net_monitor_.c:122
#: ../../standalone/net_monitor_.c:224
msgid "Not connected"
msgstr "Belum tersambung"

#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
msgid "Connect..."
msgstr "Sambungkan..."

#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
msgid "Disconnect..."
msgstr "Koneksi diputus"

#: ../../standalone/draknet_.c:191
#, fuzzy
msgid "Starting your connection..."
msgstr "Testing koneksi ini..."

#: ../../standalone/draknet_.c:199
msgid "Closing your connection..."
msgstr "Tutup koneksi ini..."

#: ../../standalone/draknet_.c:204
msgid ""
"The connection is not closed.\n"
"Try to do it manually by running\n"
"/etc/sysconfig/network-scripts/net_cnx_down\n"
"in root."
msgstr ""
"Koneksi belum ditutup.\n"
"Cobalah lakukan secara manual sebagai root lalu ketikkan\n"
"/etc/sysconfig/network-scripts/net_cnx_down"

#: ../../standalone/draknet_.c:207
msgid "The system is now disconnected."
msgstr "Sistem ini sekarang diputus koneksinya"

#: ../../standalone/draknet_.c:219
msgid "Configure Internet Access..."
msgstr "Konfigurasi Akses Internet..."

#: ../../standalone/draknet_.c:226 ../../standalone/draknet_.c:411
msgid "LAN configuration"
msgstr "konfigurasi LAN"

#: ../../standalone/draknet_.c:231
msgid "Adapter"
msgstr "Adapter"

#: ../../standalone/draknet_.c:231
msgid "Driver"
msgstr "Driver"

#: ../../standalone/draknet_.c:231
msgid "Interface"
msgstr "Interface"

#: ../../standalone/draknet_.c:231
msgid "Protocol"
msgstr "Protokol"

#: ../../standalone/draknet_.c:250
msgid "Configure Local Area Network..."
msgstr "Konfigurasi Local Area Network..."

#: ../../standalone/draknet_.c:283
msgid "Normal Mode"
msgstr "Modus normal"

#: ../../standalone/draknet_.c:288
msgid "Apply"
msgstr "Pasang"

#: ../../standalone/draknet_.c:307
msgid "Please Wait... Applying the configuration"
msgstr "Tunggu ya, sedang mengaktifkan konfigurasi"

#: ../../standalone/draknet_.c:391
msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""

#: ../../standalone/draknet_.c:415
msgid "LAN Configuration"
msgstr "konfigurasi LAN"

#: ../../standalone/draknet_.c:423
#, c-format
msgid "Adapter %s: %s"
msgstr "Adapeer %s: %s"

#: ../../standalone/draknet_.c:429
msgid "Boot Protocol"
msgstr "Protokol Boot"

#: ../../standalone/draknet_.c:430
msgid "Started on boot"
msgstr "Dijalankan saat boot"

#: ../../standalone/draknet_.c:431
msgid "DHCP client"
msgstr "Klien DHCP"

#: ../../standalone/draknet_.c:466 ../../standalone/draknet_.c:470
msgid "Disable"
msgstr "Matikan"

#: ../../standalone/draknet_.c:466 ../../standalone/draknet_.c:470
msgid "Enable"
msgstr "Aktifkan"

#: ../../standalone/draknet_.c:504
msgid ""
"You don't have any internet connection.\n"
"Create one first by clicking on 'Configure'"
msgstr ""

#: ../../standalone/draknet_.c:528
msgid "Internet connection configuration"
msgstr "konfigurasi koneksi Internet"

#: ../../standalone/draknet_.c:532
msgid "Internet Connection Configuration"
msgstr "konfigurasi koneksi Internet"

#: ../../standalone/draknet_.c:541
msgid "Connection type: "
msgstr "Tipe koneksi"

#: ../../standalone/draknet_.c:547
msgid "Parameters"
msgstr "Parameter"

#: ../../standalone/draknet_.c:560
msgid "Provider dns 1 (optional)"
msgstr "DNS Provider 1 (boleh diisi boleh tidak)"

#: ../../standalone/draknet_.c:561
msgid "Provider dns 2 (optional)"
msgstr "DNS Provider 2 (boleh diisi boleh tidak)"

#: ../../standalone/draknet_.c:574
msgid "Ethernet Card"
msgstr "Card Ethernet"

#: ../../standalone/draknet_.c:575
msgid "DHCP Client"
msgstr "Klien DHCP"

#: ../../standalone/draksec_.c:21
msgid "Welcome To Crackers"
msgstr "Selamat Datang di Crackers"

#: ../../standalone/draksec_.c:22
msgid "Poor"
msgstr "Lemah Buanget"

#: ../../standalone/draksec_.c:26
msgid "Paranoid"
msgstr "Wah Sinting nih"

#: ../../standalone/draksec_.c:29
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
"Level ini harus hati-hati. Level ini akan membuat sistem Anda akan mudah\n"
"digunakan, tapi sangat sensitif: mesin ini tidak boleh digunakan untuk\n"
"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
"akses password."

#: ../../standalone/draksec_.c:32
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr "Password akan diaktifkan, tapi mohon jangan disambungkan ke jaringan."

#: ../../standalone/draksec_.c:33
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
msgstr ""
"Ada beberapa peningkatan level security, yang utama adalah ada lebih banyak\n"
"peringatan dan cek sekuriti yang lebih ketat."

#: ../../standalone/draksec_.c:35
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
msgstr ""
"Ini adalah standard sekuriti yang dianjurkan untuk komputer yang akan\n"
"digunakan untuk terkoneksi ke Internet sebagai klien. Akan ada cek sekuriti\n"
"dulu nih."

#: ../../standalone/draksec_.c:37
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which accept\n"
"connections from many clients. "
msgstr ""
"Dengan level sekuriti ini, sistem akan dapat digunakan sebagai server.\n"
"Sekuritinya akan lebih tinggi lagi untuk dapat melayani koneksi klien\n"
"dengan lebih aman."

#: ../../standalone/draksec_.c:40
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
msgstr ""
"Kita akan pakai fitur 4 level, tapi sekarang sistem akan sepenuhnya "
"ditutup.\n"
"Fitur sekuriti sekarang sudah maksimum."

#: ../../standalone/draksec_.c:52
msgid "Setting security level"
msgstr "Pilih Tingkat Security"

#: ../../standalone/drakxconf_.c:44
msgid "Control Center"
msgstr "Pusat Kontrol"

#: ../../standalone/drakxconf_.c:45
msgid "Choose the tool you want to use"
msgstr "Pilih tool yang hendak digunakan"

#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "cara pakai: keyboarddrake [--expert] [keyboard]\n"

#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
"Apakah Anda ingin membuat tombol BackSpace menjadi Delete di dalam konsol?"

#: ../../standalone/livedrake_.c:23
msgid "Change Cd-Rom"
msgstr "Ganti CDROMnya"

#: ../../standalone/livedrake_.c:24
msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
"Ganti CDROMnya!\n"
"\n"
"Silahkan masukkan CDROM Instalasi di drive Anda dan tekan OK\n"
"Kalau Anda nggak punya CDROM ini, teken Batal aja untuk membatalkan "
"instalasidari CD ini."

#: ../../standalone/livedrake_.c:34
msgid "Unable to start live upgrade !!!\n"
msgstr "Aduh, saya tidak bisa menjalankan upgrade live nih !!!\n"

#: ../../standalone/mousedrake_.c:50
msgid "no serial_usb found\n"
msgstr "tidak ada serial_usb\n"

#: ../../standalone/mousedrake_.c:54
msgid "Emulate third button?"
msgstr "Emulasikan tombol ketiga?"

#: ../../standalone/mousedrake_.c:131
#, fuzzy
msgid "Test the mouse here."
msgstr "Silakan di test mousenya"

#: ../../standalone/net_monitor_.c:40 ../../standalone/net_monitor_.c:52
msgid "Network Monitoring"
msgstr "Monitoring Jaringan"

#: ../../standalone/net_monitor_.c:56
msgid "Statistics"
msgstr "Statistik"

#: ../../standalone/net_monitor_.c:59
msgid "Sending Speed: "
msgstr "Kecepatan Kirim"

#: ../../standalone/net_monitor_.c:61
msgid "Receiving Speed: "
msgstr "Kecepatan Terima: "

#: ../../standalone/net_monitor_.c:66
msgid "Close"
msgstr "Tutup"

#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
msgid "Connecting to Internet "
msgstr "Sambung koneksi Internet"

#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
msgid "Disconnecting from Internet "
msgstr "Putuskan koneksi Internet"

#: ../../standalone/net_monitor_.c:114
msgid "Disconnection from Internet failed."
msgstr "koneksi Internet gagal diputus"

#: ../../standalone/net_monitor_.c:115
msgid "Disconnection from Internet complete."
msgstr "koneksi Internet selesai diputus"

#: ../../standalone/net_monitor_.c:117
msgid "Connection complete."
msgstr "Koneksi selesai"

#: ../../standalone/net_monitor_.c:118
msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandrake Control Center."
msgstr ""
"Koneksi gagal\n"
"Silakan periksa konfigurasinya di Mandrake Control Center"

#: ../../standalone/net_monitor_.c:188
msgid "sent: "
msgstr "terkirim: "

#: ../../standalone/net_monitor_.c:191
msgid "received: "
msgstr "diterima: "

#: ../../standalone/net_monitor_.c:222
msgid "Connect"
msgstr "Tersambung"

#: ../../standalone/net_monitor_.c:222
msgid "Disconnect"
msgstr "Putus"

#: ../../standalone/tinyfirewall_.c:29
msgid "Firewalling Configuration"
msgstr "konfigurasi firewall"

#: ../../standalone/tinyfirewall_.c:42
msgid "Firewalling configuration"
msgstr "konfigurasi firewall"

#: ../../standalone/tinyfirewall_.c:77
msgid ""
"Firewalling\n"
"\n"
"You already have set up a firewall.\n"
"Click on Configure to change or remove the firewall"
msgstr ""
"Firewall\n"
"\n"
"Anda sudah ada firewall.\n"
"Silakan tekan Konfigurasikan untuk mengganti atau menghapus firewall"

#: ../../standalone/tinyfirewall_.c:81
msgid ""
"Firewalling\n"
"\n"
"Click on Configure to set up a standard firewall"
msgstr ""
"Firewall\n"
"\n"
"Silakan tekan Konfigurasikan untuk mensetup firewall standar"

#: ../../tinyfirewall.pm_.c:10
msgid ""
"tinyfirewall configurator\n"
"\n"
"This configures a personal firewall for this Linux Mandrake machine.\n"
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
"konfigurator tinyfirewall\n"
"\n"
"Program ini mengkonfigurasikan firewall pribadi untuk sistem Linux Mandrake "
"ini.\n"
"Untuk membuat solusi firewall yang lebih bagus lagi, silakan coba\n"
"distribusi Mandrake Security Firewall"

#: ../../tinyfirewall.pm_.c:15
msgid ""
"We'll now ask you questions about which services you'd like to allow\n"
"the Internet to connect to.  Please think carefully about these\n"
"questions, as your computer's security is important.\n"
"\n"
"Please, if you're not currently using one of these services, firewall\n"
"it off.  You can change this configuration anytime you like by\n"
"re-running this application!"
msgstr ""
"Sekarang saya akan tanyakan layanan mana saja yang hendak Anda bolehkan\n"
"untuk dapat diakses dari Internet. Silakan fikirkan dulu masak-masak akan\n"
"hal ini, karena keamanan komputer Anda sangat penting kan.\n"
"\n"
"Ayo, bila Anda tidak pakai layanan-layanan ini, matikan saja lewat "
"firewall.\n"
"Anda bisa ubah konfigurasikan lagi kapan-kapan dengan menjalankan\n"
"aplikasi ini lagi nantinya."

#: ../../tinyfirewall.pm_.c:22
msgid ""
"Are you running a web server on this machine that you need the whole\n"
"Internet to see? If you are running a webserver that only needs to be\n"
"accessed by this machine, you can safely answer NO here.\n"
"\n"
msgstr ""
"Apakah Anda ingin webserver Anda juga dapat diakses dari Internet ??\n"
"Bila Anda ingin webserver Anda HANYA ingin diakses dari KOMPUTER INI SAJA\n"
"maka jawab saja TIDAK di sini\n"
"\n"

#: ../../tinyfirewall.pm_.c:27
msgid ""
"Are you running a name server on this machine? If you didn't set one\n"
"up to give away IP and zone information to the whole Internet, please\n"
"answer no.\n"
"\n"
msgstr ""
"Apakah Anda menjalankan Name server di komputer ini? Bila Anda\n"
"tidak menjalankan nameserver untuk menjawab informasi IP dan zone untuk "
"Internet\n"
"silakan jawab TIDAK.\n"
"\n"

#: ../../tinyfirewall.pm_.c:32
msgid ""
"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
"is a telnet-replacement that you might use to login. If you're using\n"
"telnet now, you should definitely switch to ssh. telnet is not\n"
"encrypted -- so some attackers can steal your password if you use\n"
"it. ssh is encrypted and doesn't allow for this eavesdropping."
msgstr ""
"Apakah Anda ingin membuka koneksi Secure Shell (ssh) ?\n"
"SSH adalah pengganti telnet yang mungkin hendak Anda gunakan.\n"
"Bila Anda hanya menggunakan telnet sekarang, silakan ganti ke ssh.\n"
"telnet tidak dienkripsi loh -- jadi orang lain bisa mencuri password Anda\n"
"saat telnet. SSH dienkripsi dan tidak bisa disadap."

#: ../../tinyfirewall.pm_.c:37
msgid ""
"Do you want to allow incoming telnet connections?\n"
"This is horribly unsafe, as we explained in the previous screen. We\n"
"strongly recommend answering No here and using ssh in place of\n"
"telnet.\n"
msgstr ""
"Apakah Anda ingin membuka koneksi telnet?\n"
"Tapi ini sangatlah tidak aman sebagaimana dijelaskan pada layar sebelumnya.\n"
"Ayo deh jawab TIDAK dan gunakan SSH saja.\n"

#: ../../tinyfirewall.pm_.c:42
msgid ""
"Are you running an FTP server here that you need accessible to the\n"
"Internet? If you are, we strongly recommend that you only use it for\n"
"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
"attackers, since FTP also uses no encryption for transferring passwords.\n"
msgstr ""
"Apakah Anda hendak membuka koneksi FTP yang ingin diakses dari Internet?\n"
"Bila ya, silakan gunakan saja untuk transfer anonimous. Password yang "
"dikirimkan\n"
"oleh FTP bisa dicuri oleh cracker, karena FTP tidak diacak saat pertukaran "
"password terjadi.\n"

#: ../../tinyfirewall.pm_.c:47
msgid ""
"Are you running a mail server here? If you're sending you \n"
"messages through pine, mutt or any other text-based mail client,\n"
"you probably are.  Otherwise, you should firewall this off.\n"
"\n"
msgstr ""
"Apakah Anda menjalankan server mail ? Bila Anda mengirimkan email\n"
"dengan menggunakan pine, mutt, atau klien mail teks, maka sebaiknya iya.\n"
"Selainnya, matikan saja deh.\n"
"\n"

#: ../../tinyfirewall.pm_.c:52
msgid ""
"Are you running a POP or IMAP server here? This would\n"
"be used to host non-web-based mail accounts for people via \n"
"this machine.\n"
"\n"
msgstr ""
"Apakah Anda menjalankan server POP atau IMAP ?\n"
"Fasilitas ini bisa digunakan untuk menampung account email non web untuk\n"
"umum.\n"
"\n"

#: ../../tinyfirewall.pm_.c:57
msgid ""
"You appear to be running a 2.2 kernel.  If your network IP\n"
"is automatically set by a computer in your home or office \n"
"(dynamically assigned), we need to allow for this.  Is\n"
"this the case?\n"
msgstr ""
"Wah, Anda pakai kernel 2.2 yah... Bila IP jaringan Anda diset sendiri\n"
"oleh komputer di kantor atau rumah (secara dinamis)\n"
"maka kita harus jawab YA di sini. Benar nggak demikian?\n"

#: ../../tinyfirewall.pm_.c:62
msgid ""
"Is your computer getting time syncronized to another computer?\n"
"Mostly, this is used by medium-large Unix/Linux organizations\n"
"to synchronize time for logging and such.  If you're not part\n"
"of a larger office and haven't heard of this, you probably \n"
"aren't."
msgstr ""
"Apakah komputer Anda mendapatkan informasi jam dari komputer lain?\n"
"Biasanya, fasilitas ini digunakan oleh organisasi sedang/besar Unix/Linux\n"
"untuk sinkronisasi waktu untuk logging dan sebagainya. Bila Anda\n"
"tidak tergabung dari kantor yang besar atau belum pernah dengar ini "
"sebelumnya.\n"
"jawab TIDAK deh"

#: ../../tinyfirewall.pm_.c:67
msgid ""
"Configuration complete.  May we write these changes to disk?\n"
"\n"
"\n"
"\n"
msgstr ""
"Konfigurasi selesai. Kita simpan ya?\n"
"\n"
"\n"
"\n"

#: ../../tinyfirewall.pm_.c:83
#, c-format
msgid "Can't open %s: %s\n"
msgstr "Tidak bisa buka %s: %s\n"

#: ../../tinyfirewall.pm_.c:85
#, c-format
msgid "Can't open %s for writing: %s\n"
msgstr "error membuka file %s untuk ditulisi: %s\n"

#: ../../share/compssUsers:999
msgid "Clients for different protocols including ssh"
msgstr "Klien untuk berbagai protokol, termasuk ssh"

#: ../../share/compssUsers:999
msgid "Development"
msgstr "Development"

#: ../../share/compssUsers:999
msgid "Workstation"
msgstr "Workstation"

#: ../../share/compssUsers:999
msgid "Firewall/Router"
msgstr "Server, Firewall/Router"

#: ../../share/compssUsers:999
msgid "Personal Information Management"
msgstr "Pengelolaan Informasi Pribadi"

#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grafik"

#: ../../share/compssUsers:999
msgid "Internet"
msgstr "Internet"

#: ../../share/compssUsers:999
msgid "Network Computer (client)"
msgstr "Komputer Jaringan (klien)"

#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Tool untuk audio: player mp3 atau midi, mixer, dsb"

#: ../../share/compssUsers:999
msgid "Internet station"
msgstr "Komputer Internet"

#: ../../share/compssUsers:999
msgid "Office"
msgstr "Aplikasi Perkantoran"

#: ../../share/compssUsers:999
msgid "Multimedia station"
msgstr "Komputer Multimedia"

#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
"Kumpulan tool untuk membaca dan mengirimkan email dan news (pine, mutt, "
"tin..) dan untuk membrowse Web"

#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "Librari, program, dan file include untuk pemrograman C dan C++"

#: ../../share/compssUsers:999
msgid "Domain Name and Network Information Server"
msgstr ""

#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
msgstr "Program untuk mengelola keuangan, misalnya gnucash"

#: ../../share/compssUsers:999
msgid "PostgreSQL or MySQL database server"
msgstr ""

#: ../../share/compssUsers:999
msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr "NFS server, SMB server, Proxy server, SSH server"

#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentasi"

#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, dsb"

#: ../../share/compssUsers:999
msgid "Utilities"
msgstr "Utiliti"

#: ../../share/compssUsers:999
msgid "DNS/NIS "
msgstr "DNS/NIS "

#: ../../share/compssUsers:999
msgid "Graphical Environment"
msgstr "Mode Grafis"

#: ../../share/compssUsers:999
msgid "Multimedia - Sound"
msgstr "Multimedia - Sound"

#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr "Program permainan: arcade, board, strategi, dsb"

#: ../../share/compssUsers:999
msgid "Video players and editors"
msgstr "Editor dan Player Video"

#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Tool untuk konsol"

#: ../../share/compssUsers:999
msgid "Sound and video playing/editing programs"
msgstr "Program untuk memainkan/mengedit suara dan video"

#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Aplikasi untuk Ilmu pengetahuan"

#: ../../share/compssUsers:999
msgid "Editors, shells, file tools, terminals"
msgstr "Editor, shell, tool untuk file, terminal"

#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Buku dan Howto untuk Linux dan Free Software"

#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr ""
"Environment grafis dengan kumpulan aplikasi dan tool desktop yang mudah "
"digunakan"

#: ../../share/compssUsers:999
msgid "Postfix mail server, Inn news server"
msgstr ""

#: ../../share/compssUsers:999
msgid "Games"
msgstr "Game"

#: ../../share/compssUsers:999
msgid "Multimedia - Video"
msgstr "Multimedia - Video"

#: ../../share/compssUsers:999
msgid "Network Computer server"
msgstr "Komputer Server Jaringan"

#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
msgstr "Program Grafis, misalnya The Gimp"

#: ../../share/compssUsers:999
msgid "Office Workstation"
msgstr "Komputer kantoran"

#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
"The K Desktop Environment, environment grafis dasar dengan kumpulan tool-"
"tool yang menyertainya"

#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr "Desktop Grafis tambahan (Gnome, IceWM)"

#: ../../share/compssUsers:999
msgid "Tools to create and burn CD's"
msgstr "Tool untuk membuat dan memburn CD"

#: ../../share/compssUsers:999
msgid "Multimedia - CD Burning"
msgstr "Multimedia - CD Burning"

#: ../../share/compssUsers:999
msgid "Archiving, emulators, monitoring"
msgstr "Archive, emulator, monitoring"

#: ../../share/compssUsers:999
msgid "Database"
msgstr "Server, Database"

#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
"Program office: pengolah kata (kword, abiword), spreadsheet (kspread, "
"gnumeric), viewer pdf,dsb"

#: ../../share/compssUsers:999
msgid "Web/FTP"
msgstr "Server, Web/FTP"

#: ../../share/compssUsers:999
msgid "Server"
msgstr "Server"

#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Keuangan Pribadi"

#: ../../share/compssUsers:999
msgid "Configuration"
msgstr "konfigurasi"

#: ../../share/compssUsers:999
msgid "KDE Workstation"
msgstr "Workstation KDE"

#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
msgstr "Desktop Grafis lainnya"

#: ../../share/compssUsers:999
msgid "Apache, Pro-ftpd"
msgstr "Apache dan Pro-ftpd"

#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
msgstr "Server, Mail/Groupware/News"

#: ../../share/compssUsers:999
msgid "Gnome Workstation"
msgstr "Workstation Gnome"

#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
msgstr "Akses Internet"

#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
msgstr "Tool untuk Palm Pilot ataupun Visor"

#: ../../share/compssUsers:999
msgid "Game station"
msgstr "Game"

#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, dsb"

#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
msgstr "Tools untuk memudahkan konfigurasi komputer."

#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Kumpulan tool untuk mail, news, web, transfer file, dan chat"

#~ msgid "GB"
#~ msgstr "GB"

#~ msgid "KB"
#~ msgstr "KB"

#~ msgid "TB"
#~ msgstr "TB"

#~ msgid "%d minutes"
#~ msgstr "%d menit"

#~ msgid "1 minute"
#~ msgstr "1 menit"

#~ msgid "%d seconds"
#~ msgstr "%d detik"

#~ msgid "cannot fork: "
#~ msgstr "tidak bisa fork: "

#~ msgid "Configure..."
#~ msgstr "Konfigurasikan ..."

#, fuzzy
#~ msgid "Lilo/Grub configuration"
#~ msgstr "konfigurasi LAN"

#~ msgid "Selected size %d%s"
#~ msgstr "Ukuran yang dipilih %d%s"

#~ msgid "Opening your connection..."
#~ msgstr "Buka koneksi ini..."

#~ msgid "Standard tools"
#~ msgstr "Tool Standard"

#~ msgid "This startup script try to load your modules for your usb mouse."
#~ msgstr "Skrip ini akan meload modul untuk mouse usb"

#~ msgid "Configuration de Lilo/Grub"
#~ msgstr "konfigurasi Lilo/Grub"