Skip to content
Snippets Groups Projects
Commit 2527090b authored by Neil Drumm's avatar Neil Drumm :wave:
Browse files

Forward port from 4.7

#60951, missing translatable strings, patch by wulff
parent 0269a789
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -222,7 +222,7 @@ function _locale_admin_import_screen() {
$form = array();
$form['import'] = array('#type' => 'fieldset',
'#title' => 'Import translation',
'#title' => t('Import translation'),
);
$form['import']['file'] = array('#type' => 'file',
'#title' => t('Language file'),
......@@ -279,7 +279,7 @@ function _locale_admin_export_screen() {
if (count($languages)) {
$form = array();
$form['export'] = array('#type' => 'fieldset',
'#title' => 'Export translation',
'#title' => t('Export translation'),
'#collapsible' => TRUE,
);
$form['export']['langcode'] = array('#type' => 'select',
......@@ -294,7 +294,7 @@ function _locale_admin_export_screen() {
// Complete template export of the strings
$form = array();
$form['export'] = array('#type' => 'fieldset',
'#title' => 'Export template',
'#title' => t('Export template'),
'#collapsible' => TRUE,
'#description' => t('Generate a gettext Portable Object Template (.pot) file with all the interface strings from the Drupal locale database.'),
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment