mirror of
https://bitbucket.org/FransoletThomas/tablet-app.git
synced 2025-12-06 16:41:19 +00:00
124 lines
3.5 KiB
Dart
124 lines
3.5 KiB
Dart
import 'package:tablet_app/Models/translation.dart';
|
|
|
|
List<Translation> translations = [
|
|
Translation(language: "FR", data: {
|
|
"weather.hourly": "Prochaines heures",
|
|
"weather.nextdays": "Prochains jours",
|
|
"agenda.all": "Tout",
|
|
"monday": "Lundi",
|
|
"tuesday": "Mardi",
|
|
"wednesday": "Mercredi",
|
|
"thursday": "Jeudi",
|
|
"friday": "Vendredi",
|
|
"saturday": "Samedi",
|
|
"sunday": "Dimanche",
|
|
}),
|
|
Translation(language: "EN", data: {
|
|
"weather.hourly": "Hourly",
|
|
"weather.nextdays": "Next days",
|
|
"agenda.all": "All",
|
|
"monday": "Monday",
|
|
"tuesday": "Tuesday",
|
|
"wednesday": "Wednesday",
|
|
"thursday": "Thursday",
|
|
"friday": "Friday",
|
|
"saturday": "Saturday",
|
|
"sunday": "Sunday"
|
|
}),
|
|
Translation(language: "DE", data: {
|
|
"weather.hourly": "Nächste Stunden",
|
|
"weather.nextdays": "Nächsten Tage",
|
|
"agenda.all": "Alle",
|
|
"monday": "Montag",
|
|
"tuesday": "Dienstag",
|
|
"wednesday": "Mittwoch",
|
|
"thursday": "Donnerstag",
|
|
"friday": "Freitag",
|
|
"saturday": "Samstag",
|
|
"sunday": "Sonntag"
|
|
}),
|
|
Translation(language: "NL", data: {
|
|
"weather.hourly": "Volgende uren",
|
|
"weather.nextdays": "Volgende dagen",
|
|
"agenda.all": "Alle",
|
|
"monday": "Maandag",
|
|
"tuesday": "Dinsdag",
|
|
"wednesday": "Woensdag",
|
|
"thursday": "Donderdag",
|
|
"friday": "Vrijdag",
|
|
"saturday": "Zaterdag",
|
|
"sunday": "Zondag"
|
|
}),
|
|
Translation(language: "IT", data: {
|
|
"weather.hourly": "Le prossime ore",
|
|
"weather.nextdays": "Prossimi giorni",
|
|
"agenda.all": "Tutto",
|
|
"monday": "Lunedì",
|
|
"tuesday": "Martedì",
|
|
"wednesday": "Mercoledì",
|
|
"thursday": "Giovedì",
|
|
"friday": "Venerdì",
|
|
"saturday": "Sabato",
|
|
"sunday": "Domenica"
|
|
}),
|
|
Translation(language: "ES", data: {
|
|
"weather.hourly": "Próximas horas",
|
|
"weather.nextdays": "Proximos dias",
|
|
"agenda.all": "Todo",
|
|
"monday": "Lunes",
|
|
"tuesday": "Martes",
|
|
"wednesday": "Miércoles",
|
|
"thursday": "Jueves",
|
|
"friday": "Viernes",
|
|
"saturday": "Sábado",
|
|
"sunday": "Domingo"
|
|
}),
|
|
Translation(language: "PL", data: {
|
|
"weather.hourly": "Następne godziny",
|
|
"weather.nextdays": "Następne dni",
|
|
"agenda.all": "Wszystko",
|
|
"monday": "Poniedziałek",
|
|
"tuesday": "Wtorek",
|
|
"wednesday": "Środa",
|
|
"thursday": "Czwartek",
|
|
"friday": "Piątek",
|
|
"saturday": "Sobota",
|
|
"sunday": "Niedziela"
|
|
}),
|
|
Translation(language: "CN", data: {
|
|
"weather.hourly": "接下来的几个小时",
|
|
"weather.nextdays": "未来几天",
|
|
"agenda.all": "全部",
|
|
"monday": "星期一",
|
|
"tuesday": "星期二",
|
|
"wednesday": "星期三",
|
|
"thursday": "星期四",
|
|
"friday": "星期五",
|
|
"saturday": "星期六",
|
|
"sunday": "星期日"
|
|
}),
|
|
Translation(language: "UK", data: {
|
|
"weather.hourly": "Наступні години",
|
|
"weather.nextdays": "Наступні дні",
|
|
"agenda.all": "все",
|
|
"monday": "Понеділок",
|
|
"tuesday": "Вівторок",
|
|
"wednesday": "Середа",
|
|
"thursday": "Четвер",
|
|
"friday": "П'ятниця",
|
|
"saturday": "Субота",
|
|
"sunday": "Неділя"
|
|
}),
|
|
Translation(language: "AR", data: {
|
|
"weather.hourly": "الساعات القادمة",
|
|
"weather.nextdays": "الايام القادمة",
|
|
"agenda.all": "الجميع",
|
|
"monday": "الإثنين",
|
|
"tuesday": "الثلاثاء",
|
|
"wednesday": "الأربعاء",
|
|
"thursday": "الخميس",
|
|
"friday": "الجمعة",
|
|
"saturday": "السبت",
|
|
"sunday": "الأحد"
|
|
}),
|
|
]; |