chore(app): i18n sync (#17283)

This commit is contained in:
Adam 2026-03-13 06:48:38 -05:00 committed by GitHub
commit 05cb3c87ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
65 changed files with 1776 additions and 156 deletions

View file

@ -149,7 +149,7 @@ function ServerForm(props: ServerFormProps) {
<TextField
type="text"
label={language.t("dialog.server.add.username")}
placeholder="username"
placeholder={language.t("dialog.server.add.usernamePlaceholder")}
value={props.username}
disabled={props.busy}
onChange={props.onUsernameChange}
@ -158,7 +158,7 @@ function ServerForm(props: ServerFormProps) {
<TextField
type="password"
label={language.t("dialog.server.add.password")}
placeholder="password"
placeholder={language.t("dialog.server.add.passwordPlaceholder")}
value={props.password}
disabled={props.busy}
onChange={props.onPasswordChange}