2021-05-17 14:32:42 +00:00
|
|
|
/**
|
|
|
|
* All strings contained in the app should be present in this dict.
|
|
|
|
*
|
|
|
|
* If a key is missing in a language, the italian one is displayed instead.
|
|
|
|
*
|
|
|
|
* Define format strings as in C#:
|
|
|
|
* ```js
|
|
|
|
* "Raggio di {number} km"
|
|
|
|
* "{number} km radius"
|
|
|
|
* ```
|
|
|
|
*/
|
2021-05-18 00:04:06 +00:00
|
|
|
export default {
|
2021-05-17 14:32:42 +00:00
|
|
|
// 🇮🇹
|
|
|
|
it: {
|
|
|
|
appName: "N.E.S.T.",
|
|
|
|
appFullName: "Noi Estraiamo Statistiche Tweet",
|
2021-05-17 18:40:56 +00:00
|
|
|
|
2021-05-17 22:22:11 +00:00
|
|
|
server: "Scegli un server",
|
|
|
|
baseURL: "Base URL",
|
|
|
|
notLoggedIn: "Accesso non effettuato",
|
|
|
|
login: "Accedi",
|
|
|
|
email: "Email",
|
|
|
|
passwd: "Password",
|
|
|
|
|
2021-05-17 18:40:56 +00:00
|
|
|
dashboard: "Dashboard",
|
2021-05-17 23:33:08 +00:00
|
|
|
searchBy: "Ricerca per",
|
2021-05-17 18:40:56 +00:00
|
|
|
byZone: "area",
|
|
|
|
byHashtag: "hashtag",
|
|
|
|
byUser: "utente",
|
|
|
|
byTimePeriod: "arco di tempo",
|
|
|
|
timeBefore: "Prima",
|
|
|
|
timeAfter: "Dopo",
|
2021-05-17 22:22:11 +00:00
|
|
|
conditions: "Condizioni",
|
2021-05-17 18:40:56 +00:00
|
|
|
createRepo: "Crea repository",
|
2021-05-17 23:33:08 +00:00
|
|
|
repoName: "Nome repository",
|
2021-05-17 22:22:11 +00:00
|
|
|
request: "Richiedi",
|
|
|
|
filterOR: "Almeno una cond.",
|
|
|
|
filterAND: "Tutte le cond.",
|
|
|
|
rollback: "Annulla modifiche",
|
|
|
|
save: "Salva modifiche",
|
|
|
|
wordcloud: "Wordcloud",
|
2021-05-17 18:40:56 +00:00
|
|
|
|
2021-05-17 22:22:11 +00:00
|
|
|
repositories: "Repositories",
|
2021-05-17 18:40:56 +00:00
|
|
|
repoMenu: "Menu repository",
|
|
|
|
menuActive: "Le tue repository attive",
|
|
|
|
menuArchived: "Le tue repository archiviate",
|
2021-05-17 22:22:11 +00:00
|
|
|
emptyMenu: "Non c'è nulla qui",
|
2021-05-17 18:40:56 +00:00
|
|
|
delete: "Elimina",
|
|
|
|
archive: "Archivia",
|
|
|
|
edit: "Modifica",
|
2021-05-17 22:22:11 +00:00
|
|
|
created: "Creata",
|
|
|
|
archived: "Archiviata",
|
2021-05-17 18:40:56 +00:00
|
|
|
|
|
|
|
alerts: "Allarmi",
|
|
|
|
alertTitle: "I tuoi allarmi",
|
|
|
|
alertCreate: "Crea un allarme",
|
|
|
|
|
|
|
|
settings: "Impostazioni",
|
|
|
|
loggedInTitle: "Accesso effettuato",
|
2021-05-17 23:33:08 +00:00
|
|
|
loggedInOn: "Al momento hai effettuato l'accesso su",
|
|
|
|
loggedInAs: "come",
|
2021-05-17 20:26:18 +00:00
|
|
|
logout: "Esci",
|
2021-05-17 18:40:56 +00:00
|
|
|
switchTheme: "Cambia tema",
|
2021-05-17 22:22:11 +00:00
|
|
|
darkMode: "Scuro",
|
|
|
|
lightMode: "Chiaro",
|
2021-05-17 18:40:56 +00:00
|
|
|
alertSettings: "Impostazioni allarmi",
|
|
|
|
changeEmail: "Cambia il tuo indirizzo email",
|
|
|
|
changePasswd: "Cambia la tua password",
|
|
|
|
|
2021-05-17 22:22:11 +00:00
|
|
|
users: "Utenti",
|
2021-05-17 18:40:56 +00:00
|
|
|
manageUsers: "Gestisci utenti",
|
|
|
|
userList: "Elenco utenti",
|
|
|
|
userCreate: "Crea nuovo utente",
|
2021-05-17 22:22:11 +00:00
|
|
|
userName: "Username",
|
|
|
|
create: "Crea",
|
|
|
|
type: "Tipo",
|
|
|
|
admin: "Amministratore",
|
|
|
|
user: "Utente",
|
2021-05-17 14:32:42 +00:00
|
|
|
},
|
|
|
|
// 🇬🇧
|
|
|
|
en: {
|
|
|
|
appName: "N.E.S.T.",
|
2021-05-17 18:40:56 +00:00
|
|
|
appFullName: "We Extract Statistics from Tweets",
|
|
|
|
|
2021-05-17 22:22:11 +00:00
|
|
|
server: "Choose a server",
|
|
|
|
baseURL: "Base URL",
|
|
|
|
notLoggedIn: "Not logged in",
|
|
|
|
login: "Login",
|
|
|
|
email: "Email",
|
|
|
|
passwd: "Password",
|
|
|
|
|
2021-05-17 18:40:56 +00:00
|
|
|
dashboard: "Dashboard",
|
2021-05-17 23:33:08 +00:00
|
|
|
searchBy: "Search by",
|
2021-05-17 18:40:56 +00:00
|
|
|
byZone: "zone",
|
|
|
|
byHashtag: "hashtag",
|
|
|
|
byUser: "user",
|
|
|
|
byTimePeriod: "time period",
|
|
|
|
timeBefore: "Before",
|
|
|
|
timeAfter: "After",
|
2021-05-17 22:22:11 +00:00
|
|
|
conditions: "Conditions",
|
2021-05-17 18:40:56 +00:00
|
|
|
createRepo: "Create repository",
|
2021-05-17 23:33:08 +00:00
|
|
|
repoName: "Repository name",
|
2021-05-17 22:22:11 +00:00
|
|
|
request: "Request",
|
|
|
|
filterOR: "At least one cond.",
|
|
|
|
filterAND: "Every cond.",
|
|
|
|
rollback: "Rollback changes",
|
|
|
|
save: "Save changes",
|
|
|
|
wordcloud: "Wordcloud",
|
2021-05-17 18:40:56 +00:00
|
|
|
|
2021-05-17 22:22:11 +00:00
|
|
|
repositories: "Repositories",
|
2021-05-17 18:40:56 +00:00
|
|
|
repoMenu: "Repositories menu",
|
|
|
|
menuActive: "Your active repositories",
|
|
|
|
menuArchived: "Your archived repositories",
|
2021-05-17 22:22:11 +00:00
|
|
|
emptyMenu: "There's nothing here",
|
2021-05-17 18:40:56 +00:00
|
|
|
delete: "Delete",
|
|
|
|
archive: "Archive",
|
|
|
|
edit: "Edit",
|
2021-05-17 22:22:11 +00:00
|
|
|
created: "Created",
|
|
|
|
archived: "Archived",
|
2021-05-17 18:40:56 +00:00
|
|
|
|
|
|
|
alerts: "Alerts",
|
|
|
|
alertTitle: "Your alerts",
|
|
|
|
alertCreate: "Create a new alert",
|
|
|
|
|
|
|
|
settings: "Settings",
|
|
|
|
loggedInTitle: "Logged in",
|
2021-05-17 23:33:08 +00:00
|
|
|
loggedInOn: "You are currently logged in at",
|
|
|
|
loggedInAs: "as",
|
2021-05-17 20:26:18 +00:00
|
|
|
logout: "Logout",
|
2021-05-17 18:40:56 +00:00
|
|
|
switchTheme: "Switch theme",
|
2021-05-17 22:22:11 +00:00
|
|
|
darkMode: "Dark",
|
|
|
|
lightMode: "Light",
|
2021-05-17 18:40:56 +00:00
|
|
|
alertSettings: "Alert settings",
|
|
|
|
changeEmail: "Change your email address",
|
|
|
|
changePasswd: "Change your password",
|
|
|
|
|
2021-05-17 22:22:11 +00:00
|
|
|
users: "Users",
|
2021-05-17 18:40:56 +00:00
|
|
|
manageUsers: "Manage users",
|
|
|
|
userList: "User list",
|
|
|
|
userCreate: "Create new user",
|
2021-05-17 22:22:11 +00:00
|
|
|
userName: "Username",
|
|
|
|
create: "Create",
|
|
|
|
type: "Type",
|
|
|
|
admin: "Admin",
|
|
|
|
user: "User",
|
2021-05-17 14:32:42 +00:00
|
|
|
},
|
|
|
|
// 🇫🇮
|
|
|
|
fi: {
|
|
|
|
appName: "N.E.S.T.",
|
2021-05-17 18:40:56 +00:00
|
|
|
appFullName: "Poimimme Twiittien Tilastot",
|
|
|
|
|
2021-05-17 22:22:11 +00:00
|
|
|
server: "Valitse palvelin",
|
|
|
|
baseURL: "Perus-URL",
|
|
|
|
notLoggedIn: "Ei kirjautunut sisään",
|
|
|
|
login: "Kirjaudu sisään",
|
|
|
|
email: "Sähköposti",
|
|
|
|
passwd: "Salasana",
|
|
|
|
|
2021-05-17 18:40:56 +00:00
|
|
|
dashboard: "Kojelauta",
|
|
|
|
searchBy: "Haku ",
|
|
|
|
byZone: "vyöhykkeen mukaan",
|
|
|
|
byHashtag: "hashtagin mukaan",
|
|
|
|
byUser: "käyttäjän mukaan",
|
|
|
|
byTimePeriod: "aikajakson mukaan",
|
|
|
|
timeBefore: "Ennen",
|
|
|
|
timeAfter: "Jälkeen",
|
2021-05-17 22:22:11 +00:00
|
|
|
conditions: "Ehdot",
|
2021-05-17 18:40:56 +00:00
|
|
|
createRepo: "Luo arkisto",
|
2021-05-17 23:33:08 +00:00
|
|
|
repoName: "Arkiston nimi",
|
2021-05-17 22:22:11 +00:00
|
|
|
request: "Pyydä",
|
|
|
|
filterOR: "Vähintään yksi ehto",
|
|
|
|
filterAND: "Kaikki ehdot",
|
|
|
|
rollback: "Peruuta muutokset",
|
|
|
|
save: "Tallenna muutokset",
|
|
|
|
wordcloud: "Sanapilvi",
|
|
|
|
|
|
|
|
repositories: "Arkistot",
|
|
|
|
repoMenu: "Arkistot-valikko",
|
|
|
|
menuActive: "Aktiiviset arkistosi",
|
|
|
|
menuArchived: "Arkistoidut arkistosi",
|
|
|
|
emptyMenu: "Täällä ei ole mitään",
|
|
|
|
delete: "Poista",
|
|
|
|
archive: "Arkistoi",
|
|
|
|
edit: "Muokkaa",
|
|
|
|
created: "Luotu",
|
|
|
|
archived: "Arkisto",
|
|
|
|
|
|
|
|
alerts: "Hälytykset",
|
|
|
|
alertTitle: "Hälytyksesi",
|
|
|
|
alertCreate: "Luo uusi hälytys",
|
|
|
|
|
|
|
|
settings: "Asetukset",
|
|
|
|
loggedInTitle: "Kirjautunut sisään",
|
2021-05-17 23:33:08 +00:00
|
|
|
loggedInOn: "Olet tällä hetkellä kirjautuneena sisään",
|
|
|
|
loggedInAs: "nimellä",
|
2021-05-17 22:22:11 +00:00
|
|
|
logout: "Kirjaudu ulos",
|
|
|
|
switchTheme: "Vaihda teema",
|
|
|
|
darkMode: "Tumma",
|
|
|
|
lightMode: "Selkeä",
|
|
|
|
alertSettings: "Hälytysasetukset",
|
|
|
|
changeEmail: "Vaihda sähköpostiosoitteesi",
|
|
|
|
changePasswd: "Vaihda salasanasi",
|
|
|
|
|
|
|
|
users: "Käyttäjät",
|
|
|
|
manageUsers: "Käyttäjien hallinta",
|
|
|
|
userList: "Käyttäjäluettelo",
|
|
|
|
userCreate: "Luo uusi käyttäjä",
|
|
|
|
userName: "Käyttäjätunnus",
|
|
|
|
create: "Luo",
|
|
|
|
type: "Tyyppi",
|
|
|
|
admin: "Ylläpitäjä",
|
|
|
|
user: "Käyttäjä",
|
2021-05-17 14:32:42 +00:00
|
|
|
}
|
2021-05-18 00:04:06 +00:00
|
|
|
}
|