-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(bugfixes): fix some small issues in modules
- Loading branch information
1 parent
3f619b2
commit d4ee93a
Showing
11 changed files
with
21 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { type TranslationMessage } from '@translations/languages'; | ||
|
||
export const popup: TranslationMessage = { | ||
export const hamburger: TranslationMessage = { | ||
'popup.hamburger.a11y.close': 'Open navigation', | ||
'popup.hamburger.a11y.open': 'Close navigation', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import { type TranslationDomain } from '@translations/languages'; | ||
import { formvalidation } from './formvalidation'; | ||
import { hamburger } from './hamburger'; | ||
import { popup } from './popup'; | ||
|
||
export default { | ||
formvalidation, | ||
hamburger, | ||
popup, | ||
} as TranslationDomain; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { type TranslationMessage } from '@translations/languages'; | ||
|
||
export const popup: TranslationMessage = { | ||
export const hamburger: TranslationMessage = { | ||
'popup.hamburger.a11y.close': 'Open navigatie', | ||
'popup.hamburger.a11y.open': 'Sluit navigatie', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import { type TranslationDomain } from '@translations/languages'; | ||
import { formvalidation } from './formvalidation'; | ||
import { hamburger } from './hamburger'; | ||
import { popup } from './popup'; | ||
|
||
export default { | ||
formvalidation, | ||
hamburger, | ||
popup, | ||
} as TranslationDomain; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters