summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-12-07 07:05:10 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-12-07 07:05:10 +0000
commit5ec72aee68a1581e7c39faeda9681e1083f711f7 (patch)
tree8ad7401b372d98142dadb7ffe3a63449efc49500 /src/verbs.cpp
parentAdd unit tests for the Inkscape::Preferences class. (diff)
downloadinkscape-5ec72aee68a1581e7c39faeda9681e1083f711f7.tar.gz
inkscape-5ec72aee68a1581e7c39faeda9681e1083f711f7.zip
Changed term away from "embed" since that has specific meaning.
(bzr r6966)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 17fd00421..36e4efaf9 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -984,7 +984,7 @@ EditVerb::perform(SPAction *action, void *data, void */*pdata*/)
case SP_VERB_EDIT_NEXT_PATHEFFECT_PARAMETER:
sp_selection_next_patheffect_param(dt);
break;
- case SP_VERB_EDIT_EMBED_COLOR_PROFILE:
+ case SP_VERB_EDIT_LINK_COLOR_PROFILE:
break;
case SP_VERB_EDIT_REMOVE_COLOR_PROFILE:
break;
@@ -2713,10 +2713,10 @@ Verb *Verb::_base_verbs[] = {
new LockAndHideVerb(SP_VERB_UNHIDE_ALL_IN_ALL_LAYERS, "UnhideAllInAllLayers", N_("Unhide All in All Layers"),
N_("Unhide all objects in all layers"), NULL),
/*Color Management*/
- new EditVerb(SP_VERB_EDIT_EMBED_COLOR_PROFILE, "EmbedColorProfile", N_("Embed Color Profile"),
- N_("Embed an ICC color profile"), NULL),
+ new EditVerb(SP_VERB_EDIT_LINK_COLOR_PROFILE, "LinkColorProfile", N_("Link Color Profile"),
+ N_("Link an ICC color profile"), NULL),
new EditVerb(SP_VERB_EDIT_REMOVE_COLOR_PROFILE, "RemoveColorProfile", N_("Remove Color Profile"),
- N_("Remove an embedded ICC color profile"), NULL),
+ N_("Remove a linked ICC color profile"), NULL),
/* Footer */
new Verb(SP_VERB_LAST, " '\"invalid id", NULL, NULL, NULL)
};