There's a couple of examples like this:

       drupal_set_message(t('Couldn\'t check version: ') . $versionpage->error, 'error');

They should really be:

       drupal_set_message(t("Couldn't check version: @error", array('@error' => $versionpage->error)), 'error');
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Devin Carlson’s picture

Assigned: Unassigned » Devin Carlson
Status: Active » Needs review
FileSize
2.07 KB

These translation issues have already been fixed in the 7.x branch of Browscap.

Attached is a patch that backports to 6.x the improvements to translation made in 7.x.

Devin Carlson’s picture

Status: Needs review » Fixed

Committed to 6.x-1.x.

Status: Fixed » Closed (fixed)

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