mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-24 03:57:22 +08:00
finish oauth provider + docker service wait for MySQL
This commit is contained in:
@@ -17,12 +17,12 @@ return [
|
||||
|
||||
'msg_title' => 'Claim settle result last month(:month):',
|
||||
'msg_subject' => ':month claim settlement',
|
||||
'claim_total' => 'Claim torrent total: <b>:total</b>',
|
||||
'claim_reached_counts' => 'Reached torrent counts: <b>:counts</b>',
|
||||
'claim_reached_summary' => 'Reached torrent get bonus per hour: <b>:bonus_per_hour</b>, seed time average(hour): <b>:hours</b>, get bonus total: <b>:bonus_total</b>',
|
||||
'claim_unreached_remain_counts' => 'Unreached torrent remain counts: <b>:counts</b>',
|
||||
'claim_unreached_remove_counts' => 'Unreached torrent remove counts: <b>:counts</b>',
|
||||
'claim_unreached_summary' => 'Deduct bonus every unreached torrent:<b>:deduct_per_torrent</b>, total deduct: <b>:deduct_total</b>',
|
||||
'claim_total' => 'Claim torrent total: [b]:total[/b]',
|
||||
'claim_reached_counts' => 'Reached torrent counts: [b]:counts[/b]',
|
||||
'claim_reached_summary' => 'Reached torrent get bonus per hour: [b]:bonus_per_hour[/b], seed time average(hour): [b]:hours[/b], get bonus total: [b]:bonus_total[/b]',
|
||||
'claim_unreached_remain_counts' => 'Unreached torrent remain counts: [b]:counts[/b]',
|
||||
'claim_unreached_remove_counts' => 'Unreached torrent remove counts: [b]:counts[/b]',
|
||||
'claim_unreached_summary' => 'Deduct bonus every unreached torrent:[b]:deduct_per_torrent[/b], total deduct: [b]:deduct_total[/b]',
|
||||
|
||||
'confirm_give_up' => 'Are you sure you want to give up claiming this torrent?',
|
||||
'add_claim' => 'Claim',
|
||||
|
||||
@@ -34,7 +34,7 @@ return [
|
||||
'cancel' => 'Cancel',
|
||||
'reset' => 'Reset',
|
||||
'anonymous' => 'Anonymous',
|
||||
'infinite' => 'Infinite',
|
||||
'infinite' => 'Inf.',
|
||||
'save' => 'Save',
|
||||
'country' => 'Country',
|
||||
'city' => 'City',
|
||||
|
||||
@@ -18,4 +18,12 @@ return [
|
||||
'id_claim' => 'ID claim',
|
||||
'username_claim' => 'username claim',
|
||||
'email_claim' => 'email claim',
|
||||
'level_claim' => 'Level field name',
|
||||
'level_limit' => 'Level limit',
|
||||
'level_limit_help' => 'Allow only users not below this level to log in',
|
||||
'get_access_token_error' => 'Getting access token error: :error',
|
||||
'get _provider_user_id_error' => 'Unable to get user ID via field :id_claim',
|
||||
'get_provider_level_error' => 'Unable to get user level via field :level_claim',
|
||||
'provider_level_not_ allowed' => 'Only users with level :level_limit or above are allowed to log in',
|
||||
'provider_email_already_exists' => 'Email: :email is already in use',
|
||||
];
|
||||
|
||||
@@ -17,12 +17,12 @@ return [
|
||||
|
||||
'msg_title' => '上个月(:month)认领结算如下:',
|
||||
'msg_subject' => ':month 认领结算',
|
||||
'claim_total' => '认领种子数:<b>:total</b>',
|
||||
'claim_reached_counts' => '达标数:<b>:counts</b>',
|
||||
'claim_reached_summary' => '达标种子数每小时魔力:<b>:bonus_per_hour</b>, 平均做种小时数:<b>:hours</b>, 获得魔力:<b>:bonus_total</b>',
|
||||
'claim_unreached_remain_counts' => '未达标保留数:<b>:counts</b>',
|
||||
'claim_unreached_remove_counts' => '未达标删除数:<b>:counts</b>',
|
||||
'claim_unreached_summary' => '未达标每个种子扣除魔力:<b>:deduct_per_torrent</b>,总扣除魔力:<b>:deduct_total</b>',
|
||||
'claim_total' => '认领种子数:[b]:total[/b]',
|
||||
'claim_reached_counts' => '达标数:[b]:counts[/b]',
|
||||
'claim_reached_summary' => '达标种子数每小时魔力:[b]:bonus_per_hour[/b], 平均做种小时数:[b]:hours[/b], 获得魔力:[b]:bonus_total[/b]',
|
||||
'claim_unreached_remain_counts' => '未达标保留数:[b]:counts[/b]',
|
||||
'claim_unreached_remove_counts' => '未达标删除数:[b]:counts[/b]',
|
||||
'claim_unreached_summary' => '未达标每个种子扣除魔力:[b]:deduct_per_torrent[/b],总扣除魔力:[b]:deduct_total[/b]',
|
||||
|
||||
'confirm_give_up' => '确定要放弃认领此种子吗?',
|
||||
'add_claim' => '认领',
|
||||
|
||||
@@ -18,4 +18,12 @@ return [
|
||||
'id_claim' => 'ID 字段名',
|
||||
'username_claim' => '用户名字段名',
|
||||
'email_claim' => '邮箱字段名',
|
||||
'level_claim' => '等级字段名',
|
||||
'level_limit' => '等级限制',
|
||||
'level_limit_help' => '只允许不低于此等级的用户登录',
|
||||
'get_access_token_error' => '获取访问令牌错误::error',
|
||||
'get_provider_user_id_error' => '无法通过字段 :id_claim 获取用户 ID',
|
||||
'get_provider_level_error' => '无法通过字段 :level_claim 获取用户等级',
|
||||
'provider_level_not_allowed' => '仅允许 :level_limit 或以上等级的用户登录',
|
||||
'provider_email_already_exists' => '邮箱::email 已经被使用',
|
||||
];
|
||||
|
||||
@@ -16,12 +16,12 @@ return [
|
||||
|
||||
'msg_title' => '上個月(:month)認領結算如下:',
|
||||
'msg_subject' => ':month 認領結算',
|
||||
'claim_total' => '認領種子數:<b>:total</b>',
|
||||
'claim_reached_counts' => '達標數:<b>:counts</b>',
|
||||
'claim_reached_summary' => '達標種子數每小時魔力:<b>:bonus_per_hour</b>, 平均做種小時數:<b>:hours</b>, 獲得魔力:<b>:bonus_total</b>',
|
||||
'claim_unreached_remain_counts' => '未達標保留數:<b>:counts</b>',
|
||||
'claim_unreached_remove_counts' => '未達標刪除數:<b>:counts</b>',
|
||||
'claim_unreached_summary' => '未達標每個種子扣除魔力:<b>:deduct_per_torrent</b>,總扣除魔力:<b>:deduct_total</b>',
|
||||
'claim_total' => '認領種子數:[b]:total[/b]',
|
||||
'claim_reached_counts' => '達標數:[b]:counts[/b]',
|
||||
'claim_reached_summary' => '達標種子數每小時魔力:[b]:bonus_per_hour[/b], 平均做種小時數:[b]:hours[/b], 獲得魔力:[b]:bonus_total[/b]',
|
||||
'claim_unreached_remain_counts' => '未達標保留數:[b]:counts[/b]',
|
||||
'claim_unreached_remove_counts' => '未達標刪除數:[b]:counts[/b]',
|
||||
'claim_unreached_summary' => '未達標每個種子扣除魔力:[b]:deduct_per_torrent[/b],總扣除魔力:[b]:deduct_total[/b]',
|
||||
|
||||
'confirm_give_up' => '確定要放棄認領此種子嗎?',
|
||||
'add_claim' => '認領',
|
||||
|
||||
@@ -18,4 +18,12 @@ return [
|
||||
'id_claim' => 'ID 字段名',
|
||||
'username_claim' => '用戶名字段名',
|
||||
'email_claim' => '郵箱字段名',
|
||||
'level_claim' => '等級字段名',
|
||||
'level_limit' => '等級限製',
|
||||
'level_limit_help' => '只允許不低於此等級的用戶登錄',
|
||||
'get_access_token_error' => '獲取訪問令牌錯誤::error',
|
||||
'get_provider_user_id_error' => '無法通過字段 :id_claim 獲取用戶 ID',
|
||||
'get_provider_level_error' => '無法通過字段 :level_claim 獲取用戶等級',
|
||||
'provider_level_not_allowed' => '僅允許 :level_limit 或以上等級的用戶登錄',
|
||||
'provider_email_already_exists' => '郵箱::email 已經被使用',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user