app_localizations_en.dart 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. // ignore: unused_import
  2. import 'package:intl/intl.dart' as intl;
  3. import 'app_localizations.dart';
  4. // ignore_for_file: type=lint
  5. /// The translations for English (`en`).
  6. class AppLocalizationsEn extends AppLocalizations {
  7. AppLocalizationsEn([String locale = 'en']) : super(locale);
  8. @override
  9. String get appName => 'PB Authenticator';
  10. @override
  11. String get ok => 'OK';
  12. @override
  13. String get yes => 'Yes';
  14. @override
  15. String get no => 'No';
  16. @override
  17. String get error => 'Error';
  18. @override
  19. String get save => 'Save';
  20. @override
  21. String get edit => 'Edit';
  22. @override
  23. String get add => 'Add';
  24. @override
  25. String get addTitle => 'Add Account';
  26. @override
  27. String get addScanQR => 'Scan QR Code';
  28. @override
  29. String get addManualInput => 'Manual Input';
  30. @override
  31. String get addMethodPrompt => 'Please select input method.';
  32. @override
  33. String get cancel => 'Cancel';
  34. @override
  35. String get secret => 'Secret key';
  36. @override
  37. String get secretInvalidMessage => 'Secret key is invalid';
  38. @override
  39. String get issuer => 'Provider/Issuer';
  40. @override
  41. String get accountName => 'Account Name';
  42. @override
  43. String get digits => 'Number of digits';
  44. @override
  45. String get period => 'Time step';
  46. @override
  47. String get settingsTitle => 'Settings';
  48. @override
  49. String get source => 'Source code';
  50. @override
  51. String get licenses => 'Acknowledgements';
  52. @override
  53. String get clipboard => 'Copied to clipboard';
  54. @override
  55. String get noAccounts =>
  56. 'You have no accounts,\n press the + button to add one.';
  57. @override
  58. String get loading => 'Loading...';
  59. @override
  60. String get editTitle => 'Edit Accounts';
  61. @override
  62. String get removeAccounts => 'Remove accounts';
  63. @override
  64. String get removeConfirmation =>
  65. 'Please do not forget to turn off 2 factor authentication before removal.\n\nAre you sure that you want to remove the selected account(s)?';
  66. @override
  67. String get exitEditTitle => 'Exit';
  68. @override
  69. String get exitEditInfo => 'Do you want to exit edit mode without saving?';
  70. @override
  71. String get errDuplicateAccount => 'Duplicate account';
  72. @override
  73. String get errIdCollision =>
  74. 'A rare ID collision has occurred. Please try again.';
  75. @override
  76. String get errNoCameraPermission => 'Camera permission not granted';
  77. @override
  78. String get errIncorrectFormat => 'Scanned code is of incorrect format';
  79. @override
  80. String get errUnknown => 'Unknown error';
  81. @override
  82. String get howItWorksTitle => 'How it works';
  83. @override
  84. String get howItWorksTitle1 => 'Secure your accounts';
  85. @override
  86. String get howItWorksBody1 =>
  87. 'Add your accounts to generate time-based one-time passwords (TOTP) for secure sign-in.';
  88. @override
  89. String get howItWorksTitle2 => 'Scan QR codes';
  90. @override
  91. String get howItWorksBody2 =>
  92. 'Easily add new accounts by scanning QR codes provided by your services.';
  93. @override
  94. String get howItWorksTitle3 => 'Backup & Restore';
  95. @override
  96. String get howItWorksBody3 =>
  97. 'Backup your accounts securely and restore them when needed.';
  98. @override
  99. String get howItWorksTitle4 => 'Offline & Private';
  100. @override
  101. String get howItWorksBody4 =>
  102. 'All data stays on your device. No internet required for generating codes.';
  103. @override
  104. String get skip => 'Skip';
  105. @override
  106. String get done => 'Done';
  107. @override
  108. String get transferCodesTitle => 'Transfer codes';
  109. @override
  110. String get transferCodesDescription =>
  111. 'Transfer your accounts to another device.';
  112. @override
  113. String get exportAccounts => 'Export accounts';
  114. @override
  115. String get importAccounts => 'Import accounts';
  116. }