't' is missing.
// $Id: image_gallery.module,v 1.1.2.2 2006/05/04 14:18:02 walkah Exp $
line 194:

$form['description'] = array('#type' => 'textarea', '#title' => t('Description'), '#default_value' => $edit['description'], '#cols' => 60, '#rows' => 5, '#description' => t('The description can be used to provide more information about the image gallery.'));

CommentFileSizeAuthor
#3 image_gallery_fix.patch.txt1.32 KBTakafumi
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

anarcat’s picture

FYI: this doesn't apply to the CVS, which has the proper strings.

anarcat’s picture

Status: Active » Closed (duplicate)
Takafumi’s picture

Title: 't' is missing. » 't' is still missing.
Version: 4.7.x-1.x-dev » 6.x-1.x-dev
Status: Closed (duplicate) » Needs review
FileSize
1.32 KB

$form['description'] = array('#type' => 'textarea', '#title' => t('Description'), '#default_value' => $edit['description'], '#cols' => 60, '#rows' => 5, '#description' => t('The description can be used to provide more information about the image gallery.'));

You should gaze more. 't' is still missing, and it's not translatable.
This patch to fix it.

drewish’s picture

Status: Needs review » Fixed

committed to 4.7, 5 and HEAD.

Takafumi’s picture

Status: Fixed » Closed (fixed)

Thanks.