优化设置文字表达

This commit is contained in:
lyswhut 2021-08-07 14:54:39 +08:00
parent 593183ddf8
commit 53e4d1f5a2
3 changed files with 4 additions and 2 deletions

View File

@ -113,6 +113,7 @@
"setting_lyric_desktop_text_y_bottom": "Bottom",
"setting_lyric_desktop_text_y_center": "Center",
"setting_lyric_desktop_text_y_top": "Top",
"setting_lyric_desktop_theme": "Lyrics theme color",
"setting_other": "Other",
"setting_other_cache": "Cache management (including the cache of songs, lyrics, error logs, etc., it is not recommended to clean up if there is no problem related to song playback)",
"setting_other_cache_clear_btn": "Clear Cache",

View File

@ -112,7 +112,8 @@
"setting_lyric_desktop_text_y": "歌词垂直对齐方式",
"setting_lyric_desktop_text_y_bottom": "居底",
"setting_lyric_desktop_text_y_center": "居中",
"setting_lyric_desktop_text_y_top": "居上",
"setting_lyric_desktop_text_y_top": "居顶",
"setting_lyric_desktop_theme": "歌词主题色",
"setting_other": "其他",
"setting_other_cache": "缓存管理(包括歌曲、歌词、错误日志等缓存,没有歌曲播放相关的问题不建议清理)",
"setting_other_cache_clear_btn": "清理缓存",

View File

@ -30,7 +30,7 @@ export default memo(() => {
const setThemeDesktopLyric = useDispatch('common', 'setThemeDesktopLyric')
return (
<SubTitle title={t('setting_basic_theme')}>
<SubTitle title={t('setting_lyric_desktop_theme')}>
<View style={styles.list}>
{
themes.map(({ id, value }) => <ThemeItem key={id} color={value} id={id} setTheme={setThemeDesktopLyric} />)