19 lines
392 B
JavaScript
19 lines
392 B
JavaScript
/**
|
|
* @file Due to these records being used in next.config.js, and that is required
|
|
* to be a js file, we use jsdoc to type these.
|
|
*/
|
|
|
|
/**
|
|
* @typedef {import('@/constants/languages').Lang} Lang
|
|
*/
|
|
|
|
/** @type {Record.<Lang, string>} */
|
|
export const pageNames = {
|
|
da: "mine-sider",
|
|
de: "mein-profil",
|
|
en: "my-pages",
|
|
fi: "minun-sivujani",
|
|
no: "mine-sider",
|
|
sv: "mina-sidor",
|
|
}
|