mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-07-27 15:17:09 -04:00
- Add `$pluginData` parameter to `Events::trigger` calls for key events (e.g., `sale_completed`, `customer_saved`) - Update core views to include `data-plugin-form` attribute for plugin-field serialization - Bundle `plugin_data_helper.js` to handle form field extraction for plugins - Extend README.md with comprehensive documentation on using `$pluginData` - Refactor language files to support `install` translations and streamline UI labels - Add new view hooks for sales receipt and register UI extension Signed-off-by: Travis Garrison <travis@chiraqbookstore.com>
30 lines
1.4 KiB
PHP
30 lines
1.4 KiB
PHP
<?php
|
|
return [
|
|
'actions' => 'Akce',
|
|
'active' => 'Aktivní',
|
|
'configure' => 'Konfigurovat',
|
|
'description' => 'Popis',
|
|
'disable' => 'Deaktivovat',
|
|
'disable_failed' => 'Deaktivace pluginu se nezdařila',
|
|
'disabled' => 'Plugin byl úspěšně deaktivován',
|
|
'enable' => 'Aktivovat',
|
|
'enable_failed' => 'Aktivace pluginu se nezdařila',
|
|
'enabled' => 'Plugin byl úspěšně aktivován',
|
|
'inactive' => 'Neaktivní',
|
|
'install' => '',
|
|
'management' => 'Správa pluginů',
|
|
'name' => 'Název pluginu',
|
|
'no_config' => 'Tento plugin nemá žádné možnosti konfigurace',
|
|
'no_plugins_to_display' => 'Žádné pluginy k zobrazení',
|
|
'not_found' => 'Plugin nebyl nalezen',
|
|
'plugins' => 'Pluginy',
|
|
'settings_save_failed' => 'Uložení nastavení pluginu se nezdařilo',
|
|
'settings_saved' => 'Nastavení pluginu bylo úspěšně uloženo',
|
|
'status' => 'Stav',
|
|
'uninstall' => 'Odinstalovat',
|
|
'uninstall_failed' => 'Odinstalace pluginu se nezdařila',
|
|
'uninstall_warning' => '',
|
|
'uninstalled' => 'Plugin byl úspěšně odinstalován',
|
|
'version' => 'Verze',
|
|
];
|