From b2bc2887d2543b1d967b223da2570c80eddfc513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20S=C3=B6derberg?= Date: Mon, 11 May 2020 20:17:41 +0200 Subject: [PATCH] Fix dumdum merge --- .../core/configuration/Captions.java | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Captions.java b/Core/src/main/java/com/plotsquared/core/configuration/Captions.java index c7c65b58d..1e0e50080 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Captions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Captions.java @@ -751,6 +751,29 @@ public enum Captions implements Caption { false, "Info"), // + // + BACKUP_USAGE("$1Usage: $2/plot backup save/list/load", "Backups"), + BACKUP_IMPOSSIBLE("$2Backups are not enabled for this plot: %s", "Backups"), + BACKUP_SAVE_SUCCESS("$1The backup was created successfully", "Backups"), + BACKUP_SAVE_FAILED("$2The backup could not be created: %s", "Backups"), + BACKUP_LOAD_SUCCESS("$1The backup was restored successfully", "Backups"), + BACKUP_LOAD_FAILURE("$2The backup could not be restored: %s", "Backups"), + BACKUP_LOAD_USAGE("$1Usage: $2/plot backup load [#]", "Backups"), + BACKUP_LIST_HEADER("$1Available backups for plot $2%s", "Backups"), + BACKUP_LIST_ENTRY("$3- $1#%s0 $2%s1", "Backups"), + BACKUP_LIST_FAILED("$2Backup listing failed: %s", "Backups"), + BACKUP_AUTOMATIC_STARTED("$1Backing up the plot...", "Backups"), + BACKUP_AUTOMATIC_FINISHED("$1The automatic backup process finished successfully!", "Backups"), + BACKUP_AUTOMATIC_FAILURE("$2The automatic backup process failed. Your pending action has been canceled. Reason: %s", "Backups"), + // + + // + GENERIC_OTHER("other", "Generic"), + GENERIC_MERGED("merged", "Generic"), + GENERIC_UNOWNED("unowned", "Generic"), + GENERIC_INVALID_CHOICE("invalid choice", "Generic"), + // + /** * Legacy Configuration Conversion */