15 lines
368 B
JavaScript
15 lines
368 B
JavaScript
// 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('../types/lang').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",
|
|
}
|