diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-04-30 00:28:53 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-04-30 00:28:53 +0000 |
commit | 2527090b16cb32e1acb093ac08d279f8c49c61e5 (patch) | |
tree | ccb24564e99dc35417d9d13388977d103b942740 /includes | |
parent | 0269a7893615b05a9323cde6b70d3a0c31c4d6ff (diff) | |
download | brdo-2527090b16cb32e1acb093ac08d279f8c49c61e5.tar.gz brdo-2527090b16cb32e1acb093ac08d279f8c49c61e5.tar.bz2 |
Forward port from 4.7
#60951, missing translatable strings, patch by wulff
Diffstat (limited to 'includes')
-rw-r--r-- | includes/locale.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/locale.inc b/includes/locale.inc index 723d2855f..1d80d9c61 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -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.'), ); |