diff options
| author | Eduard Braun <eduard.braun2@gmx.de> | 2018-01-29 20:13:12 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2018-01-29 20:13:12 +0000 |
| commit | 280065b915b38d4d6605c1ec364a380250d6e1cd (patch) | |
| tree | 2dcf1fe94ad045cc013dde28d8a3ae56ca907d47 /src/widgets/arc-toolbar.cpp | |
| parent | Update Hungarian translation (!189) (diff) | |
| download | inkscape-280065b915b38d4d6605c1ec364a380250d6e1cd.tar.gz inkscape-280065b915b38d4d6605c1ec364a380250d6e1cd.zip | |
Don't translate the empty string.
Really, please don't do it!
- in the best case it shows a wall of useless text to the user
- in the worst case it causes strange crashes for users with
non-English locale
Diffstat (limited to 'src/widgets/arc-toolbar.cpp')
| -rw-r--r-- | src/widgets/arc-toolbar.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/arc-toolbar.cpp b/src/widgets/arc-toolbar.cpp index e85f3ba16..d4c36d516 100644 --- a/src/widgets/arc-toolbar.cpp +++ b/src/widgets/arc-toolbar.cpp @@ -543,10 +543,10 @@ void sp_arc_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GObjec row[columns.col_icon ] = INKSCAPE_ICON("draw-ellipse-chord"); row[columns.col_sensitive] = true; - InkSelectOneAction* act = + InkSelectOneAction* act = InkSelectOneAction::create( "ArcTypeAction", // Name - _(""), // Label - _(""), // Tooltip + "", // Label + "", // Tooltip "Not Used", // Icon store ); // Tree store |
