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

View File

@@ -0,0 +1,36 @@
# hledger 账户
> 列出账户名称。
> 更多信息:<https://hledger.org/hledger.html#accounts>。
- 显示默认日记文件中使用或声明的所有账户:
`hledger accounts`
- 显示交易中使用的账户:
`hledger accounts --used`
- 显示通过账户指令声明的账户:
`hledger accounts --declared`
- 向日记添加新的账户指令,针对使用但未声明的账户:
`hledger accounts --undeclared --directives >> {{2024-accounts.journal}}`
- 显示名称中包含 `asset` 的账户及其声明/推断的类型:
`hledger accounts asset --types`
- 显示 `Asset` 类型的账户:
`hledger accounts type:A`
- 显示账户层级的前两级:
`hledger accounts --tree --depth 2`
- 上述命令的简写形式:
`hledger acc -t -2`