summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-19 08:35:08 +0000
committerGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-19 08:35:08 +0000
commit6777549d95a5d180264264e422deb393502ca93b (patch)
treeedacd6428f1f18c4f8a745147fb35bdeee9c54a6
parent631d1506449917a5170ad4e523b18957831dbe4e (diff)
downloadbrdo-6777549d95a5d180264264e422deb393502ca93b.tar.gz
brdo-6777549d95a5d180264264e422deb393502ca93b.tar.bz2
#58997, missing t() in locale.inc, patch by wulff
-rw-r--r--includes/locale.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc
index 37cd36ff6..d74e340dd 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -296,7 +296,7 @@ function _locale_admin_export_screen() {
$form['export'] = array('#type' => 'fieldset',
'#title' => 'Export template',
'#collapsible' => TRUE,
- '#description' => 'Generate a gettext Portable Object Template (.pot) file with all the interface strings from the Drupal locale database.',
+ '#description' => t('Generate a gettext Portable Object Template (.pot) file with all the interface strings from the Drupal locale database.'),
);
$form['export']['submit'] = array('#type' => 'submit', '#value' => t('Export'));
$output .= drupal_get_form('_locale_export_pot', $form, '_locale_export_po');