summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2013-07-06 06:09:21 +0000
committerMartin Owens <doctormo@gmail.com>2013-07-06 06:09:21 +0000
commit4d9dc443915f588d2e3de8dbc9b61ba1cf2e6dee (patch)
tree3f620dbb5fb07bc0c90a92ef9a002e1c5f737fc2 /src/verbs.cpp
parentMerge: Add Hershey extension for engraving fonts (diff)
downloadinkscape-4d9dc443915f588d2e3de8dbc9b61ba1cf2e6dee.tar.gz
inkscape-4d9dc443915f588d2e3de8dbc9b61ba1cf2e6dee.zip
Fix verbs that were out by 5 because of missing script verbs (broken between r7137-r11611)
(bzr r12406)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 1dae8bcf0..d0396155c 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2903,7 +2903,17 @@ Verb *Verb::_base_verbs[] = {
N_("Link an ICC color profile"), NULL),
new EditVerb(SP_VERB_EDIT_REMOVE_COLOR_PROFILE, "RemoveColorProfile", N_("Remove Color Profile"),
N_("Remove a linked ICC color profile"), NULL),
-
+ // Scripting
+ new ContextVerb(SP_VERB_EDIT_ADD_EXTERNAL_SCRIPT, "AddExternalScript",
+ N_("Add External Script"), N_("Add an external script"), NULL),
+ new ContextVerb(SP_VERB_EDIT_ADD_EMBEDDED_SCRIPT, "AddEmbeddedScript",
+ N_("Add Embedded Script"), N_("Add an embedded script"), NULL),
+ new ContextVerb(SP_VERB_EDIT_EMBEDDED_SCRIPT, "EditEmbeddedScript",
+ N_("Edit Embedded Script"), N_("Edit an embedded script"), NULL),
+ new ContextVerb(SP_VERB_EDIT_REMOVE_EXTERNAL_SCRIPT, "RemoveExternalScript",
+ N_("Remove External Script"), N_("Remove an external script"), NULL),
+ new ContextVerb(SP_VERB_EDIT_REMOVE_EMBEDDED_SCRIPT, "RemoveEmbeddedScript",
+ N_("Remove Embedded Script"), N_("Remove an embedded script"), NULL),
// Align
new ContextVerb(SP_VERB_ALIGN_HORIZONTAL_RIGHT_TO_ANCHOR, "AlignHorizontalRightToAnchor", N_("Align right edges of objects to the left edge of the anchor"),
N_("Align right edges of objects to the left edge of the anchor"), INKSCAPE_ICON("align-horizontal-right-to-anchor")),