s/Server address/Server name/

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2020-03-16 11:45:51 +00:00
parent ee1659625c
commit 6f27c4c17a
2 changed files with 4 additions and 4 deletions

View file

@ -53,7 +53,7 @@ const validServer = withValidation({
{
key: "required",
test: async ({ value }) => !!value,
invalid: () => _t("Enter a server address"),
invalid: () => _t("Enter a server name"),
}, {
key: "available",
final: true,
@ -216,7 +216,7 @@ const NetworkDropdown = ({onOptionChange, protocols = {}, selectedServerName, se
description: _t("Enter the address of a new server you want to explore."),
button: _t("Add"),
hasCancel: false,
placeholder: _t("Server address"),
placeholder: _t("Server name"),
validator: validServer,
});