mirror of
https://github.com/dlang/tools.git
synced 2025-04-27 13:40:22 +03:00
Fix typos in the changed summary text
This commit is contained in:
parent
c02fb3fa26
commit
a740b9262e
1 changed files with 4 additions and 4 deletions
|
@ -506,13 +506,13 @@ Please supply a bugzilla version
|
||||||
with(changelogStats)
|
with(changelogStats)
|
||||||
{
|
{
|
||||||
auto changelog = changelogEntries > 0 ? "%d major change%s and".format(changelogEntries, changelogEntries > 1 ? "s" : "") : "";
|
auto changelog = changelogEntries > 0 ? "%d major change%s and".format(changelogEntries, changelogEntries > 1 ? "s" : "") : "";
|
||||||
w.put("$(VER) comes with {changelogEntries} {bugzillaIssues} fixed Bugzilla issue{bugzillaIssuesPluaral}.
|
w.put("$(VER) comes with {changelogEntries} {bugzillaIssues} fixed Bugzilla issue{bugzillaIssuesPlural}.
|
||||||
A huge thanks goes to the {nrContributors} contributor{nrControbutorsPlural} who made $(VER) possible."
|
A huge thanks goes to the {nrContributors} contributor{nrContributorsPlural} who made $(VER) possible."
|
||||||
.replace("{bugzillaIssues}", bugzillaIssues.text)
|
.replace("{bugzillaIssues}", bugzillaIssues.text)
|
||||||
.replace("{bugzillaIssuesPlural}", bugzillaIssues > 1 ? "s" : "")
|
.replace("{bugzillaIssuesPlural}", bugzillaIssues != 1 ? "s" : "")
|
||||||
.replace("{changelogEntries}", changelog)
|
.replace("{changelogEntries}", changelog)
|
||||||
.replace("{nrContributors}", contributors.text)
|
.replace("{nrContributors}", contributors.text)
|
||||||
.replace("{nrContributorsPlural}", contributors > 1 ? "s" : "")
|
.replace("{nrContributorsPlural}", contributors != 1 ? "s" : "")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue