GUAC-586: Add localized data source names. Display data sources as tabs within user edit screen.

This commit is contained in:
Michael Jumper
2015-08-28 16:50:53 -07:00
parent 40ca19fb3a
commit 70485286d6
9 changed files with 99 additions and 19 deletions

View File

@@ -33,6 +33,14 @@
},
"DATA_SOURCE_MYSQL" : {
"NAME" : "MySQL"
},
"DATA_SOURCE_POSTGRESQL" : {
"NAME" : "PostgreSQL"
},
"USER_ATTRIBUTES" : {
"FIELD_HEADER_DISABLED" : "Login disabled:",

View File

@@ -7,6 +7,10 @@
"authProviders" : [
"net.sourceforge.guacamole.net.auth.ldap.LDAPAuthenticationProvider"
],
"translations" : [
"translations/en.json"
]
}

View File

@@ -0,0 +1,7 @@
{
"DATA_SOURCE_LDAP" : {
"NAME" : "LDAP"
}
}

View File

@@ -7,6 +7,10 @@
"authProviders" : [
"net.sourceforge.guacamole.net.auth.noauth.NoAuthenticationProvider"
],
"translations" : [
"translations/en.json"
]
}

View File

@@ -0,0 +1,7 @@
{
"DATA_SOURCE_NOAUTH" : {
"NAME" : "NoAuth"
}
}