-
-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/4.1.29: updated the changelog added multilingual support to the default template Apply fixes from StyleCI (#465) adds support for localized validation messages adds support for chinese simplified Apply fixes from StyleCI (#464) wip wip added a global locale wip global search and replace of trans() helper to __() wip wip wip wip wip wip work wip
- Loading branch information
Showing
87 changed files
with
1,698 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"/js/app.js": "/js/app.js?id=58f7249482e1fba84837", | ||
"/js/app.js": "/js/app.js?id=e7d01bf545b09bb6ea7f", | ||
"/css/app.css": "/css/app.css?id=f67fa09e4165d6153c77", | ||
"/css/app-dark.css": "/css/app-dark.css?id=96b402438f4da22bea87", | ||
"/js/app.js.map": "/js/app.js.map?id=e768b1c9e916df5939dc", | ||
"/js/app.js.map": "/js/app.js.map?id=77dfa9301d3e746dc180", | ||
"/favicon.ico": "/favicon.ico?id=dbb0c05daa3432643753" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'title' => '博客', | ||
'buttons' => [ | ||
'learn' => '学到更多', | ||
'next' => '阅读下一篇', | ||
'enjoy' => '你可能会喜欢', | ||
'edit' => '编辑帖子', | ||
'stats' => '查看统计信息', | ||
], | ||
'empty' => [ | ||
'description' => '没有找到帖子,从头开始', | ||
'action' => '添加新帖子', | ||
], | ||
'nav' => [ | ||
'user' => [ | ||
'posts' => '帖子', | ||
'tags' => '标签', | ||
'topics' => '话题', | ||
'stats' => '统计', | ||
'login' => '登入', | ||
'logout' => '登出', | ||
], | ||
], | ||
'posts' => [ | ||
'label' => '最近的帖子', | ||
], | ||
'tags' => [ | ||
'label' => '标签', | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'general' => [ | ||
'cancel' => '取消', | ||
'delete' => '刪除', | ||
'done' => '完成', | ||
'load' => '顯示更多', | ||
'save' => '保存', | ||
'next' => '下一頁', | ||
], | ||
'posts' => [ | ||
'create' => '最新帖子', | ||
'edit' => '編輯帖子', | ||
'update' => '更新帖子', | ||
'save' => '保存並發布', | ||
'schedule' => '發佈時間表', | ||
], | ||
'stats' => [ | ||
'index' => '查看所有統計數據', | ||
'show' => '細節', | ||
], | ||
'tags' => [ | ||
'create' => '新標籤', | ||
'update' => '保存更改', | ||
], | ||
'topics' => [ | ||
'create' => '新話題', | ||
'update' => '保存更改', | ||
], | ||
|
||
]; |
Oops, something went wrong.