summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEduard Braun <eduard.braun2@gmx.de>2017-12-04 22:36:13 +0000
committerEduard Braun <eduard.braun2@gmx.de>2017-12-04 22:36:13 +0000
commit01d6520bcf68b688ca49b048ffd3a81044c3b135 (patch)
tree63fb775468a9c9cc599345823cf4e1d3d33d522b /src
parentPrevent setting zero radius (diff)
downloadinkscape-01d6520bcf68b688ca49b048ffd3a81044c3b135.tar.gz
inkscape-01d6520bcf68b688ca49b048ffd3a81044c3b135.zip
Change labels a bit for consistency with other UI strings
Diffstat (limited to 'src')
-rw-r--r--src/widgets/arc-toolbar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/arc-toolbar.cpp b/src/widgets/arc-toolbar.cpp
index 0e503cd5e..3faea1750 100644
--- a/src/widgets/arc-toolbar.cpp
+++ b/src/widgets/arc-toolbar.cpp
@@ -452,7 +452,7 @@ void sp_arc_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GObjec
gchar const* labels[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
gdouble values[] = {1, 2, 3, 5, 10, 20, 50, 100, 200, 500};
eact = create_adjustment_action( "ArcRadiusXAction",
- _("Radius X"), _("Rx:"), _("X Radius of arc"),
+ _("Horizontal radius"), _("Rx:"), _("Horizontal radius of the circle, ellipse, or arc"),
"/tools/shapes/arc/rx", 0,
GTK_WIDGET(desktop->canvas), holder, TRUE, "altx-arc",
0, 1e6, SPIN_STEP, SPIN_PAGE_STEP,
@@ -469,7 +469,7 @@ void sp_arc_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GObjec
gchar const* labels[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
gdouble values[] = {1, 2, 3, 5, 10, 20, 50, 100, 200, 500};
eact = create_adjustment_action( "ArcRadiusYAction",
- _("Radius Y"), _("Ry:"), _("Y Radius of arc"),
+ _("Vertical radius"), _("Ry:"), _("Vertical radius of the circle, ellipse, or arc"),
"/tools/shapes/arc/ry", 0,
GTK_WIDGET(desktop->canvas), holder, FALSE, NULL,
0, 1e6, SPIN_STEP, SPIN_PAGE_STEP,