mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-22 03:21:01 +00:00
re-add empty strings in translation (#682)
This commit is contained in:
parent
028c4fdbc6
commit
dd6d39135e
2 changed files with 5 additions and 5 deletions
|
@ -26,7 +26,7 @@
|
|||
.input_type("date")
|
||||
.set_prop("max", now)
|
||||
.html(ctx.1))
|
||||
@(Input::new("before", i18n!(ctx.1, ""))
|
||||
@(Input::new("before", i18n!(ctx.1, "To this date"))
|
||||
.input_type("date")
|
||||
.set_prop("max", now)
|
||||
.html(ctx.1))
|
||||
|
|
|
@ -15,23 +15,23 @@
|
|||
<p class="error">@errs[0].message.as_ref().unwrap_or(&Cow::from("Unknown error"))</p>
|
||||
}
|
||||
|
||||
@(Input::new("username", i18n!(ctx.1, ""))
|
||||
@(Input::new("username", i18n!(ctx.1, "Username"))
|
||||
.default(&form.username)
|
||||
.error(&errors)
|
||||
.set_prop("minlength", 1)
|
||||
.html(ctx.1))
|
||||
@(Input::new("email", i18n!(ctx.1, ""))
|
||||
@(Input::new("email", i18n!(ctx.1, "Email"))
|
||||
.default(&form.email)
|
||||
.error(&errors)
|
||||
.set_prop("minlength", 1)
|
||||
.html(ctx.1))
|
||||
@(Input::new("password", i18n!(ctx.1, ""))
|
||||
@(Input::new("password", i18n!(ctx.1, "Password"))
|
||||
.default(&form.password)
|
||||
.error(&errors)
|
||||
.set_prop("minlength", 8)
|
||||
.input_type("password")
|
||||
.html(ctx.1))
|
||||
@(Input::new("password_confirmation", i18n!(ctx.1, ""))
|
||||
@(Input::new("password_confirmation", i18n!(ctx.1, "Password confirmation"))
|
||||
.default(&form.password_confirmation)
|
||||
.error(&errors)
|
||||
.set_prop("minlength", 8)
|
||||
|
|
Loading…
Reference in a new issue