summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIvan Mas??r <helix84@centrum.sk>2009-12-07 23:34:08 +0000
committerhelix84 <helix84@centrum.sk>2009-12-07 23:34:08 +0000
commit77b13a8faf051fc4083b8f6e2efc57efe74d012f (patch)
treee1b14f59dfb82143903c902a5cbd6a81b2d2de13 /src
parentCorrectly read and write values for Spray Tool option on Tool Controls Bar. (diff)
downloadinkscape-77b13a8faf051fc4083b8f6e2efc57efe74d012f.tar.gz
inkscape-77b13a8faf051fc4083b8f6e2efc57efe74d012f.zip
Spray Tool: translated forgotten strings from French to English
(bzr r8877)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/spray-option.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ui/dialog/spray-option.cpp b/src/ui/dialog/spray-option.cpp
index 8bfe455fa..33e9f2033 100644
--- a/src/ui/dialog/spray-option.cpp
+++ b/src/ui/dialog/spray-option.cpp
@@ -249,7 +249,7 @@ SprayOptionClass::SprayOptionClass()
_ETable(3,2,false),
_FTable(2,5,false),
_unifLabel(_("Uniform")),
- _gaussLabel(_("Gaussian ")),
+ _gaussLabel(_("Gaussian")),
_anchorLabel(_("Distribution : "))
{
@@ -257,8 +257,8 @@ SprayOptionClass::SprayOptionClass()
//ComboBoxText
- _combo.append_text(_("Uniforme"));
- _combo.append_text(_("Gaussienne"));
+ _combo.append_text(_("Uniform"));
+ _combo.append_text(_("Gaussian"));
_combo.set_active(prefs->getInt("/tools/spray/distribution", 1));
_combo.signal_changed().connect(sigc::mem_fun(*this, &SprayOptionClass::combo_action));
@@ -274,8 +274,8 @@ SprayOptionClass::SprayOptionClass()
//Hbox Random
- addFButton(_("Scale : ") ,_("Applique un facteur d'échelle"), 0, 0, "/tools/spray/scale_min","/tools/spray/scale_max");
- addFButton(_("Rotation : ") ,_("Fait tourner"), 1, 0, "/tools/spray/rot_min","/tools/spray/rot_max");
+ addFButton(_("Scale : ") ,_("Apply a scale factor"), 0, 0, "/tools/spray/scale_min","/tools/spray/scale_max");
+ addFButton(_("Rotation : ") ,_("Apply rotation"), 1, 0, "/tools/spray/rot_min","/tools/spray/rot_max");
_FHBox.pack_start(_FLabel);
_FHBox.pack_start(_FTable);
@@ -284,9 +284,9 @@ SprayOptionClass::SprayOptionClass()
_FFrame.add(_FVBox);
//Hbox Cursor
- addEButton(_("Ratio : ") ,_("Excentricité de l'ellipse"), 0, 0, 0, 1,"/tools/spray/ratio");
- addEButton(_("Angle : ") ,_("Angle de l'ellipse"), 1, 0, 0, 5,"/tools/spray/tilt");
- addEButton(_("Width : ") ,_("Taille de l'ellipse"), 2, 0, 0, 1,"/tools/spray/width");
+ addEButton(_("Ratio : ") ,_("Eccentricity of the ellipse"), 0, 0, 0, 1,"/tools/spray/ratio");
+ addEButton(_("Angle : ") ,_("Angle of the ellipse"), 1, 0, 0, 5,"/tools/spray/tilt");
+ addEButton(_("Width : ") ,_("Size of the ellipse"), 2, 0, 0, 1,"/tools/spray/width");
_HBox.pack_start(_Label);
_HBox.pack_start(_ETable);