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

33
pages.zh/common/svgo.md Normal file
View File

@@ -0,0 +1,33 @@
# svgo
> SVG 优化器:优化可缩放矢量图形文件。基于 Node.js。
> 它应用一系列转换规则(插件),可以单独切换。
> 更多信息:<https://github.com/svg/svgo>。
- 使用默认插件优化文件(覆盖原始文件):
`svgo {{test.svg}}`
- 优化文件并将结果保存到另一个文件:
`svgo {{test.svg}} -o {{test.min.svg}}`
- 优化目录中的所有 SVG 文件(覆盖原始文件):
`svgo -f {{path/to/directory/with/svg/files}}`
- 优化目录中的所有 SVG 文件并将结果文件保存到另一个目录:
`svgo -f {{path/to/input/directory}} -o {{path/to/output/directory}}`
- 优化从另一个命令传递的 SVG 内容,并将结果保存到文件:
`{{cat test.svg}} | svgo -i - -o {{test.min.svg}}`
- 优化文件并打印结果:
`svgo {{test.svg}} -o -`
- 显示可用插件:
`svgo --show-plugins`