diff options
| author | bulia byak <buliabyak@gmail.com> | 2009-09-06 02:34:31 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2009-09-06 02:34:31 +0000 |
| commit | 89abf2d35ba202b184df4e791da3903c16d1d91c (patch) | |
| tree | c6f2499135157bbac0d48a3574e588fc1ab0fdb0 /src/widgets | |
| parent | patch by Adib for 406470 (diff) | |
| download | inkscape-89abf2d35ba202b184df4e791da3903c16d1d91c.tar.gz inkscape-89abf2d35ba202b184df4e791da3903c16d1d91c.zip | |
textual patch from bug 408093
(bzr r8563)
Diffstat (limited to 'src/widgets')
| -rw-r--r-- | src/widgets/sp-color-icc-selector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/sp-color-icc-selector.cpp b/src/widgets/sp-color-icc-selector.cpp index 80a551f6a..916e4363c 100644 --- a/src/widgets/sp-color-icc-selector.cpp +++ b/src/widgets/sp-color-icc-selector.cpp @@ -303,7 +303,7 @@ void ColorICCSelector::init() _profileSel = gtk_combo_box_new_text(); - gtk_combo_box_append_text( GTK_COMBO_BOX(_profileSel), "<none>" ); + gtk_combo_box_append_text( GTK_COMBO_BOX(_profileSel), _("<none>") ); gtk_widget_show( _profileSel ); gtk_combo_box_set_active( GTK_COMBO_BOX(_profileSel), 0 ); gtk_table_attach( GTK_TABLE(t), _profileSel, 1, 2, row, row + 1, GTK_FILL, GTK_FILL, XPAD, YPAD ); @@ -576,7 +576,7 @@ void ColorICCSelector::_profilesChanged( std::string const & name ) gtk_combo_box_remove_text( combo, 0 ); } - gtk_combo_box_append_text( combo, "<none>"); + gtk_combo_box_append_text( combo, _("<none>")); gtk_combo_box_set_active( combo, 0 ); |
