mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-03-07 15:16:40 +08:00
Allow customizing homepage by overriding translation strings
This commit is contained in:
parent
dd2f2030da
commit
ef3f9fccaa
@ -1,13 +1,16 @@
|
||||
features:
|
||||
multi-player:
|
||||
first:
|
||||
icon: fa-users
|
||||
name: Multi Player
|
||||
desc: You can add many players with only one account.
|
||||
|
||||
sharing:
|
||||
second:
|
||||
icon: fa-share-alt
|
||||
name: Sharing
|
||||
desc: Explore the skin library, give a 'like' and share them with your friends.
|
||||
|
||||
free:
|
||||
third:
|
||||
icon: fa-cloud
|
||||
name: Free
|
||||
desc: It is free forever. No ads. No subscription fees.
|
||||
|
||||
|
@ -1,13 +1,16 @@
|
||||
features:
|
||||
multi-player:
|
||||
first:
|
||||
icon: fa-users
|
||||
name: 多角色
|
||||
desc: 一个账户可绑定多个游戏角色
|
||||
|
||||
sharing:
|
||||
second:
|
||||
icon: fa-share-alt
|
||||
name: 分享
|
||||
desc: 浏览皮肤库,添加喜爱的皮肤并与好友分享
|
||||
|
||||
free:
|
||||
third:
|
||||
icon: fa-cloud
|
||||
name: 永久免费
|
||||
desc: 我们承诺永不收取任何费用
|
||||
|
||||
|
@ -80,19 +80,19 @@
|
||||
<br>
|
||||
<br>
|
||||
<div class="col-lg-4">
|
||||
<i class="fas fa-users"></i>
|
||||
<h3>@lang('index.features.multi-player.name')</h3>
|
||||
<p>@lang('index.features.multi-player.desc')</p>
|
||||
<i class="fas {{ trans('index.features.first.icon') }}" aria-hidden="true"></i>
|
||||
<h3>{!! trans('index.features.first.name') !!}</h3>
|
||||
<p>{!! trans('index.features.first.desc') !!}</p>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<i class="fas fa-share-alt"></i>
|
||||
<h3>@lang('index.features.sharing.name')</h3>
|
||||
<p>@lang('index.features.sharing.desc')</p>
|
||||
<i class="fas {{ trans('index.features.second.icon') }}" aria-hidden="true"></i>
|
||||
<h3>{!! trans('index.features.second.name') !!}</h3>
|
||||
<p>{!! trans('index.features.second.desc') !!}</p>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<i class="fas fa-cloud"></i>
|
||||
<h3>@lang('index.features.free.name')</h3>
|
||||
<p>@lang('index.features.free.desc')</p>
|
||||
<i class="fas {{ trans('index.features.third.icon') }}" aria-hidden="true"></i>
|
||||
<h3>{!! trans('index.features.third.name') !!}</h3>
|
||||
<p>{!! trans('index.features.third.desc') !!}</p>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
@ -102,7 +102,7 @@
|
||||
<div id="footerwrap">
|
||||
<div class="container">
|
||||
<div class="col-lg-6">
|
||||
@lang('index.introduction', ['sitename' => option_localized('site_name')])
|
||||
{!! trans('index.introduction', ['sitename' => option_localized('site_name')]) !!}
|
||||
</div>
|
||||
|
||||
<div class="col-lg-6">
|
||||
|
Loading…
Reference in New Issue
Block a user