Unified Account and Workspace drop-downs; Layout updates, now header lives within the PageBody component; Sidebars now use floating variant
17 lines
380 B
TypeScript
17 lines
380 B
TypeScript
import { defaultLocale } from './default-locale';
|
|
|
|
/**
|
|
* @name locales
|
|
* @description Supported locales
|
|
* @type {string[]}
|
|
* @default [defaultLocale]
|
|
*/
|
|
export const locales: string[] = [
|
|
defaultLocale,
|
|
// Add other locales here as needed
|
|
// Example: 'es', 'fr', 'de', etc.
|
|
// Uncomment the locales below to enable them:
|
|
// 'es', // Spanish
|
|
// 'fr', // French
|
|
];
|