-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindonesian.php
2125 lines (1891 loc) · 131 KB
/
indonesian.php
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
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* WHMCS Language Files
* Indonesia (id)
*
*
* For instructions on overrides, please visit:
* http://docs.whmcs.com/Language_Overrides
*
* @package WHMCS
* @author Indonesia Webhoster Community <[email protected]>
* @copyright Copyright (c) Jawanet 2016
* @version $Id$
* @link http://www.jawanet.com/
*/
if (!defined("WHMCS")) die("This file cannot be accessed directly");
$_LANG['locale'] = "id_ID";
$_LANG['accountinfo'] = "Informasi Akun";
$_LANG['accountstats'] = "Statistik Akun";
$_LANG['addfunds'] = "Tambah Saldo";
$_LANG['addfundsamount'] = "Jumlah Untuk Ditambahkan";
$_LANG['addfundsmaximum'] = "Maksimal Deposit";
$_LANG['addfundsmaximumbalance'] = "Maksimal Saldo";
$_LANG['addfundsmaximumbalanceerror'] = "Maksimal Jumlah saldo";
$_LANG['addfundsmaximumerror'] = "Jumlah Deposit maksimals adalah";
$_LANG['addfundsminimum'] = "Minimal Deposit";
$_LANG['addfundsminimumerror'] = "Jumlah Deposit minimal adalah";
$_LANG['addmore'] = "Tambahkan Lainnya";
$_LANG['addtocart'] = "Masukan Ke Keranjang";
$_LANG['affiliatesactivate'] = "Aktifkan Akun Afiliasi";
$_LANG['affiliatesamount'] = "Jumlah";
$_LANG['affiliatesbalance'] = "Saldo Saat Ini";
$_LANG['affiliatesbullet1'] = "Receive an initial bonus deposit in your affiliate account of";
$_LANG['affiliatesbullet2'] = "setiap pembayaran klien yang anda arahkan kepada kami selama masa layanan hosting mereka";
$_LANG['affiliatescommission'] = "Komisi";
$_LANG['affiliatesdescription'] = "Bergabung dengan program afiliasi atau lihat pendapatan";
$_LANG['affiliatesdisabled'] = "Saat ini kami tidak menawarkan program afiliasi kepada klien kami.";
$_LANG['affiliatesearn'] = "Pendapatan";
$_LANG['affiliatesearningstodate'] = "Total Pendapatan Sampai Tanggal";
$_LANG['affiliatesfootertext'] = "When you refer someone to our website with your unique referral ID, a cookie is placed on their computer containing this ID so if they bookmark the site and come back later you will still receive the commission.";
$_LANG['affiliateshostingpackage'] = "Paket Hosting";
$_LANG['affiliatesintrotext'] = "Aktivasi akun afiliasi anda hingga:";
$_LANG['affiliateslinktous'] = "Link Ke Kami";
$_LANG['affiliatesnosignups'] = "Anda belum mempunyai pendaftar dari referal anda";
$_LANG['affiliatesrealtime'] = "Statistik ini dalam waktu nyata dan terupdate otomatis";
$_LANG['affiliatesreferallink'] = "Tautan Unik Rejukan Anda";
$_LANG['affiliatesreferals'] = "Referal Anda";
$_LANG['affiliatesregdate'] = "Tanggal Pendaftaran";
$_LANG['affiliatesrequestwithdrawal'] = "Permintan Pencairan";
$_LANG['affiliatessignupdate'] = "Tanggal Pendaftaran";
$_LANG['affiliatesstatus'] = "Status";
$_LANG['affiliatestitle'] = "Afiliasi";
$_LANG['affiliatesvisitorsreferred'] = "Jumlah pengunjung yang dirujuk";
$_LANG['affiliateswithdrawalrequestsuccessful'] = "Permintaan pencairan anda sudah dikirim. Anda akan dihubungi secepatnya.";
$_LANG['affiliateswithdrawn'] = "Total jumlah yang ditarik";
$_LANG['all'] = "SEMUA";
$_LANG['alreadyregistered'] = "Sudah Terdaftar?";
$_LANG['announcementsdescription'] = "Lihat berita & pengumuman";
$_LANG['announcementsnone'] = "Tidak ada Pengumuman untuk Ditampilkan";
$_LANG['announcementsrss'] = "Lihat RSS Feed";
$_LANG['announcementstitle'] = "Pengumuman";
$_LANG['bannedbanexpires'] = "Ban Sudah Berahir";
$_LANG['bannedbanreason'] = "Ban Karena";
$_LANG['bannedhasbeenbanned'] = "telah dibanned";
$_LANG['bannedtitle'] = "IP Banned";
$_LANG['bannedyourip'] = "IP Anda";
$_LANG['cartaddons'] = "Tambahan";
$_LANG['cartbrowse'] = "Lihat Produk & Layanan";
$_LANG['cartconfigdomainextras'] = "Konfigurasi Domain Ekstra";
$_LANG['cartconfigoptionsdesc'] = "Produk/Layanan ini memiliki beberapa pilihan yang dapat Anda pilih dari bawah untuk menyesuaikan pesanan Anda.";
$_LANG['cartconfigserver'] = "Konfigurasi Server";
$_LANG['cartcustomfieldsdesc'] = "Produk/layanan ini memerlukan beberapa informasi tambahan dari Anda untuk memungkinkan kita untuk memproses pesanan Anda.";
$_LANG['cartdomainsconfig'] = "Konfigurasi Domain";
$_LANG['cartdomainsconfigdesc'] = "Below you can configure the domain names in your shopping cart selecting the addon services you would like, providing required information for them and defining the nameservers that they will use.";
$_LANG['cartdomainshashosting'] = "Has Hosting";
$_LANG['cartdomainsnohosting'] = "Tanpa Hosting! Klik Untuk Menambahkan";
$_LANG['carteditproductconfig'] = "Edit Konfigurasi";
$_LANG['cartempty'] = "Keranjang Belanja Anda Kosong";
$_LANG['cartemptyconfirm'] = "Apa anda yakin akan mengosongkan keranjang belanja?";
$_LANG['cartexistingclientlogin'] = "Login Sebagai Klien Terdaftar";
$_LANG['cartexistingclientlogindesc'] = "Untuk menambah pesanan ini ke akun yang ada, Anda akan perlu untuk login di bawah ini.";
$_LANG['cartnameserversdesc'] = "Jika Anda ingin menggunakan nameserver kustom, anda harus masukkan di bawah ini. Secara default, domain baru akan menggunakan nameserver kami untuk hosting di jaringan kami.";
$_LANG['cartproductaddons'] = "Produk Tambahan";
$_LANG['cartproductaddonschoosepackage'] = "Pilih Paket";
$_LANG['cartproductaddonsnone'] = "Tidak ada produk tambahan yang tersedia untuk Produk & Layanan Anda.";
$_LANG['cartproductconfig'] = "Konfigurasi Produk";
$_LANG['cartproductdesc'] = "Produk/Layanan yang Anda pilih memiliki opsi konfigurasi berikut bagi Anda untuk memilih dari.";
$_LANG['cartproductdomain'] = "Domain";
$_LANG['cartproductdomainchoose'] = "Pilih Domain";
$_LANG['cartproductdomaindesc'] = "Produk / layanan yang Anda pilih membutuhkan nama domain. Masukkan nama domain Anda di bawah ini.";
$_LANG['cartproductdomainuseincart'] = "Gunakan domain yang sudah ada di keranjang belanja saya";
$_LANG['cartremove'] = "Hapus";
$_LANG['cartremoveitemconfirm'] = "Apa anda yakin ingin menghapus item ini dari keranjang belanja anda?";
$_LANG['carttaxupdateselections'] = "Pajak akan ditambahkan tergantung propinsi dan negara yang anda pilih. Klik untuk menghitung ulang setelah membuat pilihan.";
$_LANG['carttaxupdateselectionsupdate'] = "Perbarui";
$_LANG['carttitle'] = "Keranjang Belanja";
$_LANG['changessavedsuccessfully'] = "Perubahan Berhasil Disimpan!";
$_LANG['checkavailability'] = "Cek Ketersediaan";
$_LANG['checkout'] = "Selesaikan";
$_LANG['choosecurrency'] = "Pilih Mata Uang";
$_LANG['choosedomains'] = "Pilih Domain";
$_LANG['clickheretologin'] = "Klik di sini untuk login";
$_LANG['clientareaaccountaddons'] = "Produk Tambahan Akun";
$_LANG['clientareaactive'] = "Aktif";
$_LANG['clientareaaddfundsdisabled'] = "Kami tidak mengizinkan penyimpanan dana kepada kami saat ini.";
$_LANG['clientareaaddfundsnotallowed'] = "Anda harus memiliki setidaknya 1 layanan aktif sebelum menambahkan dana, jadi anda tidak dapat menambahkannya saat ini!";
$_LANG['clientareaaddon'] = "Produk Tambahan";
$_LANG['clientareaaddonorderconfirmation'] = "Terima Kasih. Pesanan Addon Anda dibwah ini sudah ditambahkan. Silahkan pilih metode pembayaran dibawah ini.";
$_LANG['clientareaaddonpricing'] = "Harga";
$_LANG['clientareaaddonsfor'] = "Produk Tambahan Untuk";
$_LANG['clientareaaddress1'] = "Alamat 1";
$_LANG['clientareaaddress2'] = "Alamat 2";
$_LANG['clientareabwlimit'] = "Bandwidth Limit";
$_LANG['clientareabwusage'] = "Penggunaan Bandwidth";
$_LANG['clientareacancel'] = "Batalkan Perubahan";
$_LANG['clientareacancelconfirmation'] = "Terima kasih. permintaan pembatalan sudah diajukan. Jika Anda melakukan ini dalam kesalahan, buka tiket dukungan untuk beritahu kami secepatnya atau akun Anda akan dihentikan.";
$_LANG['clientareacancelinvalid'] = "Akun ini telah memiliki permintaan pembatalan yang disampaikan sehingga Anda tidak dapat mengirimkan lain.";
$_LANG['clientareacancellationendofbillingperiod'] = "Akhir Periode Penagihan";
$_LANG['clientareacancellationimmediate'] = "Segera";
$_LANG['clientareacancellationtype'] = "Jenis Pembatalan";
$_LANG['clientareacancelled'] = "Dibatalkan";
$_LANG['clientareacancelproduct'] = "Permintaan Pembatalan Untuk";
$_LANG['clientareacancelreason'] = "Jelaskan sedikit alasan Anda untuk Pembatalan";
$_LANG['clientareacancelrequest'] = "Permintaan Pembatalan Akun";
$_LANG['clientareacancelrequestbutton'] = "Minta Pembatalan";
$_LANG['clientareachangepassword'] = "Ubah Kata Sandi";
$_LANG['clientareachangesuccessful'] = "Detail Anda sukses diperbaharui";
$_LANG['clientareachoosecontact'] = "Pilih Kontak";
$_LANG['clientareacity'] = "Kota";
$_LANG['clientareacompanyname'] = "Nama Perusahaan";
$_LANG['clientareaconfirmpassword'] = "Konfirmasi Kata Sandi";
$_LANG['clientareacontactsemails'] = "Email Preferences";
$_LANG['clientareacontactsemailsdomain'] = "Domain Emails - Renewal Notices, Registration Confirmations, etc...";
$_LANG['clientareacontactsemailsgeneral'] = "General Emails - General Announcements & Password Reminders";
$_LANG['clientareacontactsemailsinvoice'] = "Invoice Emails - Invoices & Billing Reminders";
$_LANG['clientareacontactsemailsproduct'] = "Product Emails - Order Details, Welcome Emails, etc...";
$_LANG['clientareacontactsemailssupport'] = "Support Emails - Allow this user to open tickets in your account";
$_LANG['clientareacountry'] = "Country";
$_LANG['clientareacurrentsecurityanswer'] = "Please enter your current answer";
$_LANG['clientareacurrentsecurityquestion'] = "Please choose your current security question";
$_LANG['clientareadeletecontact'] = "Hapus Kontak";
$_LANG['clientareadeletecontactareyousure'] = "Are you sure you want to delete this contact?";
$_LANG['clientareadescription'] = "View & update your account details";
$_LANG['clientareadisklimit'] = "Disk Space Limit";
$_LANG['clientareadiskusage'] = "Disk Space Usage";
$_LANG['clientareadomainexpirydate'] = "Expiry Date";
$_LANG['clientareadomainnone'] = "Tidak ada domain yang terdaftar dari kami";
$_LANG['clientareaemail'] = "Alamat Email";
$_LANG['clientareaemails'] = "Email Saya";
$_LANG['clientareaemailsdate'] = "Tanggal Terkirim";
$_LANG['clientareaemailsintrotext'] = "Below is a history of all messages we have sent to you. It allows you to easily read any correspondance relating to your account in case you lose any of your emails.";
$_LANG['clientareaemailssubject'] = "Judul Pesan";
$_LANG['clientareaerroraddress1'] = "You did not enter your address (line 1)";
$_LANG['clientareaerroraddress12'] = "Your address can only contain letters, numbers and spaces";
$_LANG['clientareaerrorbannedemail'] = "We don't allow users with the email address provider you entered. Please try another email address.";
$_LANG['clientareaerrorcity'] = "You did not enter your city";
$_LANG['clientareaerrorcity2'] = "Your city can only contain letters and spaces";
$_LANG['clientareaerrorcountry'] = "Please choose your country from the drop down box";
$_LANG['clientareaerroremail'] = "You did not enter your email address";
$_LANG['clientareaerroremailinvalid'] = "Email yang anda masukan tidak benar";
$_LANG['clientareaerrorfirstname'] = "You did not enter your first name";
$_LANG['clientareaerrorfirstname2'] = "Your first name can only contain letters";
$_LANG['clientareaerrorisrequired'] = "di wajibkan";
$_LANG['clientareaerrorlastname'] = "Anda tidak memasukan nama belakang";
$_LANG['clientareaerrorlastname2'] = "Your last name can only contain letters";
$_LANG['clientareaerroroccured'] = "An error occurred, please try again later.";
$_LANG['clientareaerrorpasswordconfirm'] = "You did not confirm your password";
$_LANG['clientareaerrorpasswordnotmatch'] = "The passwords you entered did not match";
$_LANG['clientareaerrorphonenumber'] = "You did not enter your phone number";
$_LANG['clientareaerrorphonenumber2'] = "Your phone number is not valid";
$_LANG['clientareaerrorpostcode'] = "You did not enter your postcode";
$_LANG['clientareaerrorpostcode2'] = "Your postcode can only contain letters, numbers and spaces";
$_LANG['clientareaerrors'] = "The following errors occurred:";
$_LANG['clientareaerrorstate'] = "You did not enter your state";
$_LANG['clientareaexpired'] = "Habis";
$_LANG['clientareafirstname'] = "Nama Depan";
$_LANG['clientareafraud'] = "Fraud";
$_LANG['clientareafullname'] = "Nama klien";
$_LANG['clientareaheader'] = "Selamat Datang di area klien kami di mana Anda dapat mengelola akun Anda dengan kami. Halaman ini memberikan gambaran singkat dari akun Anda termasuk permintaan dukungan dan faktur yang belum dibayar. Pastikan Anda menyimpan rincian kontak Anda hingga hingga saat ini.";
$_LANG['clientareahostingaddons'] = "Tambahan";
$_LANG['clientareahostingaddonsintro'] = "Anda mempunyai produk tambahan untuk produk.";
$_LANG['clientareahostingaddonsview'] = "Lihat";
$_LANG['clientareahostingamount'] = "Jumlah";
$_LANG['clientareahostingdomain'] = "Domain";
$_LANG['clientareahostingnextduedate'] = "Tanggal Tagihan Selanjutnya";
$_LANG['clientareahostingpackage'] = "Paket";
$_LANG['clientareahostingregdate'] = "Tanggal Pendaftaran";
$_LANG['clientarealastname'] = "Nama Belakang";
$_LANG['clientarealastupdated'] = "Pembaharuan Terahir";
$_LANG['clientarealeaveblank'] = "Leave blank unless you want to change your password.";
$_LANG['clientareamodifydomaincontactinfo'] = "Ubah informasi kontak domain";
$_LANG['clientareamodifynameservers'] = "Ubah Nameservers";
$_LANG['clientareamodifywhoisinfo'] = "Modify WHOIS Contact Information";
$_LANG['clientareanameserver'] = "Nameserver";
$_LANG['clientareanavaddcontact'] = "Tambah Kontak Baru";
$_LANG['clientareanavchangecc'] = "Change Credit Card Details";
$_LANG['clientareanavchangepw'] = "Ganti Kata Sandi";
$_LANG['clientareanavdetails'] = "Detail Saya";
$_LANG['clientareanavdomains'] = "Domain Saya";
$_LANG['clientareanavhome'] = "Home";
$_LANG['clientareanavlogout'] = "Keluar";
$_LANG['clientareanavorder'] = "Order Item Lain";
$_LANG['clientareanavsecurityquestions'] = "Change Security Question";
$_LANG['clientareanavservices'] = "Layanan Saya";
$_LANG['clientareanavsupporttickets'] = "Dukungan Tiket Saya";
$_LANG['clientareanocontacts'] = "Tidak Ada Kontak Ditemukan";
$_LANG['clientareapassword'] = "Kata Sandi";
$_LANG['clientareapending'] = "Tunda";
$_LANG['clientareapendingtransfer'] = "Transfer Tertunda";
$_LANG['clientareaphonenumber'] = "Nomor Telepone";
$_LANG['clientareapostcode'] = "Kode Pos";
$_LANG['clientareaproductdetails'] = "Rincian Produk";
$_LANG['clientareaproducts'] = "Produk & Layanan Saya";
$_LANG['clientareaproductsnone'] = "Tidak Ada Produk/Layanan Yang Anda Pesan";
$_LANG['clientarearegistrationperiod'] = "Registration Period";
$_LANG['clientareasavechanges'] = "Simpan Perubahan";
$_LANG['clientareasecurityanswer'] = "Please enter an answer";
$_LANG['clientareasecurityconfanswer'] = "Please confirm your answer";
$_LANG['clientareasecurityquestion'] = "Please choose a security question";
$_LANG['clientareaselectcountry'] = "Pilih Negara";
$_LANG['clientareasetlocking'] = "Set Locking";
$_LANG['clientareastate'] = "Provinsi";
$_LANG['clientareastatus'] = "Status";
$_LANG['clientareasuspended'] = "Suspended";
$_LANG['clientareaterminated'] = "Terminated";
$_LANG['clientareaticktoenable'] = "Tick to enable";
$_LANG['clientareatitle'] = "Client Area";
$_LANG['clientareaunlimited'] = "Unlimited";
$_LANG['clientareaupdatebutton'] = "Update";
$_LANG['clientareaupdateyourdetails'] = "Perbaharui Rincian Anda";
$_LANG['clientareaused'] = "Di Gunakan";
$_LANG['clientareaviewaddons'] = "Lihat Produk Tambahan Yang Tersedia";
$_LANG['clientareaviewdetails'] = "Lihat Rincian";
$_LANG['clientlogin'] = "Client Login";
$_LANG['clientregisterheadertext'] = "Please fill in the fields below to register for a new account.";
$_LANG['clientregistertitle'] = "Pendaftaran";
$_LANG['clientregisterverify'] = "Verify Registration";
$_LANG['clientregisterverifydescription'] = "Please enter the text you see in the image below into the text box provided. This is required to prevent automated registrations.";
$_LANG['clientregisterverifyinvalid'] = "Incorrect Verification Image Code Entered";
$_LANG['closewindow'] = "Tutup Jendela Window";
$_LANG['completeorder'] = "Complete Order";
$_LANG['confirmnewpassword'] = "Konfirmasi Kata Sandi Baru";
$_LANG['contactemail'] = "Email";
$_LANG['contacterrormessage'] = "Anda belum mengisi pesan";
$_LANG['contacterrorname'] = "Anda belum mengisi nama";
$_LANG['contacterrorsubject'] = "Anda belum mengisi judul";
$_LANG['contactheader'] = " Jika anda mempunyai pertanyaan dengan produk kami, mohon gunakan form dibawah ini untuk menghubungi kami.";
$_LANG['contactmessage'] = "Pesan";
$_LANG['contactname'] = "Nama";
$_LANG['contactsend'] = "Kirim Pesan";
$_LANG['contactsent'] = "Pesan Anda Telah Terikirim";
$_LANG['contactsubject'] = "Judul";
$_LANG['contacttitle'] = "Pre-Sales Contact Us";
$_LANG['continueshopping'] = "Lanjutkan Belanja";
$_LANG['creditcard'] = "Bayar Dari Kartu Kredit";
$_LANG['creditcard3dsecure'] = "As part of our fraud prevention measures, you will now be asked to perform the Verified by Visa or Mastercard SecureCode verification to complete your payment.<br /><br />Do not click the refresh or back button or this transaction may be interrupted or cancelled.";
$_LANG['creditcardcardexpires'] = "Expiry Date";
$_LANG['creditcardcardissuenum'] = "Issue Number";
$_LANG['creditcardcardnumber'] = "Card Number";
$_LANG['creditcardcardstart'] = "Start Date";
$_LANG['creditcardcardtype'] = "Card Type";
$_LANG['creditcardccvinvalid'] = "The cards CVV number is required";
$_LANG['creditcardconfirmation'] = "Thank You! Your new card details have been accepted and the first payment for your account has been taken. You have been sent a confirmation email about this.";
$_LANG['creditcardcvvnumber'] = "CVV/CVC2 Number";
$_LANG['creditcardcvvwhere'] = "Where do I find this?";
$_LANG['creditcarddeclined'] = "The credit card details you entered were declined. Please try a different card or contact support.";
$_LANG['creditcarddetails'] = "Credit Card Details";
$_LANG['creditcardenterexpirydate'] = "You did not enter the card expiry date";
$_LANG['creditcardenternewcard'] = "Enter New Card Information Below";
$_LANG['creditcardenternumber'] = "You did not enter your card number";
$_LANG['creditcardinvalid'] = "The credit card details you entered were invalid. Please try a different card or contact support.";
$_LANG['creditcardnumberinvalid'] = "The credit card number you entered is invalid";
$_LANG['creditcardsecuritynotice'] = "Any data you enter here is submitted securely and is encrypted to reduce the risk of fraud";
$_LANG['creditcarduseexisting'] = "Use Existing Card";
$_LANG['customfieldvalidationerror'] = "value is not valid";
$_LANG['days'] = "Hari";
$_LANG['hours'] = "Jam";
$_LANG['minutes'] = "Menit";
$_LANG['seconds'] = "Detik";
$_LANG['defaultbillingcontact'] = "Default Billing Contact";
$_LANG['domainalternatives'] = "Try these alternatives:";
$_LANG['domainavailable'] = "Tersedia! Pesan Sekarang";
$_LANG['domainavailable1'] = "Selamat!";
$_LANG['domainavailable2'] = "adalah tersedia!";
$_LANG['domainavailableexplanation'] = "Untuk mendaftarkan domain ini klik link di bawah";
$_LANG['domainbulksearch'] = "Pencarian Domain Secara Masal";
$_LANG['domainbulksearchintro'] = "The bulk real-time domain name search allows you to search up to 20 domains at once. Enter the domains in the field below, one per line - do not enter www. or http:// in front.";
$_LANG['domainbulktransferdescription'] = "You can transfer your existing domains to us today. To get started, simply enter the domains below, one per line - do not include the www. or http://";
$_LANG['domainbulktransfersearch'] = "Bulk Domain Transfer";
$_LANG['domaincontactinfo'] = "Informasi Kontak";
$_LANG['domaincurrentrenewaldate'] = "Current Renewal Date";
$_LANG['domaindnsaddress'] = "Alamat";
$_LANG['domaindnshostname'] = "Host Name";
$_LANG['domaindnsmanagement'] = "DNS Management";
$_LANG['domaindnsmanagementdesc'] = "Point your domain to a web site by pointing to an IP Address, or forward to another site, or point to a temporary page (known as Parking), and more. These records are also known as sub-domains.";
$_LANG['domaindnsrecordtype'] = "Record Type";
$_LANG['domainemailforwarding'] = "Email Forwarding";
$_LANG['domainemailforwardingdesc'] = "If the Email Forwarding Server determines the Forward To address is invalid, we will disable the forwarding record automatically. Please check the Forward To address before you enable it again. The changes on any existing forwarding record may not take effect for up to 1 hour.";
$_LANG['domainemailforwardingforwardto'] = "Forward To";
$_LANG['domainemailforwardingprefix'] = "Prefix";
$_LANG['domaineppcode'] = "EPP Code";
$_LANG['domaineppcodedesc'] = "This needs to be obtained from the current registrar for authorisation";
$_LANG['domaineppcoderequired'] = "You must enter the EPP code for";
$_LANG['domainerror'] = "There was a problem connecting to the domain registry. Please try again later.";
$_LANG['domainerrornodomain'] = "Please enter a Valid Domain Name";
$_LANG['domainerrortoolong'] = "The domain you entered is too long. Domains can only be up to 67 characters in length.";
$_LANG['domaingeteppcode'] = "Dapatkan Kode EPP";
$_LANG['domaingeteppcodeemailconfirmation'] = "The EPP Code request was successful! It has been sent to the registrant email address for your domain.";
$_LANG['domaingeteppcodeexplanation'] = "The EPP Code is basically a password for a domain name. It is a security measure, ensuring that only the domain name owner can transfer a domain name. You will need it if you are wanting to transfer the domain to another registrar.";
$_LANG['domaingeteppcodefailure'] = "There was an error in requesting the EPP Code:";
$_LANG['domaingeteppcodeis'] = "Kode EPP untuk domain anda adalah:";
$_LANG['domainidprotection'] = "ID Protection";
$_LANG['domainintrotext'] = "Enter the domain and tld you wish to use in the boxes below and click Lookup to see whether the domain is available for purchase.";
$_LANG['domainlookupbutton'] = "Lookup";
$_LANG['domainmanagementtools'] = "Alat Management";
$_LANG['domainminyears'] = "Min. Years";
$_LANG['domainmoreinfo'] = "Info Lainnya";
$_LANG['domainname'] = "Nama Domain";
$_LANG['domainnameserver1'] = "Nameserver 1";
$_LANG['domainnameserver2'] = "Nameserver 2";
$_LANG['domainnameserver3'] = "Nameserver 3";
$_LANG['domainnameserver4'] = "Nameserver 4";
$_LANG['domainnameserver5'] = "Nameserver 5";
$_LANG['domainnameservers'] = "Nameservers";
$_LANG['domainordernow'] = "Pesan Sekarang!";
$_LANG['domainorderrenew'] = "Pesan Perpanjangan";
$_LANG['domainprice'] = "Harga";
$_LANG['domainregisterns'] = "Daftarkan Nameservers";
$_LANG['domainregisternscurrentip'] = "Current IP Address";
$_LANG['domainregisternsdel'] = "Hapus NameServer";
$_LANG['domainregisternsdelsuccess'] = "The nameserver was successfully deleted";
$_LANG['domainregisternsexplanation'] = "From here you can create and manage custom nameservers for your domain (eg. NS1.example.com, NS2.example.com...).";
$_LANG['domainregisternsip'] = "Alamat IP";
$_LANG['domainregisternsmod'] = "Modify a NameServer IP";
$_LANG['domainregisternsmodsuccess'] = "The nameserver was successfully modified";
$_LANG['domainregisternsnewip'] = "New IP Address";
$_LANG['domainregisternsns'] = "Nameserver";
$_LANG['domainregisternsreg'] = "Register a NameServer Name";
$_LANG['domainregisternsregsuccess'] = "The nameserver was successfully registered";
$_LANG['domainregistrantchoose'] = "Select the contact you want to use here";
$_LANG['domainregistrantinfo'] = "Domain Registrant Information";
$_LANG['domainregistrarlock'] = "Registrar Lock";
$_LANG['domainregistrarlockdesc'] = "Enable registrar lock (Recommended). Unauthorized transfer will be prevented if lock is set.";
$_LANG['domainregistration'] = "Domain Registration";
$_LANG['domainregistryinfo'] = "Informasi Pendaftar Domain";
$_LANG['domainregnotavailable'] = "N/A";
$_LANG['domainrenew'] = "Perpanjang Domain";
$_LANG['domainrenewal'] = "Domain Renewal";
$_LANG['domainrenewalprice'] = "Renewal";
$_LANG['domainrenewdesc'] = "Secure your domain(s) by adding more years to them. Choose how many years you want to renew for and then submit to continue.";
$_LANG['domainsautorenew'] = "Perpanjang Otomatis";
$_LANG['domainsautorenewdisable'] = "Matikan Perpanjangan Otomatis";
$_LANG['domainsautorenewdisabled'] = "Disabled";
$_LANG['domainsautorenewdisabledwarning'] = "WARNING! This domain has auto renewal disabled.<br />It will therefore expire and become inactive at the end of the current term unless manually renewed.";
$_LANG['domainsautorenewenable'] = "Enable Auto Renew";
$_LANG['domainsautorenewenabled'] = "Enabled";
$_LANG['domainsautorenewstatus'] = "Current Status";
$_LANG['domainsimplesearch'] = "Simple Domain Search";
$_LANG['domainspricing'] = "Domain Pricing";
$_LANG['domainsregister'] = "Register";
$_LANG['domainsrenew'] = "Renew";
$_LANG['domainsrenewnow'] = "Renew Now";
$_LANG['domainstatus'] = "Status";
$_LANG['domainstransfer'] = "Transfer";
$_LANG['domaintitle'] = "Domain Checker";
$_LANG['domaintld'] = "TLD";
$_LANG['domaintransfer'] = "Domain Transfer";
$_LANG['domainunavailable'] = "Tidak Tersedia";
$_LANG['domainunavailable1'] = "Maaf!";
$_LANG['domainunavailable2'] = "sudah di pakai!";
$_LANG['domainreserved'] = "Reserved";
$_LANG['domainreserved1'] = "Domain";
$_LANG['domainreserved2'] = "is available, but reserved.";
$_LANG['domainviewwhois'] = "lihat laporan whois";
$_LANG['downloaddescription'] = "Keterangan";
$_LANG['downloadloginrequired'] = "Access Denied - You must be logged in to download this file";
$_LANG['downloadname'] = "Unduh";
$_LANG['downloadpurchaserequired'] = "Access Denied - You must purchase the associated product before you can download this";
$_LANG['downloadscategories'] = "Kategori";
$_LANG['downloadsdescription'] = "Lihat daftar unduhan kami";
$_LANG['downloadsfiles'] = "File";
$_LANG['downloadsfilesize'] = "Ukuranfile";
$_LANG['downloadsintrotext'] = "The download library has all the manuals, programs and other files that you may need to get your website up and running.";
$_LANG['downloadspopular'] = "Most Popular Downloads";
$_LANG['downloadsnone'] = "Tidak ada unduhan yang tersedia";
$_LANG['downloadstitle'] = "Download";
$_LANG['email'] = "Email";
$_LANG['emptycart'] = "Keranjang Belanja Kosong";
$_LANG['existingpassword'] = "Kata Sandi yang sudah ada";
$_LANG['existingpasswordincorrect'] = "Kata Sandi Anda tidak benar";
$_LANG['firstpaymentamount'] = "Jumlah Pembayaran Pertama";
$_LANG['flashtutorials'] = "Flash Tutorials";
$_LANG['flashtutorialsdescription'] = "Click here to view tutorials showing you how to use your hosting control panel";
$_LANG['flashtutorialsheadertext'] = "Our Flash Tutorials are here to help you fully utilise your web hosting control panel. Choose a task from below to see a step by step tutorial on how to complete it.";
$_LANG['forwardingtogateway'] = "Harap tunggu sementara Anda akan diarahkan ke gateway yang anda pilih untuk melakukan pembayaran...";
$_LANG['globalsystemname'] = "Member Area Home";
$_LANG['globalyouarehere'] = "Anda di";
$_LANG['go'] = "Go";
$_LANG['headertext'] = "Selamat Datang Di Member Area Kami.";
$_LANG['hometitle'] = "Home";
$_LANG['imagecheck'] = "Mohon masukan kode keamanan - ini untuk mencegah pengiriman otomatis";
$_LANG['invoiceaddcreditamount'] = "Masukkan jumlah";
$_LANG['invoiceaddcreditapply'] = "Apply Credit";
$_LANG['invoiceaddcreditdesc1'] = "Your credit balance is";
$_LANG['invoiceaddcreditdesc2'] = "This can be applied to the invoice using the form below.";
$_LANG['invoiceaddcreditoverbalance'] = "You cannot apply more credit than the balance due";
$_LANG['invoiceaddcreditovercredit'] = "You cannot apply more credit than you have in your account";
$_LANG['invoicenumber'] = "Invoice #";
$_LANG['invoiceofflinepaid'] = "Offline Credit Card Payments are processed manually.<br />You will receive confirmation by email once your payment has been processed.";
$_LANG['invoicerefnum'] = "Nomor Referense";
$_LANG['invoices'] = "Faktur Saya";
$_LANG['invoicesamount'] = "Jumlah";
$_LANG['invoicesattn'] = "ATTN";
$_LANG['invoicesbacktoclientarea'] = "« Kembali Ke Member Area";
$_LANG['invoicesbalance'] = "Saldo";
$_LANG['invoicesbefore'] = "sebelum";
$_LANG['invoicescancelled'] = "Dibatalkan";
$_LANG['invoicescollections'] = "Collections";
$_LANG['invoicescredit'] = "Credit";
$_LANG['invoicesdatecreated'] = "Tanggal Faktur";
$_LANG['invoicesdatedue'] = "Due Date";
$_LANG['invoicesdescription'] = "Description";
$_LANG['invoicesdownload'] = "Download";
$_LANG['invoiceserror'] = "An Error Occurred. Please Try Again.";
$_LANG['invoicesinvoicedto'] = "Tagihan Kepada";
$_LANG['invoicesinvoicenotes'] = "Catatan Dalam Tagihan";
$_LANG['invoicesnoinvoices'] = "No Invoices";
$_LANG['invoicesnotes'] = "Catatan";
$_LANG['invoicesoutstandinginvoices'] = "Outstanding Invoices";
$_LANG['invoicespaid'] = "Lunas";
$_LANG['invoicespaynow'] = "Bayar Sekarang";
$_LANG['invoicespayto'] = "Dibayarkan Kepada";
$_LANG['invoicesrefunded'] = "Dikembalikan";
$_LANG['invoicesstatus'] = "Status";
$_LANG['invoicessubtotal'] = "Sub Total";
$_LANG['invoicestax'] = "Tax Due";
$_LANG['invoicestaxindicator'] = "Indicates a taxed item.";
$_LANG['invoicestitle'] = "Faktur #";
$_LANG['invoicestotal'] = "Total";
$_LANG['invoicestransactions'] = "Transaksi";
$_LANG['invoicestransamount'] = "Jumlah";
$_LANG['invoicestransdate'] = "Tanggal Transaksi";
$_LANG['invoicestransgateway'] = "Gateway";
$_LANG['invoicestransid'] = "ID Transaksi";
$_LANG['invoicestransnonefound'] = "Tidak ada Transaksi Terkait Ditemukan";
$_LANG['invoicesunpaid'] = "Belum Dibayar";
$_LANG['invoicesdraft'] = "Disimpan";
$_LANG['invoicesview'] = "Lihat Faktur";
$_LANG['jobtitle'] = "Job Title";
$_LANG['kbsuggestions'] = "Dasar Pengetahuan Disarankan";
$_LANG['kbsuggestionsexplanation'] = "The following articles were found in the knowledgebase which may answer your question. Please review the suggestions before submission.";
$_LANG['knowledgebasearticles'] = "Artikel";
$_LANG['knowledgebasecategories'] = "Kategori";
$_LANG['nokbcategories'] = "Tidak ada kategori";
$_LANG['knowledgebasedescription'] = "Jelajahi KB untuk Jawaban FAQ";
$_LANG['knowledgebasefavorites'] = "Tambahkan Ke Favorit";
$_LANG['knowledgebasehelpful'] = "Was this answer helpful?";
$_LANG['knowledgebaseintrotext'] = "Basis pengetahuan disusun dalam berbagai kategori. Pilih kategori dari bawah atau mencari basis pengetahuan untuk jawaban untuk pertanyaan Anda.";
$_LANG['knowledgebasemore'] = "Lainnya";
$_LANG['knowledgebaseno'] = "Tidak";
$_LANG['knowledgebasenoarticles'] = "Tidak Ada Artikel Ditemukan";
$_LANG['knowledgebasenorelated'] = "Tidak Ada Artikel Terkait";
$_LANG['knowledgebasepopular'] = "Paling Banyak Dilihat";
$_LANG['knowledgebaseprint'] = "Print artikel ini";
$_LANG['knowledgebaserating'] = "Peringkat:";
$_LANG['knowledgebaseratingtext'] = "Users Found This Useful";
$_LANG['knowledgebaserelated'] = "Artiel Terkait";
$_LANG['knowledgebasesearch'] = "Cari";
$_LANG['knowledgebasetitle'] = "Dasar Pengetahuan";
$_LANG['knowledgebaseviews'] = "Dilihat";
$_LANG['knowledgebasevote'] = "Vote";
$_LANG['knowledgebasevotes'] = "Votes";
$_LANG['knowledgebaseyes'] = "Ya";
$_LANG['knowledgebaseArticleRatingThanks'] = "Thanks for rating the article for us";
$_LANG['language'] = "Bahasa";
$_LANG['latefee'] = "Biaya Keterlambatan";
$_LANG['latefeeadded'] = "Ditambahkan";
$_LANG['latestannouncements'] = "Pengumuman Terbaru";
$_LANG['loginbutton'] = "Login";
$_LANG['loginemail'] = "Alamat Email";
$_LANG['loginforgotten'] = "Lupa Kata Sandi anda?";
$_LANG['loginforgotteninstructions'] = "Detail login salah. Silakan coba lagi";
$_LANG['loginincorrect'] = "Detail login salah. Silakan coba lagi.";
$_LANG['loginintrotext'] = "Anda harus login untuk mengakses halaman ini. Login ini berbeda dari situs web control panel username dan password.";
$_LANG['loginpassword'] = "Kata Sandi";
$_LANG['loginrememberme'] = "Ingat Saya";
$_LANG['logoutcontinuetext'] = "Klik di sini untuk melanjutkan...";
$_LANG['logoutsuccessful'] = "Anda telah berhasil keluar.";
$_LANG['logouttitle'] = "Keluar";
$_LANG['maxmind_anonproxy'] = "Kami tidak mengizinkan pemesanan layanan dengan Anonymous Proxy";
$_LANG['maxmind_callingnow'] = "We are placing an automated call to your phone number now. This is part of our fraud checking measures. You will be given a 4 digit security code which you need to enter below to complete your order.";
$_LANG['maxmind_countrymismatch'] = "The country of your IP address did not match the billing address country you entered so we cannot accept your order";
$_LANG['maxmind_error'] = "Error";
$_LANG['maxmind_faileddescription'] = "The code you entered was incorrect. If you feel this to be an error, please contact our support department as soon as possible.";
$_LANG['maxmind_highfraudriskscore'] = "Your order has been flagged as potentially high risk and therefore it has been held for manual review.<br /><br />If you feel you have received this message in error, then please accept our apologies and <a href=\"submitticket.php\">submit a support ticket</a> to our Customer Service Team. Thank you.";
$_LANG['maxmind_highriskcountry'] = "Unfortunately, we are unable to accept your order as there has been a lot of fraudulent activity from your country. If you want to arrange an alternative means of payment, please contact us.";
$_LANG['maxmind_incorrectcode'] = "Kode tidak benar";
$_LANG['maxmind_pincode'] = "Pin Code";
$_LANG['maxmind_rejectemail'] = "We do not permit orders using a free email address, please try again using a different email address";
$_LANG['maxmind_title'] = "MaxMind";
$_LANG['more'] = "Lainnya";
$_LANG['morechoices'] = "More Choices";
$_LANG['networkissuesaffecting'] = "Mempengaruhi";
$_LANG['networkissuesaffectingyourservers'] = "Please Note: Issues affecting servers you have accounts on will be highlighted with a gold background";
$_LANG['networkissuesdate'] = "Tanggal";
$_LANG['networkissuesdescription'] = "Read about current and scheduled network outages";
$_LANG['networkissueslastupdated'] = "Pembaruan Terahir";
$_LANG['networkissuesnonefound'] = "Tidak ada masalah jaringan di temukan";
$_LANG['networkissuespriority'] = "Prioritas";
$_LANG['networkissuesprioritycritical'] = "Kritis";
$_LANG['networkissuespriorityhigh'] = "Tinggi";
$_LANG['networkissuesprioritylow'] = "Rendah";
$_LANG['networkissuesprioritymedium'] = "Sedang";
$_LANG['networkissuesstatusinprogress'] = "Dalam Proses";
$_LANG['networkissuesstatusinvestigating'] = "Investigasi";
$_LANG['networkissuesstatusopen'] = "Buka";
$_LANG['networkissuesstatusoutage'] = "Outage";
$_LANG['networkissuesstatusreported'] = "Dilaporkan";
$_LANG['networkissuesstatusresolved'] = "Terselesaikan";
$_LANG['networkissuesstatusscheduled'] = "Dijadwalkan";
$_LANG['networkissuestitle'] = "Masalah Jaringan";
$_LANG['networkissuestypeother'] = "Lainnya";
$_LANG['networkissuestypeserver'] = "Server";
$_LANG['networkissuestypesystem'] = "System";
$_LANG['newpassword'] = "Kata Sandi Baru";
$_LANG['nextpage'] = "Halaman Selanjutnya";
$_LANG['no'] = "No";
$_LANG['nocarddetails'] = "No existing card details on record";
$_LANG['none'] = "None";
$_LANG['norecordsfound'] = "Tidak Ada Catatan Ditemukan";
$_LANG['or'] = "or";
$_LANG['orderadditionalrequiredinfo'] = "Informasi Tambahan Diperlukan";
$_LANG['orderaddon'] = "Produk Tambahan";
$_LANG['orderaddondescription'] = "Produk Tambahan tersedia untuk produk ini. Anda bisa memesan beberapa produk Tambahan di bawah ini.";
$_LANG['orderavailable'] = "Tersedia";
$_LANG['orderavailableaddons'] = "Klik di sini untuk melihat produk tambahan yang tersedia";
$_LANG['orderbillingcycle'] = "Siklus Penagihan";
$_LANG['ordercategories'] = "Kategori";
$_LANG['orderchangeaddons'] = "Ubah Produk Tambahan";
$_LANG['orderchangeconfig'] = "Ubah Pilihan Dikonfigurasi";
$_LANG['orderchangedomain'] = "Ubah Domain";
$_LANG['orderchangenameservers'] = "Ubah Nameserver";
$_LANG['orderchangeproduct'] = "Ubah Produk";
$_LANG['ordercheckout'] = "Selesaikan";
$_LANG['orderchooseaddons'] = "Pilih Produk Tambahan";
$_LANG['orderchooseapackage'] = "Pilih Paket";
$_LANG['ordercodenotfound'] = "Kode promosi yang masukkan tidak ada";
$_LANG['ordercompletebutnotpaid'] = "Perhatian! Pesanan Anda telah selesai tetapi Anda belum membayarnya sehingga belum di diaktifkan.<br />Klik link di bawah ini untuk ke faktur Anda dan melakukan pembayaran.";
$_LANG['orderconfigpackage'] = "Pilihan Dikonfigurasi";
$_LANG['orderconfigure'] = "Konfigurasi";
$_LANG['orderconfirmation'] = "Konfirmasi pesanan";
$_LANG['orderconfirmorder'] = "Konfirmasi Pesnaan";
$_LANG['ordercontinuebutton'] = "Klik Untuk Melanjutkan >>";
$_LANG['orderdesc'] = "Description";
$_LANG['orderdescription'] = "Pesan Layanan Baru Dengan Kami";
$_LANG['orderdiscount'] = "Diskon";
$_LANG['orderdomain'] = "Domain";
$_LANG['orderdomainoption1part1'] = "Saya ingin";
$_LANG['orderdomainoption1part2'] = "untuk mendaftarkan domain baru untuk saya.";
$_LANG['orderdomainoption2'] = "Saya akan mengupdate nameserver pada domain yang ada Atau saya akan mendaftarkan domain baru.";
$_LANG['orderdomainoption3'] = "Saya ingin mentransfer domain saya ke";
$_LANG['orderdomainoption4'] = "I want to use a free subdomain.";
$_LANG['orderdomainoptions'] = "Opsi Domain";
$_LANG['orderdomainregistration'] = "Pendaftaran Domain";
$_LANG['orderdomainregonly'] = "Pendaftaran Domain";
$_LANG['orderdomaintransfer'] = "Transfer Domain";
$_LANG['orderdontusepromo'] = "Jangan menggunakan kupon";
$_LANG['ordererroraccepttos'] = "Anda harus menerima Persyaratan Layanan";
$_LANG['ordererrordomainalreadyexists'] = "Domain yang Anda masukkan sudah terdaftar dengan kami - Anda perlu untuk membatalkannya sebelum menempatkan pesanan baru";
$_LANG['ordererrordomaininvalid'] = "Domain yang Anda masukkan tidak benar";
$_LANG['ordererrordomainnotld'] = "You must enter the domain TLD";
$_LANG['ordererrordomainnotregistered'] = "Anda tidak dapat mentransfer domain yang tidak terdaftar";
$_LANG['ordererrordomainregistered'] = "Domain yang Anda masukkan sudah terdaftar";
$_LANG['ordererrornameserver1'] = "Anda harus memasukan nameserver 1";
$_LANG['ordererrornameserver2'] = "Anda harus memasukan nameserver 2";
$_LANG['ordererrornodomain'] = "Anda tidak memasukan nama domain";
$_LANG['ordererrorpassword'] = "You did not enter a password";
$_LANG['ordererrorserverhostnameinuse'] = "The hostname you entered is already in use. Please choose another.";
$_LANG['ordererrorservernohostname'] = "You must enter a hostname for your server";
$_LANG['ordererrorservernonameservers'] = "You must enter a prefix for both nameservers";
$_LANG['ordererrorservernorootpw'] = "You must enter your desired root password";
$_LANG['ordererrorsubdomaintaken'] = "The subdomain you entered is already taken - please try again";
$_LANG['ordererrortransfersecret'] = "You must enter the transfer secret";
$_LANG['ordererroruserexists'] = "Sesorang sudah ada dengan alamat email";
$_LANG['orderexistinguser'] = "Saya sudah menjadi member dan ingin menambahkan pesanan ini ke akun saya";
$_LANG['orderfailed'] = "Pemesanan Gagal";
$_LANG['orderfinalinstructions'] = "
Jika Anda memiliki pertanyaan tentang pesanan Anda, silahkan buka tiket dukungan dari member area dan mengutip nomor pesanan Anda.";
$_LANG['orderfree'] = "GRATIS!";
$_LANG['orderfreedomainappliesto'] = "berlaku untuk ekstensi berikut";
$_LANG['orderfreedomaindescription'] = "pada pembayaran yang dipilih";
$_LANG['orderfreedomainonly'] = "Gratis Domain";
$_LANG['orderfreedomainregistration'] = "Gratis Pendaftaran Nama Domain";
$_LANG['ordergotoclientarea'] = "Klik di sini untuk lanjut ke member area";
$_LANG['orderinvalidcodeforbillingcycle'] = "Kode ini tidak berlaku untuk siklus penagihan yang dipilih";
$_LANG['orderlogininfo'] = "Informasi Login";
$_LANG['orderlogininfopart1'] = "Please enter the password that you wish to use to login to your";
$_LANG['orderlogininfopart2'] = "Member Area. Hal ini berbeda dengan data login kontrol panel website.";
$_LANG['ordernewuser'] = "Saya adalah pelanggan baru dan ingin membuat akun";
$_LANG['ordernoproducts'] = "Tidak Ada Produk Ditemukan";
$_LANG['ordernotes'] = "Catatan / Informasi Tambahan";
$_LANG['ordernotesdescription'] = "Anda dapat memasukkan catatan tambahan atau informasi yang ingin disertakan dengan pesanan Anda di sini...";
$_LANG['ordernowbutton'] = "Pesan Sekarang";
$_LANG['ordernumberis'] = "Nomor Pesanan Anda Adalah:";
$_LANG['orderpaymentmethod'] = "Metode Pembayaran";
$_LANG['orderpaymentterm12month'] = "Harga 12 Bulan";
$_LANG['orderpaymentterm1month'] = "Harga 1 Bulan";
$_LANG['orderpaymentterm24month'] = "Harga 24 Bulan";
$_LANG['orderpaymentterm3month'] = "Harga 3 Bulan";
$_LANG['orderpaymentterm6month'] = "Harga 6 Bulan";
$_LANG['orderpaymenttermannually'] = "Tahunan";
$_LANG['orderpaymenttermbiennially'] = "2 Tahun";
$_LANG['orderpaymenttermfreeaccount'] = "Akun Gratis";
$_LANG['orderpaymenttermmonthly'] = "Bulanan";
$_LANG['orderpaymenttermonetime'] = "Sekali";
$_LANG['orderpaymenttermquarterly'] = "3 Bulan";
$_LANG['orderpaymenttermsemiannually'] = "6 Bulan";
$_LANG['orderprice'] = "Harga";
$_LANG['orderproduct'] = "Produk/Layanan";
$_LANG['orderprogress'] = "Proses";
$_LANG['orderpromoexpired'] = "Kode promosi yang anda masukan telah berakhir";
$_LANG['orderpromoinvalid'] = "The promotion code entered does not apply to any items in your order";
$_LANG['orderpromomaxusesreached'] = "The promotion code entered has already been used";
$_LANG['orderpromotioncode'] = "Promotional Code";
$_LANG['orderpromovalidatebutton'] = "Validasi Kode";
$_LANG['orderPromoCodePlaceholder'] = "Masukkan kode promo jika Anda memiliki";
$_LANG['orderprorata'] = "Pro Rata";
$_LANG['orderreceived'] = "Terima kasih atas pesanan Anda. Anda akan menerima email konfirmasi segera.";
$_LANG['orderregisterdomain'] = "Pendaftaran Domain Baru";
$_LANG['orderregperiod'] = "Periode Pendaftaran";
$_LANG['ordersecure'] = "Order form ini dalam lingkungan yang aman dan untuk membantu melindungi terhadap penipuan alamat IP Anda saat ini";
$_LANG['ordersecure2'] = "is being logged.";
$_LANG['orderserverhostname'] = "Server Hostname";
$_LANG['orderservernameservers'] = "Nameserver";
$_LANG['orderservernameserversdescription'] = "The prefixes you enter here will determine the default nameservers for the server eg. ns1.example.com and ns2.example.com";
$_LANG['orderservernameserversprefix1'] = "Prefix 1";
$_LANG['orderservernameserversprefix2'] = "Prefix 2";
$_LANG['orderserverrootpassword'] = "Root Password";
$_LANG['ordersetupfee'] = "Biaya Setup";
$_LANG['orderstartover'] = "Start Over";
$_LANG['ordersubdomaininuse'] = "The subdomain you entered is already in use";
$_LANG['ordersubtotal'] = "Subtotal";
$_LANG['ordersummary'] = "Ringkasan Pesanan";
$_LANG['ordertaxcalculations'] = "Tax Calculations";
$_LANG['ordertaxstaterequired'] = "You must enter your state for tax calculations to take place";
$_LANG['ordertitle'] = "Pesan";
$_LANG['ordertos'] = "Ketentuan Layanan";
$_LANG['ordertosagreement'] = "Saya telah membaca dan setuju dengan";
$_LANG['ordertotalduetoday'] = "Total Due Today";
$_LANG['ordertotalrecurring'] = "Total Berulang";
$_LANG['ordertransferdomain'] = "Transfer an Existing Domain Name";
$_LANG['ordertransfersecret'] = "Transfer Secret";
$_LANG['ordertransfersecretexplanation'] = "Please enter the Domain Transfer Secret which can be obtained from the current Registrar of the Domain Name. ";
$_LANG['orderusesubdomain'] = "Gunakan Subdomain";
$_LANG['orderyears'] = "Tahun/s";
$_LANG['orderyourinformation'] = "Informasi Anda";
$_LANG['orderyourorder'] = "Pesanan Anda";
$_LANG['organizationname'] = "Nama Organisasi";
$_LANG['outofstock'] = "Stok Tidak Tersedia";
$_LANG['outofstockdescription'] = "We are currently out of stock on this item so orders for it have been suspended until more stock is available. For further information, please contact us.";
$_LANG['page'] = "Halaman";
$_LANG['pageof'] = "of";
$_LANG['please'] = "Mohon";
$_LANG['pleasewait'] = "Mohon Tunggu...";
$_LANG['presalescontactdescription'] = "Tempatkan pertanyaan pra-penjualan di sini";
$_LANG['previouspage'] = "Halaman sebelumnya";
$_LANG['proformainvoicenumber'] = "Proforma Invoice #";
$_LANG['promoexistingclient'] = "Anda harus memiliki produk / layanan aktif untuk menggunakan kode ini";
$_LANG['promoonceperclient'] = "This code can only be used once per client";
$_LANG['pwstrengthfail'] = "The password you entered is not strong enough - please enter a more complex password";
$_LANG['pwdoesnotmatch'] = "The passwords entered do not match";
$_LANG['quicknav'] = "Navigasi cepat";
$_LANG['recordsfound'] = "Catatan Ditemukan";
$_LANG['recurring'] = "Berulang";
$_LANG['recurringamount'] = "Jumlah Berulang";
$_LANG['every'] = "Setiap";
$_LANG['registerdomain'] = "Pendaftaran Domain";
$_LANG['registerdomaindesc'] = "Ketik nama domain yang ingin anda daftarkan untuk memeriksa ketersediaan.";
$_LANG['registerdomainname'] = "Pendaftaran Nama Domain";
$_LANG['relatedservice'] = "Layanan Lain";
$_LANG['rssfeed'] = "Feed";
$_LANG['securityanswerrequired'] = "You are required to enter a security answer";
$_LANG['securitybothnotmatch'] = "Your answer and confirm answer do not match";
$_LANG['securitycurrentincorrect'] = "Your current question and answer is incorrect";
$_LANG['serverchangepassword'] = "Ganti Kata Sandi";
$_LANG['serverchangepasswordintro'] = "From here you can change the password of the product/service (note: this does not affect your password for our client area)";
$_LANG['serverchangepasswordconfirm'] = "Konfirmasi Kata Sandi";
$_LANG['serverchangepasswordenter'] = "Masukan Kata Sandi Baru";
$_LANG['serverchangepasswordfailed'] = "Perubahan Kata Sandi Gagal!";
$_LANG['serverchangepasswordsuccessful'] = "Perubahan Kata Sandi Berhasi;!";
$_LANG['serverchangepasswordupdate'] = "Perbaharui";
$_LANG['serverhostname'] = "Hostname";
$_LANG['serverlogindetails'] = "Rincian Login";
$_LANG['servername'] = "Server";
$_LANG['serverns1prefix'] = "NS1 Prefix";
$_LANG['serverns2prefix'] = "NS2 Prefix";
$_LANG['serverpassword'] = "Kata Sandi";
$_LANG['serverrootpw'] = "Kata Sandi Root";
$_LANG['serverstatusdescription'] = "View live status info for our servers";
$_LANG['serverstatusnoservers'] = "No Servers are currently being monitored";
$_LANG['serverstatusnotavailable'] = "Not Available";
$_LANG['serverstatusoffline'] = "Offline";
$_LANG['serverstatusonline'] = "Online";
$_LANG['serverstatusphpinfo'] = "PHP Info";
$_LANG['serverstatusserverload'] = "Server Load";
$_LANG['serverstatustitle'] = "Server Status";
$_LANG['serverstatusuptime'] = "Uptime";
$_LANG['serverusername'] = "Username";
$_LANG['show'] = "Tampilkan";
$_LANG['ssladmininfo'] = "Administrative Contact Information";
$_LANG['ssladmininfodetails'] = "The contact information below will not be displayed on the Certificate - it is used only for contacting you regarding this order. The SSL Certificate and future renewal reminders will be sent to the email address specified below.";
$_LANG['sslcertapproveremail'] = "Certificate Approver Email";
$_LANG['sslcertapproveremaildetails'] = "You must now choose from the options below where you would like the approval email request for this certificate to be sent.";
$_LANG['sslcertinfo'] = "SSL Certificate Information";
$_LANG['pleasechooseone'] = "Please choose one...";
$_LANG['sslcerttype'] = "Certificate Type";
$_LANG['sslconfigcomplete'] = "Configuration Complete";
$_LANG['sslconfigcompletedetails'] = "Your SSL certificate configuration has now been completed and sent to the Certificate Authority for validation. You should receive an email from them shortly to approve it.";
$_LANG['sslconfsslcertificate'] = "Configure SSL Certificate";
$_LANG['sslcsr'] = "CSR";
$_LANG['sslerrorapproveremail'] = "You must choose an approver email address";
$_LANG['sslerrorentercsr'] = "You must enter your certificate signing request (CSR)";
$_LANG['sslerrorselectserver'] = "You must select your server type";
$_LANG['sslinvalidlink'] = "Invalid Link Followed. Please go back and try again.";
$_LANG['sslorderdate'] = "Order Date";
$_LANG['sslserverinfo'] = "Server Information";
$_LANG['sslserverinfodetails'] = "You must have a valid \"CSR\" (Certificate Signing Request) to configure your SSL Certificate. The CSR is an encrypted piece of text that is generated by the web server where the SSL Certificate will be installed. If you do not already have a CSR, you must generate one or ask your web hosting provider to generate one for you. Also please ensure you enter the correct information as it cannot be changed after the SSL Certificate has been issued.";
$_LANG['sslservertype'] = "Web Server Type";
$_LANG['sslstatus'] = "Configuration Status";
$_LANG['statscreditbalance'] = "Account Credit Balance";
$_LANG['statsdueinvoicesbalance'] = "Due Invoices Balance";
$_LANG['statsnumdomains'] = "Jumlah Domain";
$_LANG['statsnumproducts'] = "Jumlah Produk/Layanan";
$_LANG['statsnumreferredsignups'] = "Number of Referred Signups";
$_LANG['statsnumtickets'] = "Jumlah Tiket Dukungan";
$_LANG['submitticketdescription'] = "Submit a trouble ticket";
$_LANG['supportclickheretocontact'] = "klik di sini untuk menghubungi kami";
$_LANG['supportpresalesquestions'] = "If you have pre-sales questions";
$_LANG['supportticketinvalid'] = "An error occurred. The requested ticket could not be found.";
$_LANG['supportticketsallowedextensions'] = "Allowed File Extensions";
$_LANG['supportticketschoosedepartment'] = "Pilih Departemen";
$_LANG['supportticketsclient'] = "Member";
$_LANG['supportticketsclientemail'] = "Alamat Email";
$_LANG['supportticketsclientname'] = "Nama";
$_LANG['supportticketsdate'] = "Tanggal";
$_LANG['supportticketsdepartment'] = "Departemen";
$_LANG['supportticketsdescription'] = "Lihat dan menanggapi tiket yang sudah ada";
$_LANG['supportticketserror'] = "Error";
$_LANG['supportticketserrornoemail'] = "Anda tidak memasukkan alamat email";
$_LANG['supportticketserrornomessage'] = "Anda belum mengisi pesan";
$_LANG['supportticketserrornoname'] = "You did not enter your name";
$_LANG['supportticketserrornosubject'] = "Anda belum mengisi judul";
$_LANG['supportticketsfilenotallowed'] = "The file you tried to upload is not allowed.";
$_LANG['supportticketsheader'] = "If you can't find a solution to your problems in our knowledgebase, you can submit a ticket by selecting the appropriate department below.";
$_LANG['supportticketsnotfound'] = "Tiket Tidak Anda";
$_LANG['supportticketsopentickets'] = "Buka Tiket Dukungan";
$_LANG['supportticketspagetitle'] = "Tiket Dukungan";
$_LANG['supportticketsposted'] = "Posted";
$_LANG['supportticketsreply'] = "Balas";
$_LANG['supportticketsstaff'] = "Staff";
$_LANG['supportticketsstatus'] = "Status";
$_LANG['supportticketsstatusanswered'] = "Terjawab";
$_LANG['supportticketsstatusclosed'] = "Ditutup";
$_LANG['supportticketsstatuscloseticket'] = "Jika sudah terselesaikan, klik di sini untuk menutup tiket";
$_LANG['supportticketsstatuscustomerreply'] = "Balasan-Klien";
$_LANG['supportticketsstatusinprogress'] = "Sedang Proses";
$_LANG['supportticketsstatusonhold'] = "Ditahan";
$_LANG['supportticketsstatusopen'] = "Buka";
$_LANG['supportticketssubject'] = "Judul";
$_LANG['supportticketssubmitticket'] = "Kirim Tiket";
$_LANG['supportticketssystemdescription'] = "Sistem tiket dukungan memungkinkan kita untuk menanggapi masalah dan pertanyaan secepat mungkin. Ketika kita membuat tanggapan tiket dukungan Anda, Anda akan diberitahu melalui email.";
$_LANG['supportticketsticketattachments'] = "Lampiran";
$_LANG['supportticketsticketcreated'] = "Tiket Dibuat";
$_LANG['supportticketsticketcreateddesc'] = "tiket Anda telah berhasil dibuat. Sebuah email telah dikirim ke alamat Anda dengan informasi tiket. Jika Anda ingin melihat tiket ini sekarang Anda dapat melakukannya.";
$_LANG['supportticketsticketid'] = "Tiket ID";
$_LANG['supportticketsticketsubject'] = "Judul";
$_LANG['supportticketsticketsubmit'] = "Kirim";
$_LANG['supportticketsticketurgency'] = "Darurat";
$_LANG['supportticketsticketurgencyhigh'] = "Tinggi";
$_LANG['supportticketsticketurgencylow'] = "Rendah";
$_LANG['supportticketsticketurgencymedium'] = "Sedang";
$_LANG['supportticketsuploadfailed'] = "Tidak bisa mengunggah lampiran file";
$_LANG['supportticketsuploadtoolarge'] = "File yang anda unggah terlalu besar. Silakan coba meng-unggah file yang lebih kecil.";
$_LANG['supportticketsviewticket'] = "Lihat Tiket";
$_LANG['supportticketclosedmsg'] = "Tiket ini ditutup. Anda dapat membalas tiket ini untuk membukanya kembali.";
$_LANG['telesignincorrectpin'] = "Incorrect Pin!";
$_LANG['telesigninitiatephone'] = "We can't initiate phone verification for your number. Please contact us.";
$_LANG['telesigninvalidnumber'] = "Invalid phone number";
$_LANG['telesigninvalidpin'] = "The PIN you entered was invalid!";
$_LANG['telesigninvalidpin2'] = "The pin you entered was not valid.";
$_LANG['telesigninvalidpinmessage'] = "Pin Code Verification Failed";
$_LANG['telesignmessage'] = "Phone verification initiated for number %s . Please wait...";
$_LANG['telesignphonecall'] = "Phone call";
$_LANG['telesignpin'] = "Enter your PIN: ";
$_LANG['telesignsms'] = "Sms";
$_LANG['telesignsmstextmessage'] = "Thank you for using our SMS verification system. Your code is: %s Please enter this code on your computer now.!";
$_LANG['telesigntitle'] = "TeleSign phone verification.";
$_LANG['telesigntype'] = "Choose verification type for number %s:";
$_LANG['telesignverificationcanceled'] = "There is a temporary problem with the phone verification service and phone verification has been canceled.";
$_LANG['telesignverificationproblem'] = "There was a problem with the phone verification service and your order could not be validated. Please try again later.";
$_LANG['telesignverify'] = "Your phone number %s needs to be verified to complete the order.";
$_LANG['ticketratingexcellent'] = "Bagus";
$_LANG['ticketratingpoor'] = "Buruk";
$_LANG['ticketratingquestion'] = "Bagaimana Anda menilai jawaban ini?";
$_LANG['ticketreatinggiven'] = "Anda menilai tanggapan ini";
$_LANG['transferdomain'] = "Transfer Domain";
$_LANG['transferdomaindesc'] = "Want to move your domain to us? If so, enter your domain below to begin.";
$_LANG['transferdomainname'] = "Transfer a Domain Name";
$_LANG['updatecart'] = "Perbarui Keranjang Belanja";
$_LANG['upgradechooseconfigoptions'] = "Upgrade / Downgrade pilihan dikonfigurasi pada produk ini.";
$_LANG['upgradechoosepackage'] = "Pilih paket yang Anda ingin meng-upgrade/downgrade paket Anda saat ini untuk dari opsi di bawah.";
$_LANG['upgradecurrentconfig'] = "Konfigurasi saat ini";
$_LANG['upgradedowngradeconfigoptions'] = "Pilihan Upgrade/Downgrade";
$_LANG['upgradenewconfig'] = "New Configuration";
$_LANG['upgradenochange'] = "Tidak Diubah";
$_LANG['upgradeproductlogic'] = "Upgrade price is calculated from a credit of the unused portion of the current plan and billing of the new plan for the same period";
$_LANG['upgradesummary'] = "Below is a summary of your upgrade order.";
$_LANG['usedefaultcontact'] = "Gunakan Kontak Bawaan (Detail Atas)";
$_LANG['varilogixfraudcall_callnow'] = "Call Now!";
$_LANG['varilogixfraudcall_description'] = "As part of our fraud prevention measures, we will now call the phone number registered for your account and ask you to enter the above pin code. Please make a note of the pin code and when you are ready for us to place the phone call, please click on the button below.";
$_LANG['varilogixfraudcall_error'] = "An error occurred and we could not call your phone number to verify your order. Please contact our support department as soon as possible to complete your order.";
$_LANG['varilogixfraudcall_fail'] = "The call to verify your order failed. This could be because your phone number was incorrectly entered or is blacklisted on our system. Please contact our support department as soon as possible to complete your order.";
$_LANG['varilogixfraudcall_failed'] = "Failed";
$_LANG['varilogixfraudcall_pincode'] = "Pin Code";
$_LANG['varilogixfraudcall_title'] = "VariLogix FraudCall";
$_LANG['viewcart'] = "View Cart";
$_LANG['welcomeback'] = "Welcome Back";
$_LANG['whoisresults'] = "WHOIS Results for";
$_LANG['yes'] = "Yes";
$_LANG['yourdetails'] = "Your Details";
# Version 4.1
$_LANG['clientareafiles'] = "Attached Files";
$_LANG['clientareafilesdate'] = "Date Added";
$_LANG['clientareafilesfilename'] = "Filename";
$_LANG['pwreset'] = "Lost Password Reset";
$_LANG['pwresetdesc'] = "Jika Anda lupa password Anda, Anda dapat mengatur ulang di sini. Ketika Anda mengisi alamat email terdaftar Anda (dan menjawab pertanyaan keamanan akun Anda jika diatur), Anda akan kami kirimi petunjuk tentang cara untuk mengatur ulang kata sandi Anda.";
$_LANG['pwresetemailrequired'] = "Masukkan alamat email Anda";
$_LANG['pwresetemailnotfound'] = "Tidak ada akun klien ditemukan dengan alamat email yang Anda masukkan";
$_LANG['pwresetsecurityquestionrequired'] = "As you have a security question setup on your account, you must enter the answer to this question below.";
$_LANG['pwresetsecurityquestionincorrect'] = "The security question answer you entered does not match the answer set in your account";
$_LANG['pwresetsubmit'] = "Kirim";
$_LANG['pwresetvalidationsent'] = "Email validasi telah di kirim";
$_LANG['pwresetvalidationcheckemail'] = "Proses pengaturan ulang kata sandi belum dimulai. Silahkan cek email Anda untuk petunjuk tentang apa yang harus dilakukan selanjutnya.";
$_LANG['pwresetkeyinvalid'] = "The reset link you have followed is invalid. Please try again.";
$_LANG['pwresetkeyexpired'] = "The reset link you have followed has expired. Please try again.";
$_LANG['pwresetvalidationsuccess'] = "Pengaturan Ulang Kata Sandi Berhasil";
$_LANG['overagescharges'] = "Overage Charge";
$_LANG['overagestotaldiskusage'] = "Total Penggunaan Memori Disk";
$_LANG['overagestotalbwusage'] = "Total Penggunaan Bandwidth";
$_LANG['affiliatescommissionspending'] = "Commissions Pending Maturation";
$_LANG['affiliatescommissionsavailable'] = "Available Commissions Balance";
$_LANG['affiliatessignups'] = "Number of Signups";
$_LANG['affiliatesconversionrate'] = "Conversion Rate";
$_LANG['configoptionqtyminmax'] = "%s has a minimum requirement of %s and maximum of %s";
$_LANG['creditcardnostore'] = "Tick this box if you do NOT want us to store your credit card details for recurring billing";
$_LANG['creditcarddelete'] = "Delete Saved Card Details";
$_LANG['creditcarddeleteconfirmation'] = "The stored credit card details have now been removed from your account";
$_LANG['creditcardupdatenotpossible'] = "Credit Card Details cannot be updated at the current time. Please try again later.";
$_LANG['invoicepaymentsuccessconfirmation'] = "Thank You! Your payment was successful.";
$_LANG['invoicepaymentfailedconfirmation'] = "Unfortunately your payment attempt was not successful.<br />Please try again or contact support.";
# Version 4.2
$_LANG['promoappliedbutnodiscount'] = "The promotion code you entered has been applied to your cart but no items qualify for the discount yet - please check the promotion terms";
$_LANG['upgradeerroroverdueinvoice'] = "You cannot currently upgrade or downgrade this product because an invoice has already been generated for the next renewal.<br /><br />To proceed, please first pay the outstanding invoice and then you will be able to upgrade or downgrade immediately following that and be charged the difference or credited as appropriate.";
$_LANG['upgradeexistingupgradeinvoice'] = "You cannot currently upgrade or downgrade this product because an upgrade or downgrade is already in progress.<br /><br />To proceed, please first pay the outstanding invoice and then you will be able to upgrade or downgrade immediately following that and be charged the difference or credited as appropriate.<br/><br/>If you believe you are receiving this message in error, please submit a trouble ticket.";
$_LANG['subaccountactivate'] = "Activate Sub-Account";
$_LANG['subaccountactivatedesc'] = "Tick to configure as a sub-account with client area access";
$_LANG['subaccountpermissions'] = "Sub-Account Permissions";
$_LANG['subaccountpermsprofile'] = "Modify Master Account Profile";
$_LANG['subaccountpermscontacts'] = "View & Manage Contacts";
$_LANG['subaccountpermsproducts'] = "View Products & Services";
$_LANG['subaccountpermsmanageproducts'] = "View & Modify Product Passwords";
$_LANG['subaccountpermsdomains'] = "View Domains";
$_LANG['subaccountpermsmanagedomains'] = "Manage Domain Settings";
$_LANG['subaccountpermsinvoices'] = "View & Pay Invoices";
$_LANG['subaccountpermstickets'] = "View & Open Support Tickets";
$_LANG['subaccountpermsaffiliates'] = "View & Manage Affiliate Account";
$_LANG['subaccountpermsemails'] = "View Emails";
$_LANG['subaccountpermsorders'] = "Place New Orders/Upgrades/Cancellations";
$_LANG['subaccountpermissiondenied'] = "You do not have the required permissions to access this page";
$_LANG['subaccountallowedperms'] = "Your allowed permissions are:";
$_LANG['subaccountcontactmaster'] = "Contact the master account owner if you feel this to be an error.";
$_LANG['subaccountSsoDenied'] = "You do not have permission to login using Single Sign-On.";
$_LANG['knowledgebasealsoread'] = "Baca Juga";
$_LANG['orderpaymenttermtriennially'] = "3 Tahun";
$_LANG['orderpaymentterm36month'] = "Harga 36 Bulan";
$_LANG['domainrenewals'] = "Domain Renewals";
$_LANG['domaindaysuntilexpiry'] = "Days Until Expiry";
$_LANG['domainrenewalsnoneavailable'] = "There are no domains eligible for renewal in your account";
$_LANG['domainrenewalspastgraceperiod'] = "Past Renewable Period";
$_LANG['domainrenewalsingraceperiod'] = "Last Chance to Renew!";
$_LANG['domainrenewalsdays'] = "Days";
$_LANG['domainrenewalsdaysago'] = "Days Ago";
$_LANG['invoicespartialpayments'] = "Partial Payments";
$_LANG['invoicestotaldue'] = "Total Due";
$_LANG['masspaytitle'] = "Mass Payment";
$_LANG['masspaydescription'] = "Below is a summary of the selected invoices and the total due to pay all of them. To submit payment please just choose your desired payment method below and then submit.";
$_LANG['masspayselected'] = "Pay Selected";
$_LANG['masspayall'] = "Bayar Semua";
$_LANG['masspaymakepayment'] = "Melakukan Pembayaran";
# Version 4.3
$_LANG['searchenterdomain'] = "Enter Domain to Find";
$_LANG['searchfilter'] = "Filter";
$_LANG['suspendreason'] = "Suspension Reason";
$_LANG['suspendreasonoverdue'] = "Overdue on Payment";
$_LANG['vpsnetmanagement'] = "VPS Management";
$_LANG['vpsnetpowermanagement'] = "Power Management";
$_LANG['poweron'] = "Power On";
$_LANG['poweroffforced'] = "Power Off (Forced)";
$_LANG['powerreboot'] = "Reboot";
$_LANG['powershutdown'] = "Shutdown";
$_LANG['vpsnetcpugraphs'] = "CPU Graphs";
$_LANG['vpsnetnetworkgraphs'] = "Network Graphs";
$_LANG['vpsnethourly'] = "Hourly";
$_LANG['vpsnetdaily'] = "Daily";
$_LANG['vpsnetweekly'] = "Weekly";
$_LANG['vpsnetmonthly'] = "Monthly";
$_LANG['view'] = "View";
$_LANG['vpsnetbackups'] = "Backup Options";
$_LANG['vpsnetgenbackup'] = "Generate Backup";
$_LANG['vpsnetrestorebackup'] = "Restore Backup";
$_LANG['vpsnetrestorebackupwarning'] = "Restoring the backup will over write your VPS server";
$_LANG['vpsnetnobackups'] = "There are no backups";
$_LANG['vpsnetrunning'] = "Running";
$_LANG['vpsnetnotrunning'] = "Not Running";
$_LANG['vpsnetpowercycling'] = "Power is cycling";
$_LANG['vpsnetcloud'] = "Cloud";
$_LANG['vpsnettemplate'] = "Template";
$_LANG['vpsnetstatus'] = "System Status";
$_LANG['vpsnetbwusage'] = "Bandwidth Usage";
$_LANG['twitterlatesttweets'] = "Our Latest Tweets";
$_LANG['twitterfollow'] = "Follow Us on Twitter";
$_LANG['twitterfollowus'] = "Follow us";
$_LANG['twitterfollowuswhy'] = "to stay up to date with our latest news & offers";
$_LANG['chatlivehelp'] = "Live Help";
$_LANG['domainrelease'] = "Release Domain";
$_LANG['domainreleasedescription'] = "Enter a new TAG here to move your domain name to another registrar";
$_LANG['domainreleasetag'] = "New Registrar Tag";
# Ajax Order Form
$_LANG['orderformtitle'] = "Order Form";
$_LANG['signup'] = "Mendaftar";
$_LANG['loading'] = "Sedang Dimuat...";
$_LANG['ordersummarybegin'] = "Silahkan pilih produk untuk memulai";
$_LANG['cartchooseproduct'] = "Pilih Produk";
$_LANG['cartconfigurationoptions'] = "Pilihan Konfigurasi";
$_LANG['ordererrorsoccurred'] = "The following errors occurred and must be corrected before checkout:";
$_LANG['ordererrortermsofservice'] = "Persyaratan Layanan harus setuju untuk";
$_LANG['ordertostickconfirm'] = "Please tick to confirm you agree to the";
$_LANG['cartnewcustomer'] = "Saya Pelanggan Baru";
$_LANG['cartexistingcustomer'] = "Saya Sudah Terdaftar";
$_LANG['cartpromo'] = "Promotion";
$_LANG['cartenterpromo'] = "Masukan Kode Promosi";
$_LANG['cartremovepromo'] = "Remove Promo";
$_LANG['cartrecurringcharges'] = "Recurring Charges";
$_LANG['cartenterdomain'] = "Please enter the domain you would like to use below.";
$_LANG['cartdomainavailableoptions'] = "Congratulations, this domain is available!";
$_LANG['cartdomainavailableregister'] = "Please register this domain for";
$_LANG['cartdomainavailablemanual'] = "I will register it myself seperately";
$_LANG['cartdomainunavailableoptions'] = "Sorry, this domain is already taken. If you are the owner, please choose an option below...";
$_LANG['cartdomainunavailabletransfer'] = "Please transfer my domain for";
$_LANG['cartdomainunavailablemanual'] = "I already own this domain and will update the nameservers";