diff --git a/src/locales/en-US.ts b/src/locales/en-US.ts index 6a9ea314..621038dc 100644 --- a/src/locales/en-US.ts +++ b/src/locales/en-US.ts @@ -2134,4 +2134,74 @@ export default { th: 'Thai', }, }, + douban: { + type: 'Type', + sort: 'Sort', + genre: 'Genre', + zone: 'Region', + year: 'Year', + sortType: { + comprehensive: 'Comprehensive', + releaseDate: 'Release Date', + recentHot: 'Recent Hot', + highScore: 'High Score', + }, + genreType: { + comedy: 'Comedy', + romance: 'Romance', + action: 'Action', + scienceFiction: 'Science Fiction', + animation: 'Animation', + mystery: 'Mystery', + crime: 'Crime', + thriller: 'Thriller', + adventure: 'Adventure', + music: 'Music', + history: 'History', + fantasy: 'Fantasy', + horror: 'Horror', + war: 'War', + biography: 'Biography', + musical: 'Musical', + martialArts: 'Martial Arts', + erotic: 'Erotic', + disaster: 'Disaster', + western: 'Western', + documentary: 'Documentary', + shortFilm: 'Short Film', + }, + zoneType: { + chinese: 'Chinese', + europeanAmerican: 'European & American', + korean: 'Korean', + japanese: 'Japanese', + mainlandChina: 'Mainland China', + usa: 'USA', + hongKong: 'Hong Kong', + taiwan: 'Taiwan', + uk: 'UK', + france: 'France', + germany: 'Germany', + italy: 'Italy', + spain: 'Spain', + india: 'India', + thailand: 'Thailand', + russia: 'Russia', + canada: 'Canada', + australia: 'Australia', + ireland: 'Ireland', + sweden: 'Sweden', + brazil: 'Brazil', + denmark: 'Denmark', + }, + yearType: { + '2020s': '2020s', + '2010s': '2010s', + '2000s': '2000s', + '1990s': '1990s', + '1980s': '1980s', + '1970s': '1970s', + '1960s': '1960s', + }, + }, } diff --git a/src/locales/zh-CN.ts b/src/locales/zh-CN.ts index fdf31c75..1e1d76eb 100644 --- a/src/locales/zh-CN.ts +++ b/src/locales/zh-CN.ts @@ -2085,4 +2085,74 @@ export default { th: '泰语', }, }, + douban: { + type: '类型', + sort: '排序', + genre: '风格', + zone: '地区', + year: '年代', + sortType: { + comprehensive: '综合排序', + releaseDate: '首播时间', + recentHot: '近期热度', + highScore: '高分优先', + }, + genreType: { + comedy: '喜剧', + romance: '爱情', + action: '动作', + scienceFiction: '科幻', + animation: '动画', + mystery: '悬疑', + crime: '犯罪', + thriller: '惊悚', + adventure: '冒险', + music: '音乐', + history: '历史', + fantasy: '奇幻', + horror: '恐怖', + war: '战争', + biography: '传记', + musical: '歌舞', + martialArts: '武侠', + erotic: '情色', + disaster: '灾难', + western: '西部', + documentary: '纪录片', + shortFilm: '短片', + }, + zoneType: { + chinese: '华语', + europeanAmerican: '欧美', + korean: '韩国', + japanese: '日本', + mainlandChina: '中国大陆', + usa: '美国', + hongKong: '中国香港', + taiwan: '中国台湾', + uk: '英国', + france: '法国', + germany: '德国', + italy: '意大利', + spain: '西班牙', + india: '印度', + thailand: '泰国', + russia: '俄罗斯', + canada: '加拿大', + australia: '澳大利亚', + ireland: '爱尔兰', + sweden: '瑞典', + brazil: '巴西', + denmark: '丹麦', + }, + yearType: { + '2020s': '2020年代', + '2010s': '2010年代', + '2000s': '2000年代', + '1990s': '90年代', + '1980s': '80年代', + '1970s': '70年代', + '1960s': '60年代', + }, + }, } diff --git a/src/locales/zh-TW.ts b/src/locales/zh-TW.ts index ba9a8e8e..f65873c1 100644 --- a/src/locales/zh-TW.ts +++ b/src/locales/zh-TW.ts @@ -2097,4 +2097,74 @@ export default { th: '泰語', }, }, + douban: { + type: '類型', + sort: '排序', + genre: '風格', + zone: '地區', + year: '年代', + sortType: { + comprehensive: '綜合排序', + releaseDate: '首播時間', + recentHot: '近期熱度', + highScore: '高分優先', + }, + genreType: { + comedy: '喜劇', + romance: '愛情', + action: '動作', + scienceFiction: '科幻', + animation: '動畫', + mystery: '懸疑', + crime: '犯罪', + thriller: '驚悚', + adventure: '冒險', + music: '音樂', + history: '歷史', + fantasy: '奇幻', + horror: '恐怖', + war: '戰爭', + biography: '傳記', + musical: '歌舞', + martialArts: '武俠', + erotic: '情色', + disaster: '災難', + western: '西部', + documentary: '紀錄片', + shortFilm: '短片', + }, + zoneType: { + chinese: '華語', + europeanAmerican: '歐美', + korean: '韓國', + japanese: '日本', + mainlandChina: '中國大陸', + usa: '美國', + hongKong: '中國香港', + taiwan: '中國台灣', + uk: '英國', + france: '法國', + germany: '德國', + italy: '義大利', + spain: '西班牙', + india: '印度', + thailand: '泰國', + russia: '俄羅斯', + canada: '加拿大', + australia: '澳大利亞', + ireland: '愛爾蘭', + sweden: '瑞典', + brazil: '巴西', + denmark: '丹麥', + }, + yearType: { + '2020s': '2020年代', + '2010s': '2010年代', + '2000s': '2000年代', + '1990s': '90年代', + '1980s': '80年代', + '1970s': '70年代', + '1960s': '60年代', + }, + }, } diff --git a/src/views/discover/DoubanView.vue b/src/views/discover/DoubanView.vue index 0000b1fa..3ef3f266 100644 --- a/src/views/discover/DoubanView.vue +++ b/src/views/discover/DoubanView.vue @@ -1,5 +1,8 @@