Corrected grammar pointed out by translators (#514)
The user 'UniqueActive' pointed these issues out on Crowdin. Thank you!
This commit is contained in:
parent
723d2c4600
commit
38701c8a40
|
@ -13,7 +13,7 @@
|
||||||
<div class="banner">
|
<div class="banner">
|
||||||
<section class="stats">
|
<section class="stats">
|
||||||
<div>
|
<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>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<p>@Html(i18n!(ctx.1, "Who wrote <em>{0}</em> articles"; n_articles))</p>
|
<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")
|
@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>
|
<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>
|
<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>
|
<h2>@i18n!(ctx.1, "What is Plume?")</h2>
|
||||||
<main>
|
<main>
|
||||||
<p>@i18n!(ctx.1, "Plume is a decentralized blogging engine.")</p>
|
<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>
|
<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>
|
</main>
|
||||||
<a href="@uri!(user::new)">@i18n!(ctx.1, "Create your account")</a>
|
<a href="@uri!(user::new)">@i18n!(ctx.1, "Create your account")</a>
|
||||||
|
|
|
@ -98,7 +98,7 @@
|
||||||
}
|
}
|
||||||
</form>
|
</form>
|
||||||
<form class="reshares" action="@uri!(reshares::create: blog = &blog.fqn, slug = &article.slug)" method="POST">
|
<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
|
@n_reshares
|
||||||
</p>
|
</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)
|
@(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)
|
@:header(ctx, &user, follows, is_remote, remote_url)
|
||||||
|
|
||||||
@tabs(&[
|
@tabs(&[
|
||||||
|
|
Loading…
Reference in New Issue