From f200c7c9b5d900053d599b1edb3d01600b4dc215 Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Thu, 2 Jun 2022 08:47:04 +0200 Subject: [PATCH 01/11] Add column ParentAlias --- .../Resources/Listing/columns/ParentAlias.tsx | 23 +++++++++++++++++++ .../src/Resources/Listing/columns/index.tsx | 11 +++++++++ 2 files changed, 34 insertions(+) create mode 100644 www/front_src/src/Resources/Listing/columns/ParentAlias.tsx diff --git a/www/front_src/src/Resources/Listing/columns/ParentAlias.tsx b/www/front_src/src/Resources/Listing/columns/ParentAlias.tsx new file mode 100644 index 00000000000..822e4b48186 --- /dev/null +++ b/www/front_src/src/Resources/Listing/columns/ParentAlias.tsx @@ -0,0 +1,23 @@ +import { isNil } from 'ramda'; + +import { Typography } from '@mui/material'; + +import { ComponentColumnProps } from '@centreon/ui'; + +import { useColumnStyles } from '.'; + +const ParentAlias = ({ row }: ComponentColumnProps): JSX.Element | null => { + const classes = useColumnStyles(); + + if (isNil(row.alias)) { + return null; + } + + return ( +
+ {row.parent.alias} +
+ ); +}; + +export default ParentAlias; diff --git a/www/front_src/src/Resources/Listing/columns/index.tsx b/www/front_src/src/Resources/Listing/columns/index.tsx index 48d75a9b400..c6fb3e9b52d 100644 --- a/www/front_src/src/Resources/Listing/columns/index.tsx +++ b/www/front_src/src/Resources/Listing/columns/index.tsx @@ -22,6 +22,7 @@ import { labelNotification, labelCheck, labelSeverity, + labelParentAlias, } from '../../translatedLabels'; import truncate from '../../truncate'; @@ -35,6 +36,7 @@ import ResourceColumn from './Resource'; import ParentResourceColumn from './Parent'; import NotificationColumn from './Notification'; import ChecksColumn from './Checks'; +import ParentAlias from './ParentAlias'; const useStyles = makeStyles((theme) => ({ resourceDetailsCell: { @@ -194,6 +196,15 @@ export const getColumns = ({ actions, t }: ColumnProps): Array => [ sortable: true, type: ColumnType.string, }, + { + Component: ParentAlias, + getRenderComponentOnRowUpdateCondition: T, + id: 'parent_alias', + label: t(labelParentAlias), + rowMemoProps: ['parent_alias'], + sortable: false, + type: ColumnType.component, + }, { getFormattedString: ({ fqdn }): string => fqdn, id: 'fqdn', From c726a057d80444e4bc0a6d8206f1b91eb8205115 Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Thu, 2 Jun 2022 08:47:18 +0200 Subject: [PATCH 02/11] Add new label ParentAlias --- www/front_src/src/Resources/translatedLabels.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/www/front_src/src/Resources/translatedLabels.ts b/www/front_src/src/Resources/translatedLabels.ts index 2013eab5575..66a313e95e2 100644 --- a/www/front_src/src/Resources/translatedLabels.ts +++ b/www/front_src/src/Resources/translatedLabels.ts @@ -249,3 +249,4 @@ export const labelNoContactIsConfiguredForThisResource = 'No contacts are configured for this resource'; export const labelNoContactGroupsIsConfiguredForThisResource = 'No contact groups are configured for this resource'; +export const labelParentAlias = 'Parent Alias'; From 4c6b6ef52308cc4fafb8f5b16a2fdbf9b5039747 Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Thu, 2 Jun 2022 11:09:39 +0200 Subject: [PATCH 03/11] Add column ParentAlias and new column component --- .../Resources/Listing/columns/ParentAlias.tsx | 16 +++++++++------- .../src/Resources/Listing/columns/index.tsx | 9 +++++---- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/www/front_src/src/Resources/Listing/columns/ParentAlias.tsx b/www/front_src/src/Resources/Listing/columns/ParentAlias.tsx index 822e4b48186..c0c34e2c461 100644 --- a/www/front_src/src/Resources/Listing/columns/ParentAlias.tsx +++ b/www/front_src/src/Resources/Listing/columns/ParentAlias.tsx @@ -1,23 +1,25 @@ -import { isNil } from 'ramda'; - import { Typography } from '@mui/material'; import { ComponentColumnProps } from '@centreon/ui'; import { useColumnStyles } from '.'; -const ParentAlias = ({ row }: ComponentColumnProps): JSX.Element | null => { +const ParentAliasColumn = ({ + row, +}: ComponentColumnProps): JSX.Element | null => { const classes = useColumnStyles(); - if (isNil(row.alias)) { + if (!row.parent) { return null; } return ( -
- {row.parent.alias} +
+
+ {row.parent.alias} +
); }; -export default ParentAlias; +export default ParentAliasColumn; diff --git a/www/front_src/src/Resources/Listing/columns/index.tsx b/www/front_src/src/Resources/Listing/columns/index.tsx index c6fb3e9b52d..b415e2918ab 100644 --- a/www/front_src/src/Resources/Listing/columns/index.tsx +++ b/www/front_src/src/Resources/Listing/columns/index.tsx @@ -36,7 +36,7 @@ import ResourceColumn from './Resource'; import ParentResourceColumn from './Parent'; import NotificationColumn from './Notification'; import ChecksColumn from './Checks'; -import ParentAlias from './ParentAlias'; +import ParentAliasColumn from './ParentAlias'; const useStyles = makeStyles((theme) => ({ resourceDetailsCell: { @@ -197,12 +197,13 @@ export const getColumns = ({ actions, t }: ColumnProps): Array => [ type: ColumnType.string, }, { - Component: ParentAlias, + Component: ParentAliasColumn, getRenderComponentOnRowUpdateCondition: T, id: 'parent_alias', label: t(labelParentAlias), - rowMemoProps: ['parent_alias'], - sortable: false, + rowMemoProps: ['parent'], + sortField: 'parent_alias', + sortable: true, type: ColumnType.component, }, { From 6bf594d34ae91d232d0679d1b090a60a177db883 Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Thu, 2 Jun 2022 12:10:52 +0200 Subject: [PATCH 04/11] Add new card to display Parent Alias --- .../tabs/Details/DetailsCard/ParentAlias.tsx | 37 +++++++++++++++++++ .../tabs/Details/DetailsCard/cards.tsx | 12 ++++++ 2 files changed, 49 insertions(+) create mode 100644 www/front_src/src/Resources/Details/tabs/Details/DetailsCard/ParentAlias.tsx diff --git a/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/ParentAlias.tsx b/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/ParentAlias.tsx new file mode 100644 index 00000000000..03b33642975 --- /dev/null +++ b/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/ParentAlias.tsx @@ -0,0 +1,37 @@ +import { useTranslation } from 'react-i18next'; + +import { Tooltip } from '@mui/material'; +import makeStyles from '@mui/styles/makeStyles'; + +import { labelParentAlias } from '../../../../translatedLabels'; +import { ResourceDetails } from '../../../models'; + +import DetailsLine from './DetailsLine'; + +const useStyles = makeStyles((theme) => ({ + parentAlias: { + alignItems: 'center', + columnGap: theme.spacing(1), + display: 'grid', + gridTemplateColumns: 'auto min-content', + }, +})); + +interface Props { + details: ResourceDetails | undefined; +} + +const ParentAlias = ({ details }: Props): JSX.Element => { + const classes = useStyles(); + const { t } = useTranslation(); + + return ( +
+ + + +
+ ); +}; + +export default ParentAlias; diff --git a/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx b/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx index c00a5b0b179..3329db04a75 100644 --- a/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx +++ b/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx @@ -26,6 +26,7 @@ import { labelPerformanceData, labelCommand, labelLastCheckWithOkStatus, + labelParentAlias, } from '../../../../translatedLabels'; import { ResourceDetails } from '../../../models'; import ExpandableCard from '../ExpandableCard'; @@ -37,6 +38,7 @@ import Groups from './Groups'; import DowntimesCard from './DowntimesCard'; import AcknowledgementCard from './AcknowledegmentCard'; import CommandLineCard from './CommandLineCard'; +import ParentAlias from './ParentAlias'; export interface DetailCardLine { active?: boolean; @@ -183,6 +185,16 @@ const getDetailCardLines = ({ shouldBeDisplayed: !isNil(details.calculation_type), title: labelCalculationType, }, + { + line: , + shouldBeDisplayed: !isNil(details.calculation_type), + title: labelCalculationType, + }, + { + line: , + shouldBeDisplayed: !isNil(details.parent.name), + title: labelParentAlias, + }, { isCustomCard: true, line: , From 2c6750c09cc7f7aee0b536b0cd19cca1239c9178 Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Fri, 3 Jun 2022 09:35:53 +0200 Subject: [PATCH 05/11] Remove tile in Details Panel, enhancement not expected --- .../tabs/Details/DetailsCard/ParentAlias.tsx | 37 ------------------- .../tabs/Details/DetailsCard/cards.tsx | 5 --- 2 files changed, 42 deletions(-) delete mode 100644 www/front_src/src/Resources/Details/tabs/Details/DetailsCard/ParentAlias.tsx diff --git a/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/ParentAlias.tsx b/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/ParentAlias.tsx deleted file mode 100644 index 03b33642975..00000000000 --- a/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/ParentAlias.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { useTranslation } from 'react-i18next'; - -import { Tooltip } from '@mui/material'; -import makeStyles from '@mui/styles/makeStyles'; - -import { labelParentAlias } from '../../../../translatedLabels'; -import { ResourceDetails } from '../../../models'; - -import DetailsLine from './DetailsLine'; - -const useStyles = makeStyles((theme) => ({ - parentAlias: { - alignItems: 'center', - columnGap: theme.spacing(1), - display: 'grid', - gridTemplateColumns: 'auto min-content', - }, -})); - -interface Props { - details: ResourceDetails | undefined; -} - -const ParentAlias = ({ details }: Props): JSX.Element => { - const classes = useStyles(); - const { t } = useTranslation(); - - return ( -
- - - -
- ); -}; - -export default ParentAlias; diff --git a/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx b/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx index 3329db04a75..7f835e8f4bd 100644 --- a/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx +++ b/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx @@ -190,11 +190,6 @@ const getDetailCardLines = ({ shouldBeDisplayed: !isNil(details.calculation_type), title: labelCalculationType, }, - { - line: , - shouldBeDisplayed: !isNil(details.parent.name), - title: labelParentAlias, - }, { isCustomCard: true, line: , From 6704755b87454d4ec47f3567f61f4b601c7f94ed Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Tue, 7 Jun 2022 11:16:31 +0200 Subject: [PATCH 06/11] FIx eslint issue --- .../src/Resources/Details/tabs/Details/DetailsCard/cards.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx b/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx index 7f835e8f4bd..3ccce444db9 100644 --- a/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx +++ b/www/front_src/src/Resources/Details/tabs/Details/DetailsCard/cards.tsx @@ -26,7 +26,6 @@ import { labelPerformanceData, labelCommand, labelLastCheckWithOkStatus, - labelParentAlias, } from '../../../../translatedLabels'; import { ResourceDetails } from '../../../models'; import ExpandableCard from '../ExpandableCard'; @@ -38,7 +37,6 @@ import Groups from './Groups'; import DowntimesCard from './DowntimesCard'; import AcknowledgementCard from './AcknowledegmentCard'; import CommandLineCard from './CommandLineCard'; -import ParentAlias from './ParentAlias'; export interface DetailCardLine { active?: boolean; From 800c551626e555053e67f85bd9f9ac6f77e6652d Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Tue, 7 Jun 2022 11:16:53 +0200 Subject: [PATCH 07/11] Fix naming on label parent alias --- www/front_src/src/Resources/translatedLabels.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/front_src/src/Resources/translatedLabels.ts b/www/front_src/src/Resources/translatedLabels.ts index 66a313e95e2..75fbdd3ed02 100644 --- a/www/front_src/src/Resources/translatedLabels.ts +++ b/www/front_src/src/Resources/translatedLabels.ts @@ -249,4 +249,4 @@ export const labelNoContactIsConfiguredForThisResource = 'No contacts are configured for this resource'; export const labelNoContactGroupsIsConfiguredForThisResource = 'No contact groups are configured for this resource'; -export const labelParentAlias = 'Parent Alias'; +export const labelParentAlias = 'Parent alias'; From fb03be13a9d6e7a07116f02040eaa70e3327ae5a Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Thu, 9 Jun 2022 10:39:22 +0200 Subject: [PATCH 08/11] Add translation --- lang/es_ES.UTF-8/LC_MESSAGES/messages.po | 3 +++ lang/fr_FR.UTF-8/LC_MESSAGES/messages.po | 3 +++ lang/pt_BR.UTF-8/LC_MESSAGES/messages.po | 3 +++ lang/pt_PT.UTF-8/LC_MESSAGES/messages.po | 3 +++ 4 files changed, 12 insertions(+) diff --git a/lang/es_ES.UTF-8/LC_MESSAGES/messages.po b/lang/es_ES.UTF-8/LC_MESSAGES/messages.po index 244ca31f65e..c44c1bb63d5 100644 --- a/lang/es_ES.UTF-8/LC_MESSAGES/messages.po +++ b/lang/es_ES.UTF-8/LC_MESSAGES/messages.po @@ -15127,3 +15127,6 @@ msgstr "" # msgid "License expired" # msgstr "" + +msgid "Parent alias +msgstr "" \ No newline at end of file diff --git a/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po b/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po index fdc8e6df6f9..7e015f65262 100644 --- a/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po +++ b/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po @@ -16863,3 +16863,6 @@ msgstr "Date de fin de licence :" msgid "License expired" msgstr "Licence expirée" + +msgid "Parent alias +msgstr "Alias parent" \ No newline at end of file diff --git a/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po b/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po index 44756c72e79..8775a9005e9 100644 --- a/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po +++ b/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po @@ -15578,3 +15578,6 @@ msgstr "" # msgid "License expired" # msgstr "" + +msgid "Parent alias +msgstr "" \ No newline at end of file diff --git a/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po b/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po index a45985535c4..68ff0ecae30 100644 --- a/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po +++ b/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po @@ -15566,3 +15566,6 @@ msgstr "" # msgid "License expired" # msgstr "" + +msgid "Parent alias +msgstr "" \ No newline at end of file From 4eca0cabceea1c43dfa44a102ad1981d8418f12e Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Fri, 10 Jun 2022 16:16:55 +0200 Subject: [PATCH 09/11] Add line at the end of files --- lang/es_ES.UTF-8/LC_MESSAGES/messages.po | 2 +- lang/fr_FR.UTF-8/LC_MESSAGES/messages.po | 2 +- lang/pt_BR.UTF-8/LC_MESSAGES/messages.po | 2 +- lang/pt_PT.UTF-8/LC_MESSAGES/messages.po | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lang/es_ES.UTF-8/LC_MESSAGES/messages.po b/lang/es_ES.UTF-8/LC_MESSAGES/messages.po index c44c1bb63d5..d5c7ff4da55 100644 --- a/lang/es_ES.UTF-8/LC_MESSAGES/messages.po +++ b/lang/es_ES.UTF-8/LC_MESSAGES/messages.po @@ -15129,4 +15129,4 @@ msgstr "" # msgstr "" msgid "Parent alias -msgstr "" \ No newline at end of file +msgstr "" diff --git a/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po b/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po index 7e015f65262..1fdb0e96a85 100644 --- a/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po +++ b/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po @@ -16865,4 +16865,4 @@ msgid "License expired" msgstr "Licence expirée" msgid "Parent alias -msgstr "Alias parent" \ No newline at end of file +msgstr "Alias parent" diff --git a/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po b/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po index 8775a9005e9..efc79cd363d 100644 --- a/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po +++ b/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po @@ -15580,4 +15580,4 @@ msgstr "" # msgstr "" msgid "Parent alias -msgstr "" \ No newline at end of file +msgstr "" diff --git a/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po b/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po index 68ff0ecae30..c12e00f7528 100644 --- a/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po +++ b/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po @@ -15568,4 +15568,4 @@ msgstr "" # msgstr "" msgid "Parent alias -msgstr "" \ No newline at end of file +msgstr "" From 124fcfc820c996b26efb6e60c785fb0bcfbdf6d6 Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Fri, 10 Jun 2022 16:24:03 +0200 Subject: [PATCH 10/11] Add line at the end of file --- lang/es_ES.UTF-8/LC_MESSAGES/messages.po | 1 + lang/fr_FR.UTF-8/LC_MESSAGES/messages.po | 1 + lang/pt_BR.UTF-8/LC_MESSAGES/messages.po | 1 + lang/pt_PT.UTF-8/LC_MESSAGES/messages.po | 1 + 4 files changed, 4 insertions(+) diff --git a/lang/es_ES.UTF-8/LC_MESSAGES/messages.po b/lang/es_ES.UTF-8/LC_MESSAGES/messages.po index d5c7ff4da55..9f91d32db15 100644 --- a/lang/es_ES.UTF-8/LC_MESSAGES/messages.po +++ b/lang/es_ES.UTF-8/LC_MESSAGES/messages.po @@ -15130,3 +15130,4 @@ msgstr "" msgid "Parent alias msgstr "" + diff --git a/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po b/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po index 1fdb0e96a85..47fcb7c3f41 100644 --- a/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po +++ b/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po @@ -16866,3 +16866,4 @@ msgstr "Licence expirée" msgid "Parent alias msgstr "Alias parent" + diff --git a/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po b/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po index efc79cd363d..8a7b68ea509 100644 --- a/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po +++ b/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po @@ -15581,3 +15581,4 @@ msgstr "" msgid "Parent alias msgstr "" + diff --git a/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po b/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po index c12e00f7528..c6f237edd6e 100644 --- a/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po +++ b/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po @@ -15569,3 +15569,4 @@ msgstr "" msgid "Parent alias msgstr "" + From c1bae33c92d5fa9cae5cf20c74e7cf0a3fdbb282 Mon Sep 17 00:00:00 2001 From: Jordan CARO Date: Fri, 10 Jun 2022 18:34:41 +0200 Subject: [PATCH 11/11] fix issues --- lang/es_ES.UTF-8/LC_MESSAGES/messages.po | 5 +++-- lang/fr_FR.UTF-8/LC_MESSAGES/messages.po | 5 +++-- lang/pt_BR.UTF-8/LC_MESSAGES/messages.po | 5 +++-- lang/pt_PT.UTF-8/LC_MESSAGES/messages.po | 5 +++-- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/lang/es_ES.UTF-8/LC_MESSAGES/messages.po b/lang/es_ES.UTF-8/LC_MESSAGES/messages.po index 9f91d32db15..a1504558604 100644 --- a/lang/es_ES.UTF-8/LC_MESSAGES/messages.po +++ b/lang/es_ES.UTF-8/LC_MESSAGES/messages.po @@ -15128,6 +15128,7 @@ msgstr "" # msgid "License expired" # msgstr "" -msgid "Parent alias -msgstr "" +# msgid "Parent alias +# msgstr "" + diff --git a/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po b/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po index 47fcb7c3f41..24be9cc019c 100644 --- a/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po +++ b/lang/fr_FR.UTF-8/LC_MESSAGES/messages.po @@ -16864,6 +16864,7 @@ msgstr "Date de fin de licence :" msgid "License expired" msgstr "Licence expirée" -msgid "Parent alias -msgstr "Alias parent" +# msgid "Parent alias +# msgstr "Alias parent" + diff --git a/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po b/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po index 8a7b68ea509..c8317a7824b 100644 --- a/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po +++ b/lang/pt_BR.UTF-8/LC_MESSAGES/messages.po @@ -15579,6 +15579,7 @@ msgstr "" # msgid "License expired" # msgstr "" -msgid "Parent alias -msgstr "" +# msgid "Parent alias +# msgstr "" + diff --git a/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po b/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po index c6f237edd6e..f1cddc9c4b2 100644 --- a/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po +++ b/lang/pt_PT.UTF-8/LC_MESSAGES/messages.po @@ -15567,6 +15567,7 @@ msgstr "" # msgid "License expired" # msgstr "" -msgid "Parent alias -msgstr "" +# msgid "Parent alias +# msgstr "" +