mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-07-25 22:27:05 -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.5 KiB
PHP
30 lines
1.5 KiB
PHP
<?php
|
|
return [
|
|
'actions' => 'Actions',
|
|
'active' => 'Active',
|
|
'configure' => 'Configure',
|
|
'description' => 'Description',
|
|
'disable' => 'Disable',
|
|
'disable_failed' => 'Failed to disable plugin',
|
|
'disabled' => 'Plugin disabled successfully',
|
|
'enable' => 'Enable',
|
|
'enable_failed' => 'Failed to enable plugin',
|
|
'enabled' => 'Plugin enabled successfully',
|
|
'inactive' => 'Inactive',
|
|
'install' => 'Install',
|
|
'management' => 'Plugin Management',
|
|
'name' => 'Plugin Name',
|
|
'no_config' => 'This plugin has no configuration options',
|
|
'no_plugins_to_display' => 'No Plugins to display',
|
|
'not_found' => 'Plugin not found',
|
|
'plugins' => 'Plugins',
|
|
'settings_save_failed' => 'Failed to save plugin settings',
|
|
'settings_saved' => 'Plugin settings saved successfully',
|
|
'status' => 'Status',
|
|
'uninstall' => 'Uninstall',
|
|
'uninstall_failed' => 'Failed to uninstall plugin',
|
|
'uninstall_warning' => 'Uninstalling this plugin will remove all data in the database associated with the plugin and cannot be reversed. Are you sure you want to uninstall?',
|
|
'uninstalled' => 'Plugin uninstalled successfully',
|
|
'version' => 'Version',
|
|
];
|