diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-06-29 22:48:22 -0700 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-06-29 22:48:22 -0700 |
commit | dd30ec012bddf06992988e6a931ee696e24ad8f3 (patch) | |
tree | 6108183f8684885a5af80c8a551f9dbeffe8d114 | |
parent | 3bd5990056ffe6cd216aafda47702e55350eb05f (diff) |
Partial fix for ticket 471 - i18n of module names in upgrader.
-rw-r--r-- | modules/gallery/helpers/module.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gallery/helpers/module.php b/modules/gallery/helpers/module.php index 0d483206..0e9aecdc 100644 --- a/modules/gallery/helpers/module.php +++ b/modules/gallery/helpers/module.php @@ -86,6 +86,8 @@ class module_Core { $m->code_version = $m->version; $m->version = self::get_version($module_name); $m->locked = false; + $m->name = t($m->name); + $m->description = t($m->description); } // Lock certain modules |