Skip to content

Commit

Permalink
popupLyrics Lrclib 번역
Browse files Browse the repository at this point in the history
  • Loading branch information
Lseoksee committed Aug 28, 2024
1 parent 9e5b497 commit aa9401f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CustomApps/lyrics-plus/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const CONFIG = {
},
lrclib: {
on: getConfig("lyrics-plus:provider:lrclib:on"),
desc: "LRCLIB는 오픈소스 가사 제공 서비스 입니다. 실시간 가사, 일반가사 모두 지원합니다",
desc: "LRCLIB는 오픈소스 가사 제공 서비스 입니다. 실시간 가사, 일반가사 모두 지원합니다.",
modes: [SYNCED, UNSYNCED],
},
genius: {
Expand Down
8 changes: 4 additions & 4 deletions Extensions/popupLyrics.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,15 +270,15 @@ function PopupLyrics() {
});

if (body.status !== 200) {
return { error: "Request error: Track wasn't found" };
return { error: "요청오류: 트랙을 찾을 수 없습니다." };
}

const meta = await body.json();
if (meta?.instrumental) {
return { error: "Instrumental" };
return { error: "♪ 전주곡 ♪" };
}
if (!meta?.syncedLyrics) {
return { error: "No synced lyrics" };
return { error: "실시간가사 없음" };
}

// Preprocess lyrics by removing [tags] and empty lines
Expand Down Expand Up @@ -335,7 +335,7 @@ function PopupLyrics() {
lrclib: {
on: boolLocalStorage("popup-lyrics:services:lrclib:on"),
call: LyricProviders.fetchLrclib,
desc: "Lyrics sourced from lrclib.net. Supports both synced and unsynced lyrics. LRCLIB is a free and open-source lyrics provider.",
desc: "LRCLIB는 오픈소스 가사 제공 서비스 입니다. 실시간 가사, 일반가사 모두 지원합니다.",
},
},
servicesOrder: [],
Expand Down

0 comments on commit aa9401f

Please sign in to comment.