-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathapp_localizations_en.g.dart
More file actions
2979 lines (2070 loc) · 97.2 KB
/
Copy pathapp_localizations_en.g.dart
File metadata and controls
2979 lines (2070 loc) · 97.2 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
// ignore: unused_import
import 'package:intl/intl.dart' as intl;
import 'app_localizations.g.dart';
// ignore_for_file: type=lint
/// The translations for English (`en`).
class AppLocalizationsEn extends AppLocalizations {
AppLocalizationsEn([String locale = 'en']) : super(locale);
@override
String get 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.';
@override
String agoTicker_daysAgo(int days) {
String _temp0 = intl.Intl.pluralLogic(
days,
locale: localeName,
other: '$days days ago',
one: '$days day ago',
zero: '',
);
return '$_temp0';
}
@override
String agoTicker_hoursAgo(int hours) {
String _temp0 = intl.Intl.pluralLogic(
hours,
locale: localeName,
other: '$hours hours ago',
one: '$hours hour ago',
zero: '',
);
return '$_temp0';
}
@override
String agoTicker_minutesAgo(int minutes) {
String _temp0 = intl.Intl.pluralLogic(
minutes,
locale: localeName,
other: '$minutes minutes ago',
one: '$minutes minute ago',
zero: '',
);
return '$_temp0';
}
@override
String agoTicker_secondsAgo(num seconds) {
final intl.NumberFormat secondsNumberFormat = intl.NumberFormat.decimalPattern(localeName);
final String secondsString = secondsNumberFormat.format(seconds);
String _temp0 = intl.Intl.pluralLogic(
seconds,
locale: localeName,
other: '$secondsString seconds ago',
one: '$secondsString second ago',
zero: 'Just now',
);
return '$_temp0';
}
@override
String get alertDialogActions_no => 'No';
@override
String get alertDialogActions_ok => 'Ok';
@override
String get alertDialogActions_yes => 'Yes';
@override
String get autoprovision_errorSnackBar_invalidToken =>
'The autoconfiguration credentials were rejected by the server. Please request a new configuration link';
@override
String get autoprovision_ReloginDialog_confirm => 'Confirm';
@override
String get autoprovision_ReloginDialog_decline => 'Decline';
@override
String get 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.';
@override
String get autoprovision_ReloginDialog_title => 'Relogin Confirmation';
@override
String get autoprovision_successSnackBar_used => 'Successfully retrieved your settings, your app is ready to use';
@override
String get call_CallActionsTooltip_accept => 'Accept';
@override
String get call_CallActionsTooltip_accept_inviteToAttendedTransfer => 'Accept transfer';
@override
String get call_CallActionsTooltip_attended_transfer => 'Attended transfer';
@override
String get call_CallActionsTooltip_changeAudioDevice => 'Change audio device';
@override
String get call_CallActionsTooltip_decline_inviteToAttendedTransfer => 'Decline transfer';
@override
String get call_CallActionsTooltip_device_bluetooth => 'Bluetooth';
@override
String get call_CallActionsTooltip_device_earpiece => 'Earpiece';
@override
String get call_CallActionsTooltip_device_speaker => 'Speaker';
@override
String get call_CallActionsTooltip_device_streaming => 'Streaming';
@override
String get call_CallActionsTooltip_device_unknown => 'Unknown device';
@override
String get call_CallActionsTooltip_device_wiredHeadset => 'Wired Headset';
@override
String get call_CallActionsTooltip_disableCamera => 'Disable camera';
@override
String get call_CallActionsTooltip_disableSpeaker => 'Disable speakerphone';
@override
String get call_CallActionsTooltip_enableCamera => 'Enable camera';
@override
String get call_CallActionsTooltip_enableSpeaker => 'Enable speakerphone';
@override
String get call_CallActionsTooltip_hangup => 'Hangup';
@override
String get call_CallActionsTooltip_hangupAndAccept => 'Hangup & Accept';
@override
String get call_CallActionsTooltip_hideKeypad => 'Hide keypad';
@override
String get call_CallActionsTooltip_hold => 'Hold call';
@override
String get call_CallActionsTooltip_holdAndAccept => 'Hold & Accept';
@override
String get call_CallActionsTooltip_mute => 'Mute microphone';
@override
String get call_CallActionsTooltip_showKeypad => 'Show keypad';
@override
String get call_CallActionsTooltip_swap => 'Swap calls';
@override
String get call_CallActionsTooltip_transfer => 'Transfer';
@override
String get call_CallActionsTooltip_transfer_choose => 'Choose number';
@override
String get call_CallActionsTooltip_unattended_transfer => 'Unattended transfer';
@override
String get call_CallActionsTooltip_unhold => 'Unhold call';
@override
String get call_CallActionsTooltip_unmute => 'Unmute microphone';
@override
String get call_description_held => 'On hold';
@override
String get call_description_incoming => 'Incoming call';
@override
String get call_description_inviteToAttendedTransfer => 'You\'ve been invited to join an attended transfer call';
@override
String get call_description_outgoing => 'Outgoing call';
@override
String get call_description_requestToAttendedTransfer => 'Transfer request';
@override
String get call_description_transferProcessing => 'Transfer processing';
@override
String get call_errorRegisteringSelfManagedPhoneAccount =>
'There was a problem registering the self-managed phone account.';
@override
String get call_FailureAcknowledgeDialog_title => 'Failure';
@override
String get callProcessingStatus_answering => 'Answering the call, please hold on…';
@override
String get callProcessingStatus_disconnecting => 'Disconnecting the call, please hold on…';
@override
String get callProcessingStatus_init_media => 'Initializing media devices';
@override
String get callProcessingStatus_invite => 'Establishing the SIP session';
@override
String get callProcessingStatus_preparing => 'Preparing';
@override
String get callProcessingStatus_ringing => 'Ringing';
@override
String get callProcessingStatus_routing => 'Routing the call';
@override
String get callProcessingStatus_signaling_connecting => 'Connecting to the remote server';
@override
String get iceConnectionIssue_iceFail => 'Media connection failed. Check your network';
@override
String get iceConnectionIssue_iceFailNoIcePath => 'Media connection failed. Try switching to another network';
@override
String get iceConnectionIssue_iceFailNoIcePathViaVpn => 'VPN may be blocking the call. Try disabling it';
@override
String get callPullBadge_dialogTitle => 'Pullable Calls';
@override
String get callPullBadge_pickupButtonTitle => 'Pick up';
@override
String get call_settings_additional_options => 'Additional options';
@override
String get callStatus_appUnregistered => 'Unregistered';
@override
String get callStatus_connectError => 'Connection error';
@override
String get callStatus_connectIssue => 'Connection issue';
@override
String get callStatus_connectivityNone => 'No internet connection';
@override
String get callStatus_inProgress => 'Connection in progress';
@override
String get callStatus_ready => 'Connection established';
@override
String get call_SystemErrorDialog_description =>
'To resume making calls, a phone restart is required. This will resolve a temporary system error.';
@override
String get call_SystemErrorDialog_title => 'System Error';
@override
String get call_ThumbnailAvatar_currentlyNoActiveCall => 'Currently, there is no active call';
@override
String get call_videoBackground_actionLabel_disableBlur => 'Disable Blur';
@override
String get call_videoBackground_actionLabel_enableBlur => 'Enable Blur';
@override
String get call_videoView_actionLabel_cover => 'Cover';
@override
String get call_videoView_actionLabel_fit => 'Fit';
@override
String get cdrs_noMissedCalls_message => 'No missed calls';
@override
String get cdrs_noRecentCalls_message => 'No recent calls';
@override
String get common_noInternetConnection_message =>
'It seems you are not connected to the internet. Please check your connection and try again.';
@override
String get common_noInternetConnection_retryButton => 'Try Again';
@override
String get common_noInternetConnection_title => 'No Internet Connection';
@override
String get common_problemWithLoadingPage => 'There was an issue loading the page.';
@override
String get contacts_agreement_button_text => 'Continue';
@override
String get contacts_agreement_checkbox_text =>
'I agree to allow the app to access my contacts to enhance my user experience.';
@override
String get 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.';
@override
String get contacts_agreement_title => 'Data collection';
@override
String get contacts_ExternalTabButton_refresh => 'Refresh';
@override
String get contacts_ExternalTabText_empty => 'No contacts';
@override
String get contacts_ExternalTabText_emptyOnSearching => 'No contacts found';
@override
String get contacts_ExternalTabText_failure => 'Failed to get cloud PBX contacts';
@override
String get contacts_LocalTabButton_contactsAgreement => 'Open Settings';
@override
String get contacts_LocalTabButton_openAppSettings => 'Grant access to your phone contacts';
@override
String get contacts_LocalTabButton_refresh => 'Refresh';
@override
String get contacts_LocalTabText_contactsAgreementFailure =>
'To sync your local contacts, you must accept the agreement in Settings.';
@override
String get contacts_LocalTabText_empty => 'No contacts';
@override
String get contacts_LocalTabText_emptyOnSearching => 'No contacts found';
@override
String get contacts_LocalTabText_failure => 'Failed to get your phone contacts';
@override
String get contacts_LocalTabText_permissionFailure => 'There are no permissions to get your phone contacts';
@override
String get contactsSourceExternal => 'Cloud PBX';
@override
String get contactsSourceLocal => 'Your phone';
@override
String get contacts_Text_blingTransferInitiated => 'Performing blind transfer';
@override
String get contacts_DialogsInfoView_title => 'Calls information (BLF):';
@override
String contacts_ContactTile_inCall(Object destination) {
return 'In call: $destination';
}
@override
String get contacts_ContactScreen_options => 'Options:';
@override
String get contacts_ContactScreen_presenceViaSip => 'Subscribe to user status via SIP (Presence)';
@override
String get 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.';
@override
String get contacts_ContactScreen_dialogsViaSipBlf => 'Subscribe to active calls via SIP (BLF/Dialogs)';
@override
String get 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.';
@override
String get copyToClipboard_floatingSnackBar => 'Text copied';
@override
String get copyToClipboard_popupMenuItem => 'Copy to clipboard';
@override
String get default_CannotRemoveOwnerMessagingSocketException => 'Cannot remove owner';
@override
String get default_ChatMemberNotFoundMessagingSocketException => 'Chat member not found';
@override
String get default_ChatNotFoundMessagingSocketException => 'Chat not found';
@override
String get default_ClientExceptionError => 'A HTTP client issue occurred';
@override
String get default_ErrorDetails => 'Details';
@override
String get default_ErrorMessage => 'Error message';
@override
String get default_ErrorPath => 'Error path';
@override
String get default_ErrorTransactionId => 'Transaction ID';
@override
String get default_ForbiddenMessagingSocketException => 'Forbidden request';
@override
String get default_FormatExceptionError => 'A response format issue occurred';
@override
String get default_InternalErrorMessagingSocketException => 'Internal server error';
@override
String get default_InvalidChatTypeMessagingSocketException => 'Invalid chat type';
@override
String get default_JoinCrashedMessagingSocketException => 'Error occurred while joining the conversation';
@override
String get default_MessagingSocketException => 'An error occurred while processing the request';
@override
String get default_RequestFailureError => 'A server failure occurred';
@override
String get default_SelfAuthorityAssignmentForbiddenMessagingSocketException =>
'Self authority assignment is forbidden';
@override
String get default_SelfRemovalForbiddenMessagingSocketException => 'Self removal is forbidden';
@override
String get default_SmsConversationNotFoundMessagingSocketException => 'SMS conversation not found';
@override
String get default_TimeoutExceptionError => 'A server timeout occurred';
@override
String get default_TimeoutMessagingSocketException => 'The request has timed out';
@override
String get default_TlsExceptionError => 'A secure network protocol (TLS/SSL) issue occurred';
@override
String get default_TypeErrorError => 'A response issue occurred';
@override
String get default_UnauthorizedMessagingSocketException => 'Unauthorized request';
@override
String get default_UnauthorizedRequestFailureError => 'An unauthorized request failure occurred';
@override
String default_UnknownExceptionError(String error) {
return 'An unknown issue occurred: $error';
}
@override
String get default_UserAlreadyInChatMessagingSocketException => 'User is already in chat';
@override
String get diagnostic_AppBar_title => 'Diagnostic';
@override
String get diagnostic_battery_groupTitle => 'Battery';
@override
String get 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.';
@override
String get diagnostic_batteryMode_optimized_title => 'Optimized';
@override
String get diagnostic_batteryMode_restricted_description =>
'The app\'s background activity is heavily restricted to conserve the battery. Incoming calls may be missed.';
@override
String get diagnostic_batteryMode_restricted_title => 'Restricted';
@override
String get diagnostic_batteryMode_unknown_description =>
'The battery mode status is unknown. The app might have unpredictable behavior.';
@override
String get diagnostic_batteryMode_unknown_title => 'Unknown';
@override
String get diagnostic_batteryMode_unrestricted_description =>
'The app has full access to run in the background without restrictions.';
@override
String get diagnostic_batteryMode_unrestricted_title => 'Unrestricted';
@override
String get diagnostic_battery_navigate_section => 'Navigate to the Battery section';
@override
String get diagnostic_battery_tile_title => 'Battery mode';
@override
String get diagnostic_callingMode_groupTitle => 'Calling mode';
@override
String get diagnostic_callingMode_tile_title => 'Calling mode';
@override
String get diagnostic_callingMode_standalone_title => 'Limited call mode';
@override
String get diagnostic_callingMode_standalone_caption => 'Standalone - delivery may be delayed';
@override
String get 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.';
@override
String get diagnostic_permission_camera_description =>
'This app requires permission to access the camera to make video calls.';
@override
String get diagnostic_permission_camera_title => 'Camera';
@override
String get diagnostic_permission_contacts_description =>
'This app requires permission to access contacts to make calls within your address book.';
@override
String get diagnostic_permission_contacts_title => 'Contacts';
@override
String get diagnosticPermissionDetails_button_managePermission => 'Manage Permission';
@override
String get diagnosticPermissionDetails_button_requestPermission => 'Request Permission';
@override
String get diagnosticPermissionDetails_title_statusPermission => 'Status permission';
@override
String get diagnostic_permission_microphone_description =>
'This app requires permission to access the microphone to make audio calls.';
@override
String get diagnostic_permission_microphone_title => 'Microphone';
@override
String get diagnostic_permission_notification_description => 'Enables the app to trigger incoming call.';
@override
String get diagnostic_permission_notification_title => 'Notification';
@override
String get diagnostic_permissionStatus_denied => 'Access Denied';
@override
String get diagnostic_permissionStatus_granted => 'Access Granted';
@override
String get diagnostic_permissionStatus_limited => 'Limited Access';
@override
String get diagnostic_permissionStatus_permanentlyDenied => 'Access Permanently Denied';
@override
String get diagnostic_permissionStatus_provisional => 'Provisional Access';
@override
String get diagnostic_permissionStatus_restricted => 'Restricted Access';
@override
String get diagnosticPushDetails_configuration_title => 'Push Notification service configuration';
@override
String get diagnosticPushDetails_errorMessage_intro => 'Some steps to try:\n';
@override
String get diagnosticPushDetails_errorMessage_step1 => '1. Ensure your phone is connected to the internet.\n';
@override
String get diagnosticPushDetails_errorMessage_step2 =>
'2. If connected, check that your phone can access Google services by visiting a website.\n';
@override
String get diagnosticPushDetails_errorMessage_step3 =>
'3. Wait a few minutes and try again – Firebase messaging servers may be temporarily down.\n';
@override
String get diagnosticPushDetails_errorMessage_step4 =>
'4. Restart Google Play services to ensure they are functioning correctly.\n';
@override
String get diagnosticPushDetails_errorMessage_step5 =>
'5. Verify that Google Play services are installed on your device.\n';
@override
String get diagnosticPushDetails_successMessage =>
'The notification service is successfully configured and ready for use to receive messages and handle incoming calls.';
@override
String get diagnostic_pushTokenStatusType_progress => 'In progress';
@override
String get diagnostic_pushTokenStatusType_success => 'Service successfully configured';
@override
String get diagnosticReportDialogAddNoteExpansionTileTitle => 'Add a note (Optional)';
@override
String get diagnosticReportDialogCancelButtonLabel => 'Cancel';
@override
String get diagnosticReportDialogCommentTextFieldHintText => 'Describe what happened...';
@override
String get diagnosticReportDialogContent =>
'This report contains technical details to help us identify connection issues.';
@override
String get diagnosticReportDialogIncludeSystemLogsSwitchTileSubtitle => 'Requires extra permissions.';
@override
String get diagnosticReportDialogIncludeSystemLogsSwitchTileTitle => 'Include System Logs';
@override
String get diagnosticReportDialogSendReportButtonLabel => 'Send Report';
@override
String get diagnosticReportDialogTitle => 'Send Diagnostic Report';
@override
String get diagnosticScreen_contacts_agreement_description =>
'Allow the app to access my contacts to enhance my user experience.';
@override
String get diagnosticScreen_contacts_agreement_group_title => 'Agreement';
@override
String get diagnosticScreen_contacts_agreement_title => 'Contacts Agreement';
@override
String get diagnosticScreen_permissionsGroup_title => 'Permissions';
@override
String get diagnosticScreen_pushNotificationService_title => 'Push notification service';
@override
String get diagnostic_network_groupTitle => 'Network';
@override
String get diagnosticNetworkTest_status_offline => 'Offline';
@override
String get diagnosticNetworkTest_status_reachable => 'Reachable';
@override
String get diagnosticNetworkTest_status_restricted => 'Restricted';
@override
String get diagnosticNetworkTest_status_checking => 'Checking…';
@override
String get diagnosticNetworkTest_status_unreachable => 'Unreachable';
@override
String get diagnosticNetworkTestItem_subtitle_noNetwork => 'No network connection';
@override
String diagnosticNetworkTestItem_subtitle_publicIps(String ips) {
return 'Public: $ips';
}
@override
String get diagnosticNetworkTestItem_subtitle_stunBlocked => 'STUN blocked · relay available';
@override
String get diagnosticNetworkTestItem_subtitle_stunUnreachable => 'STUN unreachable · local only';
@override
String get diagnosticNetworkTestItem_subtitle_noCandidates => 'No ICE candidates gathered';
@override
String get diagnosticNetworkTestItem_network_wifi => 'WiFi';
@override
String get diagnosticNetworkTestItem_network_mobile => 'Mobile';
@override
String get diagnosticNetworkTestItem_network_ethernet => 'Ethernet';
@override
String get diagnosticNetworkTestItem_network_vpn => 'VPN';
@override
String get diagnosticNetworkTestDetails_title => 'Network reachability';
@override
String get 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.';
@override
String get diagnosticNetworkTestDetails_status => 'Status';
@override
String get diagnosticNetworkTestDetails_candidates => 'Candidates';
@override
String get diagnosticNetworkTestDetails_noNetwork => 'No network connection';
@override
String get diagnosticNetworkTestDetails_noCandidates => 'No ICE candidates gathered';
@override
String get favorites_BodyCenter_empty =>
'Currently, you have no favorite numbers.\nAdd favorites from Contacts using the star icon';
@override
String get favorites_DeleteConfirmDialog_content => 'Are you sure you want to delete the current favorite number?';
@override
String get favorites_DeleteConfirmDialog_title => 'Confirm deleting';
@override
String favorites_SnackBar_deleted(String name) {
return '$name deleted';
}
@override
String get favorites_Text_blingTransferInitiated => 'Performing blind transfer';
@override
String formatPhone(String style, String main, String ext) {
String _temp0 = intl.Intl.selectLogic(style, {
'full': '$main (ext: $ext)',
'simple': '$main',
'only_ext': 'ext: $ext',
'empty': 'No phone number',
'other': '$main',
});
return '$_temp0';
}
@override
String get locale_default => 'Default';
@override
String get locale_en => 'English';
@override
String get locale_it => 'Italian';
@override
String get locale_uk => 'Ukrainian';
@override
String get login_Button_coreUrlAssignProceed => 'Proceed';
@override
String get login_Button_otpSigninRequestProceed => 'Proceed';
@override
String get login_Button_otpSigninVerifyProceed => 'Verify';
@override
String get login_Button_otpSigninVerifyRepeat => 'Resend the code';
@override
String login_Button_otpSigninVerifyRepeatInterval(int seconds) {
return 'Resend the code ($seconds s)';
}
@override
String get login_Button_passwordSigninProceed => 'Proceed';
@override
String get login_Button_signIn => 'Sign in';
@override
String get login_Button_signupRequestProceed => 'Proceed';
@override
String get login_Button_signUpToDemoInstance => 'Sign up / sign in';
@override
String get login_Button_signupVerifyProceed => 'Verify';
@override
String get login_Button_signupVerifyRepeat => 'Resend the code';
@override
String login_Button_signupVerifyRepeatInterval(int seconds) {
return 'Resend the code ($seconds s)';
}
@override
String get login_ButtonTooltip_signInToYourInstance => 'Sign in to your WebTrit Cloud Backend';
@override
String login_CoreVersionUnsupportedExceptionError(String actual, String supportedConstraint) {
return 'An incompatible instance version provided, please contact the administrator of your system (actual: $actual, supported: $supportedConstraint)';
}
@override
String get login_RequestFailureEmptyEmailError => 'Cannot send the verification code';
@override
String get login_RequestFailureIdentifierIsNotValid => 'The identifier is invalid or does not exist';
@override
String get login_RequestFailureIncorrectOtpCodeError => 'Incorrect verification code';
@override
String get login_RequestFailureOtpAlreadyVerifiedError => 'Verification already verified';
@override
String get login_RequestFailureOtpExpiredError => 'Verification expired';
@override
String get login_RequestFailureOtpNotFoundError => 'Verification not found';
@override
String get login_RequestFailureOtpVerificationAttemptsExceededError => 'Verification attempts exceeded';
@override
String get login_RequestFailureParametersApplyIssueError => 'Provided data can\'t be processed';
@override
String get login_RequestFailurePhoneNotFoundError => 'Phone number not found';
@override
String get login_RequestFailureIncorrectCredentialsError => 'Incorrect username or password';
@override
String get login_RequestFailureUserNotFoundError => 'User not found';
@override
String get login_RequestFailureUnconfiguredBundleIdError => 'The app is not supported by your WebTrit Cloud Backend';
@override
String get login_SupportedLoginTypeMissedExceptionError =>
'The current WebTrit Cloud Backend does not support any login types compatible with this app';
@override
String login_Text_coreUrlAssignPostDescription(Object email) {
return 'If you do not yet have your own WebTrit Cloud Backend - contact sales team $email.';
}
@override
String get 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.';
@override
String get login_TextFieldLabelText_coreUrlAssign => 'Enter your WebTrit Cloud Backend URL';
@override
String get login_TextFieldLabelText_otpSigninCode => 'Enter the verification code';
@override
String get login_TextFieldLabelText_otpSigninUserRef => 'Enter your phone number or email';
@override
String get login_TextFieldLabelText_otpSigninUserRefPhone => 'Enter your phone number';
@override
String get login_TextFieldLabelText_otpSigninUserRefEmail => 'Enter your email';
@override
String get login_TextFieldLabelText_passwordSigninPassword => 'Enter your password';
@override
String get login_TextFieldLabelText_passwordSigninUserRef => 'Enter your phone number or email';
@override
String get login_TextFieldLabelText_signupCode => 'Enter the verification code';
@override
String get login_TextFieldLabelText_signupEmail => 'Enter your email';
@override
String get login_Text_otpSigninRequestPostDescription => '';
@override
String get login_Text_otpSigninRequestPreDescription => '';
@override
String login_Text_otpSigninVerifyPostDescriptionFromEmail(String email) {
return 'If you do not see an email with the verification code from $email in your inbox, please check your spam folder.';
}
@override
String get login_Text_otpSigninVerifyPostDescriptionGeneral =>
'If you do not see an email with the verification code in your inbox, please check your spam folder.';
@override
String login_Text_otpSigninVerifyPreDescriptionUserRef(String userRef) {
return 'A one-time verification code was sent to the email assigned to provided phone number or email.';
}
@override
String get login_Text_passwordSigninPostDescription => '';
@override
String get login_Text_passwordSigninPreDescription => '';
@override
String get login_Text_signupRequestPostDescription => '';
@override
String get login_Text_signupRequestPostDescriptionDemo =>
'If you do not have an account yet, it will be automatically created for you';
@override
String get login_Text_signupRequestPreDescription => '';
@override
String get login_Text_signupRequestPreDescriptionDemo => '';
@override
String login_Text_signupVerifyPostDescriptionFromEmail(String email) {
return 'If you do not see an email with the verification code from $email in your inbox, please check your spam folder.';
}
@override
String get login_Text_signupVerifyPostDescriptionGeneral =>
'If you do not see an email with the verification code in your inbox, please check your spam folder.';
@override
String login_Text_signupVerifyPreDescriptionEmail(String email) {
return 'A one-time verification code was sent to $email.';
}
@override
String get loginType_otpSignin => 'OTP sign in';
@override
String get loginType_passwordSignin => 'Password sign in';
@override
String get loginType_signup => 'Sign up';
@override
String get login_validationCoreUrlError => 'Please enter a valid URL';
@override
String get login_validationEmailError => 'Please enter a valid email';
@override
String get login_validationPhoneError => 'Please enter a valid phone number';
@override
String get login_validationUserRefError => 'Please enter a valid phone number or email';
@override
String get logRecordsConsole_AppBarTitle => 'Log Console';
@override
String get logRecordsConsole_Button_failureRefresh => 'Refresh';
@override
String get logRecordsConsole_Text_failure => 'An unexpected error occurred';
@override
String logRecordsConsole_Text_recordsCountHint(int count) {
String _temp0 = intl.Intl.pluralLogic(count, locale: localeName, other: '$count records', one: '$count record');
return 'Showing last $_temp0. Use Share to export the full log.';
}
@override
String get logRecordsConsole_Button_infoClose => 'Got it';
@override
String get logRecordsConsole_PopupMenuItem_info => 'Info';
@override
String get logRecordsConsole_PopupMenuItem_clear => 'Clear';
@override
String get main_BottomNavigationBarItemLabel_chats => 'Chats';
@override
String get main_BottomNavigationBarItemLabel_contacts => 'Contacts';
@override
String get main_BottomNavigationBarItemLabel_favorites => 'Favorites';