doorkeeper.en.yml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. en:
  2. activerecord:
  3. attributes:
  4. doorkeeper/application:
  5. name: 'Name'
  6. redirect_uri: 'Redirect URI'
  7. errors:
  8. models:
  9. doorkeeper/application:
  10. attributes:
  11. redirect_uri:
  12. fragment_present: 'cannot contain a fragment.'
  13. invalid_uri: 'must be a valid URI.'
  14. unspecified_scheme: 'must specify a scheme.'
  15. relative_uri: 'must be an absolute URI.'
  16. secured_uri: 'must be an HTTPS/SSL URI.'
  17. forbidden_uri: 'is forbidden by the server.'
  18. scopes:
  19. not_match_configured: "doesn't match configured on the server."
  20. doorkeeper:
  21. applications:
  22. confirmations:
  23. destroy: 'Are you sure?'
  24. buttons:
  25. edit: 'Edit'
  26. destroy: 'Destroy'
  27. submit: 'Submit'
  28. cancel: 'Cancel'
  29. authorize: 'Authorize'
  30. form:
  31. error: 'Whoops! Check your form for possible errors'
  32. help:
  33. confidential: 'Application will be used where the client secret can be kept confidential. Native mobile apps and Single Page Apps are considered non-confidential.'
  34. redirect_uri: 'Use one line per URI'
  35. blank_redirect_uri: "Leave it blank if you configured your provider to use Client Credentials, Resource Owner Password Credentials or any other grant type that doesn't require redirect URI."
  36. scopes: 'Separate scopes with spaces. Leave blank to use the default scopes.'
  37. edit:
  38. title: 'Edit application'
  39. index:
  40. title: 'Your applications'
  41. new: 'New Application'
  42. name: 'Name'
  43. callback_url: 'Callback URL'
  44. confidential: 'Confidential?'
  45. actions: 'Actions'
  46. confidentiality:
  47. 'yes': 'Yes'
  48. 'no': 'No'
  49. new:
  50. title: 'New Application'
  51. show:
  52. title: 'Application: %{name}'
  53. application_id: 'Application UID'
  54. secret: 'Secret'
  55. scopes: 'Scopes'
  56. confidential: 'Confidential'
  57. callback_urls: 'Callback urls'
  58. actions: 'Actions'
  59. authorizations:
  60. buttons:
  61. authorize: 'Authorize'
  62. deny: 'Deny'
  63. error:
  64. title: 'An error has occurred'
  65. new:
  66. title: 'Authorization required'
  67. prompt: 'Authorize %{client_name} to use your account?'
  68. able_to: 'This application will be able to'
  69. show:
  70. title: 'Authorization code'
  71. authorized_applications:
  72. confirmations:
  73. revoke: 'Are you sure?'
  74. buttons:
  75. revoke: 'Revoke'
  76. index:
  77. title: 'Your authorized applications'
  78. application: 'Application'
  79. created_at: 'Created At'
  80. date_format: '%Y-%m-%d %H:%M:%S'
  81. pre_authorization:
  82. status: 'Pre-authorization'
  83. errors:
  84. messages:
  85. # Common error messages
  86. invalid_request:
  87. unknown: 'The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.'
  88. missing_param: 'Missing required parameter: %{value}.'
  89. not_support_pkce: 'Invalid code_verifier parameter. Server does not support pkce.'
  90. request_not_authorized: 'Request need to be authorized. Required parameter for authorizing request is missing or invalid.'
  91. invalid_redirect_uri: "The requested redirect uri is malformed or doesn't match client redirect URI."
  92. unauthorized_client: 'The client is not authorized to perform this request using this method.'
  93. access_denied: 'The resource owner or authorization server denied the request.'
  94. invalid_scope: 'The requested scope is invalid, unknown, or malformed.'
  95. invalid_code_challenge_method: 'The code challenge method must be plain or S256.'
  96. server_error: 'The authorization server encountered an unexpected condition which prevented it from fulfilling the request.'
  97. temporarily_unavailable: 'The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server.'
  98. # Configuration error messages
  99. credential_flow_not_configured: 'Resource Owner Password Credentials flow failed due to Doorkeeper.configure.resource_owner_from_credentials being unconfigured.'
  100. resource_owner_authenticator_not_configured: 'Resource Owner find failed due to Doorkeeper.configure.resource_owner_authenticator being unconfigured.'
  101. admin_authenticator_not_configured: 'Access to admin panel is forbidden due to Doorkeeper.configure.admin_authenticator being unconfigured.'
  102. # Access grant errors
  103. unsupported_response_type: 'The authorization server does not support this response type.'
  104. # Access token errors
  105. invalid_client: 'Client authentication failed due to unknown client, no client authentication included, or unsupported authentication method.'
  106. invalid_grant: 'The provided authorization grant is invalid, expired, revoked, does not match the redirection URI used in the authorization request, or was issued to another client.'
  107. unsupported_grant_type: 'The authorization grant type is not supported by the authorization server.'
  108. invalid_token:
  109. revoked: "The access token was revoked"
  110. expired: "The access token expired"
  111. unknown: "The access token is invalid"
  112. revoke:
  113. unauthorized: "You are not authorized to revoke this token"
  114. flash:
  115. applications:
  116. create:
  117. notice: 'Application created.'
  118. destroy:
  119. notice: 'Application deleted.'
  120. update:
  121. notice: 'Application updated.'
  122. authorized_applications:
  123. destroy:
  124. notice: 'Application revoked.'
  125. layouts:
  126. admin:
  127. title: 'Doorkeeper'
  128. nav:
  129. oauth2_provider: 'OAuth2 Provider'
  130. applications: 'Applications'
  131. home: 'Home'
  132. application:
  133. title: 'OAuth authorization required'