项目文件夹

文件
wehub-resource-sync 2114b14ee0
Sync main into demo / sync (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:35:26 +08:00

30 行
640 B
TypeScript

此文件含有模棱两可的 Unicode 字符
此文件含有可能会与其他字符混淆的 Unicode 字符。 如果您是想特意这样的,可以安全地忽略该警告。 使用 Escape 按钮显示他们。
/**
* AnswerSheet 字符串资源 — 对应 AOSP res/values/strings.xml
*/
export const strings = {
// App
app_name: '答题卡',
// Page title
default_question: '请回答以下问题',
// Field placeholders
placeholder_number: '请输入数字',
placeholder_text: '请输入',
placeholder_select: '请选择',
// Repeatable
add_item: ' 添加一项',
// Submit
btn_submit: '提交答案',
btn_modify: '修改答案',
submitted_label: '答案已提交',
// Empty state
empty_title: '暂无题目',
empty_hint: '等待任务分配…',
} as const;
export type StringKey = keyof typeof strings;