summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYuri Chornoivan <yurchor@ukr.net>2015-12-26 19:37:12 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2015-12-26 19:37:12 +0000
commit2ca0f70c0eb69bae5b498d568c9edde85784aead (patch)
tree02709aef337b442ed60ae00ee7dc27e09888a082 /src
parentRebase on libcroco 0.6.11 (diff)
downloadinkscape-2ca0f70c0eb69bae5b498d568c9edde85784aead.tar.gz
inkscape-2ca0f70c0eb69bae5b498d568c9edde85784aead.zip
minor typos (mail to inkscape-translator)
(bzr r14541)
Diffstat (limited to 'src')
-rw-r--r--src/extension/param/string.cpp2
-rw-r--r--src/style.cpp4
-rw-r--r--src/widgets/measure-toolbar.cpp2
-rw-r--r--src/widgets/spray-toolbar.cpp8
4 files changed, 8 insertions, 8 deletions
diff --git a/src/extension/param/string.cpp b/src/extension/param/string.cpp
index 4e525ff73..1d9205502 100644
--- a/src/extension/param/string.cpp
+++ b/src/extension/param/string.cpp
@@ -132,7 +132,7 @@ public:
if (_pref->get(NULL, NULL) != NULL) {
this->set_text(Glib::ustring(_pref->get(NULL, NULL)));
}
- this->set_max_length(_pref->getMaxLength()); //Set the max lenght - default zero means no maximum
+ this->set_max_length(_pref->getMaxLength()); //Set the max length - default zero means no maximum
this->signal_changed().connect(sigc::mem_fun(this, &ParamStringEntry::changed_text));
};
void changed_text (void);
diff --git a/src/style.cpp b/src/style.cpp
index 2a216e940..35138d25b 100644
--- a/src/style.cpp
+++ b/src/style.cpp
@@ -287,7 +287,7 @@ SPStyle::SPStyle(SPDocument *document_in, SPObject *object_in) :
_properties.push_back( &color );
// 'font-size'/'font' must be before properties that need to know em, ex size (SPILength,
- // SPILenghtOrNormal)
+ // SPILengthOrNormal)
_properties.push_back( &font_style );
_properties.push_back( &font_variant );
_properties.push_back( &font_weight );
@@ -383,7 +383,7 @@ SPStyle::SPStyle(SPDocument *document_in, SPObject *object_in) :
// // 'color' must be before 'fill', 'stroke', 'text-decoration-color', ...
// _propmap.insert( std::make_pair( color.name, reinterpret_cast<SPIBasePtr>(&SPStyle::color ) ) );
- // // 'font-size' must be before properties that need to know em, ex size (SPILength, SPILenghtOrNormal)
+ // // 'font-size' must be before properties that need to know em, ex size (SPILength, SPILengthOrNormal)
// _propmap.insert( std::make_pair( font_style.name, reinterpret_cast<SPIBasePtr>(&SPStyle::font_style ) ) );
// _propmap.insert( std::make_pair( font_variant.name, reinterpret_cast<SPIBasePtr>(&SPStyle::font_variant ) ) );
// _propmap.insert( std::make_pair( font_weight.name, reinterpret_cast<SPIBasePtr>(&SPStyle::font_weight ) ) );
diff --git a/src/widgets/measure-toolbar.cpp b/src/widgets/measure-toolbar.cpp
index 67c128dd2..f48dcd4e0 100644
--- a/src/widgets/measure-toolbar.cpp
+++ b/src/widgets/measure-toolbar.cpp
@@ -210,7 +210,7 @@ sp_toggle_show_in_between( GtkToggleAction* act, gpointer data )
if ( active ) {
desktop->messageStack()->flash(Inkscape::INFORMATION_MESSAGE, _("Compute all elements."));
} else {
- desktop->messageStack()->flash(Inkscape::INFORMATION_MESSAGE, _("Compute max lenght."));
+ desktop->messageStack()->flash(Inkscape::INFORMATION_MESSAGE, _("Compute max length."));
}
MeasureTool *mt = get_measure_tool();
if (mt) {
diff --git a/src/widgets/spray-toolbar.cpp b/src/widgets/spray-toolbar.cpp
index 30e9c6418..c4fbbca82 100644
--- a/src/widgets/spray-toolbar.cpp
+++ b/src/widgets/spray-toolbar.cpp
@@ -476,8 +476,8 @@ void sp_spray_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GObj
/* Picker */
{
InkToggleAction* act = ink_toggle_action_new( "SprayPickColorAction",
- _("Pick color from the drawing. You can use clonetiler trace dialog for avanced effects. In clone mode original fill or stroke colors must be unset."),
- _("Pick color from the drawing. You can use clonetiler trace dialog for avanced effects. In clone mode original fill or stroke colors must be unset."),
+ _("Pick color from the drawing. You can use clonetiler trace dialog for advanced effects. In clone mode original fill or stroke colors must be unset."),
+ _("Pick color from the drawing. You can use clonetiler trace dialog for advanced effects. In clone mode original fill or stroke colors must be unset."),
INKSCAPE_ICON("color-picker"),
secondarySize );
gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(act), prefs->getBool("/tools/spray/picker", false) );
@@ -502,8 +502,8 @@ void sp_spray_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GObj
/* Inverse Value Size */
{
InkToggleAction* act = ink_toggle_action_new( "SprayPickInverseValueAction",
- _("Inversed pick value, retaining color in advanced trace mode"),
- _("Inversed pick value, retaining color in advanced trace mode"),
+ _("Inverted pick value, retaining color in advanced trace mode"),
+ _("Inverted pick value, retaining color in advanced trace mode"),
INKSCAPE_ICON("object-tweak-shrink"),
secondarySize );
gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(act), prefs->getBool("/tools/spray/pick_inverse_value", false) );