aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/WidgetParts/ExpandableWidget
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-29 19:03:59 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-29 19:03:59 +0100
commit8fb5e4ef3ae925ebc6622711fb5c8c6147642cbc (patch)
tree9e99137a7b64ea7993a8311a7162336a551be8b2 /src/components/WidgetParts/ExpandableWidget
parent2bae7c43764df5678fe2fc2e68be11ae95d85a41 (diff)
parente4d5b8151802517b2943756fc0d09ffa95e2c4e2 (diff)
feat(i18n): replace linguijs with formatjs
Diffstat (limited to 'src/components/WidgetParts/ExpandableWidget')
-rw-r--r--src/components/WidgetParts/ExpandableWidget/ExpandableWidget.tsx13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/components/WidgetParts/ExpandableWidget/ExpandableWidget.tsx b/src/components/WidgetParts/ExpandableWidget/ExpandableWidget.tsx
index 52b5c06..6a19d92 100644
--- a/src/components/WidgetParts/ExpandableWidget/ExpandableWidget.tsx
+++ b/src/components/WidgetParts/ExpandableWidget/ExpandableWidget.tsx
@@ -1,6 +1,6 @@
-import { t } from '@lingui/macro';
import { TitleLevel } from '@ts/types/app';
import { ReactNode, useState } from 'react';
+import { useIntl } from 'react-intl';
import styles from './ExpandableWidget.module.scss';
const ExpandableWidget = ({
@@ -16,6 +16,7 @@ const ExpandableWidget = ({
expand?: boolean;
withBorders?: boolean;
}) => {
+ const intl = useIntl();
const [isExpanded, setIsExpanded] = useState<boolean>(expand);
const handleExpanse = () => setIsExpanded((prev) => !prev);
@@ -34,7 +35,15 @@ const ExpandableWidget = ({
<div className={wrapperClasses}>
<button type="button" className={styles.header} onClick={handleExpanse}>
<span className="screen-reader-text">
- {isExpanded ? t`Collapse` : t`Expand`}
+ {isExpanded
+ ? intl.formatMessage({
+ defaultMessage: 'Collapse',
+ description: 'ExpandableWidget: collapse text',
+ })
+ : intl.formatMessage({
+ defaultMessage: 'Expand',
+ description: 'ExpandableWidget: expand text',
+ })}
</span>
<TitleTag className={styles.title}>{title}</TitleTag>
<span className={styles.icon} aria-hidden={true}></span>