Corrected grammar pointed out by translators #514

Merged
marek-lach merged 7 commits from Corrected-grammar-pointed-out-by-translators into master 5 years ago

@ -13,7 +13,7 @@
<div class="banner">
<section class="stats">
<div>
<p>@Html(i18n!(ctx.1, "Home to <em>{0}</em> users"; n_users))</p>
<p>@Html(i18n!(ctx.1, "Home to <em>{0}</em> people"; n_users))</p>
</div>
igalic commented 5 years ago (Migrated from github.com)
Review

👍

would be easier to remember if n_users was n_people

👍 would be easier to remember if `n_users` was `n_people`
marek-lach commented 5 years ago (Migrated from github.com)
Review

It's honestly not a big problem. I think from a programmer's perspective, having the declaration as users is easier to understand in code maybe?

It's honestly not a big problem. I think from a programmer's perspective, having the declaration as `users` is easier to understand in code maybe?
igalic commented 5 years ago (Migrated from github.com)
Review

true, true…

true, true…
<div>
<p>@Html(i18n!(ctx.1, "Who wrote <em>{0}</em> articles"; n_articles))</p>

@ -27,7 +27,7 @@
}
@i18n!(ctx.1, "Allow anyone to register here")
<label for="short_description">@i18n!(ctx.1, "Short description - byline")<small>@i18n!(ctx.1, "Markdown syntax is supported")</small></label>
<label for="short_description">@i18n!(ctx.1, "Short description")<small>@i18n!(ctx.1, "Markdown syntax is supported")</small></label>
<textarea id="short_description" name="short_description">@Html(form.short_description)</textarea>
<label for="long_description">@i18n!(ctx.1, "Long description")<small>@i18n!(ctx.1, "Markdown syntax is supported")</small></label>

@ -10,7 +10,7 @@
<h2>@i18n!(ctx.1, "What is Plume?")</h2>
<main>
<p>@i18n!(ctx.1, "Plume is a decentralized blogging engine.")</p>
<p>@i18n!(ctx.1, "Authors can manage various blogs, each as an unique website.")</p>
<p>@i18n!(ctx.1, "Authors can manage multiple blogs, each as its own website.")</p>
<p>@i18n!(ctx.1, "Articles are also visible on other Plume instances, and you can interact with them directly from other platforms like Mastodon.")</p>
</main>
<a href="@uri!(user::new)">@i18n!(ctx.1, "Create your account")</a>

@ -98,7 +98,7 @@
}
</form>
<form class="reshares" action="@uri!(reshares::create: blog = &blog.fqn, slug = &article.slug)" method="POST">
<p aria-label="@i18n!(ctx.1, "One boost", "{0} boost"; n_reshares)" title="@i18n!(ctx.1, "One boost", "{0} boosts"; n_reshares)">
<p aria-label="@i18n!(ctx.1, "One boost", "{0} boosts"; n_reshares)" title="@i18n!(ctx.1, "One boost", "{0} boosts"; n_reshares)">
@n_reshares
</p>

@ -5,7 +5,7 @@
@(ctx: BaseContext, user: User, follows: bool, is_remote: bool, remote_url: String, followed: Vec<User>, page: i32, n_pages: i32)
@:base(ctx, i18n!(ctx.1, "{0}'s subscriptions'"; user.name()), {}, {}, {
@:base(ctx, i18n!(ctx.1, "{0}'s subscriptions"; user.name()), {}, {}, {
@:header(ctx, &user, follows, is_remote, remote_url)
@tabs(&[

Loading…
Cancel
Save