diff options
author | olOwOlo <26087907+olOwOlo@users.noreply.github.com> | 2018-01-31 22:07:50 +0800 |
---|---|---|
committer | olOwOlo <26087907+olOwOlo@users.noreply.github.com> | 2018-01-31 22:07:50 +0800 |
commit | 259d3dec1ae78e617b76ebeecd357218702d3d30 (patch) | |
tree | 088cb3abe91cba52395518ba1f080c7fdab5f85d /layouts/partials/post/reward.html | |
parent | be7b6c63a4fb89144e52659a145d09ddb03ba29a (diff) |
refactor: i18n
Diffstat (limited to 'layouts/partials/post/reward.html')
-rw-r--r-- | layouts/partials/post/reward.html | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/layouts/partials/post/reward.html b/layouts/partials/post/reward.html index 35933ea..3242854 100644 --- a/layouts/partials/post/reward.html +++ b/layouts/partials/post/reward.html @@ -1,20 +1,19 @@ {{ if or .Params.reward (and .Site.Params.reward.enable (ne .Params.reward false)) }} <div class="post-reward"> - {{- $lang := .Site.Data.even.default }} <input type="checkbox" name="reward" id="reward" hidden /> - <label class="reward-button" for="reward">{{ $lang.posts.reward }}</label> + <label class="reward-button" for="reward">{{ T "reward" }}</label> <div class="qr-code"> {{ $qrCode := .Site.Params.reward }} {{ with $qrCode.wechat }} <label class="qr-code-image" for="reward"> <img class="image" src="{{ . }}"> - <span>{{ $lang.posts.rewardWechat }}</span> + <span>{{ T "rewardWechat" }}</span> </label> {{- end }} {{ with $qrCode.alipay }} <label class="qr-code-image" for="reward"> <img class="image" src="{{ . }}"> - <span>{{ $lang.posts.rewardAlipay }}</span> + <span>{{ T "rewardAlipay" }}</span> </label> {{- end }} </div> |