forked from Toftemann/WHMCS-dansk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdanish-admin.php
2940 lines (2862 loc) · 208 KB
/
danish-admin.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
if (!defined("WHMCS")) die("This file cannot be accessed directly");
# Global
$_ADMINLANG['global']['hometitle'] = "Admin overblik";
$_ADMINLANG['global']['searchfilter'] = "Søg/Filter";
$_ADMINLANG['global']['search'] = "Søg";
$_ADMINLANG['global']['recordsfound'] = "Resultater fundet";
$_ADMINLANG['global']['page'] = "Side";
$_ADMINLANG['global']['of'] = "Af";
$_ADMINLANG['global']['jumppage'] = "Gå til side";
$_ADMINLANG['global']['go'] = "Gå";
$_ADMINLANG['global']['any'] = "Any";
$_ADMINLANG['global']['withselected'] = "Med udvalgte";
$_ADMINLANG['global']['previouspage'] = "« Forrige side";
$_ADMINLANG['global']['nextpage'] = "Næste Side »";
$_ADMINLANG['global']['norecordsfound'] = "Ingen optegnelser fundet";
$_ADMINLANG['global']['welcomeback'] = "Velkommen tilbage";
$_ADMINLANG['global']['clientarea'] = "Kunde område";
$_ADMINLANG['global']['mynotes'] = "Mine noter";
$_ADMINLANG['global']['myaccount'] = "Min konto";
$_ADMINLANG['global']['logout'] = "Log ud";
$_ADMINLANG['global']['intellisearch'] = "Intelligent søgning";
$_ADMINLANG['global']['advancedsearch'] = "Avanceret søgning";
$_ADMINLANG['global']['staffonline'] = "Ansatte online";
$_ADMINLANG['global']['shortcuts'] = "Genveje";
$_ADMINLANG['global']['quicklinks'] = "Hurtige links";
$_ADMINLANG['global']['systeminfo'] = "System information";
$_ADMINLANG['global']['any'] = "- Any -";
$_ADMINLANG['global']['newmessage'] = "Ny besked";
$_ADMINLANG['global']['sendmessage'] = "Send besked";
$_ADMINLANG['global']['addnew'] = "Tilføj Ny";
$_ADMINLANG['global']['optional'] = "Valgfri";
$_ADMINLANG['global']['ticktoenable'] = "kryds til at ativer";
$_ADMINLANG['global']['savechanges'] = "Gem ændringer";
$_ADMINLANG['global']['cancelchanges'] = "Annuller ændringer";
$_ADMINLANG['global']['close'] = "Luk";
$_ADMINLANG['global']['save'] = "Gem";
$_ADMINLANG['global']['cancel'] = "Annuller";
$_ADMINLANG['global']['delete'] = "Slet";
$_ADMINLANG['global']['deleteconfirm'] = "Er du sikker på at du vil slette de valgte emner?";
$_ADMINLANG['global']['validationerror'] = "Validerings fejl";
$_ADMINLANG['global']['none'] = "Ingen";
$_ADMINLANG['global']['default'] = "Standard";
$_ADMINLANG['global']['language'] = "Sprog";
$_ADMINLANG['global']['disable'] = "Deaktiver";
$_ADMINLANG['global']['automatic'] = "automatisk";
$_ADMINLANG['global']['sendemail'] = "Send Email";
$_ADMINLANG['global']['loading'] = "Indlæser...";
$_ADMINLANG['global']['pricing'] = "Prising";
$_ADMINLANG['global']['recurring'] = "Tilbagevendende";
$_ADMINLANG['global']['edit'] = "Rediger";
$_ADMINLANG['global']['for'] = "for";
$_ADMINLANG['global']['goback'] = "Gå tilbage";
$_ADMINLANG['global']['na'] = "N/A";
$_ADMINLANG['global']['submit'] = "Indsend";
$_ADMINLANG['global']['nochange'] = "Ingen ændringer";
$_ADMINLANG['global']['yes'] = "Ja";
$_ADMINLANG['global']['no'] = "Nej";
$_ADMINLANG['global']['erroroccurred'] = "Der opstod en fejl";
$_ADMINLANG['global']['success'] = "Succes!";
$_ADMINLANG['global']['continue'] = "Fortsæt";
$_ADMINLANG['global']['clickhere'] = "Klik her";
$_ADMINLANG['global']['invalidaccessattempt'] = "Ugyldig adgangs forsøg";
$_ADMINLANG['global']['error'] = "Fejl";
$_ADMINLANG['global']['version'] = "Version";
$_ADMINLANG['global']['or'] = "Eller";
$_ADMINLANG['global']['back'] = "Tilbage";
$_ADMINLANG['global']['top'] = "Top";
$_ADMINLANG['global']['add'] = "Tilføj";
$_ADMINLANG['global']['remove'] = "Fjern";
$_ADMINLANG['global']['searchresults'] = "Søgeresultater";
$_ADMINLANG['global']['nomatchesfound'] = "Ingen emner fundet";
$_ADMINLANG['global']['unlimited'] = "Ubegrænset";
$_ADMINLANG['global']['hidden'] = "Skjult";
$_ADMINLANG['global']['changesuccess'] = "Ændringer er gemt!";
$_ADMINLANG['global']['changesuccessdesc'] = "Dine ændringer er blevet gemt.";
$_ADMINLANG['global']['clientsintellisearch'] = "Indtast Navn, Firma eller Email til at Søge";
$_ADMINLANG['global']['ok'] = "OK";
$_ADMINLANG['global']['view'] = "Se";
$_ADMINLANG['global']['attentionitems'] = "Emner der kræver opmærksomhed";
$_ADMINLANG['global']['enabled'] = " Aktiveret";
$_ADMINLANG['global']['disabled'] = " Deaktiveret";
$_ADMINLANG['global']['modulefilemissing'] = "Modul fil mangler";
$_ADMINLANG['global']['to'] = "til";
# Home
$_ADMINLANG['home']['title'] = "Hjem";
$_ADMINLANG['home']['quicksummary'] = "Hurtig oversigt";
$_ADMINLANG['home']['maintenancemode'] = "Vedligeholeldses tilstand er slået til. Husk at slå det fra, dette kan gøre under <a href=\"configgeneral.php\">gennerelle indstillinger</a>";
$_ADMINLANG['home']['recentclientactivity'] = "Seneste kunde aktivitet";
$_ADMINLANG['home']['recentadminactivity'] = "Seneste adminstrator aktivitet";
$_ADMINLANG['home']['recentactivity'] = "Senetse aktivitet";
$_ADMINLANG['home']['networkstatus'] = "Netværksstatus";
$_ADMINLANG['home']['load'] = "Indlæs";
$_ADMINLANG['home']['uptime'] = "Oppetid";
$_ADMINLANG['home']['percentuse'] = "% brugt";
$_ADMINLANG['home']['checknow'] = "Tjek nu";
$_ADMINLANG['home']['5oldest'] = "Showing 5 Oldest...";
$_ADMINLANG['home']['viewall'] = "View All";
$_ADMINLANG['home']['manage'] = "Manage";
$_ADMINLANG['home']['misc'] = "Miscellaneous";
$_ADMINLANG['home']['sysoverview'] = "System Overview";
$_ADMINLANG['home']['ordersoverview'] = "Orders Overview";
$_ADMINLANG['home']['incomeoverview'] = "Income Overview";
$_ADMINLANG['home']['incomeforecast'] = "Income Forecast";
$_ADMINLANG['home']['openinvoices'] = "Open Invoices";
$_ADMINLANG['home']['lastlogin'] = "Your Last Login";
$_ADMINLANG['home']['lastloginip'] = "from IP";
$_ADMINLANG['home']['whmcsnewsfeed'] = "WHMCS News Feed";
# Stats
$_ADMINLANG['stats']['title'] = "Statistics";
$_ADMINLANG['stats']['pendingorders'] = "Pending Orders";
$_ADMINLANG['stats']['activeclients'] = "Active Clients";
$_ADMINLANG['stats']['inactiveclients'] = "Inactive Clients";
$_ADMINLANG['stats']['closedclients'] = "Closed Clients";
$_ADMINLANG['stats']['pendingservices'] = "Pending Services";
$_ADMINLANG['stats']['activeservices'] = "Active Services";
$_ADMINLANG['stats']['suspendedservices'] = "Suspended Services";
$_ADMINLANG['stats']['terminatedservices'] = "Terminated Services";
$_ADMINLANG['stats']['cancelledservices'] = "Cancelled Services";
$_ADMINLANG['stats']['fraudservices'] = "Fraud Services";
$_ADMINLANG['stats']['pendingdomains'] = "Pending Domains";
$_ADMINLANG['stats']['pendingtransferdomains'] = "Pending Transfer Domains";
$_ADMINLANG['stats']['activedomains'] = "Active Domains";
$_ADMINLANG['stats']['expireddomains'] = "Expired Domains";
$_ADMINLANG['stats']['cancelleddomains'] = "Cancelled Domains";
$_ADMINLANG['stats']['frauddomains'] = "Fraud Domains";
$_ADMINLANG['stats']['unpaidinvoices'] = "Unpaid Invoices";
$_ADMINLANG['stats']['overdueinvoices'] = "Overdue Invoices";
$_ADMINLANG['stats']['activetickets'] = "Active Tickets";
$_ADMINLANG['stats']['activeflagged'] = "My Flagged Tickets";
$_ADMINLANG['stats']['uninvoicedbillableitems'] = "Uninvoiced Billable Items";
$_ADMINLANG['stats']['validquotes'] = "Valid Quotes";
$_ADMINLANG['stats']['todaysorders'] = "New Orders Today";
$_ADMINLANG['stats']['todayspending'] = "Todays Pending Orders";
$_ADMINLANG['stats']['todayscompleted'] = "Todays Accepted Orders";
$_ADMINLANG['stats']['yesterdaysorders'] = "New Orders Yesterday";
$_ADMINLANG['stats']['yesterdayspending'] = "Yesterdays Pending";
$_ADMINLANG['stats']['yesterdayscompleted'] = "Yesterdays Completed";
$_ADMINLANG['stats']['monthtodatetotal'] = "Month to Date Total";
$_ADMINLANG['stats']['yeartodatetotal'] = "Year to Date Total";
$_ADMINLANG['stats']['todaysincome'] = "Today's Income";
$_ADMINLANG['stats']['ticketsawaitingreply'] = "Ticket(s) Awaiting Reply";
$_ADMINLANG['stats']['pendingcancellations'] = "Pending Cancellation(s)";
$_ADMINLANG['stats']['todoitemsdue'] = "To-Do Item(s) Due";
$_ADMINLANG['stats']['opennetworkissues'] = "Open Network Issue(s)";
$_ADMINLANG['stats']['acceptedquotes'] = "Accepted Quotes";
$_ADMINLANG['stats']['affiliatesignups'] = "Affiliate Signups";
# Clients
$_ADMINLANG['clients']['title'] = "Clients";
$_ADMINLANG['clients']['viewsearch'] = "View/Search Clients";
$_ADMINLANG['clients']['addnew'] = "Add New Client";
$_ADMINLANG['clients']['massmail'] = "Mass Mail Tool";
$_ADMINLANG['clients']['cancelrequests'] = "Cancellation Requests";
$_ADMINLANG['clients']['cancelrequestsopen'] = "Show Open Requests";
$_ADMINLANG['clients']['cancelrequestscompleted'] = "Show Completed Requests";
$_ADMINLANG['clients']['cancelrequestimmediate'] = "Immediate";
$_ADMINLANG['clients']['cancelrequestendofperiod'] = "End of Billing Period";
$_ADMINLANG['clients']['cancelrequestsdelete'] = "Are you sure you want to delete this cancellation request?";
$_ADMINLANG['clients']['deletecontactconfirm'] = "Are you sure you want to delete this contact?";
$_ADMINLANG['clients']['invalidclientid'] = "Client ID Not Found";
$_ADMINLANG['clients']['resetsendpassword'] = "Reset & Send Password";
$_ADMINLANG['clients']['passwordsuccess'] = "New password sent successfully!";
$_ADMINLANG['clients']['activatesubaccount'] = "Activate Sub-Account";
$_ADMINLANG['clients']['addcontact'] = "Add Contact";
$_ADMINLANG['clients']['duplicateemail'] = "Duplicate Email Address";
$_ADMINLANG['clients']['duplicateemailexp'] = "The email address entered is already in use by another client account and must be unique for each client";
$_ADMINLANG['clients']['billingcontact'] = "Billing Contact";
$_ADMINLANG['clients']['changedefault'] = "Select to Change Default";
$_ADMINLANG['clients']['latefees'] = "Late Fees";
$_ADMINLANG['clients']['latefeesdesc'] = "Don't Apply Late Fees";
$_ADMINLANG['clients']['overduenotices'] = "Overdue Notices";
$_ADMINLANG['clients']['overduenoticesdesc'] = "Don't Send Overdue Emails";
$_ADMINLANG['clients']['taxexempt'] = "Tax Exempt";
$_ADMINLANG['clients']['taxexemptdesc'] = "Don't Apply Tax to Invoices";
$_ADMINLANG['clients']['separateinvoices'] = "Separate Invoices";
$_ADMINLANG['clients']['separateinvoicesdesc'] = "Separate Invoices for Services";
$_ADMINLANG['clients']['disableccprocessing'] = "Disable CC Processing";
$_ADMINLANG['clients']['disableccprocessingdesc'] = "Disable Automatic CC Processing";
$_ADMINLANG['clients']['creditbalance'] = "Credit Balance";
$_ADMINLANG['clients']['newaccinfoemail'] = "Tick this box to send a New Account Information Message";
$_ADMINLANG['clients']['addclient'] = "Add Client";
$_ADMINLANG['clients']['moveservice'] = "Move Product/Service to Another Client";
$_ADMINLANG['clients']['mergeclient'] = "Merge Client";
$_ADMINLANG['clients']['mergeexplain'] = "This process allows you to merge two client accounts into one.";
$_ADMINLANG['clients']['invalidid'] = "Invalid Client ID entered for Second Client";
$_ADMINLANG['clients']['firstclient'] = "First Client";
$_ADMINLANG['clients']['secondclient'] = "Second Client ID";
$_ADMINLANG['clients']['tofirst'] = "Merge to First Client";
$_ADMINLANG['clients']['tosecond'] = "Merge to Second Client";
$_ADMINLANG['clients']['transferownership'] = "Transfer Ownership";
$_ADMINLANG['clients']['transferchoose'] = "This tool allows you to move this product/service record to another client";
$_ADMINLANG['clients']['invalidowner'] = "Invalid Client ID entered for New Owner";
$_ADMINLANG['clients']['newowner'] = "New Owner";
$_ADMINLANG['clients']['deletenote'] = "Are you sure you want to delete this note?";
$_ADMINLANG['clients']['ccdetails'] = "Credit Card Details";
$_ADMINLANG['clients']['ccdetailschanged'] = "Card Details Changed Successfully";
$_ADMINLANG['clients']['incorrecthash'] = "The CC Encryption Hash entered was incorrect";
$_ADMINLANG['clients']['existingccdetails'] = "Existing Card Details";
$_ADMINLANG['clients']['fullviewcardno'] = "View Full Card Number";
$_ADMINLANG['clients']['entercchash'] = "To view the full credit card number, enter the CC Encryption Hash below.";
$_ADMINLANG['clients']['ccstoredremotely'] = "* Only the last 4 digits of the credit card are stored locally since a token based remote storage module is being used.";
$_ADMINLANG['clients']['enternewcc'] = "Enter New Card Details";
$_ADMINLANG['clients']['cleardetails'] = "Clear Details";
$_ADMINLANG['clients']['ccdeletesure'] = "Are you sure you want to delete the stored credit card details?";
$_ADMINLANG['clients']['closesure'] = "Are you sure you want to close this client? This will set all packages and unpaid invoices to Cancelled.";
$_ADMINLANG['clients']['deletesure'] = "Are you sure you want to delete this client? This will delete all history and cannot be undone.";
$_ADMINLANG['clients']['search'] = "Client Search";
$_ADMINLANG['clients']['marketingemailsoptout'] = "Marketing Emails Opt-out";
$_ADMINLANG['clients']['disablemarketingemails'] = "Don't send client marketing emails";
$_ADMINLANG['clients']['overrideautoclose'] = "Status Update";
$_ADMINLANG['clients']['overrideautocloseinfo'] = "Disable Automatic Status Update";
$_ADMINLANG['clients']['invalidemail'] = "The email address you entered was not valid";
$_ADMINLANG['clients']['2faenabled'] = "Enabled - Uncheck to disable";
$_ADMINLANG['clients']['ccstoredisabled'] = "Credit Card Storage is Disabled";
# Client Summary
$_ADMINLANG['clientsummary']['title'] = "Client Profile";
$_ADMINLANG['clientsummary']['activeclient'] = "Active Client";
$_ADMINLANG['clientsummary']['summary'] = "Summary";
$_ADMINLANG['clientsummary']['profile'] = "Profile";
$_ADMINLANG['clientsummary']['contacts'] = "Contacts";
$_ADMINLANG['clientsummary']['products'] = "Products/Services";
$_ADMINLANG['clientsummary']['domains'] = "Domains";
$_ADMINLANG['clientsummary']['billableitems'] = "Billable Items";
$_ADMINLANG['clientsummary']['invoices'] = "Invoices";
$_ADMINLANG['clientsummary']['quotes'] = "Quotes";
$_ADMINLANG['clientsummary']['transactions'] = "Transactions";
$_ADMINLANG['clientsummary']['emails'] = "Emails";
$_ADMINLANG['clientsummary']['notes'] = "Notes";
$_ADMINLANG['clientsummary']['log'] = "Log";
$_ADMINLANG['clientsummary']['clientdetails'] = "Clients Details";
$_ADMINLANG['clientsummary']['infoheading'] = "Clients Information";
$_ADMINLANG['clientsummary']['contactsheading'] = "Contacts/Sub-Accounts";
$_ADMINLANG['clientsummary']['otherinfoheading'] = "Other Information";
$_ADMINLANG['clientsummary']['billingheading'] = "Invoices/Billing";
$_ADMINLANG['clientsummary']['filesheading'] = "Files";
$_ADMINLANG['clientsummary']['settingsheading'] = "Clients Settings";
$_ADMINLANG['clientsummary']['emailsheading'] = "Recent Emails";
$_ADMINLANG['clientsummary']['sendemailheading'] = "Send Email";
$_ADMINLANG['clientsummary']['actionsheading'] = "Other Actions";
$_ADMINLANG['clientsummary']['ccinfo'] = "Credit Card Information";
$_ADMINLANG['clientsummary']['loginasclient'] = "Login as Client";
$_ADMINLANG['clientsummary']['nocontacts'] = "No additional contacts setup";
$_ADMINLANG['clientsummary']['clientfor'] = "Client For";
$_ADMINLANG['clientsummary']['lastlogin'] = "Last Login";
$_ADMINLANG['clientsummary']['managecredits'] = "Manage Credits";
$_ADMINLANG['clientsummary']['nofiles'] = "No files uploaded";
$_ADMINLANG['clientsummary']['fileadd'] = "Add File";
$_ADMINLANG['clientsummary']['filetitle'] = "Title";
$_ADMINLANG['clientsummary']['filename'] = "File";
$_ADMINLANG['clientsummary']['fileadminonly'] = "Admin Only";
$_ADMINLANG['clientsummary']['filedeletesure'] = "Are you sure you want to delete this file?";
$_ADMINLANG['clientsummary']['noemails'] = "No emails sent";
$_ADMINLANG['clientsummary']['vieworders'] = "View Orders";
$_ADMINLANG['clientsummary']['accountstatement'] = "View Account Statement";
$_ADMINLANG['clientsummary']['openticket'] = "Open Ticket";
$_ADMINLANG['clientsummary']['newticket'] = "Open New Support Ticket";
$_ADMINLANG['clientsummary']['viewtickets'] = "View all Support Tickets";
$_ADMINLANG['clientsummary']['activateaffiliate'] = "Activate as Affiliate";
$_ADMINLANG['clientsummary']['viewaffiliate'] = "View Affiliate Details";
$_ADMINLANG['clientsummary']['affiliateactivatesuccess'] = "An affiliate account has been successfully created for this client";
$_ADMINLANG['clientsummary']['merge'] = "Merge";
$_ADMINLANG['clientsummary']['mergeclients'] = "Merge Clients Accounts";
$_ADMINLANG['clientsummary']['close'] = "Close";
$_ADMINLANG['clientsummary']['closeclient'] = "Close Clients Account";
$_ADMINLANG['clientsummary']['deleteclient'] = "Delete Clients Account";
$_ADMINLANG['clientsummary']['currentquotes'] = "Current Quotes";
$_ADMINLANG['clientsummary']['massupdateitems'] = "Mass Update Items";
$_ADMINLANG['clientsummary']['createproratainvoice'] = "Create Prorata Invoice";
$_ADMINLANG['clientsummary']['invoiceselected'] = "Invoice Selected Items";
$_ADMINLANG['clientsummary']['deleteselected'] = "Delete Selected Items";
$_ADMINLANG['clientsummary']['deletesuccess'] = "The selected items were deleted successfully";
$_ADMINLANG['clientsummary']['massupdcomplete'] = "Mass Update Completed";
$_ADMINLANG['clientsummary']['modifysuccess'] = "The selected items were modified successfully";
$_ADMINLANG['clientsummary']['createaddfunds'] = "Create Add Funds Invoice";
$_ADMINLANG['clientsummary']['createaddfundsdesc'] = "You can create invoices in this way to allow a client to deposit funds to their account, or to charge a specific amount from a clients credit card.";
$_ADMINLANG['clientsummary']['createaddfundssuccess'] = "The add funds invoice was created successfully!";
$_ADMINLANG['clientsummary']['settingtaxexempt'] = "Exempt from Tax";
$_ADMINLANG['clientsummary']['settingautocc'] = "Auto CC Processing";
$_ADMINLANG['clientsummary']['settingreminders'] = "Send Overdue Reminders";
$_ADMINLANG['clientsummary']['settinglatefees'] = "Apply Late Fees";
$_ADMINLANG['clientsummary']['settingtoggle'] = "Toggle";
$_ADMINLANG['clientsummary']['stickynotescheck'] = "Make Sticky (Important)";
# Services
$_ADMINLANG['services']['title'] = "Products/Services";
$_ADMINLANG['services']['listall'] = "List All Products/Services";
$_ADMINLANG['services']['listhosting'] = "Shared Hosting";
$_ADMINLANG['services']['listreseller'] = "Reseller Accounts";
$_ADMINLANG['services']['listservers'] = "VPS/Servers";
$_ADMINLANG['services']['listother'] = "Other Services";
$_ADMINLANG['services']['listaddons'] = "Service Addons";
$_ADMINLANG['services']['listdomains'] = "Domain Registrations";
$_ADMINLANG['services']['upgradedowngrade'] = "Upgrade/Downgrade";
$_ADMINLANG['services']['upgradeoverdue'] = "Product Overdue";
$_ADMINLANG['services']['upgradeoverdueinfo'] = "Cannot Upgrade/Downgrade because the product is overdue on payment";
$_ADMINLANG['services']['daysleft'] = "Days Left on Current Cycle";
$_ADMINLANG['services']['upgradedue'] = "Upgrade Total Due";
$_ADMINLANG['services']['related'] = "Related Product/Service";
$_ADMINLANG['services']['upgradetype'] = "Upgrade Type";
$_ADMINLANG['services']['productcycle'] = "Product / Billing Cycle";
$_ADMINLANG['services']['newservice'] = "New Product/Service";
$_ADMINLANG['services']['nochanges'] = "No Changes Detected";
$_ADMINLANG['services']['upgradesummary'] = "Upgrade Summary";
$_ADMINLANG['services']['upgradesummaryinfo'] = "Make changes above to calculate costs";
$_ADMINLANG['services']['noproducts'] = "No Products/Services";
$_ADMINLANG['services']['noproductsinfo'] = "No products/services found for this user.";
$_ADMINLANG['services']['moduleerror'] = "Module Command Error";
$_ADMINLANG['services']['modulesuccess'] = "Module Command Success";
$_ADMINLANG['services']['createsuccess'] = "Service Created Successfully";
$_ADMINLANG['services']['suspendsuccess'] = "Service Suspended Successfully";
$_ADMINLANG['services']['unsuspendsuccess'] = "Service Unsuspended Successfully";
$_ADMINLANG['services']['terminatesuccess'] = "Service Terminated Successfully";
$_ADMINLANG['services']['updownsuccess'] = "Service Upgraded/Downgraded Successfully";
$_ADMINLANG['services']['pwchangesuccess'] = "Service Password Changed Successfully";
$_ADMINLANG['services']['customsuccess'] = "Action Completed Successfully";
$_ADMINLANG['services']['notfound'] = "Service ID Not Found";
$_ADMINLANG['services']['confirmcommand'] = "Confirm Module Command";
$_ADMINLANG['services']['deleteproduct'] = "Delete Product/Service";
$_ADMINLANG['services']['createsure'] = "Are you sure you want to run the create function?";
$_ADMINLANG['services']['suspendsure'] = "Are you sure you want to run the suspend function?";
$_ADMINLANG['services']['suspendreason'] = "Suspend Reason";
$_ADMINLANG['services']['suspendsendemail'] = "Send Suspension Email";
$_ADMINLANG['services']['unsuspendsure'] = "Are you sure you want to run the unsuspend function?";
$_ADMINLANG['services']['terminatesure'] = "Are you sure you want to run the terminate function?";
$_ADMINLANG['services']['chgpacksure'] = "Are you sure you want to run the change package function?";
$_ADMINLANG['services']['proddeletesure'] = "Are you sure you want to delete this service? This will also remove any associated addons but not run the module terminate function.";
$_ADMINLANG['services']['moveservice'] = "Move Product/Service";
$_ADMINLANG['services']['cancrequest'] = "Cancellation Request Notice";
$_ADMINLANG['services']['cancrequestinfo'] = "A cancellation request exists for this item and so it will not be invoiced when due";
$_ADMINLANG['services']['diskusage'] = "Disk Usage";
$_ADMINLANG['services']['disklimit'] = "Disk Limit";
$_ADMINLANG['services']['bwusage'] = "BW Usage";
$_ADMINLANG['services']['bwlimit'] = "BW Limit";
$_ADMINLANG['services']['lastupdated'] = "Last Updated";
$_ADMINLANG['services']['used'] = "Used";
$_ADMINLANG['services']['createupgorder'] = "Upgrade/Downgrade";
$_ADMINLANG['services']['addons'] = "Addon(s)";
$_ADMINLANG['services']['clickmanage'] = "Click here to Manage";
$_ADMINLANG['services']['autorecalc'] = "Auto Recalculate on Save";
$_ADMINLANG['services']['suspendreason'] = "Suspension Reason";
$_ADMINLANG['services']['modulecommands'] = "Module Commands";
$_ADMINLANG['services']['noaffect'] = "Change will not affect price";
$_ADMINLANG['services']['overrideautosusp'] = "Overide Auto-Suspend";
$_ADMINLANG['services']['nosuspenduntil'] = "Do not suspend until";
$_ADMINLANG['services']['endofcycle'] = "Auto-Terminate End of Cycle";
$_ADMINLANG['services']['reason'] = "Reason";
# Module Command Buttons
$_ADMINLANG['modulebuttons']['create'] = "Create";
$_ADMINLANG['modulebuttons']['suspend'] = "Suspend";
$_ADMINLANG['modulebuttons']['terminate'] = "Terminate";
$_ADMINLANG['modulebuttons']['unsuspend'] = "Unsuspend";
$_ADMINLANG['modulebuttons']['changepackage'] = "Change Package";
$_ADMINLANG['modulebuttons']['changepassword'] = "Change Password";
$_ADMINLANG['modulebuttons']['register'] = "Register";
$_ADMINLANG['modulebuttons']['renew'] = "Renew";
$_ADMINLANG['modulebuttons']['transfer'] = "Transfer";
# Addons
$_ADMINLANG['addons']['title'] = "Addons";
$_ADMINLANG['addons']['relatedservice'] = "Related Product/Service";
$_ADMINLANG['addons']['areyousuredelete'] = "Are you sure you want to delete this addon?";
$_ADMINLANG['addons']['regdate'] = "Reg Date";
$_ADMINLANG['addons']['name'] = "Name";
$_ADMINLANG['addons']['addnew'] = "Add New Addon";
$_ADMINLANG['addons']['closewindow'] = "Close Window";
$_ADMINLANG['addons']['editaddon'] = "Edit Addon";
$_ADMINLANG['addons']['predefinedaddon'] = "Predefined Addon";
$_ADMINLANG['addons']['usedefault'] = "Use Default";
$_ADMINLANG['addons']['customname'] = "Custom Name";
$_ADMINLANG['addons']['taxaddon'] = "Tax Addon";
$_ADMINLANG['addons']['geninvoice'] = "Generate Invoice after Adding";
$_ADMINLANG['addons']['nodomain'] = "No Domain";
$_ADMINLANG['addons']['productaddons'] = "Product Addons";
$_ADMINLANG['addons']['addondeletesuccess'] = "Addon Deleted Successfully!";
$_ADMINLANG['addons']['addondelsuccessinfo'] = "The selected addon has now been deleted.";
$_ADMINLANG['addons']['changesuccess'] = "Changes Saved Successfully!";
$_ADMINLANG['addons']['changesuccessinfo'] = "The changes to the addon have been saved";
$_ADMINLANG['addons']['addonaddsuccess'] = "Addon Added Successfully!";
$_ADMINLANG['addons']['addonaddsuccessinfo'] = "Your new addon has been added successfully";
$_ADMINLANG['addons']['description'] = "Addons are primarily designed for one off fee items, whereas for recurring items you would use configurable options. Addons can be displayed during the initial order process but can also be ordered by the client to add to an existing package at any time.";
$_ADMINLANG['addons']['options'] = "Options";
$_ADMINLANG['addons']['showonorder'] = "Show on Order";
$_ADMINLANG['addons']['createnew'] = "Create New Addon";
$_ADMINLANG['addons']['taxaddoninfo'] = "Charge tax on this addon";
$_ADMINLANG['addons']['showonorderinfo'] = "Show addon during initial product order process";
$_ADMINLANG['addons']['autoactpayment'] = "Auto Activate on Payment";
$_ADMINLANG['addons']['autoactpaymentinfo'] = "Auto Activate and send Welcome Email on payment";
$_ADMINLANG['addons']['suspendparentproduct'] = "Suspend Parent Product";
$_ADMINLANG['addons']['suspendparentproductinfo'] = "Tick to suspend the parent product as well when instances of this addon are overdue";
$_ADMINLANG['addons']['weighting'] = "Addon Weighting";
$_ADMINLANG['addons']['weightinginfo'] = "Enter a number here to override the default alphabetical display order";
$_ADMINLANG['addons']['applicableproducts'] = "Applicable Products";
# Domains
$_ADMINLANG['domains']['title'] = "Domains";
$_ADMINLANG['domains']['domainreg'] = "Domain Registration";
$_ADMINLANG['domains']['regtype'] = "Registration Type";
$_ADMINLANG['domains']['register'] = "Registration";
$_ADMINLANG['domains']['transfer'] = "Transfer";
$_ADMINLANG['domains']['renewal'] = "Renewal";
$_ADMINLANG['domains']['registrant'] = "Registrant Information";
$_ADMINLANG['domains']['regperiod'] = "Registration Period";
$_ADMINLANG['domains']['year'] = "Year";
$_ADMINLANG['domains']['years'] = "Years";
$_ADMINLANG['domains']['domainaddons'] = "Domain Addons";
$_ADMINLANG['domains']['nameserver'] = "Nameserver";
$_ADMINLANG['domains']['eppcode'] = "EPP Code";
$_ADMINLANG['domains']['addons'] = "Domain Addons";
$_ADMINLANG['domains']['dnsmanagement'] = "DNS Management";
$_ADMINLANG['domains']['emailforwarding'] = "Email Forwarding";
$_ADMINLANG['domains']['idprotection'] = "ID Protection";
$_ADMINLANG['domains']['checkingavailability'] = "Checking Availability...";
$_ADMINLANG['domains']['viewwhois'] = "View WHOIS";
$_ADMINLANG['domains']['modifycontact'] = "Modify Domain Contact Details";
$_ADMINLANG['domains']['registrarerror'] = "Registrar Error";
$_ADMINLANG['domains']['regtransfer'] = "Register/Transfer Domain";
$_ADMINLANG['domains']['autonsdesc1'] = "Nameservers Automatically Taken From Hosting Account Assigned Server";
$_ADMINLANG['domains']['autonsdesc2'] = "Default Nameservers";
$_ADMINLANG['domains']['autonsdesc3'] = "Nameservers specified in order";
$_ADMINLANG['domains']['actionreg'] = "Register";
$_ADMINLANG['domains']['ifreq'] = "If Required";
$_ADMINLANG['domains']['sendregisterconfirm'] = "Tick this box to Send Registration Confirmation Email on Successful Completion";
$_ADMINLANG['domains']['regsuccess'] = "Domain Registered Successfully";
$_ADMINLANG['domains']['transuccess'] = "Domain Transfer Initiated Successfully";
$_ADMINLANG['domains']['actionquestion'] = "Are you sure you want to %s this domain?"; #%s is either actionreg or transfer
$_ADMINLANG['domains']['nodomains'] = "No Domains";
$_ADMINLANG['domains']['nodomainsinfo'] = "No domains found for this user.";
$_ADMINLANG['domains']['domainidnotfound'] = "Domain ID Not Found";
$_ADMINLANG['domains']['whois'] = "whois";
$_ADMINLANG['domains']['changesuccess'] = "The changes to the domain were saved successfully";
$_ADMINLANG['domains']['dnsmanagementadded'] = "DNS Management has been added to this domain and the recurring price updated";
$_ADMINLANG['domains']['emailforwardingadded'] = "Email Forwarding has been added to this domain and the recurring price updated";
$_ADMINLANG['domains']['idprotectionadded'] = "ID Protection has been added to this domain and the recurring price updated";
$_ADMINLANG['domains']['dnsmanagementremoved'] = "DNS Management has been removed from this domain and the recurring price reduced";
$_ADMINLANG['domains']['emailforwardingremoved'] = "Email Forwarding has been removed from this domain and the recurring price reduced";
$_ADMINLANG['domains']['idprotectionremoved'] = "ID Protection has been removed from this domain and the recurring price reduced";
$_ADMINLANG['domains']['nschangefail'] = "Nameserver Change Failed";
$_ADMINLANG['domains']['nschangesuccess'] = "Nameserver Change Successful";
$_ADMINLANG['domains']['nschangeinfo'] = "The requested nameserver changes were accepted by the registrar";
$_ADMINLANG['domains']['resetdefaultns'] = "Tick to reset to default nameservers";
$_ADMINLANG['domains']['reglockfailed'] = "Registrar Lock Failed";
$_ADMINLANG['domains']['reglocksuccess'] = "Registrar Lock Successful";
$_ADMINLANG['domains']['reglockinfo'] = "The status of the lock was successfully changed";
$_ADMINLANG['domains']['renewfailed'] = "Domain Renewal Failed";
$_ADMINLANG['domains']['renewsuccess'] = "Domain Renewal Successful";
$_ADMINLANG['domains']['renewinfo'] = "The domain has been successfully renewed for %s Year/s";
$_ADMINLANG['domains']['eppfailed'] = "EPP Request Failed";
$_ADMINLANG['domains']['epprequest'] = "EPP Code Request";
$_ADMINLANG['domains']['deletefailed'] = "Domain Deletion Request Failed";
$_ADMINLANG['domains']['deletesuccess'] = "Domain Deletion Request Successful";
$_ADMINLANG['domains']['deleteinfo'] = "The request to delete this domain was accepted by the registrar";
$_ADMINLANG['domains']['releasefailed'] = "Domain Release Failed";
$_ADMINLANG['domains']['releasesuccess'] = "Domain Release Successful";
$_ADMINLANG['domains']['releaseinfo'] = "The domain has been successfully released to the new tag %s";
$_ADMINLANG['domains']['idprotectfailed'] = "ID Protection Toggle Failed";
$_ADMINLANG['domains']['idprotectsuccess'] = "ID Protection Toggle Successful";
$_ADMINLANG['domains']['idprotectinfo'] = "The ID Protection status was successfully changed at the registrar";
$_ADMINLANG['domains']['registrarerror'] = "Registrar Error";
$_ADMINLANG['domains']['reglock'] = "Registrar Lock";
$_ADMINLANG['domains']['registrarcommands'] = "Registrar Commands";
$_ADMINLANG['domains']['renew'] = "Renew";
$_ADMINLANG['domains']['modifydetails'] = "Modify Contact Details";
$_ADMINLANG['domains']['getepp'] = "Get EPP Code";
$_ADMINLANG['domains']['requestdelete'] = "Request Delete";
$_ADMINLANG['domains']['releasedomain'] = "Release Domain";
$_ADMINLANG['domains']['managementtools'] = "Management Tools";
$_ADMINLANG['domains']['donotrenew'] = "Disable Auto Renew";
$_ADMINLANG['domains']['renewdomain'] = "Renew Domain";
$_ADMINLANG['domains']['renewdomainq'] = "Are you sure you want to send the domain renewal request to the registrar?";
$_ADMINLANG['domains']['requestepp'] = "Request EPP Code";
$_ADMINLANG['domains']['requesteppq'] = "Are you sure you want to send the EPP Code request to the registrar?";
$_ADMINLANG['domains']['requestdel'] = "Request Domain Deletion";
$_ADMINLANG['domains']['requestdelq'] = "Are you sure you want to send the domain registrar a deletion request?";
$_ADMINLANG['domains']['delete'] = "Delete Domain";
$_ADMINLANG['domains']['deleteq'] = "Are you sure you want to delete this domain?";
$_ADMINLANG['domains']['releasedomainq'] = "Release this domain by entering the new tag below.";
$_ADMINLANG['domains']['transfertag'] = "Transfer Tag";
$_ADMINLANG['domains']['pricingtitle'] = "Domains/TLDS";
$_ADMINLANG['domains']['pricetitle'] = "Domain Pricing for";
$_ADMINLANG['domains']['leaveatzero'] = "Leave Register at 0 to disable that term. Set Transfer/Renew to -1 to disable";
$_ADMINLANG['domains']['delsureextension'] = "Are you sure you want to delete this domain extension from the pricing list?";
$_ADMINLANG['domains']['pricinginfo'] = "This is where you configure the TLDs that you want to allow clients to register or transfer to you. As well as pricing, you can set which addons are offered with each TLD, if an EPP code is required for transfers, and whether registration should be automated and if so, with which registrar.";
$_ADMINLANG['domains']['autoreg'] = "Auto Registration";
$_ADMINLANG['domains']['openpricing'] = "Open Pricing";
$_ADMINLANG['domains']['extensionalreadyexist'] = "The extension %s already exists";
$_ADMINLANG['domains']['duplicatetld'] = "Duplicate TLD";
$_ADMINLANG['domains']['selecttldtoduplicate'] = "Select a TLD to duplicate";
$_ADMINLANG['domains']['sourcenewtldempty'] = "Source TLD and New TLD should not be empty";
$_ADMINLANG['domains']['slabsintro'] = "Pricing slabs can be created to offer groups of clients alternative pricing. Slabs are tied to client groups, so you need to set pricing for the default base slab, and then optionally for any of the client groups you want to offer custom pricing to.";
$_ADMINLANG['domains']['pricingslabfor'] = "Pricing Slab for";
$_ADMINLANG['domains']['defaultpricingslab'] = "Default Base Slab";
$_ADMINLANG['domains']['activatepricingslab'] = "Activate Pricing Slab";
$_ADMINLANG['domains']['activatepricingslabconfirm'] = "Are you sure you want to activate new pricing slab?";
$_ADMINLANG['domains']['deactivatepricingslab'] = "Deactivate Pricing Slab";
$_ADMINLANG['domains']['deactivatepricingslabconfirm'] = "Are you sure you want to deactivate this pricing slab?";
$_ADMINLANG['domains']['resetpricingslab'] = "Reset to Base Slab Pricing";
$_ADMINLANG['domains']['resetpricingslabconfirm'] = "Are you sure you want to reset the pricing of this slab to base slab?";
$_ADMINLANG['domains']['domaincontactchoose'] = "Choose Contact";
$_ADMINLANG['domains']['domaincontactprimary'] = "Account Owner's Details";
$_ADMINLANG['domains']['domaincontactusexisting'] = "Use Existing Contact";
$_ADMINLANG['domains']['domaincontactusecustom'] = "Use Following Details";
# Orders
$_ADMINLANG['orders']['title'] = "Orders";
$_ADMINLANG['orders']['manage'] = "Manage Orders";
$_ADMINLANG['orders']['listall'] = "List All Orders";
$_ADMINLANG['orders']['listpending'] = "Pending Orders";
$_ADMINLANG['orders']['listactive'] = "Active Orders";
$_ADMINLANG['orders']['listfraud'] = "Fraud Orders";
$_ADMINLANG['orders']['listcancelled'] = "Cancelled Orders";
$_ADMINLANG['orders']['addnew'] = "Add New Order";
$_ADMINLANG['orders']['noinvoicedue'] = "No Invoice Due";
$_ADMINLANG['orders']['accept'] = "Accept Order";
$_ADMINLANG['orders']['acceptconfirm'] = "Are you sure you want to approve the selected orders?";
$_ADMINLANG['orders']['cancel'] = "Cancel Order";
$_ADMINLANG['orders']['cancelconfirm'] = "Are you sure you want to cancel the selected orders?";
$_ADMINLANG['orders']['cancelrefund'] = "Cancel & Refund";
$_ADMINLANG['orders']['fraud'] = "Set as Fraud";
$_ADMINLANG['orders']['pending'] = "Set Back to Pending";
$_ADMINLANG['orders']['delete'] = "Delete Order";
$_ADMINLANG['orders']['deleteconfirm'] = "Are you sure you want to delete the selected orders?";
$_ADMINLANG['orders']['statusaccept'] = "Order Accepted";
$_ADMINLANG['orders']['statusacceptmsg'] = "The order has now been successfully activated";
$_ADMINLANG['orders']['statusaccepterror'] = "Order Accept Encountered Problems";
$_ADMINLANG['orders']['statuscancelled'] = "Order Set to Cancelled";
$_ADMINLANG['orders']['statusfraud'] = "Order Set to Fraud";
$_ADMINLANG['orders']['statuspending'] = "Order Set Back to Pending";
$_ADMINLANG['orders']['statuschangemsg'] = "The order status has been changed successfully";
$_ADMINLANG['orders']['statusrefundfailed'] = "Order Cancel & Refund Failed";
$_ADMINLANG['orders']['statusrefundnoinvoice'] = "There is no invoice for this order";
$_ADMINLANG['orders']['statusrefundnotpaid'] = "The invoice for this order has not yet been paid and so cannot be refunded";
$_ADMINLANG['orders']['statusrefundalready'] = "The invoice for this order has already been refunded";
$_ADMINLANG['orders']['statusrefundfailedmsg'] = "The refund attempt has failed. Please check the Gateway Log for more information";
$_ADMINLANG['orders']['statusrefundnoauto'] = "The invoice for this order was not paid by a gateway that can be automatically refunded so you need to refund manually";
$_ADMINLANG['orders']['statusrefundsuccess'] = "Order Cancelled & Refunded Successfully!";
$_ADMINLANG['orders']['statusrefundsuccessmsg'] = "The order has been cancelled and payment refunded successfully";
$_ADMINLANG['orders']['confirmcancel'] = "Are you sure you want to cancel this order? This will also run module termination for any active products/services.";
$_ADMINLANG['orders']['confirmcancelrefund'] = "Are you sure you want to cancel & refund this order? This will also run module termination for any active products/services.";
$_ADMINLANG['orders']['confirmfraud'] = "Are you sure you want to cancel this order? This will also run module termination for any active products/services.";
$_ADMINLANG['orders']['confirmpending'] = "Are you sure you want to set this order back to Pending?";
$_ADMINLANG['orders']['confirmdelete'] = "Are you sure you want to delete this order? This will delete all related products/services & invoice.";
$_ADMINLANG['orders']['checkfreeemail'] = "Check if Free Email Account";
$_ADMINLANG['orders']['iplookup'] = "Lookup";
$_ADMINLANG['orders']['ipban'] = "Ban";
$_ADMINLANG['orders']['affnone'] = "None";
$_ADMINLANG['orders']['affmanualassign'] = "Manual Assign";
$_ADMINLANG['orders']['affassign'] = "Assign to Affiliate";
$_ADMINLANG['orders']['chooseaffiliate'] = "Choose affiliate to credit with order";
$_ADMINLANG['orders']['items'] = "Order Items";
$_ADMINLANG['orders']['sharedhosting'] = "Shared Hosting";
$_ADMINLANG['orders']['resellerhosting'] = "Reseller Hosting";
$_ADMINLANG['orders']['server'] = "VPS/Server";
$_ADMINLANG['orders']['other'] = "Product/Service";
$_ADMINLANG['orders']['addon'] = "Addon";
$_ADMINLANG['orders']['runmodule'] = "Run Module Create";
$_ADMINLANG['orders']['sendwelcome'] = "Send Welcome Email";
$_ADMINLANG['orders']['sendtoregistrar'] = "Send to Registrar";
$_ADMINLANG['orders']['sendconfirmation'] = "Send Confirmation Email";
$_ADMINLANG['orders']['nameservers'] = "Nameservers";
$_ADMINLANG['orders']['notes'] = "Notes / Additional Information";
$_ADMINLANG['orders']['fraudcheckresults'] = "Fraud Check Results";
$_ADMINLANG['orders']['fraudcheckrerun'] = "Re-Run Fraud Check";
$_ADMINLANG['orders']['availableactions'] = "Available Actions";
$_ADMINLANG['orders']['anotherproduct'] = "Add Another Product";
$_ADMINLANG['orders']['anotherdomain'] = "Add Another Domain";
$_ADMINLANG['orders']['noselections'] = "An order cannot be created because no products or domain registration items have been selected";
$_ADMINLANG['orders']['priceoverridedesc'] = "(Only enter to manually override default product pricing)";
$_ADMINLANG['orders']['settings'] = "Order Settings";
$_ADMINLANG['orders']['orderconfirmation'] = "Order Confirmation";
$_ADMINLANG['orders']['geninvoice'] = "Generate Invoice";
$_ADMINLANG['orders']['invoicing'] = "Send Invoice";
$_ADMINLANG['orders']['status'] = "Order Status";
$_ADMINLANG['orders']['submit'] = "Submit Order";
$_ADMINLANG['orders']['toplacenew'] = "to place a new order.";
$_ADMINLANG['orders']['vieworder'] = "View Order";
$_ADMINLANG['orders']['ordertype'] = "Order Type";
$_ADMINLANG['orders']['createorder'] = "Create Order";
$_ADMINLANG['orders']['createpromo'] = "Create Custom Promo";
$_ADMINLANG['orders']['createpromoinfo'] = "Promotional Discounts created \"on the fly\" here apply to all items in an order";
# Billing Cycles
$_ADMINLANG['billingcycles']['free'] = "Free";
$_ADMINLANG['billingcycles']['onetime'] = "One Time";
$_ADMINLANG['billingcycles']['monthly'] = "Monthly";
$_ADMINLANG['billingcycles']['quarterly'] = "Quarterly";
$_ADMINLANG['billingcycles']['semiannually'] = "Semi-Annually";
$_ADMINLANG['billingcycles']['annually'] = "Annually";
$_ADMINLANG['billingcycles']['biennially'] = "Biennially";
$_ADMINLANG['billingcycles']['triennially'] = "Triennially";
# Billing
$_ADMINLANG['billing']['title'] = "Billing";
$_ADMINLANG['billing']['transactionslist'] = "Transactions List";
$_ADMINLANG['billing']['income'] = "Income";
$_ADMINLANG['billing']['incomeprojection'] = "Income Projection";
$_ADMINLANG['billing']['incometoday'] = "Today";
$_ADMINLANG['billing']['incomethismonth'] = "This Month";
$_ADMINLANG['billing']['incomethisyear'] = "This Year";
$_ADMINLANG['billing']['annualestimate'] = "Est. Annual";
$_ADMINLANG['billing']['offlinecc'] = "Offline CC Processing";
$_ADMINLANG['billing']['gatewaylog'] = "Gateway Log";
# Invoices
$_ADMINLANG['invoices']['title'] = "Invoices";
$_ADMINLANG['invoices']['listall'] = "List All Invoices";
$_ADMINLANG['invoices']['geninvoices'] = "Generate Due Invoices";
$_ADMINLANG['invoices']['geninvoicessendemails'] = "Do you want to send the invoice notification emails immediately after generation?";
$_ADMINLANG['invoices']['gencomplete'] = "Invoice Generation Complete";
$_ADMINLANG['invoices']['attemptcccaptures'] = "Attempt CC Captures";
$_ADMINLANG['invoices']['attemptcccapturessure'] = "Are you sure? This will attempt the captures for all due credit card invoices based on your Credit Card Processing Settings.";
$_ADMINLANG['invoices']['attemptcccapturessuccess'] = "Credit Card Payments Attempted";
$_ADMINLANG['invoices']['create'] = "Create Invoice";
$_ADMINLANG['invoices']['delete'] = "Are you sure you want to delete this invoice (recurring items in the invoice will not be reinvoiced for this date)?";
$_ADMINLANG['invoices']['markpaid'] = "Mark Paid";
$_ADMINLANG['invoices']['markpaidconfirm'] = "Are you sure you want to mark these invoices paid?";
$_ADMINLANG['invoices']['markunpaid'] = "Mark Unpaid";
$_ADMINLANG['invoices']['duplicateinvoice'] = "Duplicate Invoice";
$_ADMINLANG['invoices']['duplicateinvoiceconfirm'] = "Are you sure you want to duplicate the selected invoices?";
$_ADMINLANG['invoices']['markunpaidconfirm'] = "Are you sure you want to set these invoices back to unpaid?";
$_ADMINLANG['invoices']['markcancelled'] = "Mark Cancelled";
$_ADMINLANG['invoices']['markcancelledconfirm'] = "Are you sure you want to cancel these invoices?";
$_ADMINLANG['invoices']['sendreminder'] = "Send Reminder";
$_ADMINLANG['invoices']['sendreminderconfirm'] = "Are you sure you want to send payment reminders for the selected invoices?";
$_ADMINLANG['invoices']['summary'] = "Summary";
$_ADMINLANG['invoices']['addpayment'] = "Add Payment";
$_ADMINLANG['invoices']['options'] = "Options";
$_ADMINLANG['invoices']['refund'] = "Refund";
$_ADMINLANG['invoices']['viewinvoices'] = "View Invoices";
$_ADMINLANG['invoices']['sendcreated'] = "Send Invoice Created";
$_ADMINLANG['invoices']['sendconfirmation'] = "Send Payment Confirmation";
$_ADMINLANG['invoices']['attemptcapture'] = "Attempt Capture";
$_ADMINLANG['invoices']['initiatepayment'] = "Initiate Payment";
$_ADMINLANG['invoices']['printableversion'] = "Printable Version";
$_ADMINLANG['invoices']['viewpdf'] = "View PDF";
$_ADMINLANG['invoices']['downloadpdf'] = "Download PDF";
$_ADMINLANG['invoices']['capturesuccessful'] = "Capture Successful";
$_ADMINLANG['invoices']['capturesuccessfulmsg'] = "The customers card has been successfully charged!";
$_ADMINLANG['invoices']['initiatepaymentsuccessful'] = "Payment Initiation Successful";
$_ADMINLANG['invoices']['initiatepaymentsuccessfulmsg'] = "The payment process for this invoice was successfully initiated";
$_ADMINLANG['invoices']['captureerror'] = "Capture Error";
$_ADMINLANG['invoices']['captureerrormsg'] = "The capture was not successful. Please check the gateway log for more details.";
$_ADMINLANG['invoices']['initiatepaymenterror'] = "Payment Initiation Failed";
$_ADMINLANG['invoices']['initiatepaymenterrormsg'] = "The payment initiation did not complete successfully. Please check the gateway log for more details.";
$_ADMINLANG['invoices']['refundsuccess'] = "Refund Successful";
$_ADMINLANG['invoices']['refundfailed'] = "Refund Failed";
$_ADMINLANG['invoices']['refundmanualsuccessmsg'] = "A refund transaction entry was added successfully";
$_ADMINLANG['invoices']['refundamounterrormsg'] = "You cannot refund more than the original transactions amount";
$_ADMINLANG['invoices']['refundsuccessmsg'] = "The requested amount has now been refunded by the payment gateway";
$_ADMINLANG['invoices']['refundcreditmsg'] = "The requested amount has now been added to the users credit balance";
$_ADMINLANG['invoices']['refundfailedmsg'] = "The refund attempt has failed - check the gateway log for more details";
$_ADMINLANG['invoices']['ticksendconfirmation'] = "Tick to Send Confirmation Email";
$_ADMINLANG['invoices']['addpayment'] = "Add Payment";
$_ADMINLANG['invoices']['addcredit'] = "Add Credit to Invoice";
$_ADMINLANG['invoices']['removecredit'] = "Remove Credit from Invoice";
$_ADMINLANG['invoices']['creditavailable'] = "Available";
$_ADMINLANG['invoices']['refundtype'] = "Refund Type";
$_ADMINLANG['invoices']['refundtypegateway'] = "Refund through Gateway (If supported by module)";
$_ADMINLANG['invoices']['refundtypecredit'] = "Add to Client's Credit Balance";
$_ADMINLANG['invoices']['refundtypemanual'] = "Manual Refund Processed Externally";
$_ADMINLANG['invoices']['items'] = "Invoice Items";
$_ADMINLANG['invoices']['transactions'] = "Transactions";
$_ADMINLANG['invoices']['taxdue'] = "Tax Due";
$_ADMINLANG['invoices']['split'] = "Split to New Invoice";
$_ADMINLANG['invoices']['merge'] = "Merge";
$_ADMINLANG['invoices']['mergeconfirm'] = "Are you sure you want to merge the selected invoices?";
$_ADMINLANG['invoices']['mergeerror'] = "Merge Error";
$_ADMINLANG['invoices']['mergeerrordesc'] = "You must select at least 2 invoices to be merged";
$_ADMINLANG['invoices']['massdeleteconfirm'] = "Are you sure you want to delete the selected invoices?";
$_ADMINLANG['invoices']['masspay'] = "Mass Pay";
$_ADMINLANG['invoices']['masspayconfirm'] = "Are you sure you want to generate a mass pay invoice for the selected invoices?";
$_ADMINLANG['invoices']['masspaysuccess'] = "Mass Pay Invoice Created Successfully!";
$_ADMINLANG['invoices']['notransactions'] = "No Transactions Applied To This Invoice Yet";
$_ADMINLANG['invoices']['paidstatuscredit'] = "Invoice in Paid Status";
$_ADMINLANG['invoices']['paidstatuscreditdesc'] = "As this invoice is already marked paid, any further payments applied will result in a credit to the client";
$_ADMINLANG['invoices']['notransapplied'] = "No Transactions Applied";
$_ADMINLANG['invoices']['fullypaidcredit'] = "Fully Paid by Credit";
$_ADMINLANG['invoices']['partialcredit'] = "Partial Credit";
# Billable Items
$_ADMINLANG['billableitems']['title'] = "Billable Items";
$_ADMINLANG['billableitems']['listall'] = "List All Billable Items";
$_ADMINLANG['billableitems']['uninvoiced'] = "Uninvoiced Items";
$_ADMINLANG['billableitems']['recurring'] = "Recurring Items";
$_ADMINLANG['billableitems']['addnew'] = "Add New";
$_ADMINLANG['billableitems']['itemsdeleted'] = "Billable Items Deleted";
$_ADMINLANG['billableitems']['itemsdeleteddesc'] = "The selected item(s) have now been deleted";
$_ADMINLANG['billableitems']['itemsdeletequestion'] = "Are you sure you want to delete this billable item?";
$_ADMINLANG['billableitems']['additem'] = "Add Billable Item";
$_ADMINLANG['billableitems']['itemsinvoiced'] = "The selected item(s) have now been invoiced on";
$_ADMINLANG['billableitems']['addtimebilling'] = "Add Time Billing Entries";
$_ADMINLANG['billableitems']['dontinvoice'] = "Don't Invoice";
$_ADMINLANG['billableitems']['dontinvoicefornow'] = "Don't Invoice for Now";
$_ADMINLANG['billableitems']['nextcronrun'] = "Next Cron Run";
$_ADMINLANG['billableitems']['invoiceselected'] = "Invoice Selected Items";
$_ADMINLANG['billableitems']['invoiceselectedconfirm'] = "Are you sure you want to invoice the selected items immediately?";
$_ADMINLANG['billableitems']['invoicenextcronrun'] = "Invoice on Next Cron Run";
$_ADMINLANG['billableitems']['invoicenextcronrunconfirm'] = "Are you sure you want to set these items to invoice in the next cron run?";
$_ADMINLANG['billableitems']['nextinvoice'] = "User's Next Invoice";
$_ADMINLANG['billableitems']['addnextinvoice'] = "Add to User's Next Invoice";
$_ADMINLANG['billableitems']['invoiceduedate'] = "Invoice for Due Date";
$_ADMINLANG['billableitems']['invoicenormalduedate'] = "Invoice as Normal for Due Date";
$_ADMINLANG['billableitems']['recurringcycle'] = "Recurring Cycle";
$_ADMINLANG['billableitems']['invoiceaction'] = "Invoice Action";
$_ADMINLANG['billableitems']['invoiced'] = "Invoiced Items";
$_ADMINLANG['billableitems']['invoicenumbers'] = "Invoice Numbers";
$_ADMINLANG['billableitems']['edititem'] = "Edit Billable Item";
$_ADMINLANG['billableitems']['hoursqty'] = "Hours/Qty";
$_ADMINLANG['billableitems']['recurevery'] = "Recur Every";
$_ADMINLANG['billableitems']['never'] = "Never";
$_ADMINLANG['billableitems']['days'] = "Days";
$_ADMINLANG['billableitems']['weeks'] = "Weeks";
$_ADMINLANG['billableitems']['months'] = "Months";
$_ADMINLANG['billableitems']['years'] = "Years";
$_ADMINLANG['billableitems']['times'] = "Times";
$_ADMINLANG['billableitems']['nextduedate'] = "(Next) Due Date";
$_ADMINLANG['billableitems']['invoicecount'] = "Invoice Count";
$_ADMINLANG['billableitems']['relatedinvoices'] = "Related Invoices";
$_ADMINLANG['billableitems']['addentries'] = "Add Entries";
$_ADMINLANG['billableitems']['hours'] = "Hours";
$_ADMINLANG['billableitems']['hour'] = "Hour";
$_ADMINLANG['billableitems']['invoiceitems'] = "Invoice Items";
$_ADMINLANG['billableitems']['itemswillinvoice'] = "The selected item(s) will now be invoiced on the next cron run";
$_ADMINLANG['billableitems']['invoiceimmediately'] = "Invoice Immediately";
$_ADMINLANG['billableitems']['noclientsmsg'] = "You must <a href=\"clientsadd.php\">create a client</a> before you can add a billable item";
# Quotes
$_ADMINLANG['quotes']['title'] = "Quotes";
$_ADMINLANG['quotes']['listall'] = "List All Quotes";
$_ADMINLANG['quotes']['createnew'] = "Create New Quote";
$_ADMINLANG['quotes']['deletesure'] = "Are you sure you want to delete this quote?";
$_ADMINLANG['quotes']['quotenum'] = "Quote #";
$_ADMINLANG['quotes']['subject'] = "Subject";
$_ADMINLANG['quotes']['createdate'] = "Create Date";
$_ADMINLANG['quotes']['validuntil'] = "Valid Until";
$_ADMINLANG['quotes']['stage'] = "Stage";
# Support
$_ADMINLANG['support']['title'] = "Support";
$_ADMINLANG['support']['announcements'] = "Announcements";
$_ADMINLANG['support']['downloads'] = "Downloads";
$_ADMINLANG['support']['knowledgebase'] = "Knowledgebase";
$_ADMINLANG['support']['supporttickets'] = "Support Tickets";
$_ADMINLANG['support']['opennewticket'] = "Open New Ticket";
$_ADMINLANG['support']['predefreplies'] = "Predefined Replies";
$_ADMINLANG['support']['filtertickets'] = "Filter Tickets";
$_ADMINLANG['support']['flagged'] = "Flagged Tickets";
$_ADMINLANG['support']['allactive'] = "All Active Tickets";
$_ADMINLANG['support']['awaitingreply'] = "Awaiting Reply";
$_ADMINLANG['support']['announcesuredel'] = "Are you sure you want to delete this announcement?";
$_ADMINLANG['support']['announceadd'] = "Add New Announcement";
$_ADMINLANG['support']['announcepublished'] = "Published";
$_ADMINLANG['support']['announcement'] = "Announcement";
$_ADMINLANG['support']['announcemultiling'] = "Multi-Lingual Translations";
$_ADMINLANG['support']['supportoverview'] = "Support Overview";
$_ADMINLANG['support']['generalstats'] = "General Statistics";
$_ADMINLANG['support']['myflagged'] = "My Flagged Tickets";
$_ADMINLANG['support']['totalkbarticles'] = "Total Knowledgebase Articles";
$_ADMINLANG['support']['publishedann'] = "Published Announcements";
$_ADMINLANG['support']['unpublishedann'] = "Unpublished Announcements";
$_ADMINLANG['support']['totaldlfiles'] = "Total Downloadable Files";
$_ADMINLANG['support']['totaldls'] = "Total Downloads";
$_ADMINLANG['support']['expand'] = "Expand +";
$_ADMINLANG['support']['mostdlfiles'] = "Most Downloaded Files";
$_ADMINLANG['support']['nodlfiles'] = "No Downloads Found";
$_ADMINLANG['support']['ticketstats'] = "Ticket Statistics";
$_ADMINLANG['support']['tickets'] = "Tickets";
$_ADMINLANG['support']['deptstats'] = "Department Statistics";
$_ADMINLANG['support']['permissionswarn'] = "Permissions Warning!";
$_ADMINLANG['support']['permissionswarninfo'] = "The downloads folder is not writable by WHMCS so you cannot upload files";
$_ADMINLANG['support']['dldelsure'] = "Are you sure you want to delete this download?";
$_ADMINLANG['support']['dlcatdelsure'] = "Are you sure you want to delete this download category? This will also delete all downloads in this category.";
$_ADMINLANG['support']['addcategory'] = "Add Category";
$_ADMINLANG['support']['adddownload'] = "Add Download";
$_ADMINLANG['support']['catname'] = "Category Name";
$_ADMINLANG['support']['zipfile'] = "ZIP File";
$_ADMINLANG['support']['exefile'] = "Executable File";
$_ADMINLANG['support']['pdffile'] = "PDF File";
$_ADMINLANG['support']['uploadfile'] = "Upload File";
$_ADMINLANG['support']['manualftp'] = "Manual FTP Upload to Downloads Folder";
$_ADMINLANG['support']['enterfilename'] = "Enter Filename";
$_ADMINLANG['support']['uploadfile'] = "Upload File";
$_ADMINLANG['support']['choosefile'] = "Choose File";
$_ADMINLANG['support']['servermaxfile'] = "Server Max File Upload Size";
$_ADMINLANG['support']['howtoincrease'] = "To increase this limit you need to modify your servers php.ini file";
$_ADMINLANG['support']['clientsonly'] = "Clients Only";
$_ADMINLANG['support']['clientsonlyinfo'] = "Tick this box to only allow logged in clients permission to download it";
$_ADMINLANG['support']['productdl'] = "Product Download";
$_ADMINLANG['support']['productdlinfo'] = "Tick this box if this download should only be available after a product or addon purchase";
$_ADMINLANG['support']['downloadlink'] = "Download Link";
$_ADMINLANG['support']['notoplevel'] = "You cannot add an download to the top level category";
$_ADMINLANG['support']['dlhome'] = "Download Home";
$_ADMINLANG['support']['categories'] = "Categories";
$_ADMINLANG['support']['parentcat'] = "Parent Category";
$_ADMINLANG['support']['toplevel'] = "Top Level";
$_ADMINLANG['support']['hiddeninfo'] = "Tick this box to hide from client area";
$_ADMINLANG['support']['youarehere'] = "You are here";
$_ADMINLANG['support']['ticktohide'] = "Tick to Hide";
$_ADMINLANG['support']['category'] = "Category";
$_ADMINLANG['support']['filename'] = "Filename";
$_ADMINLANG['support']['kbdelsure'] = "Are you sure you want to delete this knowledgebase article?";
$_ADMINLANG['support']['kbcatdelsure'] = "Are you sure you want to delete this knowledgebase category? This will also delete all articles in this category.";
$_ADMINLANG['support']['addarticle'] = "Add Article";
$_ADMINLANG['support']['articlename'] = "Article Name";
$_ADMINLANG['support']['kbnotoplevel'] = "You cannot add an article to the top level category";
$_ADMINLANG['support']['kbhome'] = "Knowledgebase Home";
$_ADMINLANG['support']['articles'] = "Articles";
$_ADMINLANG['support']['views'] = "Views";
$_ADMINLANG['support']['noarticlesfound'] = "No Articles Found";
$_ADMINLANG['support']['views'] = "Views";
$_ADMINLANG['support']['votes'] = "Votes";
$_ADMINLANG['support']['private'] = "Private";
$_ADMINLANG['support']['privateinfo'] = "Tick this box to make the article private so only logged in users can view";
$_ADMINLANG['support']['article'] = "Article";
$_ADMINLANG['support']['predefaddedcat'] = "The new category was added successfully";
$_ADMINLANG['support']['predefsave'] = "The article was updated successfully";
$_ADMINLANG['support']['predefsavecat'] = "The category was updated successfully";
$_ADMINLANG['support']['predefdelete'] = "The selected article was deleted successfully";
$_ADMINLANG['support']['predefdeletecat'] = "The requested category was deleted successfully";
$_ADMINLANG['support']['predefdelsure'] = "Are you sure you want to delete this predefined reply article?";
$_ADMINLANG['support']['predefdelcatsure'] = "Are you sure you want to delete this predefined reply category? This will also delete all replies in this category.";
$_ADMINLANG['support']['addpredef'] = "Add Predefined Reply";
$_ADMINLANG['support']['pdnotoplevel'] = "You cannot add a reply to the top level category";
$_ADMINLANG['support']['nocatsfound'] = "No Categories Found";
$_ADMINLANG['support']['norepliesfound'] = "No Replies Found";
$_ADMINLANG['support']['replyname'] = "Reply Name";
$_ADMINLANG['support']['replies'] = "Replies";
$_ADMINLANG['support']['viewedandstarted'] = "viewed this ticket and started making a reply";
$_ADMINLANG['support']['catempty'] = "This category is currently empty";
$_ADMINLANG['support']['uponelevel'] = "Up One Level";
$_ADMINLANG['support']['mergeidnotfound'] = "Requested Merge Ticket ID not Found. Please go back and try again.";
$_ADMINLANG['support']['mergeticketequal'] = "The Ticket ID you entered is the same ID as this ticket. Please go back and enter a different Ticket ID to merge with.";
$_ADMINLANG['support']['ticketnameerror'] = "You must enter either the name of the person this ticket is being created for or specify an existing client";
$_ADMINLANG['support']['ticketemailerror'] = "You must specify either an existing client or enter the receipients email address manually";
$_ADMINLANG['support']['ticketemailvalidationerror'] = "The email address entered is not valid";
$_ADMINLANG['support']['ticketsubjecterror'] = "You must enter a subject for the ticket";
$_ADMINLANG['support']['ticketmessageerror'] = "You must enter a message for the ticket";
$_ADMINLANG['support']['ticketflaggedtoyou'] = "A new support ticket has been flagged to you";
$_ADMINLANG['support']['department'] = "Department";
$_ADMINLANG['support']['priority'] = "Priority";
$_ADMINLANG['support']['ticketflaggedtoyousubject'] = "New Support Ticket Flagged to You";
$_ADMINLANG['support']['spamupdatefailed'] = "Spam Control Update Failed";
$_ADMINLANG['support']['spamupdatefailedinfo'] = "This email address is already on the blocked email senders list";
$_ADMINLANG['support']['spamupdatesuccess'] = "Spam Control Updated Successfully";
$_ADMINLANG['support']['spamupdatesuccessinfo'] = "The email address $email has now been added to the blocked email senders list";
$_ADMINLANG['support']['noticketdepts'] = "You are not assigned to any ticket departments so cannot view or reply to any tickets";
$_ADMINLANG['support']['autorefresh'] = "Auto Refresh";
$_ADMINLANG['support']['searchin'] = "Search In";
$_ADMINLANG['support']['ticketid'] = "Ticket ID";
$_ADMINLANG['support']['subjectmessage'] = "Subject/Message";
$_ADMINLANG['support']['autorefreshevery'] = "Auto Refresh Every";
$_ADMINLANG['support']['minute'] = "Minute";
$_ADMINLANG['support']['minutes'] = "Minutes";
$_ADMINLANG['support']['setautorefresh'] = "Set Auto Refresh";
$_ADMINLANG['support']['blockanddelete'] = "Block Sender & Delete";
$_ADMINLANG['support']['massmergeconfirm'] = "Are you sure you wish to merge the selected ticket(s)?";
$_ADMINLANG['support']['masscloseconfirm'] = "Are you sure you wish to close the selected ticket(s)?";
$_ADMINLANG['support']['massdeleteconfirm'] = "Are you sure you wish to delete the selected ticket(s)?";
$_ADMINLANG['support']['massblockdeleteconfirm'] = "Are you sure you wish to delete the selected ticket(s) and block sender(s)?";
$_ADMINLANG['support']['datesubmitted'] = "Date Submitted";
$_ADMINLANG['support']['submitter'] = "Submitter";
$_ADMINLANG['support']['lastreply'] = "Last Reply";
$_ADMINLANG['support']['user'] = "User";
$_ADMINLANG['support']['ticketnotfound'] = "Ticket ID Not Found.";
$_ADMINLANG['support']['pleasetryagain'] = "Please try again";
$_ADMINLANG['support']['deptnoaccess'] = "Access Denied. This ticket is in a department you don't have access to.";
$_ADMINLANG['support']['flagnoaccess'] = "Access Denied. This ticket is flagged to the admin user";
$_ADMINLANG['support']['selectclient'] = "Select Client";
$_ADMINLANG['support']['insertpredef'] = "Insert Predefined Reply";
$_ADMINLANG['support']['attachments'] = "Attachments";
$_ADMINLANG['support']['addmore'] = "Add More";
$_ADMINLANG['support']['insertkblink'] = "Insert Knowledgebase Link";
$_ADMINLANG['support']['printticketversion'] = "Printable Ticket Version";
$_ADMINLANG['support']['notregclient'] = "Not a Registered Client";
$_ADMINLANG['support']['createdate'] = "Creation Date";
$_ADMINLANG['support']['outputgenby'] = "Output Generated by";
$_ADMINLANG['support']['delreplysure'] = "Are you sure you want to delete this support ticket reply?";
$_ADMINLANG['support']['delticketsure'] = "Are you sure you want to delete this support ticket and all replies?";
$_ADMINLANG['support']['delnotesure'] = "Are you sure you want to delete this support ticket note?";
$_ADMINLANG['support']['delattachment'] = "Are you sure you want to delete this attachment?";
$_ADMINLANG['support']['statuschanged'] = "The status of this ticket has changed since you started replying which could indicate another staff member has already replied.";
$_ADMINLANG['support']['stillsubmit'] = "Are you sure you still want to submit this reply?";
$_ADMINLANG['support']['addreply'] = "Add Reply";
$_ADMINLANG['support']['ticketlog'] = "Log";
$_ADMINLANG['support']['clienttickets'] = "Other Tickets";
$_ADMINLANG['support']['clientlog'] = "Client Log";
$_ADMINLANG['support']['addnote'] = "Add Note";
$_ADMINLANG['support']['postreply'] = "Post Reply";
$_ADMINLANG['support']['setansweredreturn'] = "Set to Answered & Return to Ticket List";
$_ADMINLANG['support']['setansweredremain'] = "Set to Answered & Remain in Ticket View";
$_ADMINLANG['support']['setto'] = "Set to";
$_ADMINLANG['support']['andremain'] = "& Remain in Ticket View";
$_ADMINLANG['support']['closereturn'] = "Close & Return to Ticket List";
$_ADMINLANG['support']['addprivatenote'] = "Add as a Private Ticket Note";
$_ADMINLANG['support']['addbilling'] = "Add Billing Entry";
$_ADMINLANG['support']['toinvoicedes'] = "To invoice, enter a description";
$_ADMINLANG['support']['addresponse'] = "Add Response";
$_ADMINLANG['support']['nocustomfields'] = "No Custom Fields Setup for this Department";
$_ADMINLANG['support']['flag'] = "Flag";
$_ADMINLANG['support']['ccrecipients'] = "CC Recipients";
$_ADMINLANG['support']['mergeticket'] = "Merge Ticket";
$_ADMINLANG['support']['notocombine'] = "# to combine";
$_ADMINLANG['support']['privatestaffnote'] = "Private Staff Notes";
$_ADMINLANG['support']['deleteticketnote'] = "Delete Ticket Note";
$_ADMINLANG['support']['staff'] = "Staff";
$_ADMINLANG['support']['rating'] = "Rating";
$_ADMINLANG['support']['blocksender'] = "Block Sender";
$_ADMINLANG['support']['deleteticket'] = "Delete Support Ticket";
$_ADMINLANG['support']['remove'] = "delete";
$_ADMINLANG['support']['viewprintable'] = "View Printable Version";
$_ADMINLANG['support']['splitticketdialogtitle'] = "Split Selected Ticket Replies";
$_ADMINLANG['support']['splitticketdialoginfo'] = "This will move all selected replies into a new ticket.";
$_ADMINLANG['support']['splitticketdialogbutton'] = "Split Selected Replies";
$_ADMINLANG['support']['splitticketdialognotifyclient'] = "Notify Client";
$_ADMINLANG['support']['splitticketdialognewticketname'] = "New Ticket Name";
$_ADMINLANG['support']['splitticketdialognotifyclientinfo'] = "Tick to send notification email";
$_ADMINLANG['support']['assignedtickets'] = "Your Assigned Tickets";
$_ADMINLANG['support']['unassignedtickets'] = "Unassigned Tickets";
$_ADMINLANG['support']['numticketsassigned'] = "You have %s ticket(s) assigned to you and requiring attention.";
$_ADMINLANG['support']['ticketinfo'] = "Ticket Info";
$_ADMINLANG['support']['assignedto'] = "Assigned To";
$_ADMINLANG['support']['staffparticipants'] = "Staff Participants";
$_ADMINLANG['support']['tagcloud'] = "Tag Cloud";
$_ADMINLANG['support']['tags'] = "Tag Cloud";
$_ADMINLANG['support']['me'] = "me";
# Network Issues
$_ADMINLANG['networkissues']['title'] = "Network Issues";
$_ADMINLANG['networkissues']['open'] = "Open";
$_ADMINLANG['networkissues']['scheduled'] = "Scheduled";
$_ADMINLANG['networkissues']['resolved'] = "Resolved";
$_ADMINLANG['networkissues']['addnew'] = "Create New";
# Browser
$_ADMINLANG['browser']['bookmarks'] = "Bookmarks";
$_ADMINLANG['browser']['addnew'] = "Add New Bookmark";
$_ADMINLANG['browser']['sitename'] = "Site Name";
$_ADMINLANG['browser']['url'] = "URL";
$_ADMINLANG['browser']['add'] = "Add Bookmark";
$_ADMINLANG['browser']['deleteq'] = "Are you sure you want to delete this bookmark?";
# Currencies
$_ADMINLANG['currencies']['title'] = "Currencies";
$_ADMINLANG['currencies']['currency'] = "Currency";
$_ADMINLANG['currencies']['delsure'] = "Are you sure you want to delete this currency?";
$_ADMINLANG['currencies']['exchrateupdate'] = "Exchange Rates Update Results";
$_ADMINLANG['currencies']['updatepricing'] = "Updated Pricing";
$_ADMINLANG['currencies']['updatepricinginfo'] = "All additional currency prices were updated based on the current exchange rates";
$_ADMINLANG['currencies']['info'] = "You can sell in different currencies concurrently by setting them up below. Customers who visit your site can then choose to shop in their local currency.";
$_ADMINLANG['currencies']['deleteinuse'] = "You cannot delete a currency that is in use by clients";
$_ADMINLANG['currencies']['code'] = "Currency Code";
$_ADMINLANG['currencies']['prefix'] = "Prefix";
$_ADMINLANG['currencies']['suffix'] = "Suffix";
$_ADMINLANG['currencies']['format'] = "Format";
$_ADMINLANG['currencies']['baserate'] = "Base Conv. Rate";
$_ADMINLANG['currencies']['updateexch'] = "Update Exchange Rates";
$_ADMINLANG['currencies']['updateprod'] = "Update Product Prices";
$_ADMINLANG['currencies']['addadditional'] = "Add Additional Currency";
$_ADMINLANG['currencies']['baserateinfo'] = "The current rate to convert to base currency";
$_ADMINLANG['currencies']['add'] = "Add Currency";
$_ADMINLANG['currencies']['codeinfo'] = "eg. USD, GBP, etc...";
$_ADMINLANG['currencies']['updatepricing'] = "Update Pricing";
$_ADMINLANG['currencies']['recalcpricing'] = "Tick to recalculate prices for this currency using the conversion rate";
# Affiliates
$_ADMINLANG['affiliates']['title'] = "Affiliates";
$_ADMINLANG['affiliates']['id'] = "Affiliate ID";
$_ADMINLANG['affiliates']['manage'] = "Manage Affiliates";
$_ADMINLANG['affiliates']['deletesure'] = "Are you sure you want to delete this affiliate?";
$_ADMINLANG['affiliates']['visitorsref'] = "Visitors Referred";
$_ADMINLANG['affiliates']['greaterthan'] = "Greater Than";
$_ADMINLANG['affiliates']['lessthan'] = "Less Than";
$_ADMINLANG['affiliates']['withdrawn'] = "Withdrawn";
$_ADMINLANG['affiliates']['signupdate'] = "Signup Date";
$_ADMINLANG['affiliates']['signups'] = "Signups";
$_ADMINLANG['affiliates']['paymentfailed'] = "Affiliate Payment Failed";
$_ADMINLANG['affiliates']['paymentsuccess'] = "Affiliate Payment Success";
$_ADMINLANG['affiliates']['paymentsuccessdetail'] = "The commission has been added to the affiliates balance and last paid date updated";
$_ADMINLANG['affiliates']['refdeletesure'] = "Are you sure you want to delete this affiliate referral?";
$_ADMINLANG['affiliates']['comdeletesure'] = "Are you sure you want to delete this pending commission?";
$_ADMINLANG['affiliates']['pytdeletesure'] = "Are you sure you want to delete this payment history record?";
$_ADMINLANG['affiliates']['witdeletesure'] = "Are you sure you want to delete this withdrawal record?";
$_ADMINLANG['affiliates']['pendingcommissions'] = "Pending Commissions";
$_ADMINLANG['affiliates']['commissiontype'] = "Commission Type";
$_ADMINLANG['affiliates']['usedefault'] = "Use Default";
$_ADMINLANG['affiliates']['percentage'] = "Percentage";
$_ADMINLANG['affiliates']['fixedamount'] = "Fixed Amount";
$_ADMINLANG['affiliates']['nocommission'] = "No Commission";
$_ADMINLANG['affiliates']['affiliatepayamount'] = "Affiliate Pay Amount";
$_ADMINLANG['affiliates']['onetimepayout'] = "One Time Payout (Default is Recurring)";
$_ADMINLANG['affiliates']['availablebalance'] = "Available to Withdraw Balance";
$_ADMINLANG['affiliates']['commissionamount'] = "Commission Amount";