]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Make the attachment functions in the menu a bit more clear
authorMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Thu, 27 Oct 2011 14:39:30 +0000 (17:39 +0300)
committerMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Thu, 27 Oct 2011 14:39:30 +0000 (17:39 +0300)
qcsrc/menu/xonotic/dialog_sandboxtools.c

index 6a30b70f05f427f6e726c35fdf4bcbcde0ec8514..133b5e8f0e9e76b875f87a7213edd59ebe09305c 100644 (file)
@@ -32,10 +32,10 @@ void XonoticSandboxToolsDialog_fill(entity me)
                        box.forbiddenCharacters = "\r\n\\\"$"; // don't care, isn't getting saved
                        box.maxLength = -127; // negative means encoded length in bytes
                        box.saveImmediately = 1;
-               me.TD(me, 1, 0.5, makeXonoticCommandButton(_("Select"), '0 0 0', "sandbox attach_object get", 0));
+               me.TD(me, 1, 0.5, makeXonoticCommandButton(_("Set child"), '0 0 0', "sandbox attach_object get", 0));
                me.TD(me, 1, 0.5, makeXonoticCommandButton(_("Attach"), '0 0 0', "sandbox attach_object set $menu_sandbox_edit_skin", 0));
        me.TDempty(me, 0.1);
-               me.TD(me, 1, 0.5, makeXonoticCommandButton(_("Remove"), '0 0 0', "sandbox attach_object remove", 0));
+               me.TD(me, 1, 0.5, makeXonoticCommandButton(_("Detach all"), '0 0 0', "sandbox attach_object remove", 0));
        me.TR(me);
        me.TR(me);
        me.TD(me, 1, 2, e = makeXonoticTextLabel(0, _("Visual object properties:")));