This commit is contained in:
2024-05-13 10:47:41 +08:00
parent 6d65305df8
commit 6f14d7199e

View File

@@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name MusicBrainZ 生成 OpenCD 信息 // @name MusicBrainZ 生成 OpenCD 信息
// @namespace https://github.com/lifegpc/userscript // @namespace https://github.com/lifegpc/userscript
// @version 0.0.5 // @version 0.0.6
// @description MusicBrainZ 生成 OpenCD 所需信息 // @description MusicBrainZ 生成 OpenCD 所需信息
// @author lifegpc // @author lifegpc
// @match https://musicbrainz.org/release/* // @match https://musicbrainz.org/release/*
@@ -19,6 +19,7 @@ const areaI18n = {
const languageI18n = { const languageI18n = {
japanese: '日语', japanese: '日语',
'[multiple languages]': '[多种语言]', '[multiple languages]': '[多种语言]',
english: '英语',
} }
/**@param {string} type */ /**@param {string} type */
function getTypeI18n(type) { function getTypeI18n(type) {
@@ -100,7 +101,7 @@ GM_registerMenuCommand("生成 Info.txt", () => {
if (discList.length > 1) { if (discList.length > 1) {
discInfo += "\n"; discInfo += "\n";
const discId = disc.querySelector("thead th a").id.replace("disc", "Disc "); const discId = disc.querySelector("thead th a").id.replace("disc", "Disc ");
trackInfo += `${discId} ${dumpTime(discLength)}\n`; trackInfo += `${discId} (${dumpTime(discLength)})\n`;
} }
trackInfo += discInfo; trackInfo += discInfo;
} }