/usr/share/locale 中缺少 es_AR 语言环境,是否可以生成?如何生成?
它应该与 es_ES 语言环境相同,但使用 ARS 而不是 EUR 作为货币。单独执行 es_AR.UTF-8 就足够了。
答案1
它只是包含文本文件的目录。您可以根据自己的喜好进行混合搭配。
您可以通过从另一个区域设置定义复制或自己编辑所有设置来创建副本en_ES
并进行编辑LC_CURRENCY
。设置已记录在案这里,在节中7.3.3 LC_MONETARY. 每行一个条目。
以德国(欧元货币)为例,#
表明我的解释的开始,但它不是文件的一部分:
EUR # International currency symbol and divider
Eu # Currency symbol (local) (I have honestly never seen this used in my life)
, # decimal point
. # digit group (e.g. thousands) separator
3;3 # grouping
# positive sign (here: none)
- # negatice sign
2 # number of fractional digits (internationally)
2 # number of fractional digits (local)
1 # currency symbol before non-negative value
1 # currency symbol and sign string are separated by a space from the non-negative value
1 # currency symbol before negative value
1 # currency symbol and sign string are separated by a space from the negative value
1 # sign precedes both quantity and symbol for non-negative numbers
1 # sign precedes both quantity and symbol for negative numbers
该文件不包含该网页上所示的两次数字配置。