-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.json
1118 lines (1118 loc) · 60 KB
/
en.json
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
{
"200": "200",
"299": "299",
"403": "403",
"410": "410",
"hello": "hello",
"nice": "nice",
"apple": "apple",
"downloads": "Downloads",
"clear": "Clear",
"no-downloads": "No downloads!",
"of": "of",
"upgrade": "Upgrade",
"create-or-switch-workspaces": "Create or switch workspaces",
"add-a-new-workspace": "Add a new workspace",
"settings": "Settings",
"your-account": "Your account",
"billing": "Billing",
"keyboard-shortcuts": "Keyboard Shortcuts",
"thrivedesk-help-center": "ThriveDesk help center",
"thrivedesk-community-forum": "ThriveDesk community forum",
"status-page": "Status page",
"terms-policies": "Terms & policies",
"logout": "Logout",
"team-activities": "Team Activities",
"no-activities-found": "No activities found",
"you-do-not-have-permission": "You do not have permission to view this page",
"please-contact-your-organization-owner": "Please contact your organization owner for help",
"ohh-noooooo": "Ohh Noooooo!",
"the-page-you-are-looking": "The page you are looking for could not be found.",
"if-you-think-this-is": "If you think this is a bug reach out to us [email protected]",
"you-have": "You have",
"unread-chat": "unread chat.",
"search": "Search",
"chat": "Chat",
"mine": "Mine",
"unassigned": "Unassigned",
"draft": "Draft",
"assigned": "Assigned",
"closed": "Closed",
"trash": "Trash",
"inbox-settings": "Inbox Settings",
"connect-your-inbox": "Connect your Inbox",
"connect-your-domain-send-email": "Connect your domain & send email from your own email like [email protected]",
"connect-domain": "Connect Domain",
"open-conversation": "Open Conversation",
"restore": "Restore",
"delete-forever": "Delete forever",
"loading": "Loading...",
"view-all": "View all",
"add-new": "Add new",
"connect-your-website": "Connect your website",
"back-to-website": "Back to website",
"loading-data": "Loading Data...",
"phone": "Phone",
"lists": "Lists",
"tags": "Tags",
"address": "Address",
"date-of-birth": "Date of birth",
"autonami-is-a-wordpress-based": "Autonami is a WordPress - based CRM that lets you dynamically segment your contacts, send targeted broadcasts & automate workflows.All without installing multiple plugins.",
"thrivedesks-app-for": "ThriveDesk's App for",
"brings-the-customer-data-you": "brings the customer data you need directly into the customer sidebar.When you receive an email from a customer or a new conversation is created, this App will create customer's contact information, import the customer's contact information and export conversation information.",
"what-this-app-does": "What this App does:",
"create-customer-contact-information": "Create customer contact information",
"import-customer-contact-information": "Import customer contact information",
"export-conversation-information": "Export conversation information",
"setup-autonami": "Setup Autonami",
"you-need-to-install-thrivedesks": "You need to install ThriveDesk's WordPress plugin to use this app.",
"instructions": "Instructions:",
"login-to-your-wordpress-site": "Login to your WordPress site.",
"go-to-plugins-add-plugins": "Go to Plugins > Add Plugins and search for ThriveDesk",
"install-and-activate-the-plugin": "Install and activate the plugin.",
"go-to": "Go to",
"settings-thrivedesk": "Settings > ThriveDesk",
"and-connect-your-autonami-plugin": "and connect your Autonami plugin with ThriveDesk.",
"for-any-help-and-assistance": "For any help and assistance you can reach us at [email protected]",
"label": "Label",
"label-is-required": "Label is required.",
"store-url": "Store URL",
"store-url-is-required": "Store URL is required.",
"token": "Token",
"token-is-required": "Token is required.",
"inboxes": "Inboxes",
"assign-this-app-to-selected": "Assign this app to selected inboxes",
"save": "Save",
"delete": "Delete",
"connect-your-store": "Connect your store",
"back-to-store": "Back to store",
"edd-customer-link": "EDD customer link",
"customer-since": "Customer since",
"lifetime-order": "Lifetime order",
"last-12-months-order": "Last 12 month's order",
"avg-order": "Avg order",
"order-status": "Order Status",
"order-date": "Order date",
"amount": "Amount",
"expire-date": "Expire date",
"option": "Option",
"no-license-found": "No license found",
"is-the-most-popular-plugin": "is the most popular plugin in WordPress for selling digital downloads. From eBooks, to WordPress plugins, to PDF files and more,",
"make-selling-digital-products-a": "make selling digital products a breeze.",
"edd-description-sHEou.brings-the-customer-data-you": "brings the customer data you need directly into the customer sidebar. When you receive an email from a customer, this App will import contact information, pull in the customer's key metrics (lifetime value, annual value and average order value) and display up to 10 recent orders.",
"pull-in-key-metrics-such": "Pull in key metrics such as lifetime value and average order value",
"display-up-to-10-of": "Display up to 10 of the customer's most recent orders",
"setup-easy-digital-downloads": "Setup Easy Digital Downloads",
"and-connect-your-edd-plugin": "and connect your EDD plugin with ThriveDesk.",
"your-store-url": "Your store url",
"token-key": "Token key",
"customer": "Customer",
"verified-purchase": "Verified Purchase",
"support-expire": "Support Expire",
"licence": "Licence",
"purchase-code": "Purchase code",
"no-purchase-record-found": "No purchase record found!",
"insert-purchase-code-here": "Insert purchase code here...",
"is-a-parent-company-of": "is a parent company of marketplaces like Themeforest, Codecanyon, GraphiRiver and Videohive. Authors around the world sells their WordPress themes, plugins, graphic and music templates in Envato marketplace.",
"envato-app-validate-the-customer": "Envato app validate the customer purchase code and give insight of their purchase in sidebar. Support agent can view all the information in one place.",
"pulls-customer-purcahse-history": "Pulls customer purcahse history",
"display-customer-total-order": "Display customer total order",
"validate-support-code": "Validate support code",
"display-license-information": "Display license information",
"add-new-app": "Add new app",
"awesome-inc": "Awesome Inc",
"envato-setup-form-EWYKT.label-is-required": "Label is required",
"api-token": "API Token",
"envato-api-token": "Envato API token",
"envato-setup-form-qnvss.token-is-required": "Token is required",
"back-to-site": "Back to site",
"last-seen": "Last seen",
"is-a-self-hosted-email": "is a Self Hosted Email Marketing Automation Plugin for WordPress.Manage your leads and customers, email campaigns, automated email sequencing, learner and affiliate management, and monitor user activities and many more in one place; without ever having to leave your WordPress dashboard!",
"setup-fluentcrm": "Setup FluentCRM",
"and-connect-your-fluentcrm-plugin": "and connect your FluentCRM plugin with ThriveDesk.",
"total-order-count": "Total order count",
"orders": "Orders:",
"price": "Price",
"quantity": "Quantity",
"shipping-details": "Shipping details",
"address-1": "Address 1",
"address-2": "Address 2",
"city": "City",
"country": "Country",
"zip": "Zip",
"notice": "Notice!",
"this-app-is-under-review": "This app is under review process and won't work until verified by Shopify. Please have patience",
"is-the-allinone-commerce-platform": "is the all-in-one commerce platform to start, run, and grow a business.",
"thrivedesk-app-for-shopify-brings": "ThriveDesk App for Shopify brings the customer data you need directly into the customer sidebar widget.When you receive an email from a customer, this App will import the customer's key metrics (lifetime value, annual value and average order value) and display up to 10 recent orders.You can access order details or the customer's Shopify profile in a single click.",
"setup-shopify": "Setup Shopify",
"you-need-to-install-from": "You need to install from the Shopify app store to use this app.",
"authorization-failed": "Authorization failed!",
"looks-like-we-lost-access": "Looks like we lost access to your account.Please reinstall the app to get back on track.",
"shop-address": "Shop address",
"shop-address-is-required": "Shop address is required.",
"shop-address-appears-to-be": "Shop address appears to be invalid.",
"connect": "Connect",
"you-need-to-remove-this": "You need to remove this app from your Shopify store.",
"brings-all-your-team-communications": "brings all your team communications into a central hub.In addition to group chat and instant messaging, Slack integrates with many of the services you use every day and posts automatic updates in a channel (similar to a room) of your choice.",
"thrivedesk-app-for-slack-allows": "ThriveDesk app for Slack allows you to post events from ThriveDesk(new conversations, customer replies, assignments and more) instantly to the channel of your choice",
"post-events-from-thrivedesk-in": "Post events from ThriveDesk in your slack account",
"setup-slack": "Setup Slack",
"the-slack-app-allows-you": "The Slack App allows you to post events from ThriveDesk instantly to the channel of your choice.",
"currently-supported-events": "Currently supported events:",
"new-conversation-created": "New Conversation created.",
"conversation-assign-to-anyone": "Conversation assign to anyone.",
"note-added-to-any-conversation": "Note added to any conversation.",
"user-replies-to-any-conversation": "User replies to any conversation",
"conversation-status-update": "Conversation status update",
"tags-addedupdated-to-any-conversation": "Tags added/updated to any conversation",
"conversation-moved-to-another-inbox": "Conversation moved to another inbox",
"you-will-be-redirect-to": "You will be redirect to slack app workspace installation page. Press install to continue",
"install": "Install",
"slack-setup-form-iPpEv.looks-like-we-lost-access": "Looks like we lost access to your account. Please reinstall the app to get back on track.",
"events": "Events",
"select-a-channel": "Select a channel",
"inbox": "Inbox",
"channel": "Channel",
"description-works": "description works!",
"is-an-incredibly-useful-thrivedesk": "is an incredibly useful ThriveDesk integration that helps you quickly get your WordPress site post and page data inside your conversation. Thus making sure they aren’t holding back to get post data as fast as possible.",
"simply-use-the-slash-command": "Simply use the slash ('/') command while composing or replying to a conversation. You will get your expected WordPress site post suggestions, And you’ll be able to interact with your customer support tickets faster than ever before.",
"sync-your-site-data-of": "Sync your site data of selected post types",
"trigger-search-feature-with-a": "Trigger search feature with a slash command",
"setup-wp-post-sync": "Setup WP Post Sync",
"and-connect-your-wp-post": "and connect your WP Post Sync plugin with ThriveDesk.",
"website-url": "Website URL",
"website-url-is-required": "Website URL is required.",
"limit-post-search-result-between": "Limit post search result (between 1-10):",
"are-way-to-have-thrivedesk": "are way to have ThriveDesk call a script on your server when one or more events have happened, enabling you to react however you like. Webhooks can be thought of as event listeners or push notifications.",
"post-event-data-from-thrivedesk": "Post event data from ThriveDesk to a URL for your app",
"documentation": "Documentation:",
"for-a-list-of-available": "For a list of available events and other important details like response body, response fields, verifying response, visit:",
"available-events": "Available Events",
"each-request-body-uses-the": "Each request body uses the object format linked in the table below.All webhooks use the v1 payload.",
"event-name": "Event Name",
"event-type": "Event Type",
"conversation-created": "Conversation created",
"conversationcreated": "conversation.created",
"conversation-assigned": "Conversation assigned",
"conversationassigned": "conversation.assigned",
"note-added-to-conversation": "Note added to conversation",
"conversationnoteadded": "conversation.note.added",
"user-replies-to-conversation": "User replies to conversation",
"conversationagentreply": "conversation.agent.reply",
"customer-replies-to-conversation": "Customer replies to conversation",
"conversationcontactreply": "conversation.contact.reply",
"conversation-status-updated": "Conversation status updated",
"conversationstatusupdated": "conversation.status.updated",
"conversation-tags-added-updated": "Conversation Tags added / updated",
"conversationtagsupdated": "conversation.tags.updated",
"conversation-moved": "Conversation moved",
"conversationmoved": "conversation.moved",
"request-body": "Request Body",
"a-sample-response-body-demonstration": "A sample response body demonstration:",
"click-here": "Click here!",
"headers": "Headers",
"each-webhook-includes-one-thrivedesk": "Each webhook includes one ThriveDesk header:",
"x-td-signature-the-computed": "X - TD - SIGNATURE: The computed signature generated by ThriveDesk.Used to know if the request is valid or not.",
"verifying": "Verifying",
"webhooks-can-be-verified-as": "Webhooks can be verified as coming from ThriveDesk by calculating a digital signature.Each webhook request containsan",
"x-td-signature": "X - TD - SIGNATURE",
"header-generated-using-the-given": "header, generated using the given secret key, along with the JSON encoded payload data sent in the request.",
"to-verify-if-the-request": "To verify if the request came from ThriveDesk, compute the HMAC hash and compare it to the header value sent in the request.If the computed signatures match, you can be sure the request was sent from ThriveDesk.",
"signatures-are-calculated-based-on": "Signatures are calculated based on the raw request body passed to your servers by ThriveDesk.This means that if non - ASCII characters are contained in the payload, you will need to calculate the signature based on the escaped, transliterated string passed to you by ThriveDesk. We recommend this as best practice in general, even for those primarily working with ASCII data.",
"responses": "Responses",
"anything-returned-in-the-body": "Anything returned in the body of the response will be discarded.In order to know the webhook was successful, an HTTP status code between",
"and": "and",
"must-be-returned": "must be returned.",
"a-status-code-of": "A status code of",
"will-cause-the-webhook-to": "will cause the webhook to get deactivated / deleted.",
"any-status-code-other-than": "Any status code other than something between",
"or": "or",
"is-a-failure-of-some": "is a failure of some kind.If the event fails several times, it is discarded.Webhooks are automatically deactivated if three or more events get discarded.",
"add-new-webhook": "Add new webhook",
"secret-key": "Secret Key",
"secret-key-is-required": "Secret key is required.",
"secret-key-contains-invalid-characters": "Secret key contains invalid character(s).",
"callback-url": "Callback URL",
"callback-url-is-required": "Callback Url is required.",
"callback-url-appears-to-be": "Callback Url appears to be invalid.",
"enable-webhook": "Enable webhook",
"webhooks-will-work-for-selected": "Webhooks will work for selected inboxes events",
"no-site-found": "No site found",
"street": "Street",
"is-the-worlds-most-popular": "is the world’s most popular open-source eCommerce solution. Whether you’re launching a business, takingbrick-and-mortar retail online, or developing sites for clients,",
"powerfully-blends-content-and-commerce": "powerfully blends content and commerce.",
"setup-woocommerce": "Setup WooCommerce",
"display-shipping-information": "Display shipping information",
"update-order-status": "Update order status",
"note": "Note",
"ok": "Ok",
"cancel": "Cancel",
"built-by-thrivedesk": "Built by ThriveDesk",
"this-app-is-built-and": "This app is built and maintained by ThriveDesk, and is covered by our",
"terms": "terms",
"privacy": "privacy",
"security": "security",
"policies": "policies",
"some-features-free": "Some features free",
"is-free-for-some-features": "is free for some features. You may be required to upgrade to a paid account to access all features. See",
"pricing": "pricing",
"insufficient-privilege": "Insufficient Privilege",
"works-with": "Works with",
"send-in-conversations": "Send in conversations",
"useful-links": "Useful links",
"categories": "Categories",
"app-store": "App Store",
"integrate-thrivedesk-with-your-favorite": "Integrate ThriveDesk with your favorite apps to make communication even faster and easier.",
"learn-how": "Learn how",
"ask-about-our-apps-integrations": "Ask about our apps & integrations in our community forum",
"manage": "Manage",
"your-installed-apps": "Your installed apps",
"all": "All",
"back-to-assistant": "Back to assistant",
"customize": "Customize",
"apps": "Apps",
"live-chat": "Live Chat",
"docs-": "Docs ",
"contact": "Contact",
"language-text": "Language & Text",
"installation": "Installation",
"all-apps": "All Apps",
"save-settings": "Save Settings",
"woocommerce": "WooCommerce",
"enable-woocommerce-order-status-checking": "Enable WooCommerce order status checking from assistant",
"enable-the-app": "Enable the app",
"you-need-to-install-and": "You need to install and configure WooCommerce app first",
"select-your-woocommerce-site": "Select your WooCommerce site",
"if-you-have-multiple-woocommerce": "If you have multiple WooCommerce app installed, you'll see a list of site here. You need to select a site for this assistant",
"enable-live-chat": "Enable live chat",
"chat-directly-with-visitors-via": "Chat directly with visitors via Assistant",
"enable-on-agents-availability": "Enable on agents availability",
"only-enables-live-chat-when": "Only enables live chat when agents are online",
"show-agents": "Show agents",
"agents-avatar-connected-to-the": "Agents avatar connected to the inbox will be displayed",
"require-email": "Require email?",
"when-enabled-visitors-will-be": "When enabled, visitors will be forced to provide a valid email address before they're connected",
"allow-attachments": "Allow attachments",
"allow-visitors-to-upload-images": "Allow visitors to upload images and attachments",
"contact-form": "Contact Form",
"enable-contact-form": "Enable contact form",
"allow-visitors-to-send-and": "Allow visitors to send and view email conversations from within Assistant",
"ask-for-a-name": "Ask for a name",
"ask-visitors-to-provide-their": "Ask visitors to provide their name when they use the contact form",
"ask-for-a-subject": "Ask for a subject",
"ask-visitors-to-provide-a": "Ask visitors to provide a subject when they use the contact form",
"show-photos": "Show photos",
"choose-up-to-five-photos": "Choose up to five photos to display on the contact form",
"allow-email": "Allow email",
"allow-visitors-to-provide-their": "Allow visitors to provide their email",
"company-logo": "Company Logo",
"jpeg-or-png-smaller-than": "JPEG or PNG, smaller than 1MB. Recommended resolution 800px x 800px",
"upload-image": "Upload Image",
"assistant-name": "Assistant Name",
"action-color": "Action color:",
"background-color": "Background color:",
"launcher-style": "Launcher style",
"display": "Display",
"launcher": "Launcher",
"icon-only": "Icon only",
"icon-text": "Icon & Text",
"text-only": "Text only",
"select-icon": "Select Icon",
"custom-icon": "Custom Icon",
"button-text": "Button Text",
"align-left": "Align Left",
"align-right": "Align Right",
"advanced-settings": "Advanced settings",
"horizontal-position": "Horizontal Position",
"left": "Left",
"right": "Right",
"will-display-the-assistant-on": "Will display the Assistant on either the left or the right of the embedded page",
"zindex": "Z-Index",
"changes-the-css-index-value": "Changes the CSS index value of how the Assistant relates to other objects",
"disable-thrivedesk-branding": "Disable thrivedesk branding",
"you-can-disable-thrivedesk-branding": "You can disable thrivedesk branding but if you want to use it and earn some extra money then contact us for affiliate link.",
"delete-assistant": "Delete Assistant",
"this-will-permanently-delete-the": "This will permanently delete the assistant from ThriveDesk. You will still need to remove the code from your website.",
"installation-script": "Installation script",
"copy-and-paste-this-code": "Copy and paste this code snippet before the",
"tag-on-every-page-you": "tag on every page you want the Assistant to appear",
"copy": "Copy",
"once-youve-completed-your-changes": "Once you’ve completed your changes, open your website. Your Assistant should appear in the bottom right corner.",
"dont-see-your-assistant": "Don’t see your Assistant?",
"check-our": "Check our",
"help-article": "help article",
"contact-us": "contact us",
"docs": "Docs",
"enable-docs": "Enable docs",
"search-documents-created-and-maintained": "Search documents created and maintained by you",
"select-doc-site": "Select doc site",
"you-can-select-an-specific": "You can select an specific document that will help your your visitors to get additional information.",
"translate": "Translate",
"greeting": "Greeting",
"team-intro": "Team intro",
"ask-us-anything-or-share": "Ask us anything, or share your feedback.",
"160-characters-remaining": "160 characters remaining",
"order-status-widgets": "Order status widgets",
"widget-header": "Widget header",
"widget-body": "Widget body",
"contact-widget": "Contact Widget",
"widget-button": "Widget button",
"chat-widget": "Chat Widget",
"livechat-widget-header": "LiveChat Widget header",
"livechat-widget-body": "LiveChat Widget body",
"livechat-widget-button": "LiveChat Widget button",
"close-button-text": "Close button text",
"how-can-we-help": "How can we help?",
"we-usually-respond-in-a": "We usually respond in a few hours",
"send-message": "Send message",
"form-fields": "Form fields",
"your-name": "Your name",
"your-email-address": "Your email address",
"subject": "Subject",
"start-a-chat": "Start a chat",
"we-are-here-to-help": "We are here to help! Message us about what you need. Our agents typically reply in a few minutes.",
"waiting-for-agents": "Waiting for Agents",
"end-chat": "End chat",
"completion-messages": "Completion Messages",
"all-done": "All Done",
"start-new-conversation": "Start new conversation",
"conversation-ended-and-a-copy": "Conversation ended and a copy of transcript sent to your email address.",
"chat-bot": "Chat Bot",
"hi-there-you-can-begin": "Hi there! You can begin by asking your question below. Someone will be with you shortly.",
"real-quick-whats-your-email": "Real quick, what’s your email address? We’ll use it for any follow-up messages.",
"looks-like-youve-entered-an": "Looks like you’ve entered an invalid email address. Want to try again?",
"thanks-someone-from-our-team": "Thanks! Someone from our team will jump into the chat soon.",
"chat-input": "Chat Input",
"send-a-message": "Send a message",
"find-an-answer-easily": "Find an answer easily",
"search-our-help-center": "Search our help center",
"no-results-for": "No results for",
"try-different-keywords-or-type": "Try different keywords or type your full question",
"order-status-fields": "Order Status fields",
"order-details": "Order Details",
"see-your-order-updates": "See your order updates",
"please-enter-your-email-order": "Please, enter your email & order number",
"order-number": "Order Number",
"translate-AsKeb.order-date": "Order Date",
"state": "State",
"data-submitted-successfully": "Data submitted successfully!",
"something-went-wrong": "Something went wrong!",
"oh-no-an-error-occurred": "Oh no, an error occurred!",
"our-developers-are-looking-into": "Our developers are looking into it!",
"go-back": "Go back",
"set-up-chat-assistant": "Set up chat Assistant",
"new-assistant": "New Assistant",
"make-your-assistant-just-right": "Make your assistant just right for your brand. You can create different chat assistant for different site.",
"ask-about-installing-the-assistant": "Ask about installing the Assistant in our community forum",
"setup-new-assistant": "Setup new Assistant",
"create-multiple-assistant-for-multiple": "Create multiple assistant for multiple websites or apps.",
"enable-live-chat-document-search": "Enable live chat, document search, contact form and much more with Assistant.",
"create-new-assistant": "Create new Assistant",
"create-chat-assistant": "Create chat Assistant",
"create-new-assistant-osbPq.assistant-name": "Assistant name",
"please-enter-a-valid-assistant": "Please enter a valid assistant name",
"select-inbox": "Select Inbox",
"please-select-an-inbox-for": "Please select an inbox for this assistant",
"create": "Create",
"add-additional-": "Add additional ",
"select-quantity": "Select quantity",
"confirm": "Confirm",
"overview": "Overview",
"plans": "Plans",
"invoices": "Invoices",
"you-are-currently-on-trial": "You are currently on trial plan",
"ends": "ends",
"enjoy-the-the-full-features": "Enjoy the the full features of ThriveDesk in trial period.",
"plan-overview": "Plan overview",
"ltd": "LTD",
"heres-how-your-plan-breaks": "Here's how your plan breaks down",
"month": "month",
"yr-by-switching-to-annual": "/yr by switching to annual billing",
"your-price-will-drop-to": "Your price will drop to",
"current-plan-UGOtH.month": "/month.",
"switch-to-annual": "Switch to Annual",
"user": "User",
"community": "Community",
"billing-cycle-renews-in-": "Billing cycle renews in ",
"edit-payment-details": "Edit payment details",
"features-included-in-your-plan": "Features included in your plan:",
"users": "Users",
"cancel-subscription": "Cancel Subscription",
"thrivedesk": "ThriveDesk",
"cancelled": "cancelled",
"expired": "expired",
"cancelled-expired-on-date": "Cancelled / expired on __date__",
"licenses-key": "Licenses Key",
"if-you-have-any-license": "If you have any license key you can use it here",
"redeemd-package-": "Redeemd package 👇",
"redeem": "Redeem",
"date": "Date",
"receipt": "Receipt",
"you-have-no-receipt": "You have no receipt",
"choose-your-thrivedesk-plan": "Choose your ThriveDesk plan",
"all-of-them-come-with": "All of them come with a 30 - day money back guarantee",
"processing-payment": "Processing Payment",
"we-are-processing-your-payment": "We are processing your payment. Once the payment has successfully processed, this page will update automatically. Typically, this process should only take a few seconds.",
"subscription-confirmed": "Subscription Confirmed",
"a-receipt-has-been-email": "A receipt has been email to you",
"monthly": "Monthly",
"annual": "Annual",
"get-two-months-free": "Get two months free",
"-month": "/ month",
"contacts": "Contacts",
"name": "Name",
"email": "Email",
"conversations": "Conversations",
"edit-contact": "Edit Contact",
"last-conversation": "Last Conversation",
"no-contacts-found": "No contacts found!",
"reply-r": "Reply (r)",
"internal-note-n": "Internal Note (n)",
"drop-your-file-here": "Drop your file here!",
"reply": "Reply",
"search-docs": "Search docs",
"instant-reply": "Instant reply",
"no-saved-replies-found": "No saved replies found",
"to": "To:",
"from": "From",
"cc": "CC",
"bcc": "BCC",
"image-loading-is-disabled-for": "Image loading is disabled for this contact. If you trust this contact",
"click-here-to-enable-images": "click here to enable images",
"sending": "Sending",
"failed": "Failed",
"thread-view-VGUDF.cc": "cc:",
"thread-view-hWMzm.bcc": "bcc:",
"edit": "Edit",
"empty-body": "Empty body",
"contact-viewed-": "Contact viewed @",
"add-tags": "Add Tags",
"manage-tags": "Manage tags",
"create-tag": "Create Tag",
"move-to": "Move To",
"set-priority": "Set Priority",
"follow": "Follow",
"forward": "Forward",
"high-priority": "High Priority",
"normal-priority": "Normal Priority",
"low-priority": "Low Priority",
"notes": "Notes",
"edit-profile": "Edit Profile",
"welcome-to": "Welcome to",
"tickets-assigned-to-you": "Tickets Assigned To You",
"no-ticket-assigned-to-you": "No ticket assigned to you! You can pick any ticket from",
"folder": "folder",
"log-in-to-thrivedesk": "Log in to ThriveDesk",
"resend-verification-email": "Re-send verification email",
"work-email": "Work email",
"email-is-required": "Email is required.",
"password": "Password",
"password-is-required": "Password is required.",
"keep-me-signed-in": "Keep me signed in",
"forgot-your-password": "Forgot your password?",
"sign-in": "Sign In",
"looking-for-a-better-way": "Looking for a better way to talk with customers ?",
"try-thrivedesk": "Try ThriveDesk",
"enter-your-email-address-below": "Enter your email address below and we'll send you password reset instructions.",
"enter-your-email-address": "Enter your email address",
"email-me-reset-instructions": "Email me reset instructions",
"if-you-dont-see-your": "If you don't see your reset email",
"-be-sure-to-check": " be sure to check your spam filter for an email from [email protected]",
"error": "Error!",
"create-new-password": "Create new password",
"email-address": "Email address",
"password-must-be-at-least": "Password must be at least 8 characters",
"please-enter-a-valid-password": "Please enter a valid password",
"confirm-password": "Confirm password",
"save-new-password": "Save new password",
"start-your-free-trial": "Start your free trial",
"registration-complete": "Registration Complete",
"we-have-sent-you-an": "We have sent you an verification email.Please verify your email.",
"register-meuNf.resend-verification-email": "Resend Verification Email",
"already-have-an-account-": "Already have an account ?",
"company-name": "Company name",
"domain": "Domain",
"primary-domain-for-outgoing-email": "Primary domain for outgoing email. You can setup your own branded email later.",
"this-domain-name-is-taken": "This domain name is taken",
"first-name": "First name",
"last-name": "Last name",
"please-enter-a-valid-email": "Please enter a valid email address",
"this-email-address-is-already": "This email address is already in use.Would you like to",
"login": "login",
"this-email-has-pending-approval": "This email has pending approval.",
"resend-verification-link": "Re-send verification link",
"min-8-characters": "Min 8 characters",
"i-want-to-receive-product": "I want to receive product updates",
"sign-up": "Sign Up",
"by-clicking-sign-up-you": "By clicking Sign Up, you agree to our",
"terms-of-use": "Terms of Use",
"privacy-policy": "Privacy Policy",
"verify-your-email-address": "Verify Your Email Address",
"a-fresh-verification-link-has": "A fresh verification link has been sent to your email address.",
"please-check-your-email-for": "Please check your email for a verification link.If you did not receive any email, send another one",
"verify-xyrPZ.resend-verification-email": "Resend verification email",
"please-hold-on": "Please hold on",
"verified": "Verified",
"now-you-can-proceed-to": "Now you can proceed to",
"would-you-like-to-share": "Would you like to share any other comments?",
"write-your-comments": "Write your comments",
"send-feedback": "Send Feedback",
"how-would-you-rate-the": "How would you rate the support you received?",
"great": "Great",
"okay": "Okay",
"not-good": "Not Good",
"accept-request": "Accept Request",
"end-conversation": "End Conversation",
"chat-messages-pvpgu.send-message": "Send Message",
"chats": "Chats",
"youre-all-caughtup": "You're all caught-up",
"ready-to-chat-": "Ready to chat ?",
"pick-a-chat-from-the": "Pick a chat from the list.",
"all-conversations": "All conversations",
"new-conversation": "New Conversation",
"get-all-your-conversations-in": "Get all your conversations in one place that helps your team stay productive and resolve issue faster.",
"watch-a-video": "Watch a video",
"take-a-tour": "Take a tour",
"connect-your-domain": "Connect your domain",
"assign": "Assign",
"status": "Status",
"sort-by": "Sort by:",
"newest": "Newest",
"oldest": "Oldest",
"conversations-that-have-been-in": "Conversations that have been in Trash more than 30 days will be automatically deleted.",
"conversation": "Conversation",
"number": "Number",
"treat-yourself": "Treat yourself",
"awesome-sauce": "Awesome sauce",
"you-make-customer-support-look": "You make customer support look easy. Give yourself a treat!",
"create-conversation": "Create Conversation",
"you-can-create-new-outgoing": "You can create new outgoing messages (just like email) to proactively get in touch with your customers.",
"create-conversation-HqPUf.to": "To",
"invalid-recipient-address": "Invalid recipient address",
"ccbcc": "CC/BCC",
"invalid-subject": "Invalid Subject",
"create-conversation-LTXzx.instant-reply": "Instant Reply",
"anyone": "Anyone",
"send": "Send",
"sending-limit": "Sending limit",
"free-users-are-not-allowed": "Free users are not allowed to send outgoing email.",
"upgrade-your-plan": "Upgrade your plan",
"and-enjoy-unlimited-outgoing-email": "and enjoy unlimited outgoing email.",
"getting-started-with": "Getting started with",
"create-a-mailbox": "Create a Mailbox",
"center-place-where-tickets-and": "Center place where tickets and conversations take place and team collaborate for thriving customer support.",
"create-mailbox": "Create Mailbox",
"invite-teammates": "Invite Teammates",
"add-teammates-to": "Add teammates to",
"so-everyone-stay-on-the": "so everyone stay on the same page and nothing slip through the cracks.",
"add-new-user": "Add New User",
"skip-this-step": "Skip this step",
"connect-apps": "Connect Apps",
"connect-your-most-important-apps": "Connect your most important apps and services to",
"so-you-can-provide-better": "so you can provide better, faster support for your customers.",
"browse-apps": "Browse Apps",
"create-a-community": "Create a Community",
"create-a-thriving-community-with": "Create a thriving community with your customers and build meaningful relationship.",
"start-now": "Start Now",
"welcome": "Welcome",
"lets-get-started": "Let’s get started!",
"you-can-only-experience-the": "You can only experience the full power of ThriveDesk if you finish your onboarding steps.",
"were-here-for-you-get": "We’re here for you! Get in touch and we’ll answer your questions.",
"onboarding-PUcCi.contact-us": "Contact Us",
"joined-on-the": "Joined on the",
"assigned-vsclosed": "Assigned Vs.Closed",
"total-conversations": "Total Conversations",
"avg-conversations-per-day": "Avg. Conversations Per Day",
"resolutions": "Resolutions",
"avg-resolutions-per-day": "Avg. Resolutions Per Day",
"contact-helped": "Contact Helped",
"avg-contact-per-day": "Avg. Contact Per Day",
"productivity": "Productivity",
"avgfirst-response-time": "AVG.FIRST RESPONSE TIME",
"avgresolution-time": "AVG.RESOLUTION TIME",
"avg-replies-to-resolution": "AVG REPLIES TO RESOLUTION",
"no-user-found": "No user found",
"new-conversations": "New Conversations",
"avgconversations-per-day": "Avg.Conversations Per Day",
"avgresolutions-per-day": "Avg.Resolutions Per Day",
"avgcontact-per-day": "Avg.Contact Per Day",
"happiness-overview": "Happiness overview",
"recent-ratings": "Recent Ratings",
"a-list-of-recent-ratings": "A list of recent ratings over the selected period",
"conversation-subject": "Conversation Subject",
"agent": "Agent",
"rating": "Rating",
"no-data-found": "No data found",
"happiness": "Happiness",
"agents": "Agents",
"reports": "Reports",
"this-week": "This week",
"last-week": "Last week",
"this-month": "This month",
"last-month": "Last month",
"track-your-teams-performance-over": "Track your team's performance over time, and drill down for detailed metrics on each member of your organization.",
"quick-filters": "Quick Filters",
"search-for-anything-or-use": "Search for anything, or use any combination or filters",
"waitingclosed": "Waiting/Closed",
"search-inside-thrivedesk": "Search inside ThriveDesk",
"search-tips-": "Search tips 👇",
"tip-1-to-find-results": "TIP 1: To find results that match",
"search-PxikE.all": "ALL",
"conditions-separate-multiple-filters-with": "conditions, separate multiple filters with a space:",
"tagabc-tag123": "tag:abc tag:123",
"tip-2-to-find-results": "TIP 2: To find results that match",
"any": "ANY",
"condition-use-a-comma": "condition, use a comma:",
"tagabc123": "tag:abc,123",
"tip-3-use": "TIP 3: Use",
"tab": "TAB",
"to-complete-the": "to complete the",
"auto-suggested-keyword": "auto suggested keyword:",
"assi": "assi",
"you-can-also-use": "You can also use",
"from-your-keyboard-to-select": "from your keyboard to select values from dropdown.",
"messages": "Messages",
"results": "Results",
"back": "Back",
"create-new-community": "Create new community",
"general": "General",
"community-name": "Community name",
"member-onboarding": "Member onboarding",
"default-channel-group": "Default channel group",
"organize-your-channels-by-creating": "Organize your Channels by creating Channel Groups, which are helpful for segmenting important information and topics.",
"default-channel": "Default channel",
"channels-are-used-to-keep": "Channels are used to keep conversations organized by topic",
"default-admin": "Default admin",
"you-will-be-the-admin": "You will be the admin of the community. You can manage community users once the community is created",
"permission": "Permission",
"private-community": "Private community",
"allow-only-community-members-to": "Allow only community members to view and browse the community.",
"create-community": "Create Community",
"manage-communities": "Manage Communities",
"new-community": "New Community",
"community-dWivm.community-name": "Community Name",
"url": "URL",
"community-type": "Community type",
"public": "Public",
"access-community": "Access community",
"hangout-with-your-customers": "Hangout with your customers",
"setup-your-community-to-make": "Setup your community to make em happy.",
"community-is-a-great-way": "Community is a great way to hangout and help customers help themselves. They will appear here once created.",
"create-your-first-community": "Create your first community",
"no-community-found": "No community found",
"manage-community": "Manage Community",
"edit-community-SAxJK.access-community": "Access Community",
"please-enter-a-valid-organization": "Please enter a valid organization name",
"please-enter-a-subdomain": "Please enter a subdomain",
"delete-community": "Delete Community",
"edit-company": "Edit Company",
"company-tJznQ.company-name": "Company Name",
"please-enter-a-valid-company": "Please enter a valid company name",
"company-domain": "Company Domain",
"this-subdomain-is-taken": "This subdomain is taken",
"open-tracking": "Open Tracking",
"select-timezone": "Select Timezone",
"time-format": "Time Format",
"12hour-clock-eg-213pm": "12-hour clock (e.g. 2:13pm)",
"24hour-clock-eg-1413": "24-hour clock (e.g. 14:13)",
"trash-conversations-autopurge-interval": "Trash Conversations Auto-purge Interval",
"delete-organization": "Delete Organization",
"actions": "Actions",
"actions-MtgMK.and": "AND",
"select-user": "Select User",
"select-status": "Select Status",
"select-tag": "Select Tag",
"previous": "Previous",
"basic-setup": "Basic setup",
"automation-name": "Automation name",
"automatic": "Automatic",
"manual-execution-option-is-up": "Manual execution option is up - coming.",
"when-": "When ...",
"if-": "If ...",
"conditions-Dqpej.or": "OR",
"select-agents": "Select Agents",
"choose-a-date": "Choose a date",
"select-rating": "Select Rating",
"select-type": "Select Type",
"hours": "Hours",
"days": "Days",
"select-duration": "Select duration",
"automation-summary": "Automation Summary",
"info": "Info",
"type": "Type:",
"summary-kKHgc.name": "Name:",
"conditions": "Conditions",
"after-conversation-is-created-or": "-after Conversation is created or updated, check if:",
"-if-the-condition-matches": "- if the condition matches, perform:",
"automations": "Automations",
"create-new-automation": "Create new automation",
"make-your-life-easier": "Make your life easier",
"create-your-first-automation": "Create your first automation",
"automation-list-LagqY.create-new-automation": "Create New Automation",
"add-dns-records": "Add DNS records",
"it-may-take-upto": "It may take upto",
"48hrs": "48hrs",
"to-verify-the-dns-record": "to verify the DNS record. After DNS verification you will be able to send email under your domain.",
"head-over-to-your-dns": "Head over to your DNS provider and add provided DNS records to verify your domain.",
"verify": "Verify",
"inbox-properties": "Inbox Properties",
"inbox-name": "Inbox Name",
"please-enter-a-valid-name": "Please enter a valid name",
"inbox-address": "Inbox Address",
"connected-email-address": "Connected Email Address",
"default-inbound-address": "Default inbound address",
"forward-email-from-your-normal": "Forward email from your normal support email address (such as [email protected]) to ThriveDesk so you can reply to emails from your inbox.",
"connect-now": "Connect now",
"forwarding-address": "Forwarding address",
"forward-from-your-email-address": "Forward from your email address",
"to-inbox": "to Inbox",
"so-you-can-reply-to": "so you can reply to emails from your inbox.",
"verify-forwarder": "Verify Forwarder",
"default-settings": "Default Settings",
"from-name": "From Name",
"users-name": "User's Name",
"custom-name": "Custom Name",
"this-is-the-name-that": "This is the name that will appear in the From field when a customer views your email.",
"custom-from-name": "Custom From Name",
"default-status": "Default Status",
"active": "Active",
"pending": "Pending",
"when-you-reply-to-a": "When you reply to a message, this status will set by default(also applies to integrations).",
"default-assignee": "Default Assignee",
"person-replyingif-unassigned": "Person Replying(if Unassigned)",
"person-replying": "Person Replying",
"auto-bcc": "Auto Bcc",
"send-a-copy-of-all": "Send a copy of all outgoing conversations to a specific external address",
"bcc-email": "Bcc Email",
"the-auto-bcc-field-is": "The auto Bcc field is invalid",
"separate-multiple-email-addresses-with": "Separate multiple email addresses with comma.",
"enable-auto-reply": "Enable Auto Reply",
"when-a-contact-emails-this": "When a contact emails this mailbox, ThriveDesk can send an auto reply to the contact immediately.",
"message": "Message",
"auto-replies-does-not-include": "Auto replies does not include your mailbox signature, so be sure to add your contact information if necessary.",
"one-autoreply-is-sent-per": "One auto-reply is sent per conversation and a contact won't receive more than one in a 24-hour period.",
"signature": "Signature",
"appended-at-the-end-of": "Appended at the end of all outgoing emails",
"save-inbox": "Save Inbox",
"delete-inbox": "Delete Inbox",
"back-to-settings": "Back to settings",
"connection": "Connection",
"satisfaction-ratings": "Satisfaction Ratings",
"saved-reply": "Saved Reply",
"automation": "Automation",
"-edit": " Edit",
"-connection": " Connection",
"-permission": " Permission",
"choose-who-can-access-this": "Choose who can access this mailbox",
"people-may-be-granted-access": "People may be granted access to this mailbox individually, or from their teams.",
"you-have-no-user": "You have no user",
"save-permission": "Save Permission",
"enable-satisfaction-ratings": "Enable Satisfaction Ratings",
"enable-or-disable-the-satisfaction": "Enable or disable the satisfaction ratings",
"placement": "Placement",
"place-ratings-text-above-my": "Place ratings text above my signature.",
"place-ratings-text-below-my": "Place ratings text below my signature.",
"ratings-text": "Ratings Text",
"rating-landing-page": "Rating Landing Page",
"translate-your-rating-landing-page": "Translate your rating landing page texts.",
"page-title": "Page Title",
"prompt": "Prompt",
"comment-box": "Comment Box",
"send-button": "Send Button",
"rating-thank-you-page": "Rating Thank You Page",
"translate-your-rating-thank-you": "Translate your rating thank you page texts.",
"thank-you-message": "Thank You Message",
"restore-default": "Restore default",
"get-your-emails-into-thrivedesk": "Get your emails into ThriveDesk",
"set-up-forwarding-or-redirection": "Set up forwarding or redirection from your email provider to get that email in to ThriveDesk.",
"email-connection-Uhmbg.this-email-address-is-already": "This email address is already in use",
"well-send-you-a-6digit": "We'll send you a 6-digit code to confirm it belongs to you.",
"do-not-use-any-public": "DO NOT use any public domain such as gmail, hotmail, outlook or mail.ru etc.",
"look-for-an-email-from": "Look for an email from ThriveDesk",
"enter-the-6digit-code-sent": "Enter the 6-digit code sent to",
"autoforward-your-email": "Auto-forward your email",
"go-to-your-email-provider": "Go to your email provider and set address below as forwarding email",
"manage-inboxes": "Manage Inboxes",
"new-inbox": "New Inbox",
"customers-are-waiting": "Customers are waiting",
"setup-your-inbox-and-start": "Setup your inbox and start helping your customers.",
"create-new-inbox": "Create New Inbox",
"you-dont-have-permission": "You don't have permission",
"inboxes-sszXg.if-you-think-this-is": "If you think this is a mistake, contact your organizaiton owner.",
"doc-site-name": "Doc site name",
"youll-be-the-admin-of": "You'll be the admin of the doc site. You can manage docs users once the doc site is created",
"private-doc-site": "Private doc site",
"allow-only-docs-members-to": "Allow only docs members to view and browse the doc site.",
"create-doc-site": "Create doc site",
"manage-doc-site": "Manage Doc Site",
"access-doc-site": "Access Doc Site",
"edit-knowledgebase-ogsaC.doc-site-name": "Doc Site Name",
"delete-doc-site": "Delete Doc Site",
"manage-docs": "Manage Docs",
"new-doc-site": "New Doc Site",
"doc-site-type": "Doc Site type",
"educate-your-customers": "Educate your customers",
"docs-are-a-great-way": "Docs are a great way to educate your customers. They will appear here once created.",
"create-your-first-doc": "Create your first doc",
"no-document-found": "No document found",
"notifications": "Notifications",
"what-are-notifications": "What are notifications?",
"notifications-are-customizable-alerts-that": "Notifications are customizable alerts that keep you updated on specific activities in ThriveDesk. For example, you can receive desktop and browser push notifications whenever you receive a new message or email notifications when conversations are assigned to you. Notifications ensure you never miss anything while you’re away from ThriveDesk.",
"browser-notifications-not-working": "Browser notifications not working?",
"check-this-tutorial": "Check this tutorial",
"enable-browser-notifications": "Enable browser notifications",
"your-browser-notifications-are-enabled": "Your browser notifications are enabled",
"notify-me-when": "Notify me when…",
"browser": "Browser",
"a-conversation-is-created-by": "A conversation is created by anyone",
"a-conversation-is-assigned-to": "A conversation is assigned to me",
"a-contact-replies-to-a": "A contact replies to a conversation assigned to me",
"notifications-xXiYW.a-contact-replies-to-a": "A contact replies to a conversation assigned to someone else",
"an-agent-replies-or-adds": "An agent replies or adds a note to a conversation assigned to me",
"notifications-tfXXv.an-agent-replies-or-adds": "An agent replies or adds a note to a conversation assigned to someone else",
"a-contact-rates-a-conversation": "A contact rates a conversation assigned to me",
"notifications-tWvYx.a-contact-rates-a-conversation": "A contact rates a conversation assigned to someone else",
"save-notification-settings": "Save notification settings",
"roles-permissions": "Roles & Permissions",
"admin": "Admin",
"manage-account-billing-amp-plan": "Manage Account: Billing & Plan changes",
"mailbox": "Mailbox",
"manage-inbox": "Manage Inbox",
"edit-threads": "Edit Threads",
"delete-conversations": "Delete Conversations",
"edit-notes": "Edit Notes",
"delete-notes": "Delete Notes",
"manage-saved-replies": "Manage Saved Replies",
"tags-edit-merge-amp-delete": "Tags: Edit, merge & delete",
"manage-workflows": "Manage Workflows",
"view": "View",
"export-reporting-data": "Export reporting data",
"assistants": "Assistants",
"manage-assistants": "Manage Assistants",
"delete-assistants": "Delete Assistants",
"add-new-reply": "Add new reply",
"select-folder": "Select folder",
"select-a-folder": "Select a folder",
"new-folder": "New folder",
"folder-name": "Folder name",
"once-you-save-new-folder": "Once you save, new folder will be created.",
"new-reply-ekrRf.select-inbox": "Select inbox",
"global-all-inboxes": "Global - All inboxes",
"this-name-will-only-be": "This name will only be used as a reference",
"please-enter-a-message": "Please enter a message",
"saved-replies": "Saved Replies",
"saved-replies-RJeVg.add-new-reply": "Add New Reply",
"saved-replies-tWfol.select-folder": "Select Folder",
"rename-folder": "Rename folder",
"delete-folder": "Delete folder",
"saved-replies-IAckr.all": "all",
"saved-replies-hlfYU.global-all-inboxes": "Global - All Inboxes",
"the-easiest-way-to-answer": "The easiest way to answer your customers and make your team life happier. They will appear here once created.",
"create-your-first-saved-reply": "Create your first saved reply",
"my-settings": "My Settings",
"profile": "Profile",
"organization": "Organization",
"roles-permission": "Roles & Permission",
"communities": "Communities",
"merge-tags": "Merge tags",
"tag-name": "Tag Name",
"merge": "Merge",
"update": "Update",
"tag": "Tag",
"tags-redmv.manage-tags": "Manage Tags",
"new-tag": "New Tag",
"all-inbox": "All Inbox",
"start-with-tags": "Start with tags",
"create-tags-to-identify-your": "Create tags to identify your conversations easily",
"create-tags": "Create Tags",
"remove-the-member": "Remove the member",
"assign-everything-related-to": "Assign everything related to",
"remove-member-ydbhE.to": "to",
"select-a-member": "Select a Member",
"image-must-be-250x250-in": "Image must be 250x250 in size",
"role": "Role",
"user-KPawT.first-name": "First Name",
"user-xfogZ.last-name": "Last Name",
"user-whVIy.please-enter-a-valid-email": "Please enter a valid email",
"this-email-is-already-in": "This email is already in use.",
"job-title": "Job Title",
"phone-number": "Phone Number",
"12-hour-clockeg-213pm": "12 - hour clock(e.g. 2:13pm)",
"24-hour-clockeg-1413": "24 - hour clock(e.g. 14:13)",
"save-profile": "Save Profile",
"remove-member": "Remove Member",
"change-your-password": "Change your password",
"current-password": "Current Password",
"new-password": "New Password",
"password-must-be-minimum-6": "Password must be minimum 6 characters",
"user-IGrYS.confirm-password": "Confirm Password",
"save-password": "Save Password",
"send-password-reset-link": "Send password reset link",
"delete-your-account": "Delete your account",
"once-you-delete-your-account": "Once you delete your account, there is no going back. Please be certain.",
"once-deleted-you-cant-access": "Once deleted, you can't access :",
"any-workspaces-you-own": "Any Workspaces you own",
"inboxes-and-users-on-every": "Inboxes and users on every Workspaces",
"saved-replies-tags-and-permissions": "Saved replies, tags and permissions",
"enter-your-current-password": "Enter your current password",
"delete-account": "Delete Account",
"inboxes-you-have-access-to": "Inboxes you have access to",
"no-inbox-assigned-to-you": "No inbox assigned to you. Please contact to your admin.",
"manage-teammates": "Manage teammates",
"invite-member": "Invite Member",
"teammate": "Teammate",
"inactive": "Inactive",
"invited-users": "Invited users",
"how-are-you-planning-to": "How are you planning to use ThriveDesk ?",
"please-select-a-plan-for": "Please select a plan for your workspace.",
"pro-plan": "Pro plan",
"i-want-my-team-collaborate": "I want my team collaborate and resolve issues faster",
"free-plan": "Free plan",
"i-want-to-thrive-customer": "I want to thrive customer support with my small team",
"ltd-plan": "LTD plan",
"i-have-a-license-code": "I have a license code to redeem",
"continue": "Continue",
"workspace-name": "Workspace name",
"eg-awesome-company": "eg: Awesome Company",
"please-enter-a-valid-workspace": "Please enter a valid workspace name",
"awesomecompany": "awesome-company",
"workspace-jNZMM.this-subdomain-is-taken": "This subdomain is taken.",
"license-key": "License Key",
"eg-ltdxxxxxxxxxxxxxxxxxxxxxxxxxxxxx": "eg: LTDXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"please-insert-your-license-code": "Please insert your license code here. If your purchase email is different than your account email, please contact us for redeem instruction.",
"before-you-go": "before you go...",
"by-cancelling-youll-lose-access": "By cancelling you'll lose access to all your awesome features and functionality.",
"streamline-shared-inbox": "Streamline shared inbox",
"easy-management-for-emails-through": "Easy management for emails through a single shared inbox.",
"instant-support-with-live-chat": "Instant support with Live Chat",
"68-customers-engage-in-live": "68% customers engage in live chat",
"knowledge-base-that-serves": "knowledge base that serves",
"reduce-ticket-inflow-avoid-repetitive": "Reduce ticket inflow, avoid repetitive incident logs and improve resolution times",
"gets-measured-with-reports": "Gets measured with reports",
"helps-you-make-datadriven-decisions": "Helps you make data-driven decisions to support.",
"before-you-cancel-could-you": "Before you cancel, could you tell us why ?",
"hey-were-sorry-youre-thinking": "Hey! We're sorry you're thinking of leaving us. Would yo tell us why? We might be able to help.",
"dont-cancel-": "Don't Cancel ",
"step": "Step",
"of-2": "of 2",
"yes-continue": "Yes, Continue",
"problem-well-fix-it-just": "Problem? We'll fix it. Just reach out.",
"were-sorry-youve-been-experiencing": "We're sorry you've been experiencing problems, If you don't see your issue below, please contact our Support team and we'll help you out!",