Skip to content

Commit 8750b54

Browse files
committed
fix(synced-lyrics): fix i18n
1 parent 482a1c5 commit 8750b54

File tree

7 files changed

+71
-33
lines changed

7 files changed

+71
-33
lines changed

src/i18n/resources/en.json

+36
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,42 @@
683683
"refetch-btn": {
684684
"normal": "Refetch lyrics",
685685
"fetching": "Fetching..."
686+
},
687+
"menu": {
688+
"precise-timing": {
689+
"label": "Make the lyrics perfectly synced",
690+
"tooltip": "Calculate to the milisecond the display of the next line (can have a small impact on performance)"
691+
},
692+
"line-effect": {
693+
"label": "Line effect",
694+
"tooltip": "Choose the effect to apply to the current line",
695+
"submenu": {
696+
"scale": {
697+
"label": "Scale",
698+
"tooltip": "Scale the current line"
699+
},
700+
"offset": {
701+
"label": "Offset",
702+
"tooltip": "Offset on the right the current line"
703+
},
704+
"focus": {
705+
"label": "Focus",
706+
"tooltip": "Make only the current line white"
707+
}
708+
}
709+
},
710+
"default-text-string": {
711+
"label": "Default character between lyrics",
712+
"tooltip": "Choose the default character to use for the gap between lyrics"
713+
},
714+
"show-time-codes": {
715+
"label": "Show time codes",
716+
"tooltip": "Show the time codes next to the lyrics"
717+
},
718+
"show-lyrics-even-if-inexact": {
719+
"label": "Show lyrics even if inexact",
720+
"tooltip": "If the song is not found, the plugin tries again with a different search query.\nThe result from the second attempt may not be exact."
721+
}
686722
}
687723
},
688724
"taskbar-mediacontrol": {

src/plugins/synced-lyrics/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import style from './style.css?inline';
22
import { createPlugin } from '@/utils';
3-
4-
import { SyncedLyricsPluginConfig } from './types';
3+
import { t } from '@/i18n';
54

65
import { menu } from './menu';
76
import { renderer } from './renderer';
87

9-
import { t } from '@/i18n';
8+
import type { SyncedLyricsPluginConfig } from './types';
109

1110
export default createPlugin({
1211
name: () => t('plugins.synced-lyrics.name'),
@@ -15,12 +14,13 @@ export default createPlugin({
1514
restartNeeded: true,
1615
addedVersion: '3.5.X',
1716
config: {
17+
enabled: false,
1818
preciseTiming: true,
1919
showLyricsEvenIfInexact: true,
2020
showTimeCodes: false,
2121
defaultTextString: '♪',
2222
lineEffect: 'scale',
23-
} as SyncedLyricsPluginConfig,
23+
} satisfies SyncedLyricsPluginConfig,
2424

2525
menu,
2626
renderer,

src/plugins/synced-lyrics/menu.ts

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import { MenuItemConstructorOptions } from 'electron';
22

3-
import { MenuContext } from '@/types/contexts';
4-
import { SyncedLyricsPluginConfig } from './types';
3+
import { t } from '@/i18n';
4+
5+
import type { MenuContext } from '@/types/contexts';
6+
import type { SyncedLyricsPluginConfig } from './types';
57

68
export const menu = async ({
79
getConfig,
@@ -13,9 +15,8 @@ export const menu = async ({
1315

1416
return [
1517
{
16-
label: 'Make the lyrics perfectly synced',
17-
toolTip:
18-
'Calculate to the milisecond the display of the next line (can have a small impact on performance)',
18+
label: t('plugins.synced-lyrics.menu.precise-timing.label'),
19+
toolTip: t('plugins.synced-lyrics.menu.precise-timing.tooltip'),
1920
type: 'checkbox',
2021
checked: config.preciseTiming,
2122
click(item) {
@@ -25,13 +26,13 @@ export const menu = async ({
2526
},
2627
},
2728
{
28-
label: 'Line effect',
29-
toolTip: 'Choose the effect to apply to the current line',
29+
label: t('plugins.synced-lyrics.menu.line-effect.label'),
30+
toolTip: t('plugins.synced-lyrics.menu.line-effect.tooltip'),
3031
type: 'submenu',
3132
submenu: [
3233
{
33-
label: 'Scale',
34-
toolTip: 'Scale the current line',
34+
label: t('plugins.synced-lyrics.menu.line-effect.submenu.scale.label'),
35+
toolTip: t('plugins.synced-lyrics.menu.line-effect.submenu.scale.tooltip'),
3536
type: 'radio',
3637
checked: config.lineEffect === 'scale',
3738
click() {
@@ -41,8 +42,8 @@ export const menu = async ({
4142
},
4243
},
4344
{
44-
label: 'Offset',
45-
toolTip: 'Offset on the right the current line',
45+
label: t('plugins.synced-lyrics.menu.line-effect.submenu.offset.label'),
46+
toolTip: t('plugins.synced-lyrics.menu.line-effect.submenu.offset.tooltip'),
4647
type: 'radio',
4748
checked: config.lineEffect === 'offset',
4849
click() {
@@ -52,8 +53,8 @@ export const menu = async ({
5253
},
5354
},
5455
{
55-
label: 'Focus',
56-
toolTip: 'Make only the current line white',
56+
label: t('plugins.synced-lyrics.menu.line-effect.submenu.focus.label'),
57+
toolTip: t('plugins.synced-lyrics.menu.line-effect.submenu.focus.tooltip'),
5758
type: 'radio',
5859
checked: config.lineEffect === 'focus',
5960
click() {
@@ -65,8 +66,8 @@ export const menu = async ({
6566
],
6667
},
6768
{
68-
label: 'Default character between lyrics',
69-
toolTip: 'Choose the default string to use for the gap between lyrics',
69+
label: t('plugins.synced-lyrics.menu.default-text-string.label'),
70+
toolTip: t('plugins.synced-lyrics.menu.default-text-string.tooltip'),
7071
type: 'submenu',
7172
submenu: [
7273
{
@@ -80,7 +81,7 @@ export const menu = async ({
8081
},
8182
},
8283
{
83-
label: '[SPACE]',
84+
label: '" "',
8485
type: 'radio',
8586
checked: config.defaultTextString === ' ',
8687
click() {
@@ -112,8 +113,8 @@ export const menu = async ({
112113
],
113114
},
114115
{
115-
label: 'Show time codes',
116-
toolTip: 'Show the time codes next to the lyrics',
116+
label: t('plugins.synced-lyrics.menu.show-time-codes.label'),
117+
toolTip: t('plugins.synced-lyrics.menu.show-time-codes.tooltip'),
117118
type: 'checkbox',
118119
checked: config.showTimeCodes,
119120
click(item) {
@@ -123,9 +124,8 @@ export const menu = async ({
123124
},
124125
},
125126
{
126-
label: 'Show lyrics even if inexact',
127-
toolTip:
128-
'If the song is not found, the plugin tries again with a different search query.\nThe result from the second attempt may not be exact.',
127+
label: t('plugins.synced-lyrics.menu.show-lyrics-even-if-inexact.label'),
128+
toolTip: t('plugins.synced-lyrics.menu.show-lyrics-even-if-inexact.tooltip'),
129129
type: 'checkbox',
130130
checked: config.showLyricsEvenIfInexact,
131131
click(item) {

src/plugins/synced-lyrics/renderer/components/LyricsContainer.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { SyncedLine } from './SyncedLine';
55
import { t } from '@/i18n';
66
import { getSongInfo } from '@/providers/song-info-front';
77

8-
import { LineLyrics } from '../../types';
98
import {
109
differentDuration,
1110
hadSecondAttempt,
@@ -14,6 +13,8 @@ import {
1413
makeLyricsRequest,
1514
} from '../lyrics/fetch';
1615

16+
import type { LineLyrics } from '../../types';
17+
1718
export const [debugInfo, setDebugInfo] = createSignal<string>();
1819
export const [lineLyrics, setLineLyrics] = createSignal<LineLyrics[]>([]);
1920
export const [currentTime, setCurrentTime] = createSignal<number>(-1);

src/plugins/synced-lyrics/renderer/lyrics/fetch.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import { createSignal } from 'solid-js';
22
import { jaroWinkler } from '@skyra/jaro-winkler';
33

4-
import { SongInfo } from '@/providers/song-info';
5-
6-
import { LineLyrics, LRCLIBSearchResponse } from '../../types';
74
import { config } from '../renderer';
5+
86
import { setDebugInfo, setLineLyrics } from '../components/LyricsContainer';
97

8+
import type { SongInfo } from '@/providers/song-info';
9+
import type { LineLyrics, LRCLIBSearchResponse } from '../../types';
10+
1011
// prettier-ignore
1112
export const [isInstrumental, setIsInstrumental] = createSignal(false);
1213
// prettier-ignore

src/plugins/synced-lyrics/renderer/renderer.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import { createSignal, Show } from 'solid-js';
22

3-
import { VideoDetails } from '@/types/video-details';
4-
53
import { LyricsContainer } from './components/LyricsContainer';
64

7-
import { SyncedLyricsPluginConfig } from '../types';
5+
import type { VideoDetails } from '@/types/video-details';
6+
import type { SyncedLyricsPluginConfig } from '../types';
87

98
export const [isVisible, setIsVisible] = createSignal<boolean>(false);
109

src/plugins/synced-lyrics/renderer/utils.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { render } from 'solid-js/web';
22

33
import { LyricsRenderer, setIsVisible, setPlayerState } from './renderer';
4-
import { VideoDetails } from '@/types/video-details';
4+
5+
import type { VideoDetails } from '@/types/video-details';
56

67
export const selectors = {
78
head: '#tabsContent > .tab-header:nth-of-type(2)',

0 commit comments

Comments
 (0)