diff --git a/web/react/components/about_build_modal.jsx b/web/react/components/about_build_modal.jsx
index fe48bb48ef..86519e5dba 100644
--- a/web/react/components/about_build_modal.jsx
+++ b/web/react/components/about_build_modal.jsx
@@ -21,29 +21,38 @@ export default class AboutBuildModal extends React.Component {
let title = (
);
+
let licensee;
- if (config.BuildEnterpriseReady === 'true' && license.IsLicensed === 'true') {
+ if (config.BuildEnterpriseReady === 'true') {
title = (
);
- licensee = (
-
-
-
+ if (license.IsLicensed === 'true') {
+ title = (
+
+ );
+ licensee = (
+
+
+
+
+
{license.Company}
-
{license.Company}
-
- );
+ );
+ }
}
return (
diff --git a/web/static/i18n/en.json b/web/static/i18n/en.json
index 4c6fa0eae2..340464667d 100644
--- a/web/static/i18n/en.json
+++ b/web/static/i18n/en.json
@@ -1,11 +1,12 @@
{
"about.close": "Close",
"about.date": "Build Date:",
- "about.enterpriseEdition": "Enterprise Edition",
+ "about.enterpriseEditione1": "Enterprise Edition E1",
"about.hash": "Build Hash:",
"about.licensed": "Licensed by:",
"about.number": "Build Number:",
- "about.teamEdtion": "Team Edition",
+ "about.teamEdtiont0": "Team Edition T0",
+ "about.teamEdtiont1": "Team Edition T1",
"about.title": "About Mattermost",
"about.version": "Version:",
"access_history.title": "Access History",
diff --git a/web/static/i18n/es.json b/web/static/i18n/es.json
index b144708722..2849578a58 100644
--- a/web/static/i18n/es.json
+++ b/web/static/i18n/es.json
@@ -1,11 +1,12 @@
{
"about.close": "Cerrar",
"about.date": "Fecha de compilación:",
- "about.enterpriseEdition": "Edición Enterprise",
+ "about.enterpriseEditione1": "Edición Enterprise E1",
"about.hash": "Hash de compilación:",
"about.licensed": "Licenciado por:",
"about.number": "Número de compilación:",
- "about.teamEdtion": "Edición Team",
+ "about.teamEdtiont0": "Edición Team T0",
+ "about.teamEdtiont1": "Edición Team T1",
"about.title": "Acerca de Mattermost",
"about.version": "Versión:",
"access_history.title": "Historial de Acceso",
diff --git a/web/static/i18n/pt.json b/web/static/i18n/pt.json
index f4b998ded9..94e67a7993 100644
--- a/web/static/i18n/pt.json
+++ b/web/static/i18n/pt.json
@@ -1,11 +1,12 @@
{
"about.close": "Fechar",
"about.date": "Data De Criação:",
- "about.enterpriseEdition": "Enterprise Edition",
+ "about.enterpriseEditione1": "Enterprise Edition E1",
"about.hash": "Hash de Compilação:",
"about.licensed": "Licenciado pela:",
"about.number": "O Número De Compilação:",
- "about.teamEdtion": "Team Edition",
+ "about.teamEdtiont0": "Team Edition T0",
+ "about.teamEdtiont1": "Team Edition T1",
"about.title": "Sobre o Mattermost",
"about.version": "Versão:",
"access_history.title": "Histórico de Acesso",
@@ -1288,4 +1289,4 @@
"view_image_popover.download": "Download",
"view_image_popover.file": "Arquivo {count} de {total}",
"view_image_popover.publicLink": "Obter O Link Público"
-}
\ No newline at end of file
+}