文本方向和多元化数据集
Text direction and pluralization dataset
我正在 Ruby Rails 项目上工作,我需要在其中获取不同语言的文本方向和复数形式。类似于:
en: { plural_keys: [:one, :other], text_dir: :left_to_right },
sk: { plural_keys: [:one, :few, :other], text_dir: :left_to_right },
...
有没有我可以从中提取此信息的免费数据集?
我找到了CLDR - Unicode Common Locale Data Repository which contains all data I need. It is also available as the twitter_cldr gem。
我正在 Ruby Rails 项目上工作,我需要在其中获取不同语言的文本方向和复数形式。类似于:
en: { plural_keys: [:one, :other], text_dir: :left_to_right },
sk: { plural_keys: [:one, :few, :other], text_dir: :left_to_right },
...
有没有我可以从中提取此信息的免费数据集?
我找到了CLDR - Unicode Common Locale Data Repository which contains all data I need. It is also available as the twitter_cldr gem。