mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
user modify migrate
This commit is contained in:
33
resources/lang/en/plugin.php
Normal file
33
resources/lang/en/plugin.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'actions' => [
|
||||
'install' => 'Install',
|
||||
'delete' => 'Remove',
|
||||
'update' => 'Upgrade',
|
||||
],
|
||||
'labels' => [
|
||||
'display_name' => 'Name',
|
||||
'package_name' => 'Package name',
|
||||
'remote_url' => 'Repository address',
|
||||
'installed_version' => 'Installed version',
|
||||
'status' => 'Status',
|
||||
'updated_at' => 'Last action at',
|
||||
],
|
||||
'status' => [
|
||||
\App\Models\Plugin::STATUS_NORMAL => 'Normal',
|
||||
\App\Models\Plugin::STATUS_NOT_INSTALLED => 'Not installed',
|
||||
|
||||
\App\Models\Plugin::STATUS_PRE_INSTALL => 'Ready to install',
|
||||
\App\Models\Plugin::STATUS_INSTALLING => 'Installing',
|
||||
\App\Models\Plugin::STATUS_INSTALL_FAILED => 'Install fail',
|
||||
|
||||
\App\Models\Plugin::STATUS_PRE_UPDATE => 'Ready to upgrade',
|
||||
\App\Models\Plugin::STATUS_UPDATING => 'Upgrading',
|
||||
\App\Models\Plugin::STATUS_UPDATE_FAILED => 'Upgrade fail',
|
||||
|
||||
\App\Models\Plugin::STATUS_PRE_DELETE => 'Ready to remove',
|
||||
\App\Models\Plugin::STATUS_DELETING => 'Removing',
|
||||
\App\Models\Plugin::STATUS_DELETE_FAILED => 'Remove fail',
|
||||
],
|
||||
];
|
||||
@@ -29,4 +29,13 @@ return [
|
||||
'change_username_lte_min_interval' => 'Last change time: :last_change_time, unmet minimum interval: :interval days',
|
||||
'destroy_by_admin' => 'Physical delete by administrator',
|
||||
'disable_by_admin' => 'Disable by administrator',
|
||||
'genders' => [
|
||||
\App\Models\User::GENDER_MALE => 'Male',
|
||||
\App\Models\User::GENDER_FEMALE => 'Female',
|
||||
\App\Models\User::GENDER_UNKNOWN => 'Unknown',
|
||||
],
|
||||
'grant_props_notification' => [
|
||||
'subject' => 'Get Props::name',
|
||||
'body' => ':operator Grant you :name, Validity period: :duration.',
|
||||
],
|
||||
];
|
||||
|
||||
@@ -29,4 +29,13 @@ return [
|
||||
'change_username_lte_min_interval' => '上次修改时间::last_change_time,未满足最小间隔::interval 天',
|
||||
'destroy_by_admin' => '被管理员物理删除',
|
||||
'disable_by_admin' => '被管理員封禁',
|
||||
'genders' => [
|
||||
\App\Models\User::GENDER_MALE => '男',
|
||||
\App\Models\User::GENDER_FEMALE => '女',
|
||||
\App\Models\User::GENDER_UNKNOWN => '未知',
|
||||
],
|
||||
'grant_props_notification' => [
|
||||
'subject' => '获得道具::name',
|
||||
'body' => ':operator 授予你 :name, 有效期::duration。',
|
||||
],
|
||||
];
|
||||
|
||||
33
resources/lang/zh_TW/plugin.php
Normal file
33
resources/lang/zh_TW/plugin.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'actions' => [
|
||||
'install' => '安裝',
|
||||
'delete' => '刪除',
|
||||
'update' => '升級',
|
||||
],
|
||||
'labels' => [
|
||||
'display_name' => '名稱',
|
||||
'package_name' => '包名',
|
||||
'remote_url' => '倉庫地址',
|
||||
'installed_version' => '已安裝版本',
|
||||
'status' => '狀態',
|
||||
'updated_at' => '上次執行操作',
|
||||
],
|
||||
'status' => [
|
||||
\App\Models\Plugin::STATUS_NORMAL => '正常',
|
||||
\App\Models\Plugin::STATUS_NOT_INSTALLED => '未安裝',
|
||||
|
||||
\App\Models\Plugin::STATUS_PRE_INSTALL => '準備安裝',
|
||||
\App\Models\Plugin::STATUS_INSTALLING => '安裝中',
|
||||
\App\Models\Plugin::STATUS_INSTALL_FAILED => '安裝失敗',
|
||||
|
||||
\App\Models\Plugin::STATUS_PRE_UPDATE => '準備升級',
|
||||
\App\Models\Plugin::STATUS_UPDATING => '升級中',
|
||||
\App\Models\Plugin::STATUS_UPDATE_FAILED => '升級失敗',
|
||||
|
||||
\App\Models\Plugin::STATUS_PRE_DELETE => '準備刪除',
|
||||
\App\Models\Plugin::STATUS_DELETING => '刪除中',
|
||||
\App\Models\Plugin::STATUS_DELETE_FAILED => '刪除失敗',
|
||||
],
|
||||
];
|
||||
@@ -29,4 +29,13 @@ return [
|
||||
'change_username_lte_min_interval' => '上次修改時間::last_change_time,未滿足最小間隔::interval 天',
|
||||
'destroy_by_admin' => '被管理員物理刪除',
|
||||
'disable_by_admin' => '被管理员封禁',
|
||||
'genders' => [
|
||||
\App\Models\User::GENDER_MALE => '男',
|
||||
\App\Models\User::GENDER_FEMALE => '女',
|
||||
\App\Models\User::GENDER_UNKNOWN => '未知',
|
||||
],
|
||||
'grant_props_notification' => [
|
||||
'subject' => '獲得道具::name',
|
||||
'body' => ':operator 授予你 :name, 有效期::duration。',
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user