Files
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 lines
640 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 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;