mirror of
https://bitbucket.org/FransoletThomas/tablet-app.git
synced 2025-12-06 16:41:19 +00:00
44 lines
1.4 KiB
Dart
44 lines
1.4 KiB
Dart
import 'package:tablet_app/Models/translation.dart';
|
|
|
|
List<Translation> translations = [
|
|
Translation(language: "FR", data: {
|
|
"weather.hourly": "Prochaines heures",
|
|
"weather.nextdays": "Prochains jours"
|
|
}),
|
|
Translation(language: "EN", data: {
|
|
"weather.hourly": "Hourly",
|
|
"weather.nextdays": "Next days"
|
|
}),
|
|
Translation(language: "DE", data: {
|
|
"weather.hourly": "Nächste Stunden",
|
|
"weather.nextdays": "Nächsten Tage"
|
|
}),
|
|
Translation(language: "NL", data: {
|
|
"weather.hourly": "Volgende uren",
|
|
"weather.nextdays": "Volgende dagen"
|
|
}),
|
|
Translation(language: "IT", data: {
|
|
"weather.hourly": "Le prossime ore",
|
|
"weather.nextdays": "Prossimi giorni"
|
|
}),
|
|
Translation(language: "ES", data: {
|
|
"weather.hourly": "Próximas horas",
|
|
"weather.nextdays": "Proximos dias"
|
|
}),
|
|
Translation(language: "PL", data: {
|
|
"weather.hourly": "Następne godziny",
|
|
"weather.nextdays": "Następne dni"
|
|
}),
|
|
Translation(language: "CN", data: {
|
|
"weather.hourly": "接下来的几个小时",
|
|
"weather.nextdays": "未来几天"
|
|
}),
|
|
Translation(language: "UK", data: {
|
|
"weather.hourly": "Наступні години",
|
|
"weather.nextdays": "Наступні дні"
|
|
}),
|
|
Translation(language: "AR", data: {
|
|
"weather.hourly": "الساعات القادمة",
|
|
"weather.nextdays": "الايام القادمة"
|
|
}),
|
|
]; |