Files
core/homeassistant/components/system_bridge/strings.json
2025-10-28 10:33:10 +01:00

231 lines
6.8 KiB
JSON

{
"config": {
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"reauth_successful": "[%key:common::config_flow::abort::reauth_successful%]",
"unique_id_mismatch": "The identifier does not match the previous identifier",
"unknown": "[%key:common::config_flow::error::unknown%]",
"unsupported_version": "Your version of System Bridge is not supported. Please upgrade to the latest version."
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_auth": "[%key:common::config_flow::error::invalid_auth%]",
"unknown": "[%key:common::config_flow::error::unknown%]"
},
"flow_title": "{name}",
"step": {
"authenticate": {
"data": {
"token": "[%key:common::config_flow::data::api_token%]"
},
"description": "Please enter the token set in your configuration for {name}."
},
"user": {
"data": {
"host": "[%key:common::config_flow::data::host%]",
"port": "[%key:common::config_flow::data::port%]",
"token": "Token"
},
"description": "Please enter your connection details."
}
}
},
"entity": {
"binary_sensor": {
"camera_in_use": {
"name": "Camera in use"
},
"pending_reboot": {
"name": "Pending reboot"
}
},
"media_player": {
"media": {
"name": "Media"
}
},
"sensor": {
"amount_memory_used": {
"name": "Amount of memory used"
},
"battery_time_remaining": {
"name": "Battery time remaining"
},
"boot_time": {
"name": "Boot time"
},
"cpu_power_package": {
"name": "CPU package power"
},
"cpu_speed": {
"name": "CPU speed"
},
"cpu_temperature": {
"name": "CPU temperature"
},
"cpu_voltage": {
"name": "CPU voltage"
},
"displays_connected": {
"name": "Displays connected"
},
"kernel": {
"name": "Kernel"
},
"load": {
"name": "Load"
},
"memory_free": {
"name": "Memory free"
},
"memory_used": {
"name": "Memory used"
},
"os": {
"name": "Operating system"
},
"power_usage": {
"name": "Power usage"
},
"processes": {
"name": "Processes"
},
"version": {
"name": "Version"
},
"version_latest": {
"name": "Latest version"
}
}
},
"exceptions": {
"authentication_failed": {
"message": "Authentication failed for {title} ({host})"
},
"connection_failed": {
"message": "A connection error occurred for {title} ({host})"
},
"device_not_found": {
"message": "Could not find device {device}"
},
"no_data_received": {
"message": "No data received from {host}"
},
"process_not_found": {
"message": "Could not find process with ID {id}."
},
"timeout": {
"message": "A timeout occurred for {title} ({host})"
},
"unsupported_version": {
"message": "You are not running a supported version of System Bridge for {title} ({host}). Please upgrade to the latest version"
}
},
"issues": {
"unsupported_version": {
"description": "Your version of System Bridge for host {host} is not supported.\n\nPlease upgrade to the latest version.",
"title": "System Bridge upgrade required"
}
},
"services": {
"get_process_by_id": {
"description": "Gets a process by the ID.",
"fields": {
"bridge": {
"description": "[%key:component::system_bridge::services::open_path::fields::bridge::description%]",
"name": "[%key:component::system_bridge::services::open_path::fields::bridge::name%]"
},
"id": {
"description": "ID of the process to get.",
"name": "ID"
}
},
"name": "Get process by ID"
},
"get_processes_by_name": {
"description": "Gets a list of processes by the name.",
"fields": {
"bridge": {
"description": "[%key:component::system_bridge::services::open_path::fields::bridge::description%]",
"name": "[%key:component::system_bridge::services::open_path::fields::bridge::name%]"
},
"name": {
"description": "Name of the process to get.",
"name": "Name"
}
},
"name": "Get processes by name"
},
"open_path": {
"description": "Opens a file on the server using the default application.",
"fields": {
"bridge": {
"description": "The server to talk to.",
"name": "Bridge"
},
"path": {
"description": "Path to open.",
"name": "[%key:common::config_flow::data::path%]"
}
},
"name": "Open path"
},
"open_url": {
"description": "Opens a URL on the server using the default application.",
"fields": {
"bridge": {
"description": "[%key:component::system_bridge::services::open_path::fields::bridge::description%]",
"name": "[%key:component::system_bridge::services::open_path::fields::bridge::name%]"
},
"url": {
"description": "URL to open.",
"name": "[%key:common::config_flow::data::url%]"
}
},
"name": "Open URL"
},
"power_command": {
"description": "Sends a power command to the system.",
"fields": {
"bridge": {
"description": "[%key:component::system_bridge::services::send_keypress::fields::bridge::description%]",
"name": "[%key:component::system_bridge::services::open_path::fields::bridge::name%]"
},
"command": {
"description": "Command to call.",
"name": "Command"
}
},
"name": "Power command"
},
"send_keypress": {
"description": "Sends a keyboard keypress.",
"fields": {
"bridge": {
"description": "The server to send the command to.",
"name": "[%key:component::system_bridge::services::open_path::fields::bridge::name%]"
},
"key": {
"description": "Key to press. List available here: {syntax_keys_documentation_url}.",
"name": "Key"
}
},
"name": "Send keyboard keypress"
},
"send_text": {
"description": "Sends text for the server to type.",
"fields": {
"bridge": {
"description": "[%key:component::system_bridge::services::send_keypress::fields::bridge::description%]",
"name": "[%key:component::system_bridge::services::open_path::fields::bridge::name%]"
},
"text": {
"description": "Text to type.",
"name": "Text"
}
},
"name": "Send keyboard text"
}
}
}