diff options
| author | Martin Owens <doctormo@gmail.com> | 2013-07-06 06:09:21 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2013-07-06 06:09:21 +0000 |
| commit | 4d9dc443915f588d2e3de8dbc9b61ba1cf2e6dee (patch) | |
| tree | 3f620dbb5fb07bc0c90a92ef9a002e1c5f737fc2 /src/verbs.cpp | |
| parent | Merge: Add Hershey extension for engraving fonts (diff) | |
| download | inkscape-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 '')
| -rw-r--r-- | src/verbs.cpp | 12 |
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")), |
