diff --git a/src/locales/en/translation.json b/src/locales/en/translation.json index b4427eae..20125efd 100644 --- a/src/locales/en/translation.json +++ b/src/locales/en/translation.json @@ -213,7 +213,7 @@ "artifact_name_placeholder": "Enter a name for the backup", "save_changes": "Save changes", "required_field": "This field is required", - "max_length_field": "This field must be less than {{lenght}} characters", + "max_length_field": "This field must be less than {{length}} characters", "freeze_backup": "Pin it so it's not overwritten by automatic backups", "unfreeze_backup": "Unpin it", "backup_frozen": "Backup pinned", diff --git a/src/locales/pt-BR/translation.json b/src/locales/pt-BR/translation.json index f6e153c9..58796d98 100644 --- a/src/locales/pt-BR/translation.json +++ b/src/locales/pt-BR/translation.json @@ -200,7 +200,7 @@ "artifact_name_placeholder": "Insira um nome para o backup", "save_changes": "Salvar mudanças", "required_field": "Este campo é obrigatório", - "max_length_field": "Este campo deve ter menos de {{lenght}} caracteres", + "max_length_field": "Este campo deve ter menos de {{length}} caracteres", "freeze_backup": "Fixar para não ser apagado por backups automáticos", "unfreeze_backup": "Remover dos fixados", "backup_frozen": "Backup fixado", diff --git a/src/renderer/src/pages/game-details/cloud-sync-rename-artifact-modal/cloud-sync-rename-artifact-modal.tsx b/src/renderer/src/pages/game-details/cloud-sync-rename-artifact-modal/cloud-sync-rename-artifact-modal.tsx index 53eb79b9..25525331 100644 --- a/src/renderer/src/pages/game-details/cloud-sync-rename-artifact-modal/cloud-sync-rename-artifact-modal.tsx +++ b/src/renderer/src/pages/game-details/cloud-sync-rename-artifact-modal/cloud-sync-rename-artifact-modal.tsx @@ -28,7 +28,7 @@ export function CloudSyncRenameArtifactModal({ label: yup .string() .required(t("required_field")) - .max(255, t("max_length_field", { lenght: 255 })), + .max(255, t("max_length_field", { length: 255 })), }); const { getGameArtifacts } = useContext(cloudSyncContext);