We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5129e49 commit e15a367Copy full SHA for e15a367
.pdk/pdk/__init__.py
@@ -62,6 +62,16 @@ def watch(self):
62
chdir_Doc()
63
sh("make -e SPHINXOPTS=\"-D language='ko'\" htmllive")
64
65
+ def extract(self):
66
+ """Extract translatable messages into pot files."""
67
+ chdir_Doc()
68
+ sh("make gettext")
69
+
70
+ def update(self):
71
+ """Apply the updates from pot files to po files."""
72
73
+ sh("sphinx-intl update -p build/gettext -l ko")
74
75
76
def main():
77
fire.Fire(Command)
0 commit comments