* MCP Server 2.0 - Updated application version from 2.23.14 to 2.24.0 in package.json. - MCP Server improved with new features - Migrated functionality from Dev Tools to MCP Server - Improved getMonitoringProvider not to crash application when misconfigured
32 lines
898 B
TypeScript
32 lines
898 B
TypeScript
import { Metadata } from 'next';
|
|
|
|
import { Page, PageBody, PageHeader } from '@kit/ui/page';
|
|
|
|
import { TranslationsComparison } from './components/translations-comparison';
|
|
import { loadTranslations } from './lib/translations-loader';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Translations Comparison',
|
|
description: 'Compare translations across different languages',
|
|
};
|
|
|
|
export default async function TranslationsPage() {
|
|
const translations = await loadTranslations();
|
|
|
|
return (
|
|
<Page style={'custom'}>
|
|
<PageHeader
|
|
displaySidebarTrigger={false}
|
|
title={'Translations'}
|
|
description={
|
|
'Compare translations across different languages. Ensure consistency and accuracy in your translations.'
|
|
}
|
|
/>
|
|
|
|
<PageBody className={'py-4'}>
|
|
<TranslationsComparison translations={translations} />
|
|
</PageBody>
|
|
</Page>
|
|
);
|
|
}
|