-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_localizations.dart
More file actions
6469 lines (5399 loc) · 199 KB
/
Copy pathapp_localizations.dart
File metadata and controls
6469 lines (5399 loc) · 199 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_de.dart';
import 'app_localizations_en.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('de'),
Locale('en'),
];
/// No description provided for @aboutUsLink.
///
/// In en, this message translates to:
/// **'About Us'**
String get aboutUsLink;
/// No description provided for @actionShowAll.
///
/// In en, this message translates to:
/// **'Show all'**
String get actionShowAll;
/// No description provided for @addEmployees.
///
/// In en, this message translates to:
/// **'Add Employees'**
String get addEmployees;
/// No description provided for @address.
///
/// In en, this message translates to:
/// **'Address'**
String get address;
/// No description provided for @addressHint.
///
/// In en, this message translates to:
/// **'Enter company\'s address'**
String get addressHint;
/// No description provided for @addressLabel.
///
/// In en, this message translates to:
/// **'Address'**
String get addressLabel;
/// No description provided for @adminLoginButton.
///
/// In en, this message translates to:
/// **'Sign in as administrator'**
String get adminLoginButton;
/// No description provided for @adminLoginPanelSubtitle.
///
/// In en, this message translates to:
/// **'Manage platform tests, tenants, and compliance operations through the protected Owner portal.'**
String get adminLoginPanelSubtitle;
/// No description provided for @adminLoginPanelTitle.
///
/// In en, this message translates to:
/// **'Secure administration access'**
String get adminLoginPanelTitle;
/// No description provided for @adminLoginSubtitle.
///
/// In en, this message translates to:
/// **'Sign in with an authorized Owner account.'**
String get adminLoginSubtitle;
/// No description provided for @adminLoginTitle.
///
/// In en, this message translates to:
/// **'Administrator login'**
String get adminLoginTitle;
/// No description provided for @assessmentAlreadyCompleted.
///
/// In en, this message translates to:
/// **'Assessment Already Completed'**
String get assessmentAlreadyCompleted;
/// No description provided for @assessmentAlreadySubmittedDesc.
///
/// In en, this message translates to:
/// **'You have already submitted this assessment. If you believe this is an error, please contact your administrator.'**
String get assessmentAlreadySubmittedDesc;
/// No description provided for @assessmentCloseButton.
///
/// In en, this message translates to:
/// **'Close'**
String get assessmentCloseButton;
/// No description provided for @assessmentDescriptionDefault.
///
/// In en, this message translates to:
/// **'You have been invited to take the {testName}. This assessment evaluates your knowledge and skills in this specific area.'**
String assessmentDescriptionDefault(String testName);
/// No description provided for @assessmentExpiredLinkDesc.
///
/// In en, this message translates to:
/// **'This invitation link has expired or is invalid. Please request a new link from your administrator to take the assessment.'**
String get assessmentExpiredLinkDesc;
/// No description provided for @assessmentInvalidLink.
///
/// In en, this message translates to:
/// **'Invalid or Expired Link'**
String get assessmentInvalidLink;
/// No description provided for @assessmentInvalidToken.
///
/// In en, this message translates to:
/// **'Invalid or missing token.'**
String get assessmentInvalidToken;
/// No description provided for @assessmentLoadingDetails.
///
/// In en, this message translates to:
/// **'Loading Test Details...'**
String get assessmentLoadingDetails;
/// No description provided for @assessmentMetricDuration.
///
/// In en, this message translates to:
/// **'Duration'**
String get assessmentMetricDuration;
/// No description provided for @assessmentMetricLanguage.
///
/// In en, this message translates to:
/// **'Language'**
String get assessmentMetricLanguage;
/// No description provided for @assessmentMetricNoLimit.
///
/// In en, this message translates to:
/// **'No Limit'**
String get assessmentMetricNoLimit;
/// No description provided for @assessmentMetricQuestions.
///
/// In en, this message translates to:
/// **'Questions'**
String get assessmentMetricQuestions;
/// No description provided for @assessmentResumeTest.
///
/// In en, this message translates to:
/// **'Resume Test'**
String get assessmentResumeTest;
/// No description provided for @assessmentResumeTestBtn.
///
/// In en, this message translates to:
/// **'Resume test'**
String get assessmentResumeTestBtn;
/// No description provided for @assessmentSectionQuestions.
///
/// In en, this message translates to:
/// **'{count} questions'**
String assessmentSectionQuestions(Object count);
/// No description provided for @assessmentStartTest.
///
/// In en, this message translates to:
/// **'Start Test'**
String get assessmentStartTest;
/// No description provided for @assessmentStartTestBtn.
///
/// In en, this message translates to:
/// **'Start test'**
String get assessmentStartTestBtn;
/// No description provided for @assessmentTimedNotice.
///
/// In en, this message translates to:
/// **'This is a timed assessment.'**
String get assessmentTimedNotice;
/// No description provided for @assessmentVerificationError.
///
/// In en, this message translates to:
/// **'An error occurred during verification. Please try again later.'**
String get assessmentVerificationError;
/// No description provided for @assessmentVerificationFailed.
///
/// In en, this message translates to:
/// **'Verification failed.'**
String get assessmentVerificationFailed;
/// No description provided for @assessmentVerifying.
///
/// In en, this message translates to:
/// **'Verifying your invitation...'**
String get assessmentVerifying;
/// No description provided for @authAddress.
///
/// In en, this message translates to:
/// **'Address'**
String get authAddress;
/// No description provided for @authAddressHint.
///
/// In en, this message translates to:
/// **'Enter your address'**
String get authAddressHint;
/// No description provided for @authCategory.
///
/// In en, this message translates to:
/// **'Category'**
String get authCategory;
/// No description provided for @authCheckEvidence.
///
/// In en, this message translates to:
/// **'Evidence-oriented results'**
String get authCheckEvidence;
/// No description provided for @authCheckInterface.
///
/// In en, this message translates to:
/// **'Reduced, traceable interface'**
String get authCheckInterface;
/// No description provided for @authCheckQuotas.
///
/// In en, this message translates to:
/// **'Keeping an eye on test quotas and allocations'**
String get authCheckQuotas;
/// No description provided for @authCompany.
///
/// In en, this message translates to:
/// **'Company'**
String get authCompany;
/// No description provided for @authCompanyHint.
///
/// In en, this message translates to:
/// **'Example Inc.'**
String get authCompanyHint;
/// No description provided for @authCountryLabel.
///
/// In en, this message translates to:
/// **'Country'**
String get authCountryLabel;
/// No description provided for @authCreateAccount.
///
/// In en, this message translates to:
/// **'Create account'**
String get authCreateAccount;
/// No description provided for @authEmail.
///
/// In en, this message translates to:
/// **'E-mail'**
String get authEmail;
/// No description provided for @authEmailAddress.
///
/// In en, this message translates to:
/// **'E-mail address'**
String get authEmailAddress;
/// No description provided for @authEmailHint.
///
/// In en, this message translates to:
/// **'admin@company.com'**
String get authEmailHint;
/// No description provided for @authEmailHintAlt.
///
/// In en, this message translates to:
/// **'john@example.com'**
String get authEmailHintAlt;
/// No description provided for @authFirstName.
///
/// In en, this message translates to:
/// **'First name'**
String get authFirstName;
/// No description provided for @authFirstNameHint.
///
/// In en, this message translates to:
/// **'John'**
String get authFirstNameHint;
/// No description provided for @authLastName.
///
/// In en, this message translates to:
/// **'Last name'**
String get authLastName;
/// No description provided for @authLastNameHint.
///
/// In en, this message translates to:
/// **'Doe'**
String get authLastNameHint;
/// No description provided for @authLoginDashboard.
///
/// In en, this message translates to:
/// **'Login to the dashboard'**
String get authLoginDashboard;
/// No description provided for @authLoginDashboardDesc.
///
/// In en, this message translates to:
/// **'Sign in to manage tests, staff, and evidence.'**
String get authLoginDashboardDesc;
/// No description provided for @authManageCompliance.
///
/// In en, this message translates to:
/// **'Manage AI compliance centrally.'**
String get authManageCompliance;
/// No description provided for @authManageComplianceDesc.
///
/// In en, this message translates to:
/// **'RuleFox guides companies from setup and employee invitation to exportable proof.'**
String get authManageComplianceDesc;
/// No description provided for @authReadyMinutes.
///
/// In en, this message translates to:
/// **'Ready to go in minutes.'**
String get authReadyMinutes;
/// No description provided for @authReadyMinutesDesc.
///
/// In en, this message translates to:
/// **'After registration, you can import employees, assign tests, and export evidence.'**
String get authReadyMinutesDesc;
/// No description provided for @authSelectCategory.
///
/// In en, this message translates to:
/// **'Select category'**
String get authSelectCategory;
/// No description provided for @authSelectCountry.
///
/// In en, this message translates to:
/// **'Select country'**
String get authSelectCountry;
/// No description provided for @authSettingUpBusiness.
///
/// In en, this message translates to:
/// **'Setting up a business'**
String get authSettingUpBusiness;
/// No description provided for @authSettingUpBusinessDesc.
///
/// In en, this message translates to:
/// **'Create your RuleFox account and start the AI Compliance Test.'**
String get authSettingUpBusinessDesc;
/// No description provided for @authStepCreateBusiness.
///
/// In en, this message translates to:
/// **'Create a business'**
String get authStepCreateBusiness;
/// No description provided for @authStepSelectQuota.
///
/// In en, this message translates to:
/// **'Select quota'**
String get authStepSelectQuota;
/// No description provided for @authStepStartCompliance.
///
/// In en, this message translates to:
/// **'Start AI Compliance Test'**
String get authStepStartCompliance;
/// No description provided for @authUpdatePassword.
///
/// In en, this message translates to:
/// **'Update password'**
String get authUpdatePassword;
/// No description provided for @authVatHint.
///
/// In en, this message translates to:
/// **'Enter VAT number'**
String get authVatHint;
/// No description provided for @authVatOptional.
///
/// In en, this message translates to:
/// **'VAT (optional)'**
String get authVatOptional;
/// No description provided for @authVerifyOtp.
///
/// In en, this message translates to:
/// **'Verify OTP'**
String get authVerifyOtp;
/// No description provided for @backToLogin.
///
/// In en, this message translates to:
/// **'Back to Login'**
String get backToLogin;
/// No description provided for @bannerAssignDesc.
///
/// In en, this message translates to:
/// **'Select the employees who should take the test. Available tests: {count}.'**
String bannerAssignDesc(int count);
/// No description provided for @bannerAssignTitle.
///
/// In en, this message translates to:
/// **'Assign AI Compliance Test'**
String get bannerAssignTitle;
/// No description provided for @bannerQuotaDesc.
///
/// In en, this message translates to:
/// **'You have purchased {n} tests. Assign any unused tests to your employees.'**
String bannerQuotaDesc(int n);
/// No description provided for @billingAmount.
///
/// In en, this message translates to:
/// **'Amount'**
String get billingAmount;
/// No description provided for @billingBuy.
///
/// In en, this message translates to:
/// **'Buy Credits'**
String get billingBuy;
/// No description provided for @billingChoosePackage.
///
/// In en, this message translates to:
/// **'Choose Package'**
String get billingChoosePackage;
/// No description provided for @billingColumnAmount.
///
/// In en, this message translates to:
/// **'Amount'**
String get billingColumnAmount;
/// No description provided for @billingColumnDate.
///
/// In en, this message translates to:
/// **'Date'**
String get billingColumnDate;
/// No description provided for @billingColumnInvoice.
///
/// In en, this message translates to:
/// **'Invoice'**
String get billingColumnInvoice;
/// No description provided for @billingColumnNumber.
///
/// In en, this message translates to:
/// **'Number'**
String get billingColumnNumber;
/// No description provided for @billingColumnProduct.
///
/// In en, this message translates to:
/// **'Product'**
String get billingColumnProduct;
/// No description provided for @billingColumnStatus.
///
/// In en, this message translates to:
/// **'Status'**
String get billingColumnStatus;
/// No description provided for @billingCredits.
///
/// In en, this message translates to:
/// **'Credits'**
String get billingCredits;
/// No description provided for @billingCreditsPerSeat.
///
/// In en, this message translates to:
/// **'Credits Per Seat'**
String get billingCreditsPerSeat;
/// No description provided for @billingCreditsTaken.
///
/// In en, this message translates to:
/// **'Credits Taken'**
String get billingCreditsTaken;
/// No description provided for @billingDate.
///
/// In en, this message translates to:
/// **'Date'**
String get billingDate;
/// No description provided for @billingDocument.
///
/// In en, this message translates to:
/// **'Document'**
String get billingDocument;
/// No description provided for @billingHistory.
///
/// In en, this message translates to:
/// **'Billing history'**
String get billingHistory;
/// No description provided for @billingPendingInvoices.
///
/// In en, this message translates to:
/// **'Pending Invoices'**
String get billingPendingInvoices;
/// No description provided for @billingReceipt.
///
/// In en, this message translates to:
/// **'Receipt'**
String get billingReceipt;
/// No description provided for @billingRequireAttention.
///
/// In en, this message translates to:
/// **'Require attention'**
String get billingRequireAttention;
/// No description provided for @billingSeats.
///
/// In en, this message translates to:
/// **'Seats'**
String get billingSeats;
/// No description provided for @billingSeatsPurchased.
///
/// In en, this message translates to:
/// **'Seats Purchased'**
String get billingSeatsPurchased;
/// No description provided for @billingSelectPackageSubtitle.
///
/// In en, this message translates to:
/// **'Select the package that best fits your needs'**
String get billingSelectPackageSubtitle;
/// No description provided for @billingStripeId.
///
/// In en, this message translates to:
/// **'Stripe ID'**
String get billingStripeId;
/// No description provided for @billingSuccessfulPayments.
///
/// In en, this message translates to:
/// **'Successful payments'**
String get billingSuccessfulPayments;
/// No description provided for @billingTestName.
///
/// In en, this message translates to:
/// **'Test Name'**
String get billingTestName;
/// No description provided for @billingTotal.
///
/// In en, this message translates to:
/// **'Total'**
String get billingTotal;
/// No description provided for @billingTotalCredits.
///
/// In en, this message translates to:
/// **'Total Credits'**
String get billingTotalCredits;
/// No description provided for @billingTotalSpent.
///
/// In en, this message translates to:
/// **'Total Spent'**
String get billingTotalSpent;
/// No description provided for @billingTotalThroughoutTime.
///
/// In en, this message translates to:
/// **'Total throughout time'**
String get billingTotalThroughoutTime;
/// No description provided for @billingVersion.
///
/// In en, this message translates to:
/// **'Version'**
String get billingVersion;
/// No description provided for @bookkeepingEmailCheckboxLabel.
///
/// In en, this message translates to:
/// **'Send invoices to bookkeeping email'**
String get bookkeepingEmailCheckboxLabel;
/// No description provided for @bookkeepingEmailLabel.
///
/// In en, this message translates to:
/// **'Bookkeeping Email'**
String get bookkeepingEmailLabel;
/// No description provided for @buttonAddEmployees.
///
/// In en, this message translates to:
/// **'Add employees'**
String get buttonAddEmployees;
/// No description provided for @buttonAddNewVersion.
///
/// In en, this message translates to:
/// **'Add New Version'**
String get buttonAddNewVersion;
/// No description provided for @buttonAddToCart.
///
/// In en, this message translates to:
/// **'Add to Cart'**
String get buttonAddToCart;
/// No description provided for @buttonAssignEmployees.
///
/// In en, this message translates to:
/// **'Assign employees'**
String get buttonAssignEmployees;
/// No description provided for @buttonBack.
///
/// In en, this message translates to:
/// **'Back'**
String get buttonBack;
/// No description provided for @buttonBuyCredits.
///
/// In en, this message translates to:
/// **'Quota'**
String get buttonBuyCredits;
/// No description provided for @buttonBuyMoreTests.
///
/// In en, this message translates to:
/// **'Buy more tests'**
String get buttonBuyMoreTests;
/// No description provided for @buttonBuyNow.
///
/// In en, this message translates to:
/// **'Buy Now'**
String get buttonBuyNow;
/// No description provided for @buttonBuyQuota.
///
/// In en, this message translates to:
/// **'Buy quota'**
String get buttonBuyQuota;
/// No description provided for @buttonBuyTest.
///
/// In en, this message translates to:
/// **'Buy test'**
String get buttonBuyTest;
/// No description provided for @buttonChoose.
///
/// In en, this message translates to:
/// **'Choose'**
String get buttonChoose;
/// No description provided for @buttonConfirm.
///
/// In en, this message translates to:
/// **'Confirm'**
String get buttonConfirm;
/// No description provided for @buttonCreateNewTest.
///
/// In en, this message translates to:
/// **'Create New Test'**
String get buttonCreateNewTest;
/// No description provided for @buttonInviteSelected.
///
/// In en, this message translates to:
/// **'Invite selected'**
String get buttonInviteSelected;
/// No description provided for @buttonMakePrimary.
///
/// In en, this message translates to:
/// **'Make Primary'**
String get buttonMakePrimary;
/// No description provided for @buttonNext.
///
/// In en, this message translates to:
/// **'Next'**
String get buttonNext;
/// No description provided for @buttonNotifyMe.
///
/// In en, this message translates to:
/// **'Notify me'**
String get buttonNotifyMe;
/// No description provided for @buttonOpen.
///
/// In en, this message translates to:
/// **'Open'**
String get buttonOpen;
/// No description provided for @buttonPlan.
///
/// In en, this message translates to:
/// **'Plan'**
String get buttonPlan;
/// No description provided for @buttonPreview.
///
/// In en, this message translates to:
/// **'Preview'**
String get buttonPreview;
/// No description provided for @buttonPublish.
///
/// In en, this message translates to:
/// **'Publish'**
String get buttonPublish;
/// No description provided for @buttonSelect.
///
/// In en, this message translates to:
/// **'Select'**
String get buttonSelect;
/// No description provided for @buttonSelectSeats.
///
/// In en, this message translates to:
/// **'Select Seats'**
String get buttonSelectSeats;
/// No description provided for @buttonStart.
///
/// In en, this message translates to:
/// **'Start'**
String get buttonStart;
/// No description provided for @buttonSubmit.
///
/// In en, this message translates to:
/// **'Submit'**
String get buttonSubmit;
/// No description provided for @cancelButton.
///
/// In en, this message translates to:
/// **'Cancel'**
String get cancelButton;
/// No description provided for @categoryCompliance.
///
/// In en, this message translates to:
/// **'Compliance'**
String get categoryCompliance;
/// No description provided for @categoryDevOps.
///
/// In en, this message translates to:
/// **'DevOps'**
String get categoryDevOps;
/// No description provided for @categoryGeneral.
///
/// In en, this message translates to:
/// **'General'**
String get categoryGeneral;
/// No description provided for @categoryLabel.
///
/// In en, this message translates to:
/// **'Category'**
String get categoryLabel;
/// No description provided for @categorySecurity.
///
/// In en, this message translates to:
/// **'Security'**
String get categorySecurity;
/// No description provided for @certAcmeEmployee.
///
/// In en, this message translates to:
/// **'Marketing Operations Specialist • Acme Enterprise GmbH'**
String get certAcmeEmployee;
/// No description provided for @certAssessmentTest.
///
/// In en, this message translates to:
/// **'Assessment Test'**
String get certAssessmentTest;
/// No description provided for @certCloseButton.
///
/// In en, this message translates to:
/// **'Close'**
String get certCloseButton;
/// No description provided for @certComplianceBoard.
///
/// In en, this message translates to:
/// **'RuleFox Compliance Board'**
String get certComplianceBoard;
/// No description provided for @certDateOfCompletion.
///
/// In en, this message translates to:
/// **'Date of Completion'**
String get certDateOfCompletion;
/// No description provided for @certPassedVerified.
///
/// In en, this message translates to:
/// **'PASSED & VERIFIED'**
String get certPassedVerified;
/// No description provided for @certReturnHome.
///
/// In en, this message translates to:
/// **'Return Home'**
String get certReturnHome;
/// No description provided for @certScoreAchieved.
///
/// In en, this message translates to:
/// **'Score Achieved'**
String get certScoreAchieved;
/// No description provided for @certSecureDigitalProof.
///
/// In en, this message translates to:
/// **'SECURE DIGITAL PROOF'**
String get certSecureDigitalProof;
/// No description provided for @certThisIsToCertify.
///
/// In en, this message translates to:
/// **'RESULT EVIDENCE RECORD FOR'**
String get certThisIsToCertify;
/// No description provided for @certVerificationCertificate.
///
/// In en, this message translates to:
/// **'Result Evidence Verification'**
String get certVerificationCertificate;
/// No description provided for @certVerifiedDigitally.
///
/// In en, this message translates to:
/// **'Verified Digitally'**
String get certVerifiedDigitally;
/// No description provided for @certViewPdf.
///
/// In en, this message translates to:
/// **'View Result Evidence PDF'**
String get certViewPdf;
/// No description provided for @columnAction.
///
/// In en, this message translates to:
/// **'Action'**
String get columnAction;
/// No description provided for @columnDepartment.
///
/// In en, this message translates to:
/// **'Department'**
String get columnDepartment;
/// No description provided for @columnEmail.
///
/// In en, this message translates to:
/// **'Email'**
String get columnEmail;
/// No description provided for @columnEmployeeId.
///
/// In en, this message translates to:
/// **'Employee ID'**
String get columnEmployeeId;