package
2.6.0-alpha1
Repository: https://github.com/fyne-io/fyne.git
Documentation: pkg.go.dev

# Functions

AddTranslations allows an app to load a bundle of translations.
AddTranslationsForLocale allows an app to load a bundle of translations for a specified locale.
AddTranslationsFS supports adding all translations in one calling using an `embed.FS` setup.
Localize asks the translation engine to translate a string, this behaves like the gettext "_" function.
LocalizeKey asks the translation engine for the translation with specific ID.
LocalizePlural asks the translation engine to translate a string from one of a number of plural forms.
LocalizePluralKey asks the translation engine for the translation with specific ID in plural form.
SystemLocale returns the primary locale on the current system.

# Variables

L is a shortcut to localize a string, similar to the gettext "_" function.
N is a shortcut to localize a string with plural forms, similar to the ngettext function.
X is a shortcut to get the localization of a string with specified key, similar to pgettext.
XN is a shortcut to get the localization plural form of a string with specified key, similar to npgettext.