Skip to content

Commit

Permalink
Fix i18n keys (#2170)
Browse files Browse the repository at this point in the history
`setting__setting__desktop_lyric_font_weight` to
`setting__desktop_lyric_font_weight`
  • Loading branch information
3gf8jv4dv authored Dec 15, 2024
1 parent fd0b9c5 commit ba33d5a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions src/lang/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -541,9 +541,9 @@
"setting__search_focus_search_box": "Automatically focus search box on startup",
"setting__search_history": "Enable Search History",
"setting__search_hot": "Enable Top Searches",
"setting__setting__desktop_lyric_font_weight_extended": "Translated & romanized lyrics",
"setting__setting__desktop_lyric_font_weight_font": "Verbatim lyrics",
"setting__setting__desktop_lyric_font_weight_line": "Progressive lyrics",
"setting__desktop_lyric_font_weight_extended": "Translated & romanized lyrics",
"setting__desktop_lyric_font_weight_font": "Verbatim lyrics",
"setting__desktop_lyric_font_weight_line": "Progressive lyrics",
"setting__sync": "Data Sync",
"setting__sync_client_address": "Current device address: {address}",
"setting__sync_client_host": "Sync service address",
Expand Down
6 changes: 3 additions & 3 deletions src/lang/zh-cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -541,9 +541,9 @@
"setting__search_focus_search_box": "启动时自动聚焦搜索框",
"setting__search_history": "显示历史搜索记录",
"setting__search_hot": "显示热门搜索",
"setting__setting__desktop_lyric_font_weight_extended": "翻译、罗马音歌词",
"setting__setting__desktop_lyric_font_weight_font": "逐字歌词",
"setting__setting__desktop_lyric_font_weight_line": "逐行歌词",
"setting__desktop_lyric_font_weight_extended": "翻译、罗马音歌词",
"setting__desktop_lyric_font_weight_font": "逐字歌词",
"setting__desktop_lyric_font_weight_line": "逐行歌词",
"setting__sync": "数据同步",
"setting__sync_client_address": "当前设备地址:{address}",
"setting__sync_client_host": "同步服务地址",
Expand Down
6 changes: 3 additions & 3 deletions src/lang/zh-tw.json
Original file line number Diff line number Diff line change
Expand Up @@ -541,9 +541,9 @@
"setting__search_focus_search_box": "啟動時自動聚焦搜尋框",
"setting__search_history": "顯示歷史搜尋記錄",
"setting__search_hot": "顯示熱門搜尋",
"setting__setting__desktop_lyric_font_weight_extended": "翻譯、羅馬音歌詞",
"setting__setting__desktop_lyric_font_weight_font": "逐字歌詞",
"setting__setting__desktop_lyric_font_weight_line": "逐行歌詞",
"setting__desktop_lyric_font_weight_extended": "翻譯、羅馬音歌詞",
"setting__desktop_lyric_font_weight_font": "逐字歌詞",
"setting__desktop_lyric_font_weight_line": "逐行歌詞",
"setting__sync": "資料同步",
"setting__sync_client_address": "目前設備位址:{address}",
"setting__sync_client_host": "同步服務地址",
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/views/Setting/components/SettingDesktopLyric.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ dd
dd
h3#setting__desktop_lyric_font_weight {{ $t('setting__desktop_lyric_font_weight') }}
div
base-checkbox.gap-left(id="setting_setting__desktop_lyric_font_weight_font" :model-value="appSetting['desktopLyric.style.isFontWeightFont']" :label="$t('setting__setting__desktop_lyric_font_weight_font')" @update:model-value="updateSetting({ 'desktopLyric.style.isFontWeightFont': $event })")
base-checkbox.gap-left(id="setting_setting__desktop_lyric_font_weight_line" :model-value="appSetting['desktopLyric.style.isFontWeightLine']" :label="$t('setting__setting__desktop_lyric_font_weight_line')" @update:model-value="updateSetting({ 'desktopLyric.style.isFontWeightLine': $event })")
base-checkbox.gap-left(id="setting_setting__desktop_lyric_font_weight_extended" :model-value="appSetting['desktopLyric.style.isFontWeightExtended']" :label="$t('setting__setting__desktop_lyric_font_weight_extended')" @update:model-value="updateSetting({ 'desktopLyric.style.isFontWeightExtended': $event })")
base-checkbox.gap-left(id="setting_setting__desktop_lyric_font_weight_font" :model-value="appSetting['desktopLyric.style.isFontWeightFont']" :label="$t('setting__desktop_lyric_font_weight_font')" @update:model-value="updateSetting({ 'desktopLyric.style.isFontWeightFont': $event })")
base-checkbox.gap-left(id="setting_setting__desktop_lyric_font_weight_line" :model-value="appSetting['desktopLyric.style.isFontWeightLine']" :label="$t('setting__desktop_lyric_font_weight_line')" @update:model-value="updateSetting({ 'desktopLyric.style.isFontWeightLine': $event })")
base-checkbox.gap-left(id="setting_setting__desktop_lyric_font_weight_extended" :model-value="appSetting['desktopLyric.style.isFontWeightExtended']" :label="$t('setting__desktop_lyric_font_weight_extended')" @update:model-value="updateSetting({ 'desktopLyric.style.isFontWeightExtended': $event })")


dd
Expand Down

0 comments on commit ba33d5a

Please sign in to comment.