diff --git a/phpBB/adm/style/acp_ext_list.html b/phpBB/adm/style/acp_ext_list.html index f5f5241234..f16d347285 100644 --- a/phpBB/adm/style/acp_ext_list.html +++ b/phpBB/adm/style/acp_ext_list.html @@ -61,4 +61,4 @@ - \ No newline at end of file + diff --git a/phpBB/includes/acp/acp_extensions.php b/phpBB/includes/acp/acp_extensions.php index 130d00208d..bcc77dfb25 100644 --- a/phpBB/includes/acp/acp_extensions.php +++ b/phpBB/includes/acp/acp_extensions.php @@ -181,7 +181,7 @@ class acp_extensions function parse_meta_info($ext_name, $phpbb_extension_manager) { - $phpbb_extension_manager->get_meta_data($ext_name) + $phpbb_extension_manager->get_meta_data($ext_name); $template->assign_vars(array( 'NAME' => $metadata['name'], @@ -194,8 +194,7 @@ class acp_extensions 'REQUIRE_PHP' => $metadata['require']['php'], 'REQUIRE_PHPBB' => $metadata['require']['phpbb'], 'DISPLAY_NAME' => $metadata['extra']['display-name'], - ) - ); + )); foreach ($metadata['authors'] as $author) { diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php index 37cabe477b..728ab40ee9 100644 --- a/phpBB/language/en/acp/extensions.php +++ b/phpBB/language/en/acp/extensions.php @@ -1,7 +1,7 @@ 'Extension', 'EXTENSIONS' => 'Extensions', - 'EXTENSIONS_ADMIN' => 'Extensions Admin', - 'EXTENSIONS_EXPLAIN' => 'The Extensions Admin is a tool in your phpBB Board which allows you to manage all of your extensions. For more information about extensions please visit this page on phpBB's Offical Website.', + 'EXTENSIONS_ADMIN' => 'Extensions Manager', + 'EXTENSIONS_EXPLAIN' => 'The Extensions Manager is a tool in your phpBB Board which allows you to manage all of your extensions statuses and view information about them.', 'DETAILS' => 'Details', @@ -59,10 +59,10 @@ $lang = array_merge($lang, array( 'PURGE_EXPLAIN' => 'Purging an extension clears an extensions data while retaining its files.', 'DELETE_EXPLAIN' => 'Deleting an extension removes all of its files and settings. Log entries will remain, although any language variables added by the extension will not be available.', - 'ENABLE_SUCESS' => 'The extension was enabled sucessfully', - 'DISABLE_SUCESS' => 'The extension was disabled sucessfully', - 'PURGE_SUCESS' => 'The extension was purged sucessfully', - 'DELETE_SUCESS' => 'The extension was deleted sucessfully', + 'ENABLE_SUCESS' => 'The extension was enabled successfully', + 'DISABLE_SUCESS' => 'The extension was disabled successfully', + 'PURGE_SUCESS' => 'The extension was purged successfully', + 'DELETE_SUCESS' => 'The extension was deleted successfully', 'ENABLE_FAIL' => 'The extension could not be enabled', 'DISABLE_FAIL' => 'The extension could not be disabled', @@ -73,10 +73,10 @@ $lang = array_merge($lang, array( 'EXTENSION_ACTIONS' => 'Actions', 'EXTENSION_OPTIONS' => 'Options', - 'ENABLE_CONFIRM' => 'Are you sure you wish to enable this extension?', - 'DISABLE_CONFIRM' => 'Are your sure you wish to disable this extension?', - 'PURGE_CONFIRM' => 'Are you sure you wish to purge this extensions data? This cannot be undone.', - 'DELETE_CONFIRM' => 'Are you sure you wish to data this extensions files and clear its data? This cannot be undone.', + 'ENABLE_CONFIRM' => 'Are you sure that you wish to enable this extension?', + 'DISABLE_CONFIRM' => 'Are you sure that you wish to disable this extension?', + 'PURGE_CONFIRM' => 'Are you sure that you wish to purge this extension's data? This cannot be undone.', + 'DELETE_CONFIRM' => 'Are you sure that you wish to data this extension's files and clear its data? This cannot be undone.', 'WARNING' => 'Warning', 'RETURN' => 'Return', @@ -94,11 +94,10 @@ $lang = array_merge($lang, array( 'REQUIREMENTS' => 'Requirements', 'PHPBB_VERSION' => 'phpBB Version', - 'PHP_VERSION' => 'php Version', + 'PHP_VERSION' => 'PHP Version', 'AUTHOR_INFORMATION' => 'Author Information', - 'AUTHOR_NAME' => 'Author Name', - 'AUTHOR_USERNAME' => 'Author Username', - 'AUTHOR_EMAIL' => 'Author Email', - 'AUTHOR_HOMEPAGE' => 'Author Homepage', - 'AUTHOR_ROLE' => 'Author Role', + 'AUTHOR_NAME' => 'Name', + 'AUTHOR_EMAIL' => 'Email', + 'AUTHOR_HOMEPAGE' => 'Homepage', + 'AUTHOR_ROLE' => 'Role', ));