From bfe87aeb59935302b9181ada785e87200094f02f Mon Sep 17 00:00:00 2001 From: SPB Date: Sat, 3 Aug 2024 10:09:06 +0100 Subject: [PATCH] Updated dependencies --- .vscode/launch.json | 14 ++ CHANGELOG.md | 12 +- ZoomLevel/CommonHelper.cs | 2 +- ZoomLevel/GenericModConfigMenu.cs | 340 +++++++++++++++--------------- ZoomLevel/ModConfig.cs | 2 +- ZoomLevel/ModEntry.cs | 4 +- ZoomLevel/i18n/default.json | 228 ++++++++++---------- ZoomLevel/i18n/en.json | 228 ++++++++++---------- ZoomLevel/i18n/pt.json | 228 ++++++++++---------- ZoomLevel/i18n/zh.json | 236 ++++++++++----------- ZoomLevel/manifest.json | 32 +-- 11 files changed, 671 insertions(+), 655 deletions(-) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..36ebaa0 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,14 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "C#: ZoomLevel Debug", + "type": "dotnet", + "request": "launch", + "projectPath": "${workspaceFolder}/ZoomLevel/ZoomLevel.csproj" + } + ] +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 239f8ae..efcebd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,17 @@ # Full Changelog +## [3.2.1] - 2024-08-03 + +### Changes + +- Updated requirements + ## [3.2.0] - 2024-03-25 ### Changes - Added Portuguese translations (thanks to [Maatsuki](https://www.nexusmods.com/stardewvalley/users/59340891)) - ## [3.1.0] - 2024-03-24 ### Changes @@ -20,7 +25,6 @@ - Compatible with 1.6.0 - Updated requirements - ## [2.3.1] - 2023-11-12 ### Improvements @@ -28,7 +32,6 @@ - Code optimizations - Updated requirements - ## [2.3.0] - 2023-09-02 ### Improvements @@ -259,7 +262,8 @@ - Initial release -[Unreleased]: https://github.com/thespbgamer/ZoomLevel/compare/3.2.0...HEAD +[Unreleased]: https://github.com/thespbgamer/ZoomLevel/compare/3.2.1...HEAD +[3.2.1]: https://github.com/thespbgamer/ZoomLevel/releases/tag/3.2.1 [3.2.0]: https://github.com/thespbgamer/ZoomLevel/releases/tag/3.2.0 [3.1.0]: https://github.com/thespbgamer/ZoomLevel/releases/tag/3.1.0 [3.0.0]: https://github.com/thespbgamer/ZoomLevel/releases/tag/3.0.0 diff --git a/ZoomLevel/CommonHelper.cs b/ZoomLevel/CommonHelper.cs index 3273718..422faee 100644 --- a/ZoomLevel/CommonHelper.cs +++ b/ZoomLevel/CommonHelper.cs @@ -31,4 +31,4 @@ internal static void RemoveObsoleteFiles(IMod mod, params string[] relativePaths } } } -} \ No newline at end of file +} diff --git a/ZoomLevel/GenericModConfigMenu.cs b/ZoomLevel/GenericModConfigMenu.cs index c2181df..b3fd5d0 100644 --- a/ZoomLevel/GenericModConfigMenu.cs +++ b/ZoomLevel/GenericModConfigMenu.cs @@ -7,176 +7,174 @@ namespace ZoomLevel { - //Generic Mod Config Menu API - namespace GenericModConfigMenu + namespace GenericModConfigMenu +{ + /// The API which lets other mods add a config UI through Generic Mod Config Menu. + public interface IGenericModConfigMenuApi { - /// The API which lets other mods add a config UI through Generic Mod Config Menu. - public interface IGenericModConfigMenuAPI - { - /********* - ** Methods - *********/ - /**** - ** Must be called first - ****/ - - /// Register a mod whose config can be edited through the UI. - /// The mod's manifest. - /// Reset the mod's config to its default values. - /// Save the mod's current config to the config.json file. - /// Whether the options can only be edited from the title screen. - /// Each mod can only be registered once, unless it's deleted via before calling this again. - void Register(IManifest mod, Action reset, Action save, bool titleScreenOnly = false); - - /**** - ** Basic options - ****/ - - /// Add a section title at the current position in the form. - /// The mod's manifest. - /// The title text shown in the form. - /// The tooltip text shown when the cursor hovers on the title, or null to disable the tooltip. - void AddSectionTitle(IManifest mod, Func text, Func? tooltip = null); - - /// Add a paragraph of text at the current position in the form. - /// The mod's manifest. - /// The paragraph text to display. - void AddParagraph(IManifest mod, Func text); - - /// Add an image at the current position in the form. - /// The mod's manifest. - /// The image texture to display. - /// The pixel area within the texture to display, or null to show the entire image. - /// The zoom factor to apply to the image. - void AddImage(IManifest mod, Func texture, Rectangle? texturePixelArea = null, int scale = Game1.pixelZoom); - - /// Add a boolean option at the current position in the form. - /// The mod's manifest. - /// Get the current value from the mod config. - /// Set a new value in the mod config. - /// The label text to show in the form. - /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. - /// The unique field ID for use with , or null to auto-generate a randomized ID. - void AddBoolOption(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, string? fieldId = null); - - /// Add an integer option at the current position in the form. - /// The mod's manifest. - /// Get the current value from the mod config. - /// Set a new value in the mod config. - /// The label text to show in the form. - /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. - /// The minimum allowed value, or null to allow any. - /// The maximum allowed value, or null to allow any. - /// The interval of values that can be selected. - /// Get the display text to show for a value, or null to show the number as-is. - /// The unique field ID for use with , or null to auto-generate a randomized ID. - void AddNumberOption(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, int? min = null, int? max = null, int? interval = null, Func? formatValue = null, string? fieldId = null); - - /// Add a float option at the current position in the form. - /// The mod's manifest. - /// Get the current value from the mod config. - /// Set a new value in the mod config. - /// The label text to show in the form. - /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. - /// The minimum allowed value, or null to allow any. - /// The maximum allowed value, or null to allow any. - /// The interval of values that can be selected. - /// Get the display text to show for a value, or null to show the number as-is. - /// The unique field ID for use with , or null to auto-generate a randomized ID. - void AddNumberOption(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, float? min = null, float? max = null, float? interval = null, Func? formatValue = null, string? fieldId = null); - - /// Add a string option at the current position in the form. - /// The mod's manifest. - /// Get the current value from the mod config. - /// Set a new value in the mod config. - /// The label text to show in the form. - /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. - /// The values that can be selected, or null to allow any. - /// Get the display text to show for a value from , or null to show the values as-is. - /// The unique field ID for use with , or null to auto-generate a randomized ID. - void AddTextOption(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, string[]? allowedValues = null, Func? formatAllowedValue = null, string? fieldId = null); - - /// Add a key binding at the current position in the form. - /// The mod's manifest. - /// Get the current value from the mod config. - /// Set a new value in the mod config. - /// The label text to show in the form. - /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. - /// The unique field ID for use with , or null to auto-generate a randomized ID. - void AddKeybind(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, string? fieldId = null); - - /// Add a key binding list at the current position in the form. - /// The mod's manifest. - /// Get the current value from the mod config. - /// Set a new value in the mod config. - /// The label text to show in the form. - /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. - /// The unique field ID for use with , or null to auto-generate a randomized ID. - void AddKeybindList(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, string? fieldId = null); - - /**** - ** Multi-page management - ****/ - - /// Start a new page in the mod's config UI, or switch to that page if it already exists. All options registered after this will be part of that page. - /// The mod's manifest. - /// The unique page ID. - /// The page title shown in its UI, or null to show the value. - /// You must also call to make the page accessible. This is only needed to set up a multi-page config UI. If you don't call this method, all options will be part of the mod's main config UI instead. - void AddPage(IManifest mod, string pageId, Func? pageTitle = null); - - /// Add a link to a page added via at the current position in the form. - /// The mod's manifest. - /// The unique ID of the page to open when the link is clicked. - /// The link text shown in the form. - /// The tooltip text shown when the cursor hovers on the link, or null to disable the tooltip. - void AddPageLink(IManifest mod, string pageId, Func text, Func? tooltip = null); - - /**** - ** Advanced - ****/ - - /// Add an option at the current position in the form using custom rendering logic. - /// The mod's manifest. - /// The label text to show in the form. - /// Draw the option in the config UI. This is called with the sprite batch being rendered and the pixel position at which to start drawing. - /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. - /// A callback raised just before the menu containing this option is opened. - /// A callback raised before the form's current values are saved to the config (i.e. before the save callback passed to ). - /// A callback raised after the form's current values are saved to the config (i.e. after the save callback passed to ). - /// A callback raised before the form is reset to its default values (i.e. before the reset callback passed to ). - /// A callback raised after the form is reset to its default values (i.e. after the reset callback passed to ). - /// A callback raised just before the menu containing this option is closed. - /// The pixel height to allocate for the option in the form, or null for a standard input-sized option. This is called and cached each time the form is opened. - /// The unique field ID for use with , or null to auto-generate a randomized ID. - /// The custom logic represented by the callback parameters is responsible for managing its own state if needed. For example, you can store state in a static field or use closures to use a state variable. - void AddComplexOption(IManifest mod, Func name, Action draw, Func? tooltip = null, Action? beforeMenuOpened = null, Action? beforeSave = null, Action? afterSave = null, Action? beforeReset = null, Action? afterReset = null, Action? beforeMenuClosed = null, Func? height = null, string? fieldId = null); - - /// Set whether the options registered after this point can only be edited from the title screen. - /// The mod's manifest. - /// Whether the options can only be edited from the title screen. - /// This lets you have different values per-field. Most mods should just set it once in . - void SetTitleScreenOnlyForNextOptions(IManifest mod, bool titleScreenOnly); - - /// Register a method to notify when any option registered by this mod is edited through the config UI. - /// The mod's manifest. - /// The method to call with the option's unique field ID and new value. - /// Options use a randomized ID by default; you'll likely want to specify the fieldId argument when adding options if you use this. - void OnFieldChanged(IManifest mod, Action onChange); - - /// Open the config UI for a specific mod. - /// The mod's manifest. - void OpenModMenu(IManifest mod); - - /// Get the currently-displayed mod config menu, if any. - /// The manifest of the mod whose config menu is being shown, or null if not applicable. - /// The page ID being shown for the current config menu, or null if not applicable. This may be null even if a mod config menu is shown (e.g. because the mod doesn't have pages). - /// Returns whether a mod config menu is being shown. - bool TryGetCurrentMenu(out IManifest mod, out string page); - - /// Remove a mod from the config UI and delete all its options and pages. - /// The mod's manifest. - void Unregister(IManifest mod); - } + /********* + ** Methods + *********/ + /**** + ** Must be called first + ****/ + /// Register a mod whose config can be edited through the UI. + /// The mod's manifest. + /// Reset the mod's config to its default values. + /// Save the mod's current config to the config.json file. + /// Whether the options can only be edited from the title screen. + /// Each mod can only be registered once, unless it's deleted via before calling this again. + void Register(IManifest mod, Action reset, Action save, bool titleScreenOnly = false); + + + /**** + ** Basic options + ****/ + /// Add a section title at the current position in the form. + /// The mod's manifest. + /// The title text shown in the form. + /// The tooltip text shown when the cursor hovers on the title, or null to disable the tooltip. + void AddSectionTitle(IManifest mod, Func text, Func? tooltip = null); + + /// Add a paragraph of text at the current position in the form. + /// The mod's manifest. + /// The paragraph text to display. + void AddParagraph(IManifest mod, Func text); + + /// Add an image at the current position in the form. + /// The mod's manifest. + /// The image texture to display. + /// The pixel area within the texture to display, or null to show the entire image. + /// The zoom factor to apply to the image. + void AddImage(IManifest mod, Func texture, Rectangle? texturePixelArea = null, int scale = Game1.pixelZoom); + + /// Add a boolean option at the current position in the form. + /// The mod's manifest. + /// Get the current value from the mod config. + /// Set a new value in the mod config. + /// The label text to show in the form. + /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. + /// The unique field ID for use with , or null to auto-generate a randomized ID. + void AddBoolOption(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, string? fieldId = null); + + /// Add an integer option at the current position in the form. + /// The mod's manifest. + /// Get the current value from the mod config. + /// Set a new value in the mod config. + /// The label text to show in the form. + /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. + /// The minimum allowed value, or null to allow any. + /// The maximum allowed value, or null to allow any. + /// The interval of values that can be selected. + /// Get the display text to show for a value, or null to show the number as-is. + /// The unique field ID for use with , or null to auto-generate a randomized ID. + void AddNumberOption(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, int? min = null, int? max = null, int? interval = null, Func? formatValue = null, string? fieldId = null); + + /// Add a float option at the current position in the form. + /// The mod's manifest. + /// Get the current value from the mod config. + /// Set a new value in the mod config. + /// The label text to show in the form. + /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. + /// The minimum allowed value, or null to allow any. + /// The maximum allowed value, or null to allow any. + /// The interval of values that can be selected. + /// Get the display text to show for a value, or null to show the number as-is. + /// The unique field ID for use with , or null to auto-generate a randomized ID. + void AddNumberOption(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, float? min = null, float? max = null, float? interval = null, Func? formatValue = null, string? fieldId = null); + + /// Add a string option at the current position in the form. + /// The mod's manifest. + /// Get the current value from the mod config. + /// Set a new value in the mod config. + /// The label text to show in the form. + /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. + /// The values that can be selected, or null to allow any. + /// Get the display text to show for a value from , or null to show the values as-is. + /// The unique field ID for use with , or null to auto-generate a randomized ID. + void AddTextOption(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, string[]? allowedValues = null, Func? formatAllowedValue = null, string? fieldId = null); + + /// Add a key binding at the current position in the form. + /// The mod's manifest. + /// Get the current value from the mod config. + /// Set a new value in the mod config. + /// The label text to show in the form. + /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. + /// The unique field ID for use with , or null to auto-generate a randomized ID. + void AddKeybind(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, string? fieldId = null); + + /// Add a key binding list at the current position in the form. + /// The mod's manifest. + /// Get the current value from the mod config. + /// Set a new value in the mod config. + /// The label text to show in the form. + /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. + /// The unique field ID for use with , or null to auto-generate a randomized ID. + void AddKeybindList(IManifest mod, Func getValue, Action setValue, Func name, Func? tooltip = null, string? fieldId = null); + + + /**** + ** Multi-page management + ****/ + /// Start a new page in the mod's config UI, or switch to that page if it already exists. All options registered after this will be part of that page. + /// The mod's manifest. + /// The unique page ID. + /// The page title shown in its UI, or null to show the value. + /// You must also call to make the page accessible. This is only needed to set up a multi-page config UI. If you don't call this method, all options will be part of the mod's main config UI instead. + void AddPage(IManifest mod, string pageId, Func? pageTitle = null); + + /// Add a link to a page added via at the current position in the form. + /// The mod's manifest. + /// The unique ID of the page to open when the link is clicked. + /// The link text shown in the form. + /// The tooltip text shown when the cursor hovers on the link, or null to disable the tooltip. + void AddPageLink(IManifest mod, string pageId, Func text, Func? tooltip = null); + + + /**** + ** Advanced + ****/ + /// Add an option at the current position in the form using custom rendering logic. + /// The mod's manifest. + /// The label text to show in the form. + /// Draw the option in the config UI. This is called with the sprite batch being rendered and the pixel position at which to start drawing. + /// The tooltip text shown when the cursor hovers on the field, or null to disable the tooltip. + /// A callback raised just before the menu containing this option is opened. + /// A callback raised before the form's current values are saved to the config (i.e. before the save callback passed to ). + /// A callback raised after the form's current values are saved to the config (i.e. after the save callback passed to ). + /// A callback raised before the form is reset to its default values (i.e. before the reset callback passed to ). + /// A callback raised after the form is reset to its default values (i.e. after the reset callback passed to ). + /// A callback raised just before the menu containing this option is closed. + /// The pixel height to allocate for the option in the form, or null for a standard input-sized option. This is called and cached each time the form is opened. + /// The unique field ID for use with , or null to auto-generate a randomized ID. + /// The custom logic represented by the callback parameters is responsible for managing its own state if needed. For example, you can store state in a static field or use closures to use a state variable. + void AddComplexOption(IManifest mod, Func name, Action draw, Func? tooltip = null, Action? beforeMenuOpened = null, Action? beforeSave = null, Action? afterSave = null, Action? beforeReset = null, Action? afterReset = null, Action? beforeMenuClosed = null, Func? height = null, string? fieldId = null); + + /// Set whether the options registered after this point can only be edited from the title screen. + /// The mod's manifest. + /// Whether the options can only be edited from the title screen. + /// This lets you have different values per-field. Most mods should just set it once in . + void SetTitleScreenOnlyForNextOptions(IManifest mod, bool titleScreenOnly); + + /// Register a method to notify when any option registered by this mod is edited through the config UI. + /// The mod's manifest. + /// The method to call with the option's unique field ID and new value. + /// Options use a randomized ID by default; you'll likely want to specify the fieldId argument when adding options if you use this. + void OnFieldChanged(IManifest mod, Action onChange); + + /// Open the config UI for a specific mod. + /// The mod's manifest. + void OpenModMenu(IManifest mod); + + /// Get the currently-displayed mod config menu, if any. + /// The manifest of the mod whose config menu is being shown, or null if not applicable. + /// The page ID being shown for the current config menu, or null if not applicable. This may be null even if a mod config menu is shown (e.g. because the mod doesn't have pages). + /// Returns whether a mod config menu is being shown. + bool TryGetCurrentMenu(out IManifest mod, out string page); + + /// Remove a mod from the config UI and delete all its options and pages. + /// The mod's manifest. + void Unregister(IManifest mod); } -} \ No newline at end of file + } +} diff --git a/ZoomLevel/ModConfig.cs b/ZoomLevel/ModConfig.cs index 9b6677d..a5532b7 100644 --- a/ZoomLevel/ModConfig.cs +++ b/ZoomLevel/ModConfig.cs @@ -42,4 +42,4 @@ public sealed class ModConfig public bool PresetOnLoadSaveFile { get; set; } = false; public bool ZoomAndUIControlEverywhere { get; set; } = false; } -} \ No newline at end of file +} diff --git a/ZoomLevel/ModEntry.cs b/ZoomLevel/ModEntry.cs index c05fdfc..f484cde 100644 --- a/ZoomLevel/ModEntry.cs +++ b/ZoomLevel/ModEntry.cs @@ -50,7 +50,7 @@ private void Events_GameLoop_GameLaunched(object? sender, GameLaunchedEventArgs private void MakeMenusInGenericModMenu() { - var genericModConfigMenuAPI = Helper.ModRegistry.GetApi("spacechase0.GenericModConfigMenu"); + var genericModConfigMenuAPI = Helper.ModRegistry.GetApi("spacechase0.GenericModConfigMenu"); if (genericModConfigMenuAPI != null) @@ -510,4 +510,4 @@ private void ConsoleFunctionsList(string command, string[] args) } } } -} \ No newline at end of file +} diff --git a/ZoomLevel/i18n/default.json b/ZoomLevel/i18n/default.json index 7214e70..1221014 100644 --- a/ZoomLevel/i18n/default.json +++ b/ZoomLevel/i18n/default.json @@ -1,126 +1,126 @@ { - "pages.keybinds.id": "keybinds", - "pages.keybinds.displayedName": "Keybinds Page", - "pages.keybinds.tooltip": "All the keybinds that can be added or changed.", - "pages.keybinds.pageTitle": "Keybinds", - "pages.values.id": "values", - "pages.values.displayedName": "Values Page", - "pages.values.tooltip": "All the values that changes the Zoom Level, UI Level and Camera Position.", - "pages.values.pageTitle": "Values", - "pages.miscellaneous.id": "miscellaneous", - "pages.miscellaneous.displayedName": "Miscellaneous Page", - "pages.miscellaneous.tooltip": "All the other options that you can change.", - "pages.miscellaneous.pageTitle": "Miscellaneous", + "pages.keybinds.id": "keybinds", + "pages.keybinds.displayedName": "Keybinds Page", + "pages.keybinds.tooltip": "All the keybinds that can be added or changed.", + "pages.keybinds.pageTitle": "Keybinds", + "pages.values.id": "values", + "pages.values.displayedName": "Values Page", + "pages.values.tooltip": "All the values that changes the Zoom Level, UI Level and Camera Position.", + "pages.values.pageTitle": "Values", + "pages.miscellaneous.id": "miscellaneous", + "pages.miscellaneous.displayedName": "Miscellaneous Page", + "pages.miscellaneous.tooltip": "All the other options that you can change.", + "pages.miscellaneous.pageTitle": "Miscellaneous", - "keybinds.subtitle.main.displayedName": "Main Keybinds:", - "keybinds.subtitle.main.tooltip": "The keybinds that can be added or changed.\nThese are the main features of the mod.", - "keybinds.subtitle.camera.displayedName": "Camera Keybinds:", - "keybinds.subtitle.camera.tooltip": "The keybinds that can be added or changed.\nThese are the camera features of the mod.", - "keybinds.subtitle.toggle.displayedName": "Toggle Keybinds:", - "keybinds.subtitle.toggle.tooltip": "The keybinds that can be added or changed.\nThese are the toggle of the mod.", + "keybinds.subtitle.main.displayedName": "Main Keybinds:", + "keybinds.subtitle.main.tooltip": "The keybinds that can be added or changed.\nThese are the main features of the mod.", + "keybinds.subtitle.camera.displayedName": "Camera Keybinds:", + "keybinds.subtitle.camera.tooltip": "The keybinds that can be added or changed.\nThese are the camera features of the mod.", + "keybinds.subtitle.toggle.displayedName": "Toggle Keybinds:", + "keybinds.subtitle.toggle.tooltip": "The keybinds that can be added or changed.\nThese are the toggle of the mod.", - "keybinds.HoldToChangeUI.displayedName": "UI hold Key", - "keybinds.HoldToChangeUI.tooltip": "Keybinds that you need to hold to change the UI.", - "keybinds.IncreaseZoomOrUI.displayedName": "Zoom or UI Increase", - "keybinds.IncreaseZoomOrUI.tooltip": "Keybinds to Increase Zoom or UI Level.", - "keybinds.DecreaseZoomOrUI.displayedName": "Zoom or UI Decrease", - "keybinds.DecreaseZoomOrUI.tooltip": "Keybinds to Decrease Zoom or UI Level.", - "keybinds.ResetZoomOrUI.displayedName": "Zoom or UI Reset", - "keybinds.ResetZoomOrUI.tooltip": "Keybinds that you use to Reset the Zoom or UI Level.", - "keybinds.MaxZoomOrUI.displayedName": "Zoom or UI Max Levels", - "keybinds.MaxZoomOrUI.tooltip": "Keybinds to Max the Zoom in or Maximize the UI.", - "keybinds.MinZoomOrUI.displayedName": "Zoom or UI Min Levels", - "keybinds.MinZoomOrUI.tooltip": "Keybinds to Max the Zoom out or Minimize the UI.", - "keybinds.ZoomToCurrentMapSize.displayedName": "Zoom to Approximate Map Size", - "keybinds.ZoomToCurrentMapSize.tooltip": "Keybinds to change to zoom level to the approximate current map size.", - "keybinds.PresetZoomAndUIValues.displayedName": "Change UI & Zoom to Preset", - "keybinds.PresetZoomAndUIValues.tooltip": "Keybinds to change to zoom level and UI scale to the preset values.", + "keybinds.HoldToChangeUI.displayedName": "UI hold Key", + "keybinds.HoldToChangeUI.tooltip": "Keybinds that you need to hold to change the UI.", + "keybinds.IncreaseZoomOrUI.displayedName": "Zoom or UI Increase", + "keybinds.IncreaseZoomOrUI.tooltip": "Keybinds to Increase Zoom or UI Level.", + "keybinds.DecreaseZoomOrUI.displayedName": "Zoom or UI Decrease", + "keybinds.DecreaseZoomOrUI.tooltip": "Keybinds to Decrease Zoom or UI Level.", + "keybinds.ResetZoomOrUI.displayedName": "Zoom or UI Reset", + "keybinds.ResetZoomOrUI.tooltip": "Keybinds that you use to Reset the Zoom or UI Level.", + "keybinds.MaxZoomOrUI.displayedName": "Zoom or UI Max Levels", + "keybinds.MaxZoomOrUI.tooltip": "Keybinds to Max the Zoom in or Maximize the UI.", + "keybinds.MinZoomOrUI.displayedName": "Zoom or UI Min Levels", + "keybinds.MinZoomOrUI.tooltip": "Keybinds to Max the Zoom out or Minimize the UI.", + "keybinds.ZoomToCurrentMapSize.displayedName": "Zoom to Approximate Map Size", + "keybinds.ZoomToCurrentMapSize.tooltip": "Keybinds to change to zoom level to the approximate current map size.", + "keybinds.PresetZoomAndUIValues.displayedName": "Change UI & Zoom to Preset", + "keybinds.PresetZoomAndUIValues.tooltip": "Keybinds to change to zoom level and UI scale to the preset values.", - "keybinds.MovementCameraUp.displayedName": "Camera Movement Up", - "keybinds.MovementCameraUp.tooltip": "Changes camera a bit up and locks it.", - "keybinds.MovementCameraDown.displayedName": "Camera Movement Down", - "keybinds.MovementCameraDown.tooltip": "Changes camera a bit down and locks it.", - "keybinds.MovementCameraLeft.displayedName": "Camera Movement Left", - "keybinds.MovementCameraLeft.tooltip": "Changes camera a bit to the left and locks it.", - "keybinds.MovementCameraRight.displayedName": "Camera Movement Right", - "keybinds.MovementCameraRight.tooltip": "Changes camera a bit to the right and locks it.", - "keybinds.MovementCameraReset.displayedName": "Camera Movement Reset", - "keybinds.MovementCameraReset.tooltip": "Resets the camera movement and unlocks it.", + "keybinds.MovementCameraUp.displayedName": "Camera Movement Up", + "keybinds.MovementCameraUp.tooltip": "Changes camera a bit up and locks it.", + "keybinds.MovementCameraDown.displayedName": "Camera Movement Down", + "keybinds.MovementCameraDown.tooltip": "Changes camera a bit down and locks it.", + "keybinds.MovementCameraLeft.displayedName": "Camera Movement Left", + "keybinds.MovementCameraLeft.tooltip": "Changes camera a bit to the left and locks it.", + "keybinds.MovementCameraRight.displayedName": "Camera Movement Right", + "keybinds.MovementCameraRight.tooltip": "Changes camera a bit to the right and locks it.", + "keybinds.MovementCameraReset.displayedName": "Camera Movement Reset", + "keybinds.MovementCameraReset.tooltip": "Resets the camera movement and unlocks it.", - "keybinds.ToggleUIVisibility.displayedName": "UI Visibility", - "keybinds.ToggleUIVisibility.tooltip": "Keybinds to toggle the UI Visibility.", - "keybinds.ToggleHideUIWithCertainZoom.displayedName": "Hide UI at Certain Zoom", - "keybinds.ToggleHideUIWithCertainZoom.tooltip": "Keybinds to toggle the 'Hide UI with Certain Zoom'.", - "keybinds.ToggleAnyKeyToResetCamera.displayedName": "Any Key Reset Camera", - "keybinds.ToggleAnyKeyToResetCamera.tooltip": "Keybinds to toggle the 'Any Button Resets Camera'.", - "keybinds.ToggleAutoZoomToCurrentMapSize.displayedName": "Auto Zoom to Map Size", - "keybinds.ToggleAutoZoomToCurrentMapSize.tooltip": "Keybinds to toggle the 'Auto Zoom to Map Size'.", - "keybinds.TogglePresetOnLoadSaveFile.displayedName": "Activate Preset On Load", - "keybinds.TogglePresetOnLoadSaveFile.tooltip": "Keybinds to toggle the 'PresetOnLoadSaveFile'.", + "keybinds.ToggleUIVisibility.displayedName": "UI Visibility", + "keybinds.ToggleUIVisibility.tooltip": "Keybinds to toggle the UI Visibility.", + "keybinds.ToggleHideUIWithCertainZoom.displayedName": "Hide UI at Certain Zoom", + "keybinds.ToggleHideUIWithCertainZoom.tooltip": "Keybinds to toggle the 'Hide UI with Certain Zoom'.", + "keybinds.ToggleAnyKeyToResetCamera.displayedName": "Any Key Reset Camera", + "keybinds.ToggleAnyKeyToResetCamera.tooltip": "Keybinds to toggle the 'Any Button Resets Camera'.", + "keybinds.ToggleAutoZoomToCurrentMapSize.displayedName": "Auto Zoom to Map Size", + "keybinds.ToggleAutoZoomToCurrentMapSize.tooltip": "Keybinds to toggle the 'Auto Zoom to Map Size'.", + "keybinds.TogglePresetOnLoadSaveFile.displayedName": "Activate Preset On Load", + "keybinds.TogglePresetOnLoadSaveFile.tooltip": "Keybinds to toggle the 'PresetOnLoadSaveFile'.", - "values.subtitle.main.displayedName": "Values:", - "values.subtitle.main.tooltip": "All the values that changes the Zoom Level, UI Level and Camera.", + "values.subtitle.main.displayedName": "Values:", + "values.subtitle.main.tooltip": "All the values that changes the Zoom Level, UI Level and Camera.", - "values.ZoomOrUILevelIncreaseValue.displayedName": "Zoom or UI Levels Increase", - "values.ZoomOrUILevelIncreaseValue.tooltip": "The amount of Zoom or UI Level increase.", - "values.ZoomOrUILevelDecreaseValue.displayedName": "Zoom or UI Levels Decrease", - "values.ZoomOrUILevelDecreaseValue.tooltip": "The amount of Zoom or UI Level decrease.", - "values.ResetZoomOrUIValue.displayedName": "Zoom or UI Reset Level", - "values.ResetZoomOrUIValue.tooltip": "The value of the Zoom or UI level reset.", - "values.MaxZoomOrUIValue.displayedName": "Zoom or UI Max Level", - "values.MaxZoomOrUIValue.tooltip": "The value of the max Zoom in Level or Max UI.", - "values.MinZoomOrUIValue.displayedName": "Zoom or UI Min Level", - "values.MinZoomOrUIValue.tooltip": "The value of the max Zoom out Level or Min UI.", - "values.ZoomLevelThatHidesUI.displayedName": "Zoom Level that Hides UI", - "values.ZoomLevelThatHidesUI.tooltip": "The value of the Zoom level that hides the UI.", - "values.CameraMovementSpeedValue.displayedName": "Camera Movement Speed", - "values.CameraMovementSpeedValue.tooltip": "The speed that the camera moves.", - "values.PresetZoomLevelValue.displayedName": "Preset Zoom Level", - "values.PresetZoomLevelValue.tooltip": "The value of the preset Zoom level.", - "values.PresetUIScaleValue.displayedName": "Preset UI Scale", - "values.PresetUIScaleValue.tooltip": "The value of the preset UI Scale.", + "values.ZoomOrUILevelIncreaseValue.displayedName": "Zoom or UI Levels Increase", + "values.ZoomOrUILevelIncreaseValue.tooltip": "The amount of Zoom or UI Level increase.", + "values.ZoomOrUILevelDecreaseValue.displayedName": "Zoom or UI Levels Decrease", + "values.ZoomOrUILevelDecreaseValue.tooltip": "The amount of Zoom or UI Level decrease.", + "values.ResetZoomOrUIValue.displayedName": "Zoom or UI Reset Level", + "values.ResetZoomOrUIValue.tooltip": "The value of the Zoom or UI level reset.", + "values.MaxZoomOrUIValue.displayedName": "Zoom or UI Max Level", + "values.MaxZoomOrUIValue.tooltip": "The value of the max Zoom in Level or Max UI.", + "values.MinZoomOrUIValue.displayedName": "Zoom or UI Min Level", + "values.MinZoomOrUIValue.tooltip": "The value of the max Zoom out Level or Min UI.", + "values.ZoomLevelThatHidesUI.displayedName": "Zoom Level that Hides UI", + "values.ZoomLevelThatHidesUI.tooltip": "The value of the Zoom level that hides the UI.", + "values.CameraMovementSpeedValue.displayedName": "Camera Movement Speed", + "values.CameraMovementSpeedValue.tooltip": "The speed that the camera moves.", + "values.PresetZoomLevelValue.displayedName": "Preset Zoom Level", + "values.PresetZoomLevelValue.tooltip": "The value of the preset Zoom level.", + "values.PresetUIScaleValue.displayedName": "Preset UI Scale", + "values.PresetUIScaleValue.tooltip": "The value of the preset UI Scale.", - "miscellaneous.subtitle.main.displayedName": "Miscellaneous:", - "miscellaneous.subtitle.main.tooltip": "All the other options that you can change.", + "miscellaneous.subtitle.main.displayedName": "Miscellaneous:", + "miscellaneous.subtitle.main.tooltip": "All the other options that you can change.", - "miscellaneous.SuppressControllerButtons.displayedName": "Suppress Controller Buttons", - "miscellaneous.SuppressControllerButtons.tooltip": "If your controller inputs are supressed or not.", - "miscellaneous.AutoZoomToCurrentMapSize.displayedName": "Auto Zoom to Map Size", - "miscellaneous.AutoZoomToCurrentMapSize.tooltip": "If activated it auto zooms to map size.\nIf not, it will not do that.", - "miscellaneous.AnyButtonToCenterCamera.displayedName": "Any Button Resets Camera", - "miscellaneous.AnyButtonToCenterCamera.tooltip": "If activated your camera centers if any key is pressed.\nIf not, you will need to press the 'Camera Movement Reset' key.", - "miscellaneous.HideUIWithCertainZoom.displayedName": "Hide UI with Certain Zoom", - "miscellaneous.HideUIWithCertainZoom.tooltip": "If activated your UI hides when it reaches a certain zoom level.", - "miscellaneous.PresetOnLoadSaveFile.displayedName": "Preset On Load Save", - "miscellaneous.PresetOnLoadSaveFile.tooltip": "If activated your preset values will update when the file loads.\nWith the values set on the value tabs.", - "miscellaneous.ZoomAndUIControlEverywhere.displayedName": "Zoom and UI Anywhere", - "miscellaneous.ZoomAndUIControlEverywhere.tooltip": "If activated you can control your Zoom and UI Levels anywhere.", + "miscellaneous.SuppressControllerButtons.displayedName": "Suppress Controller Buttons", + "miscellaneous.SuppressControllerButtons.tooltip": "If your controller inputs are supressed or not.", + "miscellaneous.AutoZoomToCurrentMapSize.displayedName": "Auto Zoom to Map Size", + "miscellaneous.AutoZoomToCurrentMapSize.tooltip": "If activated it auto zooms to map size.\nIf not, it will not do that.", + "miscellaneous.AnyButtonToCenterCamera.displayedName": "Any Button Resets Camera", + "miscellaneous.AnyButtonToCenterCamera.tooltip": "If activated your camera centers if any key is pressed.\nIf not, you will need to press the 'Camera Movement Reset' key.", + "miscellaneous.HideUIWithCertainZoom.displayedName": "Hide UI with Certain Zoom", + "miscellaneous.HideUIWithCertainZoom.tooltip": "If activated your UI hides when it reaches a certain zoom level.", + "miscellaneous.PresetOnLoadSaveFile.displayedName": "Preset On Load Save", + "miscellaneous.PresetOnLoadSaveFile.tooltip": "If activated your preset values will update when the file loads.\nWith the values set on the value tabs.", + "miscellaneous.ZoomAndUIControlEverywhere.displayedName": "Zoom and UI Anywhere", + "miscellaneous.ZoomAndUIControlEverywhere.tooltip": "If activated you can control your Zoom and UI Levels anywhere.", - "hudMessages.AutoZoomToCurrentMapSize.message": "Auto Zoom to Map Size is now: {{value}}", - "hudMessages.AnyButtonToCenterCamera.message": "Press Any Key to center camera is now: {{value}}", - "hudMessages.HideUIWithCertainZoom.message": "Hide UI With Certain Zoom is now: {{value}}", - "hudMessages.PresetOnLoadSaveFile.message": "Preset On Load Save File is now: {{value}}", + "hudMessages.AutoZoomToCurrentMapSize.message": "Auto Zoom to Map Size is now: {{value}}", + "hudMessages.AnyButtonToCenterCamera.message": "Press Any Key to center camera is now: {{value}}", + "hudMessages.HideUIWithCertainZoom.message": "Hide UI With Certain Zoom is now: {{value}}", + "hudMessages.PresetOnLoadSaveFile.message": "Preset On Load Save File is now: {{value}}", - "consoleCommands.toggleAutoZoomMap.name": "toggle_Auto_Zoom_Map", - "consoleCommands.toggleAutoZoomMap.description": "\nUsage: toggle_Auto_Zoom_Map", - "consoleCommands.togglePressAnyKeyToResetCamera.name": "toggle_Press_Any_Key_To_Reset_Camera", - "consoleCommands.togglePressAnyKeyToResetCamera.description": "\nUsage: toggle_Press_Any_Key_To_Reset_Camera", - "consoleCommands.toggleHideWithUIWithCertainZoom.name": "toggle_Hide_With_UI_With_Certain_Zoom", - "consoleCommands.toggleHideWithUIWithCertainZoom.description": "\nUsage: toggle_Hide_With_UI_With_Certain_Zoom", - "consoleCommands.togglePresetOnLoadSaveFile.name": "toggle_Preset_On_Load_Save_File", - "consoleCommands.togglePresetOnLoadSaveFile.description": "\nUsage: toggle_Preset_On_Load_Save_File", - "consoleCommands.resetUIAndZoom.name": "reset_UI_and_Zoom", - "consoleCommands.resetUIAndZoom.description": "\nUsage: reset_UI_and_Zoom \n- ui: the decimal value UI scale.\n- zoom: the decimal value zoom level.", - "consoleCommands.resetUI.name": "reset_UI", - "consoleCommands.resetUI.description": "\nUsage: reset_UI \n- ui: the decimal value UI scale.", - "consoleCommands.resetZoom.name": "reset_Zoom", - "consoleCommands.reset_Zoom.description": "\nUsage: reset_Zoom \n- zoom: the decimal value zoom level.", + "consoleCommands.toggleAutoZoomMap.name": "toggle_Auto_Zoom_Map", + "consoleCommands.toggleAutoZoomMap.description": "\nUsage: toggle_Auto_Zoom_Map", + "consoleCommands.togglePressAnyKeyToResetCamera.name": "toggle_Press_Any_Key_To_Reset_Camera", + "consoleCommands.togglePressAnyKeyToResetCamera.description": "\nUsage: toggle_Press_Any_Key_To_Reset_Camera", + "consoleCommands.toggleHideWithUIWithCertainZoom.name": "toggle_Hide_With_UI_With_Certain_Zoom", + "consoleCommands.toggleHideWithUIWithCertainZoom.description": "\nUsage: toggle_Hide_With_UI_With_Certain_Zoom", + "consoleCommands.togglePresetOnLoadSaveFile.name": "toggle_Preset_On_Load_Save_File", + "consoleCommands.togglePresetOnLoadSaveFile.description": "\nUsage: toggle_Preset_On_Load_Save_File", + "consoleCommands.resetUIAndZoom.name": "reset_UI_and_Zoom", + "consoleCommands.resetUIAndZoom.description": "\nUsage: reset_UI_and_Zoom \n- ui: the decimal value UI scale.\n- zoom: the decimal value zoom level.", + "consoleCommands.resetUI.name": "reset_UI", + "consoleCommands.resetUI.description": "\nUsage: reset_UI \n- ui: the decimal value UI scale.", + "consoleCommands.resetZoom.name": "reset_Zoom", + "consoleCommands.reset_Zoom.description": "\nUsage: reset_Zoom \n- zoom: the decimal value zoom level.", - "consoleMessages.AutoZoomToCurrentMapSize.message": "Auto Zoom to Map Size is now: {{value}}", - "consoleMessages.AnyButtonToCenterCamera.message": "Press Any Key to center camera is now: {{value}}", - "consoleMessages.HideUIWithCertainZoom.message": "Hide UI With Certain Zoom is now: {{value}}", - "consoleMessages.PresetOnLoadSaveFile.message": "Preset On Load Save File is now: {{value}}", - "consoleMessages.resetUIAndZoom.message": "UI Level is now at : {{ui}}\nZoom Level is now at: {{zoom}}", - "consoleMessages.resetZoom.message": "Zoom Level is now at: {{value}}", - "consoleMessages.resetUI.message": "UI Level is now at : {{value}}" -} \ No newline at end of file + "consoleMessages.AutoZoomToCurrentMapSize.message": "Auto Zoom to Map Size is now: {{value}}", + "consoleMessages.AnyButtonToCenterCamera.message": "Press Any Key to center camera is now: {{value}}", + "consoleMessages.HideUIWithCertainZoom.message": "Hide UI With Certain Zoom is now: {{value}}", + "consoleMessages.PresetOnLoadSaveFile.message": "Preset On Load Save File is now: {{value}}", + "consoleMessages.resetUIAndZoom.message": "UI Level is now at : {{ui}}\nZoom Level is now at: {{zoom}}", + "consoleMessages.resetZoom.message": "Zoom Level is now at: {{value}}", + "consoleMessages.resetUI.message": "UI Level is now at : {{value}}" +} diff --git a/ZoomLevel/i18n/en.json b/ZoomLevel/i18n/en.json index 7214e70..1221014 100644 --- a/ZoomLevel/i18n/en.json +++ b/ZoomLevel/i18n/en.json @@ -1,126 +1,126 @@ { - "pages.keybinds.id": "keybinds", - "pages.keybinds.displayedName": "Keybinds Page", - "pages.keybinds.tooltip": "All the keybinds that can be added or changed.", - "pages.keybinds.pageTitle": "Keybinds", - "pages.values.id": "values", - "pages.values.displayedName": "Values Page", - "pages.values.tooltip": "All the values that changes the Zoom Level, UI Level and Camera Position.", - "pages.values.pageTitle": "Values", - "pages.miscellaneous.id": "miscellaneous", - "pages.miscellaneous.displayedName": "Miscellaneous Page", - "pages.miscellaneous.tooltip": "All the other options that you can change.", - "pages.miscellaneous.pageTitle": "Miscellaneous", + "pages.keybinds.id": "keybinds", + "pages.keybinds.displayedName": "Keybinds Page", + "pages.keybinds.tooltip": "All the keybinds that can be added or changed.", + "pages.keybinds.pageTitle": "Keybinds", + "pages.values.id": "values", + "pages.values.displayedName": "Values Page", + "pages.values.tooltip": "All the values that changes the Zoom Level, UI Level and Camera Position.", + "pages.values.pageTitle": "Values", + "pages.miscellaneous.id": "miscellaneous", + "pages.miscellaneous.displayedName": "Miscellaneous Page", + "pages.miscellaneous.tooltip": "All the other options that you can change.", + "pages.miscellaneous.pageTitle": "Miscellaneous", - "keybinds.subtitle.main.displayedName": "Main Keybinds:", - "keybinds.subtitle.main.tooltip": "The keybinds that can be added or changed.\nThese are the main features of the mod.", - "keybinds.subtitle.camera.displayedName": "Camera Keybinds:", - "keybinds.subtitle.camera.tooltip": "The keybinds that can be added or changed.\nThese are the camera features of the mod.", - "keybinds.subtitle.toggle.displayedName": "Toggle Keybinds:", - "keybinds.subtitle.toggle.tooltip": "The keybinds that can be added or changed.\nThese are the toggle of the mod.", + "keybinds.subtitle.main.displayedName": "Main Keybinds:", + "keybinds.subtitle.main.tooltip": "The keybinds that can be added or changed.\nThese are the main features of the mod.", + "keybinds.subtitle.camera.displayedName": "Camera Keybinds:", + "keybinds.subtitle.camera.tooltip": "The keybinds that can be added or changed.\nThese are the camera features of the mod.", + "keybinds.subtitle.toggle.displayedName": "Toggle Keybinds:", + "keybinds.subtitle.toggle.tooltip": "The keybinds that can be added or changed.\nThese are the toggle of the mod.", - "keybinds.HoldToChangeUI.displayedName": "UI hold Key", - "keybinds.HoldToChangeUI.tooltip": "Keybinds that you need to hold to change the UI.", - "keybinds.IncreaseZoomOrUI.displayedName": "Zoom or UI Increase", - "keybinds.IncreaseZoomOrUI.tooltip": "Keybinds to Increase Zoom or UI Level.", - "keybinds.DecreaseZoomOrUI.displayedName": "Zoom or UI Decrease", - "keybinds.DecreaseZoomOrUI.tooltip": "Keybinds to Decrease Zoom or UI Level.", - "keybinds.ResetZoomOrUI.displayedName": "Zoom or UI Reset", - "keybinds.ResetZoomOrUI.tooltip": "Keybinds that you use to Reset the Zoom or UI Level.", - "keybinds.MaxZoomOrUI.displayedName": "Zoom or UI Max Levels", - "keybinds.MaxZoomOrUI.tooltip": "Keybinds to Max the Zoom in or Maximize the UI.", - "keybinds.MinZoomOrUI.displayedName": "Zoom or UI Min Levels", - "keybinds.MinZoomOrUI.tooltip": "Keybinds to Max the Zoom out or Minimize the UI.", - "keybinds.ZoomToCurrentMapSize.displayedName": "Zoom to Approximate Map Size", - "keybinds.ZoomToCurrentMapSize.tooltip": "Keybinds to change to zoom level to the approximate current map size.", - "keybinds.PresetZoomAndUIValues.displayedName": "Change UI & Zoom to Preset", - "keybinds.PresetZoomAndUIValues.tooltip": "Keybinds to change to zoom level and UI scale to the preset values.", + "keybinds.HoldToChangeUI.displayedName": "UI hold Key", + "keybinds.HoldToChangeUI.tooltip": "Keybinds that you need to hold to change the UI.", + "keybinds.IncreaseZoomOrUI.displayedName": "Zoom or UI Increase", + "keybinds.IncreaseZoomOrUI.tooltip": "Keybinds to Increase Zoom or UI Level.", + "keybinds.DecreaseZoomOrUI.displayedName": "Zoom or UI Decrease", + "keybinds.DecreaseZoomOrUI.tooltip": "Keybinds to Decrease Zoom or UI Level.", + "keybinds.ResetZoomOrUI.displayedName": "Zoom or UI Reset", + "keybinds.ResetZoomOrUI.tooltip": "Keybinds that you use to Reset the Zoom or UI Level.", + "keybinds.MaxZoomOrUI.displayedName": "Zoom or UI Max Levels", + "keybinds.MaxZoomOrUI.tooltip": "Keybinds to Max the Zoom in or Maximize the UI.", + "keybinds.MinZoomOrUI.displayedName": "Zoom or UI Min Levels", + "keybinds.MinZoomOrUI.tooltip": "Keybinds to Max the Zoom out or Minimize the UI.", + "keybinds.ZoomToCurrentMapSize.displayedName": "Zoom to Approximate Map Size", + "keybinds.ZoomToCurrentMapSize.tooltip": "Keybinds to change to zoom level to the approximate current map size.", + "keybinds.PresetZoomAndUIValues.displayedName": "Change UI & Zoom to Preset", + "keybinds.PresetZoomAndUIValues.tooltip": "Keybinds to change to zoom level and UI scale to the preset values.", - "keybinds.MovementCameraUp.displayedName": "Camera Movement Up", - "keybinds.MovementCameraUp.tooltip": "Changes camera a bit up and locks it.", - "keybinds.MovementCameraDown.displayedName": "Camera Movement Down", - "keybinds.MovementCameraDown.tooltip": "Changes camera a bit down and locks it.", - "keybinds.MovementCameraLeft.displayedName": "Camera Movement Left", - "keybinds.MovementCameraLeft.tooltip": "Changes camera a bit to the left and locks it.", - "keybinds.MovementCameraRight.displayedName": "Camera Movement Right", - "keybinds.MovementCameraRight.tooltip": "Changes camera a bit to the right and locks it.", - "keybinds.MovementCameraReset.displayedName": "Camera Movement Reset", - "keybinds.MovementCameraReset.tooltip": "Resets the camera movement and unlocks it.", + "keybinds.MovementCameraUp.displayedName": "Camera Movement Up", + "keybinds.MovementCameraUp.tooltip": "Changes camera a bit up and locks it.", + "keybinds.MovementCameraDown.displayedName": "Camera Movement Down", + "keybinds.MovementCameraDown.tooltip": "Changes camera a bit down and locks it.", + "keybinds.MovementCameraLeft.displayedName": "Camera Movement Left", + "keybinds.MovementCameraLeft.tooltip": "Changes camera a bit to the left and locks it.", + "keybinds.MovementCameraRight.displayedName": "Camera Movement Right", + "keybinds.MovementCameraRight.tooltip": "Changes camera a bit to the right and locks it.", + "keybinds.MovementCameraReset.displayedName": "Camera Movement Reset", + "keybinds.MovementCameraReset.tooltip": "Resets the camera movement and unlocks it.", - "keybinds.ToggleUIVisibility.displayedName": "UI Visibility", - "keybinds.ToggleUIVisibility.tooltip": "Keybinds to toggle the UI Visibility.", - "keybinds.ToggleHideUIWithCertainZoom.displayedName": "Hide UI at Certain Zoom", - "keybinds.ToggleHideUIWithCertainZoom.tooltip": "Keybinds to toggle the 'Hide UI with Certain Zoom'.", - "keybinds.ToggleAnyKeyToResetCamera.displayedName": "Any Key Reset Camera", - "keybinds.ToggleAnyKeyToResetCamera.tooltip": "Keybinds to toggle the 'Any Button Resets Camera'.", - "keybinds.ToggleAutoZoomToCurrentMapSize.displayedName": "Auto Zoom to Map Size", - "keybinds.ToggleAutoZoomToCurrentMapSize.tooltip": "Keybinds to toggle the 'Auto Zoom to Map Size'.", - "keybinds.TogglePresetOnLoadSaveFile.displayedName": "Activate Preset On Load", - "keybinds.TogglePresetOnLoadSaveFile.tooltip": "Keybinds to toggle the 'PresetOnLoadSaveFile'.", + "keybinds.ToggleUIVisibility.displayedName": "UI Visibility", + "keybinds.ToggleUIVisibility.tooltip": "Keybinds to toggle the UI Visibility.", + "keybinds.ToggleHideUIWithCertainZoom.displayedName": "Hide UI at Certain Zoom", + "keybinds.ToggleHideUIWithCertainZoom.tooltip": "Keybinds to toggle the 'Hide UI with Certain Zoom'.", + "keybinds.ToggleAnyKeyToResetCamera.displayedName": "Any Key Reset Camera", + "keybinds.ToggleAnyKeyToResetCamera.tooltip": "Keybinds to toggle the 'Any Button Resets Camera'.", + "keybinds.ToggleAutoZoomToCurrentMapSize.displayedName": "Auto Zoom to Map Size", + "keybinds.ToggleAutoZoomToCurrentMapSize.tooltip": "Keybinds to toggle the 'Auto Zoom to Map Size'.", + "keybinds.TogglePresetOnLoadSaveFile.displayedName": "Activate Preset On Load", + "keybinds.TogglePresetOnLoadSaveFile.tooltip": "Keybinds to toggle the 'PresetOnLoadSaveFile'.", - "values.subtitle.main.displayedName": "Values:", - "values.subtitle.main.tooltip": "All the values that changes the Zoom Level, UI Level and Camera.", + "values.subtitle.main.displayedName": "Values:", + "values.subtitle.main.tooltip": "All the values that changes the Zoom Level, UI Level and Camera.", - "values.ZoomOrUILevelIncreaseValue.displayedName": "Zoom or UI Levels Increase", - "values.ZoomOrUILevelIncreaseValue.tooltip": "The amount of Zoom or UI Level increase.", - "values.ZoomOrUILevelDecreaseValue.displayedName": "Zoom or UI Levels Decrease", - "values.ZoomOrUILevelDecreaseValue.tooltip": "The amount of Zoom or UI Level decrease.", - "values.ResetZoomOrUIValue.displayedName": "Zoom or UI Reset Level", - "values.ResetZoomOrUIValue.tooltip": "The value of the Zoom or UI level reset.", - "values.MaxZoomOrUIValue.displayedName": "Zoom or UI Max Level", - "values.MaxZoomOrUIValue.tooltip": "The value of the max Zoom in Level or Max UI.", - "values.MinZoomOrUIValue.displayedName": "Zoom or UI Min Level", - "values.MinZoomOrUIValue.tooltip": "The value of the max Zoom out Level or Min UI.", - "values.ZoomLevelThatHidesUI.displayedName": "Zoom Level that Hides UI", - "values.ZoomLevelThatHidesUI.tooltip": "The value of the Zoom level that hides the UI.", - "values.CameraMovementSpeedValue.displayedName": "Camera Movement Speed", - "values.CameraMovementSpeedValue.tooltip": "The speed that the camera moves.", - "values.PresetZoomLevelValue.displayedName": "Preset Zoom Level", - "values.PresetZoomLevelValue.tooltip": "The value of the preset Zoom level.", - "values.PresetUIScaleValue.displayedName": "Preset UI Scale", - "values.PresetUIScaleValue.tooltip": "The value of the preset UI Scale.", + "values.ZoomOrUILevelIncreaseValue.displayedName": "Zoom or UI Levels Increase", + "values.ZoomOrUILevelIncreaseValue.tooltip": "The amount of Zoom or UI Level increase.", + "values.ZoomOrUILevelDecreaseValue.displayedName": "Zoom or UI Levels Decrease", + "values.ZoomOrUILevelDecreaseValue.tooltip": "The amount of Zoom or UI Level decrease.", + "values.ResetZoomOrUIValue.displayedName": "Zoom or UI Reset Level", + "values.ResetZoomOrUIValue.tooltip": "The value of the Zoom or UI level reset.", + "values.MaxZoomOrUIValue.displayedName": "Zoom or UI Max Level", + "values.MaxZoomOrUIValue.tooltip": "The value of the max Zoom in Level or Max UI.", + "values.MinZoomOrUIValue.displayedName": "Zoom or UI Min Level", + "values.MinZoomOrUIValue.tooltip": "The value of the max Zoom out Level or Min UI.", + "values.ZoomLevelThatHidesUI.displayedName": "Zoom Level that Hides UI", + "values.ZoomLevelThatHidesUI.tooltip": "The value of the Zoom level that hides the UI.", + "values.CameraMovementSpeedValue.displayedName": "Camera Movement Speed", + "values.CameraMovementSpeedValue.tooltip": "The speed that the camera moves.", + "values.PresetZoomLevelValue.displayedName": "Preset Zoom Level", + "values.PresetZoomLevelValue.tooltip": "The value of the preset Zoom level.", + "values.PresetUIScaleValue.displayedName": "Preset UI Scale", + "values.PresetUIScaleValue.tooltip": "The value of the preset UI Scale.", - "miscellaneous.subtitle.main.displayedName": "Miscellaneous:", - "miscellaneous.subtitle.main.tooltip": "All the other options that you can change.", + "miscellaneous.subtitle.main.displayedName": "Miscellaneous:", + "miscellaneous.subtitle.main.tooltip": "All the other options that you can change.", - "miscellaneous.SuppressControllerButtons.displayedName": "Suppress Controller Buttons", - "miscellaneous.SuppressControllerButtons.tooltip": "If your controller inputs are supressed or not.", - "miscellaneous.AutoZoomToCurrentMapSize.displayedName": "Auto Zoom to Map Size", - "miscellaneous.AutoZoomToCurrentMapSize.tooltip": "If activated it auto zooms to map size.\nIf not, it will not do that.", - "miscellaneous.AnyButtonToCenterCamera.displayedName": "Any Button Resets Camera", - "miscellaneous.AnyButtonToCenterCamera.tooltip": "If activated your camera centers if any key is pressed.\nIf not, you will need to press the 'Camera Movement Reset' key.", - "miscellaneous.HideUIWithCertainZoom.displayedName": "Hide UI with Certain Zoom", - "miscellaneous.HideUIWithCertainZoom.tooltip": "If activated your UI hides when it reaches a certain zoom level.", - "miscellaneous.PresetOnLoadSaveFile.displayedName": "Preset On Load Save", - "miscellaneous.PresetOnLoadSaveFile.tooltip": "If activated your preset values will update when the file loads.\nWith the values set on the value tabs.", - "miscellaneous.ZoomAndUIControlEverywhere.displayedName": "Zoom and UI Anywhere", - "miscellaneous.ZoomAndUIControlEverywhere.tooltip": "If activated you can control your Zoom and UI Levels anywhere.", + "miscellaneous.SuppressControllerButtons.displayedName": "Suppress Controller Buttons", + "miscellaneous.SuppressControllerButtons.tooltip": "If your controller inputs are supressed or not.", + "miscellaneous.AutoZoomToCurrentMapSize.displayedName": "Auto Zoom to Map Size", + "miscellaneous.AutoZoomToCurrentMapSize.tooltip": "If activated it auto zooms to map size.\nIf not, it will not do that.", + "miscellaneous.AnyButtonToCenterCamera.displayedName": "Any Button Resets Camera", + "miscellaneous.AnyButtonToCenterCamera.tooltip": "If activated your camera centers if any key is pressed.\nIf not, you will need to press the 'Camera Movement Reset' key.", + "miscellaneous.HideUIWithCertainZoom.displayedName": "Hide UI with Certain Zoom", + "miscellaneous.HideUIWithCertainZoom.tooltip": "If activated your UI hides when it reaches a certain zoom level.", + "miscellaneous.PresetOnLoadSaveFile.displayedName": "Preset On Load Save", + "miscellaneous.PresetOnLoadSaveFile.tooltip": "If activated your preset values will update when the file loads.\nWith the values set on the value tabs.", + "miscellaneous.ZoomAndUIControlEverywhere.displayedName": "Zoom and UI Anywhere", + "miscellaneous.ZoomAndUIControlEverywhere.tooltip": "If activated you can control your Zoom and UI Levels anywhere.", - "hudMessages.AutoZoomToCurrentMapSize.message": "Auto Zoom to Map Size is now: {{value}}", - "hudMessages.AnyButtonToCenterCamera.message": "Press Any Key to center camera is now: {{value}}", - "hudMessages.HideUIWithCertainZoom.message": "Hide UI With Certain Zoom is now: {{value}}", - "hudMessages.PresetOnLoadSaveFile.message": "Preset On Load Save File is now: {{value}}", + "hudMessages.AutoZoomToCurrentMapSize.message": "Auto Zoom to Map Size is now: {{value}}", + "hudMessages.AnyButtonToCenterCamera.message": "Press Any Key to center camera is now: {{value}}", + "hudMessages.HideUIWithCertainZoom.message": "Hide UI With Certain Zoom is now: {{value}}", + "hudMessages.PresetOnLoadSaveFile.message": "Preset On Load Save File is now: {{value}}", - "consoleCommands.toggleAutoZoomMap.name": "toggle_Auto_Zoom_Map", - "consoleCommands.toggleAutoZoomMap.description": "\nUsage: toggle_Auto_Zoom_Map", - "consoleCommands.togglePressAnyKeyToResetCamera.name": "toggle_Press_Any_Key_To_Reset_Camera", - "consoleCommands.togglePressAnyKeyToResetCamera.description": "\nUsage: toggle_Press_Any_Key_To_Reset_Camera", - "consoleCommands.toggleHideWithUIWithCertainZoom.name": "toggle_Hide_With_UI_With_Certain_Zoom", - "consoleCommands.toggleHideWithUIWithCertainZoom.description": "\nUsage: toggle_Hide_With_UI_With_Certain_Zoom", - "consoleCommands.togglePresetOnLoadSaveFile.name": "toggle_Preset_On_Load_Save_File", - "consoleCommands.togglePresetOnLoadSaveFile.description": "\nUsage: toggle_Preset_On_Load_Save_File", - "consoleCommands.resetUIAndZoom.name": "reset_UI_and_Zoom", - "consoleCommands.resetUIAndZoom.description": "\nUsage: reset_UI_and_Zoom \n- ui: the decimal value UI scale.\n- zoom: the decimal value zoom level.", - "consoleCommands.resetUI.name": "reset_UI", - "consoleCommands.resetUI.description": "\nUsage: reset_UI \n- ui: the decimal value UI scale.", - "consoleCommands.resetZoom.name": "reset_Zoom", - "consoleCommands.reset_Zoom.description": "\nUsage: reset_Zoom \n- zoom: the decimal value zoom level.", + "consoleCommands.toggleAutoZoomMap.name": "toggle_Auto_Zoom_Map", + "consoleCommands.toggleAutoZoomMap.description": "\nUsage: toggle_Auto_Zoom_Map", + "consoleCommands.togglePressAnyKeyToResetCamera.name": "toggle_Press_Any_Key_To_Reset_Camera", + "consoleCommands.togglePressAnyKeyToResetCamera.description": "\nUsage: toggle_Press_Any_Key_To_Reset_Camera", + "consoleCommands.toggleHideWithUIWithCertainZoom.name": "toggle_Hide_With_UI_With_Certain_Zoom", + "consoleCommands.toggleHideWithUIWithCertainZoom.description": "\nUsage: toggle_Hide_With_UI_With_Certain_Zoom", + "consoleCommands.togglePresetOnLoadSaveFile.name": "toggle_Preset_On_Load_Save_File", + "consoleCommands.togglePresetOnLoadSaveFile.description": "\nUsage: toggle_Preset_On_Load_Save_File", + "consoleCommands.resetUIAndZoom.name": "reset_UI_and_Zoom", + "consoleCommands.resetUIAndZoom.description": "\nUsage: reset_UI_and_Zoom \n- ui: the decimal value UI scale.\n- zoom: the decimal value zoom level.", + "consoleCommands.resetUI.name": "reset_UI", + "consoleCommands.resetUI.description": "\nUsage: reset_UI \n- ui: the decimal value UI scale.", + "consoleCommands.resetZoom.name": "reset_Zoom", + "consoleCommands.reset_Zoom.description": "\nUsage: reset_Zoom \n- zoom: the decimal value zoom level.", - "consoleMessages.AutoZoomToCurrentMapSize.message": "Auto Zoom to Map Size is now: {{value}}", - "consoleMessages.AnyButtonToCenterCamera.message": "Press Any Key to center camera is now: {{value}}", - "consoleMessages.HideUIWithCertainZoom.message": "Hide UI With Certain Zoom is now: {{value}}", - "consoleMessages.PresetOnLoadSaveFile.message": "Preset On Load Save File is now: {{value}}", - "consoleMessages.resetUIAndZoom.message": "UI Level is now at : {{ui}}\nZoom Level is now at: {{zoom}}", - "consoleMessages.resetZoom.message": "Zoom Level is now at: {{value}}", - "consoleMessages.resetUI.message": "UI Level is now at : {{value}}" -} \ No newline at end of file + "consoleMessages.AutoZoomToCurrentMapSize.message": "Auto Zoom to Map Size is now: {{value}}", + "consoleMessages.AnyButtonToCenterCamera.message": "Press Any Key to center camera is now: {{value}}", + "consoleMessages.HideUIWithCertainZoom.message": "Hide UI With Certain Zoom is now: {{value}}", + "consoleMessages.PresetOnLoadSaveFile.message": "Preset On Load Save File is now: {{value}}", + "consoleMessages.resetUIAndZoom.message": "UI Level is now at : {{ui}}\nZoom Level is now at: {{zoom}}", + "consoleMessages.resetZoom.message": "Zoom Level is now at: {{value}}", + "consoleMessages.resetUI.message": "UI Level is now at : {{value}}" +} diff --git a/ZoomLevel/i18n/pt.json b/ZoomLevel/i18n/pt.json index 30beca9..92800b7 100644 --- a/ZoomLevel/i18n/pt.json +++ b/ZoomLevel/i18n/pt.json @@ -1,126 +1,126 @@ { - "pages.keybinds.id": "Teclas de atalho", - "pages.keybinds.displayedName": "Página de Teclas de Atalho", - "pages.keybinds.tooltip": "Todas as teclas de atalho que podem ser adicionadas ou alteradas.", - "pages.keybinds.pageTitle": "Teclas de Atalho", - "pages.values.id": "valores", - "pages.values.displayedName": "Página de Valores", - "pages.values.tooltip": "Todos os valores que mudam o Nível de Zoom, Nível da UI e Posição da Câmera.", - "pages.values.pageTitle": "Valores", - "pages.miscellaneous.id": "miscelânea", - "pages.miscellaneous.displayedName": "Página Miscelânea", - "pages.miscellaneous.tooltip": "Todas as outras opções que você pode alterar.", - "pages.miscellaneous.pageTitle": "Miscelânea", + "pages.keybinds.id": "Teclas de atalho", + "pages.keybinds.displayedName": "Página de Teclas de Atalho", + "pages.keybinds.tooltip": "Todas as teclas de atalho que podem ser adicionadas ou alteradas.", + "pages.keybinds.pageTitle": "Teclas de Atalho", + "pages.values.id": "valores", + "pages.values.displayedName": "Página de Valores", + "pages.values.tooltip": "Todos os valores que mudam o Nível de Zoom, Nível da UI e Posição da Câmera.", + "pages.values.pageTitle": "Valores", + "pages.miscellaneous.id": "miscelânea", + "pages.miscellaneous.displayedName": "Página Miscelânea", + "pages.miscellaneous.tooltip": "Todas as outras opções que você pode alterar.", + "pages.miscellaneous.pageTitle": "Miscelânea", - "keybinds.subtitle.main.displayedName": "Teclas de Atalho Principais:", - "keybinds.subtitle.main.tooltip": "As teclas de atalho que podem ser adicionadas ou alteradas.\nEsses são os recursos principais do mod.", - "keybinds.subtitle.camera.displayedName": "Teclas de Atalho da Câmera:", - "keybinds.subtitle.camera.tooltip": "As teclas de atalho que podem ser adicionadas ou alteradas.\nEsses são os recursos de câmera do mod.", - "keybinds.subtitle.toggle.displayedName": "Teclas de Atalho de Alternância:", - "keybinds.subtitle.toggle.tooltip": "As teclas de atalho que podem ser adicionadas ou alteradas.\nEssas são as alternâncias do mod.", + "keybinds.subtitle.main.displayedName": "Teclas de Atalho Principais:", + "keybinds.subtitle.main.tooltip": "As teclas de atalho que podem ser adicionadas ou alteradas.\nEsses são os recursos principais do mod.", + "keybinds.subtitle.camera.displayedName": "Teclas de Atalho da Câmera:", + "keybinds.subtitle.camera.tooltip": "As teclas de atalho que podem ser adicionadas ou alteradas.\nEsses são os recursos de câmera do mod.", + "keybinds.subtitle.toggle.displayedName": "Teclas de Atalho de Alternância:", + "keybinds.subtitle.toggle.tooltip": "As teclas de atalho que podem ser adicionadas ou alteradas.\nEssas são as alternâncias do mod.", - "keybinds.HoldToChangeUI.displayedName": "Tecla de Manutenção da UI", - "keybinds.HoldToChangeUI.tooltip": "Teclas de atalho que você precisa manter pressionadas para alterar a UI.", - "keybinds.IncreaseZoomOrUI.displayedName": "Aumentar Zoom ou UI", - "keybinds.IncreaseZoomOrUI.tooltip": "Teclas de atalho para aumentar o Nível de Zoom ou da UI.", - "keybinds.DecreaseZoomOrUI.displayedName": "Diminuir Zoom ou UI", - "keybinds.DecreaseZoomOrUI.tooltip": "Teclas de atalho para diminuir o Nível de Zoom ou da UI.", - "keybinds.ResetZoomOrUI.displayedName": "Redefinir Zoom ou UI", - "keybinds.ResetZoomOrUI.tooltip": "Teclas de atalho que você usa para redefinir o Nível de Zoom ou da UI.", - "keybinds.MaxZoomOrUI.displayedName": "Níveis Máximos de Zoom ou UI", - "keybinds.MaxZoomOrUI.tooltip": "Teclas de atalho para definir o Zoom no máximo ou maximizar a UI.", - "keybinds.MinZoomOrUI.displayedName": "Níveis Mínimos de Zoom ou UI", - "keybinds.MinZoomOrUI.tooltip": "Teclas de atalho para definir o Zoom no mínimo ou minimizar a UI.", - "keybinds.ZoomToCurrentMapSize.displayedName": "Zoom para Tamanho Aproximado do Mapa", - "keybinds.ZoomToCurrentMapSize.tooltip": "Teclas de atalho para mudar o nível de zoom para o tamanho aproximado do mapa atual.", - "keybinds.PresetZoomAndUIValues.displayedName": "Alterar UI & Zoom para Pré-definido", - "keybinds.PresetZoomAndUIValues.tooltip": "Teclas de atalho para mudar o nível de zoom e a escala da UI para os valores pré-definidos.", + "keybinds.HoldToChangeUI.displayedName": "Tecla de Manutenção da UI", + "keybinds.HoldToChangeUI.tooltip": "Teclas de atalho que você precisa manter pressionadas para alterar a UI.", + "keybinds.IncreaseZoomOrUI.displayedName": "Aumentar Zoom ou UI", + "keybinds.IncreaseZoomOrUI.tooltip": "Teclas de atalho para aumentar o Nível de Zoom ou da UI.", + "keybinds.DecreaseZoomOrUI.displayedName": "Diminuir Zoom ou UI", + "keybinds.DecreaseZoomOrUI.tooltip": "Teclas de atalho para diminuir o Nível de Zoom ou da UI.", + "keybinds.ResetZoomOrUI.displayedName": "Redefinir Zoom ou UI", + "keybinds.ResetZoomOrUI.tooltip": "Teclas de atalho que você usa para redefinir o Nível de Zoom ou da UI.", + "keybinds.MaxZoomOrUI.displayedName": "Níveis Máximos de Zoom ou UI", + "keybinds.MaxZoomOrUI.tooltip": "Teclas de atalho para definir o Zoom no máximo ou maximizar a UI.", + "keybinds.MinZoomOrUI.displayedName": "Níveis Mínimos de Zoom ou UI", + "keybinds.MinZoomOrUI.tooltip": "Teclas de atalho para definir o Zoom no mínimo ou minimizar a UI.", + "keybinds.ZoomToCurrentMapSize.displayedName": "Zoom para Tamanho Aproximado do Mapa", + "keybinds.ZoomToCurrentMapSize.tooltip": "Teclas de atalho para mudar o nível de zoom para o tamanho aproximado do mapa atual.", + "keybinds.PresetZoomAndUIValues.displayedName": "Alterar UI & Zoom para Pré-definido", + "keybinds.PresetZoomAndUIValues.tooltip": "Teclas de atalho para mudar o nível de zoom e a escala da UI para os valores pré-definidos.", - "keybinds.MovementCameraUp.displayedName": "Mover Câmera para Cima", - "keybinds.MovementCameraUp.tooltip": "Move um pouco a câmera para cima e a trava.", - "keybinds.MovementCameraDown.displayedName": "Mover Câmera para Baixo", - "keybinds.MovementCameraDown.tooltip": "Move um pouco a câmera para baixo e a trava.", - "keybinds.MovementCameraLeft.displayedName": "Mover Câmera para a Esquerda", - "keybinds.MovementCameraLeft.tooltip": "Move um pouco a câmera para a esquerda e a trava.", - "keybinds.MovementCameraRight.displayedName": "Mover Câmera para a Direita", - "keybinds.MovementCameraRight.tooltip": "Move um pouco a câmera para a direita e a trava.", - "keybinds.MovementCameraReset.displayedName": "Redefinir Movimento da Câmera", - "keybinds.MovementCameraReset.tooltip": "Redefine o movimento da câmera e a destrava.", + "keybinds.MovementCameraUp.displayedName": "Mover Câmera para Cima", + "keybinds.MovementCameraUp.tooltip": "Move um pouco a câmera para cima e a trava.", + "keybinds.MovementCameraDown.displayedName": "Mover Câmera para Baixo", + "keybinds.MovementCameraDown.tooltip": "Move um pouco a câmera para baixo e a trava.", + "keybinds.MovementCameraLeft.displayedName": "Mover Câmera para a Esquerda", + "keybinds.MovementCameraLeft.tooltip": "Move um pouco a câmera para a esquerda e a trava.", + "keybinds.MovementCameraRight.displayedName": "Mover Câmera para a Direita", + "keybinds.MovementCameraRight.tooltip": "Move um pouco a câmera para a direita e a trava.", + "keybinds.MovementCameraReset.displayedName": "Redefinir Movimento da Câmera", + "keybinds.MovementCameraReset.tooltip": "Redefine o movimento da câmera e a destrava.", - "keybinds.ToggleUIVisibility.displayedName": "Visibilidade da UI", - "keybinds.ToggleUIVisibility.tooltip": "Teclas de atalho para alternar a visibilidade da UI.", - "keybinds.ToggleHideUIWithCertainZoom.displayedName": "Ocultar UI com Zoom Específico", - "keybinds.ToggleHideUIWithCertainZoom.tooltip": "Teclas de atalho para alternar o 'Ocultar UI com Zoom Específico'.", - "keybinds.ToggleAnyKeyToResetCamera.displayedName": "Qualquer Tecla para Redefinir Câmera", - "keybinds.ToggleAnyKeyToResetCamera.tooltip": "Teclas de atalho para alternar o 'Qualquer Tecla para Redefinir Câmera'.", - "keybinds.ToggleAutoZoomToCurrentMapSize.displayedName": "Zoom Automático para Tamanho do Mapa", - "keybinds.ToggleAutoZoomToCurrentMapSize.tooltip": "Teclas de atalho para alternar o 'Zoom Automático para Tamanho do Mapa'.", - "keybinds.TogglePresetOnLoadSaveFile.displayedName": "Ativar Preset ao Carregar", - "keybinds.TogglePresetOnLoadSaveFile.tooltip": "Teclas de atalho para alternar o 'Ativar Preset ao Carregar'.", + "keybinds.ToggleUIVisibility.displayedName": "Visibilidade da UI", + "keybinds.ToggleUIVisibility.tooltip": "Teclas de atalho para alternar a visibilidade da UI.", + "keybinds.ToggleHideUIWithCertainZoom.displayedName": "Ocultar UI com Zoom Específico", + "keybinds.ToggleHideUIWithCertainZoom.tooltip": "Teclas de atalho para alternar o 'Ocultar UI com Zoom Específico'.", + "keybinds.ToggleAnyKeyToResetCamera.displayedName": "Qualquer Tecla para Redefinir Câmera", + "keybinds.ToggleAnyKeyToResetCamera.tooltip": "Teclas de atalho para alternar o 'Qualquer Tecla para Redefinir Câmera'.", + "keybinds.ToggleAutoZoomToCurrentMapSize.displayedName": "Zoom Automático para Tamanho do Mapa", + "keybinds.ToggleAutoZoomToCurrentMapSize.tooltip": "Teclas de atalho para alternar o 'Zoom Automático para Tamanho do Mapa'.", + "keybinds.TogglePresetOnLoadSaveFile.displayedName": "Ativar Preset ao Carregar", + "keybinds.TogglePresetOnLoadSaveFile.tooltip": "Teclas de atalho para alternar o 'Ativar Preset ao Carregar'.", - "values.subtitle.main.displayedName": "Valores:", - "values.subtitle.main.tooltip": "Todos os valores que alteram o Nível de Zoom, Nível da UI e Câmera.", + "values.subtitle.main.displayedName": "Valores:", + "values.subtitle.main.tooltip": "Todos os valores que alteram o Nível de Zoom, Nível da UI e Câmera.", - "values.ZoomOrUILevelIncreaseValue.displayedName": "Aumento de Níveis de Zoom ou UI", - "values.ZoomOrUILevelIncreaseValue.tooltip": "A quantidade de aumento nos níveis de Zoom ou UI.", - "values.ZoomOrUILevelDecreaseValue.displayedName": "Diminuição de Níveis de Zoom ou UI", - "values.ZoomOrUILevelDecreaseValue.tooltip": "A quantidade de diminuição nos níveis de Zoom ou UI.", - "values.ResetZoomOrUIValue.displayedName": "Nível de Zoom ou UI para Redefinir", - "values.ResetZoomOrUIValue.tooltip": "O valor do nível de Zoom ou UI para redefinir.", - "values.MaxZoomOrUIValue.displayedName": "Nível Máximo de Zoom ou UI", - "values.MaxZoomOrUIValue.tooltip": "O valor do nível máximo de Zoom ou UI.", - "values.MinZoomOrUIValue.displayedName": "Nível Mínimo de Zoom ou UI", - "values.MinZoomOrUIValue.tooltip": "O valor do nível mínimo de Zoom ou UI.", - "values.ZoomLevelThatHidesUI.displayedName": "Nível de Zoom que Oculta a UI", - "values.ZoomLevelThatHidesUI.tooltip": "O valor do nível de Zoom que oculta a UI.", - "values.CameraMovementSpeedValue.displayedName": "Velocidade de Movimento da Câmera", - "values.CameraMovementSpeedValue.tooltip": "A velocidade com que a câmera se move.", - "values.PresetZoomLevelValue.displayedName": "Nível de Zoom Pré-definido", - "values.PresetZoomLevelValue.tooltip": "O valor do nível de Zoom pré-definido.", - "values.PresetUIScaleValue.displayedName": "Escala de UI Pré-definida", - "values.PresetUIScaleValue.tooltip": "O valor da escala de UI pré-definida.", + "values.ZoomOrUILevelIncreaseValue.displayedName": "Aumento de Níveis de Zoom ou UI", + "values.ZoomOrUILevelIncreaseValue.tooltip": "A quantidade de aumento nos níveis de Zoom ou UI.", + "values.ZoomOrUILevelDecreaseValue.displayedName": "Diminuição de Níveis de Zoom ou UI", + "values.ZoomOrUILevelDecreaseValue.tooltip": "A quantidade de diminuição nos níveis de Zoom ou UI.", + "values.ResetZoomOrUIValue.displayedName": "Nível de Zoom ou UI para Redefinir", + "values.ResetZoomOrUIValue.tooltip": "O valor do nível de Zoom ou UI para redefinir.", + "values.MaxZoomOrUIValue.displayedName": "Nível Máximo de Zoom ou UI", + "values.MaxZoomOrUIValue.tooltip": "O valor do nível máximo de Zoom ou UI.", + "values.MinZoomOrUIValue.displayedName": "Nível Mínimo de Zoom ou UI", + "values.MinZoomOrUIValue.tooltip": "O valor do nível mínimo de Zoom ou UI.", + "values.ZoomLevelThatHidesUI.displayedName": "Nível de Zoom que Oculta a UI", + "values.ZoomLevelThatHidesUI.tooltip": "O valor do nível de Zoom que oculta a UI.", + "values.CameraMovementSpeedValue.displayedName": "Velocidade de Movimento da Câmera", + "values.CameraMovementSpeedValue.tooltip": "A velocidade com que a câmera se move.", + "values.PresetZoomLevelValue.displayedName": "Nível de Zoom Pré-definido", + "values.PresetZoomLevelValue.tooltip": "O valor do nível de Zoom pré-definido.", + "values.PresetUIScaleValue.displayedName": "Escala de UI Pré-definida", + "values.PresetUIScaleValue.tooltip": "O valor da escala de UI pré-definida.", - "miscellaneous.subtitle.main.displayedName": "Diversos:", - "miscellaneous.subtitle.main.tooltip": "Todas as outras opções que você pode alterar.", + "miscellaneous.subtitle.main.displayedName": "Diversos:", + "miscellaneous.subtitle.main.tooltip": "Todas as outras opções que você pode alterar.", - "miscellaneous.SuppressControllerButtons.displayedName": "Suprimir Botões do Controle", - "miscellaneous.SuppressControllerButtons.tooltip": "Se os seus inputs do controle estão suprimidos ou não.", - "miscellaneous.AutoZoomToCurrentMapSize.displayedName": "Zoom Automático para o Tamanho do Mapa", - "miscellaneous.AutoZoomToCurrentMapSize.tooltip": "Se ativado, ele faz zoom automaticamente para o tamanho do mapa.\nSe não, não fará isso.", - "miscellaneous.AnyButtonToCenterCamera.displayedName": "Qualquer Botão para Centralizar a Câmera", - "miscellaneous.AnyButtonToCenterCamera.tooltip": "Se ativado, sua câmera centralizará se qualquer tecla for pressionada.\nSe não, você precisará pressionar a tecla 'Redefinir Movimento da Câmera'.", - "miscellaneous.HideUIWithCertainZoom.displayedName": "Ocultar UI com um Determinado Zoom", - "miscellaneous.HideUIWithCertainZoom.tooltip": "Se ativado, sua UI será ocultada quando atingir um determinado nível de zoom.", - "miscellaneous.PresetOnLoadSaveFile.displayedName": "Preset ao Carregar Arquivo Salvo", - "miscellaneous.PresetOnLoadSaveFile.tooltip": "Se ativado, seus valores pré-definidos serão atualizados quando o arquivo for carregado.\nCom os valores definidos nas guias de valores.", - "miscellaneous.ZoomAndUIControlEverywhere.displayedName": "Controle de Zoom e UI em Qualquer Lugar", - "miscellaneous.ZoomAndUIControlEverywhere.tooltip": "Se ativado, você pode controlar seus níveis de Zoom e UI em qualquer lugar.", + "miscellaneous.SuppressControllerButtons.displayedName": "Suprimir Botões do Controle", + "miscellaneous.SuppressControllerButtons.tooltip": "Se os seus inputs do controle estão suprimidos ou não.", + "miscellaneous.AutoZoomToCurrentMapSize.displayedName": "Zoom Automático para o Tamanho do Mapa", + "miscellaneous.AutoZoomToCurrentMapSize.tooltip": "Se ativado, ele faz zoom automaticamente para o tamanho do mapa.\nSe não, não fará isso.", + "miscellaneous.AnyButtonToCenterCamera.displayedName": "Qualquer Botão para Centralizar a Câmera", + "miscellaneous.AnyButtonToCenterCamera.tooltip": "Se ativado, sua câmera centralizará se qualquer tecla for pressionada.\nSe não, você precisará pressionar a tecla 'Redefinir Movimento da Câmera'.", + "miscellaneous.HideUIWithCertainZoom.displayedName": "Ocultar UI com um Determinado Zoom", + "miscellaneous.HideUIWithCertainZoom.tooltip": "Se ativado, sua UI será ocultada quando atingir um determinado nível de zoom.", + "miscellaneous.PresetOnLoadSaveFile.displayedName": "Preset ao Carregar Arquivo Salvo", + "miscellaneous.PresetOnLoadSaveFile.tooltip": "Se ativado, seus valores pré-definidos serão atualizados quando o arquivo for carregado.\nCom os valores definidos nas guias de valores.", + "miscellaneous.ZoomAndUIControlEverywhere.displayedName": "Controle de Zoom e UI em Qualquer Lugar", + "miscellaneous.ZoomAndUIControlEverywhere.tooltip": "Se ativado, você pode controlar seus níveis de Zoom e UI em qualquer lugar.", - "hudMessages.AutoZoomToCurrentMapSize.message": "O Zoom Automático para o Tamanho do Mapa está agora: {{value}}", - "hudMessages.AnyButtonToCenterCamera.message": "Pressione qualquer tecla para centralizar a câmera agora: {{value}}", - "hudMessages.HideUIWithCertainZoom.message": "Ocultar UI com um Determinado Zoom agora é: {{value}}", - "hudMessages.PresetOnLoadSaveFile.message": "Preset ao Carregar Arquivo Salvo agora é: {{value}}", + "hudMessages.AutoZoomToCurrentMapSize.message": "O Zoom Automático para o Tamanho do Mapa está agora: {{value}}", + "hudMessages.AnyButtonToCenterCamera.message": "Pressione qualquer tecla para centralizar a câmera agora: {{value}}", + "hudMessages.HideUIWithCertainZoom.message": "Ocultar UI com um Determinado Zoom agora é: {{value}}", + "hudMessages.PresetOnLoadSaveFile.message": "Preset ao Carregar Arquivo Salvo agora é: {{value}}", - "consoleCommands.toggleAutoZoomMap.name": "toggle_Auto_Zoom_Map", - "consoleCommands.toggleAutoZoomMap.description": "\nUso: toggle_Auto_Zoom_Map", - "consoleCommands.togglePressAnyKeyToResetCamera.name": "toggle_Press_Any_Key_To_Reset_Camera", - "consoleCommands.togglePressAnyKeyToResetCamera.description": "\nUso: toggle_Press_Any_Key_To_Reset_Camera", - "consoleCommands.toggleHideWithUIWithCertainZoom.name": "toggle_Hide_With_UI_With_Certain_Zoom", - "consoleCommands.toggleHideWithUIWithCertainZoom.description": "\nUso: toggle_Hide_With_UI_With_Certain_Zoom", - "consoleCommands.togglePresetOnLoadSaveFile.name": "toggle_Preset_On_Load_Save_File", - "consoleCommands.togglePresetOnLoadSaveFile.description": "\nUso: toggle_Preset_On_Load_Save_File", - "consoleCommands.resetUIAndZoom.name": "reset_UI_and_Zoom", - "consoleCommands.resetUIAndZoom.description": "\nUso: reset_UI_and_Zoom \n- ui: o valor decimal da escala de UI.\n- zoom: o valor decimal do nível de zoom.", - "consoleCommands.resetUI.name": "reset_UI", - "consoleCommands.resetUI.description": "\nUso: reset_UI \n- ui: o valor decimal da escala de UI.", - "consoleCommands.resetZoom.name": "reset_Zoom", - "consoleCommands.reset_Zoom.description": "\nUso: reset_Zoom \n- zoom: o valor decimal do nível de zoom.", + "consoleCommands.toggleAutoZoomMap.name": "toggle_Auto_Zoom_Map", + "consoleCommands.toggleAutoZoomMap.description": "\nUso: toggle_Auto_Zoom_Map", + "consoleCommands.togglePressAnyKeyToResetCamera.name": "toggle_Press_Any_Key_To_Reset_Camera", + "consoleCommands.togglePressAnyKeyToResetCamera.description": "\nUso: toggle_Press_Any_Key_To_Reset_Camera", + "consoleCommands.toggleHideWithUIWithCertainZoom.name": "toggle_Hide_With_UI_With_Certain_Zoom", + "consoleCommands.toggleHideWithUIWithCertainZoom.description": "\nUso: toggle_Hide_With_UI_With_Certain_Zoom", + "consoleCommands.togglePresetOnLoadSaveFile.name": "toggle_Preset_On_Load_Save_File", + "consoleCommands.togglePresetOnLoadSaveFile.description": "\nUso: toggle_Preset_On_Load_Save_File", + "consoleCommands.resetUIAndZoom.name": "reset_UI_and_Zoom", + "consoleCommands.resetUIAndZoom.description": "\nUso: reset_UI_and_Zoom \n- ui: o valor decimal da escala de UI.\n- zoom: o valor decimal do nível de zoom.", + "consoleCommands.resetUI.name": "reset_UI", + "consoleCommands.resetUI.description": "\nUso: reset_UI \n- ui: o valor decimal da escala de UI.", + "consoleCommands.resetZoom.name": "reset_Zoom", + "consoleCommands.reset_Zoom.description": "\nUso: reset_Zoom \n- zoom: o valor decimal do nível de zoom.", - "consoleMessages.AutoZoomToCurrentMapSize.message": "Zoom Automático para Tamanho do Mapa agora é: {{value}}", - "consoleMessages.AnyButtonToCenterCamera.message": "Pressione Qualquer Tecla para centralizar a câmera agora é: {{value}}", - "consoleMessages.HideUIWithCertainZoom.message": "Ocultar UI com um Determinado Zoom agora é: {{value}}", - "consoleMessages.PresetOnLoadSaveFile.message": "Preset ao Carregar Arquivo Salvo agora é: {{value}}", - "consoleMessages.resetUIAndZoom.message": "O nível de UI agora está em: {{ui}}\nO nível de Zoom agora está em: {{zoom}}", - "consoleMessages.resetZoom.message": "O nível de Zoom agora está em: {{value}}", - "consoleMessages.resetUI.message": "O nível de UI agora está em: {{value}}" -} \ No newline at end of file + "consoleMessages.AutoZoomToCurrentMapSize.message": "Zoom Automático para Tamanho do Mapa agora é: {{value}}", + "consoleMessages.AnyButtonToCenterCamera.message": "Pressione Qualquer Tecla para centralizar a câmera agora é: {{value}}", + "consoleMessages.HideUIWithCertainZoom.message": "Ocultar UI com um Determinado Zoom agora é: {{value}}", + "consoleMessages.PresetOnLoadSaveFile.message": "Preset ao Carregar Arquivo Salvo agora é: {{value}}", + "consoleMessages.resetUIAndZoom.message": "O nível de UI agora está em: {{ui}}\nO nível de Zoom agora está em: {{zoom}}", + "consoleMessages.resetZoom.message": "O nível de Zoom agora está em: {{value}}", + "consoleMessages.resetUI.message": "O nível de UI agora está em: {{value}}" +} diff --git a/ZoomLevel/i18n/zh.json b/ZoomLevel/i18n/zh.json index 8ed52b8..8e67e0c 100644 --- a/ZoomLevel/i18n/zh.json +++ b/ZoomLevel/i18n/zh.json @@ -1,126 +1,126 @@ { - "pages.keybinds.id": "keybinds", - "pages.keybinds.displayedName": "热键绑定页面", - "pages.keybinds.tooltip": "可添加或更改所有热键绑定。", - "pages.keybinds.pageTitle": "热键", - "pages.values.id": "values", - "pages.values.displayedName": "数值页面", - "pages.values.tooltip": "所有改变缩放级别、UI级别和摄像机位置的数值。", - "pages.values.pageTitle": "数值", - "pages.miscellaneous.id": "miscellaneous", - "pages.miscellaneous.displayedName": "杂项页面", - "pages.miscellaneous.tooltip": "其它你可以更改的选项", - "pages.miscellaneous.pageTitle": "杂项", + "pages.keybinds.id": "keybinds", + "pages.keybinds.displayedName": "热键绑定页面", + "pages.keybinds.tooltip": "可添加或更改所有热键绑定。", + "pages.keybinds.pageTitle": "热键", + "pages.values.id": "values", + "pages.values.displayedName": "数值页面", + "pages.values.tooltip": "所有改变缩放级别、UI级别和摄像机位置的数值。", + "pages.values.pageTitle": "数值", + "pages.miscellaneous.id": "miscellaneous", + "pages.miscellaneous.displayedName": "杂项页面", + "pages.miscellaneous.tooltip": "其它你可以更改的选项", + "pages.miscellaneous.pageTitle": "杂项", - "keybinds.subtitle.main.displayedName": "主要热键绑定:", - "keybinds.subtitle.main.tooltip": "可以添加或更改的按键绑定。\n这些是MOD的主要功能。", - "keybinds.subtitle.camera.displayedName": "相机热键配置:", - "keybinds.subtitle.camera.tooltip": "可以添加或更改的热键。\n这些是该模组的相机功能。", - "keybinds.subtitle.toggle.displayedName": "切换热键:", - "keybinds.subtitle.toggle.tooltip": "可以添加或更改的热键。\n这些是该模组的切换功能。", + "keybinds.subtitle.main.displayedName": "主要热键绑定:", + "keybinds.subtitle.main.tooltip": "可以添加或更改的按键绑定。\n这些是MOD的主要功能。", + "keybinds.subtitle.camera.displayedName": "相机热键配置:", + "keybinds.subtitle.camera.tooltip": "可以添加或更改的热键。\n这些是该模组的相机功能。", + "keybinds.subtitle.toggle.displayedName": "切换热键:", + "keybinds.subtitle.toggle.tooltip": "可以添加或更改的热键。\n这些是该模组的切换功能。", - "keybinds.HoldToChangeUI.displayedName": "UI缩放键", - "keybinds.HoldToChangeUI.tooltip": "按住此键再配合放大或缩小键来改变UI缩放。此键本身没有用途,仅作组合键用。", - "keybinds.IncreaseZoomOrUI.displayedName": "放大", - "keybinds.IncreaseZoomOrUI.tooltip": "增加画面或UI缩放。", - "keybinds.DecreaseZoomOrUI.displayedName": "缩小", - "keybinds.DecreaseZoomOrUI.tooltip": "减少画面或UI缩放。", - "keybinds.ResetZoomOrUI.displayedName": "重置", - "keybinds.ResetZoomOrUI.tooltip": "将画面或UI缩放还原成默认值。", - "keybinds.MaxZoomOrUI.displayedName": "一键最大", - "keybinds.MaxZoomOrUI.tooltip": "将画面或UI放至最大。", - "keybinds.MinZoomOrUI.displayedName": "一键最小", - "keybinds.MinZoomOrUI.tooltip": "将画面或UI缩至最小。", - "keybinds.ZoomToCurrentMapSize.displayedName": "缩放到近似地图尺寸", - "keybinds.ZoomToCurrentMapSize.tooltip": "将缩放级别更改为当前地图的大致尺寸的热键。", - "keybinds.PresetZoomAndUIValues.displayedName": "更改UI和缩放至预设值", - "keybinds.PresetZoomAndUIValues.tooltip": "更改缩放级别和UI比例为预设值的热键。", + "keybinds.HoldToChangeUI.displayedName": "UI缩放键", + "keybinds.HoldToChangeUI.tooltip": "按住此键再配合放大或缩小键来改变UI缩放。此键本身没有用途,仅作组合键用。", + "keybinds.IncreaseZoomOrUI.displayedName": "放大", + "keybinds.IncreaseZoomOrUI.tooltip": "增加画面或UI缩放。", + "keybinds.DecreaseZoomOrUI.displayedName": "缩小", + "keybinds.DecreaseZoomOrUI.tooltip": "减少画面或UI缩放。", + "keybinds.ResetZoomOrUI.displayedName": "重置", + "keybinds.ResetZoomOrUI.tooltip": "将画面或UI缩放还原成默认值。", + "keybinds.MaxZoomOrUI.displayedName": "一键最大", + "keybinds.MaxZoomOrUI.tooltip": "将画面或UI放至最大。", + "keybinds.MinZoomOrUI.displayedName": "一键最小", + "keybinds.MinZoomOrUI.tooltip": "将画面或UI缩至最小。", + "keybinds.ZoomToCurrentMapSize.displayedName": "缩放到近似地图尺寸", + "keybinds.ZoomToCurrentMapSize.tooltip": "将缩放级别更改为当前地图的大致尺寸的热键。", + "keybinds.PresetZoomAndUIValues.displayedName": "更改UI和缩放至预设值", + "keybinds.PresetZoomAndUIValues.tooltip": "更改缩放级别和UI比例为预设值的热键。", - "keybinds.MovementCameraUp.displayedName": "相机向上移动", - "keybinds.MovementCameraUp.tooltip": "将相机向上移动一点并锁定。", - "keybinds.MovementCameraDown.displayedName": "相机向下移动", - "keybinds.MovementCameraDown.tooltip": "将相机向下移动一点并锁定。", - "keybinds.MovementCameraLeft.displayedName": "相机向左移动", - "keybinds.MovementCameraLeft.tooltip": "将相机向左移动一点并锁定。", - "keybinds.MovementCameraRight.displayedName": "相机向右移动", - "keybinds.MovementCameraRight.tooltip": "将相机向右移动一点并锁定。", - "keybinds.MovementCameraReset.displayedName": "重置相机移动", - "keybinds.MovementCameraReset.tooltip": "重置相机移动并解锁", - - "keybinds.ToggleUIVisibility.displayedName": "显示/隐藏UI界面", - "keybinds.ToggleUIVisibility.tooltip": "显示/隐藏UI界面(如工具栏、体力槽)", - "keybinds.ToggleHideUIWithCertainZoom.displayedName": "特定缩放隐藏UI界面", - "keybinds.ToggleHideUIWithCertainZoom.tooltip": "在某个缩放级别下,隐藏UI界面。", - "keybinds.ToggleAnyKeyToResetCamera.displayedName": "任意键重置相机", - "keybinds.ToggleAnyKeyToResetCamera.tooltip": "用于切换“任意按钮重置相机”的热键", - "keybinds.ToggleAutoZoomToCurrentMapSize.displayedName": "自动缩放至地图大小", - "keybinds.ToggleAutoZoomToCurrentMapSize.tooltip": "用于切换“自动缩放至地图大小”的热键", - "keybinds.TogglePresetOnLoadSaveFile.displayedName": "加载预设值", - "keybinds.TogglePresetOnLoadSaveFile.tooltip": "用于切换“加载预设值”的热键", - - "values.subtitle.main.displayedName": "数值", - "values.subtitle.main.tooltip": "所有缩放的数值。", + "keybinds.MovementCameraUp.displayedName": "相机向上移动", + "keybinds.MovementCameraUp.tooltip": "将相机向上移动一点并锁定。", + "keybinds.MovementCameraDown.displayedName": "相机向下移动", + "keybinds.MovementCameraDown.tooltip": "将相机向下移动一点并锁定。", + "keybinds.MovementCameraLeft.displayedName": "相机向左移动", + "keybinds.MovementCameraLeft.tooltip": "将相机向左移动一点并锁定。", + "keybinds.MovementCameraRight.displayedName": "相机向右移动", + "keybinds.MovementCameraRight.tooltip": "将相机向右移动一点并锁定。", + "keybinds.MovementCameraReset.displayedName": "重置相机移动", + "keybinds.MovementCameraReset.tooltip": "重置相机移动并解锁", - "values.ZoomOrUILevelIncreaseValue.displayedName": "单次放大级别", - "values.ZoomOrUILevelIncreaseValue.tooltip": "点击放大键一次的放大级别。", - "values.ZoomOrUILevelDecreaseValue.displayedName": "单次缩小级别", - "values.ZoomOrUILevelDecreaseValue.tooltip": "点击缩小键一次的缩小级别。", - "values.ResetZoomOrUIValue.displayedName": "默认级别", - "values.ResetZoomOrUIValue.tooltip": "画面或UI的默认级别。", - "values.MaxZoomOrUIValue.displayedName": "最大级别", - "values.MaxZoomOrUIValue.tooltip": "画面或UI放至最大的级别。", - "values.MinZoomOrUIValue.displayedName": "最小级别", - "values.MinZoomOrUIValue.tooltip": "画面或UI缩至最小的级别。", - "values.ZoomLevelThatHidesUI.displayedName": "隐藏UI界面的缩放级别", - "values.ZoomLevelThatHidesUI.tooltip": "在这个缩放级别下,UI界面被隐藏。", - "values.CameraMovementSpeedValue.displayedName": "画面移动速度", - "values.CameraMovementSpeedValue.tooltip": "画面移动的速度", - "values.PresetZoomLevelValue.displayedName": "预设缩放级别", - "values.PresetZoomLevelValue.tooltip": "预设缩放级别的值", - "values.PresetUIScaleValue.displayedName": "预设UI的比例", - "values.PresetUIScaleValue.tooltip": "预设UI比例的值", + "keybinds.ToggleUIVisibility.displayedName": "显示/隐藏UI界面", + "keybinds.ToggleUIVisibility.tooltip": "显示/隐藏UI界面(如工具栏、体力槽)", + "keybinds.ToggleHideUIWithCertainZoom.displayedName": "特定缩放隐藏UI界面", + "keybinds.ToggleHideUIWithCertainZoom.tooltip": "在某个缩放级别下,隐藏UI界面。", + "keybinds.ToggleAnyKeyToResetCamera.displayedName": "任意键重置相机", + "keybinds.ToggleAnyKeyToResetCamera.tooltip": "用于切换“任意按钮重置相机”的热键", + "keybinds.ToggleAutoZoomToCurrentMapSize.displayedName": "自动缩放至地图大小", + "keybinds.ToggleAutoZoomToCurrentMapSize.tooltip": "用于切换“自动缩放至地图大小”的热键", + "keybinds.TogglePresetOnLoadSaveFile.displayedName": "加载预设值", + "keybinds.TogglePresetOnLoadSaveFile.tooltip": "用于切换“加载预设值”的热键", - "miscellaneous.subtitle.main.displayedName": "其他", - "miscellaneous.subtitle.main.tooltip": "其他选项。", - - "miscellaneous.SuppressControllerButtons.displayedName": "禁用控制器按键", - "miscellaneous.SuppressControllerButtons.tooltip": "禁用控制器按键。", - "miscellaneous.AutoZoomToCurrentMapSize.displayedName": "自动缩放至地图大小", - "miscellaneous.AutoZoomToCurrentMapSize.tooltip": "如果激活,它会自动缩放至地图大小。\n如果未激活,它将不会这样做。", - "miscellaneous.AnyButtonToCenterCamera.displayedName": "任意按钮重置相机", - "miscellaneous.AnyButtonToCenterCamera.tooltip": "如果启用,则相机会在按下任意键后重新对准中心。\n如果未启用,则需要按下“相机移动重置”键。", - "miscellaneous.HideUIWithCertainZoom.displayedName": "特定缩放隐藏UI界面", - "miscellaneous.HideUIWithCertainZoom.tooltip": "在某个缩放级别下,隐藏UI界面。", - "miscellaneous.PresetOnLoadSaveFile.displayedName": "加载预设值", - "miscellaneous.PresetOnLoadSaveFile.tooltip": "如果此项激活,会在文件读取时加载数值页面上的值", - "miscellaneous.ZoomAndUIControlEverywhere.displayedName": "在任何地方缩放", - "miscellaneous.ZoomAndUIControlEverywhere.tooltip": "在任何地方使用缩放功能。", + "values.subtitle.main.displayedName": "数值", + "values.subtitle.main.tooltip": "所有缩放的数值。", - "hudMessages.AutoZoomToCurrentMapSize.message": "自动缩放到地图大小 当前值为: {{value}}", - "hudMessages.AnyButtonToCenterCamera.message": "按任意键画面居中 当前值为: {{value}}", - "hudMessages.HideUIWithCertainZoom.message": "“特定缩放隐藏UI界面”当前值:{{value}}", - "hudMessages.PresetOnLoadSaveFile.message": "加载预设值当前值为: {{value}}", - - "consoleCommands.toggleAutoZoomMap.name": "toggle_Auto_Zoom_Map", - "consoleCommands.toggleAutoZoomMap.description": "\nUsage: toggle_Auto_Zoom_Map", - "consoleCommands.togglePressAnyKeyToResetCamera.name": "toggle_Press_Any_Key_To_Reset_Camera", - "consoleCommands.togglePressAnyKeyToResetCamera.description": "\nUsage: toggle_Press_Any_Key_To_Reset_Camera", - "consoleCommands.toggleHideWithUIWithCertainZoom.name": "toggle_Hide_With_UI_With_Certain_Zoom", - "consoleCommands.toggleHideWithUIWithCertainZoom.description": "\nUsage: toggle_Hide_With_UI_With_Certain_Zoom", - "consoleCommands.togglePresetOnLoadSaveFile.name": "toggle_Preset_On_Load_Save_File", - "consoleCommands.togglePresetOnLoadSaveFile.description": "\nUsage: toggle_Preset_On_Load_Save_File", - "consoleCommands.resetUIAndZoom.name": "reset_UI_and_Zoom", - "consoleCommands.resetUIAndZoom.description": "\nUsage: reset_UI_and_Zoom \n- ui: 刻度十进制.\n- 缩放: 十进制.", - "consoleCommands.resetUI.name": "reset_UI", - "consoleCommands.resetUI.description": "\nUsage: reset_UI \n- ui: 刻度十进制", - "consoleCommands.resetZoom.name": "reset_Zoom", - "consoleCommands.reset_Zoom.description": "\nUsage: reset_Zoom \n- 缩放: 十进制", + "values.ZoomOrUILevelIncreaseValue.displayedName": "单次放大级别", + "values.ZoomOrUILevelIncreaseValue.tooltip": "点击放大键一次的放大级别。", + "values.ZoomOrUILevelDecreaseValue.displayedName": "单次缩小级别", + "values.ZoomOrUILevelDecreaseValue.tooltip": "点击缩小键一次的缩小级别。", + "values.ResetZoomOrUIValue.displayedName": "默认级别", + "values.ResetZoomOrUIValue.tooltip": "画面或UI的默认级别。", + "values.MaxZoomOrUIValue.displayedName": "最大级别", + "values.MaxZoomOrUIValue.tooltip": "画面或UI放至最大的级别。", + "values.MinZoomOrUIValue.displayedName": "最小级别", + "values.MinZoomOrUIValue.tooltip": "画面或UI缩至最小的级别。", + "values.ZoomLevelThatHidesUI.displayedName": "隐藏UI界面的缩放级别", + "values.ZoomLevelThatHidesUI.tooltip": "在这个缩放级别下,UI界面被隐藏。", + "values.CameraMovementSpeedValue.displayedName": "画面移动速度", + "values.CameraMovementSpeedValue.tooltip": "画面移动的速度", + "values.PresetZoomLevelValue.displayedName": "预设缩放级别", + "values.PresetZoomLevelValue.tooltip": "预设缩放级别的值", + "values.PresetUIScaleValue.displayedName": "预设UI的比例", + "values.PresetUIScaleValue.tooltip": "预设UI比例的值", - "consoleMessages.AutoZoomToCurrentMapSize.message": "自动缩放到地图大小 当前值为: {{value}}", - "consoleMessages.AnyButtonToCenterCamera.message": "按任意键画面居中 当前值为: {{value}}", - "consoleMessages.HideUIWithCertainZoom.message": "特定缩放隐藏UI界面”当前值为: {{value}}", - "consoleMessages.PresetOnLoadSaveFile.message": "加载预设值当前值为: {{value}}", - "consoleMessages.resetUIAndZoom.message": "现在UI缩放等级为 : {{ui}}\n现在画面缩放等级是: {{zoom}}", - "consoleMessages.resetZoom.message": "现在画面缩放等级是 : {{value}}", - "consoleMessages.resetUI.message": "现在UI缩放等级为 : {{value}}" -} \ No newline at end of file + "miscellaneous.subtitle.main.displayedName": "其他", + "miscellaneous.subtitle.main.tooltip": "其他选项。", + + "miscellaneous.SuppressControllerButtons.displayedName": "禁用控制器按键", + "miscellaneous.SuppressControllerButtons.tooltip": "禁用控制器按键。", + "miscellaneous.AutoZoomToCurrentMapSize.displayedName": "自动缩放至地图大小", + "miscellaneous.AutoZoomToCurrentMapSize.tooltip": "如果激活,它会自动缩放至地图大小。\n如果未激活,它将不会这样做。", + "miscellaneous.AnyButtonToCenterCamera.displayedName": "任意按钮重置相机", + "miscellaneous.AnyButtonToCenterCamera.tooltip": "如果启用,则相机会在按下任意键后重新对准中心。\n如果未启用,则需要按下“相机移动重置”键。", + "miscellaneous.HideUIWithCertainZoom.displayedName": "特定缩放隐藏UI界面", + "miscellaneous.HideUIWithCertainZoom.tooltip": "在某个缩放级别下,隐藏UI界面。", + "miscellaneous.PresetOnLoadSaveFile.displayedName": "加载预设值", + "miscellaneous.PresetOnLoadSaveFile.tooltip": "如果此项激活,会在文件读取时加载数值页面上的值", + "miscellaneous.ZoomAndUIControlEverywhere.displayedName": "在任何地方缩放", + "miscellaneous.ZoomAndUIControlEverywhere.tooltip": "在任何地方使用缩放功能。", + + "hudMessages.AutoZoomToCurrentMapSize.message": "自动缩放到地图大小 当前值为: {{value}}", + "hudMessages.AnyButtonToCenterCamera.message": "按任意键画面居中 当前值为: {{value}}", + "hudMessages.HideUIWithCertainZoom.message": "“特定缩放隐藏UI界面”当前值:{{value}}", + "hudMessages.PresetOnLoadSaveFile.message": "加载预设值当前值为: {{value}}", + + "consoleCommands.toggleAutoZoomMap.name": "toggle_Auto_Zoom_Map", + "consoleCommands.toggleAutoZoomMap.description": "\nUsage: toggle_Auto_Zoom_Map", + "consoleCommands.togglePressAnyKeyToResetCamera.name": "toggle_Press_Any_Key_To_Reset_Camera", + "consoleCommands.togglePressAnyKeyToResetCamera.description": "\nUsage: toggle_Press_Any_Key_To_Reset_Camera", + "consoleCommands.toggleHideWithUIWithCertainZoom.name": "toggle_Hide_With_UI_With_Certain_Zoom", + "consoleCommands.toggleHideWithUIWithCertainZoom.description": "\nUsage: toggle_Hide_With_UI_With_Certain_Zoom", + "consoleCommands.togglePresetOnLoadSaveFile.name": "toggle_Preset_On_Load_Save_File", + "consoleCommands.togglePresetOnLoadSaveFile.description": "\nUsage: toggle_Preset_On_Load_Save_File", + "consoleCommands.resetUIAndZoom.name": "reset_UI_and_Zoom", + "consoleCommands.resetUIAndZoom.description": "\nUsage: reset_UI_and_Zoom \n- ui: 刻度十进制.\n- 缩放: 十进制.", + "consoleCommands.resetUI.name": "reset_UI", + "consoleCommands.resetUI.description": "\nUsage: reset_UI \n- ui: 刻度十进制", + "consoleCommands.resetZoom.name": "reset_Zoom", + "consoleCommands.reset_Zoom.description": "\nUsage: reset_Zoom \n- 缩放: 十进制", + + "consoleMessages.AutoZoomToCurrentMapSize.message": "自动缩放到地图大小 当前值为: {{value}}", + "consoleMessages.AnyButtonToCenterCamera.message": "按任意键画面居中 当前值为: {{value}}", + "consoleMessages.HideUIWithCertainZoom.message": "特定缩放隐藏UI界面”当前值为: {{value}}", + "consoleMessages.PresetOnLoadSaveFile.message": "加载预设值当前值为: {{value}}", + "consoleMessages.resetUIAndZoom.message": "现在UI缩放等级为 : {{ui}}\n现在画面缩放等级是: {{zoom}}", + "consoleMessages.resetZoom.message": "现在画面缩放等级是 : {{value}}", + "consoleMessages.resetUI.message": "现在UI缩放等级为 : {{value}}" +} diff --git a/ZoomLevel/manifest.json b/ZoomLevel/manifest.json index d0bf033..e4ae747 100644 --- a/ZoomLevel/manifest.json +++ b/ZoomLevel/manifest.json @@ -1,17 +1,17 @@ { - "Name": "Zoom Level", - "Author": "thespbgamer", - "Version": "3.2.0", - "Description": "Change the Zoom and UI levels with a simple keybind. Now with camera position change!", - "UniqueID": "thespbgamer.ZoomLevel", - "EntryDll": "ZoomLevel.dll", - "MinimumApiVersion": "4.0.0", - "UpdateKeys": [ "GitHub:thespbgamer/ZoomLevel", "Nexus:7363", "CurseForge:714275" ], - "Dependencies": [ - { - "UniqueID": "spacechase0.GenericModConfigMenu", - "MinimumVersion": "1.11.2", - "IsRequired": false - } - ] -} \ No newline at end of file + "Name": "Zoom Level", + "Author": "thespbgamer", + "Version": "3.2.1", + "Description": "Change the Zoom and UI levels with a simple keybind. Now with camera position change!", + "UniqueID": "thespbgamer.ZoomLevel", + "EntryDll": "ZoomLevel.dll", + "MinimumApiVersion": "4.0.8", + "UpdateKeys": ["GitHub:thespbgamer/ZoomLevel", "Nexus:7363", "CurseForge:714275"], + "Dependencies": [ + { + "UniqueID": "spacechase0.GenericModConfigMenu", + "MinimumVersion": "1.12.0", + "IsRequired": false + } + ] +}