diff options
author | mkanat%bugzilla.org <> | 2006-09-14 15:57:29 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-09-14 15:57:29 +0200 |
commit | 761ae5de8e84ffd70489260364db5789ec135b55 (patch) | |
tree | a488a2e5b3605444791ba414dde70ee6292e1cab /Bugzilla/User | |
parent | 47ee48a70f9abe53bc5e934f6e83c997b350dc6b (diff) | |
download | bugzilla-761ae5de8e84ffd70489260364db5789ec135b55.tar.gz bugzilla-761ae5de8e84ffd70489260364db5789ec135b55.tar.xz |
Bug 352608: Make checksetup more localizable
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=myk
Diffstat (limited to 'Bugzilla/User')
-rw-r--r-- | Bugzilla/User/Setting.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Bugzilla/User/Setting.pm b/Bugzilla/User/Setting.pm index 7ed1b2f11..ad39d194b 100644 --- a/Bugzilla/User/Setting.pm +++ b/Bugzilla/User/Setting.pm @@ -23,12 +23,13 @@ package Bugzilla::User::Setting; use strict; use base qw(Exporter); + # Module stuff @Bugzilla::User::Setting::EXPORT = qw(get_all_settings get_defaults add_setting); use Bugzilla::Error; -use Bugzilla::Util qw{trick_taint}; +use Bugzilla::Util qw(trick_taint get_text); ############################### ### Module Initialization ### @@ -135,7 +136,7 @@ sub add_setting { ($name && $default_value) || ThrowCodeError("setting_info_invalid"); - print "Adding a new user setting called '$name'\n"; + print get_text('install_setting_new', { name => $name }) . "\n"; $dbh->do(q{INSERT INTO setting (name, default_value, is_enabled, subclass) VALUES (?, ?, 1, ?)}, undef, ($name, $default_value, $subclass)); |