diff --git a/templates/blogs/details.rs.html b/templates/blogs/details.rs.html index 79814d52..42d097ce 100644 --- a/templates/blogs/details.rs.html +++ b/templates/blogs/details.rs.html @@ -22,13 +22,13 @@
@blog.summary
- @i18n!(ctx.1, "One author in this blog: ", "{0} authors in this blog: ", authors.len()) + @i18n!(ctx.1, "There's one author on this blog: ", "There are {0} authors on this blog: ", authors.len()) @for author in authors { @author.name(ctx.0) }
- @i18n!(ctx.1, "One article in this blog", "{0} articles in this blog", total_articles) + @i18n!(ctx.1, "There's one article on this blog", "There are {0} articles on this blog", total_articles)
@i18n!(ctx.1, "Be very careful, any action taken here can't be cancelled.")
+@i18n!(ctx.1, "Be very careful, any action taken here can't be reversed.")
} })