From 9eefe22635142be77d5d3524cb2c4cd4dba85408 Mon Sep 17 00:00:00 2001 From: GithubAnon0000 <160563432+GithubAnon0000@users.noreply.github.com> Date: Sat, 24 Jan 2026 13:08:52 +0000 Subject: [PATCH 1/2] FIX: string contained "reason" instead of "of days" Probably an oversight during writing those docs. `reason` makes sense as the variable here but not in the actual string that is inserted into the `reason` variable. --- src/anki/developers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/anki/developers.md b/src/anki/developers.md index 3a99a3d..24227ac 100644 --- a/src/anki/developers.md +++ b/src/anki/developers.md @@ -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. ``` From 5ad88c6c58c218a6f3234aac964670b2c9356eca Mon Sep 17 00:00:00 2001 From: GithubAnon0000 <160563432+GithubAnon0000@users.noreply.github.com> Date: Thu, 29 Jan 2026 18:47:16 +0000 Subject: [PATCH 2/2] FIX: typo (message -> messages) --- src/anki/developers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/anki/developers.md b/src/anki/developers.md index 24227ac..aec0fd9 100644 --- a/src/anki/developers.md +++ b/src/anki/developers.md @@ -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.