mirror of
https://github.com/dlang/tools.git
synced 2025-04-26 13:10:36 +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)
|
||||
{
|
||||
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}.
|
||||
A huge thanks goes to the {nrContributors} contributor{nrControbutorsPlural} who made $(VER) possible."
|
||||
w.put("$(VER) comes with {changelogEntries} {bugzillaIssues} fixed Bugzilla issue{bugzillaIssuesPlural}.
|
||||
A huge thanks goes to the {nrContributors} contributor{nrContributorsPlural} who made $(VER) possible."
|
||||
.replace("{bugzillaIssues}", bugzillaIssues.text)
|
||||
.replace("{bugzillaIssuesPlural}", bugzillaIssues > 1 ? "s" : "")
|
||||
.replace("{bugzillaIssuesPlural}", bugzillaIssues != 1 ? "s" : "")
|
||||
.replace("{changelogEntries}", changelog)
|
||||
.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