mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 16:56:51 +01:00 
			
		
		
		
	* Init * Health Page * Admin API Keys * Update API Keys * Database Hosts * Mounts * remove `s` * Users * Webhooks * Server never again... * Fix Server * Settings * Update Mounts * Update Databasehost * Update Server * Oops, Update Server * Nodes * Update User * Dashboard * Update Server * Profile * Egg * Role & Update Egg * Add base Laravel lang files * update apikey * remove html back to settings, remove comment * add `:resource` to create_action * Update Egg * Update Egg v2 * Update 1 * trans cf info label * Update charts * more trans * Update Webhook * update Health * Update Server * Update Role * Fixes * Bulk Update * AnotherOne * Fix relation button label * rename `admin1` to `admin` Leftover from testing... oops * More Translations * Updates * `pint` + Relation Manager Titles
		
			
				
	
	
		
			49 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    'create_action' => ':action Database host',
 | 
						|
    'nav_title' => 'Database Hosts',
 | 
						|
    'model_label' => 'Database Host',
 | 
						|
    'model_label_plural' => 'Database Hosts',
 | 
						|
    'table' => [
 | 
						|
        'name' => 'Name',
 | 
						|
        'host' => 'Host',
 | 
						|
        'port' => 'Port',
 | 
						|
        'name_helper' => 'Leaving this blank will auto generate a random name',
 | 
						|
        'username' => 'Username',
 | 
						|
        'password' => 'Password',
 | 
						|
        'remote' => 'Connections From',
 | 
						|
        'remote_helper' => 'Where connections should be allowed from. Leave blank to allow connections from anywhere.',
 | 
						|
        'max_connections' => 'Max Connections',
 | 
						|
        'created_at' => 'Created At',
 | 
						|
        'connection_string' => 'JDBC Connection String',
 | 
						|
    ],
 | 
						|
    'error' => 'Error connecting to host',
 | 
						|
    'host' => 'Host',
 | 
						|
    'host_help' => 'The IP address or Domain name that should be used when attempting to connect to this MySQL host from this Panel to create new databases.',
 | 
						|
    'port' => 'Port',
 | 
						|
    'post_help' => 'The port that MySQL is running on for this host.',
 | 
						|
    'max_database' => 'Max Databases',
 | 
						|
    'max_databases_help' => 'The maximum number of databases that can be created on this host. If the limit is reached, no new databases can be created on this host. Blank is unlimited.',
 | 
						|
    'display_name' => 'Display Name',
 | 
						|
    'display_name_help' => 'A short identifier used to distinguish this location from others. Must be between 1 and 60 characters, for example, us.nyc.lvl3.',
 | 
						|
    'username' => 'Username',
 | 
						|
    'username_help' => 'The username of an account that has enough permissions to create new users and databases on the system.',
 | 
						|
    'password' => 'Password',
 | 
						|
    'password_help' => 'The password for the database user.',
 | 
						|
    'linked_nodes' => 'Linked Nodes',
 | 
						|
    'linked_nodes_help' => 'This setting only defaults to this database host when adding a database to a server on the selected Node.',
 | 
						|
    'connection_error' => 'Error connecting to database host',
 | 
						|
    'no_database_hosts' => 'No Database Hosts',
 | 
						|
    'no_nodes' => 'No Nodes',
 | 
						|
    'delete_help' => 'Database Host Has Databases',
 | 
						|
    'unlimited' => 'Unlimited',
 | 
						|
    'anywhere' => 'Anywhere',
 | 
						|
 | 
						|
    'rotate' => 'Rotate',
 | 
						|
    'rotate_password' => 'Rotate Password',
 | 
						|
    'rotated' => 'Password Rotated',
 | 
						|
    'rotate_error' => 'Password Rotation Failed',
 | 
						|
    'databases' => 'Databases',
 | 
						|
];
 |