Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/anki/developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ This old style will still work for now, but will be removed in the future.
## Repeated Content

Sometimes you will need multiple translations that have some text shared between
them. For example, the search code has a list of separate error message, such as:
them. For example, the search code has a list of separate error messages, such as:

```properties
search-invalid-added = Invalid search: 'added:' must be followed by a positive number of days.
Expand All @@ -224,7 +224,7 @@ into a separate string:

```properties
search-invalid-search = Invalid search: { $reason }
search-invalid-added = 'added:' must be followed by a positive number reason.
search-invalid-added = 'added:' must be followed by a positive number of days.
search-invalid-edited = 'edited:' must be followed by a positive number of days.
```

Expand Down