2021-08-29 14:18:45 +02:00
|
|
|
#include <hex/api/content_registry.hpp>
|
2022-02-01 18:09:40 +01:00
|
|
|
#include <hex/api/localization.hpp>
|
2021-06-06 18:19:17 +02:00
|
|
|
|
|
|
|
namespace hex::plugin::windows {
|
|
|
|
|
|
|
|
void registerLanguageEnUS() {
|
|
|
|
ContentRegistry::Language::addLocalizations("en-US", {
|
2022-02-02 00:36:09 +01:00
|
|
|
{ "hex.windows.title_bar_button.feedback", "Leave Feedback" },
|
|
|
|
{ "hex.windows.title_bar_button.debug_build", "Debug build"},
|
|
|
|
|
2021-06-06 18:19:17 +02:00
|
|
|
{ "hex.windows.view.tty_console.name", "TTY Console" },
|
|
|
|
{ "hex.windows.view.tty_console.config", "Configuration"},
|
|
|
|
{ "hex.windows.view.tty_console.port", "Port" },
|
|
|
|
{ "hex.windows.view.tty_console.reload", "Reload" },
|
|
|
|
{ "hex.windows.view.tty_console.baud", "Baud rate" },
|
|
|
|
{ "hex.windows.view.tty_console.num_bits", "Data bits" },
|
|
|
|
{ "hex.windows.view.tty_console.stop_bits", "Stop bits" },
|
|
|
|
{ "hex.windows.view.tty_console.parity_bits", "Parity bit" },
|
|
|
|
{ "hex.windows.view.tty_console.cts", "Use CTS flow control" },
|
|
|
|
{ "hex.windows.view.tty_console.connect", "Connect" },
|
|
|
|
{ "hex.windows.view.tty_console.disconnect", "Disconnect" },
|
|
|
|
{ "hex.windows.view.tty_console.connect_error", "Failed to connect to COM Port!" },
|
2021-09-21 21:30:52 +02:00
|
|
|
{ "hex.windows.view.tty_console.no_available_port", "No valid COM port is selected or no COM port is available!" },
|
2021-06-06 18:19:17 +02:00
|
|
|
{ "hex.windows.view.tty_console.clear", "Clear" },
|
|
|
|
{ "hex.windows.view.tty_console.auto_scroll", "Auto scroll" },
|
|
|
|
{ "hex.windows.view.tty_console.console", "Console" },
|
|
|
|
{ "hex.windows.view.tty_console.send_etx", "Send ETX" },
|
|
|
|
{ "hex.windows.view.tty_console.send_eot", "Send EOT" },
|
2021-10-31 16:28:10 +01:00
|
|
|
{ "hex.windows.view.tty_console.send_sub", "Send SUB" },
|
2021-06-06 18:19:17 +02:00
|
|
|
|
2021-10-31 16:28:10 +01:00
|
|
|
{ "hex.builtin.setting.general.context_menu_entry", "Windows context menu entry" },
|
2021-06-06 18:19:17 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|