diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-09-05 16:07:23 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-09-05 16:07:23 +0000 |
| commit | 1a0466805100ffc73a71bd69d483e37243014dd7 (patch) | |
| tree | 7f90a559029c8a308c506ab6607bb0154487602a | |
| parent | add lpes (diff) | |
| download | inkscape-1a0466805100ffc73a71bd69d483e37243014dd7.tar.gz inkscape-1a0466805100ffc73a71bd69d483e37243014dd7.zip | |
copyedit
(bzr r3680)
| -rw-r--r-- | src/ui/dialog/livepatheffect-editor.cpp | 6 | ||||
| -rw-r--r-- | src/verbs.cpp | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/ui/dialog/livepatheffect-editor.cpp b/src/ui/dialog/livepatheffect-editor.cpp index b801e53c8..4a1c82652 100644 --- a/src/ui/dialog/livepatheffect-editor.cpp +++ b/src/ui/dialog/livepatheffect-editor.cpp @@ -183,7 +183,7 @@ LivePathEffectEditor::onSelectionChanged(Inkscape::Selection *sel) button_remove.set_sensitive(false);
}
} else {
- showText(_("Item is not a shape"));
+ showText(_("Item is not a shape or path"));
set_sensitize_all(false);
}
} else {
@@ -265,7 +265,7 @@ LivePathEffectEditor::onApply() }
sp_document_done(doc, SP_VERB_DIALOG_LIVE_PATH_EFFECT,
- _("Create and apply live effect"));
+ _("Create and apply path effect"));
}
}
}
@@ -279,7 +279,7 @@ LivePathEffectEditor::onRemove() if ( item && SP_IS_SHAPE(item) ) {
sp_shape_remove_path_effect(SP_SHAPE(item));
sp_document_done ( sp_desktop_document (current_desktop), SP_VERB_DIALOG_LIVE_PATH_EFFECT,
- _("Remove live path effect") );
+ _("Remove path effect") );
}
}
}
diff --git a/src/verbs.cpp b/src/verbs.cpp index c325b6a07..c5779ea44 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -2211,8 +2211,8 @@ Verb *Verb::_base_verbs[] = { N_("Scale each selected object vertically to match the height of the copied object"), NULL), new EditVerb(SP_VERB_EDIT_PASTE_IN_PLACE, "EditPasteInPlace", N_("Paste _In Place"), N_("Paste objects from clipboard to the original location"), "selection_paste_in_place"), - new EditVerb(SP_VERB_EDIT_PASTE_LIVEPATHEFFECT, "EditPasteLivePathEffect", N_("Paste Live Path _Effect"), - N_("Apply the live path effect of the copied object to selection"), NULL), + new EditVerb(SP_VERB_EDIT_PASTE_LIVEPATHEFFECT, "EditPasteLivePathEffect", N_("Paste Path _Effect"), + N_("Apply the path effect of the copied object to selection"), NULL), new EditVerb(SP_VERB_EDIT_DELETE, "EditDelete", N_("_Delete"), N_("Delete selection"), GTK_STOCK_DELETE), new EditVerb(SP_VERB_EDIT_DUPLICATE, "EditDuplicate", N_("Duplic_ate"), @@ -2548,8 +2548,8 @@ Verb *Verb::_base_verbs[] = { N_("Query information about extensions"), NULL), new DialogVerb(SP_VERB_DIALOG_LAYERS, "DialogLayers", N_("Layer_s..."), N_("View Layers"), "layers"), - new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Live Path Effect..."), - N_("View Live Path Effect parameters"), NULL), + new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path Effects..."), + N_("Manage path effects"), NULL), new DialogVerb(SP_VERB_DIALOG_FILTER_EFFECTS, "DialogFilterEffects", N_("Filter Effects..."), N_("Manage SVG filter effects"), NULL), |
