blob: 00322cf897176f53ce421c37928c610ccce54a3b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import type { BaseTranslation } from "../../i18n-types"
const en_reset_password: BaseTranslation = {
requestAPasswordReset: "Request a password reset",
signIntoYourAccount: "sign into your account",
requestSentMessage: "If we find your email address in our systems, you will receive an email with instructions on how to set a new password for your account."
}
export default en_reset_password
|