105 lines
2.5 KiB
TypeScript
105 lines
2.5 KiB
TypeScript
export type Language = 'en' | 'cs';
|
|
|
|
export const t = {
|
|
en: {
|
|
sidebar: {
|
|
favorites: 'Favorites',
|
|
lakes: 'Lakes & Reservoirs',
|
|
map: 'Map',
|
|
settings: 'Settings'
|
|
},
|
|
topbar: {
|
|
search: 'Search river or reservoir (e.g. Lipno)...',
|
|
updated: 'Last updated:'
|
|
},
|
|
kpi: {
|
|
level: 'WATER LEVEL',
|
|
flow: 'FLOW RATE',
|
|
inflow: 'Inflow',
|
|
outflow: 'Outflow',
|
|
fullness: 'STORAGE LEVEL',
|
|
volume: 'Volume'
|
|
},
|
|
chart: {
|
|
title: 'Long-term development',
|
|
timeframe: 'Timeframe',
|
|
timeframeMobile: 'Time',
|
|
view: 'View',
|
|
raw: 'Raw data',
|
|
smoothed: 'Smoothed',
|
|
calendar: 'Calendar',
|
|
all: 'All',
|
|
year: 'Year',
|
|
level: 'Water level',
|
|
inflow: 'Inflow',
|
|
outflow: 'Outflow',
|
|
maxLevel: 'Max retention level',
|
|
storageLevel: 'Storage space level',
|
|
dataSources: 'Data sources:',
|
|
createdIn: 'Created with ♥ in the Czech Republic'
|
|
},
|
|
settings: {
|
|
title: 'Settings',
|
|
theme: 'Theme',
|
|
dark: 'Dark',
|
|
light: 'Light',
|
|
language: 'Language',
|
|
english: 'English',
|
|
czech: 'Čeština',
|
|
contact: 'Contact',
|
|
contactPlaceholder: 'Your email address',
|
|
buyCoffee: 'Buy Me a Coffee'
|
|
}
|
|
},
|
|
cs: {
|
|
sidebar: {
|
|
favorites: 'Oblíbené',
|
|
lakes: 'Jezera a nádrže',
|
|
map: 'Mapa',
|
|
settings: 'Nastavení'
|
|
},
|
|
topbar: {
|
|
search: 'Hledat tok nebo nádrž (např. Lipno)...',
|
|
updated: 'Aktualizováno:'
|
|
},
|
|
kpi: {
|
|
level: 'HLADINA',
|
|
flow: 'PRŮTOK',
|
|
inflow: 'Přítok',
|
|
outflow: 'Odtok',
|
|
fullness: 'ZÁSOBNÍ PROSTOR',
|
|
volume: 'Objem'
|
|
},
|
|
chart: {
|
|
title: 'Dlouhodobý vývoj',
|
|
timeframe: 'Časové období',
|
|
timeframeMobile: 'Časové',
|
|
view: 'Zobrazení',
|
|
raw: 'Syrová data',
|
|
smoothed: 'Vyhlazená',
|
|
calendar: 'Kalendář',
|
|
all: 'Vše',
|
|
year: 'Rok',
|
|
level: 'Hladina',
|
|
inflow: 'Přítok',
|
|
outflow: 'Odtok',
|
|
maxLevel: 'Max. retenční hladina',
|
|
storageLevel: 'Hladina zásobního prostoru',
|
|
dataSources: 'Zdroje dat:',
|
|
createdIn: 'Vytvořeno s ♥ v České republice'
|
|
},
|
|
settings: {
|
|
title: 'Nastavení',
|
|
theme: 'Vzhled',
|
|
dark: 'Tmavý',
|
|
light: 'Světlý',
|
|
language: 'Jazyk',
|
|
english: 'English',
|
|
czech: 'Čeština',
|
|
contact: 'Kontakt',
|
|
contactPlaceholder: 'Vaše e-mailová adresa',
|
|
buyCoffee: 'Kup mi kávu'
|
|
}
|
|
}
|
|
};
|