diff --git a/resources/lang/en/locale.js b/resources/lang/en/locale.js index b1f0b7ca..ae4d7f62 100644 --- a/resources/lang/en/locale.js +++ b/resources/lang/en/locale.js @@ -62,7 +62,7 @@ setAsPublic: 'Set as Public', setPublicNotice: 'Sure to set this as public texture?', - deleteNotice: 'Are you sure to delete this texture? Scores will be returned.' + deleteNotice: 'Are you sure to delete this texture?' }, user: { signInRemainingTime: 'Available after :time hours', diff --git a/resources/lang/en/user.yml b/resources/lang/en/user.yml index f49dc4b6..a9b019df 100644 --- a/resources/lang/en/user.yml +++ b/resources/lang/en/user.yml @@ -16,10 +16,11 @@ score-intro: title: What is score? introduction: | We use score system to prevent the behaviors like uplaoding huge amount of textures and registering players casually. - Both adding players and uplaoding textures will consume your score. The score will be returned if you deleted them. - Adding textures from skin library to your closet will not decline your score. + Both adding players and uplaoding textures will consume your score. :return-score The inital score of user on this site is :initial_score, you can acquire :score-from ~ :score-to scores by signing in. + will-return-score: The score will be returned if you deleted them. + no-return-score: But the score will NOT be returned if you deleted them. rates: storage: :score scores = 1 KB storage player: :score scores = 1 player diff --git a/resources/lang/zh_CN/locale.js b/resources/lang/zh_CN/locale.js index 832b554b..d68cb06b 100644 --- a/resources/lang/zh_CN/locale.js +++ b/resources/lang/zh_CN/locale.js @@ -62,7 +62,7 @@ setAsPublic: '设为公开', setPublicNotice: '要将此材质设置为公开吗?', - deleteNotice: '真的要删除此材质吗?积分将会被返还' + deleteNotice: '真的要删除此材质吗?' }, user: { signInRemainingTime: ':time 小时后可签到', diff --git a/resources/lang/zh_CN/user.yml b/resources/lang/zh_CN/user.yml index f6205a16..ad7b9861 100644 --- a/resources/lang/zh_CN/user.yml +++ b/resources/lang/zh_CN/user.yml @@ -22,10 +22,12 @@ score-intro: 「贯彻爱与真实的。。呸!」上面只是卖下萌~ 为了不出现用户一个劲上传材质导致存储空间爆满,我们决定启用积分系统。 - 添加角色以及上传材质都会消耗积分,而删除已经添加的角色和已上传的材质时积分将会被返还。 + 添加角色以及上传材质都会消耗积分,:return-score。 本站用户初始积分为 :initial_score,每日签到可以随机获得 :score-from ~ :score-to 积分 添加皮肤库里的材质到衣柜不消耗积分。 + will-return-score: 而删除已经添加的角色和已上传的材质时积分将会被返还 + no-return-score: 但删除已经添加的角色和已上传的材质时积分不会被返还 rates: storage: :score 积分 = 1 KB 存储空间 player: :score 积分 = 1 个角色 diff --git a/resources/views/user/index.tpl b/resources/views/user/index.tpl index 22d3bdb4..aaa7aeb9 100644 --- a/resources/views/user/index.tpl +++ b/resources/views/user/index.tpl @@ -110,7 +110,8 @@ {!! nl2br(trans('user.score-intro.introduction', [ 'initial_score' => option('user_initial_score'), 'score-from' => $from, - 'score-to' => $to + 'score-to' => $to, + 'return-score' => option('return_score') ? trans('user.score-intro.will-return-score') : trans('user.score-intro.no-return-score') ])) !!}