Skip to content

Commit 5b9ab13

Browse files
committed
rename siteActions locale to actions, update pnpm-lock file
1 parent 7263e85 commit 5b9ab13

5 files changed

Lines changed: 10 additions & 12 deletions

File tree

packages/layout/locales/de/common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"languageSwitcher": {
66
"switchTo": "Zu {{ lang }} wechseln"
77
},
8-
"siteActions": {
8+
"actions": {
99
"logout": "Abmelden"
1010
},
1111
"anonymousTools": {

packages/layout/locales/en/common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"languageSwitcher": {
66
"switchTo": "Switch to {{ lang }}"
77
},
8-
"siteActions": {
8+
"actions": {
99
"logout": "Log Out"
1010
},
1111
"anonymousTools": {

packages/layout/locales/it/common.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"languageSwitcher": {
66
"switchTo": "Passa a {{ lang }}"
77
},
8-
"siteActions": {
8+
"actions": {
99
"logout": "Disconnetti"
1010
},
1111
"anonymousTools": {

packages/layout/slots/HeaderTools/Actions.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ import { useTranslation } from 'react-i18next';
44
const Actions = () => {
55
const { t } = useTranslation();
66

7-
return (
8-
<Link href="/logout">{t('layout.slots.tools.siteActions.logout')}</Link>
9-
);
7+
return <Link href="/logout">{t('layout.slots.tools.actions.logout')}</Link>;
108
};
119

1210
export default Actions;

pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)