Skip to content

Commit

Permalink
🐛 Don't use MTA accronym (#627)
Browse files Browse the repository at this point in the history
* Don't use MTA accronym

Signed-off-by: Gilles Dubreuil <[email protected]>

* Add About

Signed-off-by: Gilles Dubreuil <[email protected]>

* Clear snapshot

Signed-off-by: Gilles Dubreuil <[email protected]>

---------

Signed-off-by: Gilles Dubreuil <[email protected]>
Co-authored-by: Ian Bolton <[email protected]>
  • Loading branch information
gildub and ibolton336 authored Feb 20, 2023
1 parent 15abe7e commit f005ce6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 294 deletions.
1 change: 1 addition & 0 deletions client/public/locales/en/translation.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"about": {
"about": "About",
"bottom1": "{{brandType}} is a project within the",
"bottom2": "For more information please refer to",
"description": "{{brandType}} allows users to maintain their portfolio of applications with a full set of metadata and to assess their suitability for modernization leveraging a questionnaire based approach.",
Expand Down
1 change: 1 addition & 0 deletions client/public/locales/es/translation.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"about": {
"about": "Acerca de",
"bottom1": "{{brandType}} es un proyecto dentro de ",
"bottom2": "Para mayor información por favor diríjase a ",
"description": "{{brandType}} permite a los usuarios mantener su cartera de aplicaciones con un conjunto completo de metadatos y evaluar su idoneidad para la modernización aprovechando un enfoque basado en cuestionarios.",
Expand Down
8 changes: 6 additions & 2 deletions client/src/app/layout/AppAboutModal/AppAboutModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ export const AppAboutModal: React.FC<AppAboutModalProps> = ({
onClose,
}) => {
const { t } = useTranslation();
const brandName = APP_BRAND === BrandType.Konveyor ? "Tackle" : "MTA";
const brandName =
APP_BRAND === BrandType.Konveyor
? "Tackle"
: "Migration Toolkit for Applications";
return (
<AboutModal
isOpen={isOpen}
Expand All @@ -37,7 +40,8 @@ export const AppAboutModal: React.FC<AppAboutModalProps> = ({
brandImageAlt="Logo"
productName={brandName}
>
<TextContent className="pf-u-py-xl">
<TextContent>
<Text component={TextVariants.h4}>{t("about.about")}</Text>
<Text component={TextVariants.p}>
{t("about.introduction", { brandType: brandName })}
</Text>
Expand Down

This file was deleted.

0 comments on commit f005ce6

Please sign in to comment.