lang
少于1分钟
将以下英文翻译为中文:
lang.FormatAccounting
https://gohugo.io/functions/lang/
FormatAccounting returns the currency representation of number for the given currency and precision for the current language in accounting notation.
The return value is formatted with at least two decimal places.
语法
lang.FormatAccounting PRECISION, CURRENCY, NUMBER
Examples
| |
lang.FormatCurrency
FormatCurrency returns the currency representation of number for the given currency and precision for the current language.
The return value is formatted with at least two decimal places.
语法
lang.FormatCurrency PRECISION, CURRENCY, NUMBER
Examples
| |
lang.FormatNumber
FormatNumber formats number with the given precision for the current language.
语法
lang.FormatNumber PRECISION, NUMBER
Examples
| |
lang.FormatNumberCustom
FormatNumberCustom formats a number with the given precision using the negative, decimal, and grouping options. The options parameter is a string consisting of <negative> <decimal> <grouping>. The default options value is - . ,.
Note that numbers are rounded up at 5 or greater. So, with precision set to 0, 1.5 becomes 2, and 1.4 becomes 1.
For a simpler function that adapts to the current language, see FormatNumber.
语法
lang.FormatNumberCustom PRECISION, NUMBER, OPTIONS
Examples
| |
lang.FormatPercent
FormatPercent formats number with the given precision for the current language. Note that the number is assumed to be a percentage.
语法
lang.FormatPercent PRECISION, NUMBER
Examples
| |
lang.Translate
Translate returns a translated string for id.
语法
lang.Translate ID, ARGS
Aliases
i18n, T