44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
// Shared UI strings reused across the app (R16). Feature-specific strings live in
|
|
// their own group file (lang/<code>/<group>.php). Keep this list small and generic.
|
|
return [
|
|
// Actions
|
|
'save' => 'Save',
|
|
'cancel' => 'Cancel',
|
|
'close' => 'Close',
|
|
'delete' => 'Delete',
|
|
'remove' => 'Remove',
|
|
'add' => 'Add',
|
|
'edit' => 'Edit',
|
|
'enable' => 'Enable',
|
|
'disable' => 'Disable',
|
|
'lock' => 'Lock',
|
|
'unlock' => 'Unlock',
|
|
'back' => 'Back',
|
|
'retry' => 'Try again',
|
|
'confirm' => 'Confirm',
|
|
'open' => 'Open',
|
|
'more' => 'more',
|
|
'apply' => 'Apply',
|
|
|
|
// Status / state
|
|
'online' => 'Online',
|
|
'offline' => 'Offline',
|
|
'warning' => 'Warning',
|
|
'active' => 'active',
|
|
'inactive' => 'inactive',
|
|
'secure' => 'secure',
|
|
'unsupported' => 'n/a',
|
|
'unknown' => 'unknown',
|
|
'loading' => 'Loading…',
|
|
'none' => '—',
|
|
|
|
// Generic
|
|
'search' => 'Search',
|
|
'actions' => 'Actions',
|
|
'server_not_found' => 'Server not found.',
|
|
'failed' => 'Failed.',
|
|
'done' => 'Done.',
|
|
];
|