finish oauth provider + docker service wait for MySQL

This commit is contained in:
xiaomlove
2025-05-01 14:18:30 +07:00
parent cc89e8aa59
commit af33e5cba7
26 changed files with 450 additions and 41 deletions
+6 -6
View File
@@ -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',
+1 -1
View File
@@ -34,7 +34,7 @@ return [
'cancel' => 'Cancel',
'reset' => 'Reset',
'anonymous' => 'Anonymous',
'infinite' => 'Infinite',
'infinite' => 'Inf.',
'save' => 'Save',
'country' => 'Country',
'city' => 'City',
+8
View File
@@ -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',
];