forked from Clones/Controlify
➕ Keyboard-like movement whitelist + toast on new servers (close #176)
This commit is contained in:
@ -7,6 +7,8 @@
|
||||
"controlify.gui.carousel.art_credit": "Controller art by %s.",
|
||||
|
||||
"controlify.gui.global_settings.title": "Global Settings",
|
||||
"controlify.gui.server_options": "Server Options",
|
||||
"controlify.gui.miscellaneous": "Miscellaneous",
|
||||
"controlify.gui.load_vibration_natives": "Load Natives",
|
||||
"controlify.gui.load_vibration_natives.tooltip": "If enabled, Controlify will download and load native libraries on launch to enable support for enhanced features such as vibration and gyro. The download process only happens once and only downloads for your specific OS. Disabling this will not delete the natives, it just won't load them.",
|
||||
"controlify.gui.load_vibration_natives.tooltip.warning": "You must enable vibration support per-controller as well as this setting.",
|
||||
@ -28,7 +30,11 @@
|
||||
"controlify.gui.out_of_focus_input": "Out of Focus Input",
|
||||
"controlify.gui.out_of_focus_input.tooltip": "If enabled, Controlify will still receive input even if the game window is not focused.",
|
||||
"controlify.gui.keyboard_movement": "Keyboard-like Movement",
|
||||
"controlify.gui.keyboard_movement.tooltip": "Emulates keyboard WASD when using analog inputs like a thumbstick. This also applies to boat handling. This may be required on servers with harsh anti-cheats.",
|
||||
"controlify.gui.keyboard_movement.tooltip": "Emulates keyboard WASD when using analog inputs like a thumbstick. This also applies to boat handling. This may be required on servers with harsh anti-cheats.\nEnabling this option bypasses the whitelist below and enables it for all servers.",
|
||||
"controlify.gui.add_server_to_keyboard_move_whitelist": "Add current server to whitelist",
|
||||
"controlify.gui.add_server_to_keyboard_move_whitelist.tooltip": "Adds the current server you're on to the keyboard-like movement list.",
|
||||
"controlify.gui.keyboard_movement_whitelist": "Keyboard-like Movement Whitelist",
|
||||
"controlify.gui.keyboard_movement_whitelist.tooltip": "A list of servers that will have keyboard-like movement enabled. This is a list of server IPs. Servers listed here will have keyboard-like movement even if the option above is disabled.",
|
||||
"controlify.gui.ingame_button_guide_scale": "Ingame Button Guide Scale",
|
||||
"controlify.gui.ingame_button_guide_scale.tooltip": "How big the ingame button guide is. This is a percentage of the currently selected GUI scale. 100% will match the usual scale.",
|
||||
"controlify.gui.ingame_button_guide_scale.tooltip.warning": "This may cause scaling issues that will make it to look bad at anything but 100%.",
|
||||
@ -177,6 +183,8 @@
|
||||
"controlify.toast.reach_around_disallowed.description": "This server has prohibited the use of reach-around block placement that you have enabled.",
|
||||
"controlify.toast.unmapped_joystick.title": "Joystick needs configuring!",
|
||||
"controlify.toast.unmapped_joystick.description": "%s is a joystick, meaning it has an abstract number of inputs, and controls cannot be automatically set. You must manually configure your controls in the settings. If this is a mistake, you are most likely on Linux!",
|
||||
"controlify.toast.new_server.title": "New server detected",
|
||||
"controlify.toast.new_server.description": "You're currently joining a new server. Make sure the server rules allows the analog movement of your controller. If not, you can add the server to the keyboard-like movement list in Controlify's global settings.",
|
||||
|
||||
"controlify.sdl2_onboarding.title": "Controlify Native Library",
|
||||
"controlify.sdl2_onboarding.message": "Many features in Controlify require an extra library that needs to be downloaded for your system. If you do not download this library, you will lose access to many features such as: controller vibration, gyroscope control, better controller identification. This is a seamless process and will only take a few seconds. If you choose no, you may change your mind later in Controlify settings, but you won't have access to these features in the meantime.",
|
||||
@ -242,6 +250,10 @@
|
||||
"controlify.binding.controlify.vmouse_lclick": "VMouse LClick",
|
||||
"controlify.binding.controlify.vmouse_rclick": "VMouse RClick",
|
||||
"controlify.binding.controlify.vmouse_shift_click": "VMouse Shift Click",
|
||||
"controlify.binding.controlify.vmouse_snap_up": "Snap Mouse Up",
|
||||
"controlify.binding.controlify.vmouse_snap_down": "Snap Mouse Down",
|
||||
"controlify.binding.controlify.vmouse_snap_left": "Snap Mouse Left",
|
||||
"controlify.binding.controlify.vmouse_snap_right": "Snap Mouse Right",
|
||||
"controlify.binding.controlify.vmouse_scroll_up": "VMouse Scroll Up",
|
||||
"controlify.binding.controlify.vmouse_scroll_down": "VMouse Scroll Down",
|
||||
"controlify.binding.controlify.vmouse_escape": "VMouse Key Escape",
|
||||
|
@ -85,6 +85,7 @@
|
||||
"feature.screenop.vanilla.TitleScreenMixin",
|
||||
"feature.screenop.vanilla.WorldSelectionListEntryMixin",
|
||||
"feature.settingsbutton.ControlsScreenMixin",
|
||||
"feature.util.ConnectScreenMixin",
|
||||
"feature.virtualmouse.GameRendererMixin",
|
||||
"feature.virtualmouse.InputConstantsMixin",
|
||||
"feature.virtualmouse.KeyboardHandlerAccessor",
|
||||
|
Reference in New Issue
Block a user