Merge branch 'main' of https://github.com/bulwarkmail/webmail
This commit is contained in:
@@ -546,7 +546,7 @@ export function NavigationRail({
|
|||||||
})}
|
})}
|
||||||
|
|
||||||
{/* Manage apps button */}
|
{/* Manage apps button */}
|
||||||
{onManageApps && (
|
{sidebarAppsEnabled && onManageApps && (
|
||||||
<button
|
<button
|
||||||
onClick={onManageApps}
|
onClick={onManageApps}
|
||||||
className={cn(
|
className={cn(
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import deMessages from '@/locales/de/common.json';
|
|||||||
import enMessages from '@/locales/en/common.json';
|
import enMessages from '@/locales/en/common.json';
|
||||||
import esMessages from '@/locales/es/common.json';
|
import esMessages from '@/locales/es/common.json';
|
||||||
import frMessages from '@/locales/fr/common.json';
|
import frMessages from '@/locales/fr/common.json';
|
||||||
|
import huMessages from '@/locales/hu/common.json';
|
||||||
import itMessages from '@/locales/it/common.json';
|
import itMessages from '@/locales/it/common.json';
|
||||||
import jaMessages from '@/locales/ja/common.json';
|
import jaMessages from '@/locales/ja/common.json';
|
||||||
import koMessages from '@/locales/ko/common.json';
|
import koMessages from '@/locales/ko/common.json';
|
||||||
@@ -29,6 +30,7 @@ const ALL_MESSAGES = {
|
|||||||
en: enMessages,
|
en: enMessages,
|
||||||
es: esMessages,
|
es: esMessages,
|
||||||
fr: frMessages,
|
fr: frMessages,
|
||||||
|
hu: huMessages,
|
||||||
it: itMessages,
|
it: itMessages,
|
||||||
ja: jaMessages,
|
ja: jaMessages,
|
||||||
ko: koMessages,
|
ko: koMessages,
|
||||||
|
|||||||
@@ -26,6 +26,9 @@ export default getRequestConfig(async ({ requestLocale }) => {
|
|||||||
case 'fr':
|
case 'fr':
|
||||||
messages = (await import('../locales/fr/common.json')).default;
|
messages = (await import('../locales/fr/common.json')).default;
|
||||||
break;
|
break;
|
||||||
|
case 'hu':
|
||||||
|
messages = (await import('../locales/hu/common.json')).default;
|
||||||
|
break;
|
||||||
case 'it':
|
case 'it':
|
||||||
messages = (await import('../locales/it/common.json')).default;
|
messages = (await import('../locales/it/common.json')).default;
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user