added second translation for partner information

to not have to change i18n.options.react to adapt behaviour or defining var
This commit is contained in:
Florian Scholdei
2019-08-07 17:01:29 +02:00
parent c9d5733ebd
commit 454453ea4c
3 changed files with 5 additions and 3 deletions

View File

@@ -14,7 +14,8 @@
"communityButton": "Unser Team kontaktieren",
"enterpriseTitle": "Enterprise Support",
"enterpriseIconAlt": "Enterprise Support Icon",
"enterpriseInfo": "Sie benötigen technische Unterstützung für Ihr Unternehmen oder haben Bedarf an einem für Sie entwickelten SCM-Manager Plugin? Gerne helfen wir Ihnen bei Ihren individuellen Anforderungen für die SCM-Manager Nutzung weiter.<br /><strong>Kontaktieren Sie das SCM-Manager Support Team bei unserem Entwicklungs-Partner Cloudogu für ein unverbindliches Angebot.</strong>",
"enterpriseInfo": "Sie benötigen technische Unterstützung für Ihr Unternehmen oder haben Bedarf an einem für Sie entwickelten SCM-Manager Plugin? Gerne helfen wir Ihnen bei Ihren individuellen Anforderungen für die SCM-Manager Nutzung weiter.",
"enterprisePartner": "Kontaktieren Sie das SCM-Manager Support Team bei unserem Entwicklungs-Partner Cloudogu für ein unverbindliches Angebot.",
"enterpriseLink": "https://cloudogu.com/de/scm-manager-enterprise/",
"enterpriseButton": "Enterprise Support anfragen"
}

View File

@@ -14,7 +14,8 @@
"communityButton": "Contact our team",
"enterpriseTitle": "Enterprise Support",
"enterpriseIconAlt": "Enterprise Support Icon",
"enterpriseInfo": "You need technical support for your company or you need a SCM-Manager plugin developed for you? We are happy to help you with your individual requirements for SCM-Manager use.<br /><strong>Contact the SCM-Manager Support Team at our development partner Cloudogu for a non-binding offer.</strong>",
"enterpriseInfo": "You need technical support for your company or you need a SCM-Manager plugin developed for you? We are happy to help you with your individual requirements for SCM-Manager use.",
"enterprisePartner": "Contact the SCM-Manager Support Team at our development partner Cloudogu for a non-binding offer.",
"enterpriseLink": "https://cloudogu.com/en/scm-manager-enterprise/",
"enterpriseButton": "Request Enterprise Support"
}

View File

@@ -76,7 +76,7 @@ class AdminDetails extends React.Component<Props> {
<div className="media-content">
<div className="content">
<h3 className={classes.boxTitle}>{t("admin.info.enterpriseTitle")}</h3>
<p>{t("admin.info.enterpriseInfo")}</p>
<p>{t("admin.info.enterpriseInfo")}<br /><strong>{t("admin.info.enterprisePartner")}</strong></p>
<a className="button is-info is-pulled-right" href={t("admin.info.enterpriseLink")}>{t("admin.info.enterpriseButton")}</a>
</div>
</div>