From: jucablues Date: Mon, 4 May 2009 12:13:07 +0000 (+0000) Subject: since "Unicode" made people believe that they could put hex code point X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=511ad82f0e2e14f2ff4e92b9fcad7c88c2793ac6;p=inkscape.git since "Unicode" made people believe that they could put hex code point values in the Glyphs tab (svg fonts dialog) where inkscape instead expects a char or a string I decided to rename that column to "Matching string" --- diff --git a/src/ui/dialog/svg-fonts-dialog.cpp b/src/ui/dialog/svg-fonts-dialog.cpp index a662ff1d1..5f86196b1 100644 --- a/src/ui/dialog/svg-fonts-dialog.cpp +++ b/src/ui/dialog/svg-fonts-dialog.cpp @@ -662,8 +662,8 @@ Gtk::VBox* SvgFontsDialog::glyphs_tab(){ _GlyphsListScroller.add(_GlyphsList); _GlyphsListStore = Gtk::ListStore::create(_GlyphsListColumns); _GlyphsList.set_model(_GlyphsListStore); - _GlyphsList.append_column_editable(_("Glyph Name"), _GlyphsListColumns.glyph_name); - _GlyphsList.append_column_editable(_("Unicode"), _GlyphsListColumns.unicode); + _GlyphsList.append_column_editable(_("Glyph name"), _GlyphsListColumns.glyph_name); + _GlyphsList.append_column_editable(_("Matching string"), _GlyphsListColumns.unicode); Gtk::HBox* hb = Gtk::manage(new Gtk::HBox()); add_glyph_button.set_label(_("Add Glyph"));