constants.ts 824 B

12345678910111213141516171819202122
  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('Registering user'),
  13. $gettext('Obtaining certificate'),
  14. $gettext('Writing certificate to disk'),
  15. $gettext('Writing certificate private key to disk'),
  16. $gettext('Reloading nginx'),
  17. $gettext('Finished'),
  18. $gettext('Issued certificate successfully')
  19. ]