Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:1128
forks:124
updated:1 de mayo de 2026, 20:52
Explorador de archivos
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.