strings_enum.dart 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. class Strings {
  2. static const String someThingWentWorng = 'something went wrong';
  3. static const String retry = 'retry';
  4. static const String settings = 'settings';
  5. static const String language = 'language';
  6. static const String termsOfService = 'terms of service';
  7. static const String privacyPolicy = 'privacy policy';
  8. static const String version = 'version';
  9. static const String ok = 'ok';
  10. static const String cancel = 'cancel';
  11. static const String oops = 'oops';
  12. static const String copied = 'copied';
  13. static const String later = 'later';
  14. static const String noData = 'no data';
  15. //empty error update
  16. static const String refresh = 'refresh';
  17. static const String unableToConnectNetwork =
  18. 'Unable to connect to the network';
  19. static const String unableToConnectServer = 'Unable to connect to the server';
  20. static const String regionRestricted = 'Region restricted';
  21. static const String updateNow = 'Update Now';
  22. static const String newVersionAvailable = 'New Version Available';
  23. // util error
  24. static const String eUtilOpenEmail = 'Error opening email';
  25. static const String eUtilOpenGooglePlay = 'Error opening Google Play';
  26. static const String eUtilOpenBrowser = 'Error opening browser';
  27. static const String error = 'Error';
  28. // 隐私政策
  29. static const String terms = "Terms";
  30. static const String privacy = "Privacy";
  31. static const String termsAgreementPrefix =
  32. "By signing up or continuing, you agree to our ";
  33. static const String termsAgreementConnector = " and ";
  34. // 忘记密码
  35. // Account page
  36. static const String account = 'Account';
  37. // Dialog texts
  38. static const String processing = 'Processing...';
  39. static const String success = 'Success';
  40. static const String unknownError = 'Unknown error';
  41. static const String failed = 'Failed';
  42. // exit
  43. static const String exit = 'Exit';
  44. // feedback
  45. static const String feedback = 'Feedback';
  46. // setting page
  47. static const String networkSection = 'Network';
  48. static const String securitySection = 'Security';
  49. static const String myPreCode = 'My Pre Code';
  50. static const String validTerm = 'Valid Term';
  51. static const String freeTime = 'Free Time';
  52. static const String deviceAuthorization = 'Device Authorization';
  53. static const String routingMode = 'Routing Mode';
  54. static const String splitTunneling = 'Split Tunneling';
  55. static const String autoReconnect = 'Auto Reconnect';
  56. static const String restoreDefault = 'Restore Default';
  57. static const String deleteAccount = 'Delete Account';
  58. static const String logout = 'Logout';
  59. // media location page
  60. static const String connecting = 'Connecting';
  61. static const String connected = 'Connected';
  62. static const String disconnected = 'Disconnected';
  63. static const String open = 'Open';
  64. static const String disconnect = 'Disconnect';
  65. static const String connect = 'Connect';
  66. static const String opening = 'Opening';
  67. static const String connectedSuccessfully = 'Connected successfully';
  68. static const String willOpenSoon = 'will open soon';
  69. static const String netflix = 'Netflix';
  70. static const String youtube = 'YouTube';
  71. static const String amazon = 'Amazon';
  72. static const String hulu = 'hulu';
  73. static const String niftyStreaming = 'Nifty Streaming';
  74. static const String youtubeStreaming = 'YouTube Streaming';
  75. static const String amazonStreaming = 'Amazon Streaming';
  76. static const String huluStreaming = 'hulu Streaming';
  77. // split tunneling page
  78. static const String excludeSelectedAppsFromVPN =
  79. 'Exclude selected apps from VPN';
  80. static const String useVPNForSelectedAppsOnly =
  81. 'Use VPN for selected apps only';
  82. static const String selectApps = 'Select apps';
  83. static const String customizeYourVPN = 'Customize your VPN';
  84. // subscription page
  85. static const String subscription = 'Subscription';
  86. static const String currentSubscription = 'Current subscription';
  87. static const String upgradeToPremium = 'Upgrade to Premium';
  88. static const String activatePreCode = 'Activate Pre Code';
  89. static const String preCodeHint =
  90. 'If you have a Pre code, please enter it to claim your Pre benefits.';
  91. static const String planChangeInfo = 'Plan change info';
  92. static const String whenItStarts = 'When it starts';
  93. static const String whatHappensToYourBalance = 'What happens to your balance';
  94. static const String extraTime = 'Extra time';
  95. static const String yourNewPlanBeginsRightAway =
  96. 'Your new plan begins right away.';
  97. static const String anyUnusedAmountFromYourOldPlan =
  98. 'Any unused amount from your old plan will be added to the new one.';
  99. static const String youllGetExtraDays =
  100. 'You\'ll get extra days based on your remaining balance.';
  101. static const String premiumsIncluded = 'Premium\'s included';
  102. static const String unlockAllFreeLocations = 'Unlock all free locations';
  103. static const String unlockSmartMode = 'Unlock smart mode';
  104. static const String unlockMultiHopMode = 'Unlock Multi-hop mode';
  105. static const String premiumCanShareXDevices = 'Premium can share X devices';
  106. static const String ownYourOwnPrivateServer = 'Own your own private server';
  107. static const String closeAds = 'Close ads';
  108. static const String confirmChange = 'Confirm Change';
  109. static const String restorePurchases = 'Restore Purchases';
  110. static const String paymentIssue = 'Payment issue';
  111. static const String yearlyAutoRenewCancelAnytime =
  112. 'Yearly auto-renew. Cancel anytime';
  113. // home page
  114. static const String recent = 'Recent';
  115. static const String moviesAndTV = 'Movies&TV';
  116. static const String social = 'Social';
  117. static const String support = 'Support';
  118. static const String sport = 'Sport';
  119. static const String music = 'Music';
  120. static const String game = 'Game';
  121. // country restricted
  122. static const String sorry = 'Sorry';
  123. static const String unableToLoadData = 'Unable to load data';
  124. static const String dueLawsAndRegulations =
  125. 'Due to local laws and regulations, \nNOMOVPN services are not available in \nyour current region.';
  126. // more pages
  127. static const String sendPreCodeToEmail = 'Send Pre Code to Email';
  128. static const String selectServer = 'Select Server';
  129. // 语言
  130. static const String enLang = 'English';
  131. static const String esLang = 'Español';
  132. static const String frLang = 'Français';
  133. static const String deLang = 'Deutsch';
  134. static const String jaLang = '日本語';
  135. static const String koLang = '한국어';
  136. static const String faLang = 'فارسی';
  137. static const String myLang = 'မြန်မာဘာသာ';
  138. static const String arLang = 'عربي';
  139. static const String ruLang = 'Русский';
  140. // Dialog messages
  141. static const String premiumActivated = 'Premium Activated Successfully !';
  142. static const String premiumActivatedMessage =
  143. 'You\'ve been upgraded to Premium. Enjoy all advanced features and an enhanced browsing experience.';
  144. static const String gotIt = 'Got it';
  145. static const String emailSent = 'Email Sent Successfully';
  146. static const String emailSentMessage =
  147. 'Your Pre Code has been sent to your email.\nPlease check your inbox (and spam folder).';
  148. static const String noInternetConnection = 'No Internet Connection';
  149. static const String noInternetMessage =
  150. 'It looks like you\'re offline. Please check your internet connection and try again.';
  151. static const String logOut = 'Log Out';
  152. static const String logOutConfirmMessage =
  153. 'Are you sure you want to log out? You\'ll need to sign in again to access your Premium features.';
  154. static const String thankYouFeedback = 'Thank you for your feedback!';
  155. static const String feedbackMessage =
  156. 'We\'re sorry you\'re not enjoying your experience. We\'ll do our best to improve it soon.';
  157. static const String done = 'Done';
  158. static const String whatIsUid = 'What is UID?';
  159. static const String uidMessage =
  160. 'Device ID (UID) This is your device\'s unique identifier. Providing this ID helps our support team verify your device and resolve your issues more quickly.';
  161. static const String confirm = 'Confirm';
  162. // Device Authorization
  163. static const String copy = 'Copy';
  164. static const String pleaseKeepPageOpen = 'Please keep this page open.';
  165. static const String authorizationCode = 'Authorization Code';
  166. static const String authorizationCodeDesc =
  167. 'This 6-digit code allows a VIP user to link your device. It refreshes every 15 minutes.';
  168. static const String shareWithPreUser = 'Share with Pre User';
  169. static const String shareWithPreUserDesc =
  170. 'Tell the VIP user this code so they can enter it on their device to authorize you.';
  171. static const String waitingForAuthorization = 'Waiting for Authorization';
  172. static const String waitingForAuthorizationDesc =
  173. 'Please keep this page open.\nOnce approved, your account will automatically upgrade and reconnect.';
  174. static const String enterCode = 'Enter Code';
  175. static const String enterCodeDesc =
  176. 'Input the 6-digit code shown on the other device (free user).This code refreshes every 15 minutes.';
  177. static const String verifyDevice = 'Verify Device';
  178. static const String verifyDeviceDesc =
  179. 'We\'ll check if the entered code matches an active device waiting for authorization.';
  180. static const String authorizationSuccessful = 'Authorization Successful';
  181. static const String authorizationSuccessfulDesc =
  182. 'Once confirmed, the device will automatically upgrade and link to your account.';
  183. static const String deviceLimitReached = 'Device Limit Reached';
  184. static const String deviceLimitMessage = 'You can only authorize up to';
  185. static const String devices = 'devices';
  186. static const String deviceAuthorized = 'Device Authorized';
  187. static const String deviceAuthorizedMessage =
  188. 'New device has been successfully authorized';
  189. static const String relieveDevice = 'Relieve Device';
  190. static const String relieveDeviceMessage = 'Are you sure you want to relieve';
  191. static const String relieveDeviceLoseAccess =
  192. 'This device will lose Premium access.';
  193. static const String deviceRelieved = 'Device Relieved';
  194. static const String deviceRelievedMessage =
  195. 'has been removed from authorized devices';
  196. static const String currentDevice = 'Current Device';
  197. static const String androidDevices = 'Android devices';
  198. static const String authCodeCopied = 'Authorization code copied to clipboard';
  199. // Pre Code Email
  200. static const String codeBackedUpMessage =
  201. 'Your code will be backed up to this email.';
  202. static const String enterYourEmail = 'Enter your email';
  203. static const String sendYourEmail = 'Send your Email';
  204. static const String yourPreCredential = 'Your Pre Credential';
  205. static const String yourPreCredentialDesc =
  206. 'This is your VIP credential. Please store it securely and do not share it with anyone.';
  207. static const String secureEmailBackup = 'Secure Email Backup';
  208. static const String secureEmailBackupDesc =
  209. 'We will send an email containing this credential to your specified email address for safekeeping.';
  210. static const String sendAndSave = 'Send and Save';
  211. static const String sendAndSaveDesc =
  212. 'After the email is sent, we recommend you also save this credential to a secure location on your device.';
  213. // Routing Mode
  214. static const String smart = 'Smart';
  215. static const String smartModeDesc =
  216. 'The local and VPN networks coexist, and the optimal route is selected intelligently.';
  217. static const String global = 'Global';
  218. static const String globalModeDesc =
  219. 'All traffic is routed through the VPN server to ensure maximum privacy and security.';
  220. // Subscription Plans
  221. static const String perYear = 'Per year';
  222. static const String yearlyPlan = 'Yearly Plan';
  223. static const String mostlyChoose = 'Mostly choose';
  224. static const String once = 'once';
  225. static const String lifeTime = 'Life time';
  226. static const String monthPlan = 'Month Plan';
  227. static const String perWeek = 'Per week';
  228. static const String weekPlan = 'Week Plan';
  229. static const String limitedTime = 'Limited Time';
  230. static const String subscriptionChanged =
  231. 'Subscription plan changed successfully';
  232. static const String restoringPurchases = 'Restoring purchases...';
  233. static const String openingPaymentSupport = 'Opening payment support...';
  234. static const String info = 'Info';
  235. // Other messages
  236. static const String vpnConnectionError = 'VPN connection error';
  237. static const String vpnServiceDisconnected =
  238. 'VPN service disconnected unexpectedly';
  239. static const String failedCaptureScreenshot = 'Failed to capture screenshot';
  240. static const String imageSavedToAlbum =
  241. 'The image has been saved to your local album';
  242. static const String failedSaveImage = 'Failed to save image to gallery';
  243. static const String failedToSave = 'Failed to save';
  244. static const String failedSendEmail = 'Failed to send email';
  245. // Connection status
  246. static const String activeTime = 'Active time';
  247. }