Skip to content

Commit bfc5af8

Browse files
committed
feat: Added Plugins system lines
1 parent d5bad78 commit bfc5af8

1 file changed

Lines changed: 34 additions & 1 deletion

File tree

language/english/admin/core_lang.php

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
$lang['admin_logs'] = 'System Logs';
2525
$lang['admin_media'] = 'Media Library';
2626
$lang['admin_modules'] = 'Modules';
27+
$lang['admin_plugins'] = 'Plugins';
2728
$lang['admin_reports'] = 'Actions Log';
2829
$lang['admin_system'] = 'System';
2930
$lang['admin_themes'] = 'Themes';
@@ -363,6 +364,10 @@
363364
$lang['report_module_disable'] = '%s disabled module: <strong>%s</strong>.';
364365
$lang['report_module_enable'] = '%s enabled module: <strong>%s</strong>.';
365366
$lang['report_module_install'] = '%s installed module: <strong>%s</strong>.';
367+
$lang['report_plugin_delete'] = '%s deleted plugin: <strong>%s</strong>.';
368+
$lang['report_plugin_disable'] = '%s disabled plugin: <strong>%s</strong>.';
369+
$lang['report_plugin_enable'] = '%s enabled plugin: <strong>%s</strong>.';
370+
$lang['report_plugin_install'] = '%s installed plugin: <strong>%s</strong>.';
366371
$lang['report_users_activate'] = 'Account %s activated.';
367372
$lang['report_users_activate_link'] = '%s requested a new activation link.';
368373
$lang['report_users_link'] = '%s requested a quick-login link.';
@@ -402,7 +407,7 @@
402407
$lang['admin_modules_add'] = 'Add Module';
403408
$lang['admin_modules_delete_confirm'] = 'Are you sure you want to delete the module: <strong>%s</strong>?';
404409
$lang['admin_modules_delete_error'] = 'Unable to delete the module.';
405-
$lang['admin_modules_delete_success'] = 'Mdule successfully deleted.';
410+
$lang['admin_modules_delete_success'] = 'Module successfully deleted.';
406411
$lang['admin_modules_disable_confirm'] = 'Are you sure you want to disable the module: <strong>%s</strong>?';
407412
$lang['admin_modules_disable_error'] = 'Unable to deactivate the module.';
408413
$lang['admin_modules_disable_success'] = 'Module successfully deactivated.';
@@ -421,6 +426,34 @@
421426
$lang['admin_modules_upload_success'] = 'Module successfully uploaded.';
422427
$lang['admin_modules_upload_tip'] = 'If you have a module in a .zip format, you may install it by uploading it here.';
423428

429+
/**
430+
* ---------------------------------------------------------------
431+
* Plugins Section
432+
* ---------------------------------------------------------------
433+
* Language lines for the plugins management section.
434+
*/
435+
$lang['admin_plugins_add'] = 'Add Plugin';
436+
$lang['admin_plugins_delete_confirm'] = 'Are you sure you want to delete the plugin: <strong>%s</strong>?';
437+
$lang['admin_plugins_delete_error'] = 'Unable to delete the plugin.';
438+
$lang['admin_plugins_delete_success'] = 'Plugin successfully deleted.';
439+
$lang['admin_plugins_disable_confirm'] = 'Are you sure you want to disable the plugin: <strong>%s</strong>?';
440+
$lang['admin_plugins_disable_error'] = 'Unable to deactivate the plugin.';
441+
$lang['admin_plugins_disable_success'] = 'Plugin successfully deactivated.';
442+
$lang['admin_plugins_enable_confirm'] = 'Are you sure you want to enable the plugin: <strong>%s</strong>?';
443+
$lang['admin_plugins_enable_error'] = 'Unable to activate the plugin.';
444+
$lang['admin_plugins_enable_success'] = 'Plugin successfully activated.';
445+
$lang['admin_plugins_install'] = 'Install Plugin';
446+
$lang['admin_plugins_install_error'] = 'Unable to install plugin.';
447+
$lang['admin_plugins_install_success'] = 'Plugin successfully installed.';
448+
$lang['admin_plugins_location_application'] = 'Private to this app';
449+
$lang['admin_plugins_location_core'] = 'Shared across all apps';
450+
$lang['admin_plugins_location_public'] = 'Public to this app';
451+
$lang['admin_plugins_location_select'] = '&#151; Select location &#151;';
452+
$lang['admin_plugins_upload'] = 'Upload Plugin';
453+
$lang['admin_plugins_upload_error'] = 'Unable to upload plugin.';
454+
$lang['admin_plugins_upload_success'] = 'Plugin successfully uploaded.';
455+
$lang['admin_plugins_upload_tip'] = 'If you have a plugin in a .zip format, you may install it by uploading it here.';
456+
424457
/**
425458
* ---------------------------------------------------------------
426459
* Themes Section

0 commit comments

Comments
 (0)