add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/enca.md Normal file
View File

@@ -0,0 +1,20 @@
# enca
> 检测和转换文本文件的编码。
> 更多信息:<https://github.com/nijel/enca>。
- 根据系统的区域设置检测文件编码:
`enca {{path/to/file1 path/to/file2 ...}}`
- 指定POSIX/C区域格式的语言例如zh_CNen_US检测文件编码
`enca -L {{language}} {{path/to/file1 path/to/file2 ...}}`
- 将文件转换为特定编码:
`enca -L {{language}} -x {{to_encoding}} {{path/to/file1 path/to/file2 ...}}`
- 使用不同的编码创建现有文件的副本:
`enca -L {{language}} -x {{to_encoding}} < {{original_file}} > {{new_file}}`