Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix i18n keys #2170

Merged
merged 1 commit into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading