Skip to content

Commit 2ad059d

Browse files
committed
Fix for Remember Me label
1 parent e1498b9 commit 2ad059d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

utils/i18n.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@ package utils
22

33
import (
44
"embed"
5+
"isley/logger"
6+
"path/filepath"
7+
"strings"
8+
"sync"
9+
510
"github.com/gin-contrib/sessions"
611
"github.com/gin-gonic/gin"
712
"github.com/nicksnyder/go-i18n/v2/i18n"
813
"golang.org/x/text/language"
914
"gopkg.in/yaml.v3"
10-
"isley/logger"
11-
"path/filepath"
12-
"strings"
13-
"sync"
1415
)
1516

1617
//go:embed locales/*.yaml
@@ -371,6 +372,7 @@ func (i *I18nManager) GetTranslations(lang string) map[string]string {
371372
"api_key_placeholder",
372373
"toggle_visibility",
373374
"copy",
375+
"remember_me",
374376
}
375377

376378
out := make(map[string]string)

0 commit comments

Comments
 (0)