Fix text about returning score
This commit is contained in:
parent
5b15b6922c
commit
b6dfc1c2a4
@ -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',
|
||||
|
@ -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
|
||||
|
@ -62,7 +62,7 @@
|
||||
setAsPublic: '设为公开',
|
||||
setPublicNotice: '要将此材质设置为公开吗?',
|
||||
|
||||
deleteNotice: '真的要删除此材质吗?积分将会被返还'
|
||||
deleteNotice: '真的要删除此材质吗?'
|
||||
},
|
||||
user: {
|
||||
signInRemainingTime: ':time 小时后可签到',
|
||||
|
@ -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 个角色
|
||||
|
@ -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')
|
||||
])) !!}
|
||||
|
||||
<hr />
|
||||
|
Loading…
Reference in New Issue
Block a user