mirror of
https://bitbucket.org/FransoletThomas/tablet-app.git
synced 2025-12-06 08:31:19 +00:00
54 lines
1.6 KiB
Dart
54 lines
1.6 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"
|
|
}),
|
|
Translation(language: "EN", data: {
|
|
"weather.hourly": "Hourly",
|
|
"weather.nextdays": "Next days",
|
|
"agenda.all": "All"
|
|
}),
|
|
Translation(language: "DE", data: {
|
|
"weather.hourly": "Nächste Stunden",
|
|
"weather.nextdays": "Nächsten Tage",
|
|
"agenda.all": "Alle"
|
|
}),
|
|
Translation(language: "NL", data: {
|
|
"weather.hourly": "Volgende uren",
|
|
"weather.nextdays": "Volgende dagen",
|
|
"agenda.all": "Alle"
|
|
}),
|
|
Translation(language: "IT", data: {
|
|
"weather.hourly": "Le prossime ore",
|
|
"weather.nextdays": "Prossimi giorni",
|
|
"agenda.all": "Tutto"
|
|
}),
|
|
Translation(language: "ES", data: {
|
|
"weather.hourly": "Próximas horas",
|
|
"weather.nextdays": "Proximos dias",
|
|
"agenda.all": "Todo"
|
|
}),
|
|
Translation(language: "PL", data: {
|
|
"weather.hourly": "Następne godziny",
|
|
"weather.nextdays": "Następne dni",
|
|
"agenda.all": "Wszystko"
|
|
}),
|
|
Translation(language: "CN", data: {
|
|
"weather.hourly": "接下来的几个小时",
|
|
"weather.nextdays": "未来几天",
|
|
"agenda.all": "全部"
|
|
}),
|
|
Translation(language: "UK", data: {
|
|
"weather.hourly": "Наступні години",
|
|
"weather.nextdays": "Наступні дні",
|
|
"agenda.all": "все"
|
|
}),
|
|
Translation(language: "AR", data: {
|
|
"weather.hourly": "الساعات القادمة",
|
|
"weather.nextdays": "الايام القادمة",
|
|
"agenda.all": "الجميع"
|
|
}),
|
|
]; |