mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-21 06:19:10 +00:00
Fixed string
This commit is contained in:
parent
6b51102dd2
commit
4bb24b98b5
3 changed files with 5 additions and 3 deletions
|
@ -92,5 +92,6 @@
|
||||||
"list": "List",
|
"list": "List",
|
||||||
"ipAddress": "IP address",
|
"ipAddress": "IP address",
|
||||||
"ipNotValid": "IP address not valid",
|
"ipNotValid": "IP address not valid",
|
||||||
"clientAddedSuccessfully": "Client added to the list successfully"
|
"clientAddedSuccessfully": "Client added to the list successfully",
|
||||||
|
"addingClient": "Adding client..."
|
||||||
}
|
}
|
|
@ -92,5 +92,6 @@
|
||||||
"list": "Lista",
|
"list": "Lista",
|
||||||
"ipAddress": "Dirección IP",
|
"ipAddress": "Dirección IP",
|
||||||
"ipNotValid": "Dirección IP no válida",
|
"ipNotValid": "Dirección IP no válida",
|
||||||
"clientAddedSuccessfully": "Cliente añadido a la lista satisfactoriamente"
|
"clientAddedSuccessfully": "Cliente añadido a la lista satisfactoriamente",
|
||||||
|
"addingClient": "Añadiendo cliente..."
|
||||||
}
|
}
|
|
@ -41,7 +41,7 @@ class ClientsFab extends StatelessWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
ProcessModal processModal = ProcessModal(context: context);
|
ProcessModal processModal = ProcessModal(context: context);
|
||||||
processModal.open(AppLocalizations.of(context)!.removingClient);
|
processModal.open(AppLocalizations.of(context)!.addingClient);
|
||||||
|
|
||||||
final result = await requestAllowedBlockedClientsHosts(serversProvider.selectedServer!, body);
|
final result = await requestAllowedBlockedClientsHosts(serversProvider.selectedServer!, body);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue