Contribution to feature/new-theme (#254)
* add translation to navigation * redesign base.api.index view add translations * remove license derp * translate never in base.api.index view * simplify user drop down for now add translations
This commit is contained in:
parent
515e543c7f
commit
31b4589eab
5 changed files with 149 additions and 21 deletions
|
@ -7,6 +7,14 @@ return [
|
|||
'header_sub' => 'Servers you own and have access to.',
|
||||
'list' => 'Server List',
|
||||
],
|
||||
'api' => [
|
||||
'index' => [
|
||||
'header' => 'API Access',
|
||||
'header_sub' => 'Manage your API access keys.',
|
||||
'list' => 'API Keys',
|
||||
'create_new' => 'Create new API key'
|
||||
],
|
||||
],
|
||||
'account' => [
|
||||
'header' => 'Your Account',
|
||||
'header_sub' => 'Manage your account details.',
|
||||
|
|
27
resources/lang/en/navigation.php
Normal file
27
resources/lang/en/navigation.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'home' => 'Home',
|
||||
'account' => [
|
||||
'header' => 'ACCOUNT MANAGEMENT',
|
||||
'my_account' => 'My Account',
|
||||
'security_controls' => 'Security Controls',
|
||||
'api_access' => 'API Access',
|
||||
'my_servers' => 'My Servers'
|
||||
],
|
||||
'server' => [
|
||||
'header' => 'SERVER MANAGEMENT',
|
||||
'console' => 'Console',
|
||||
'file_management' => 'File Management',
|
||||
'file_browser' => 'File Browser',
|
||||
'create_file' => 'Create File',
|
||||
'upload_files' => 'Upload Files',
|
||||
'subusers' => 'Subusers',
|
||||
'task_management' => 'Task Management',
|
||||
'configuration' => 'Configuration',
|
||||
'port_allocations' => 'Port Allocations',
|
||||
'sftp_settings' => 'SFTP Settings',
|
||||
'startup_parameters' => 'Startup Parameters',
|
||||
'databases' => 'Databases'
|
||||
],
|
||||
];
|
|
@ -28,4 +28,12 @@ return [
|
|||
'configuration' => 'Configuration',
|
||||
'sftp' => 'SFTP',
|
||||
'databases' => 'Databases',
|
||||
'memo' => 'Memo',
|
||||
'created' => 'Created',
|
||||
'expires' => 'Expires',
|
||||
'public_key' => 'Public key',
|
||||
'api_access' => 'Api Access',
|
||||
'never' => 'never',
|
||||
'sign_out' => 'Sign out',
|
||||
'admin_control' => 'Admin Control'
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue