-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapp_en.arb
More file actions
2417 lines (2416 loc) · 155 KB
/
Copy pathapp_en.arb
File metadata and controls
2417 lines (2416 loc) · 155 KB
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
{
"@@locale": "en",
"account_selfCarePasswordExpired_message": "Your self-care password has expired. Please update it using your self-care.\nUntil the password is changed, access to the service will be limited.",
"@account_selfCarePasswordExpired_message": {
"description": "Shown when a web self-care password is expired. By default, such passwords may be created in an expired state or set to expire after a period of time. The user must log in to the self-care portal and set a new password. Until refreshed, access to related services is restricted."
},
"agoTicker_daysAgo": "{days, plural, zero{} one{{days} day ago} other{{days} days ago}}",
"@agoTicker_daysAgo": {
"description": "Elapsed time relative to now, shown in days.",
"placeholders": {
"days": {
"type": "int"
}
}
},
"agoTicker_hoursAgo": "{hours, plural, zero{} one{{hours} hour ago} other{{hours} hours ago}}",
"@agoTicker_hoursAgo": {
"description": "Elapsed time relative to now, shown in hours.",
"placeholders": {
"hours": {
"type": "int"
}
}
},
"agoTicker_minutesAgo": "{minutes, plural, zero{} one{{minutes} minute ago} other{{minutes} minutes ago}}",
"@agoTicker_minutesAgo": {
"description": "Elapsed time relative to now, shown in minutes.",
"placeholders": {
"minutes": {
"type": "int"
}
}
},
"agoTicker_secondsAgo": "{seconds, plural, zero{Just now} one{{seconds} second ago} other{{seconds} seconds ago}}",
"@agoTicker_secondsAgo": {
"description": "Elapsed time relative to now, shown in seconds.",
"placeholders": {
"seconds": {
"type": "num",
"format": "decimalPattern"
}
}
},
"alertDialogActions_no": "No",
"@alertDialogActions_no": {},
"alertDialogActions_ok": "Ok",
"@alertDialogActions_ok": {},
"alertDialogActions_yes": "Yes",
"@alertDialogActions_yes": {},
"autoprovision_errorSnackBar_invalidToken": "The autoconfiguration credentials were rejected by the server. Please request a new configuration link",
"@autoprovision_errorSnackBar_invalidToken": {
"description": "Shown when a user opens an autoprovisioning link that contains an invalid or expired token. The server rejects the credentials and the user must request a new configuration link."
},
"autoprovision_ReloginDialog_confirm": "Confirm",
"@autoprovision_ReloginDialog_confirm": {},
"autoprovision_ReloginDialog_decline": "Decline",
"@autoprovision_ReloginDialog_decline": {},
"autoprovision_ReloginDialog_text": "Do you want to use the new authentication credentials provided in the link? You will be logged out from the current session.",
"@autoprovision_ReloginDialog_text": {},
"autoprovision_ReloginDialog_title": "Relogin Confirmation",
"@autoprovision_ReloginDialog_title": {},
"autoprovision_successSnackBar_used": "Successfully retrieved your settings, your app is ready to use",
"@autoprovision_successSnackBar_used": {},
"callTileActions_contact": "Contact",
"@callTileActions_contact": {
"description": "Label of the expanded call tile action that opens the contact details screen."
},
"callTileActions_history": "History",
"@callTileActions_history": {
"description": "Label of the expanded call tile action that opens the call history for the number."
},
"callTileActions_message": "Message",
"@callTileActions_message": {
"description": "Label of the expanded call tile action that opens a chat with the contact."
},
"callTileActions_more": "More",
"@callTileActions_more": {
"description": "Label of the expanded call tile action that opens the full actions menu."
},
"call_CallActionsTooltip_accept": "Accept",
"@call_CallActionsTooltip_accept": {},
"call_CallActionsTooltip_accept_inviteToAttendedTransfer": "Accept transfer",
"@call_CallActionsTooltip_accept_inviteToAttendedTransfer": {},
"call_CallActionsTooltip_attended_transfer": "Attended transfer",
"@call_CallActionsTooltip_attended_transfer": {},
"call_CallActionsTooltip_changeAudioDevice": "Change audio device",
"@call_CallActionsTooltip_changeAudioDevice": {},
"call_CallActionsTooltip_decline_inviteToAttendedTransfer": "Decline transfer",
"@call_CallActionsTooltip_decline_inviteToAttendedTransfer": {},
"call_CallActionsTooltip_device_bluetooth": "Bluetooth",
"@call_CallActionsTooltip_device_bluetooth": {},
"call_CallActionsTooltip_device_earpiece": "Earpiece",
"@call_CallActionsTooltip_device_earpiece": {},
"call_CallActionsTooltip_device_speaker": "Speaker",
"@call_CallActionsTooltip_device_speaker": {},
"call_CallActionsTooltip_device_streaming": "Streaming",
"@call_CallActionsTooltip_device_streaming": {},
"call_CallActionsTooltip_device_unknown": "Unknown device",
"@call_CallActionsTooltip_device_unknown": {},
"call_CallActionsTooltip_device_wiredHeadset": "Wired Headset",
"@call_CallActionsTooltip_device_wiredHeadset": {},
"call_CallActionsTooltip_disableCamera": "Disable camera",
"@call_CallActionsTooltip_disableCamera": {},
"call_CallActionsTooltip_disableSpeaker": "Disable speakerphone",
"@call_CallActionsTooltip_disableSpeaker": {},
"call_CallActionsTooltip_enableCamera": "Enable camera",
"@call_CallActionsTooltip_enableCamera": {},
"call_CallActionsTooltip_cameraPermissionDenied": "Camera permission denied. Tap to open settings",
"@call_CallActionsTooltip_cameraPermissionDenied": {},
"call_CallActionsTooltip_enableSpeaker": "Enable speakerphone",
"@call_CallActionsTooltip_enableSpeaker": {},
"call_CallActionsTooltip_hangup": "Hangup",
"@call_CallActionsTooltip_hangup": {},
"call_CallActionsTooltip_hideKeypad": "Hide keypad",
"@call_CallActionsTooltip_hideKeypad": {},
"call_CallActionsTooltip_hold": "Hold call",
"@call_CallActionsTooltip_hold": {},
"call_CallActionsTooltip_mute": "Mute microphone",
"@call_CallActionsTooltip_mute": {},
"call_CallActionsTooltip_showKeypad": "Show keypad",
"@call_CallActionsTooltip_showKeypad": {},
"call_CallActionsTooltip_transfer": "Transfer",
"@call_CallActionsTooltip_transfer": {},
"call_CallActionsTooltip_transfer_choose": "Choose number",
"@call_CallActionsTooltip_transfer_choose": {},
"call_CallActionsTooltip_unattended_transfer": "Unattended transfer",
"@call_CallActionsTooltip_unattended_transfer": {},
"call_CallActionsTooltip_unhold": "Unhold call",
"@call_CallActionsTooltip_unhold": {},
"call_CallActionsTooltip_unmute": "Unmute microphone",
"@call_CallActionsTooltip_unmute": {},
"call_CallList_incoming": "Incoming",
"@call_CallList_incoming": {
"description": "Trailing label on a ringing incoming row in the call list."
},
"call_CallList_outgoing": "Outgoing",
"@call_CallList_outgoing": {
"description": "Trailing label on a ringing outgoing row in the call list."
},
"call_CallList_header": "{count, plural, one{{count} call - tap to choose} other{{count} calls - tap to choose}}",
"@call_CallList_header": {
"description": "Header above the call list on the call screen when more than one call is in progress.",
"placeholders": {
"count": {
"type": "int"
}
}
},
"call_CallList_statusOnCall": "On call",
"@call_CallList_statusOnCall": {
"description": "Status badge in the call list for an answered, not held call."
},
"call_FocusedActionHint_actingOn": "Acting on: {name}",
"@call_FocusedActionHint_actingOn": {
"description": "Hint above the call action buttons naming the focused call the actions apply to.",
"placeholders": {
"name": {
"type": "String"
}
}
},
"call_FocusedActionHint_willBeEnded": "{name} will be ended",
"@call_FocusedActionHint_willBeEnded": {
"description": "Side-effect line under the acting-on hint: the named call will be ended on answer.",
"placeholders": {
"name": {
"type": "String"
}
}
},
"call_FocusedActionHint_willBeHeld": "{name} will be put on hold",
"@call_FocusedActionHint_willBeHeld": {
"description": "Side-effect line under the acting-on hint: the named call will be put on hold on answer.",
"placeholders": {
"name": {
"type": "String"
}
}
},
"call_ToolbarStatus_connecting": "Connecting...",
"@call_ToolbarStatus_connecting": {
"description": "Toolbar status line while the very first signaling connection is being established (turns into Reconnecting once a connection has existed)."
},
"call_ToolbarStatus_reconnecting": "Reconnecting...",
"@call_ToolbarStatus_reconnecting": {
"description": "Suffix on the call screen toolbar status line while the signaling connection is being re-established."
},
"call_description_held": "On hold",
"@call_description_held": {},
"call_description_incoming": "Incoming call",
"@call_description_incoming": {},
"call_description_inviteToAttendedTransfer": "You've been invited to join an attended transfer call",
"@call_description_inviteToAttendedTransfer": {},
"call_description_outgoing": "Outgoing call",
"@call_description_outgoing": {},
"call_description_requestToAttendedTransfer": "Transfer request",
"@call_description_requestToAttendedTransfer": {},
"call_description_transferProcessing": "Transfer processing",
"@call_description_transferProcessing": {},
"call_errorRegisteringSelfManagedPhoneAccount": "There was a problem registering the self-managed phone account.",
"@call_errorRegisteringSelfManagedPhoneAccount": {
"description": "Shown when the app fails to register a self-managed phone account with the system."
},
"call_FailureAcknowledgeDialog_title": "Failure",
"@call_FailureAcknowledgeDialog_title": {},
"callProcessingStatus_answering": "Answering the call, please hold on…",
"@callProcessingStatus_answering": {},
"callProcessingStatus_disconnecting": "Disconnecting the call, please hold on…",
"@callProcessingStatus_disconnecting": {},
"callProcessingStatus_init_media": "Initializing media devices",
"@callProcessingStatus_init_media": {},
"callProcessingStatus_invite": "Establishing the SIP session",
"@callProcessingStatus_invite": {},
"callProcessingStatus_preparing": "Preparing",
"@callProcessingStatus_preparing": {},
"callProcessingStatus_ringing": "Ringing",
"@callProcessingStatus_ringing": {},
"callProcessingStatus_routing": "Routing the call",
"@callProcessingStatus_routing": {},
"callProcessingStatus_signaling_connecting": "Connecting to the remote server",
"@callProcessingStatus_signaling_connecting": {},
"iceConnectionIssue_iceFail": "Media connection failed. Check your network",
"@iceConnectionIssue_iceFail": {},
"iceConnectionIssue_iceFailNoIcePath": "Media connection failed. Try switching to another network",
"@iceConnectionIssue_iceFailNoIcePath": {},
"iceConnectionIssue_iceFailNoIcePathViaVpn": "VPN may be blocking the call. Try disabling it",
"@iceConnectionIssue_iceFailNoIcePathViaVpn": {},
"callNetworkQuality_yourAudioWeak": "Your audio is weak",
"@callNetworkQuality_yourAudioWeak": {},
"callNetworkQuality_yourVideoWeak": "Your video is weak",
"@callNetworkQuality_yourVideoWeak": {},
"callNetworkQuality_theirAudioWeak": "Their audio is weak",
"@callNetworkQuality_theirAudioWeak": {},
"callNetworkQuality_theirVideoWeak": "Their video is weak",
"@callNetworkQuality_theirVideoWeak": {},
"callPullBadge_dialogTitle": "Pullable Calls",
"@callPullBadge_dialogTitle": {},
"callPullBadge_pickupButtonTitle": "Pick up",
"@callPullBadge_pickupButtonTitle": {},
"call_settings_additional_options": "Additional options",
"@call_settings_additional_options": {},
"callStatus_appUnregistered": "Unregistered",
"@callStatus_appUnregistered": {
"description": "Shown when the application is not registered with the signaling/core servers (for example due to network connectivity problems, session/authentication issues, or server-side unavailability). Suggest the user check their internet connection, retry the action, toggle the app's online status in settings, restart the app, and contact their administrator or support if the problem persists."
},
"callStatus_connectError": "Connection error",
"@callStatus_connectError": {
"description": "Shown when the app cannot establish or maintain a connection to the signaling/core servers (for example network connectivity problems, server downtime, or transient transport errors). Suggest the user check their internet connection, retry the action, toggle the app's online status in settings, restart the app, and contact their administrator or support if the problem persists."
},
"callStatus_connectIssue": "Connection issue",
"@callStatus_connectIssue": {
"description": "Shown when the app detects an intermittent or degraded connection to the signaling/core servers (for example transient network issues, high latency, or packet loss). Suggest the user check their internet connection, retry the action, toggle the app's online status in settings, restart the app, and contact their administrator or support if the problem persists."
},
"callStatus_connectivityNone": "No internet connection",
"@callStatus_connectivityNone": {
"description": "Shown when the device has no internet connectivity. Suggest the user check Wi‑Fi or mobile data, try switching networks or toggling airplane mode, restart the app or device, and contact their administrator or support if the problem persists."
},
"callStatus_inProgress": "Connection in progress",
"@callStatus_inProgress": {},
"callStatus_ready": "Connection established",
"@callStatus_ready": {},
"call_SystemErrorDialog_description": "To resume making calls, a phone restart is required. This will resolve a temporary system error.",
"@call_SystemErrorDialog_description": {},
"call_SystemErrorDialog_title": "System Error",
"@call_SystemErrorDialog_title": {},
"call_ThumbnailAvatar_currentlyNoActiveCall": "Currently, there is no active call",
"@call_ThumbnailAvatar_currentlyNoActiveCall": {},
"call_videoBackground_actionLabel_disableBlur": "Disable Blur",
"@call_videoBackground_actionLabel_disableBlur": {
"description": "Button label shown when the video background is currently blurred. Clicking this will turn off the blur effect."
},
"call_videoBackground_actionLabel_enableBlur": "Enable Blur",
"@call_videoBackground_actionLabel_enableBlur": {
"description": "Button label shown when the video background is normal (no blur). Clicking this will turn on the blur effect."
},
"call_videoView_actionLabel_cover": "Cover",
"@call_videoView_actionLabel_cover": {
"description": "Button label to switch the video view mode to 'Cover' (fills the entire area, potentially cropping edges). Shown when the video is currently in 'Fit' mode."
},
"call_videoView_actionLabel_fit": "Fit",
"@call_videoView_actionLabel_fit": {
"description": "Button label to switch the video view mode to 'Fit' (shows the full video without cropping, potentially adding black bars). Shown when the video is currently in 'Cover' mode."
},
"cdrs_noMissedCalls_message": "No missed calls",
"@cdrs_noMissedCalls_message": {},
"cdrs_noRecentCalls_message": "No recent calls",
"@cdrs_noRecentCalls_message": {},
"common_noInternetConnection_message": "It seems you are not connected to the internet. Please check your connection and try again.",
"@common_noInternetConnection_message": {},
"common_noInternetConnection_retryButton": "Try Again",
"@common_noInternetConnection_retryButton": {},
"common_noInternetConnection_title": "No Internet Connection",
"@common_noInternetConnection_title": {},
"common_problemWithLoadingPage": "There was an issue loading the page.",
"@common_problemWithLoadingPage": {},
"contacts_agreement_button_text": "Continue",
"@contacts_agreement_button_text": {},
"contacts_agreement_checkbox_text": "I agree to allow the app to access my contacts to enhance my user experience.",
"@contacts_agreement_checkbox_text": {},
"contacts_agreement_description": "This app requires access to your contact list to display your contacts in the app's Contacts tab. \n\nThe contact data is temporarily stored locally on your device to enable features like making calls directly from the app. \n\nThis data is not collected, transmitted, or shared outside the app.",
"@contacts_agreement_description": {},
"contacts_agreement_title": "Data collection",
"@contacts_agreement_title": {},
"contacts_ExternalTabButton_refresh": "Refresh",
"@contacts_ExternalTabButton_refresh": {},
"contacts_ExternalTabText_empty": "No contacts",
"@contacts_ExternalTabText_empty": {},
"contacts_ExternalTabText_emptyOnSearching": "No contacts found",
"@contacts_ExternalTabText_emptyOnSearching": {},
"contacts_ExternalTabText_failure": "Failed to get cloud PBX contacts",
"@contacts_ExternalTabText_failure": {
"description": "Shown when loading cloud PBX contacts fails (e.g. invalid/expired token, no network connection, or other API errors)."
},
"contacts_LocalTabButton_contactsAgreement": "Open Settings",
"@contacts_LocalTabButton_contactsAgreement": {},
"contacts_LocalTabButton_openAppSettings": "Grant access to your phone contacts",
"@contacts_LocalTabButton_openAppSettings": {},
"contacts_LocalTabButton_refresh": "Refresh",
"@contacts_LocalTabButton_refresh": {},
"contacts_LocalTabText_contactsAgreementFailure": "To sync your local contacts, you must accept the agreement in Settings.",
"@contacts_LocalTabText_contactsAgreementFailure": {},
"contacts_LocalTabText_empty": "No contacts",
"@contacts_LocalTabText_empty": {},
"contacts_LocalTabText_emptyOnSearching": "No contacts found",
"@contacts_LocalTabText_emptyOnSearching": {},
"contacts_LocalTabText_failure": "Failed to get your phone contacts",
"@contacts_LocalTabText_failure": {
"description": "Shown when the app cannot load contacts from the device. Common reasons: user denied contacts permission, the feature is disabled or required agreement not accepted, no network (if a refresh requires it), or a general sync/read error from the OS or storage."
},
"contacts_LocalTabText_permissionFailure": "There are no permissions to get your phone contacts",
"@contacts_LocalTabText_permissionFailure": {
"description": "Shown when the app cannot access local phone contacts because the user has not granted the required permission (e.g. Contacts permission denied in system settings)."
},
"contactsSourceExternal": "Cloud PBX",
"@contactsSourceExternal": {},
"contactsSourceLocal": "Your phone",
"@contactsSourceLocal": {},
"contacts_Text_blingTransferInitiated": "Performing blind transfer",
"@contacts_Text_blingTransferInitiated": {},
"contacts_DialogsInfoView_title": "Calls information (BLF):",
"@contacts_DialogsInfoView_title": {},
"contacts_ContactTile_inCall": "In call: {destination}",
"@contacts_ContactTile_inCall": {
"placeholders": {
"destination": {}
}
},
"contacts_ContactScreen_options": "Options:",
"@contacts_ContactScreen_options": {},
"contacts_ContactScreen_presenceViaSip": "Subscribe to user status via SIP (Presence)",
"@contacts_ContactScreen_presenceViaSip": {},
"contacts_ContactScreen_presenceViaSip_tooltip": "In addition to direct(app to app) data exchange, subscribe via SIP-Presence feature allows gathering presence information from other user agents (desktop phones, standalone softphones, etc.). Recommended to enable only if your contact prefers to use legacy user agents and you want to see their presence status across all devices.",
"@contacts_ContactScreen_presenceViaSip_tooltip": {},
"contacts_ContactScreen_dialogsViaSipBlf": "Subscribe to active calls via SIP (BLF/Dialogs)",
"@contacts_ContactScreen_dialogsViaSipBlf": {},
"contacts_ContactScreen_dialogsViaSipBlf_tooltip": "In addition to direct(app to app) data exchange, subscribe via SIP-Dialogs feature allows gathering call state information from other user agents (desktop phones, standalone softphones, etc.). Recommended to enable only if your contact prefers to use legacy user agents and you want to see their call status across all devices.",
"@contacts_ContactScreen_dialogsViaSipBlf_tooltip": {},
"copyToClipboard_floatingSnackBar": "Text copied",
"@copyToClipboard_floatingSnackBar": {},
"copyToClipboard_popupMenuItem": "Copy to clipboard",
"@copyToClipboard_popupMenuItem": {},
"default_CannotRemoveOwnerMessagingSocketException": "Cannot remove owner",
"@default_CannotRemoveOwnerMessagingSocketException": {
"description": "Shown when a user tries to remove the owner from a chat or group. The system does not allow removing the owner."
},
"default_ChatMemberNotFoundMessagingSocketException": "Chat member not found",
"@default_ChatMemberNotFoundMessagingSocketException": {
"description": "Shown when an action is attempted on a chat member who does not exist in the current chat or group."
},
"default_ChatNotFoundMessagingSocketException": "Chat not found",
"@default_ChatNotFoundMessagingSocketException": {
"description": "Shown when an action is attempted on a chat that does not exist or has been deleted."
},
"default_ClientExceptionError": "A HTTP client issue occurred",
"@default_ClientExceptionError": {
"description": "Shown when an HTTP client error occurs during a network request, such as connection failure, timeout, or unexpected server response."
},
"default_ErrorDetails": "Details",
"@default_ErrorDetails": {
"description": "Label for a section or field displaying detailed error information in error dialogs or screens."
},
"default_ErrorMessage": "Error message",
"@default_ErrorMessage": {
"description": "Label or heading for displaying a generic error message in dialogs, alerts, or error screens."
},
"default_ErrorPath": "Error path",
"@default_ErrorPath": {
"description": "Label for displaying the path associated with an error in error dialogs or screens."
},
"default_ErrorTransactionId": "Transaction ID",
"@default_ErrorTransactionId": {
"description": "Label for displaying the transaction ID associated with an error in error dialogs or screens."
},
"default_ForbiddenMessagingSocketException": "Forbidden request",
"@default_ForbiddenMessagingSocketException": {
"description": "Label for displaying a forbidden request error when a messaging socket operation is not permitted due to access restrictions or insufficient permissions."
},
"default_FormatExceptionError": "A response format issue occurred",
"@default_FormatExceptionError": {
"description": "Label for displaying an error when a response format issue occurs, such as invalid or unexpected data format in network responses."
},
"default_InternalErrorMessagingSocketException": "Internal server error",
"@default_InternalErrorMessagingSocketException": {
"description": "Label for displaying an internal server error when a messaging socket operation fails due to a server-side issue."
},
"default_InvalidChatTypeMessagingSocketException": "Invalid chat type",
"@default_InvalidChatTypeMessagingSocketException": {
"description": "Label for displaying an error when an invalid chat type is encountered during a messaging socket operation."
},
"default_JoinCrashedMessagingSocketException": "Error occurred while joining the conversation",
"@default_JoinCrashedMessagingSocketException": {
"description": "Label for displaying an error when a messaging socket operation fails while joining a conversation."
},
"default_MessagingSocketException": "An error occurred while processing the request",
"@default_MessagingSocketException": {
"description": "Label for displaying a generic error when a messaging socket operation fails for an unspecified reason."
},
"default_RequestFailureError": "A server failure occurred",
"@default_RequestFailureError": {
"description": "Label for displaying an error when a server failure occurs during a network request."
},
"default_SelfAuthorityAssignmentForbiddenMessagingSocketException": "Self authority assignment is forbidden",
"@default_SelfAuthorityAssignmentForbiddenMessagingSocketException": {
"description": "Label for displaying an error when a user attempts to assign authority to themselves in a chat or group, which is not permitted."
},
"default_SelfRemovalForbiddenMessagingSocketException": "Self removal is forbidden",
"@default_SelfRemovalForbiddenMessagingSocketException": {
"description": "Label for displaying an error when a user attempts to remove themselves from a chat or group, which is not permitted."
},
"default_SmsConversationNotFoundMessagingSocketException": "SMS conversation not found",
"@default_SmsConversationNotFoundMessagingSocketException": {
"description": "Label for displaying an error when an SMS conversation cannot be found, such as when the requested conversation does not exist or has been deleted."
},
"default_TimeoutExceptionError": "A server timeout occurred",
"@default_TimeoutExceptionError": {
"description": "Label for displaying an error when a server timeout occurs during a network request."
},
"default_TimeoutMessagingSocketException": "The request has timed out",
"@default_TimeoutMessagingSocketException": {
"description": "Label for displaying an error when a messaging socket request times out, indicating that the operation did not complete within the expected time frame."
},
"default_TlsExceptionError": "A secure network protocol (TLS/SSL) issue occurred",
"@default_TlsExceptionError": {
"description": "Label for displaying an error when a secure network protocol (TLS/SSL) issue occurs during a network request."
},
"default_TypeErrorError": "A response issue occurred",
"@default_TypeErrorError": {
"description": "Label for displaying an error when a type issue occurs in a response, such as receiving unexpected or mismatched data types during a network request."
},
"default_UnauthorizedMessagingSocketException": "Unauthorized request",
"@default_UnauthorizedMessagingSocketException": {
"description": "Label for displaying an error when a messaging socket operation fails due to unauthorized access or insufficient permissions."
},
"default_UnauthorizedRequestFailureError": "An unauthorized request failure occurred",
"@default_UnauthorizedRequestFailureError": {
"description": "Displayed to users when a network request fails due to unauthorized access (e.g., missing/invalid credentials, insufficient permissions). Typically shown after login attempts or when accessing restricted features."
},
"default_UnknownExceptionError": "An unknown issue occurred: {error}",
"@default_UnknownExceptionError": {
"description": "Displayed to users when an unexpected error occurs that does not fit into predefined categories. The placeholder {error} can be used to provide additional context or details about the unknown issue.",
"placeholders": {
"error": {
"type": "String"
}
}
},
"default_UserAlreadyInChatMessagingSocketException": "User is already in chat",
"@default_UserAlreadyInChatMessagingSocketException": {
"description": "Shown in messaging screens when a user tries to join a chat but is already a member. Condition: join request for a chat where the user is already present."
},
"diagnostic_AppBar_title": "Diagnostic",
"@diagnostic_AppBar_title": {},
"diagnostic_battery_groupTitle": "Battery",
"@diagnostic_battery_groupTitle": {},
"diagnostic_batteryMode_optimized_description": "The app's background activity is managed by the system to save the battery. It may not work correctly with incoming calls triggered by push notifications.",
"@diagnostic_batteryMode_optimized_description": {},
"diagnostic_batteryMode_optimized_title": "Optimized",
"@diagnostic_batteryMode_optimized_title": {},
"diagnostic_batteryMode_restricted_description": "The app's background activity is heavily restricted to conserve the battery. Incoming calls may be missed.",
"@diagnostic_batteryMode_restricted_description": {},
"diagnostic_batteryMode_restricted_title": "Restricted",
"@diagnostic_batteryMode_restricted_title": {},
"diagnostic_batteryMode_unknown_description": "The battery mode status is unknown. The app might have unpredictable behavior.",
"@diagnostic_batteryMode_unknown_description": {
"description": "Shown in the Diagnostics > Battery section when the app cannot determine the current battery mode. Condition: system does not provide battery mode info, which may lead to unpredictable app behavior."
},
"diagnostic_batteryMode_unknown_title": "Unknown",
"@diagnostic_batteryMode_unknown_title": {},
"diagnostic_batteryMode_unrestricted_description": "The app has full access to run in the background without restrictions.",
"@diagnostic_batteryMode_unrestricted_description": {},
"diagnostic_batteryMode_unrestricted_title": "Unrestricted",
"@diagnostic_batteryMode_unrestricted_title": {},
"diagnostic_battery_navigate_section": "Navigate to the Battery section",
"@diagnostic_battery_navigate_section": {},
"diagnostic_battery_tile_title": "Battery mode",
"@diagnostic_battery_tile_title": {},
"diagnostic_callingMode_groupTitle": "Calling mode",
"@diagnostic_callingMode_groupTitle": {},
"diagnostic_callingMode_tile_title": "Calling mode",
"@diagnostic_callingMode_tile_title": {},
"diagnostic_callingMode_standalone_title": "Limited call mode",
"@diagnostic_callingMode_standalone_title": {},
"diagnostic_callingMode_standalone_caption": "Standalone - delivery may be delayed",
"@diagnostic_callingMode_standalone_caption": {},
"diagnostic_callingMode_standalone_description": "This device does not support the system call framework (Telecom), so incoming calls use a limited background service. Calls may be delayed or missed when the system restricts background apps. Outgoing calls, hold and Bluetooth or wired headset selection are not available in this mode.",
"@diagnostic_callingMode_standalone_description": {},
"diagnostic_permission_camera_description": "This app requires permission to access the camera to make video calls.",
"@diagnostic_permission_camera_description": {},
"diagnostic_permission_camera_title": "Camera",
"@diagnostic_permission_camera_title": {},
"diagnostic_permission_contacts_description": "This app requires permission to access contacts to make calls within your address book.",
"@diagnostic_permission_contacts_description": {},
"diagnostic_permission_contacts_title": "Contacts",
"@diagnostic_permission_contacts_title": {},
"diagnosticPermissionDetails_button_managePermission": "Manage Permission",
"@diagnosticPermissionDetails_button_managePermission": {},
"diagnosticPermissionDetails_button_requestPermission": "Request Permission",
"@diagnosticPermissionDetails_button_requestPermission": {},
"diagnosticPermissionDetails_title_statusPermission": "Status permission",
"@diagnosticPermissionDetails_title_statusPermission": {},
"diagnostic_permission_microphone_description": "This app requires permission to access the microphone to make audio calls.",
"@diagnostic_permission_microphone_description": {},
"diagnostic_permission_microphone_title": "Microphone",
"@diagnostic_permission_microphone_title": {},
"diagnostic_permission_notification_description": "Enables the app to trigger incoming call.",
"@diagnostic_permission_notification_description": {},
"diagnostic_permission_notification_title": "Notification",
"@diagnostic_permission_notification_title": {},
"diagnostic_permissionStatus_denied": "Access Denied",
"@diagnostic_permissionStatus_denied": {},
"diagnostic_permissionStatus_granted": "Access Granted",
"@diagnostic_permissionStatus_granted": {},
"diagnostic_permissionStatus_limited": "Limited Access",
"@diagnostic_permissionStatus_limited": {},
"diagnostic_permissionStatus_permanentlyDenied": "Access Permanently Denied",
"@diagnostic_permissionStatus_permanentlyDenied": {},
"diagnostic_permissionStatus_provisional": "Provisional Access",
"@diagnostic_permissionStatus_provisional": {},
"diagnostic_permissionStatus_restricted": "Restricted Access",
"@diagnostic_permissionStatus_restricted": {},
"diagnosticPushDetails_configuration_title": "Push Notification service configuration",
"@diagnosticPushDetails_configuration_title": {},
"diagnosticPushDetails_errorMessage_intro": "Some steps to try:\n",
"@diagnosticPushDetails_errorMessage_intro": {},
"diagnosticPushDetails_errorMessage_step1": "1. Ensure your phone is connected to the internet.\n",
"@diagnosticPushDetails_errorMessage_step1": {},
"diagnosticPushDetails_errorMessage_step2": "2. If connected, check that your phone can access Google services by visiting a website.\n",
"@diagnosticPushDetails_errorMessage_step2": {},
"diagnosticPushDetails_errorMessage_step3": "3. Wait a few minutes and try again – Firebase messaging servers may be temporarily down.\n",
"@diagnosticPushDetails_errorMessage_step3": {},
"diagnosticPushDetails_errorMessage_step4": "4. Restart Google Play services to ensure they are functioning correctly.\n",
"@diagnosticPushDetails_errorMessage_step4": {},
"diagnosticPushDetails_errorMessage_step5": "5. Verify that Google Play services are installed on your device.\n",
"@diagnosticPushDetails_errorMessage_step5": {},
"diagnosticPushDetails_successMessage": "The notification service is successfully configured and ready for use to receive messages and handle incoming calls.",
"@diagnosticPushDetails_successMessage": {},
"diagnostic_pushTokenStatusType_progress": "In progress",
"@diagnostic_pushTokenStatusType_progress": {},
"diagnostic_pushTokenStatusType_success": "Service successfully configured",
"@diagnostic_pushTokenStatusType_success": {},
"diagnosticReportDialogAddNoteExpansionTileTitle": "Add a note (Optional)",
"@diagnosticReportDialogAddNoteExpansionTileTitle": {
"description": "Title for the expandable section where users can add manual comments."
},
"diagnosticReportDialogCancelButtonLabel": "Cancel",
"@diagnosticReportDialogCancelButtonLabel": {
"description": "Label for the button that closes the dialog without action."
},
"diagnosticReportDialogCommentTextFieldHintText": "Describe what happened...",
"@diagnosticReportDialogCommentTextFieldHintText": {
"description": "Placeholder hint text displayed inside the comment text field."
},
"diagnosticReportDialogContent": "This report contains technical details to help us identify connection issues.",
"@diagnosticReportDialogContent": {
"description": "The main body text explaining what the diagnostic report is for."
},
"diagnosticReportDialogIncludeSystemLogsSwitchTileSubtitle": "Requires extra permissions.",
"@diagnosticReportDialogIncludeSystemLogsSwitchTileSubtitle": {
"description": "Subtitle text under the system logs switch indicating permission requirements."
},
"diagnosticReportDialogIncludeSystemLogsSwitchTileTitle": "Include System Logs",
"@diagnosticReportDialogIncludeSystemLogsSwitchTileTitle": {
"description": "The label for the switch toggle that allows the user to attach system logs."
},
"diagnosticReportDialogSendReportButtonLabel": "Send Report",
"@diagnosticReportDialogSendReportButtonLabel": {
"description": "Label for the button that submits the diagnostic report."
},
"diagnosticReportDialogTitle": "Send Diagnostic Report",
"@diagnosticReportDialogTitle": {
"description": "The title shown at the top of the diagnostic report dialog."
},
"diagnosticScreen_contacts_agreement_description": "Allow the app to access my contacts to enhance my user experience.",
"@diagnosticScreen_contacts_agreement_description": {},
"diagnosticScreen_contacts_agreement_group_title": "Agreement",
"@diagnosticScreen_contacts_agreement_group_title": {},
"diagnosticScreen_contacts_agreement_title": "Contacts Agreement",
"@diagnosticScreen_contacts_agreement_title": {},
"diagnosticScreen_permissionsGroup_title": "Permissions",
"@diagnosticScreen_permissionsGroup_title": {},
"diagnosticScreen_pushNotificationService_title": "Push notification service",
"@diagnosticScreen_pushNotificationService_title": {},
"diagnostic_network_groupTitle": "Network",
"@diagnostic_network_groupTitle": {},
"diagnosticNetworkTest_status_offline": "Offline",
"@diagnosticNetworkTest_status_offline": {},
"diagnosticNetworkTest_status_reachable": "Reachable",
"@diagnosticNetworkTest_status_reachable": {},
"diagnosticNetworkTest_status_restricted": "Restricted",
"@diagnosticNetworkTest_status_restricted": {},
"diagnosticNetworkTest_status_checking": "Checking…",
"@diagnosticNetworkTest_status_checking": {},
"diagnosticNetworkTest_status_unreachable": "Unreachable",
"@diagnosticNetworkTest_status_unreachable": {},
"diagnosticNetworkTestItem_subtitle_noNetwork": "No network connection",
"@diagnosticNetworkTestItem_subtitle_noNetwork": {},
"diagnosticNetworkTestItem_subtitle_publicIps": "Public: {ips}",
"@diagnosticNetworkTestItem_subtitle_publicIps": {
"placeholders": {
"ips": {"type": "String"}
}
},
"diagnosticNetworkTestItem_subtitle_stunBlocked": "STUN blocked · relay available",
"@diagnosticNetworkTestItem_subtitle_stunBlocked": {},
"diagnosticNetworkTestItem_subtitle_stunUnreachable": "STUN unreachable · local only",
"@diagnosticNetworkTestItem_subtitle_stunUnreachable": {},
"diagnosticNetworkTestItem_subtitle_noCandidates": "No ICE candidates gathered",
"@diagnosticNetworkTestItem_subtitle_noCandidates": {},
"diagnosticNetworkTestItem_network_wifi": "WiFi",
"@diagnosticNetworkTestItem_network_wifi": {},
"diagnosticNetworkTestItem_network_mobile": "Mobile",
"@diagnosticNetworkTestItem_network_mobile": {},
"diagnosticNetworkTestItem_network_ethernet": "Ethernet",
"@diagnosticNetworkTestItem_network_ethernet": {},
"diagnosticNetworkTestItem_network_vpn": "VPN",
"@diagnosticNetworkTestItem_network_vpn": {},
"diagnosticNetworkTestDetails_title": "Network reachability",
"@diagnosticNetworkTestDetails_title": {},
"diagnosticNetworkTestDetails_description": "Checks if your device can make and receive calls over the internet by probing network connectivity.\nServer-reflexive (srflx) candidates confirm a public IP is reachable via STUN. Relay candidates mean direct access is blocked and a TURN server is required. Host-only means STUN is unreachable and only local connections are possible.",
"@diagnosticNetworkTestDetails_description": {},
"diagnosticNetworkTestDetails_status": "Status",
"@diagnosticNetworkTestDetails_status": {},
"diagnosticNetworkTestDetails_candidates": "Candidates",
"@diagnosticNetworkTestDetails_candidates": {},
"diagnosticNetworkTestDetails_noNetwork": "No network connection",
"@diagnosticNetworkTestDetails_noNetwork": {},
"diagnosticNetworkTestDetails_noCandidates": "No ICE candidates gathered",
"@diagnosticNetworkTestDetails_noCandidates": {},
"favorites_BodyCenter_empty": "Currently, you have no favorite numbers.\nAdd favorites from Contacts using the star icon",
"@favorites_BodyCenter_empty": {},
"favorites_DeleteConfirmDialog_content": "Are you sure you want to delete the current favorite number?",
"@favorites_DeleteConfirmDialog_content": {},
"favorites_DeleteConfirmDialog_title": "Confirm deleting",
"@favorites_DeleteConfirmDialog_title": {},
"favorites_SnackBar_deleted": "{name} deleted",
"@favorites_SnackBar_deleted": {
"placeholders": {
"name": {
"type": "String"
}
}
},
"favorites_Text_blingTransferInitiated": "Performing blind transfer",
"@favorites_Text_blingTransferInitiated": {},
"formatPhone": "{style, select, full{{main} (ext: {ext})} simple{{main}} only_ext{ext: {ext}} empty{No phone number} other{{main}}}",
"@formatPhone": {
"description": "Formats phone number based on presence of main number and extension, covering four scenarios: both, main only, extension only, and neither.",
"placeholders": {
"style": {
"type": "String",
"example": "full"
},
"main": {
"type": "String",
"example": "+15551234567"
},
"ext": {
"type": "String",
"example": "101"
}
}
},
"locale_default": "Default",
"@locale_default": {},
"locale_en": "English",
"@locale_en": {},
"locale_it": "Italian",
"@locale_it": {},
"locale_uk": "Ukrainian",
"@locale_uk": {},
"login_Button_coreUrlAssignProceed": "Proceed",
"@login_Button_coreUrlAssignProceed": {},
"login_Button_otpSigninRequestProceed": "Proceed",
"@login_Button_otpSigninRequestProceed": {},
"login_Button_otpSigninVerifyProceed": "Verify",
"@login_Button_otpSigninVerifyProceed": {},
"login_Button_otpSigninVerifyRepeat": "Resend the code",
"@login_Button_otpSigninVerifyRepeat": {},
"login_Button_otpSigninVerifyRepeatInterval": "Resend the code ({seconds} s)",
"@login_Button_otpSigninVerifyRepeatInterval": {
"placeholders": {
"seconds": {
"type": "int"
}
}
},
"login_Button_passwordSigninProceed": "Proceed",
"@login_Button_passwordSigninProceed": {},
"login_Button_signIn": "Sign in",
"@login_Button_signIn": {},
"login_Button_signupRequestProceed": "Proceed",
"@login_Button_signupRequestProceed": {},
"login_Button_signUpToDemoInstance": "Sign up / sign in",
"@login_Button_signUpToDemoInstance": {
"description": "Button that allows the user to sign up or sign in to a demo environment. Note: for non-demo installations, use the 'loginType_signup' key instead."
},
"login_Button_signupVerifyProceed": "Verify",
"@login_Button_signupVerifyProceed": {},
"login_Button_signupVerifyRepeat": "Resend the code",
"@login_Button_signupVerifyRepeat": {},
"login_Button_signupVerifyRepeatInterval": "Resend the code ({seconds} s)",
"@login_Button_signupVerifyRepeatInterval": {
"placeholders": {
"seconds": {
"type": "int"
}
}
},
"login_ButtonTooltip_signInToYourInstance": "Sign in to your WebTrit Cloud Backend",
"@login_ButtonTooltip_signInToYourInstance": {},
"login_CoreVersionUnsupportedExceptionError": "An incompatible instance version provided, please contact the administrator of your system (actual: {actual}, supported: {supportedConstraint})",
"@login_CoreVersionUnsupportedExceptionError": {
"description": "Shown during login when the app detects that the backend instance version is incompatible. Context: user tries to sign in. Condition: provided backend version does not match the supported version range (actual: {actual}, supported: {supportedConstraint}).",
"placeholders": {
"actual": {
"type": "String"
},
"supportedConstraint": {
"type": "String"
}
}
},
"login_RequestFailureEmptyEmailError": "Cannot send the verification code",
"@login_RequestFailureEmptyEmailError": {
"description": "Shown during login or signup when the user tries to request a verification code but has not entered an email address. Condition: email field is empty."
},
"login_RequestFailureIdentifierIsNotValid": "The identifier is invalid or does not exist",
"@login_RequestFailureIdentifierIsNotValid": {
"description": "Shown during login or signup when the user provides an identifier (such as email or phone number) that is invalid or does not exist in the system. Condition: identifier is not recognized or fails validation."
},
"login_RequestFailureIncorrectOtpCodeError": "Incorrect verification code",
"@login_RequestFailureIncorrectOtpCodeError": {
"description": "Shown during login or signup when the user enters an incorrect one-time password (OTP) verification code. Condition: the provided OTP does not match the expected value."
},
"login_RequestFailureOtpAlreadyVerifiedError": "Verification already verified",
"@login_RequestFailureOtpAlreadyVerifiedError": {
"description": "Shown during login or signup when the user tries to verify an OTP code that has already been successfully verified. Condition: the OTP verification process was already completed for this code."
},
"login_RequestFailureOtpExpiredError": "Verification expired",
"@login_RequestFailureOtpExpiredError": {
"description": "Shown during login or signup when the user tries to verify an OTP code that has expired. Condition: the OTP verification code is no longer valid due to time expiration."
},
"login_RequestFailureOtpNotFoundError": "Verification not found",
"@login_RequestFailureOtpNotFoundError": {
"description": "Shown during login or signup when the user tries to verify an OTP code that cannot be found. Condition: the provided OTP does not exist or is not recognized by the system."
},
"login_RequestFailureOtpVerificationAttemptsExceededError": "Verification attempts exceeded",
"@login_RequestFailureOtpVerificationAttemptsExceededError": {
"description": "Shown during login or signup when the user has exceeded the maximum number of allowed OTP verification attempts. Condition: too many incorrect OTP entries, further attempts are blocked for security reasons."
},
"login_RequestFailureParametersApplyIssueError": "Provided data can't be processed",
"@login_RequestFailureParametersApplyIssueError": {
"description": "Shown during login or signup when the provided data cannot be processed by the server. Condition: input parameters are invalid, incomplete, or do not meet the required format for the operation."
},
"login_RequestFailurePhoneNotFoundError": "Phone number not found",
"@login_RequestFailurePhoneNotFoundError": {
"description": "Shown during login or signup when the user provides a phone number that cannot be found in the system. Condition: the entered phone number does not exist or is not recognized by the backend."
},
"login_RequestFailureIncorrectCredentialsError": "Incorrect username or password",
"@login_RequestFailureIncorrectCredentialsError": {
"description": "Shown during password login when the provided username or password is incorrect. Condition: the backend returns incorrect_credentials in response to POST /session."
},
"login_RequestFailureUserNotFoundError": "User not found",
"@login_RequestFailureUserNotFoundError": {
"description": "Shown during password login when the provided user reference does not exist. Condition: the backend returns user_not_found in response to POST /session."
},
"login_RequestFailureUnconfiguredBundleIdError": "The app is not supported by your WebTrit Cloud Backend",
"@login_RequestFailureUnconfiguredBundleIdError": {
"description": "Shown during login or signup when the app's bundle identifier is not configured or supported by the WebTrit Cloud Backend. Condition: the backend does not recognize the app, typically due to missing or incorrect bundle ID setup."
},
"login_SupportedLoginTypeMissedExceptionError": "The current WebTrit Cloud Backend does not support any login types compatible with this app",
"@login_SupportedLoginTypeMissedExceptionError": {
"description": "Shown during login or signup when the WebTrit Cloud Backend does not support any login types compatible with the app. Condition: the backend instance is missing required configuration for supported authentication methods."
},
"login_Text_coreUrlAssignPostDescription": "If you do not yet have your own WebTrit Cloud Backend - contact sales team {email}.",
"@login_Text_coreUrlAssignPostDescription": {},
"login_Text_coreUrlAssignPreDescription": "In order to make calls via your own VoIP system please enter the URL of WebTrit Cloud Backend (as it was provided to you by your account manager) below.",
"@login_Text_coreUrlAssignPreDescription": {},
"login_TextFieldLabelText_coreUrlAssign": "Enter your WebTrit Cloud Backend URL",
"@login_TextFieldLabelText_coreUrlAssign": {},
"login_TextFieldLabelText_otpSigninCode": "Enter the verification code",
"@login_TextFieldLabelText_otpSigninCode": {},
"login_TextFieldLabelText_otpSigninUserRef": "Enter your phone number or email",
"@login_TextFieldLabelText_otpSigninUserRef": {},
"login_TextFieldLabelText_otpSigninUserRefPhone": "Enter your phone number",
"@login_TextFieldLabelText_otpSigninUserRefPhone": {},
"login_TextFieldLabelText_otpSigninUserRefEmail": "Enter your email",
"@login_TextFieldLabelText_otpSigninUserRefEmail": {},
"login_TextFieldLabelText_passwordSigninPassword": "Enter your password",
"@login_TextFieldLabelText_passwordSigninPassword": {},
"login_TextFieldLabelText_passwordSigninUserRef": "Enter your phone number or email",
"@login_TextFieldLabelText_passwordSigninUserRef": {},
"login_TextFieldLabelText_signupCode": "Enter the verification code",
"@login_TextFieldLabelText_signupCode": {},
"login_TextFieldLabelText_signupEmail": "Enter your email",
"@login_TextFieldLabelText_signupEmail": {},
"login_Text_otpSigninRequestPostDescription": "",
"@login_Text_otpSigninRequestPostDescription": {},
"login_Text_otpSigninRequestPreDescription": "",
"@login_Text_otpSigninRequestPreDescription": {},
"login_Text_otpSigninVerifyPostDescriptionFromEmail": "If you do not see an email with the verification code from {email} in your inbox, please check your spam folder.",
"@login_Text_otpSigninVerifyPostDescriptionFromEmail": {
"placeholders": {
"email": {
"type": "String"
}
}
},
"login_Text_otpSigninVerifyPostDescriptionGeneral": "If you do not see an email with the verification code in your inbox, please check your spam folder.",
"@login_Text_otpSigninVerifyPostDescriptionGeneral": {},
"login_Text_otpSigninVerifyPreDescriptionUserRef": "A one-time verification code was sent to the email assigned to provided phone number or email.",
"@login_Text_otpSigninVerifyPreDescriptionUserRef": {
"placeholders": {
"userRef": {
"type": "String"
}
}
},
"login_Text_passwordSigninPostDescription": "",
"@login_Text_passwordSigninPostDescription": {},
"login_Text_passwordSigninPreDescription": "",
"@login_Text_passwordSigninPreDescription": {},
"login_Text_signupRequestPostDescription": "",
"@login_Text_signupRequestPostDescription": {},
"login_Text_signupRequestPostDescriptionDemo": "If you do not have an account yet, it will be automatically created for you",
"@login_Text_signupRequestPostDescriptionDemo": {},
"login_Text_signupRequestPreDescription": "",
"@login_Text_signupRequestPreDescription": {},
"login_Text_signupRequestPreDescriptionDemo": "",
"@login_Text_signupRequestPreDescriptionDemo": {},
"login_Text_signupVerifyPostDescriptionFromEmail": "If you do not see an email with the verification code from {email} in your inbox, please check your spam folder.",
"@login_Text_signupVerifyPostDescriptionFromEmail": {
"placeholders": {
"email": {
"type": "String"
}
}
},
"login_Text_signupVerifyPostDescriptionGeneral": "If you do not see an email with the verification code in your inbox, please check your spam folder.",
"@login_Text_signupVerifyPostDescriptionGeneral": {},
"login_Text_signupVerifyPreDescriptionEmail": "A one-time verification code was sent to {email}.",
"@login_Text_signupVerifyPreDescriptionEmail": {
"placeholders": {
"email": {
"type": "String"
}
}
},
"loginType_otpSignin": "OTP sign in",
"@loginType_otpSignin": {},
"loginType_passwordSignin": "Password sign in",
"@loginType_passwordSignin": {},
"loginType_signup": "Sign up",
"@loginType_signup": {},
"login_validationCoreUrlError": "Please enter a valid URL",
"@login_validationCoreUrlError": {
"description": "Shown when the user enters an invalid URL in the WebTrit Cloud Backend URL field during login or setup. Condition: the input does not match the required URL format."
},
"login_validationEmailError": "Please enter a valid email",
"@login_validationEmailError": {
"description": "Shown when the user enters an invalid email address in the email field during login or signup. Condition: the input does not match the required email format."
},
"login_validationPhoneError": "Please enter a valid phone number",
"@login_validationPhoneError": {
"description": "Shown when the user enters an invalid phone number in the phone number field during login or signup. Condition: the input does not match the required phone number format."
},
"login_validationUserRefError": "Please enter a valid phone number or email",
"@login_validationUserRefError": {
"description": "Shown when the user enters an invalid value in the phone number or email field during login or signup. Condition: the input does not match the required format for either phone number or email."
},
"logRecordsConsole_AppBarTitle": "Log Console",
"@logRecordsConsole_AppBarTitle": {},
"logRecordsConsole_Button_failureRefresh": "Refresh",
"@logRecordsConsole_Button_failureRefresh": {},
"logRecordsConsole_Text_failure": "An unexpected error occurred",
"@logRecordsConsole_Text_failure": {
"description": "Shown in the Log Console screen when an unexpected error occurs while loading or displaying log records."
},
"logRecordsConsole_Text_recordsCountHint": "Showing last {count, plural, one{{count} record} other{{count} records}}. Use Share to export the full log.",
"@logRecordsConsole_Text_recordsCountHint": {
"description": "Shown in the info dialog to inform the user that only the most recent records are displayed and the share button exports the complete log.",
"placeholders": {
"count": {
"type": "int"
}
}
},
"logRecordsConsole_Button_infoClose": "Got it",
"@logRecordsConsole_Button_infoClose": {},
"logRecordsConsole_PopupMenuItem_info": "Info",
"@logRecordsConsole_PopupMenuItem_info": {},
"logRecordsConsole_PopupMenuItem_clear": "Clear",
"@logRecordsConsole_PopupMenuItem_clear": {},
"main_BottomNavigationBarItemLabel_chats": "Chats",
"@main_BottomNavigationBarItemLabel_chats": {},
"main_BottomNavigationBarItemLabel_contacts": "Contacts",
"@main_BottomNavigationBarItemLabel_contacts": {},
"main_BottomNavigationBarItemLabel_favorites": "Favorites",
"@main_BottomNavigationBarItemLabel_favorites": {},
"main_BottomNavigationBarItemLabel_keypad": "Keypad",
"@main_BottomNavigationBarItemLabel_keypad": {},
"main_BottomNavigationBarItemLabel_recents": "Recents",
"@main_BottomNavigationBarItemLabel_recents": {},
"main_CompatibilityIssueDialogActions_logout": "Logout",
"@main_CompatibilityIssueDialogActions_logout": {},
"main_CompatibilityIssueDialogActions_update": "Update",
"@main_CompatibilityIssueDialogActions_update": {},
"main_CompatibilityIssueDialog_contentCoreVersionUnsupportedExceptionError": "Incompatible WebTrit Cloud Backend version, please contact the administrator of your system.\n\nInstance version:\n{actual}\n\nSupported version:\n{supportedConstraint}",
"@main_CompatibilityIssueDialog_contentCoreVersionUnsupportedExceptionError": {
"description": "Shown in the compatibility issue dialog when the app detects that the WebTrit Cloud Backend version is incompatible. Condition: the actual backend version does not match the supported version range. Placeholders: {actual} for the current instance version, {supportedConstraint} for the supported version range.",
"placeholders": {
"actual": {
"type": "String"
},
"supportedConstraint": {
"type": "String"
}
}
},
"main_CompatibilityIssueDialog_title": "Compatibility issue",
"@main_CompatibilityIssueDialog_title": {},
"messaging_ActionBtn_retry": "Retry",
"@messaging_ActionBtn_retry": {},
"messaging_ChooseContact_cancel": "Cancel",
"@messaging_ChooseContact_cancel": {},
"messaging_ChooseContact_empty": "No contacts found",
"@messaging_ChooseContact_empty": {},
"messaging_ChooseContact_title": "Choose contact:",
"@messaging_ChooseContact_title": {},
"messaging_ConfirmDialog_ask": "Are you sure?",
"@messaging_ConfirmDialog_ask": {},
"messaging_ConfirmDialog_cancel": "No",
"@messaging_ConfirmDialog_cancel": {},
"messaging_ConfirmDialog_confirm": "Yes",
"@messaging_ConfirmDialog_confirm": {},
"messaging_ConversationBuilders_back": "Back",
"@messaging_ConversationBuilders_back": {},
"messaging_ConversationBuilders_cancel": "Cancel",
"@messaging_ConversationBuilders_cancel": {},
"messaging_ConversationBuilders_contactExtension": "Ext: {extension}",
"@messaging_ConversationBuilders_contactExtension": {
"description": "Label for a contact's extension number in the contact list.",
"placeholders": {
"extension": {
"type": "String",
"example": "101"
}
}
},
"messaging_ConversationBuilders_contactOrNumberSearch_hint": "Enter name or phone number",
"@messaging_ConversationBuilders_contactOrNumberSearch_hint": {},
"messaging_ConversationBuilders_contactSearch_hint": "Search contacts",
"@messaging_ConversationBuilders_contactSearch_hint": {},
"messaging_ConversationBuilders_create": "Create",
"@messaging_ConversationBuilders_create": {},
"messaging_ConversationBuilders_createGroup": "Create group",
"@messaging_ConversationBuilders_createGroup": {},
"messaging_ConversationBuilders_externalContacts_heading": "Cloud PBX contacts",
"@messaging_ConversationBuilders_externalContacts_heading": {},
"messaging_ConversationBuilders_invalidNumber_message1": "The contact has an invalid phone number. It should be in the format ",
"@messaging_ConversationBuilders_invalidNumber_message1": {},
"messaging_ConversationBuilders_invalidNumber_message2": ". Please fix it in your phone book.",
"@messaging_ConversationBuilders_invalidNumber_message2": {},
"messaging_ConversationBuilders_invalidNumber_ok": "Close",
"@messaging_ConversationBuilders_invalidNumber_ok": {},
"messaging_ConversationBuilders_invalidNumber_title": "Invalid phone number",
"@messaging_ConversationBuilders_invalidNumber_title": {
"description": "Shown as the title of a dialog or message when a contact has an invalid phone number. Condition: the phone number does not match the required format during contact selection or group creation."
},
"messaging_ConversationBuilders_invite_heading": "Invite users:",
"@messaging_ConversationBuilders_invite_heading": {
"description": "Shown as the heading for the section where users can invite other participants to a conversation or group during the creation or editing process."
},
"messaging_ConversationBuilders_localContacts_heading": "Local contacts",
"@messaging_ConversationBuilders_localContacts_heading": {},
"messaging_ConversationBuilders_membersHeadline": "Members",
"@messaging_ConversationBuilders_membersHeadline": {},
"messaging_ConversationBuilders_nameFieldEmpty": "Please enter a group name",
"@messaging_ConversationBuilders_nameFieldEmpty": {
"description": "Shown when the user tries to create a group but leaves the group name field empty. Condition: group name input is required but not provided."