mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 10:06:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			927 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			927 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
|     'title' => 'Application API Keys',
 | |
|     'empty' => 'No API keys',
 | |
|     'whitelist' => 'Whitelisted IPv4 Addresses',
 | |
|     'whitelist_help' => 'API keys can be restricted to only work from specific IPv4 addresses. Enter each address on a new line.',
 | |
|     'whitelist_placeholder' => 'Example: 127.0.0.1 or 192.168.1.1',
 | |
|     'description' => 'Description',
 | |
|     'description_help' => 'A brief description of what this key is for.',
 | |
|     'nav_title' => 'API Keys',
 | |
|     'model_label' => 'Application API Key',
 | |
|     'model_label_plural' => 'Application API Keys',
 | |
|     'table' => [
 | |
|         'key' => 'Key',
 | |
|         'description' => 'Description',
 | |
|         'last_used' => 'Last Used',
 | |
|         'created' => 'Created',
 | |
|         'created_by' => 'Created By',
 | |
|         'never_used' => 'Never Used',
 | |
|     ],
 | |
|     'permissions' => [
 | |
|         'none' => 'None',
 | |
|         'read' => 'Read',
 | |
|         'read_write' => 'Read & Write',
 | |
|     ],
 | |
| ];
 | 
