diff --git a/runelite-client/src/main/java/net/runelite/client/config/RuneLiteConfig.java b/runelite-client/src/main/java/net/runelite/client/config/RuneLiteConfig.java index c56f4a9995..36b3084946 100644 --- a/runelite-client/src/main/java/net/runelite/client/config/RuneLiteConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/config/RuneLiteConfig.java @@ -151,7 +151,7 @@ public interface RuneLiteConfig extends Config @ConfigItem( keyName = "gameAlwaysOnTop", - name = "Enable client always on top", + name = "Always on top", description = "The game will always be on the top of the screen", position = 17, section = windowSettings @@ -163,8 +163,8 @@ public interface RuneLiteConfig extends Config @ConfigItem( keyName = "warningOnExit", - name = "Display warning on exit", - description = "Toggles a warning popup when trying to exit the client", + name = "Exit warning", + description = "Shows a warning popup when trying to exit the client", position = 18, section = windowSettings ) @@ -199,7 +199,7 @@ public interface RuneLiteConfig extends Config @ConfigItem( keyName = "notificationRequestFocus", - name = "Request focus on notification", + name = "Request focus", description = "Configures the window focus request type on notification", position = 21, section = notificationSettings @@ -223,8 +223,8 @@ public interface RuneLiteConfig extends Config @ConfigItem( keyName = "notificationGameMessage", - name = "Enable game message notifications", - description = "Puts a notification message in the chatbox", + name = "Game message notifications", + description = "Adds a notification message to the chatbox", position = 23, section = notificationSettings ) @@ -235,7 +235,7 @@ public interface RuneLiteConfig extends Config @ConfigItem( keyName = "flashNotification", - name = "Flash notification", + name = "Flash", description = "Flashes the game frame as a notification", position = 24, section = notificationSettings @@ -260,7 +260,7 @@ public interface RuneLiteConfig extends Config @Alpha @ConfigItem( keyName = "notificationFlashColor", - name = "Notification Flash Color", + name = "Notification Flash", description = "Sets the color of the notification flashes.", position = 26, section = notificationSettings @@ -296,7 +296,7 @@ public interface RuneLiteConfig extends Config @ConfigItem( keyName = "interfaceFontType", - name = "Interface Overlay Font", + name = "Interface Font", description = "Configures what font type is used for in-game interface overlays such as panels, opponent info, clue scrolls etc.", position = 32, section = overlaySettings diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/agility/AgilityConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/agility/AgilityConfig.java index a5ba1dca42..c68530ec95 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/agility/AgilityConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/agility/AgilityConfig.java @@ -147,7 +147,7 @@ public interface AgilityConfig extends Config @Alpha @ConfigItem( keyName = "portalsHighlight", - name = "Portals Highlight Color", + name = "Portals Color", description = "Color of highlighted Prifddinas portals", position = 9 ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/boosts/BoostsConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/boosts/BoostsConfig.java index dbb0d6d731..91cec5c09c 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/boosts/BoostsConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/boosts/BoostsConfig.java @@ -81,7 +81,7 @@ public interface BoostsConfig extends Config @ConfigItem( keyName = "displayNextBuffChange", - name = "Display next buff change", + name = "Next buff change", description = "Configures whether or not to display when the next buffed stat change will be", position = 4 ) @@ -92,7 +92,7 @@ public interface BoostsConfig extends Config @ConfigItem( keyName = "displayNextDebuffChange", - name = "Display next debuff change", + name = "Next debuff change", description = "Configures whether or not to display when the next debuffed stat change will be", position = 5 ) @@ -103,7 +103,7 @@ public interface BoostsConfig extends Config @ConfigItem( keyName = "boostThreshold", - name = "Boost amount threshold", + name = "Boost threshold", description = "The threshold at which boosted levels will be displayed in a different color. A value of 0 will disable the feature.", position = 6 ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/cannon/CannonConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/cannon/CannonConfig.java index 05ba93da2e..3ae29b0338 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/cannon/CannonConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/cannon/CannonConfig.java @@ -51,7 +51,7 @@ public interface CannonConfig extends Config ) @ConfigItem( keyName = "lowWarningThreshold", - name = "Low Warning Threshold", + name = "Low warning threshold", description = "Configures the number of cannonballs remaining before a notification is sent.
Regardless of this value, a notification will still be sent when your cannon is empty.", position = 2 ) @@ -62,7 +62,7 @@ public interface CannonConfig extends Config @ConfigItem( keyName = "showInfobox", - name = "Show Cannonball infobox", + name = "Show cannonball infobox", description = "Configures whether to show the cannonballs in an infobox", position = 3 ) @@ -85,7 +85,7 @@ public interface CannonConfig extends Config @Alpha @ConfigItem( keyName = "highlightDoubleHitColor", - name = "Color of double hit spots", + name = "Double hit spots", description = "Configures the highlight color of double hit spots", position = 5 ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/chatfilter/ChatFilterConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/chatfilter/ChatFilterConfig.java index 2b9a45c2e9..0ad1071f9d 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/chatfilter/ChatFilterConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/chatfilter/ChatFilterConfig.java @@ -156,7 +156,7 @@ public interface ChatFilterConfig extends Config @ConfigItem( keyName = "maxRepeatedPublicChats", - name = "Max repeated public chats", + name = "Repeat filter", description = "Block player chat message if repeated this many times. 0 is off", position = 11 ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/driftnet/DriftNetConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/driftnet/DriftNetConfig.java index a977ab3890..c7462819c3 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/driftnet/DriftNetConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/driftnet/DriftNetConfig.java @@ -99,7 +99,7 @@ public interface DriftNetConfig extends Config @ConfigItem( keyName = "tagAnnette", - name = "Tag Annette when no nets in inventory", + name = "Tag Annette", description = "Tag Annette when no nets in inventory", position = 6 ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/fishing/FishingConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/fishing/FishingConfig.java index e5a1bca65b..e48d80edbd 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/fishing/FishingConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/fishing/FishingConfig.java @@ -93,7 +93,7 @@ public interface FishingConfig extends Config @Alpha @ConfigItem( keyName = "minnowsOverlayColor", - name = "Minnows Overlay Color", + name = "Minnows Overlay", description = "Color of overlays for Minnows", position = 5 ) @@ -105,7 +105,7 @@ public interface FishingConfig extends Config @Alpha @ConfigItem( keyName = "aerialOverlayColor", - name = "Aerial Overlay Color", + name = "Aerial Overlay", description = "Color of overlays when 1-tick aerial fishing", position = 6 ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/grounditems/GroundItemsConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/grounditems/GroundItemsConfig.java index 6540aa6e80..96f454cd1c 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/grounditems/GroundItemsConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/grounditems/GroundItemsConfig.java @@ -156,7 +156,7 @@ public interface GroundItemsConfig extends Config @ConfigItem( keyName = "notifyTier", - name = "Notify >= Tier", + name = "Notify tier", description = "Configures which price tiers will trigger a notification on drop", position = 8 ) @@ -211,7 +211,7 @@ public interface GroundItemsConfig extends Config @ConfigItem( keyName = "hideUnderValue", - name = "Hide < Value", + name = "Hide under value", description = "Configures hidden ground items under both GE and HA value", position = 13 ) @@ -223,7 +223,7 @@ public interface GroundItemsConfig extends Config @Alpha @ConfigItem( keyName = "defaultColor", - name = "Default items color", + name = "Default items", description = "Configures the color for default, non-highlighted items", position = 14 ) @@ -235,7 +235,7 @@ public interface GroundItemsConfig extends Config @Alpha @ConfigItem( keyName = "highlightedColor", - name = "Highlighted items color", + name = "Highlighted items", description = "Configures the color for highlighted items", position = 15 ) @@ -247,7 +247,7 @@ public interface GroundItemsConfig extends Config @Alpha @ConfigItem( keyName = "hiddenColor", - name = "Hidden items color", + name = "Hidden items", description = "Configures the color for hidden items in right-click menu and when holding ALT", position = 16 ) @@ -259,7 +259,7 @@ public interface GroundItemsConfig extends Config @Alpha @ConfigItem( keyName = "lowValueColor", - name = "Low value items color", + name = "Low value items", description = "Configures the color for low value items", position = 17 ) @@ -282,7 +282,7 @@ public interface GroundItemsConfig extends Config @Alpha @ConfigItem( keyName = "mediumValueColor", - name = "Medium value items color", + name = "Medium value items", description = "Configures the color for medium value items", position = 19 ) @@ -305,7 +305,7 @@ public interface GroundItemsConfig extends Config @Alpha @ConfigItem( keyName = "highValueColor", - name = "High value items color", + name = "High value items", description = "Configures the color for high value items", position = 21 ) @@ -328,7 +328,7 @@ public interface GroundItemsConfig extends Config @Alpha @ConfigItem( keyName = "insaneValueColor", - name = "Insane value items color", + name = "Insane value items", description = "Configures the color for insane value items", position = 23 ) @@ -361,8 +361,8 @@ public interface GroundItemsConfig extends Config @ConfigItem( keyName = "doubleTapDelay", - name = "Delay for double-tap ALT to hide", - description = "Decrease this number if you accidentally hide ground items often. (0 = Disabled)", + name = "Double-tap delay", + description = "Delay for the double-tap ALT to hide ground items. 0 to disable.", position = 26 ) @Units(Units.MILLISECONDS) @@ -373,7 +373,7 @@ public interface GroundItemsConfig extends Config @ConfigItem( keyName = "collapseEntries", - name = "Collapse ground item menu entries", + name = "Collapse ground item menu", description = "Collapses ground item menu entries together and appends count", position = 27 ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/idlenotifier/IdleNotifierConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/idlenotifier/IdleNotifierConfig.java index 564cbb609b..b7ab769756 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/idlenotifier/IdleNotifierConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/idlenotifier/IdleNotifierConfig.java @@ -90,7 +90,7 @@ public interface IdleNotifierConfig extends Config @ConfigItem( keyName = "hitpoints", - name = "Hitpoints Notification Threshold", + name = "Hitpoints Threshold", description = "The amount of hitpoints to send a notification at. A value of 0 will disable notification.", position = 6 ) @@ -101,7 +101,7 @@ public interface IdleNotifierConfig extends Config @ConfigItem( keyName = "prayer", - name = "Prayer Notification Threshold", + name = "Prayer Threshold", description = "The amount of prayer points to send a notification at. A value of 0 will disable notification.", position = 7 ) @@ -112,7 +112,7 @@ public interface IdleNotifierConfig extends Config @ConfigItem( keyName = "oxygen", - name = "Oxygen Notification Threshold", + name = "Oxygen Threshold", position = 8, description = "The amount of remaining oxygen to send a notification at. A value of 0 will disable notification." ) @@ -124,9 +124,9 @@ public interface IdleNotifierConfig extends Config @ConfigItem( keyName = "spec", - name = "Special Attack Energy Notification Threshold", + name = "Spec Threshold", position = 9, - description = "The amount of spec energy reached to send a notification at. A value of 0 will disable notification." + description = "The amount of special attack energy reached to send a notification at. A value of 0 will disable notification." ) @Units(Units.PERCENT) default int getSpecEnergyThreshold() diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/implings/ImplingsConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/implings/ImplingsConfig.java index 9fe7e56fb9..a11ef6f7df 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/implings/ImplingsConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/implings/ImplingsConfig.java @@ -55,7 +55,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 1, keyName = "showbaby", - name = "Show Baby implings", + name = "Baby implings", description = "Configures whether or not Baby impling tags are displayed", section = implingSection ) @@ -80,7 +80,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 3, keyName = "showyoung", - name = "Show Young implings", + name = "Young implings", description = "Configures whether or not Young impling tags are displayed", section = implingSection ) @@ -105,7 +105,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 5, keyName = "showgourmet", - name = "Show Gourmet implings", + name = "Gourmet implings", description = "Configures whether or not Gourmet impling tags are displayed", section = implingSection ) @@ -130,7 +130,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 7, keyName = "showearth", - name = "Show Earth implings", + name = "Earth implings", description = "Configures whether or not Earth impling tags are displayed", section = implingSection ) @@ -155,7 +155,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 9, keyName = "showessence", - name = "Show Essence implings", + name = "Essence implings", description = "Configures whether or not Essence impling tags are displayed", section = implingSection ) @@ -180,7 +180,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 11, keyName = "showeclectic", - name = "Show Eclectic implings", + name = "Eclectic implings", description = "Configures whether or not Eclectic impling tags are displayed", section = implingSection ) @@ -205,7 +205,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 13, keyName = "shownature", - name = "Show Nature implings", + name = "Nature implings", description = "Configures whether or not Nature impling tags are displayed", section = implingSection ) @@ -230,7 +230,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 15, keyName = "showmagpie", - name = "Show Magpie implings", + name = "Magpie implings", description = "Configures whether or not Magpie impling tags are displayed", section = implingSection ) @@ -255,7 +255,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 17, keyName = "showninja", - name = "Show Ninja implings", + name = "Ninja implings", description = "Configures whether or not Ninja impling tags are displayed", section = implingSection ) @@ -280,7 +280,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 19, keyName = "showCrystal", - name = "Show Crystal implings", + name = "Crystal implings", description = "Configures whether or not Crystal implings are displayed", section = implingSection ) @@ -305,7 +305,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 21, keyName = "showdragon", - name = "Show Dragon implings", + name = "Dragon implings", description = "Configures whether or not Dragon impling tags are displayed", section = implingSection ) @@ -330,7 +330,7 @@ public interface ImplingsConfig extends Config @ConfigItem( position = 23, keyName = "showlucky", - name = "Show Lucky implings", + name = "Lucky implings", description = "Configures whether or not Lucky impling tags are displayed", section = implingSection ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/itemcharges/ItemChargeConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/itemcharges/ItemChargeConfig.java index 0e8a4569fe..b998251ccb 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/itemcharges/ItemChargeConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/itemcharges/ItemChargeConfig.java @@ -51,7 +51,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "veryLowWarningColor", - name = "Very Low Warning Color", + name = "Very Low Warning", description = "The color of the overlay when charges are very low", position = 1 ) @@ -62,7 +62,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "lowWarningColor", - name = "Low Warning Color", + name = "Low Warning", description = "The color of the overlay when charges are low", position = 2 ) @@ -95,7 +95,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showTeleportCharges", - name = "Show Teleport Charges", + name = "Teleport Charges", description = "Show teleport item charge counts", position = 5, section = chargesSection @@ -149,7 +149,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showImpCharges", - name = "Show Imp-in-a-box charges", + name = "Imp-in-a-box charges", description = "Show Imp-in-a-box item charges", position = 8, section = chargesSection @@ -161,7 +161,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showFungicideCharges", - name = "Show Fungicide Charges", + name = "Fungicide Charges", description = "Show Fungicide item charges", position = 9, section = chargesSection @@ -173,7 +173,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showWateringCanCharges", - name = "Show Watering Can Charges", + name = "Watering Can Charges", description = "Show Watering can item charges", position = 10, section = chargesSection @@ -185,7 +185,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showWaterskinCharges", - name = "Show Waterskin Charges", + name = "Waterskin Charges", description = "Show Waterskin dose counts", position = 11, section = chargesSection @@ -197,7 +197,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showBellowCharges", - name = "Show Bellows Charges", + name = "Bellows Charges", description = "Show Ogre bellows item charges", position = 12, section = chargesSection @@ -209,7 +209,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showBasketCharges", - name = "Show Basket Charges", + name = "Basket Charges", description = "Show Fruit basket item counts", position = 13, section = chargesSection @@ -221,7 +221,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showSackCharges", - name = "Show Sack Charges", + name = "Sack Charges", description = "Show Sack item counts", position = 14, section = chargesSection @@ -233,7 +233,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showAbyssalBraceletCharges", - name = "Show Abyssal Bracelet Charges", + name = "Abyssal Bracelet Charges", description = "Show Abyssal bracelet item charges", position = 15, section = chargesSection @@ -245,7 +245,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showAmuletOfChemistryCharges", - name = "Show Amulet of Chemistry Charges", + name = "Amulet of Chemistry Charges", description = "Show Amulet of chemistry item charges", position = 16, section = chargesSection @@ -275,7 +275,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showAmuletOfBountyCharges", - name = "Show Amulet of Bounty Charges", + name = "Amulet of Bounty Charges", description = "Show Amulet of bounty item charges", position = 17, section = chargesSection @@ -317,7 +317,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showBindingNecklaceCharges", - name = "Show Binding Necklace Charges", + name = "Binding Necklace Charges", description = "Show Binding necklace item charges", position = 19, section = chargesSection @@ -359,7 +359,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showExplorerRingCharges", - name = "Show Explorer's Ring Alch Charges", + name = "Explorer's Ring Alch Charges", description = "Show Explorer's ring alchemy charges", position = 21, section = chargesSection @@ -389,7 +389,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showRingOfForgingCount", - name = "Show Ring of Forging Charges", + name = "Ring of Forging Charges", description = "Show Ring of forging item charges", position = 22, section = chargesSection @@ -431,7 +431,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showInfoboxes", - name = "Show Infoboxes", + name = "Infoboxes", description = "Show an infobox with remaining charges for equipped items", position = 24 ) @@ -442,7 +442,7 @@ public interface ItemChargeConfig extends Config @ConfigItem( keyName = "showPotionDoseCount", - name = "Show Potion Doses", + name = "Potion Doses", description = "Show remaining potion doses", position = 25, section = chargesSection diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/opponentinfo/OpponentInfoConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/opponentinfo/OpponentInfoConfig.java index 6adb3af1f2..ce0c565c03 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/opponentinfo/OpponentInfoConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/opponentinfo/OpponentInfoConfig.java @@ -44,7 +44,7 @@ public interface OpponentInfoConfig extends Config @ConfigItem( keyName = "hitpointsDisplayStyle", - name = "Hitpoints display style", + name = "Display style", description = "Show opponent's hitpoints as a value (if known), percentage, or both", position = 1 ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/playerindicators/PlayerIndicatorsConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/playerindicators/PlayerIndicatorsConfig.java index cb55db7b1e..5daffe8ef0 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/playerindicators/PlayerIndicatorsConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/playerindicators/PlayerIndicatorsConfig.java @@ -55,7 +55,7 @@ public interface PlayerIndicatorsConfig extends Config @ConfigItem( position = 1, keyName = "ownNameColor", - name = "Own player color", + name = "Own player", description = "Color of your own player", section = highlightSection ) @@ -79,7 +79,7 @@ public interface PlayerIndicatorsConfig extends Config @ConfigItem( position = 3, keyName = "friendNameColor", - name = "Friend color", + name = "Friend", description = "Color of friend names", section = highlightSection ) @@ -103,7 +103,7 @@ public interface PlayerIndicatorsConfig extends Config @ConfigItem( position = 5, keyName = "clanMemberColor", - name = "Friends chat member color", + name = "Friends chat", description = "Color of friends chat members", section = highlightSection ) @@ -127,7 +127,7 @@ public interface PlayerIndicatorsConfig extends Config @ConfigItem( position = 7, keyName = "teamMemberColor", - name = "Team member color", + name = "Team member", description = "Color of team members", section = highlightSection ) @@ -151,7 +151,7 @@ public interface PlayerIndicatorsConfig extends Config @ConfigItem( position = 9, keyName = "nonClanMemberColor", - name = "Others color", + name = "Others", description = "Color of other players names", section = highlightSection ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/prayer/PrayerConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/prayer/PrayerConfig.java index d2cad67fe5..c9fc7fcd2b 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/prayer/PrayerConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/prayer/PrayerConfig.java @@ -133,7 +133,7 @@ public interface PrayerConfig extends Config @ConfigItem( position = 9, keyName = "replaceOrbText", - name = "Replace orb text with prayer time left", + name = "Show time left", description = "Show time remaining of current prayers in the prayer orb." ) default boolean replaceOrbText() diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/pyramidplunder/PyramidPlunderConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/pyramidplunder/PyramidPlunderConfig.java index aa145fad74..ffde9e56d4 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/pyramidplunder/PyramidPlunderConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/pyramidplunder/PyramidPlunderConfig.java @@ -69,7 +69,7 @@ public interface PyramidPlunderConfig extends Config @ConfigItem( position = 3, keyName = "highlightDoorsColor", - name = "Highlight doors color", + name = "Highlight doors", description = "Selects the color for highlighting tomb doors" ) default Color highlightDoorsColor() @@ -92,7 +92,7 @@ public interface PyramidPlunderConfig extends Config @ConfigItem( position = 5, keyName = "highlightSpeartrapColor", - name = "Highlight speartrap color", + name = "Highlight speartrap", description = "Selects the color for highlighting speartraps" ) default Color highlightSpeartrapsColor() @@ -115,7 +115,7 @@ public interface PyramidPlunderConfig extends Config @ConfigItem( position = 7, keyName = "highlightContainersColor", - name = "Highlight containers color", + name = "Highlight containers", description = "Selects the color for highlighting urns, chests and sarcophagus" ) default Color highlightContainersColor() diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/raids/RaidsConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/raids/RaidsConfig.java index 5a1a81bf7e..3abb6eb4f5 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/raids/RaidsConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/raids/RaidsConfig.java @@ -47,7 +47,7 @@ public interface RaidsConfig extends Config @ConfigItem( position = 1, keyName = "pointsMessage", - name = "Display points in chatbox after raid", + name = "Display points in chatbox", description = "Display a message with total points, individual points and percentage at the end of a raid" ) default boolean pointsMessage() @@ -69,8 +69,8 @@ public interface RaidsConfig extends Config @ConfigItem( position = 3, keyName = "scoutOverlayAtBank", - name = "Show scout overlay outside lobby", - description = "Keep the overlay active while at the raids area" + name = "Show scout overlay outside", + description = "Keep the overlay active outside of the raid starting room" ) default boolean scoutOverlayAtBank() { @@ -168,8 +168,8 @@ public interface RaidsConfig extends Config @ConfigItem( position = 12, keyName = "layoutMessage", - name = "Send raid layout message when entering raid", - description = "Sends game message with raid layout on entering new raid" + name = "Raid layout message", + description = "Sends a game message with the raid layout on entering a raid" ) default boolean layoutMessage() { @@ -179,7 +179,7 @@ public interface RaidsConfig extends Config @ConfigItem( position = 13, keyName = "screenshotHotkey", - name = "Scouter screenshot hotkey", + name = "Screenshot hotkey", description = "Hotkey used to screenshot the scouting overlay" ) default Keybind screenshotHotkey() @@ -190,7 +190,7 @@ public interface RaidsConfig extends Config @ConfigItem( position = 14, keyName = "uploadScreenshot", - name = "Upload scouting screenshot", + name = "Upload screenshot", description = "Uploads the scouting screenshot to Imgur or the clipboard" ) default ImageUploadStyle uploadScreenshot() diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/regenmeter/RegenMeterConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/regenmeter/RegenMeterConfig.java index a206557fcb..a1a528ae58 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/regenmeter/RegenMeterConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/regenmeter/RegenMeterConfig.java @@ -52,7 +52,7 @@ public interface RegenMeterConfig extends Config @ConfigItem( keyName = "showWhenNoChange", - name = "Show hitpoints regen at full hitpoints", + name = "Show at full hitpoints", description = "Always show the hitpoints regen orb, even if there will be no stat change") default boolean showWhenNoChange() { @@ -61,7 +61,7 @@ public interface RegenMeterConfig extends Config @ConfigItem( keyName = "notifyBeforeHpRegenDuration", - name = "Hitpoint Regen Notification", + name = "Hitpoint Notification", description = "Notify approximately when your next hitpoint is about to regen. A value of 0 will disable notification." ) @Units(Units.SECONDS) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/statusbars/StatusBarsConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/statusbars/StatusBarsConfig.java index b6883037b7..0624edbdc6 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/statusbars/StatusBarsConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/statusbars/StatusBarsConfig.java @@ -64,7 +64,7 @@ public interface StatusBarsConfig extends Config @ConfigItem( keyName = "leftBarMode", - name = "Left Status Bar", + name = "Left Bar", description = "Configures the left status bar" ) default BarMode leftBarMode() @@ -74,7 +74,7 @@ public interface StatusBarsConfig extends Config @ConfigItem( keyName = "rightBarMode", - name = "Right Status Bar", + name = "Right Bar", description = "Configures the right status bar" ) default BarMode rightBarMode() diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/tileindicators/TileIndicatorsConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/tileindicators/TileIndicatorsConfig.java index a03f07e5f7..c1ab681930 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/tileindicators/TileIndicatorsConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/tileindicators/TileIndicatorsConfig.java @@ -36,8 +36,9 @@ public interface TileIndicatorsConfig extends Config @Alpha @ConfigItem( keyName = "highlightDestinationColor", - name = "Color of current destination highlighting", - description = "Configures the highlight color of current destination" + name = "Destination tile", + description = "Configures the highlight color of current destination", + position = 1 ) default Color highlightDestinationColor() { @@ -47,7 +48,8 @@ public interface TileIndicatorsConfig extends Config @ConfigItem( keyName = "highlightDestinationTile", name = "Highlight destination tile", - description = "Highlights tile player is walking to" + description = "Highlights tile player is walking to", + position = 2 ) default boolean highlightDestinationTile() { @@ -57,8 +59,9 @@ public interface TileIndicatorsConfig extends Config @Alpha @ConfigItem( keyName = "highlightHoveredColor", - name = "Color of current hovered highlighting", - description = "Configures the highlight color of hovered tile" + name = "Hovered tile", + description = "Configures the highlight color of hovered tile", + position = 3 ) default Color highlightHoveredColor() { @@ -68,7 +71,8 @@ public interface TileIndicatorsConfig extends Config @ConfigItem( keyName = "highlightHoveredTile", name = "Highlight hovered tile", - description = "Highlights tile player is hovering with mouse" + description = "Highlights tile player is hovering with mouse", + position = 4 ) default boolean highlightHoveredTile() { @@ -78,8 +82,9 @@ public interface TileIndicatorsConfig extends Config @Alpha @ConfigItem( keyName = "highlightCurrentColor", - name = "Color of current true tile highlighting", - description = "Configures the highlight color of current true tile" + name = "True tile", + description = "Configures the highlight color of current true tile", + position = 5 ) default Color highlightCurrentColor() { @@ -88,8 +93,9 @@ public interface TileIndicatorsConfig extends Config @ConfigItem( keyName = "highlightCurrentTile", - name = "Highlight current true tile", - description = "Highlights true tile player is on as seen by server" + name = "Highlight true tile", + description = "Highlights true tile player is on as seen by server", + position = 6 ) default boolean highlightCurrentTile() { diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/timetracking/TimeTrackingConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/timetracking/TimeTrackingConfig.java index 76ceb67bc6..73590d7d2d 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/timetracking/TimeTrackingConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/timetracking/TimeTrackingConfig.java @@ -110,7 +110,7 @@ public interface TimeTrackingConfig extends Config @ConfigItem( keyName = "timerWarningThreshold", - name = "Timer Warning Threshold", + name = "Warning Threshold", description = "The time at which to change the timer color to the warning color", position = 6 ) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/wintertodt/WintertodtConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/wintertodt/WintertodtConfig.java index 407d9018aa..a466568b82 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/wintertodt/WintertodtConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/wintertodt/WintertodtConfig.java @@ -51,7 +51,7 @@ public interface WintertodtConfig extends Config @ConfigItem( position = 1, keyName = "damageNotificationColor", - name = "Damage Notification Color", + name = "Damage Notification", description = "Color of damage notification text in chat" ) default Color damageNotificationColor() @@ -62,7 +62,7 @@ public interface WintertodtConfig extends Config @ConfigItem( position = 2, keyName = "roundNotification", - name = "Wintertodt round notification", + name = "Round notification", description = "Notifies you before the round starts (in seconds)" ) @Range( diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/worldmap/WorldMapConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/worldmap/WorldMapConfig.java index 8dddb1ad60..3fbca342b6 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/worldmap/WorldMapConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/worldmap/WorldMapConfig.java @@ -34,7 +34,7 @@ public interface WorldMapConfig extends Config { @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_FAIRY_RING_TOOLTIPS, - name = "Show fairy ring codes in tooltip", + name = "Fairy ring code tooltip", description = "Display the code for fairy rings in the icon tooltip", position = 1 ) @@ -45,7 +45,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_FAIRY_RING_ICON, - name = "Show fairy ring travel icon", + name = "Fairy ring travel icon", description = "Override the travel icon for fairy rings", position = 2 ) @@ -56,7 +56,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_AGILITY_SHORTCUT_TOOLTIPS, - name = "Show agility level requirement", + name = "Agility level requirement", description = "Display the required Agility level in the icon tooltip", position = 3 ) @@ -78,7 +78,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_AGILITY_COURSE_TOOLTIPS, - name = "Show agility course in tooltip", + name = "Agility course tooltip", description = "Displays the name of the agility course in the tooltip", position = 5 ) @@ -100,7 +100,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_NORMAL_TELEPORT_ICON, - name = "Show Standard Spellbook destinations", + name = "Standard Spellbook destinations", description = "Show icons at the destinations for teleports in the Standard Spellbook", position = 7 ) @@ -111,7 +111,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_MINIGAME_TOOLTIP, - name = "Show minigame name in tooltip", + name = "Minigame names", description = "Display the name of the minigame in the icon tooltip", position = 8 ) @@ -122,7 +122,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_ANCIENT_TELEPORT_ICON, - name = "Show Ancient Magicks destinations", + name = "Ancient Magicks destinations", description = "Show icons at the destinations for teleports in the Ancient Spellbook", position = 9 ) @@ -133,7 +133,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_LUNAR_TELEPORT_ICON, - name = "Show Lunar Spellbook destinations", + name = "Lunar Spellbook destinations", description = "Show icons at the destinations for teleports in the Lunar Spellbook", position = 10 ) @@ -144,7 +144,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_ARCEUUS_TELEPORT_ICON, - name = "Show Arceuus Spellbook destinations", + name = "Arceuus Spellbook destinations", description = "Show icons at the destinations for teleports in the Arceuus Spellbook", position = 11 ) @@ -155,7 +155,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_JEWELLERY_TELEPORT_ICON, - name = "Show jewellery teleport locations", + name = "Jewellery teleport destinations", description = "Show icons at the destinations for teleports from jewellery", position = 12 ) @@ -166,7 +166,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_SCROLL_TELEPORT_ICON, - name = "Show teleport scroll locations", + name = "Teleport scroll destinations", description = "Show icons at the destinations for teleports from scrolls", position = 13 ) @@ -177,7 +177,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_MISC_TELEPORT_ICON, - name = "Show misc teleport locations", + name = "Misc teleport destinations", description = "Show icons at the destinations for miscellaneous teleport items", position = 14 ) @@ -188,7 +188,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_QUEST_START_TOOLTIPS, - name = "Show quest names and status", + name = "Quest names and status", description = "Indicates the names of quests and shows completion status", position = 15 ) @@ -199,7 +199,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_FARMING_PATCH_TOOLTIPS, - name = "Show farming patch type", + name = "Farming patch type", description = "Display the type of farming patches in the icon tooltip", position = 16 ) @@ -210,7 +210,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_RARE_TREE_TOOLTIPS, - name = "Show rare tree type", + name = "Rare tree type", description = "Display the type of rare tree in the icon tooltip", position = 17 ) @@ -232,7 +232,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_TRANSPORTATION_TELEPORT_TOOLTIPS, - name = "Show transportation tooltips", + name = "Transportation tooltips", description = "Indicates types and destinations of Transportation", position = 19 ) @@ -243,7 +243,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_RUNECRAFTING_ALTAR_ICON, - name = "Show runecrafting altar locations", + name = "Runecrafting altar locations", description = "Show the icons of runecrafting altars", position = 20 ) @@ -254,7 +254,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_MINING_SITE_TOOLTIPS, - name = "Show mining site tooltips", + name = "Mining site tooltips", description = "Indicates the ore available at mining sites", position = 21 ) @@ -265,7 +265,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_DUNGEON_TOOLTIPS, - name = "Show dungeon tooltips", + name = "Dungeon tooltips", description = "Indicates the names of dungeons", position = 22 ) @@ -276,7 +276,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_HUNTER_AREA_TOOLTIPS, - name = "Show hunter area tooltips", + name = "Hunter area tooltips", description = "Indicates the creatures inside a hunting area", position = 23 ) @@ -287,7 +287,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_FISHING_SPOT_TOOLTIPS, - name = "Show fishing spot tooltips", + name = "Fishing spot tooltips", description = "Indicates the type of fish fishable at the fishing spot", position = 24 ) @@ -298,7 +298,7 @@ public interface WorldMapConfig extends Config @ConfigItem( keyName = WorldMapPlugin.CONFIG_KEY_KOUREND_TASK_TOOLTIPS, - name = "Show Kourend task tooltips", + name = "Kourend task tooltips", description = "Indicates the task or unlock for Kourend Favour locations", position = 25 )