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

24
pages.zh/common/brotli.md Normal file
View File

@@ -0,0 +1,24 @@
# brotli
> 使用 Brotli 压缩进行文件的压缩/解压缩。
> 更多信息:<https://github.com/google/brotli>。
- 压缩文件,在文件旁边创建一个压缩版本:
`brotli {{path/to/file}}`
- [d]解压缩文件,在文件旁边创建一个未压缩版本:
`brotli -d {{path/to/file.br}}`
- 压缩文件并指定 [o]utput 文件名:
`brotli {{path/to/file}} -o {{path/to/compressed_output_file.br}}`
- [d]解压缩 Brotli 文件并指定 [o]utput 文件名:
`brotli -d {{path/to/compressed_file.br}} -o {{path/to/output_file}}`
- 指定压缩质量1=最快最差11=最慢(最好)):
`brotli -q {{11}} {{path/to/file}} -o {{path/to/compressed_output_file.br}}`