Merge pull request #425 from zjs81/tcp-host

reword tcp host
This commit is contained in:
zjs81
2026-05-08 13:39:25 -07:00
committed by GitHub
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -52,8 +52,8 @@
"connectionChoiceBluetoothLabel": "Bluetooth", "connectionChoiceBluetoothLabel": "Bluetooth",
"connectionChoiceTcpLabel": "TCP", "connectionChoiceTcpLabel": "TCP",
"tcpScreenTitle": "Connect over TCP", "tcpScreenTitle": "Connect over TCP",
"tcpHostLabel": "IP Address", "tcpHostLabel": "Endpoint",
"tcpHostHint": "192.168.40.10", "tcpHostHint": "192.168.40.10 / example.com",
"tcpPortLabel": "Port", "tcpPortLabel": "Port",
"tcpPortHint": "5000", "tcpPortHint": "5000",
"tcpStatus_notConnected": "Enter endpoint and connect", "tcpStatus_notConnected": "Enter endpoint and connect",
@@ -65,7 +65,7 @@
} }
} }
}, },
"tcpErrorHostRequired": "IP address is required.", "tcpErrorHostRequired": "Host is required.",
"tcpErrorPortInvalid": "Port must be between 1 and 65535.", "tcpErrorPortInvalid": "Port must be between 1 and 65535.",
"tcpErrorUnsupported": "TCP transport is not supported on this platform.", "tcpErrorUnsupported": "TCP transport is not supported on this platform.",
"tcpErrorTimedOut": "TCP connection timed out.", "tcpErrorTimedOut": "TCP connection timed out.",
+3 -3
View File
@@ -361,13 +361,13 @@ abstract class AppLocalizations {
/// No description provided for @tcpHostLabel. /// No description provided for @tcpHostLabel.
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'IP Address'** /// **'Endpoint'**
String get tcpHostLabel; String get tcpHostLabel;
/// No description provided for @tcpHostHint. /// No description provided for @tcpHostHint.
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'192.168.40.10'** /// **'192.168.40.10 / example.com'**
String get tcpHostHint; String get tcpHostHint;
/// No description provided for @tcpPortLabel. /// No description provided for @tcpPortLabel.
@@ -397,7 +397,7 @@ abstract class AppLocalizations {
/// No description provided for @tcpErrorHostRequired. /// No description provided for @tcpErrorHostRequired.
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'IP address is required.'** /// **'Host is required.'**
String get tcpErrorHostRequired; String get tcpErrorHostRequired;
/// No description provided for @tcpErrorPortInvalid. /// No description provided for @tcpErrorPortInvalid.
+3 -3
View File
@@ -127,10 +127,10 @@ class AppLocalizationsEn extends AppLocalizations {
String get tcpScreenTitle => 'Connect over TCP'; String get tcpScreenTitle => 'Connect over TCP';
@override @override
String get tcpHostLabel => 'IP Address'; String get tcpHostLabel => 'Endpoint';
@override @override
String get tcpHostHint => '192.168.40.10'; String get tcpHostHint => '192.168.40.10 / example.com';
@override @override
String get tcpPortLabel => 'Port'; String get tcpPortLabel => 'Port';
@@ -147,7 +147,7 @@ class AppLocalizationsEn extends AppLocalizations {
} }
@override @override
String get tcpErrorHostRequired => 'IP address is required.'; String get tcpErrorHostRequired => 'Host is required.';
@override @override
String get tcpErrorPortInvalid => 'Port must be between 1 and 65535.'; String get tcpErrorPortInvalid => 'Port must be between 1 and 65535.';