mirror of
https://github.com/pelican-dev/panel.git
synced 2025-10-30 20:26:51 +01:00
28 lines
900 B
PHP
28 lines
900 B
PHP
<?php
|
||
|
||
return [
|
||
'title' => '应用程序 API 密钥',
|
||
'empty' => '无 API 密钥',
|
||
'whitelist' => '白名单IPv4地址',
|
||
'whitelist_help' => 'API 密钥只能从指定的IPv4地址进行操作。在新行上输入每个地址。',
|
||
'whitelist_placeholder' => '例如:127.0.0.1或192.168.1.1',
|
||
'description' => '描述',
|
||
'description_help' => '简短描述此密钥的目的。',
|
||
'nav_title' => 'API 密钥',
|
||
'model_label' => '应用程序 API 密钥',
|
||
'model_label_plural' => '应用程序 API 密钥',
|
||
'table' => [
|
||
'key' => '密钥',
|
||
'description' => '描述',
|
||
'last_used' => '上次使用',
|
||
'created' => '已创建',
|
||
'created_by' => '创建者',
|
||
'never_used' => '从未使用',
|
||
],
|
||
'permissions' => [
|
||
'none' => '无',
|
||
'read' => '只读',
|
||
'read_write' => '读写',
|
||
],
|
||
];
|