Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /**
* @module generate-news-indexes/constants
* @description Barrel re-export for the news-index constants modules.
*
* | Module | Responsibility |
* |--------------------|---------------------------------------------------|
* | languages.ts | 14-language UI strings / filter labels / SEO |
* | language-flags.ts | Flag emojis + "Available in" translations |
*
* @author Hack23 AB
* @license Apache-2.0
*/
export { LANGUAGES } from './languages.js';
export { LANGUAGE_FLAGS, AVAILABLE_IN_TRANSLATIONS } from './language-flags.js';
|