mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 15:10:23 +00:00
Web UIs: remove duplication of supported languages
Fixes #1660 Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
parent
d650defa08
commit
39cf9f6943
1 changed files with 6 additions and 6 deletions
|
@ -193,7 +193,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
.use(i18nextBrowserLanguageDetector)
|
||||
.init({
|
||||
debug: false,
|
||||
supportedLngs: ["en", "it"],
|
||||
supportedLngs: Object.keys(lngs),
|
||||
fallbackLng: 'en',
|
||||
load: 'languageOnly',
|
||||
backend: {
|
||||
|
@ -795,12 +795,12 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title></title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title></title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="robots" content="noindex">
|
||||
<link rel="shortcut icon" href="{{.StaticURL}}{{.Branding.FaviconPath}}" />
|
||||
<link rel="shortcut icon" href="{{.StaticURL}}{{.Branding.FaviconPath}}" />
|
||||
{{- template "fonts" . }}
|
||||
{{- block "extra_css" .}}{{- end}}
|
||||
{{- range .Branding.DefaultCSS}}
|
||||
|
|
Loading…
Reference in a new issue