Open Issues Need Help
View All on GitHubAI Summary: This issue proposes refactoring the `ItemSelector` component to update its internationalization (i18n) implementation. It suggests replacing direct calls to the `i18n` function with the `t` function provided by the `i18n.Translation` component's render prop, aligning with a more modern or consistent i18n pattern.
AI Summary: This issue proposes refactoring the `OnboardingMenu` component to adopt the `i18n.useTranslation` React hook for handling internationalization. The change involves replacing direct calls to `i18n('key')` with `t('key')` after destructuring the `t` function from the hook, aligning with standard `react-i18next` usage in functional components.
AI Summary: This issue proposes refactoring the translation mechanism within the 'Gallery' component. It suggests replacing direct calls to the `i18n` function with the `t` function obtained from the `i18n.useTranslation` React hook, which is a standard practice for internationalization in React applications.
AI Summary: This issue proposes refactoring the `CookieConsent` component to utilize the `i18n.useTranslation` React hook for handling internationalization. The change involves replacing direct calls to the `i18n` function with the `t` function provided by the hook, aligning with standard practices for i18n in React components.
AI Summary: This issue proposes refactoring the `ChangelogDialog` component to utilize the `i18n.useTranslation` hook for translation functions. The change involves replacing direct calls to the `i18n` function with the `t` function obtained from the hook.