aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/language/en/acp/extensions.php')
-rw-r--r--phpBB/language/en/acp/extensions.php50
1 files changed, 49 insertions, 1 deletions
diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php
index a96a7a2a2b..c6eb147b86 100644
--- a/phpBB/language/en/acp/extensions.php
+++ b/phpBB/language/en/acp/extensions.php
@@ -35,6 +35,22 @@ if (empty($lang) || !is_array($lang))
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array(
+
+ 'EXTENSION_ALREADY_INSTALLED' => 'The “%s” extension has already been installed.',
+ 'EXTENSION_ALREADY_INSTALLED_MANUALLY' => 'The “%s” extension has already been installed manually.',
+ 'EXTENSION_ALREADY_MANAGED' => 'The “%s” extension is already managed.',
+ 'EXTENSION_CANNOT_MANAGE_FILESYSTEM_ERROR' => 'The “%s” extension cannot be managed because the existing files could not be removed from the filesystem.',
+ 'EXTENSION_CANNOT_MANAGE_INSTALL_ERROR' => 'The “%s” extension could not be installed. The prior installation of this extension has been restored.',
+ 'EXTENSION_MANAGED_WITH_CLEAN_ERROR' => 'The “%1$s” extension has been installed but an error occurred and the old files could not be removed. You might want to delete the “%2$s” files manually.',
+ 'EXTENSION_MANAGED_WITH_ENABLE_ERROR' => 'The “%s” extension has been installed but an error occurred while enabling it.',
+ 'EXTENSION_NOT_INSTALLED' => 'The “%s” extension is not installed.',
+
+ 'ENABLING_EXTENSIONS' => 'Enabling extensions',
+ 'DISABLING_EXTENSIONS' => 'Disabling extensions',
+
+ 'EXTENSIONS_CATALOG' => 'Extensions Catalog',
+ 'EXTENSIONS_CATALOG_EXPLAIN' => 'Here you can browse all of the extensions available for your phpBB board. Extensions can easily be installed or removed with just a click. Adjust the settings to allow instant enabling and purging of extensions.',
+
'EXTENSION' => 'Extension',
'EXTENSIONS' => 'Extensions',
'EXTENSIONS_ADMIN' => 'Extensions Manager',
@@ -43,7 +59,6 @@ $lang = array_merge($lang, array(
'EXTENSION_NOT_AVAILABLE' => 'The selected extension is not available for this board, please verify your phpBB and PHP versions are allowed (see the details page).',
'EXTENSION_DIR_INVALID' => 'The selected extension has an invalid directory structure and cannot be enabled.',
'EXTENSION_NOT_ENABLEABLE' => 'The selected extension cannot be enabled, please verify the extension’s requirements.',
- 'EXTENSION_NOT_INSTALLED' => 'The extension %s is not available. Please check that you have installed it correctly.',
'DETAILS' => 'Details',
@@ -53,6 +68,8 @@ $lang = array_merge($lang, array(
'EXTENSION_DELETE_DATA' => 'Delete data',
'EXTENSION_DISABLE' => 'Disable',
'EXTENSION_ENABLE' => 'Enable',
+ 'EXTENSION_UPDATE' => 'Update',
+ 'EXTENSION_REMOVE' => 'Remove',
'EXTENSION_DELETE_DATA_EXPLAIN' => 'Deleting an extension’s data removes all of its data and settings. The extension files are retained so it can be enabled again.',
'EXTENSION_DISABLE_EXPLAIN' => 'Disabling an extension retains its files, data and settings but removes any functionality added by the extension.',
@@ -94,6 +111,9 @@ $lang = array_merge($lang, array(
'EXTENSION_ENABLE_CONFIRM' => 'Are you sure that you wish to enable the “%s” extension?',
'EXTENSION_FORCE_UNSTABLE_CONFIRM' => 'Are you sure that you wish to force the use of unstable version?',
+ 'INSTALLED' => 'Installed',
+ 'INSTALLED_MANUALLY' => 'Installed manually',
+
'RETURN_TO_EXTENSION_LIST' => 'Return to the extension list',
'EXT_DETAILS' => 'Extension Details',
@@ -130,4 +150,32 @@ $lang = array_merge($lang, array(
'META_FIELD_NOT_SET' => 'Required meta field %s has not been set.',
'META_FIELD_INVALID' => 'Meta field %s is invalid.',
+
+ 'EXTENSIONS_CATALOG_SETTINGS' => 'Extensions catalog settings',
+ 'ENABLE_ON_INSTALL' => 'Enable extensions while installing',
+ 'PURGE_ON_REMOVE' => 'Purge extensions while removing',
+ 'ENABLE_PACKAGIST' => 'Search packagist',
+ 'ENABLE_PACKAGIST_EXPLAIN' => 'Search packagist for phpBB extensions. Beware that packagist may contain extensions not validated by the phpBB Extension Customisations Team.',
+ 'ENABLE_PACKAGIST_CONFIRM' => 'Are you sure you want to search packagist?',
+ 'COMPOSER_REPOSITORIES' => 'Repositories',
+ 'COMPOSER_REPOSITORIES_EXPLAIN' => 'Add URLs to Composer repositories of phpBB extensions to search here, one per line (must be the base url of the packages.json file).',
+ 'NO_EXTENSION_AVAILABLE' => 'There are no extension available for your board',
+
+ 'EXTENSION_MANAGED_SUCCESS' => 'The extension %s is now being managed automatically.',
+ 'EXTENSIONS_INSTALLED' => 'Extensions successfully installed.',
+ 'EXTENSIONS_REMOVED' => 'Extensions successfully removed.',
+ 'EXTENSIONS_UPDATED' => 'Extensions successfully updated.',
+
+ 'EXTENSIONS_CATALOG_NOT_AVAILABLE' => 'The extensions catalog is not available',
+ 'EXTENSIONS_COMPOSER_NOT_WRITABLE' => 'In order to use the catalog, the following files and directories must be writable: ext/ vendor-ext/ composer-ext.json and composer-ext.lock',
+
+ 'STABILITY_STABLE' => 'stable',
+ 'STABILITY_RC' => 'RC',
+ 'STABILITY_BETA' => 'beta',
+ 'STABILITY_ALPHA' => 'alpha',
+ 'STABILITY_DEV' => 'dev',
+
+ 'COMPOSER_MINIMUM_STABILITY' => 'Minimum stability',
+ 'COMPOSER_MINIMUM_STABILITY_EXPLAIN' => 'Always use <samp>stable</samp> versions on a live forum. Non-stable versions may still be in development and could cause unexpected problems with your forum and should only be used for development purposes in local or staging environments.',
+
));