1
1
import { MenuItemConstructorOptions } from 'electron' ;
2
2
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' ;
5
7
6
8
export const menu = async ( {
7
9
getConfig,
@@ -13,9 +15,8 @@ export const menu = async ({
13
15
14
16
return [
15
17
{
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' ) ,
19
20
type : 'checkbox' ,
20
21
checked : config . preciseTiming ,
21
22
click ( item ) {
@@ -25,13 +26,13 @@ export const menu = async ({
25
26
} ,
26
27
} ,
27
28
{
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' ) ,
30
31
type : 'submenu' ,
31
32
submenu : [
32
33
{
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' ) ,
35
36
type : 'radio' ,
36
37
checked : config . lineEffect === 'scale' ,
37
38
click ( ) {
@@ -41,8 +42,8 @@ export const menu = async ({
41
42
} ,
42
43
} ,
43
44
{
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' ) ,
46
47
type : 'radio' ,
47
48
checked : config . lineEffect === 'offset' ,
48
49
click ( ) {
@@ -52,8 +53,8 @@ export const menu = async ({
52
53
} ,
53
54
} ,
54
55
{
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' ) ,
57
58
type : 'radio' ,
58
59
checked : config . lineEffect === 'focus' ,
59
60
click ( ) {
@@ -65,8 +66,8 @@ export const menu = async ({
65
66
] ,
66
67
} ,
67
68
{
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' ) ,
70
71
type : 'submenu' ,
71
72
submenu : [
72
73
{
@@ -80,7 +81,7 @@ export const menu = async ({
80
81
} ,
81
82
} ,
82
83
{
83
- label : '[SPACE] ' ,
84
+ label : '" " ' ,
84
85
type : 'radio' ,
85
86
checked : config . defaultTextString === ' ' ,
86
87
click ( ) {
@@ -112,8 +113,8 @@ export const menu = async ({
112
113
] ,
113
114
} ,
114
115
{
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' ) ,
117
118
type : 'checkbox' ,
118
119
checked : config . showTimeCodes ,
119
120
click ( item ) {
@@ -123,9 +124,8 @@ export const menu = async ({
123
124
} ,
124
125
} ,
125
126
{
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' ) ,
129
129
type : 'checkbox' ,
130
130
checked : config . showLyricsEvenIfInexact ,
131
131
click ( item ) {
0 commit comments