About improved
This commit is contained in:
parent
10b8680490
commit
7bcf8c7f94
4 changed files with 20 additions and 8 deletions
|
|
@ -25,6 +25,7 @@ class S implements WidgetsLocalizations {
|
|||
String get CANCEL => "CANCEL";
|
||||
String get CLOSE => "CLOSE";
|
||||
String get DELETE => "DELETE";
|
||||
String get NASAAck => "We acknowledge the use of data and imagery from LANCE FIRMS operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.";
|
||||
String get SAVE => "SAVE";
|
||||
String get SHOW => "SHOW";
|
||||
String get UNDO => "UNDO";
|
||||
|
|
@ -39,6 +40,7 @@ class S implements WidgetsLocalizations {
|
|||
String get addedThisLocation => "You have already added this location";
|
||||
String get alertWhenThereIsAFire => "Alert when there is a fire";
|
||||
String get anHour => "an hour";
|
||||
String get appMoto => "Strengthening neighborhoods against wildfires";
|
||||
String get appName => "All Against The Fire!";
|
||||
String get areYouSureTitle => "Are you sure?";
|
||||
String get callEmergencyServicesDescription => "You should call 112 if you have not already done so to notify the emergency services.";
|
||||
|
|
@ -164,6 +166,8 @@ class es extends S {
|
|||
@override
|
||||
String get firesInYourPlaces => "Fuegos en tus lugares";
|
||||
@override
|
||||
String get NASAAck => "Reconocemos el uso de datos e imágenes de LANCE FIRMS operadas por NASA/GSFC/Earth Science Data and Information System (ESDIS) con fondos proporcionados por NASA/HQ.";
|
||||
@override
|
||||
String get isYourUbicationEnabled => "No podemos saber tu ubicación actual. ¿Están los servicios de ubicación en tu móvil activados?";
|
||||
@override
|
||||
String get fireNotificationsTitleShort => "Notificaciones";
|
||||
|
|
@ -200,6 +204,8 @@ class es extends S {
|
|||
@override
|
||||
String get warningThisIsAVeryLargeArea => "Cuidado: esta zona es muy grande";
|
||||
@override
|
||||
String get appMoto => "Fortaleciendo vecindarios contra incendios forestales";
|
||||
@override
|
||||
String get chooseAWatchRadio => "Elige un radio de vigilancia";
|
||||
@override
|
||||
String get CANCEL => "CANCELAR";
|
||||
|
|
|
|||
|
|
@ -59,6 +59,7 @@ Widget mainDrawer(BuildContext context) {
|
|||
return new _ViewModel(unreadCount: store.state.fireNotificationsUnread);
|
||||
},
|
||||
builder: (context, view) {
|
||||
final bottomTextStyle = new TextStyle(fontSize: 12.0, color: Colors.grey);
|
||||
return new ListView(
|
||||
// Important: Remove any padding from the ListView.
|
||||
padding: EdgeInsets.zero,
|
||||
|
|
@ -155,13 +156,14 @@ Widget mainDrawer(BuildContext context) {
|
|||
applicationName: S.of(context).appName,
|
||||
applicationVersion: globals.appVersion,
|
||||
applicationIcon: globals.appMediumIcon,
|
||||
applicationLegalese:
|
||||
S.of(context).appLicense(DateTime.now().year.toString()),
|
||||
applicationLegalese: S.of(context).appLicense(DateTime.now().year.toString()),
|
||||
aboutBoxChildren: <Widget>[
|
||||
// new Text('What?')
|
||||
]
|
||||
// FIXME
|
||||
)
|
||||
new SizedBox(height: 10.0),
|
||||
new Text(S.of(context).appMoto), // , style: new TextStyle(fontStyle: FontStyle.italic)),
|
||||
new SizedBox(height: 10.0),
|
||||
new Text(S.of(context).NASAAck, style: bottomTextStyle),
|
||||
// More ?
|
||||
])
|
||||
]));
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -64,5 +64,7 @@
|
|||
"DELETE": "DELETE",
|
||||
"SHOW": "SHOW",
|
||||
"CLOSE": "CLOSE",
|
||||
"noConnectivity": "This app require an Internet connection"
|
||||
"noConnectivity": "This app require an Internet connection",
|
||||
"NASAAck": "We acknowledge the use of data and imagery from LANCE FIRMS operated by the NASA/GSFC/Earth Science Data and Information System (ESDIS) with funding provided by NASA/HQ.",
|
||||
"appMoto": "Strengthening neighborhoods against wildfires"
|
||||
}
|
||||
|
|
@ -64,5 +64,7 @@
|
|||
"DELETE": "BORRAR",
|
||||
"SHOW": "MOSTRAR",
|
||||
"CLOSE": "CERRAR",
|
||||
"noConnectivity": "Esta aplicación necesita conexión a Internet"
|
||||
"noConnectivity": "Esta aplicación necesita conexión a Internet",
|
||||
"NASAAck": "Reconocemos el uso de datos e imágenes de LANCE FIRMS operadas por NASA/GSFC/Earth Science Data and Information System (ESDIS) con fondos proporcionados por NASA/HQ.",
|
||||
"appMoto": "Fortaleciendo vecindarios contra incendios forestales"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue