2014-04-01 22:11:52 +02:00
package com.pahimar.ee3.reference ;
2014-07-18 21:55:10 +02:00
public final class Messages
2014-04-01 22:11:52 +02:00
{
2015-02-18 16:11:06 +01:00
public static final String OWNER_SET_TO_SELF = " misc.ee3:owner-set-to-self " ;
2015-04-03 06:39:52 +02:00
public static final String ENERGY_VALUE = " misc.ee3:energy-value " ;
2015-02-18 16:11:06 +01:00
2014-06-22 20:12:47 +02:00
/* Fingerprint check related constants */
public static final String NO_FINGERPRINT_MESSAGE = " The copy of Equivalent Exchange 3 that you are running is a development version of the mod, and as such may be unstable and/or incomplete. " ;
public static final String INVALID_FINGERPRINT_MESSAGE = " The copy of Equivalent Exchange 3 that you are running has been modified from the original, and unpredictable things may happen. Please consider re-downloading the original version of the mod. " ;
2014-07-18 21:55:10 +02:00
2015-02-21 04:51:58 +01:00
public static final class Gui
{
private static final String GUI_PREFIX = " container.ee3: " ;
public static final String NO_KNOWN_TRANSMUTATIONS = GUI_PREFIX + " alchemicalTome.noTransmutationsKnown " ;
}
2015-04-03 06:39:52 +02:00
public static final class Tooltips
{
private static final String TOOLTIP_PREFIX = " tooltip.ee3: " ;
public static final String UPGRADES_CHESTS = TOOLTIP_PREFIX + " upgradesPrefix " ;
public static final String ITEM_BELONGS_TO = TOOLTIP_PREFIX + " belongsTo " ;
public static final String ITEM_BELONGS_TO_NO_ONE = TOOLTIP_PREFIX + " belongsToNoOne " ;
public static final String SMALL = TOOLTIP_PREFIX + " small " ;
public static final String MEDIUM = TOOLTIP_PREFIX + " medium " ;
public static final String LARGE = TOOLTIP_PREFIX + " large " ;
public static final String SORT_BY_DISPLAY_NAME = TOOLTIP_PREFIX + " sortByDisplayName " ;
public static final String SORT_BY_ENERGY_VALUE = TOOLTIP_PREFIX + " sortByEnergyValue " ;
public static final String SORT_BY_ID = TOOLTIP_PREFIX + " sortByID " ;
2015-05-05 03:08:06 +02:00
public static final String SORT_ASCENDING = TOOLTIP_PREFIX + " sortAscending " ;
public static final String SORT_DESCENDING = TOOLTIP_PREFIX + " sortDescending " ;
2015-04-03 06:39:52 +02:00
}
2015-02-05 20:34:22 +01:00
public static final class Commands
{
2015-02-06 05:06:53 +01:00
private static final String COMMAND_PREFIX = " commands.ee3. " ;
2015-02-05 20:34:22 +01:00
public static final String BASE_COMMAND_USAGE = COMMAND_PREFIX + " usage " ;
2015-02-06 03:50:52 +01:00
public static final String PLAYER_NOT_FOUND_ERROR = COMMAND_PREFIX + " player-not-found.error " ;
public static final String INVALID_NBT_TAG_ERROR = COMMAND_PREFIX + " invalid-nbt-tag.error " ;
2015-02-19 06:06:18 +01:00
public static final String NO_ITEM = COMMAND_PREFIX + " no-item.error " ;
2015-02-06 03:50:52 +01:00
2015-02-06 05:06:53 +01:00
public static final String SET_ENERGY_VALUE_USAGE = COMMAND_PREFIX + Names . Commands . SET_ENERGY_VALUE + " .usage " ;
public static final String SET_ENERGY_VALUE_SUCCESS = COMMAND_PREFIX + Names . Commands . SET_ENERGY_VALUE + " .success " ;
2015-02-18 16:47:59 +01:00
public static final String SET_ENERGY_VALUE_CURRENT_ITEM_USAGE = COMMAND_PREFIX + Names . Commands . SET_ENERGY_VALUE_CURRENT_ITEM + " .usage " ;
public static final String SET_ENERGY_VALUE_CURRENT_ITEM_SUCCESS = COMMAND_PREFIX + Names . Commands . SET_ENERGY_VALUE_CURRENT_ITEM + " .success " ;
2015-02-06 05:06:53 +01:00
public static final String SYNC_ENERGY_VALUES_USAGE = COMMAND_PREFIX + Names . Commands . SYNC_ENERGY_VALUES + " .usage " ;
public static final String SYNC_ENERGY_VALUES_SUCCESS = COMMAND_PREFIX + Names . Commands . SYNC_ENERGY_VALUES + " .success " ;
public static final String SYNC_ENERGY_VALUES_DENIED = COMMAND_PREFIX + Names . Commands . SYNC_ENERGY_VALUES + " .denied " ;
2015-02-05 20:34:22 +01:00
public static final String PLAYER_LEARN_EVERYTHING_USAGE = COMMAND_PREFIX + Names . Commands . PLAYER_LEARN_EVERYTHING + " .usage " ;
public static final String PLAYER_LEARN_EVERYTHING_SUCCESS = COMMAND_PREFIX + Names . Commands . PLAYER_LEARN_EVERYTHING + " .success " ;
public static final String PLAYER_LEARN_ITEM_USAGE = COMMAND_PREFIX + Names . Commands . PLAYER_LEARN_ITEM + " .usage " ;
public static final String PLAYER_LEARN_ITEM_SUCCESS = COMMAND_PREFIX + Names . Commands . PLAYER_LEARN_ITEM + " .success " ;
2015-02-18 16:47:59 +01:00
public static final String PLAYER_LEARN_CURRENT_ITEM_USAGE = COMMAND_PREFIX + Names . Commands . PLAYER_LEARN_CURRENT_ITEM + " .usage " ;
public static final String PLAYER_LEARN_CURRENT_ITEM_SUCCESS = COMMAND_PREFIX + Names . Commands . PLAYER_LEARN_CURRENT_ITEM + " .success " ;
2015-02-05 20:34:22 +01:00
public static final String PLAYER_FORGET_EVERYTHING_USAGE = COMMAND_PREFIX + Names . Commands . PLAYER_FORGET_EVERYTHING + " .usage " ;
public static final String PLAYER_FORGET_EVERYTHING_SUCCESS = COMMAND_PREFIX + Names . Commands . PLAYER_FORGET_EVERYTHING + " .success " ;
public static final String PLAYER_FORGET_ITEM_USAGE = COMMAND_PREFIX + Names . Commands . PLAYER_FORGET_ITEM + " .usage " ;
public static final String PLAYER_FORGET_ITEM_SUCCESS = COMMAND_PREFIX + Names . Commands . PLAYER_FORGET_ITEM + " .success " ;
2015-02-18 16:47:59 +01:00
public static final String PLAYER_FORGET_CURRENT_ITEM_USAGE = COMMAND_PREFIX + Names . Commands . PLAYER_FORGET_CURRENT_ITEM + " .usage " ;
public static final String PLAYER_FORGET_CURRENT_ITEM_SUCCESS = COMMAND_PREFIX + Names . Commands . PLAYER_FORGET_CURRENT_ITEM + " .success " ;
2015-02-05 20:34:22 +01:00
public static final String TEMPLATE_LEARN_EVERYTHING_USAGE = COMMAND_PREFIX + Names . Commands . TEMPLATE_LEARN_EVERYTHING + " .usage " ;
public static final String TEMPLATE_LEARN_EVERYTHING_SUCCESS = COMMAND_PREFIX + Names . Commands . TEMPLATE_LEARN_EVERYTHING + " .success " ;
public static final String TEMPLATE_LEARN_ITEM_USAGE = COMMAND_PREFIX + Names . Commands . TEMPLATE_LEARN_ITEM + " .usage " ;
public static final String TEMPLATE_LEARN_ITEM_SUCCESS = COMMAND_PREFIX + Names . Commands . TEMPLATE_LEARN_ITEM + " .success " ;
2015-02-18 16:47:59 +01:00
public static final String TEMPLATE_LEARN_CURRENT_ITEM_USAGE = COMMAND_PREFIX + Names . Commands . TEMPLATE_LEARN_CURRENT_ITEM + " .usage " ;
public static final String TEMPLATE_LEARN_CURRENT_ITEM_SUCCESS = COMMAND_PREFIX + Names . Commands . TEMPLATE_LEARN_CURRENT_ITEM + " .success " ;
2015-02-05 20:34:22 +01:00
public static final String TEMPLATE_FORGET_EVERYTHING_USAGE = COMMAND_PREFIX + Names . Commands . TEMPLATE_FORGET_EVERYTHING + " .usage " ;
public static final String TEMPLATE_FORGET_EVERYTHING_SUCCESS = COMMAND_PREFIX + Names . Commands . TEMPLATE_FORGET_EVERYTHING + " .success " ;
public static final String TEMPLATE_FORGET_ITEM_USAGE = COMMAND_PREFIX + Names . Commands . TEMPLATE_FORGET_ITEM + " .usage " ;
public static final String TEMPLATE_FORGET_ITEM_SUCCESS = COMMAND_PREFIX + Names . Commands . TEMPLATE_FORGET_ITEM + " .success " ;
2015-02-18 16:47:59 +01:00
public static final String TEMPLATE_FORGET_CURRENT_ITEM_USAGE = COMMAND_PREFIX + Names . Commands . TEMPLATE_FORGET_CURRENT_ITEM + " .usage " ;
public static final String TEMPLATE_FORGET_CURRENT_ITEM_SUCCESS = COMMAND_PREFIX + Names . Commands . TEMPLATE_FORGET_CURRENT_ITEM + " .success " ;
2015-02-06 23:11:17 +01:00
public static final String SET_ITEM_LEARNABLE_USAGE = COMMAND_PREFIX + Names . Commands . SET_ITEM_LEARNABLE + " .usage " ;
public static final String SET_ITEM_LEARNABLE_SUCCESS = COMMAND_PREFIX + Names . Commands . SET_ITEM_LEARNABLE + " .success " ;
public static final String SET_ITEM_NOT_LEARNABLE_USAGE = COMMAND_PREFIX + Names . Commands . SET_ITEM_NOT_LEARNABLE + " .usage " ;
public static final String SET_ITEM_NOT_LEARNABLE_SUCCESS = COMMAND_PREFIX + Names . Commands . SET_ITEM_NOT_LEARNABLE + " .success " ;
public static final String SET_ITEM_RECOVERABLE_USAGE = COMMAND_PREFIX + Names . Commands . SET_ITEM_RECOVERABLE + " .usage " ;
public static final String SET_ITEM_RECOVERABLE_SUCCESS = COMMAND_PREFIX + Names . Commands . SET_ITEM_RECOVERABLE + " .success " ;
public static final String SET_ITEM_NOT_RECOVERABLE_USAGE = COMMAND_PREFIX + Names . Commands . SET_ITEM_NOT_RECOVERABLE + " .usage " ;
public static final String SET_ITEM_NOT_RECOVERABLE_SUCCESS = COMMAND_PREFIX + Names . Commands . SET_ITEM_NOT_RECOVERABLE + " .success " ;
2015-04-14 04:27:11 +02:00
public static final String RUN_TEST_USAGE = COMMAND_PREFIX + Names . Commands . RUN_TEST + " .usage " ;
public static final String RUN_TESTS_SUCCESS = COMMAND_PREFIX + Names . Commands . RUN_TEST + " .success " ;
public static final String RUN_TESTS_NOT_FOUND = COMMAND_PREFIX + Names . Commands . RUN_TEST + " .notfound " ;
2015-02-05 20:34:22 +01:00
}
2014-07-18 21:55:10 +02:00
public static final class Configuration
{
2014-09-16 18:53:22 +02:00
public static final String GENERAL_SYNC_THRESHOLD = " sync.threshold " ;
public static final String GENERAL_SYNC_THRESHOLD_LABEL = " general.sync.threshold.label " ;
public static final String GENERAL_SYNC_THRESHOLD_COMMENT = " general.sync.threshold.comment " ;
2014-07-21 20:47:00 +02:00
public static final String SOUND_MODE = " soundMode " ;
public static final String SOUND_MODE_LABEL = " general.sound.soundMode.label " ;
public static final String SOUND_MODE_COMMENT = " general.sound.soundMode.comment " ;
2015-02-10 06:22:39 +01:00
public static final String ABILITIES_ONLY_LOAD_FILE = " abilities.onlyLoadFile " ;
public static final String ABILITIES_ONLY_LOAD_FILE_LABEL = " general.abilities.onlyLoadFile.label " ;
public static final String ABILITIES_ONLY_LOAD_FILE_COMMENT = " general.abilities.onlyLoadFile.comment " ;
2015-02-11 05:38:05 +01:00
public static final String REGENERATE_ENERGYVALUES_WHEN = " energyvalues.regenerateEnergyValuesWhen " ;
public static final String REGENERATE_ENERGYVALUES_WHEN_LABEL = " general.energyvalues.regenerateEnergyValuesWhen.label " ;
public static final String REGENERATE_ENERGYVALUES_WHEN_COMMENT = " general.energyvalues.regenerateEnergyValuesWhen.comment " ;
2014-07-18 21:55:10 +02:00
}
2014-04-01 22:11:52 +02:00
}