Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make punctuation marks consistent for singular & plural strings #3462

Merged
merged 5 commits into from
Dec 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions frontend/src/locales/scripts/en.json5
Original file line number Diff line number Diff line change
Expand Up @@ -804,24 +804,24 @@
source: {
audio: {
zero: "No audio files provided by this source",
count: "{count} audio file provided by this source.|{count} audio files provided by this source",
count: "{count} audio file provided by this source|{count} audio files provided by this source",
countMore: "Over {count} audio files provided by this source",
},
image: {
zero: "No images provided by this source",
count: "{count} image provided by this source.|{count} images provided by this source",
count: "{count} image provided by this source|{count} images provided by this source",
countMore: "Over {count} images provided by this source",
},
},
tag: {
audio: {
zero: "No audio files with the selected tag",
count: "{count} audio file with the selected tag.|{count} audio files with the selected tag",
count: "{count} audio file with the selected tag|{count} audio files with the selected tag",
countMore: "Over {count} audio files with the selected tag",
},
image: {
zero: "No images with the selected tag",
count: "{count} image with the selected tag.|{count} images with the selected tag",
count: "{count} image with the selected tag|{count} images with the selected tag",
countMore: "Over {count} images with the selected tag",
},
},
Expand Down