Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:1,128
forks:124
updated:2026년 5월 1일 20:52
파일 탐색기
SKILL.md
| name | translate |
| description | Translate web user interface strings from English to another language. |
Use this skill when asked to translate.
.po files are located in the src/nsupdate/locale directory.msgstr entries.msgid entries.msgstr entries..po file, always validate and compile it:
msgfmt --check-format -o /dev/null <path/to/file.po>msgfmt -o <path/to/file.mo> <path/to/file.po> (output .mo in the same directory as the .po file).mo file: msgunfmt <path/to/file.mo> | msgfmt --check-format -o /dev/null -glossaries/<TARGET_LANGUAGE>.md file to produce a consistent translation.scripts/find_missing.py <language_code> — finds all entries with empty msgstr in a .po file for the given language.
Use it to identify which strings still need translation.