]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix a few tooltips
authorterencehill <piuntn@gmail.com>
Fri, 25 Sep 2015 21:49:56 +0000 (23:49 +0200)
committerterencehill <piuntn@gmail.com>
Fri, 25 Sep 2015 22:17:28 +0000 (00:17 +0200)
qcsrc/menu/xonotic/dialog_multiplayer_create.qc
qcsrc/menu/xonotic/dialog_settings_game_view.qc
qcsrc/menu/xonotic/dialog_settings_misc.qc

index bafd9b6ff3b3163893a2af0e9f3aaedf3a18b37b..2c7611757744077aac95949cec47e95d2e290da0 100644 (file)
@@ -168,7 +168,7 @@ void XonoticServerCreateTab_fill(entity me)
                // string filter label and box
                me.TD(me, 1, 0.35, e = makeXonoticTextLabel(1, _("Filter:")));
                me.mapListBox.stringFilterBox = makeXonoticInputBox_T(0, string_null,
-                       _("Click here or Ctrl-F to provide a keyword to narrow down the maplist above. Ctrl-Delete to clear; Enter when done."));
+                       _("Click here or Ctrl-F to provide a keyword to narrow down the map list. Ctrl-Delete to clear; Enter when done."));
                me.TD(me, 1, me.columns - me.firstColumn - 0.35, e = me.mapListBox.stringFilterBox);
                        e.onChange = MapList_StringFilterBox_Change;
                        e.keyDown = MapList_StringFilterBox_keyDown;
@@ -179,11 +179,11 @@ void XonoticServerCreateTab_fill(entity me)
                // the selection buttons
                me.TDempty(me, 0.2);
                me.TD(me, 1, 1.3, e = makeXonoticButton_T(_("Add shown"), '0 0 0',
-                       _("Add the maps shown in Maplist above to your selection")));
+                       _("Add the maps shown in the list to your selection")));
                        e.onClick = MapList_Add_Shown;
                        e.onClickEntity = me.mapListBox;
                me.TD(me, 1, 1.3, e = makeXonoticButton_T(_("Remove shown"), '0 0 0',
-                       _("Remove the maps shown in Maplist above from your selection")));
+                       _("Remove the maps shown in the list from your selection")));
                        e.onClick = MapList_Remove_Shown;
                        e.onClickEntity = me.mapListBox;
        me.gotoRC(me, me.rows - 2.5, me.firstColumn);
index 40b5aebba40e884b9e2f594315121ba7aa7cb21a..5a0694a54164241c3b1b3522c5953fc4ddef417e 100644 (file)
@@ -78,7 +78,7 @@ void XonoticGameViewSettingsTab_fill(entity me)
        me.gotoRC(me, 0, 3.2); me.setFirstColumn(me, me.currentColumn);
                me.TD(me, 1, 1, e = makeXonoticTextLabel(0, _("Field of view:")));
                me.TD(me, 1, 2, e = makeXonoticSlider_T(60, 130, 5, "fov",
-                       _("Field of vision in degrees from 60 to 130, default is 90")));
+                       _("Field of vision in degrees (default: 100)")));
        me.TR(me);
        me.TR(me);
                //me.TDempty(me, 0.2);
index 7b42671ad5e21f6bfb221852522839f958c97269..895a554e4757f8aa30ccd5363ab8545b331292f9 100644 (file)
@@ -33,7 +33,7 @@ void XonoticMiscSettingsTab_fill(entity me)
        me.TR(me);
                me.TD(me, 1, 1, e = makeXonoticTextLabel(0, _("Bandwidth:")));
                me.TD(me, 1, 2, e = makeXonoticTextSlider_T("_cl_rate",
-                       _("Specify your network speed with this slider")));
+                       _("Specify your network speed")));
                        e.addValue(e, _("56k"), "4000");
                        e.addValue(e, _("ISDN"), "7000");
                        e.addValue(e, _("Slow ADSL"), "15000");