/* * Copyright 2022 Peter Han * Permission is hereby granted, free of charge, to any person obtaining a copy of this software * and associated documentation files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or * substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ namespace PeterHan.PLib.Core { /// /// Strings used in PLib. /// public static class PLibStrings { /// /// The button used to manually edit the mod configuration. /// public static LocString BUTTON_MANUAL = "MANUAL CONFIG"; /// /// The button used to reset the configuration to its default value. /// public static LocString BUTTON_RESET = "RESET TO DEFAULT"; /// /// The text shown on the Done button. /// public static LocString BUTTON_OK = STRINGS.UI.FRONTEND.OPTIONS_SCREEN.BACK; /// /// The text shown on the Options button. /// public static LocString BUTTON_OPTIONS = STRINGS.UI.FRONTEND.MAINMENU.OPTIONS; /// /// The dialog title used for options, where {0} is substituted with the mod friendly name. /// public static LocString DIALOG_TITLE = "Options for {0}"; // Utility key names public static LocString KEY_HOME = "Home"; public static LocString KEY_END = "End"; public static LocString KEY_DELETE = "Delete"; public static LocString KEY_PAGEUP = "Page Up"; public static LocString KEY_PAGEDOWN = "Page Down"; public static LocString KEY_SYSRQ = "SysRq"; public static LocString KEY_PRTSCREEN = "Print Screen"; public static LocString KEY_PAUSE = "Pause"; // Arrow key names public static LocString KEY_ARROWLEFT = "Left Arrow"; public static LocString KEY_ARROWUP = "Up Arrow"; public static LocString KEY_ARROWRIGHT = "Right Arrow"; public static LocString KEY_ARROWDOWN = "Down Arrow"; /// /// The title used for the PLib key bind category. /// public static LocString KEY_CATEGORY_TITLE = "Mods"; /// /// The abbreviation text shown on the Blue field. /// public static LocString LABEL_B = "B"; /// /// The abbreviation text shown on the Green field. /// public static LocString LABEL_G = "G"; /// /// The abbreviation text shown on the Red field. /// public static LocString LABEL_R = "R"; /// /// The mod version in Mod Options if retrieved from the default AssemblyVersion, where /// {0} is substituted with the version text. /// public static LocString MOD_ASSEMBLY_VERSION = "Assembly Version: {0}"; /// /// The button text which goes to the mod's home page when clicked. /// public static LocString MOD_HOMEPAGE = "Mod Homepage"; /// /// The mod version in Mod Options if specified via AssemblyFileVersion, where {0} is /// substituted with the version text. /// public static LocString MOD_VERSION = "Mod Version: {0}"; /// /// The cancel button in the restart dialog. /// public static LocString RESTART_CANCEL = STRINGS.UI.FRONTEND.MOD_DIALOGS.RESTART.CANCEL; /// /// The OK button in the restart dialog. /// public static LocString RESTART_OK = STRINGS.UI.FRONTEND.MOD_DIALOGS.RESTART.OK; /// /// The details tooltip when AVC detects a mod to be outdated. /// public static LocString OUTDATED_TOOLTIP = "This mod is out of date!\nNew version: {0}\n\nUpdate local mods manually, or use Mod Updater to force update Steam mods"; /// /// Displayed when AVC detects a mod to be outdated. /// public static LocString OUTDATED_WARNING = "Outdated!"; /// /// The message prompting the user to restart. /// public static LocString RESTART_REQUIRED = "Oxygen Not Included must be restarted " + "for these options to take effect."; /// /// The tooltip on the BLUE field in color pickers. /// public static LocString TOOLTIP_BLUE = "Blue"; /// /// The tooltip on the CANCEL button. /// public static LocString TOOLTIP_CANCEL = "Discard changes."; /// /// The tooltip on the GREEN field in color pickers. /// public static LocString TOOLTIP_GREEN = "Green"; /// /// The tooltip on the Mod Homepage button. /// public static LocString TOOLTIP_HOMEPAGE = "Visit the mod's website."; /// /// The tooltip on the Hue slider in color pickers. /// public static LocString TOOLTIP_HUE = "Hue"; /// /// The tooltip on the MANUAL CONFIG button. /// public static LocString TOOLTIP_MANUAL = "Opens the folder containing the full mod configuration."; /// /// The tooltip for cycling to the next item. /// public static LocString TOOLTIP_NEXT = "Next"; /// /// The tooltip on the OK button. /// public static LocString TOOLTIP_OK = "Save these options. Some mods may require " + "a restart for the options to take effect."; /// /// The tooltip for cycling to the previous item. /// public static LocString TOOLTIP_PREVIOUS = "Previous"; /// /// The tooltip on the RED field in color pickers. /// public static LocString TOOLTIP_RED = "Red"; /// /// The tooltip on the RESET TO DEFAULT button. /// public static LocString TOOLTIP_RESET = "Resets the mod configuration to default values."; /// /// The tooltip on the Saturation slider in color pickers. /// public static LocString TOOLTIP_SATURATION = "Saturation"; /// /// The tooltip for each category visibility toggle. /// public static LocString TOOLTIP_TOGGLE = "Show or hide this options category"; /// /// The tooltip on the Value slider in color pickers. /// public static LocString TOOLTIP_VALUE = "Value"; /// /// The tooltip for the mod version. /// public static LocString TOOLTIP_VERSION = "The currently installed version of this mod.\n\nCompare this version with the mod's Release Notes to see if it is outdated."; } }