feat(translation): 优化排序方式的表达方式
This commit is contained in:
parent
51c2352548
commit
af8b83a6c1
4 changed files with 4 additions and 4 deletions
|
|
@ -34,7 +34,7 @@ android {
|
|||
applicationId = "cn.super12138.todo"
|
||||
minSdk = 24
|
||||
targetSdk = 35
|
||||
versionCode = 555
|
||||
versionCode = 556
|
||||
versionName = "2.0.2"
|
||||
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ enum class SortingMethod(val id: Int) {
|
|||
|
||||
fun getDisplayName(context: Context): String {
|
||||
val resId = when (this) {
|
||||
Date -> R.string.sorting_date
|
||||
Date -> R.string.sorting_sequential
|
||||
Subject -> R.string.sorting_subject
|
||||
Priority -> R.string.sorting_priority
|
||||
Completion -> R.string.sorting_completion
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@
|
|||
<string name="pref_view_on_github">在 GitHub 上查看</string>
|
||||
<string name="pref_view_on_github_desc">查看源代码、提交错误报告和改进建议</string>
|
||||
<string name="tip_discard_changes">退出编辑后将无法找回你修改过的数据。确定退出编辑吗?</string>
|
||||
<string name="sorting_date">日期</string>
|
||||
<string name="sorting_sequential">添加先后顺序</string>
|
||||
<string name="sorting_subject">学科</string>
|
||||
<string name="sorting_priority">优先级</string>
|
||||
<string name="sorting_completion">完成状态</string>
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@
|
|||
<string name="pref_view_on_github">View On GitHub</string>
|
||||
<string name="pref_view_on_github_desc">View source code, submit bug reports, and improvement suggestions</string>
|
||||
<string name="tip_discard_changes">After exiting edit mode, you will not be able to retrieve the data you have modified. Are you sure you want to exit editing?</string>
|
||||
<string name="sorting_date">Date</string>
|
||||
<string name="sorting_sequential">Sequential</string>
|
||||
<string name="sorting_subject">Subject</string>
|
||||
<string name="sorting_priority">Priority</string>
|
||||
<string name="sorting_completion">Completion</string>
|
||||
|
|
|
|||
Loading…
Reference in a new issue