diff --git a/lib/generated/i18n.dart b/lib/generated/i18n.dart index 318df4d..1b1c58c 100644 --- a/lib/generated/i18n.dart +++ b/lib/generated/i18n.dart @@ -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"; diff --git a/lib/mainDrawer.dart b/lib/mainDrawer.dart index 06aa6ba..8e328da 100644 --- a/lib/mainDrawer.dart +++ b/lib/mainDrawer.dart @@ -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: [ - // 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 ? + ]) ])); }); } diff --git a/res/values/strings_en.arb b/res/values/strings_en.arb index f8a9139..f63eaa3 100644 --- a/res/values/strings_en.arb +++ b/res/values/strings_en.arb @@ -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" } \ No newline at end of file diff --git a/res/values/strings_es.arb b/res/values/strings_es.arb index a8372eb..fa0b3ea 100644 --- a/res/values/strings_es.arb +++ b/res/values/strings_es.arb @@ -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" } \ No newline at end of file