更新Strings.xml

This commit is contained in:
LittleTurtle2333
2022-06-29 16:55:56 +08:00
parent 8e85c34db3
commit 87a8059a06
2 changed files with 5 additions and 3 deletions

View File

@@ -254,9 +254,9 @@ class SettingsActivity : MIUIActivity() {
}
val customClockMode: HashMap<Int, String> = hashMapOf<Int, String>().also {
it[0] = "Off"
it[1] = "Preset"
it[2] = "Geek"
it[0] = getString(R.string.off)
it[1] = getString(R.string.preset)
it[2] = getString(R.string.geek)
}
TextWithSpinner(
TextV(textId = R.string.custom_clock_mode),

View File

@@ -228,4 +228,6 @@
<string name="off">Off</string>
<string name="center">Center</string>
<string name="left_or_right">Left or Right</string>
<string name="preset">Preset</string>
<string name="geek">Geek</string>
</resources>