forked from uvdesk/community-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.en.yml
1447 lines (1444 loc) · 70.4 KB
/
messages.en.yml
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
"Signed in as": "Signed in as"
"Your Profile": "Your Profile"
"Create Ticket": "Create Ticket"
"Create Agent": "Create Agent"
"Create Customer": "Create Customer"
"Sign Out": "Sign Out"
"Reports": "Reports"
"Agent Activity": "Agent Activity"
"Report From": "Report From"
"Search Agent": "Search Agent"
"Agent Last Reply": "Agent Last Reply"
"View analytics and insights to serve a better experience for your customers": "Analytics and insight regarding your workflow"
"Marketing Announcement": "Marketing Announcement"
"Advertisment": "Advertisment"
"Announcement": "Announcement"
"New Announcement": "New Announcement"
"Add Announcement": "Add Announcement"
"Edit Announcement": "Edit Announcement"
"Promo Text": "Promo Text"
"Promo Tag": "Promo Tag"
"Choose a promo tag": "Choose a promo tag"
"Tag-Color": "Tag-Color"
"Tag background color": "Tag background color"
"Link Text": "Link Text"
"Link URL": "Link URL"
"Apps": "Apps"
"Integrate apps as per your needs to get things done faster than ever": "Install new custom apps to boost your productivity."
"Explore Apps": "Explore Apps"
"Form Builder": "Form Builder"
"Knowledgebase": "Knowledgebase"
"Knowledgebase is a source of rigid and complex information which helps Customers to help themselves": "Help your customers help themselves! Save time on support by building your knowledge base."
"Articles": "Articles"
"Categories": "Categories"
"Folders": "Folders"
"FOLDERS": "FOLDERS"
"Productivity": "Productivity"
"Automate your processes by creating set of rules and presets to respond faster to the tickets": "Create automation rules to speed up your workflow."
"Prepared Responses": "Prepared Responses"
"Saved Replies": "Saved Replies"
"Edit Saved Reply": "Edit Saved Reply"
"Ticket Types": "Ticket Types"
"Workflows": "Workflows"
"Settings": "Settings"
"Manage your Brand Identity, Company Information and other details at a glance": "Manage your Brand Identity, Company Information and other details at a glance"
"Branding": "Branding"
"Custom Fields": "Custom Fields"
"Email Settings": "Email Settings"
"Email Templates": "Email Templates"
"Mailbox": "Mailbox"
"Spam Settings": "Spam Settings"
"Swift Mailer": "Swift Mailer"
"Tags": "Tags"
"Users": "Users"
"Control your Groups, Teams, Agents and Customers": "Manage your Groups, Teams, Agents and Customers"
"Agents": "Agents"
"Customers": "Customers"
"Groups": "Groups"
"Privileges": "Privileges"
"Teams": "Teams"
"Applications": "Applications"
"ECommerce Order Syncronization": "eCommerce Order Syncronization"
"Import ecommerce order details to your support tickets from different available platforms": "Import eCommerce order details to your support tickets from different available platforms"
"Search": "Search"
"Sort By": "Sort By"
"Sort By:" : "Sort By:"
"Status" : "Status"
"Created At": "Created At"
"Name": "Name"
"All": "All"
"Published": "Published"
"Draft": "Draft"
"New Folder": "New Folder"
"Create Knowledgebase Folder": "Create Knowledgebase Folder"
"You did not add any folder to your Knowledgebase yet, Create your first Folder and start adding Categories/Articles to make your customers help themselves.": "You don't have any folders yet! Create your first folder and start adding articles."
"Clear Filters": "Clear Filters"
"Back": "Back"
"Open": "Open"
"Pending": "Pending"
"Answered": "Answered"
"Resolved": "Resolved"
"Closed": "Closed"
"Spam": "Spam"
"New": "New"
"UnAssigned": "Unassigned"
"UnAnswered": "Unanswered"
"My Tickets": "My Tickets"
"Starred": "Starred"
"Trashed": "Trashed"
"New Label": "New Label"
"Tickets": "Tickets"
"Ticket Id": "Ticket Id"
"Last Replied": "Last Replied"
"Assign To": "Assign To"
"After Reply": "After Reply"
"Customer Email": "Customer Email"
"Customer Name": "Customer Name"
"Assets Visibility": "Assets Visibility"
"Channel/Source": "Channel/Source"
"Channel": "Channel"
"Website": "Website"
"Timestamp": "Timestamp"
"TimeStamp": "TimeStamp"
"Team": "Team"
"Type": "Type"
"Replies": "Replies"
"Agent": "Agent"
"ID": "ID"
"Subject": "Subject"
"Last Reply": "Last Reply"
"Filter View": "Filter View"
"Please select CAPTCHA": "Please select CAPTCHA"
"Warning ! Please select correct CAPTCHA !": "CAPTCHA Failed, please try again"
"reCAPTCHA Setting": "reCAPTCHA Setting"
"reCAPTCHA Site Key": "reCAPTCHA Site Key"
"reCAPTCHA Secret key": "reCAPTCHA Secret key"
"reCAPTCHA Status": "reCAPTCHA Status"
"reCAPTCHA is Active": "reCAPTCHA is Active"
"Save set of filters as a preset to stay more productive": "Save filters as preset"
"Saved Filters": "Saved Filters"
"No saved filter created": "No saved filter created"
"Customer": "Customer"
"Priority": "Priority"
"Tag": "Tag"
"Source": "Source"
"Before": "Before"
"After": "After"
"Replies less than": "Replies less than"
"Replies more than": "Replies more than"
"Clear All": "Clear All"
"Account": "Account"
"Profile": "Profile"
"Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format": "Upload a Profile Image (100px x 100px)<br> in PNG or JPG Format"
"First Name": "First Name"
"Last Name": "Last Name"
"Email": "Email"
"Contact Number": "Contact Number"
"Timezone": "Timezone"
"Africa/Abidjan": "Africa/Abidjan"
"Africa/Accra": "Africa/Accra"
"Africa/Addis_Ababa": "Africa/Addis_Ababa"
"Africa/Algiers": "Africa/Algiers"
"Africa/Asmara": "Africa/Asmara"
"Africa/Bamako": "Africa/Bamako"
"Africa/Bangui": "Africa/Bangui"
"Africa/Banjul": "Africa/Banjul"
"Africa/Bissau": "Africa/Bissau"
"Africa/Blantyre": "Africa/Blantyre"
"Africa/Brazzaville": "Africa/Brazzaville"
"Africa/Bujumbura": "Africa/Bujumbura"
"Africa/Cairo": "Africa/Cairo"
"Africa/Casablanca": "Africa/Casablanca"
"Africa/Ceuta": "Africa/Ceuta"
"Africa/Conakry": "Africa/Conakry"
"Africa/Dakar": "Africa/Dakar"
"Africa/Dar_es_Salaam": "Africa/Dar_es_Salaam"
"Africa/Djibouti": "Africa/Djibouti"
"Africa/Douala": "Africa/Douala"
"Africa/El_Aaiun": "Africa/El_Aaiun"
"Africa/Freetown": "Africa/Freetown"
"Africa/Gaborone": "Africa/Gaborone"
"Africa/Harare": "Africa/Harare"
"Africa/Johannesburg": "Africa/Johannesburg"
"Africa/Juba": "Africa/Juba"
"Africa/Kampala": "Africa/Kampala"
"Africa/Khartoum": "Africa/Khartoum"
"Africa/Kigali": "Africa/Kigali"
"Africa/Kinshasa": "Africa/Kinshasa"
"Africa/Lagos": "Africa/Lagos"
"Africa/Libreville": "Africa/Libreville"
"Africa/Lome": "Africa/Lome"
"Africa/Luanda": "Africa/Luanda"
"Africa/Lubumbashi": "Africa/Lubumbashi"
"Africa/Lusaka": "Africa/Lusaka"
"Africa/Malabo": "Africa/Malabo"
"Africa/Maputo": "Africa/Maputo"
"Africa/Maseru": "Africa/Maseru"
"Africa/Mbabane": "Africa/Mbabane"
"Africa/Mogadishu": "Africa/Mogadishu"
"Africa/Monrovia": "Africa/Monrovia"
"Africa/Nairobi": "Africa/Nairobi"
"Africa/Ndjamena": "Africa/Ndjamena"
"Africa/Niamey": "Africa/Niamey"
"Africa/Nouakchott": "Africa/Nouakchott"
"Africa/Ouagadougou": "Africa/Ouagadougou"
"Africa/Porto-Novo": "Africa/Porto-Novo"
"Africa/Sao_Tome": "Africa/Sao_Tome"
"Africa/Tripoli": "Africa/Tripoli"
"Africa/Tunis": "Africa/Tunis"
"Africa/Windhoek": "Africa/Windhoek"
"America/Adak": "America/Adak"
"America/Anchorage": "America/Anchorage"
"America/Anguilla": "America/Anguilla"
"America/Antigua": "America/Antigua"
"America/Araguaina": "America/Araguaina"
"America/Argentina/Buenos_Aires": "America/Argentina/Buenos_Aires"
"America/Argentina/Catamarca": "America/Argentina/Catamarca"
"America/Argentina/Cordoba": "America/Argentina/Cordoba"
"America/Argentina/Jujuy": "America/Argentina/Jujuy"
"America/Argentina/La_Rioja": "America/Argentina/La_Rioja"
"America/Argentina/Mendoza": "America/Argentina/Mendoza"
"America/Argentina/Rio_Gallegos": "America/Argentina/Rio_Gallegos"
"America/Argentina/Salta": "America/Argentina/Salta"
"America/Argentina/San_Juan": "America/Argentina/San_Juan"
"America/Argentina/San_Luis": "America/Argentina/San_Luis"
"America/Argentina/Tucuman": "America/Argentina/Tucuman"
"America/Argentina/Ushuaia": "America/Argentina/Ushuaia"
"America/Aruba": "America/Aruba"
"America/Asuncion": "America/Asuncion"
"America/Atikokan": "America/Atikokan"
"America/Bahia": "America/Bahia"
"America/Bahia_Banderas": "America/Bahia_Banderas"
"America/Barbados": "America/Barbados"
"America/Belem": "America/Belem"
"America/Belize": "America/Belize"
"America/Blanc-Sablon": "America/Blanc-Sablon"
"America/Boa_Vista": "America/Boa_Vista"
"America/Bogota": "America/Bogota"
"America/Boise": "America/Boise"
"America/Cambridge_Bay": "America/Cambridge_Bay"
"America/Campo_Grande": "America/Campo_Grande"
"America/Cancun": "America/Cancun"
"America/Caracas": "America/Caracas"
"America/Cayenne": "America/Cayenne"
"America/Cayman": "America/Cayman"
"America/Chicago": "America/Chicago"
"America/Chihuahua": "America/Chihuahua"
"America/Costa_Rica": "America/Costa_Rica"
"America/Creston": "America/Creston"
"America/Cuiaba": "America/Cuiaba"
"America/Curacao": "America/Curacao"
"America/Danmarkshavn": "America/Danmarkshavn"
"America/Dawson": "America/Dawson"
"America/Dawson_Creek": "America/Dawson_Creek"
"America/Denver": "America/Denver"
"America/Detroit": "America/Detroit"
"America/Dominica": "America/Dominica"
"America/Edmonton": "America/Edmonton"
"America/Eirunepe": "America/Eirunepe"
"America/El_Salvador": "America/El_Salvador"
"America/Fort_Nelson": "America/Fort_Nelson"
"America/Fortaleza": "America/Fortaleza"
"America/Glace_Bay": "America/Glace_Bay"
"America/Godthab": "America/Godthab"
"America/Goose_Bay": "America/Goose_Bay"
"America/Grand_Turk": "America/Grand_Turk"
"America/Grenada": "America/Grenada"
"America/Guadeloupe": "America/Guadeloupe"
"America/Guatemala": "America/Guatemala"
"America/Guayaquil": "America/Guayaquil"
"America/Guyana": "America/Guyana"
"America/Halifax": "America/Halifax"
"America/Havana": "America/Havana"
"America/Hermosillo": "America/Hermosillo"
"America/Indiana/Indianapolis": "America/Indiana/Indianapolis"
"America/Indiana/Knox": "America/Indiana/Knox"
"America/Indiana/Marengo": "America/Indiana/Marengo"
"America/Indiana/Petersburg": "America/Indiana/Petersburg"
"America/Indiana/Tell_City": "America/Indiana/Tell_City"
"America/Indiana/Vevay": "America/Indiana/Vevay"
"America/Indiana/Vincennes": "America/Indiana/Vincennes"
"America/Indiana/Winamac": "America/Indiana/Winamac"
"America/Inuvik": "America/Inuvik"
"America/Iqaluit": "America/Iqaluit"
"America/Jamaica": "America/Jamaica"
"America/Juneau": "America/Juneau"
"America/Kentucky/Louisville": "America/Kentucky/Louisville"
"America/Kentucky/Monticello": "America/Kentucky/Monticello"
"America/Kralendijk": "America/Kralendijk"
"America/La_Paz": "America/La_Paz"
"America/Lima": "America/Lima"
"America/Los_Angeles": "America/Los_Angeles"
"America/Lower_Princes": "America/Lower_Princes"
"America/Maceio": "America/Maceio"
"America/Managua": "America/Managua"
"America/Manaus": "America/Manaus"
"America/Marigot": "America/Marigot"
"America/Martinique": "America/Martinique"
"America/Matamoros": "America/Matamoros"
"America/Mazatlan": "America/Mazatlan"
"America/Menominee": "America/Menominee"
"America/Merida": "America/Merida"
"America/Metlakatla": "America/Metlakatla"
"America/Mexico_City": "America/Mexico_City"
"America/Miquelon": "America/Miquelon"
"America/Moncton": "America/Moncton"
"America/Monterrey": "America/Monterrey"
"America/Montevideo": "America/Montevideo"
"America/Montserrat": "America/Montserrat"
"America/Nassau": "America/Nassau"
"America/New_York": "America/New_York"
"America/Nipigon": "America/Nipigon"
"America/Nome": "America/Nome"
"America/Noronha": "America/Noronha"
"America/North_Dakota/Beulah": "America/North_Dakota/Beulah"
"America/North_Dakota": "America/North_Dakota"
"America/Ojinaga": "America/Ojinaga"
"America/Panama": "America/Panama"
"America/Pangnirtung": "America/Pangnirtung"
"America/Paramaribo": "America/Paramaribo"
"America/Phoenix": "America/Phoenix"
"America/Port-au-Prince": "America/Port-au-Prince"
"America/Port_of_Spain": "America/Port_of_Spain"
"America/Porto_Velho": "America/Porto_Velho"
"America/Puerto_Rico": "America/Puerto_Rico"
"America/Punta_Arenas": "America/Punta_Arenas"
"America/Rainy_River": "America/Rainy_River"
"America/Rankin_Inlet": "America/Rankin_Inlet"
"America/Recife": "America/Recife"
"America/Regina": "America/Regina"
"America/Resolute": "America/Resolute"
"America/Rio_Branco": "America/Rio_Branco"
"America/Santarem": "America/Santarem"
"America/Santiago": "America/Santiago"
"America/Santo_Domingo": "America/Santo_Domingo"
"America/Sao_Paulo": "America/Sao_Paulo"
"America/Scoresbysund": "America/Scoresbysund"
"America/Sitka": "America/Sitka"
"America/St_Barthelemy": "America/St_Barthelemy"
"America/St_Johns": "America/St_Johns"
"America/St_Kitts": "America/St_Kitts"
"America/St_Lucia": "America/St_Lucia"
"America/St_Thomas": "America/St_Thomas"
"America/St_Vincent": "America/St_Vincent"
"America/Swift_Current": "America/Swift_Current"
"America/Tegucigalpa": "America/Tegucigalpa"
"America/Thule": "America/Thule"
"America/Thunder_Bay": "America/Thunder_Bay"
"America/Tijuana": "America/Tijuana"
"America/Toronto": "America/Toronto"
"America/Tortola": "America/Tortola"
"America/Vancouver": "America/Vancouver"
"America/Whitehorse": "America/Whitehorse"
"America/Winnipeg": "America/Winnipeg"
"America/Yakutat": "America/Yakutat"
"America/Yellowknife": "America/Yellowknife"
"Antarctica/Casey": "Antarctica/Casey"
"Antarctica/Davis": "Antarctica/Davis"
"Antarctica/DumontDUrville": "Antarctica/DumontDUrville"
"Antarctica/Macquarie": "Antarctica/Macquarie"
"Antarctica/McMurdo": "Antarctica/McMurdo"
"Antarctica/Mawson": "Antarctica/Mawson"
"Antarctica/Palmer": "Antarctica/Palmer"
"Antarctica/Rothera": "Antarctica/Rothera"
"Antarctica/Syowa": "Antarctica/Syowa"
"Antarctica/Troll": "Antarctica/Troll"
"Antarctica/Vostok": "Antarctica/Vostok"
"Arctic/Longyearbyen": "Arctic/Longyearbyen"
"Asia/Aden": "Asia/Aden"
"Asia/Almaty": "Asia/Almaty"
"Asia/Amman": "Asia/Amman"
"Asia/Anadyr": "Asia/Anadyr"
"Asia/Aqtau": "Asia/Aqtau"
"Asia/Aqtobe": "Asia/Aqtobe"
"Asia/Ashgabat": "Asia/Ashgabat"
"Asia/Atyrau": "Asia/Atyrau"
"Asia/Baghdad": "Asia/Baghdad"
"Asia/Bahrain": "Asia/Bahrain"
"Asia/Baku": "Asia/Baku"
"Asia/Bangkok": "Asia/Bangkok"
"Asia/Barnaul": "Asia/Barnaul"
"Asia/Beirut": "Asia/Beirut"
"Asia/Bishkek": "Asia/Bishkek"
"Asia/Brunei": "Asia/Brunei"
"Asia/Chita": "Asia/Chita"
"Asia/Choibalsan": "Asia/Choibalsan"
"Asia/Colombo": "Asia/Colombo"
"Asia/Damascus": "Asia/Damascus"
"Asia/Dhaka": "Asia/Dhaka"
"Asia/Dili": "Asia/Dili"
"Asia/Dubai": "Asia/Dubai"
"Asia/Dushanbe": "Asia/Dushanbe"
"Asia/Famagusta": "Asia/Famagusta"
"Asia/Gaza": "Asia/Gaza"
"Asia/Hebron": "Asia/Hebron"
"Asia/Ho_Chi_Minh": "Asia/Ho_Chi_Minh"
"Asia/Hong_Kong": "Asia/Hong_Kong"
"Asia/Hovd": "Asia/Hovd"
"Asia/Irkutsk": "Asia/Irkutsk"
"Asia/Jakarta": "Asia/Jakarta"
"Asia/Jayapura": "Asia/Jayapura"
"Asia/Jerusalem": "Asia/Jerusalem"
"Asia/Kabul": "Asia/Kabul"
"Asia/Kamchatka": "Asia/Kamchatka"
"Asia/Karachi": "Asia/Karachi"
"Asia/Kathmandu": "Asia/Kathmandu"
"Asia/Khandyga": "Asia/Khandyga"
"Asia/Kolkata": "Asia/Kolkata"
"Asia/Krasnoyarsk": "Asia/Krasnoyarsk"
"Asia/Kuala_Lumpur": "Asia/Kuala_Lumpur"
"Asia/Kuching": "Asia/Kuching"
"Asia/Kuwait": "Asia/Kuwait"
"Asia/Macau": "Asia/Macau"
"Asia/Magadan": "Asia/Magadan"
"Asia/Makassar": "Asia/Makassar"
"Asia/Manila": "Asia/Manila"
"Asia/Muscat": "Asia/Muscat"
"Asia/Nicosia": "Asia/Nicosia"
"Asia/Novokuznetsk": "Asia/Novokuznetsk"
"Asia/Novosibirsk": "Asia/Novosibirsk"
"Asia/Omsk": "Asia/Omsk"
"Asia/Oral": "Asia/Oral"
"Asia/Phnom_Penh": "Asia/Phnom_Penh"
"Asia/Pontianak": "Asia/Pontianak"
"Asia/Pyongyang": "Asia/Pyongyang"
"Asia/Qatar": "Asia/Qatar"
"Asia/Qostanay": "Asia/Qostanay"
"Asia/Qyzylorda": "Asia/Qyzylorda"
"Asia/Riyadh": "Asia/Riyadh"
"Asia/Sakhalin": "Asia/Sakhalin"
"Asia/Samarkand": "Asia/Samarkand"
"Asia/Seoul": "Asia/Seoul"
"Asia/Shanghai": "Asia/Shanghai"
"Asia/Singapore": "Asia/Singapore"
"Asia/Srednekolymsk": "Asia/Srednekolymsk"
"Asia/Taipei": "Asia/Taipei"
"Asia/Tashkent": "Asia/Tashkent"
"Asia/Tbilisi": "Asia/Tbilisi"
"Asia/Tehran": "Asia/Tehran"
"Asia/Thimphu": "Asia/Thimphu"
"Asia/Tokyo": "Asia/Tokyo"
"Asia/Tomsk": "Asia/Tomsk"
"Asia/Ulaanbaatar": "Asia/Ulaanbaatar"
"Asia/Urumqi": "Asia/Urumqi"
"Asia/Ust-Nera": "Asia/Ust-Nera"
"Asia/Vientiane": "Asia/Vientiane"
"Asia/Vladivostok": "Asia/Vladivostok"
"Asia/Yakutsk": "Asia/Yakutsk"
"Asia/Yangon": "Asia/Yangon"
"Asia/Yekaterinburg": "Asia/Yekaterinburg"
"Asia/Yerevan": "Asia/Yerevan"
"Atlantic/Azores": "Atlantic/Azores"
"Atlantic/Bermuda": "Atlantic/Bermuda"
"Atlantic/Canary": "Atlantic/Canary"
"Atlantic/Cape_Verde": "Atlantic/Cape_Verde"
"Atlantic/Faroe": "Atlantic/Faroe"
"Atlantic/Madeira": "Atlantic/Madeira"
"Atlantic/Reykjavik": "Atlantic/Reykjavik"
"Atlantic/South_Georgia": "Atlantic/South_Georgia"
"Atlantic/St_Helena": "Atlantic/St_Helena"
"Atlantic/Stanley": "Atlantic/Stanley"
"Australia/Adelaide": "Australia/Adelaide"
"Australia/Brisbane": "Australia/Brisbane"
"Australia/Broken_Hill": "Australia/Broken_Hill"
"Australia/Currie": "Australia/Currie"
"Australia/Darwin": "Australia/Darwin"
"Australia/Eucla": "Australia/Eucla"
"Australia/Hobart": "Australia/Hobart"
"Australia/Lindeman": "Australia/Lindeman"
"Australia/Lord_Howe": "Australia/Lord_Howe"
"Australia/Melbourne": "Australia/Melbourne"
"Australia/Perth": "Australia/Perth"
"Australia/Sydney": "Australia/Sydney"
"Europe/Amsterdam": "Europe/Amsterdam"
"Europe/Andorra": "Europe/Andorra"
"Europe/Astrakhan": "Europe/Astrakhan"
"Europe/Athens": "Europe/Athens"
"Europe/Belgrade": "Europe/Belgrade"
"Europe/Berlin": "Europe/Berlin"
"Europe/Bratislava": "Europe/Bratislava"
"Europe/Brussels": "Europe/Brussels"
"Europe/Bucharest": "Europe/Bucharest"
"Europe/Budapest": "Europe/Budapest"
"Europe/Busingen": "Europe/Busingen"
"Europe/Chisinau": "Europe/Chisinau"
"Europe/Copenhagen": "Europe/Copenhagen"
"Europe/Dublin": "Europe/Dublin"
"Europe/Gibraltar": "Europe/Gibraltar"
"Europe/Guernsey": "Europe/Guernsey"
"Europe/Helsinki": "Europe/Helsinki"
"Europe/Isle_of_Man": "Europe/Isle_of_Man"
"Europe/Istanbul": "Europe/Istanbul"
"Europe/Jersey": "Europe/Jersey"
"Europe/Kaliningrad": "Europe/Kaliningrad"
"Europe/Kiev": "Europe/Kiev"
"Europe/Kirov": "Europe/Kirov"
"Europe/Lisbon": "Europe/Lisbon"
"Europe/Ljubljana": "Europe/Ljubljana"
"Europe/London": "Europe/London"
"Europe/Luxembourg": "Europe/Luxembourg"
"Europe/Madrid": "Europe/Madrid"
"Europe/Malta": "Europe/Malta"
"Europe/Mariehamn": "Europe/Mariehamn"
"Europe/Minsk": "Europe/Minsk"
"Europe/Monaco": "Europe/Monaco"
"Europe/Moscow": "Europe/Moscow"
"Europe/Oslo": "Europe/Oslo"
"Europe/Paris": "Europe/Paris"
"Europe/Podgorica": "Europe/Podgorica"
"Europe/Prague": "Europe/Prague"
"Europe/Riga": "Europe/Riga"
"Europe/Rome": "Europe/Rome"
"Europe/Samara": "Europe/Samara"
"Europe/San_Marino": "Europe/San_Marino"
"Europe/Sarajevo": "Europe/Sarajevo"
"Europe/Saratov": "Europe/Saratov"
"Europe/Simferopol": "Europe/Simferopol"
"Europe/Skopje": "Europe/Skopje"
"Europe/Sofia": "Europe/Sofia"
"Europe/Stockholm": "Europe/Stockholm"
"Europe/Tallinn": "Europe/Tallinn"
"Europe/Tirane": "Europe/Tirane"
"Europe/Ulyanovsk": "Europe/Ulyanovsk"
"Europe/Uzhgorod": "Europe/Uzhgorod"
"Europe/Vaduz": "Europe/Vaduz"
"Europe/Vatican": "Europe/Vatican"
"Europe/Vienna": "Europe/Vienna"
"Europe/Vilnius": "Europe/Vilnius"
"Europe/Volgograd": "Europe/Volgograd"
"Europe/Warsaw": "Europe/Warsaw"
"Europe/Zagreb": "Europe/Zagreb"
"Europe/Zaporozhye": "Europe/Zaporozhye"
"Europe/Zurich": "Europe/Zurich"
"Indian/Antananarivo": "Indian/Antananarivo"
"Indian/Chagos": "Indian/Chagos"
"Indian/Christmas": "Indian/Christmas"
"Indian/Cocos": "Indian/Cocos"
"Indian/Comoro": "Indian/Comoro"
"Indian/Kerguelen": "Indian/Kerguelen"
"Indian/Mahe": "Indian/Mahe"
"Indian/Maldives": "Indian/Maldives"
"Indian/Mauritius": "Indian/Mauritius"
"Indian/Mayotte": "Indian/Mayotte"
"Indian/Reunion": "Indian/Reunion"
"Pacific/Apia": "Pacific/Apia"
"Pacific/Auckland": "Pacific/Auckland"
"Pacific/Bougainville": "Pacific/Bougainville"
"Pacific/Chatham": "Pacific/Chatham"
"Pacific/Chuuk": "Pacific/Chuuk"
"Pacific/Easter": "Pacific/Easter"
"Pacific/Efate": "Pacific/Efate"
"Pacific/Enderbury": "Pacific/Enderbury"
"Pacific/Fakaofo": "Pacific/Fakaofo"
"Pacific/Fiji": "Pacific/Fiji"
"Pacific/Funafuti": "Pacific/Funafuti"
"Pacific/Galapagos": "Pacific/Galapagos"
"Pacific/Gambier": "Pacific/Gambier"
"Pacific/Guadalcanal": "Pacific/Guadalcanal"
"Pacific/Guam": "Pacific/Guam"
"Pacific/Honolulu": "Pacific/Honolulu"
"Pacific/Kiritimati": "Pacific/Kiritimati"
"Pacific/Kosrae": "Pacific/Kosrae"
"Pacific/Kwajalein": "Pacific/Kwajalein"
"Pacific/Majuro": "Pacific/Majuro"
"Pacific/Marquesas": "Pacific/Marquesas"
"Pacific/Midway": "Pacific/Midway"
"Pacific/Nauru": "Pacific/Nauru"
"Pacific/Niue": "Pacific/Niue"
"Pacific/Norfolk": "Pacific/Norfolk"
"Pacific/Noumea": "Pacific/Noumea"
"Pacific/Pago_Pago": "Pacific/Pago_Pago"
"Pacific/Palau": "Pacific/Palau"
"Pacific/Pitcairn": "Pacific/Pitcairn"
"Pacific/Pohnpei": "Pacific/Pohnpei"
"Pacific/Port_Moresby": "Pacific/Port_Moresby"
"Pacific/Rarotonga": "Pacific/Rarotonga"
"Pacific/Saipan": "Pacific/Saipan"
"Pacific/Tahiti": "Pacific/Tahiti"
"Pacific/Tarawa": "Pacific/Tarawa"
"Pacific/Tongatapu": "Pacific/Tongatapu"
"Pacific/Wake": "Pacific/Wake"
"Pacific/Wallis": "Pacific/Wallis"
"UTC": "UTC"
"Time Format": "Time Format"
"Choose your default timezone": "Choose your default timezone"
"Signature": "Signature"
"User signature will be append at the bottom of ticket reply box": "Your signature will be appended to the bottom of every ticket reply you create."
"Password": "Password"
"Password will remain same if you are not entering something in this field": "Password not changed!"
"Confirm Password": "Confirm Password"
"Password must contain minimum 8 character length, at least two letters (not case sensitive), one number, one special character(space is not allowed).": "Password must be at least 8 characters, two letters (not case-sensitive), one number, and one special character (space is not allowed)."
"Save Changes": "Save Changes"
"SAVE CHANGES": "SAVE CHANGES"
"CREATE TICKET": "CREATE TICKET"
"Customer full name": "Customer full name"
"Customer email address": "Customer email address"
"Select Type": "Select Type"
"Support": "Support"
"Choose ticket type": "Choose ticket type"
"Ticket subject": "Ticket subject"
"Message": "Message"
"Query Message": "Query Message"
"Add Attachment": "Add Attachment"
"This field is mandatory": "This field is mandatory"
"General": "General"
"Designation": "Designation"
"Contant Number": "Content Number"
"User signature will be append in the bottom of ticket reply box": "Your signature will be appended to the bottom of every ticket reply you create."
"Account Status": "Account Status"
"Account is Active": "Account is Active"
"Assigning group(s) to user to view tickets regardless assignment.": "Add user to group to view tickets regardless of owner."
"Default": "Default"
"Select All": "Select All"
"Remove All": "Remove All"
"Assigning team(s) to user to view tickets regardless assignment.": "Add user to team to view tickets regardless of owner."
"No Team added !": "No Team added!"
"Permission": "Permission"
"Role": "Role"
"Administrator": "Administrator"
"Select agent role": "Select agent role"
"Add Customer": "Add Customer"
"Action": "Action"
"Account Owner": "Account Owner"
"Active": "Active"
"Edit": "Edit"
"Delete": "Delete"
"Disabled": "Disabled"
"New Group": "New Group"
"Default Privileges": "Default Privileges"
"New Privileges": "New Privileges"
"NEW PRIVILEGE": "NEW PRIVILEGE"
"New Privilege": "New Privilege"
"New Team": "New Team"
"No Record Found": "No Record Found"
"Order Synchronization": "Order Synchronization"
"Easily integrate different ecommerce platforms with your helpdesk which can then be later used to swiftly integrate ecommerce order details with your support tickets.": "Easily integrate different eCommerce platforms with your helpdesk to show order details within support tickets."
"BigCommerce": "BigCommerce"
"No channels have been added.": "No channels have been added."
"Add BigCommerce Store": "Add BigCommerce Store"
"ADD BIGCOMMERCE STORE": "ADD BIGCOMMERCE STORE"
"Mangento": "Mangento"
"Add Magento Store": "Add Magento Store"
"OpenCart": "OpenCart"
"Add OpenCart Store": "Add OpenCart Store"
"ADD OPENCART STORE": "ADD OPENCART STORE"
"Shopify": "Shopify"
"Add Shopify Store": "Add Shopify Store"
"ADD SHOPIFY STORE": "ADD SHOPIFY STORE"
"Integrate a new BigCommerce store": "Integrate a new BigCommerce store"
"Your BigCommerce Store Name": "Your BigCommerce Store Name"
"Your BigCommerce Store Hash": "Your BigCommerce Store Hash"
"Your BigCommerce Api Token": "Your BigCommerce Api Token"
"Your BigCommerce Api Client ID": "Your BigCommerce Api Client ID"
"Enable Channel": "Enable Channel"
"Add Store": "Add Store"
"ADD STORE": "ADD STORE"
"Integrate a new Magento store": "Integrate a new Magento store"
"Your Magento Api Username": "Your Magento Api Username"
"Your Magento Api Password": "Your Magento Api Password"
"Integrate a new OpenCart store": "Integrate a new OpenCart store"
"Your OpenCart Api Key": "Your OpenCart Api Key"
"Your Shopify Store Name": "Your Shopify Store Name"
"Your Shopify Api Key": "Your Shopify Api Key"
"Your Shopify Api Password": "Your Shopify Api Password"
"Easily embed custom form to help generate helpdesk tickets.": "Easily embed custom forms for creating helpdesk tickets."
"Form-Builder": "Form-Builder"
"Add Formbuilder": "Add Formbuilder"
"ADD FORMBUILDER": "ADD FORMBUILDER"
"No FormBuilder have been added.": "No FormBuilder was added."
"Create a New Custom Form Below": "Create a New Custom Form Below"
"Form Name": "Form Name"
"It will be shown in the list of created forms": "Displayed in the list of created forms"
"MANDATORY FIELDS": "MANDATORY FIELDS"
"These fields will be visible in form and cant be edited": "These fields will be visible in this form and can't be edited"
"Reply": "Reply"
"OPTIONAL FIELDS": "OPTIONAL FIELDS"
"Select These Fields to Add in your Form": "Select fields to add"
"GDPR": "GDPR"
"Order": "Order"
"Categorybuilder": "Categorybuilder"
"File": "File"
"Add Form": "Add Form"
"ADD FORM": "ADD FORM"
"UPDATE FORM": "UPDATE FORM"
"Update Form": "Update Form"
"Embed": "Embed"
"EMBED": "EMBED"
"EMBED FORMBUILDER": "EMBED FORMBUILDER"
"Embed Formbuilder": "Embed Formbuilder"
"Visit": "Visit"
"VISIT": "VISIT"
"Code": "Code"
"Total Ticket(s)": "Total Ticket(s)"
"Ticket Count": "Ticket Count"
"SwiftMailer Configurations": "SwiftMailer Configurations"
"No swiftmailer configurations found": "No SwiftMailer configurations found"
"CREATE CONFIGURATION": "CREATE CONFIGURATION"
"Add configuration": "Add configuration"
"Update configuration": "Update configuration"
"Mailer ID": "Mailer ID"
"Mailer ID - Leave blank to automatically create id": "Mailer ID - Leave blank to automatically create id"
"Transport Type": "Transport Type"
"SMTP": "SMTP"
"Enable Delivery": "Enable Delivery"
"Server": "Server"
"Port": "Port"
"Encryption Mode": "Encryption Mode"
"ssl": "ssl"
"tsl": "tsl"
"None": "None"
"Authentication Mode": "Authentication Mode"
"login": "login"
"Plain": "Plain"
"CRAM-MD5": "CRAM-MD5"
"Sender Address": "Sender Address"
"Delivery Address": "Delivery Address"
"Block Spam": "Block Spam"
"Black list": "Black list"
"Comma (,) separated values (Eg. [email protected], @example.com, 68.98.31.226)": "Comma separated values (Eg. [email protected], @example.com, 68.98.31.226)"
"White list": "White list"
"Mailbox Settings": "Mailbox Settings"
"No mailbox configurations found": "No mailbox configurations found"
"NEW MAILBOX": "NEW MAILBOX"
"New Mailbox": "New Mailbox"
"Update Mailbox": "Update Mailbox"
"Add Mailbox": "Add Mailbox"
"Mailbox ID - Leave blank to automatically create id": "Mailbox ID - Leave blank to automatically create id"
"Mailbox Name": "Mailbox Name"
"Enable Mailbox": "Enable Mailbox"
"Incoming Mail (IMAP) Server": "Incoming Mail (IMAP) Server"
"Configure your imap settings which will be used to fetch emails from your mailbox.": "Configure your imap settings in order to fetch new mail from your inbox."
"Transport": "Transport"
"IMAP": "IMAP"
"Gmail": "Gmail"
"Yahoo": "Yahoo"
"Host": "Host"
"IMAP Host": "IMAP Host"
"Email address": "Email address"
"Associated Password": "Associated Password"
"Outgoing Mail (SMTP) Server": "Outgoing Mail (SMTP) Server"
"Select a valid Swift Mailer configuration which will be used to send emails through your mailbox.": "Select the SwiftMailer config to use for sending emails through your account."
"Swift Mailer ID": "Swift Mailer ID"
"None Selected": "None Selected"
"Create Mailbox": "Create Mailbox"
"CREATE MAILBOX": "CREATE MAILBOX"
"New Template": "New Template"
"NEW TEMPLATE": "NEW TEMPLATE"
"Customer Forgot Password": "Customer Forgot Password"
"Customer Account Created": "Customer Account Created"
"Ticket generated success mail to customer": "Ticket successfully generated and sent to customer"
"Customer Reply To The Agent": "Customer reply"
"Ticket Assign": "Ticket Assign"
"Agent Forgot Password": "Agent Forgot Password"
"Agent Account Created": "Agent Account Created"
"Ticket generated by customer": "Ticket generated by customer"
"Agent Reply To The Customers ticket": "Agent reply"
"Email template name": "Email template name"
"Email template subject": "Email template subject"
"Template For": "Template For"
"Nothing Selected": "Nothing Selected"
"email template will be used for work related with selected option": "email template will be used for selected option"
"Email template body": "Email template body"
"Body": "Body"
"placeholders": "placeholders"
"Ticket Subject": "Ticket Subject"
"Ticket Message": "Ticket Message"
"Ticket Attachments": "Ticket Attachments"
"Ticket Tags": "Ticket Tags"
"Ticket Source": "Ticket Source"
"Ticket Status": "Ticket Status"
"Ticket Priority": "Ticket Priority"
"Ticket Group": "Ticket Group"
"Ticket Team": "Ticket Team"
"Ticket Thread Message": "Ticket Thread Message"
"Ticket Customer Name": "Ticket Customer Name"
"Ticket Customer Email": "Ticket Customer Email"
"Ticket Agent Name": "Ticket Agent Name"
"Ticket Agent Email": "Ticket Agent Email"
"Ticket Agent Link": "Ticket Agent Link"
"Ticket Customer Link": "Ticket Customer Link"
"Last Collaborator Name": "Last Collaborator Name"
"Last Collaborator Email": "Last Collaborator Email"
"Agent/ Customer Name": "Agent/ Customer Name"
"Account Validation Link": "Account Validation Link"
"Password Forgot Link": "Password Forgot Link"
"Company Name": "Company Name"
"Company Logo": "Company Logo"
"Company URL": "Company URL"
"Swiftmailer id (Select from drop down)": "Swiftmailer id (Select from drop down)"
"PROCEED": "PROCEED"
"Proceed": "Proceed"
"Theme Color": "Theme Color"
"Customer Created": "Customer Created"
"Agent Created": "Agent Created"
"Ticket Created": "Ticket Created"
"Agent Replied on Ticket": "Agent replied to ticket"
"Customer Replied on Ticket": "Customer replied to ticket"
"Workflow Status": "Workflow status"
"Workflow is Active": "Workflow is active"
"Events": "Events"
"An event automatically triggers to check conditions and perform a respective pre-defined set of actions": "An event automatically triggers to check conditions and perform a set of pre-defined actions"
"Select an Event": "Select an Event"
"Add More": "Add More"
"Conditions": "Conditions"
"Conditions are set of rules which checks for specific scenarios and are triggered on specific occasions": "Conditions are sets of rules which check for specific scenarios."
"Subject or Description": "Subject or description"
"Actions": "Actions"
"An action not only reduces the workload but also makes it quite easier for ticket automation": "Actions help you automate tickets"
"Select an Action": "Select an action"
"Add Note": "Add note"
"Mail to agent": "Mail to agent"
"Mail to customer": "Mail to customer"
"Mail to group": "Mail to group"
"Mail to last collaborator": "Mail to last collaborator"
"Mail to team": "Mail to team"
"Mark Spam": "Mark spam"
"Assign to agent": "Assign to agent"
"Assign to group": "Assign to group"
"Set Priority As": "Set Priority As"
"Set Status As": "Set Status As"
"Set Tag As": "Set Tag As"
"Set Label As": "Set Label As"
"Assign to team": "Assign to team"
"Set Type As": "Set Type As"
"Add Workflow": "Add Workflow"
"ADD WORKFLOW": "ADD WORKFLOW"
"Ticket Type code": "Ticket Type code"
"Ticket Type description": "Ticket Type description"
"Type Status": "Type Status"
"Type is Active": "Type is Active"
"Add Save Reply": "Add Save Reply"
"Saved reply name": "Saved reply name"
"Share saved reply with user(s) in these group(s)": "Share saved reply with user(s) in these group(s)"
"Share saved reply with user(s) in these teams(s)": "Share saved reply with user(s) in these teams(s)"
"Saved reply Body": "Saved reply body"
"New Prepared Response": "New Prepared Response"
"Prepared Response Status": "Prepared Response Status"
"Prepared Response is Active": "Prepared Response is Active"
"Share prepared response with user(s) in these group(s)": "Share prepared response with user(s) in these group(s)"
"Share prepared response with user(s) in these teams(s)": "Share prepared response with user(s) in these teams(s)"
"ADD PREPARED RESPONSE": "ADD PREPARED RESPONSE"
"Add Prepared Response": "Add Prepared Response"
"Folder Name is shown upfront at Knowledge Base": "The folder name to show in the knowledge base"
"A small text about the folder helps user to navigate more easily": "A bit more info about this folder"
"Publish": "Publish"
"Choose appropriate status": "Choose appropriate status"
"Folder Image": "Folder Image"
"An image is worth a thousands words and makes folder more accessible": "Help users identify the proper folder with a recognizable image."
"Add Category": "Add Category"
"Category Name is shown upfront at Knowledge Base": "The category name to show in the knowledge base"
"A small text about the category helps user to navigate more easily": "A bit more info about this category"
"Using Category Order, you can decide which category should display first": "Using Category Order, you can decide which category should display first"
"Sorting": "Sorting"
"Ascending Order (A-Z)": "Ascending Order (A-Z)"
"Descending Order (Z-A)": "Descending Order (Z-A)"
"Based on Popularity": "Based on Popularity"
"Article of this category will display according to selected option": "Articles in this category will display depending on selected option"
"Article": "Article"
"Title": "Title"
"View": "View"
"Make as Starred": "Mark as Starred"
"Yes": "Yes"
"No" : "No"
"Stared" : "Stared"
"Revisions": "Revisions"
"Related Articles" : "Related Articles"
"Delete Article": "Delete Article"
"Content": "Content"
"Slug": "Slug"
"Slug is the url identity of this article.": "The URL for this article"
"Meta Title": "Meta Title"
"Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. A pages title tag and meta description are usually shown whenever that page appears in search engine results": "Title tags and meta descriptions are bits of HTML code in the header of a web page. They help search engines understand the content on a page. The title tag and meta description are usually shown in search engine results for the page."
"Meta Keywords": "Meta Keywords"
"Meta Description": "Meta Description"
"Description": "Description"
"Team Status": "Team Status"
"Team is Active": "Team is Active"
"Edit Privilege": "Edit Privilege"
"Can create ticket": "Can create ticket"
"Can edit ticket": "Can edit ticket"
"Can delete ticket": "Can delete ticket"
"Can restore trashed ticket": "Can restore trashed ticket"
"Can assign ticket": "Can assign ticket"
"Can assign ticket group": "Can assign ticket group"
"Can update ticket status": "Can update ticket status"
"Can update ticket priority": "Can update ticket priority"
"Can update ticket type": "Can update ticket type"
"Can add internal notes to ticket": "Can add internal notes to ticket"
"Can edit thread/notes": "Can edit thread/notes"
"Can lock/unlock thread": "Can lock/unlock thread"
"Can add collaborator to ticket": "Can add collaborator to ticket"
"Can delete collaborator from ticket": "Can delete collaborator from ticket"
"Can delete thread/notes": "Can delete thread/notes"
"Can apply prepared response on ticket": "Can apply prepared response on ticket"
"Can add ticket tags": "Can add ticket tags"
"Can delete ticket tags": "Can delete ticket tags"
"Can kick other ticket users": "Can kick other ticket users"
"Can manage email templates": "Can manage email templates"
"Can manage groups": "Can manage groups"
"Can manage Sub-Groups/ Teams": "Can manage Sub-Groups/ Teams"
"Can manage agents": "Can manage agents"
"Can manage agent privileges": "Can manage agent privileges"
"Can manage ticket types": "Can manage ticket types"
"Can manage ticket custom fields": "Can manage ticket custom fields"
"Can manage customers": "Can manage customers"
"Can manage Prepared Responses": "Can manage Prepared Responses"
"Can manage Automatic workflow": "Can manage Automatic workflow"
"Can manage tags": "Can manage tags"
"Can manage knowledgebase": "Can manage knowledgebase"
"Can manage Groups Saved Reply": "Can manage Groups Saved Reply"
"Add Privilege": "Add Privilege"
"Choose set of privileges which will be available to the agent.": "Choose set of privileges which will be available to the agent."
"Advanced": "Advanced"
"Privilege Name must have characters only": "Privilege Name must have characters only"
"Maximum character length is 50": "Maximum character length is 50"
"Open Tickets": "Open Tickets"
"New Customer": "New Customer"
"New Agent": "New Agent"
"Total Article(s)": "Total Article(s)"
"Please specify a valid email address": "Please specify a valid email address"
"Please enter the password associated with your email address": "Please enter the password associated with your email address"
"Please enter your server host address": "Please enter your server host address"
"Please specify a port number to connect with your mail server": "Please specify the port number for your mail server"
"Success ! Branding details saved successfully.": "Success! Branding details saved successfully."
"Success ! Time details saved successfully.": "Success! Time details saved successfully."
"Spam setting saved successfully.": "Spam setting saved successfully."
"Please specify a valid name for your mailbox.": "Please specify a valid name for your mailbox."
"Please select a valid swift-mailer configuration.": "Please select a valid swift-mailer configuration."
"Please specify a valid host address.": "Please specify a valid host address."
"Please specify a valid email address.": "Please specify a valid email address."
"Please enter the associated account password.": "Please enter the associated account password."
"New Saved Reply": "New Saved Reply"
"New Category": "New Category"
"Folder": "Folder"
"Category": "Category"
"Created": "Created"
"All Articles": "All Articles"
"Viewed": "Viewed"
"New Article": "New Article"
"Thank you for your feedback!": "Thank you for your feedback!"
"Was this article helpful?": "Was this article helpful?"
"Helpdesk": "Helpdesk"
"Support Center": "Support Center"
"Mailboxes": "Mailboxes"
"By": "By"
"Search Tickets": "Search Tickets"
"Customer Information": "Customer Information"
"Total Replies": "Total Replies"
"Filter With": "Filter With"
"Type email to add": "Type email to add"
"Collaborators": "Collaborators"
"Labels": "Labels"
"Group": "Group"
"Stay on ticket": "Stay on ticket"
"Redirect to list": "Redirect to list"
"Nothing interesting here...": "Nothing interesting here"
"Previous Ticket": "Previous Ticket"
"Next Ticket": "Next Ticket"
"Forward": "Forward"
"Note": "Note"
"Write a reply": "Write a reply"
"Created Ticket": "Created Ticket"
"All Threads": "All Threads"
"Forwards": "Forwards"
"Notes": "Notes"
"Pinned": "Pinned"
"Edit Ticket": "Edit Ticket"
"Print Ticket": "Print Ticket"
"Mark as Spam": "Mark as Spam"
"Mark as Closed": "Mark as Closed"
"Delete Ticket": "Delete Ticket"
"View order details from different eCommerce channels": "View order details from different eCommerce channels"
"ECOMMERCE CHANNELS": "ECOMMERCE CHANNELS"
"Select channel": "Select channel"
"Order Id": "Order Id"
"Fetch Order": "Fetch Order"
"No orders have been integrated to this ticket yet.": "No orders have been associated with this ticket yet."
"Enter your credentials below to gain access to your helpdesk account.": "Enter your credentials below to sign in"
"Keep me logged in": "Keep me logged in"
"Forgot Password?": "Forgot Password?"
"Log in to your": "Log in to your"
"Sign In": "Sign In"
"Edit Customer": "Edit Customer"
"Update": "Update"
"Discard": "Discard"
"Cancel": "Cancel"
"Not Assigned": "Not Assigned"
"Submit": "Submit"
"Submit And Open": "Submit And Open"
"Submit And Pending": "Submit And Pending"
"Submit And Answered": "Submit And Answered"
"Submit And Resolved": "Submit And Resolved"
"Submit And Closed": "Submit And Closed"
"Choose a Color": "Choose a Color"
"Create": "Create"
"Edit Label": "Edit Label"
"Add Label": "Add Label"
"To": "To"
"Ticket": "Ticket"
"Your browser does not support JavaScript or You disabled JavaScript, Please enable those !": "Your browser does not support Javascript or Javascript is disabled. Please correct this!"
"Confirm Action": "Confirm Action"
"Confirm": "Confirm"
"No result found": "No result found"
"ticket delivery status": "ticket delivery status"
"Warning! Select valid image file.": "Warning! Select valid image file."
"Error": "Error"
"Save": "Save"
"SEO": "SEO"
"Edit Saved Filter": "Edit Saved Filter"
"Type atleast 2 letters": "Type at least 2 letters"
"Remove Label": "Remove Label"
"New Saved Filter": "New Saved Filter"
"Is Default": "Is Default"
"Remove Saved Filter": "Remove Saved Filter"
"Ticket Info": "Ticket Info"
"Last Replied Agent": "Last Replied Agent"
"created Ticket": "created Ticket"
"Uploaded Files": "Uploaded Files"
"Download (as .zip)": "Download ( as .zip)"
"made last reply": "last reply"
"N/A": "N/A"