mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 15:11:02 +00:00
17 lines
371 B
Go
17 lines
371 B
Go
package i18n
|
|
|
|
import (
|
|
"github.com/nicksnyder/go-i18n/v2/i18n"
|
|
"golang.org/x/text/language"
|
|
)
|
|
|
|
// addDutch will add all dutch translations
|
|
func addDutch(i18nObject *i18n.Bundle) error {
|
|
|
|
// add the translations
|
|
return i18nObject.AddMessages(language.Dutch,
|
|
&i18n.Message{
|
|
ID: "NotEnoughSpace",
|
|
Other: "Niet genoeg ruimte om de panelen te renderen",
|
|
})
|
|
}
|