VerveDo/app/src/main/res/values/strings.xml
Super12138 77fc59238f 更新备份恢复数据库的实现方式
不再支持旧方式
使用 Room Backup 1.0.2,对其部分代码改用 Kotlin 原生实现,部分参考 LibChecker 的实现
2024-12-25 19:08:56 +08:00

89 lines
No EOL
5.8 KiB
XML

<resources>
<string name="app_name">To Do</string>
<!--About Activity-->
<string name="about_label">About</string>
<string name="author">Super12138</string>
<string name="check_update">Check for updates</string>
<string name="view_source">View source on GitHub</string>
<!--Crash Activity-->
<string name="error_title">Oops! App went wrong</string>
<string name="error_tips">Don\'t worry, below is the error log. Please select all and copy it, and then provide feedback on GitHub Issues. I will resolve the issue as soon as possible.</string>
<string name="no_crash_logs">No crash logs</string>
<string name="exit_app">Exit app</string>
<!--Subjects-->
<string name="subject_unknown">Unknown</string>
<string name="subject_chinese">Chinese</string>
<string name="subject_math">Math</string>
<string name="subject_english">English</string>
<string name="subject_biology">Biology</string>
<string name="subject_physics">Physics</string>
<string name="subject_chemistry">Chemistry</string>
<string name="subject_history">History</string>
<string name="subject_geography">Geography</string>
<string name="subject_law">Law</string>
<string name="subject_other">Other</string>
<!--UI-->
<string name="cancel">Cancel</string>
<string name="ok">OK</string>
<string name="add_task">Add Task</string>
<string name="warning">Warning</string>
<string name="delete_confirm">After deleting, all to-do items cannot be restored. Are you sure to delete it?</string>
<string name="tasks_textfield_hint">Tasks</string>
<string name="delete_one">Delete</string>
<string name="check_one">Checked this task</string>
<string name="no_tasks">No tasks</string>
<!--<string name="delete_undo">Undo</string>-->
<!--<string name="task_deleted">This task has been deleted</string>-->
<string name="content_cannot_be_empty">Task content cannot be empty</string>
<!--Settings-->
<string name="settings_label">Settings</string>
<string name="appearance">Appearance</string>
<string name="dark_mode">Dark mode</string>
<string name="dark_mode_summary">Enable or disable the dark mode for this app</string>
<string name="config">Config</string>
<string name="others">Others</string>
<string name="secure_mode">Prevent screenshot</string>
<string name="secure_mode_summary">When it opens anybody cannot take screenshot for to do list</string>
<string name="need_restart_app">Effective after restarting the app</string>
<string name="restart_app_now">Restart now</string>
<string name="backup">Backup database</string>
<string name="backup_summary">Backup to-do database</string>
<string name="restore">Restore database</string>
<string name="restore_summary">Restore the previously backed up to-do database</string>
<string name="restore_need_restart_app">Need to restart the app to apply the recovered data</string>
<string name="json_data_incorrect">JSON data format is wrong. Please check the paste data format</string>
<string name="restore_failed">Restore failed, please check if you are attempting to restore the same backup data again.</string>
<string name="view_all_tasks_label">View all tasks</string>
<string name="all_tasks_label">All tasks</string>
<string name="view_all_tasks_summary">View all tasks including those that have been checked as completed</string>
<string name="info_subject">Subject: %s</string>
<string name="info_state_complete">State: complete</string>
<string name="info_state_incomplete">State: incomplete</string>
<string name="info_uuid">UUID: %s</string>
<string name="remain_text">%s tasks remaining</string>
<string name="save">Save</string>
<string name="update_task">Update task</string>
<string name="update">Update</string>
<string name="haptic_feedback">Haptic feedback</string>
<string name="haptic_feedback_summary">Some tap operations will cause a slight vibration</string>
<string name="previous_page">Previous page</string>
<string name="next_page">Next page</string>
<string name="start">Start</string>
<string name="welcome_label">Welcome</string>
<string name="intro_title">Welcome to use To Do</string>
<string name="intro_description">A simple to-do app</string>
<string name="enter_app">Enter at once</string>
<string name="reenter_welcome_activity">Reenter welcome page</string>
<string name="progress_title">Take a look!</string>
<string name="progress_description">This is the to-do progress bar that tracks your task completion.\n It updates when you add or mark tasks as done.\n The number on the left shows your completed tasks, while the number on the right indicates the total tasks.\n Below these numbers, a small line of text will show how many tasks are remaining.</string>
<string name="todo_btn_title">Control is at your fingertips!</string>
<string name="todo_btn_description">This is the button to add new to-dos.\n Click it to create a new task.\n Long press to delete all your current to-dos (this action cannot be undone, so be cautious).</string>
<string name="todo_item_title">Long press for more options!</string>
<string name="todo_item_item_title">This is the task content</string>
<string name="todo_item_item_subject">This is the task subject</string>
<string name="todo_item_description_1">"This is an item in your to-do list.\n Click the checkmark on the right to mark it as completed.\n If you need to edit this to-do, just long press to make changes. "</string>
<string name="tips_backup_success">Backup successful</string>
<string name="tips_backup_failed">Backup failed (Exit code: %d)</string>
<string name="tips_restore_success">Restore Successful</string>
<string name="tips_restore_failed">Restore failed (Exit code: %d)</string>
</resources>