Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Chinese translate support #109

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions resources/lang/zh_CN/filament-navigation.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

return [
'attributes' => [
'external-link' => '外部链接',
'url' => 'URL地址',
'target' => '新窗口打开',
'name' => '名称',
'items' => '子项目',
'handle' => '项目别名',
'created_at' => '创建时间',
'updated_at' => '更新时间',

],

'select-options' => [
'same-tab' => '当前窗口',
'new-tab' => '新窗口'
],

'items' => [
'empty' => '抱歉,暂时不存在子项目,请添加',
'add-item' => '添加',
'add-child' => '添加子项目',
'move-up' => '上移',
'move-down' => '下移',
'indent' => '缩进',
'dedent' => '伸出',
'remove' => '删除'
],

'items-modal' => [
'title' => '新增/编辑项目',
'label' => '名称',
'type' => '类型',
'btn' => '保存',
],
];