One message in system.module is do not localized normally: "Other" at page /admin/build/modules.

Here is the little path:
--- \modules\system\system.module Sat Jan 27 16:23:12 2007
+++ \modules\system\system.module Sat Jan 27 16:19:00 2007
@@ -1541,7 +1541,7 @@
$modules = $form['validation_modules']['#value'];
foreach ($modules as $module) {
if (!isset($module->info['package']) || !$module->info['package']) {
- $module->info['package'] = 'Other';
+ $module->info['package'] = t('Other');
}
$packages[$module->info['package']][$module->name] = $module->info;
}

CommentFileSizeAuthor
system.module.path_.txt556 bytesvadbars@drupal.org
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

ChrisKennedy’s picture

Status: Reviewed & tested by the community » Needs work

Translation of the package name occurs farther down in the file, see e.g. http://cvs.drupal.org/viewcvs/drupal/drupal/modules/system/system.module...

I haven't checked, but the dynamic translation may be for sorting reasons or something. If not your patch still needs to be changed so that Other isn't translated twice.

Also, this is not a proper patch and can't be applied. Please see http://drupal.org/patch and don't set your own patches to RTBC.

ChrisKennedy’s picture

Status: Needs work » Closed (duplicate)

Duplicate of http://drupal.org/node/113290 (which was committed).