Skip to content

Commit 4695a29

Browse files
committed
feat: Add aider translation support
1 parent c4c0d58 commit 4695a29

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ venv/
1010
ENV/
1111
env.bak/
1212
venv.bak/
13+
.aider*

.scripts/intercept.py

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# /// script
2+
# dependencies = [
3+
# "polib",
4+
# ]
5+
# ///
6+
import argparse
7+
from pathlib import Path
8+
9+
import polib
10+
11+
12+
def get_pofile_from_path(path: Path) -> polib.POFile:
13+
if not path.exists():
14+
raise ValueError(f"The path '{path.absolute()}' does not exist!")
15+
16+
if not (path.is_file() and path.suffix == ".po"):
17+
raise ValueError(f"{path} doesn't seem to be a .po file")
18+
19+
try:
20+
pofile = polib.pofile(path)
21+
except OSError:
22+
raise ValueError(f"{path} doesn't seem to be a .po file")
23+
return pofile
24+
25+
26+
if __name__ == '__main__':
27+
parser = argparse.ArgumentParser()
28+
parser.add_argument(
29+
"path",
30+
help="the path of a PO file",
31+
)
32+
parser.add_argument("-n", '--occurrence_number', type=int, default=1)
33+
args = parser.parse_args()
34+
path = Path(args.path).resolve()
35+
pofile = get_pofile_from_path(path)
36+
occurrence_number = args.occurrence_number
37+
38+
for entry in pofile:
39+
if not any(path.stem in p and int(n) == occurrence_number for p, n in entry.occurrences):
40+
continue
41+
print(entry.msgid)
42+
break

Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ $(VENV)/bin/sphinx-lint: $(VENV)/bin/activate
100100
$(VENV)/bin/blurb: $(VENV)/bin/activate
101101
. $(VENV)/bin/activate; python3 -m pip install blurb
102102

103+
$(VENV)/bin/aider: $(VENV)/bin/activate
104+
. $(VENV)/bin/activate; python3 -m pip install aider-chat
105+
103106

104107
.PHONY: upgrade_venv
105108
upgrade_venv: $(VENV)/bin/activate ## Upgrade the venv that compiles the doc
@@ -156,6 +159,16 @@ rm_cpython: ## Remove cloned cpython repo
156159
lint: $(VENV)/bin/sphinx-lint ## Run sphinx-lint
157160
$(VENV)/bin/sphinx-lint --enable default-role
158161

162+
.PHONY: translate
163+
translate: $(VENV)/bin/aider ## Run translation with aider. Usage: make translate FILE=path/to/file.po LINE=number
164+
@if [ -z "$(FILE)" ] || [ -z "$(LINE)" ]; then \
165+
echo "\x1B[1;31mError: Both FILE and LINE arguments are required.\x1B[0m"; \
166+
echo "Usage: make translate FILE=path/to/file.po LINE=number"; \
167+
exit 1; \
168+
fi
169+
$(eval MESSAGE=$(shell python3 .scripts/intercept.py $(FILE) -n $(LINE)))
170+
aider --no-auto-commits --message 'Translate the following Python documentation into Tranditional Chinese for $(FILE):$(LINE) with message $(MESSAGE). Ensure that the translation is accurate and uses appropriate technical terminology. The output must be in Traditional Chinese. Pay careful attention to context, idiomatic expressions, and any specialized vocabulary related to Python programming. Maintain the structure and format of the original documentation as much as possible to ensure clarity and usability for readers.' $(FILE)
171+
159172
# This allows us to accept extra arguments (by doing nothing when we get a job that doesn't match, rather than throwing an error)
160173
%:
161174
@:

0 commit comments

Comments
 (0)