Skip to content

Commit

Permalink
i18n: use plural forms in English translation
Browse files Browse the repository at this point in the history
  • Loading branch information
naglis committed Feb 4, 2025
1 parent 0b84189 commit 8378bff
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/resources/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,12 @@
"annotations": {
"descAuthor": "by '{{- author}}'",
"descCreator": "created by",
"descList": "{{- count}} note(s) {{- creator}} will be imported into '{{- title}}' {{- author}}",
"descNewer": "Conflict(s): {{- count}} newer note(s)",
"descOlder": "Conflict(s): {{- count}} older note(s)",
"descList_one": "{{- count}} note {{- creator}} will be imported into '{{- title}}' {{- author}}",
"descList_other": "{{- count}} notes {{- creator}} will be imported into '{{- title}}' {{- author}}",
"descNewer_one": "Conflict(s): {{- count}} newer note",
"descNewer_other": "Conflict(s): {{- count}} newer notes",
"descOlder_one": "Conflict(s): {{- count}} older note",
"descOlder_other": "Conflict(s): {{- count}} older notes",
"descTitle": "Annotations title: ",
"importAll": "Import all notes",
"importWithoutConflict": "Import only conflict-free notes",
Expand All @@ -134,7 +137,8 @@
},
"cancel": "Cancel",
"deleteAnnotations": "Delete annotations?",
"deleteAnnotationsText": "Are you sure you want to delete {{- count}} note(s)?",
"deleteAnnotationsText_one": "Are you sure you want to delete {{- count}} note?",
"deleteAnnotationsText_other": "Are you sure you want to delete {{- count}} notes?",
"deleteFeed": "Delete catalog?",
"deletePublication": "Delete publication?",
"import": "Confirm import:",
Expand Down Expand Up @@ -432,7 +436,8 @@
},
"picker": {
"search": {
"founds": "{{- count}} match(es)",
"founds_one": "{{- count}} match",
"founds_other": "{{- count}} matches",
"input": "text to match",
"next": "Next",
"notFound": "no matches",
Expand Down

0 comments on commit 8378bff

Please sign in to comment.