Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/code-howtos/localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ To write a localized string in FXML file, prepend it with `%`, like in this code
* Use `%x`-variables where appropriate: `Localization.lang("Exported %0 entry(s).", number)` instead of `Localization.lang("Exported ") + number + Localization.lang(" entry(s).");`
* Use a full stop/period (".") to end full sentences
* For pluralization, use a combined form. E.g., `Localization.lang("checked %0 entry(s)")`.
See [Pluralization: A Guide to Localizing Plurals](https://phrase.com/blog/posts/pluralization/) for background information on why there is not only singular and plural world-wide.

## Checking for correctness

Expand Down