apkleaks, arduino*, aspell, archwiki-rs, atktopbm, audtool, autojump, autopep8: add Korean translation (#13638)

This commit is contained in:
HoJeong Im
2024-09-09 23:09:37 +09:00
committed by GitHub
parent 73d0395892
commit 22bd4fc858
9 changed files with 213 additions and 0 deletions

24
pages.ko/common/aspell.md Normal file
View File

@@ -0,0 +1,24 @@
# aspell
> 대화형 맞춤법 검사기.
> 더 많은 정보: <http://aspell.net/>.
- 단일 파일의 철자 검사:
`aspell check {{경로/대상/파일}}`
- `stdin`에서 철자가 틀린 단어를 나열:
`cat {{경로/대상/파일}} | aspell list`
- 사용 가능한 사전적 언어 표시:
`aspell dicts`
- 다른 언어로 `aspell`을 실행 (두 글자 ISO 639 언어 코드 사용):
`aspell --lang={{cs}}`
- `stdin`에서 철자가 틀린 단어를 나열하고, 개인 단어 목록에서 단어를 무시:
`cat {{경로/대상/파일}} | aspell --personal={{personal-word-list.pws}} list`