mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 03:40:49 +08:00
auth2接入
This commit is contained in:
151
config/locales/doorkeeper.en.yml
Normal file
151
config/locales/doorkeeper.en.yml
Normal file
@@ -0,0 +1,151 @@
|
||||
en:
|
||||
activerecord:
|
||||
attributes:
|
||||
doorkeeper/application:
|
||||
name: 'Name'
|
||||
redirect_uri: 'Redirect URI'
|
||||
errors:
|
||||
models:
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
redirect_uri:
|
||||
fragment_present: 'cannot contain a fragment.'
|
||||
invalid_uri: 'must be a valid URI.'
|
||||
unspecified_scheme: 'must specify a scheme.'
|
||||
relative_uri: 'must be an absolute URI.'
|
||||
secured_uri: 'must be an HTTPS/SSL URI.'
|
||||
forbidden_uri: 'is forbidden by the server.'
|
||||
scopes:
|
||||
not_match_configured: "doesn't match configured on the server."
|
||||
|
||||
doorkeeper:
|
||||
applications:
|
||||
confirmations:
|
||||
destroy: 'Are you sure?'
|
||||
buttons:
|
||||
edit: 'Edit'
|
||||
destroy: 'Destroy'
|
||||
submit: 'Submit'
|
||||
cancel: 'Cancel'
|
||||
authorize: 'Authorize'
|
||||
form:
|
||||
error: 'Whoops! Check your form for possible errors'
|
||||
help:
|
||||
confidential: 'Application will be used where the client secret can be kept confidential. Native mobile apps and Single Page Apps are considered non-confidential.'
|
||||
redirect_uri: 'Use one line per URI'
|
||||
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."
|
||||
scopes: 'Separate scopes with spaces. Leave blank to use the default scopes.'
|
||||
edit:
|
||||
title: 'Edit application'
|
||||
index:
|
||||
title: 'Your applications'
|
||||
new: 'New Application'
|
||||
name: 'Name'
|
||||
callback_url: 'Callback URL'
|
||||
confidential: 'Confidential?'
|
||||
actions: 'Actions'
|
||||
confidentiality:
|
||||
'yes': 'Yes'
|
||||
'no': 'No'
|
||||
new:
|
||||
title: 'New Application'
|
||||
show:
|
||||
title: 'Application: %{name}'
|
||||
application_id: 'UID'
|
||||
secret: 'Secret'
|
||||
secret_hashed: 'Secret hashed'
|
||||
scopes: 'Scopes'
|
||||
confidential: 'Confidential'
|
||||
callback_urls: 'Callback urls'
|
||||
actions: 'Actions'
|
||||
not_defined: 'Not defined'
|
||||
|
||||
authorizations:
|
||||
buttons:
|
||||
authorize: 'Authorize'
|
||||
deny: 'Deny'
|
||||
error:
|
||||
title: 'An error has occurred'
|
||||
new:
|
||||
title: 'Authorization required'
|
||||
prompt: 'Authorize %{client_name} to use your account?'
|
||||
able_to: 'This application will be able to'
|
||||
show:
|
||||
title: 'Authorization code'
|
||||
form_post:
|
||||
title: 'Submit this form'
|
||||
|
||||
authorized_applications:
|
||||
confirmations:
|
||||
revoke: 'Are you sure?'
|
||||
buttons:
|
||||
revoke: 'Revoke'
|
||||
index:
|
||||
title: 'Your authorized applications'
|
||||
application: 'Application'
|
||||
created_at: 'Created At'
|
||||
date_format: '%Y-%m-%d %H:%M:%S'
|
||||
|
||||
pre_authorization:
|
||||
status: 'Pre-authorization'
|
||||
|
||||
errors:
|
||||
messages:
|
||||
# Common error messages
|
||||
invalid_request:
|
||||
unknown: 'The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.'
|
||||
missing_param: 'Missing required parameter: %{value}.'
|
||||
request_not_authorized: 'Request need to be authorized. Required parameter for authorizing request is missing or invalid.'
|
||||
invalid_redirect_uri: "The requested redirect uri is malformed or doesn't match client redirect URI."
|
||||
unauthorized_client: 'The client is not authorized to perform this request using this method.'
|
||||
access_denied: 'The resource owner or authorization server denied the request.'
|
||||
invalid_scope: 'The requested scope is invalid, unknown, or malformed.'
|
||||
invalid_code_challenge_method: 'The code challenge method must be plain or S256.'
|
||||
server_error: 'The authorization server encountered an unexpected condition which prevented it from fulfilling the request.'
|
||||
temporarily_unavailable: 'The authorization server is currently unable to handle the request due to a temporary overloading or maintenance of the server.'
|
||||
|
||||
# Configuration error messages
|
||||
credential_flow_not_configured: 'Resource Owner Password Credentials flow failed due to Doorkeeper.configure.resource_owner_from_credentials being unconfigured.'
|
||||
resource_owner_authenticator_not_configured: 'Resource Owner find failed due to Doorkeeper.configure.resource_owner_authenticator being unconfigured.'
|
||||
admin_authenticator_not_configured: 'Access to admin panel is forbidden due to Doorkeeper.configure.admin_authenticator being unconfigured.'
|
||||
|
||||
# Access grant errors
|
||||
unsupported_response_type: 'The authorization server does not support this response type.'
|
||||
unsupported_response_mode: 'The authorization server does not support this response mode.'
|
||||
|
||||
# Access token errors
|
||||
invalid_client: 'Client authentication failed due to unknown client, no client authentication included, or unsupported authentication method.'
|
||||
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.'
|
||||
unsupported_grant_type: 'The authorization grant type is not supported by the authorization server.'
|
||||
|
||||
invalid_token:
|
||||
revoked: "The access token was revoked"
|
||||
expired: "The access token expired"
|
||||
unknown: "The access token is invalid"
|
||||
revoke:
|
||||
unauthorized: "You are not authorized to revoke this token"
|
||||
|
||||
forbidden_token:
|
||||
missing_scope: 'Access to this resource requires scope "%{oauth_scopes}".'
|
||||
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: 'Application created.'
|
||||
destroy:
|
||||
notice: 'Application deleted.'
|
||||
update:
|
||||
notice: 'Application updated.'
|
||||
authorized_applications:
|
||||
destroy:
|
||||
notice: 'Application revoked.'
|
||||
|
||||
layouts:
|
||||
admin:
|
||||
title: 'Doorkeeper'
|
||||
nav:
|
||||
oauth2_provider: 'OAuth2 Provider'
|
||||
applications: 'Applications'
|
||||
home: 'Home'
|
||||
application:
|
||||
title: 'OAuth authorization required'
|
||||
126
config/locales/doorkeeper.zh-CN.yml
Normal file
126
config/locales/doorkeeper.zh-CN.yml
Normal file
@@ -0,0 +1,126 @@
|
||||
zh-CN:
|
||||
activerecord:
|
||||
attributes:
|
||||
doorkeeper/application:
|
||||
name: '名称'
|
||||
redirect_uri: '登录回调地址'
|
||||
scopes: '权限范围'
|
||||
errors:
|
||||
models:
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
redirect_uri:
|
||||
fragment_present: '不能包含片段(#)'
|
||||
invalid_uri: '必须是有效的 URL 格式'
|
||||
relative_uri: '必须是绝对的 URL 地址'
|
||||
secured_uri: '必须是 HTTPS/SSL 的 URL 地址'
|
||||
|
||||
doorkeeper:
|
||||
applications:
|
||||
confirmations:
|
||||
destroy: '确定要删除应用吗?'
|
||||
buttons:
|
||||
edit: '编辑'
|
||||
destroy: '删除'
|
||||
submit: '提交'
|
||||
cancel: '取消'
|
||||
authorize: '授权'
|
||||
form:
|
||||
error: '抱歉! 提交信息的时候遇到了下面的错误'
|
||||
help:
|
||||
redirect_uri: '每行只能有一个 URL'
|
||||
native_redirect_uri: '使用 %{native_redirect_uri} 作为本地测试'
|
||||
scopes: '用空格隔开权限范围,留空则使用默认设置'
|
||||
edit:
|
||||
title: '修改应用'
|
||||
index:
|
||||
title: '你的应用'
|
||||
new: '创建新应用'
|
||||
name: '名称'
|
||||
callback_url: '登录回调地址'
|
||||
new:
|
||||
title: '创建新应用'
|
||||
show:
|
||||
title: '应用:%{name}'
|
||||
application_id: '应用 ID'
|
||||
secret: '私钥'
|
||||
scopes: '权限范围'
|
||||
callback_urls: '登录回调地址'
|
||||
confidential: 'Confidential'
|
||||
actions: '操作'
|
||||
|
||||
authorizations:
|
||||
buttons:
|
||||
authorize: '授权'
|
||||
deny: '拒绝'
|
||||
error:
|
||||
title: '存在错误'
|
||||
new:
|
||||
title: '需要你授权'
|
||||
prompt: '授权 %{client_name} 使用你的帐号?'
|
||||
able_to: '此应用将会'
|
||||
show:
|
||||
title: '授权码'
|
||||
|
||||
authorized_applications:
|
||||
confirmations:
|
||||
revoke: '确定要注销此应用的认证信息吗?'
|
||||
buttons:
|
||||
revoke: '注销'
|
||||
index:
|
||||
title: '你授权的应用列表'
|
||||
application: '应用'
|
||||
created_at: '授权时间'
|
||||
date_format: '%Y-%m-%d %H:%M:%S'
|
||||
|
||||
errors:
|
||||
messages:
|
||||
# Common error messages
|
||||
invalid_request: '这个请求缺少必要的参数,或者参数值、格式不正确'
|
||||
invalid_redirect_uri: '无效的登录回调地址'
|
||||
unauthorized_client: '未授权的应用,请求无法执行'
|
||||
access_denied: '用户或服务器拒绝了请求'
|
||||
invalid_scope: '请求范围无效、未知或格式不正确'
|
||||
server_error: '服务器异常,无法处理请求'
|
||||
temporarily_unavailable: '服务器维护中或负载过高,暂时无法处理请求'
|
||||
|
||||
#configuration error messages
|
||||
credential_flow_not_configured: 'Resource Owner Password Credentials flow failed,原因是 Doorkeeper.configure.resource_owner_from_credentials 尚未设置。'
|
||||
resource_owner_authenticator_not_configured: 'Resource Owner find failed,原因是 Doorkeeper.configure.resource_owner_authenticator 尚未设置。'
|
||||
|
||||
# Access grant errors
|
||||
unsupported_response_type: '服务器不支持这种响应类型'
|
||||
|
||||
# Access token errors
|
||||
invalid_client: '由于未知、不支持或没有客户端,认证失败'
|
||||
invalid_grant: '授权方式无效,或者登录回调地址无效、过期或已被撤销'
|
||||
unsupported_grant_type: '服务器不支持此类型的授权方式'
|
||||
|
||||
# Password Access token errors
|
||||
invalid_resource_owner: '资源所有者认证无效或没有所有者'
|
||||
|
||||
invalid_token:
|
||||
revoked: "访问令牌已被吊销"
|
||||
expired: "访问令牌已过期"
|
||||
unknown: "访问令牌无效"
|
||||
|
||||
flash:
|
||||
applications:
|
||||
create:
|
||||
notice: '应用创建成功'
|
||||
destroy:
|
||||
notice: '应用删除成功'
|
||||
update:
|
||||
notice: '应用修改成功'
|
||||
authorized_applications:
|
||||
destroy:
|
||||
notice: '已成功注销了应用的认证信息'
|
||||
|
||||
layouts:
|
||||
admin:
|
||||
nav:
|
||||
oauth2_provider: 'OAuth2 提供商'
|
||||
applications: '应用'
|
||||
home: '首页'
|
||||
application:
|
||||
title: 'OAuth 认证'
|
||||
Reference in New Issue
Block a user