mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
- require a successful captcha challenge before recording the day’s attendance - preserve the original attendance summary layout after a successful check-in Signed-off-by: Qi HU <github@spcsky.com>
18 lines
793 B
PHP
18 lines
793 B
PHP
<?php
|
|
|
|
$lang_attendance = array
|
|
(
|
|
'title' => "簽到",
|
|
'success' => "簽到成功",
|
|
'attend_info' => "這是您的第 <b>%u</b> 次簽到,已連續簽到 <b>%u</b> 天,本次簽到獲得 <b>%u</b> 個魔力值。",
|
|
'initial' => "首次簽到獲得 %u 個魔力值。",
|
|
'steps' => "每次連續簽到可額外獲得 %u 個魔力值,直到 %u 封頂。",
|
|
'continuous' => "連續簽到第 %u 天,額外獲得 %u 魔力值。",
|
|
'sorry' => "抱歉",
|
|
'already_attended' => "您今天已經簽到過了,請勿重複刷新。",
|
|
'retroactive_event_text' => '補',
|
|
'retroactive_confirm_tip' => '確定要補簽: ',
|
|
'retroactive_description' => '點擊白色背景的圓點進行補簽。你目前擁有補簽卡 <b>%d</b> 張。',
|
|
'attend_button' => '立即簽到',
|
|
);
|