mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-09-15 14:57:07 -04:00
- Add missing translations for error messages across multiple language files. - Update `security_helper` to use localized exception messages with placeholders. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com>
12 lines
627 B
PHP
12 lines
627 B
PHP
<?php
|
|
|
|
return [
|
|
'no_permission_module' => 'Du har ikke tilladelse til at tilgå det navngivne modul',
|
|
'unable_to_create_env_file' => 'Kunne ikke oprette {filePath} for at klargøre throttle.key',
|
|
'unable_to_lock_file' => 'Kunne ikke låse {filePath}: {reason}',
|
|
'unable_to_open_lock_file' => 'Kunne ikke åbne {filePath}: {reason}',
|
|
'unable_to_persist_throttle_key' => 'Kunne ikke gemme throttle.key i {filePath}',
|
|
'unable_to_read_env_file' => 'Kunne ikke læse {filePath} for at klargøre throttle.key',
|
|
'unknown' => 'Uventet fejl',
|
|
];
|