-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathapp_localizations.dart
More file actions
16112 lines (13460 loc) · 442 KB
/
app_localizations.dart
File metadata and controls
16112 lines (13460 loc) · 442 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
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:intl/intl.dart' as intl;
import 'app_localizations_ar.dart';
import 'app_localizations_bg.dart';
import 'app_localizations_ca.dart';
import 'app_localizations_cs.dart';
import 'app_localizations_da.dart';
import 'app_localizations_de.dart';
import 'app_localizations_el.dart';
import 'app_localizations_en.dart';
import 'app_localizations_es.dart';
import 'app_localizations_et.dart';
import 'app_localizations_fi.dart';
import 'app_localizations_fr.dart';
import 'app_localizations_hi.dart';
import 'app_localizations_hu.dart';
import 'app_localizations_id.dart';
import 'app_localizations_it.dart';
import 'app_localizations_ja.dart';
import 'app_localizations_ko.dart';
import 'app_localizations_lt.dart';
import 'app_localizations_lv.dart';
import 'app_localizations_ms.dart';
import 'app_localizations_nl.dart';
import 'app_localizations_no.dart';
import 'app_localizations_pl.dart';
import 'app_localizations_pt.dart';
import 'app_localizations_ro.dart';
import 'app_localizations_ru.dart';
import 'app_localizations_sk.dart';
import 'app_localizations_sv.dart';
import 'app_localizations_th.dart';
import 'app_localizations_tr.dart';
import 'app_localizations_uk.dart';
import 'app_localizations_vi.dart';
import 'app_localizations_zh.dart';
// ignore_for_file: type=lint
/// Callers can lookup localized strings with an instance of AppLocalizations
/// returned by `AppLocalizations.of(context)`.
///
/// Applications need to include `AppLocalizations.delegate()` in their app's
/// `localizationDelegates` list, and the locales they support in the app's
/// `supportedLocales` list. For example:
///
/// ```dart
/// import 'l10n/app_localizations.dart';
///
/// return MaterialApp(
/// localizationsDelegates: AppLocalizations.localizationsDelegates,
/// supportedLocales: AppLocalizations.supportedLocales,
/// home: MyApplicationHome(),
/// );
/// ```
///
/// ## Update pubspec.yaml
///
/// Please make sure to update your pubspec.yaml to include the following
/// packages:
///
/// ```yaml
/// dependencies:
/// # Internationalization support.
/// flutter_localizations:
/// sdk: flutter
/// intl: any # Use the pinned version from flutter_localizations
///
/// # Rest of dependencies
/// ```
///
/// ## iOS Applications
///
/// iOS applications define key application metadata, including supported
/// locales, in an Info.plist file that is built into the application bundle.
/// To configure the locales supported by your app, you’ll need to edit this
/// file.
///
/// First, open your project’s ios/Runner.xcworkspace Xcode workspace file.
/// Then, in the Project Navigator, open the Info.plist file under the Runner
/// project’s Runner folder.
///
/// Next, select the Information Property List item, select Add Item from the
/// Editor menu, then select Localizations from the pop-up menu.
///
/// Select and expand the newly-created Localizations item then, for each
/// locale your application supports, add a new item and select the locale
/// you wish to add from the pop-up menu in the Value field. This list should
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
/// property.
abstract class AppLocalizations {
AppLocalizations(String locale) : localeName = intl.Intl.canonicalizedLocale(locale.toString());
final String localeName;
static AppLocalizations of(BuildContext context) {
return Localizations.of<AppLocalizations>(context, AppLocalizations)!;
}
static const LocalizationsDelegate<AppLocalizations> delegate = _AppLocalizationsDelegate();
/// A list of this localizations delegate along with the default localizations
/// delegates.
///
/// Returns a list of localizations delegates containing this delegate along with
/// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
/// and GlobalWidgetsLocalizations.delegate.
///
/// Additional delegates can be added by appending to this list in
/// MaterialApp. This list does not have to be used at all if a custom list
/// of delegates is preferred or required.
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates = <LocalizationsDelegate<dynamic>>[
delegate,
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
];
/// A list of this localizations delegate's supported locales.
static const List<Locale> supportedLocales = <Locale>[
Locale('ar'),
Locale('bg'),
Locale('ca'),
Locale('cs'),
Locale('da'),
Locale('de'),
Locale('el'),
Locale('en'),
Locale('es'),
Locale('et'),
Locale('fi'),
Locale('fr'),
Locale('hi'),
Locale('hu'),
Locale('id'),
Locale('it'),
Locale('ja'),
Locale('ko'),
Locale('lt'),
Locale('lv'),
Locale('ms'),
Locale('nl'),
Locale('no'),
Locale('pl'),
Locale('pt'),
Locale('ro'),
Locale('ru'),
Locale('sk'),
Locale('sv'),
Locale('th'),
Locale('tr'),
Locale('uk'),
Locale('vi'),
Locale('zh')
];
/// The app title displayed in various places
///
/// In en, this message translates to:
/// **'Omi'**
String get appTitle;
/// Tab label for conversation summary
///
/// In en, this message translates to:
/// **'Conversation'**
String get conversationTab;
/// Tab label for transcript view
///
/// In en, this message translates to:
/// **'Transcript'**
String get transcriptTab;
/// Tab label for action items
///
/// In en, this message translates to:
/// **'Action Items'**
String get actionItemsTab;
/// Title for delete confirmation dialog
///
/// In en, this message translates to:
/// **'Delete Conversation?'**
String get deleteConversationTitle;
/// Message for delete confirmation dialog
///
/// In en, this message translates to:
/// **'This will also delete associated memories, tasks, and audio files. This action cannot be undone.'**
String get deleteConversationMessage;
/// Confirm button label
///
/// In en, this message translates to:
/// **'Confirm'**
String get confirm;
/// Generic cancel button label
///
/// In en, this message translates to:
/// **'Cancel'**
String get cancel;
/// Generic OK button text
///
/// In en, this message translates to:
/// **'Ok'**
String get ok;
/// Delete button
///
/// In en, this message translates to:
/// **'Delete'**
String get delete;
/// Add button label
///
/// In en, this message translates to:
/// **'Add'**
String get add;
/// Button label to update action item
///
/// In en, this message translates to:
/// **'Update'**
String get update;
/// Save button label
///
/// In en, this message translates to:
/// **'Save'**
String get save;
/// Edit menu item label
///
/// In en, this message translates to:
/// **'Edit'**
String get edit;
/// Close button label
///
/// In en, this message translates to:
/// **'Close'**
String get close;
/// Button label to clear files
///
/// In en, this message translates to:
/// **'Clear'**
String get clear;
/// Option to copy transcript to clipboard
///
/// In en, this message translates to:
/// **'Copy Transcript'**
String get copyTranscript;
/// Option to copy summary to clipboard
///
/// In en, this message translates to:
/// **'Copy Summary'**
String get copySummary;
/// Menu item for testing prompts
///
/// In en, this message translates to:
/// **'Test Prompt'**
String get testPrompt;
/// Menu item to reprocess a conversation
///
/// In en, this message translates to:
/// **'Reprocess Conversation'**
String get reprocessConversation;
/// Menu item to delete a conversation
///
/// In en, this message translates to:
/// **'Delete Conversation'**
String get deleteConversation;
/// Snackbar message when content is copied
///
/// In en, this message translates to:
/// **'Content copied to clipboard'**
String get contentCopied;
/// Error message when starring fails
///
/// In en, this message translates to:
/// **'Failed to update starred status.'**
String get failedToUpdateStarred;
/// Error message when sharing fails
///
/// In en, this message translates to:
/// **'Conversation URL could not be shared.'**
String get conversationUrlNotShared;
/// Error message for conversation processing failure
///
/// In en, this message translates to:
/// **'Error while processing conversation. Please try again later.'**
String get errorProcessingConversation;
/// Error message shown when there is no internet connection
///
/// In en, this message translates to:
/// **'No internet connection'**
String get noInternetConnection;
/// Title for delete error dialog
///
/// In en, this message translates to:
/// **'Unable to Delete Conversation'**
String get unableToDeleteConversation;
/// Generic error message
///
/// In en, this message translates to:
/// **'Something went wrong! Please try again later.'**
String get somethingWentWrong;
/// Button to copy error details
///
/// In en, this message translates to:
/// **'Copy error message'**
String get copyErrorMessage;
/// Snackbar message after copying error
///
/// In en, this message translates to:
/// **'Error message copied to clipboard'**
String get errorCopied;
/// Label showing time remaining for SD card transfer
///
/// In en, this message translates to:
/// **'Remaining'**
String get remaining;
/// Loading indicator text
///
/// In en, this message translates to:
/// **'Loading...'**
String get loading;
/// Loading duration indicator
///
/// In en, this message translates to:
/// **'Loading duration...'**
String get loadingDuration;
/// Duration in seconds
///
/// In en, this message translates to:
/// **'{count} seconds'**
String secondsCount(int count);
/// People section title
///
/// In en, this message translates to:
/// **'People'**
String get people;
/// Title for add person dialog
///
/// In en, this message translates to:
/// **'Add New Person'**
String get addNewPerson;
/// Title for edit person dialog
///
/// In en, this message translates to:
/// **'Edit Person'**
String get editPerson;
/// Hint text for creating a person
///
/// In en, this message translates to:
/// **'Create a new person and train Omi to recognize their speech too!'**
String get createPersonHint;
/// Speech profile setting
///
/// In en, this message translates to:
/// **'Speech Profile'**
String get speechProfile;
/// Label for speech sample
///
/// In en, this message translates to:
/// **'Sample {number}'**
String sampleNumber(int number);
/// Settings dialog title
///
/// In en, this message translates to:
/// **'Settings'**
String get settings;
/// Label for language selector
///
/// In en, this message translates to:
/// **'Language'**
String get language;
/// Title for language selection
///
/// In en, this message translates to:
/// **'Select Language'**
String get selectLanguage;
/// Deleting in progress indicator
///
/// In en, this message translates to:
/// **'Deleting...'**
String get deleting;
/// Message shown during OAuth flow
///
/// In en, this message translates to:
/// **'Please complete authentication in your browser. Once done, return to the app.'**
String get pleaseCompleteAuthentication;
/// Error when OAuth fails to start
///
/// In en, this message translates to:
/// **'Failed to start authentication'**
String get failedToStartAuthentication;
/// Success message when import begins
///
/// In en, this message translates to:
/// **'Import started! You\'ll be notified when it\'s complete.'**
String get importStarted;
/// Error when import fails to start
///
/// In en, this message translates to:
/// **'Failed to start import. Please try again.'**
String get failedToStartImport;
/// Error when file access fails
///
/// In en, this message translates to:
/// **'Could not access the selected file'**
String get couldNotAccessFile;
/// Shortcut to ask Omi a question
///
/// In en, this message translates to:
/// **'Ask Omi'**
String get askOmi;
/// Status when download is done
///
/// In en, this message translates to:
/// **'Done'**
String get done;
/// Status text when device is disconnected
///
/// In en, this message translates to:
/// **'Disconnected'**
String get disconnected;
/// Loading text displayed while search is in progress
///
/// In en, this message translates to:
/// **'Searching...'**
String get searching;
/// Button to connect a device
///
/// In en, this message translates to:
/// **'Connect Device'**
String get connectDevice;
/// Message when usage limit is reached
///
/// In en, this message translates to:
/// **'You\'ve reached your monthly limit.'**
String get monthlyLimitReached;
/// Button to check usage details
///
/// In en, this message translates to:
/// **'Check Usage'**
String get checkUsage;
/// Title when sync is in progress
///
/// In en, this message translates to:
/// **'Syncing recordings'**
String get syncingRecordings;
/// Title when there are recordings to sync
///
/// In en, this message translates to:
/// **'Recordings to sync'**
String get recordingsToSync;
/// Title when everything is synced
///
/// In en, this message translates to:
/// **'All caught up'**
String get allCaughtUp;
/// Sync button label
///
/// In en, this message translates to:
/// **'Sync'**
String get sync;
/// Status when pendant is synced
///
/// In en, this message translates to:
/// **'Pendant is up to date'**
String get pendantUpToDate;
/// Status text when sync is complete
///
/// In en, this message translates to:
/// **'All recordings are synced'**
String get allRecordingsSynced;
/// Status when sync is happening
///
/// In en, this message translates to:
/// **'Syncing in progress'**
String get syncingInProgress;
/// Status when ready to sync
///
/// In en, this message translates to:
/// **'Ready to sync'**
String get readyToSync;
/// Hint to start sync
///
/// In en, this message translates to:
/// **'Tap Sync to start'**
String get tapSyncToStart;
/// Warning when pendant is not connected
///
/// In en, this message translates to:
/// **'Pendant not connected. Connect to sync.'**
String get pendantNotConnected;
/// Message when all is synced
///
/// In en, this message translates to:
/// **'Everything is already synced.'**
String get everythingSynced;
/// Message when there are unsynced recordings
///
/// In en, this message translates to:
/// **'You have recordings that aren\'t synced yet.'**
String get recordingsNotSynced;
/// Message during background sync
///
/// In en, this message translates to:
/// **'We\'ll keep syncing your recordings in the background.'**
String get syncingBackground;
/// Title shown when user has no conversations
///
/// In en, this message translates to:
/// **'No conversations yet'**
String get noConversationsYet;
/// Empty state title when no starred conversations
///
/// In en, this message translates to:
/// **'No starred conversations'**
String get noStarredConversations;
/// Hint explaining how to star conversations
///
/// In en, this message translates to:
/// **'To star a conversation, open it and tap the star icon in the header.'**
String get starConversationHint;
/// Placeholder text for conversation search field
///
/// In en, this message translates to:
/// **'Search conversations...'**
String get searchConversations;
/// Selection count label
///
/// In en, this message translates to:
/// **'{count} selected'**
String selectedCount(int count, Object s);
/// Merge button label
///
/// In en, this message translates to:
/// **'Merge'**
String get merge;
/// Merge dialog title
///
/// In en, this message translates to:
/// **'Merge Conversations'**
String get mergeConversations;
/// Merge confirmation message
///
/// In en, this message translates to:
/// **'This will combine {count} conversations into one. All content will be merged and regenerated.'**
String mergeConversationsMessage(int count);
/// Snackbar message during merge
///
/// In en, this message translates to:
/// **'Merging in background. This may take a moment.'**
String get mergingInBackground;
/// Error message when merge fails
///
/// In en, this message translates to:
/// **'Failed to start merge'**
String get failedToStartMerge;
/// Chat input placeholder
///
/// In en, this message translates to:
/// **'Ask anything'**
String get askAnything;
/// Empty chat state message
///
/// In en, this message translates to:
/// **'No messages yet!\nWhy don\'t you start a conversation?'**
String get noMessagesYet;
/// Loading text when clearing chat
///
/// In en, this message translates to:
/// **'Deleting your messages from Omi\'s memory...'**
String get deletingMessages;
/// Snackbar message for copied text
///
/// In en, this message translates to:
/// **'✨ Message copied to clipboard'**
String get messageCopied;
/// Error when trying to report own message
///
/// In en, this message translates to:
/// **'You cannot report your own messages.'**
String get cannotReportOwnMessage;
/// Report dialog title
///
/// In en, this message translates to:
/// **'Report Message'**
String get reportMessage;
/// Report message confirmation
///
/// In en, this message translates to:
/// **'Are you sure you want to report this message?'**
String get reportMessageConfirm;
/// Confirmation after reporting message
///
/// In en, this message translates to:
/// **'Message reported successfully.'**
String get messageReported;
/// After thumbs up/down feedback
///
/// In en, this message translates to:
/// **'Thank you for your feedback!'**
String get thankYouFeedback;
/// Button/menu item to clear chat
///
/// In en, this message translates to:
/// **'Clear Chat'**
String get clearChat;
/// Clear chat confirmation message
///
/// In en, this message translates to:
/// **'Are you sure you want to clear the chat? This action cannot be undone.'**
String get clearChatConfirm;
/// Max files upload warning
///
/// In en, this message translates to:
/// **'You can only upload 4 files at a time'**
String get maxFilesLimit;
/// Chat share subject
///
/// In en, this message translates to:
/// **'Chat with Omi'**
String get chatWithOmi;
/// Navigation label for apps page
///
/// In en, this message translates to:
/// **'Apps'**
String get apps;
/// Empty state title when no apps match search
///
/// In en, this message translates to:
/// **'No apps found'**
String get noAppsFound;
/// Hint when no apps found
///
/// In en, this message translates to:
/// **'Try adjusting your search or filters'**
String get tryAdjustingSearch;
/// Button title for creating custom apps
///
/// In en, this message translates to:
/// **'Create Your Own App'**
String get createYourOwnApp;
/// Create app button subtitle
///
/// In en, this message translates to:
/// **'Build and share your custom app'**
String get buildAndShareApp;
/// Placeholder text for search input
///
/// In en, this message translates to:
/// **'Search apps...'**
String get searchApps;
/// Filter button for user's own apps
///
/// In en, this message translates to:
/// **'My Apps'**
String get myApps;
/// Filter button for installed apps
///
/// In en, this message translates to:
/// **'Installed Apps'**
String get installedApps;
/// Error when apps fail to load
///
/// In en, this message translates to:
/// **'Unable to fetch apps :(\n\nPlease check your internet connection and try again.'**
String get unableToFetchApps;
/// About page title
///
/// In en, this message translates to:
/// **'About Omi'**
String get aboutOmi;
/// Link text for Privacy Policy
///
/// In en, this message translates to:
/// **'Privacy Policy'**
String get privacyPolicy;
/// Visit website link
///
/// In en, this message translates to:
/// **'Visit Website'**
String get visitWebsite;
/// Help link title
///
/// In en, this message translates to:
/// **'Help or Inquiries?'**
String get helpOrInquiries;
/// Discord community link
///
/// In en, this message translates to:
/// **'Join the community!'**
String get joinCommunity;
/// Discord member count
///
/// In en, this message translates to:
/// **'8000+ members and counting.'**
String get membersAndCounting;
/// Delete account page title
///
/// In en, this message translates to:
/// **'Delete Account'**
String get deleteAccountTitle;
/// Delete account confirmation
///
/// In en, this message translates to:
/// **'Are you sure you want to delete your account?'**
String get deleteAccountConfirm;
/// Warning that action is permanent
///
/// In en, this message translates to:
/// **'This cannot be undone.'**
String get cannotBeUndone;
/// Delete account warning 1
///
/// In en, this message translates to:
/// **'All of your memories and conversations will be permanently erased.'**
String get allDataErased;
/// Delete account warning 2
///
/// In en, this message translates to:
/// **'Your Apps and Integrations will be disconnected effectively immediately.'**
String get appsDisconnected;
/// Delete account warning 3
///
/// In en, this message translates to:
/// **'You can export your data before deleting your account, but once deleted, it cannot be recovered.'**
String get exportBeforeDelete;
/// Delete account checkbox confirmation
///
/// In en, this message translates to:
/// **'I understand that deleting my account is permanent and all data, including memories and conversations, will be lost and cannot be recovered.'**
String get deleteAccountCheckbox;
/// Final confirmation title
///
/// In en, this message translates to:
/// **'Are you sure?'**
String get areYouSure;
/// Final delete confirmation message
///
/// In en, this message translates to:
/// **'This action is irreversible and will permanently delete your account and all associated data. Are you sure you want to proceed?'**
String get deleteAccountFinal;
/// Delete now button
///
/// In en, this message translates to:
/// **'Delete Now'**
String get deleteNow;
/// Go back button
///
/// In en, this message translates to:
/// **'Go Back'**
String get goBack;
/// Checkbox validation error
///
/// In en, this message translates to:
/// **'Check the box to confirm you understand that deleting your account is permanent and irreversible.'**
String get checkBoxToConfirm;
/// Profile page title
///
/// In en, this message translates to:
/// **'Profile'**
String get profile;
/// Name field label
///
/// In en, this message translates to:
/// **'Name'**
String get name;
/// Email field label
///
/// In en, this message translates to:
/// **'Email'**
String get email;
/// Custom vocabulary section
///
/// In en, this message translates to:
/// **'Custom Vocabulary'**
String get customVocabulary;
/// People identification setting
///
/// In en, this message translates to:
/// **'Identifying Others'**
String get identifyingOthers;
/// Payment methods setting
///
/// In en, this message translates to:
/// **'Payment Methods'**
String get paymentMethods;
/// Conversation display setting
///
/// In en, this message translates to:
/// **'Conversation Display'**
String get conversationDisplay;
/// Data privacy setting
///
/// In en, this message translates to:
/// **'Data Privacy'**
String get dataPrivacy;
/// User ID field
///
/// In en, this message translates to:
/// **'User ID'**
String get userId;
/// Value not set placeholder
///
/// In en, this message translates to:
/// **'Not set'**
String get notSet;
/// Confirmation when user ID is copied
///
/// In en, this message translates to:
/// **'User ID copied to clipboard'**
String get userIdCopied;
/// System language option
///
/// In en, this message translates to:
/// **'System Default'**
String get systemDefault;
/// Plan and usage menu item
///
/// In en, this message translates to:
/// **'Plan & Usage'**
String get planAndUsage;
/// Page title for offline sync
///
/// In en, this message translates to:
/// **'Offline Sync'**
String get offlineSync;
/// Device settings menu item
///
/// In en, this message translates to:
/// **'Device Settings'**
String get deviceSettings;
/// Integrations menu item
///
/// In en, this message translates to:
/// **'Integrations'**
String get integrations;
/// Feedback menu item
///
/// In en, this message translates to:
/// **'Feedback / Bug'**
String get feedbackBug;
/// Help center menu item
///
/// In en, this message translates to:
/// **'Help Center'**
String get helpCenter;
/// Title for developer settings page
///
/// In en, this message translates to:
/// **'Developer Settings'**
String get developerSettings;
/// Mac app download link
///
/// In en, this message translates to:
/// **'Get Omi for Mac'**
String get getOmiForMac;
/// Referral program menu item
///
/// In en, this message translates to:
/// **'Referral Program'**
String get referralProgram;