summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/licensor.cpp
diff options
context:
space:
mode:
authorKees Cook <kees@outflux.net>2006-05-18 02:02:22 +0000
committerkeescook <keescook@users.sourceforge.net>2006-05-18 02:02:22 +0000
commit29178f6c73a66ae4fbcb98f7423857b2cf44d201 (patch)
treee767cbcefa28d1c648ab5cf798496321a798486b /src/ui/widget/licensor.cpp
parent* Fix desychronization between text toolbox and dialog (diff)
downloadinkscape-29178f6c73a66ae4fbcb98f7423857b2cf44d201.tar.gz
inkscape-29178f6c73a66ae4fbcb98f7423857b2cf44d201.zip
Fixed localization for metadata license selector.
(bzr r870)
Diffstat (limited to '')
-rw-r--r--src/ui/widget/licensor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/widget/licensor.cpp b/src/ui/widget/licensor.cpp
index 9a5713220..df00e358a 100644
--- a/src/ui/widget/licensor.cpp
+++ b/src/ui/widget/licensor.cpp
@@ -45,7 +45,7 @@ protected:
};
LicenseItem::LicenseItem (struct rdf_license_t const* license, EntityEntry* entity, Registry &wr)
-: Gtk::RadioButton(license->name), _lic(license), _eep(entity), _wr(wr)
+: Gtk::RadioButton(gettext(license->name)), _lic(license), _eep(entity), _wr(wr)
{
static Gtk::RadioButtonGroup group = get_group();
static bool first = true;