l10n: fix two acronyms (MAC, URL) (#436)

* l10n: Mac Address -> MAC Address

* l10n: PVE addr -> URL
This commit is contained in:
Integral
2024-07-01 14:56:38 +00:00
committed by GitHub
parent 63e1bec2b9
commit c79bbc5756

View File

@@ -423,7 +423,7 @@ class _ServerEditPageState extends State<ServerEditPage> {
type: TextInputType.url, type: TextInputType.url,
icon: MingCute.web_line, icon: MingCute.web_line,
node: node, node: node,
label: l10n.addr, label: 'URL',
hint: addr, hint: addr,
), ),
), ),
@@ -486,7 +486,7 @@ class _ServerEditPageState extends State<ServerEditPage> {
Input( Input(
controller: _wolMacCtrl, controller: _wolMacCtrl,
type: TextInputType.text, type: TextInputType.text,
label: 'Mac ${l10n.addr}', label: 'MAC ${l10n.addr}',
icon: Icons.computer, icon: Icons.computer,
hint: '00:11:22:33:44:55', hint: '00:11:22:33:44:55',
), ),