日语翻译更新

This commit is contained in:
Coulomb 2019-04-10 11:57:53 +08:00
parent 01355633cb
commit d6b26bae7b
4 changed files with 13 additions and 13 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -324,20 +324,20 @@ export const map = new Map([
]],
]);
export const regex = new Map([
[/^浏览:([0-9\.a-z])$/, `閲覧:$1`],
[/^收藏:([0-9\.a-z])$/, `お気に入り:$1`],
[/^支持:([0-9\.a-z])$/, `いいね:$1`],
[/^浏览:([0-9\.a-z]+)$/, `閲覧:$1`],
[/^收藏:([0-9\.a-z]+)$/, `お気に入り:$1`],
[/^支持:([0-9\.a-z]+)$/, `いいね:$1`],
[/^共([\d]+)页$/,`全部で $1 ページ`],
[/^小视频 ([\d])$/,`短いビデオ $1`],
[/^相簿 ([\d])$/,`アルバム $1`],
[/^在线人数:([\d])$/, `オンライン:$1`],
[/^小视频 ([\d]+)$/,`短いビデオ $1`],
[/^相簿 ([\d]+)$/,`アルバム $1`],
[/^在线人数:([\d]+)$/, `オンライン:$1`],
[/^([\d]+)[ ]?分钟前$/, `$1 分前`],
[/^([\d]+)[ ]?小时前$/, `$1 時間前`],
[/^([\d\.万]+)播放/, `$1再生`],
[/^([\d\.万]+)弹幕$/, `$1弾幕`],
[/^([\+]?[ ]?)关注[]?$/, `$1フォロー`],
[/^([\+]?[ ]?)关注([]?)$/, `$1フォロー$2`],
[/^上传时间:([\d])/, `アップロード時間:$1`],
[/^粉丝[]?$/, `ファン`],
[/^粉丝([]?)$/, `ファン$1`],
]);
export default {
export: { map, regex },