diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java index 69c4d2d53..9bd5610e5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java @@ -411,7 +411,7 @@ public abstract class PlotArea { private Component getFlagsComponent(Component flagsComponent, Collection> flagCollection) { if (flagCollection.isEmpty()) { - flagsComponent = MINI_MESSAGE.parse(TranslatableCaption.of("info.none").getComponent(LocaleHolder.console())); + flagsComponent = MINI_MESSAGE.parse(TranslatableCaption.of("flag.no_flags").getComponent(LocaleHolder.console())); } else { String prefix = " "; for (final PlotFlag flag : flagCollection) { diff --git a/Core/src/main/resources/lang/messages_en.json b/Core/src/main/resources/lang/messages_en.json index aea7b8756..d2035e6aa 100644 --- a/Core/src/main/resources/lang/messages_en.json +++ b/Core/src/main/resources/lang/messages_en.json @@ -536,6 +536,7 @@ "flag.not_valid_flag": "That is not a valid flag.", "flag.not_valid_flag_suggested": "That is not a valid flag. Did you mean: ", "flag.not_valid_value": "Flag values must be alphanumerical.", + "flag.no_flags": "Global flags: None", "flag.flag_not_removed": "The flag could not be removed.", "flag.flag_not_added": "The flag could not be added.", "flag.flag_removed": "The flag has been removed successfully.",