用法:
ngettext(singular, plural, n)
对消息 ID 执行 plural-forms 查找。
singular
用作在目录中查找的消息 ID,而n
用于确定使用哪种复数形式。返回的消息字符串是一个 Unicode 字符串。如果在目录中找不到消息 ID,并且指定了回退,则请求将转发到回退的
ngettext()
方法。否则,当n
为 1 时,返回singular
,在所有其他情况下返回plural
。这是一个例子:
n = len(os.listdir('.')) cat = GNUTranslations(somefile) message = cat.ngettext( 'There is %(num)d file in this directory', 'There are %(num)d files in this directory', n) % {'num': n}
相关用法
- Python gettext.NullTranslations.install用法及代码示例
- Python PIL getbands() and getextrema()用法及代码示例
- Python PIL getpixel()用法及代码示例
- Python getattr()用法及代码示例
- Python OpenCV getTrackbarPos()用法及代码示例
- Python OpenCV getgaussiankernel()用法及代码示例
- Python OpenCV getRotationMatrix2D()用法及代码示例
- Python PIL getbands()用法及代码示例
- Python PIL getpalette()用法及代码示例
- Python PIL getcolors()用法及代码示例
- Python genericalias.__parameters__用法及代码示例
- Python gzip.compress(s)用法及代码示例
- Python globals()用法及代码示例
- Python numpy string greater_equal()用法及代码示例
- Python gcd()用法及代码示例
- Python graphlib.TopologicalSorter用法及代码示例
- Python graphlib.TopologicalSorter.static_order用法及代码示例
- Python Tkinter grid()用法及代码示例
- Python gc.is_finalized用法及代码示例
- Python gc.is_tracked用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 gettext.GNUTranslations.ngettext。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。