constants.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import gettext from '@/gettext'
  2. const {$gettext} = gettext
  3. export const msg = [
  4. $gettext('The username or password is incorrect'),
  5. $gettext('Prohibit changing root password in demo'),
  6. $gettext('Prohibit deleting the default user'),
  7. $gettext('Failed to get certificate information'),
  8. $gettext('Generating private key for registering account'),
  9. $gettext('Preparing lego configurations'),
  10. $gettext('Creating client facilitates communication with the CA server'),
  11. $gettext('Using HTTP01 challenge provider'),
  12. $gettext('Using DNS01 challenge provider'),
  13. $gettext('Setting environment variables'),
  14. $gettext('Cleaning environment variables'),
  15. $gettext('Registering user'),
  16. $gettext('Obtaining certificate'),
  17. $gettext('Writing certificate to disk'),
  18. $gettext('Writing certificate private key to disk'),
  19. $gettext('Reloading nginx'),
  20. $gettext('Finished'),
  21. $gettext('Issued certificate successfully'),
  22. $gettext('Initialing core upgrader'),
  23. $gettext('Initial core upgrader error'),
  24. $gettext('Downloading latest release'),
  25. $gettext('Download latest release error'),
  26. $gettext('Performing core upgrade'),
  27. $gettext('Perform core upgrade error'),
  28. $gettext('Upgraded successfully'),
  29. $gettext('File exists')
  30. ]