Translations and styling improved on main page.

This commit is contained in:
codevictory
2021-12-23 00:51:02 +02:00
parent 65a810211a
commit 25f87eaa01
14 changed files with 118 additions and 121 deletions

View File

@@ -1,9 +1,11 @@
import { common } from "./common/en";
import { registration } from './registration/en';
import { main } from "./main/en";
const en: Record<string, string> = {
...common,
...registration
...registration,
...main
}
export default en;

View File

@@ -1,9 +1,11 @@
import { common } from "./common/fi";
import { registration } from './registration/fi';
import { registration } from "./registration/fi";
import { main } from "./main/fi";
const fi: Record<string, string> = {
...common,
...registration
...registration,
...main
}
export default fi;

View File

@@ -0,0 +1,8 @@
export const main: Record<string, string> = {
"main.program": "Program",
"main.menu": "Menu",
"main.info": "Info",
"main.saveTheLink": "Save the link",
"main.welcome": "Welcome!",
"main.toBeDecided": "To be specified"
}

View File

@@ -0,0 +1,8 @@
export const main: Record<string, string> = {
"main.program": "Ohjelma",
"main.menu": "Menu",
"main.info": "Info",
"main.saveTheLink": "Laita linkki talteen",
"main.welcome": "Tervetuloa!",
"main.toBeDecided": "Selviää myöhemmin"
}