summaryrefslogtreecommitdiffstats
path: root/cmd/gotop/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/gotop/main.go')
-rw-r--r--cmd/gotop/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/gotop/main.go b/cmd/gotop/main.go
index 5feb075..5e1cd09 100644
--- a/cmd/gotop/main.go
+++ b/cmd/gotop/main.go
@@ -30,6 +30,7 @@ import (
"github.com/xxxserxxx/gotop/v4/devices"
"github.com/xxxserxxx/gotop/v4/layout"
"github.com/xxxserxxx/gotop/v4/logging"
+ "github.com/xxxserxxx/gotop/v4/translations"
w "github.com/xxxserxxx/gotop/v4/widgets"
)
@@ -354,7 +355,7 @@ func main() {
}
func run() int {
- ling, err := lingo.New("en_US", "translations", nil)
+ ling, err := lingo.New("en_US", "translations", translations.AssetFile())
if err != nil {
fmt.Printf("failed to load language files: %s\n", err)
return 2