mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
12 lines
235 B
Go
12 lines
235 B
Go
package fake
|
|
|
|
// Currency generates currency name
|
|
func Currency() string {
|
|
return lookup(lang, "currencies", true)
|
|
}
|
|
|
|
// CurrencyCode generates currency code
|
|
func CurrencyCode() string {
|
|
return lookup(lang, "currency_codes", true)
|
|
}
|