There's a t() misssing for the titles of the from/to date boxes

Comments

brianV’s picture

Status: Active » Fixed

Fixed in CVS HEAD. I've also generated an up-to-date .pot file for translations.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

chaostar’s picture

Status: Closed (fixed) » Active

Extra missing t():

balance_tracker.module, 6.x-1.10, line 483:

drupal_set_title($user->name .'\'s Balance');

balance_tracker.module, 6.x-1.10, line 488:

drupal_set_title($viewed_user->name .'\'s Balance');

Is it possible to add in next stable update

drupal_set_title(t('@name\' Balance', array('@name' => $user->name)));

and

drupal_set_title(t('@name\' Balance', array('@name' => $viewed_user->name)));

respectively?

brianV’s picture

Status: Active » Fixed

Fixed in the D6 branch:

http://drupal.org/cvs?commit=477846

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.