diff --git a/enjoy/src/i18n/en.json b/enjoy/src/i18n/en.json index 0f7afccf..07ecae5c 100644 --- a/enjoy/src/i18n/en.json +++ b/enjoy/src/i18n/en.json @@ -727,6 +727,7 @@ "libraryDescriptions": { "library": "Contains all files created by Enjoy while you are using the app.", "database": "Records all your activities and settings.", + "settings": "Save all your settings.", "audios": "Contains all audio files you added.", "videos": "Contains all video files you added.", "segments": "Contains all segments you make recording or note.", diff --git a/enjoy/src/i18n/zh-CN.json b/enjoy/src/i18n/zh-CN.json index becd5ec7..7cda8e26 100644 --- a/enjoy/src/i18n/zh-CN.json +++ b/enjoy/src/i18n/zh-CN.json @@ -727,6 +727,7 @@ "libraryDescriptions": { "library": "资源库总目录,包含所有您使用 Enjoy 过程产生的文件", "database": "数据库文件,记录您使用 Enjoy 的所有数据", + "settings": "您的配置文件", "audios": "您添加的所有音频文件", "videos": "您添加的所有视频文件", "segments": "音频/视频文件的段落,跟读过程中产生", diff --git a/enjoy/src/main/window.ts b/enjoy/src/main/window.ts index 4bb41b6a..2b491dd1 100644 --- a/enjoy/src/main/window.ts +++ b/enjoy/src/main/window.ts @@ -388,6 +388,7 @@ ${log} const paths: { [key: string]: string } = { library: settings.libraryPath(), database: settings.dbPath(), + settings: settings.file(), audios: path.join(settings.userDataPath(), "audios"), videos: path.join(settings.userDataPath(), "videos"), segments: path.join(settings.userDataPath(), "segments"),