mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 15:11:02 +00:00
15 lines
300 B
Go
15 lines
300 B
Go
package i18n
|
|
|
|
import (
|
|
"github.com/nicksnyder/go-i18n/v2/i18n"
|
|
"golang.org/x/text/language"
|
|
)
|
|
|
|
func addPolish(i18nObject *i18n.Bundle) error {
|
|
|
|
return i18nObject.AddMessages(language.Polish,
|
|
&i18n.Message{
|
|
ID: "NotEnoughSpace",
|
|
Other: "Za mało miejsca do wyświetlenia paneli",
|
|
})
|
|
}
|