mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-05 11:49:31 +00:00
7eef4643c8
Internationalization now uses proc-macros that generate the .pot file automatically.
10 lines
248 B
HTML
10 lines
248 B
HTML
@use templates::errors::base;
|
|
@use template_utils::*;
|
|
|
|
@(ctx: BaseContext)
|
|
|
|
@:base(ctx, "Unprocessable entity".to_string(), {
|
|
<h1>@i18n!(ctx.1, "The content you sent can't be processed.")</h1>
|
|
<p>@i18n!(ctx.1, "Maybe it was too long.")</p>
|
|
})
|
|
|