From 5255499c5bb1d15dc3ff5452e3826aaa25472740 Mon Sep 17 00:00:00 2001 From: Nils Lindemann Date: Wed, 3 Sep 2025 15:29:27 +0200 Subject: [PATCH] Clarify an instruction Also cleanup for the abbr issue, not directly related. --- scripts/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/translate.py b/scripts/translate.py index 8ede8c9ec..c62f1ee98 100644 --- a/scripts/translate.py +++ b/scripts/translate.py @@ -31,7 +31,7 @@ general_prompt = """ 2) Furthermore, text surrounded by `«««` and `»»»` is a BLOCK OF LITERAL TEXT which spans multiple lines. To get its content, dedent all lines of the block until the `«««` and `»»»` are at column zero, then remove the newline (`\n`) after the `«««` and the newline before the `»»»`. The `«««` and the `»»»` are not part of the literal text block, they are the meta characters denoting it. -3) If you see backticks inside literal text – inside `«` and `»` – or inside blocks of literal text – inside `«««` and `»»»` – then interpret them as literal characters, do NOT interpret them as meta characters. +3) If you see backticks or any other quotes inside literal text – inside `«` and `»` – or inside blocks of literal text – inside `«««` and `»»»` – then interpret them as literal characters, do NOT interpret them as meta characters. The above rules are in effect now.