From 77d0ea69c8d854fbdfb16bff0785dbcf535f46e9 Mon Sep 17 00:00:00 2001 From: redlukas Date: Mon, 30 Jun 2025 12:36:54 +0200 Subject: [PATCH] Add closing backticks to core internalization doc (#2713) --- docs/internationalization/core.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/internationalization/core.md b/docs/internationalization/core.md index 69024bab..54b5d8d7 100644 --- a/docs/internationalization/core.md +++ b/docs/internationalization/core.md @@ -272,7 +272,7 @@ The translation strings for repairs issues are defined under the `issues` key. A // The title of the issue "title": "The tea is cold", // Translations for a fixable issue's repair flow, defined in the same way as translation for a configuration flow. - // Exactly one of `fix_flow` or `description. must be present. + // Exactly one of `fix_flow` or `description`. must be present. "fix_flow": { "abort": { "not_tea_time": "Can not re-heat the tea at this time" @@ -281,7 +281,7 @@ The translation strings for repairs issues are defined under the `issues` key. A }, "unfixable_problem": { "title": "This is not a fixable problem", - // Description of the issue, exactly one of `fix_flow` or `description. must be present. + // Description of the issue, exactly one of `fix_flow` or `description`. must be present. "description": "This issue can't be fixed by a flow." } }