summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-05-11 19:08:59 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-05-11 19:08:59 +0000
commit0dc8b506fe92a6f4a57d6412db69c3fea420d67a (patch)
tree690753f6c9ba2cdff48615d139e7abfab75ad2bb
parentStabilize the selection set system a bit (diff)
downloadinkscape-0dc8b506fe92a6f4a57d6412db69c3fea420d67a.tar.gz
inkscape-0dc8b506fe92a6f4a57d6412db69c3fea420d67a.zip
Rename "Tags" to "Selection sets" to avoid confusion with a global tagging system
(bzr r13090.1.77)
-rw-r--r--src/ui/dialog/tags.cpp2
-rw-r--r--src/verbs.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/tags.cpp b/src/ui/dialog/tags.cpp
index 14ad5b8cc..1b5dd9400 100644
--- a/src/ui/dialog/tags.cpp
+++ b/src/ui/dialog/tags.cpp
@@ -1025,7 +1025,7 @@ TagsPanel::TagsPanel() :
// -------------------------------------------------------
{
- _watching.push_back( &_addPopupItem( targetDesktop, SP_VERB_TAG_NEW, 0, "New", (int)BUTTON_NEW ) );
+ _watching.push_back( &_addPopupItem( targetDesktop, SP_VERB_TAG_NEW, 0, "Add a new selection set", (int)BUTTON_NEW ) );
_popupMenu.show_all_children();
}
diff --git a/src/verbs.cpp b/src/verbs.cpp
index e1d6c0583..73613ab9e 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -1603,7 +1603,7 @@ void TagVerb::perform( SPAction *action, void *data)
id=NULL;
do {
g_free(id);
- id = g_strdup_printf("tag%d", tag_suffix++);
+ id = g_strdup_printf("Set %d", tag_suffix++);
} while (dt->doc()->getObjectById(id));
doc = dt->doc()->getReprDoc();
@@ -2938,7 +2938,7 @@ Verb *Verb::_base_verbs[] = {
N_("View Layers"), INKSCAPE_ICON("dialog-layers")),
new DialogVerb(SP_VERB_DIALOG_OBJECTS, "DialogObjects", N_("Object_s..."),
N_("View Objects"), INKSCAPE_ICON("dialog-layers")),
- new DialogVerb(SP_VERB_DIALOG_TAGS, "DialogTags", N_("Ta_gs..."),
+ new DialogVerb(SP_VERB_DIALOG_TAGS, "DialogTags", N_("Selection se_ts..."),
N_("View Tags"), INKSCAPE_ICON("edit-select-all-layers")),
new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path E_ffects ..."),
N_("Manage, edit, and apply path effects"), NULL),