1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-11 11:24:23 +02:00

[ticket/15289] Language fixes

PHPBB3-15289
This commit is contained in:
Rubén Calvo 2017-09-08 16:53:20 +02:00
parent b1928d515e
commit d7b1018110
2 changed files with 6 additions and 7 deletions

View File

@ -64,8 +64,7 @@ class acp_storage
$this->storage_collection = $phpbb_container->get('storage.storage_collection');
// Add necesary language files
$this->lang->add_lang(array('common'));
$this->lang->add_lang(array('acp/storage'));
$this->lang->add_lang(['common', 'acp/storage']);
/**
* Add language strings

View File

@ -40,9 +40,9 @@ $lang = array_merge($lang, array(
// Template
'STORAGE_TITLE' => 'Storage Settings',
'STORAGE_TITLE_EXPLAIN' => 'Here you can change the storage.',
'STORAGE_TITLE_EXPLAIN' => 'Change storage providers for the file storage types of phpBB. Choose local or remote providers to store files added to or created by phpBB.',
'STORAGE_SELECT' => 'Select storage',
'STORAGE_SELECT_DESC' => 'Select an storage from the list.',
'STORAGE_SELECT_DESC' => 'Select a storage from the list.',
// Storage names
'STORAGE_ATTACHMENT_TITLE' => 'Attachments storage',
@ -54,9 +54,9 @@ $lang = array_merge($lang, array(
'STORAGE_ADAPTER_LOCAL_OPTION_PATH' => 'Path',
// Form validation
'STORAGE_UPDATE_SUCCESSFUL' => 'All storages were successfuly updated.',
'STORAGE_NO_CHANGES' => 'No changes has been made.',
'STORAGE_PROVIDER_NOT_EXISTS' => 'Provider selected for %s doesn\'t exist.',
'STORAGE_UPDATE_SUCCESSFUL' => 'All storage types were successfully updated.',
'STORAGE_NO_CHANGES' => 'No changes have been applied.',
'STORAGE_PROVIDER_NOT_EXISTS' => 'Provider selected for %s doesnt exist.',
'STORAGE_PROVIDER_NOT_AVAILABLE' => 'Provider selected for %s is not available.',
'STORAGE_FORM_TYPE_EMAIL_INCORRECT_FORMAT' => 'Incorrect email for %s of %s.',
'STORAGE_FORM_TYPE_TEXT_TOO_LONG' => 'Text is too long for %s of %s.',