From 8f6333029d9bb579cd4739e3865f3d7551990233 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20=C4=BDach?= <45913977+marek-lach@users.noreply.github.com> Date: Tue, 25 Dec 2018 14:55:18 +0000 Subject: [PATCH] Article detail text strings update (#382) --- templates/blogs/details.rs.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.")
} })