minor format and wording fixes

This commit is contained in:
Thibault Deckers 2021-02-21 11:19:34 +09:00
parent 6f863c7aca
commit 2d50465ce6
5 changed files with 7 additions and 7 deletions

View file

@ -4,7 +4,7 @@ Aves is an open-source gallery and metadata explorer app allowing you to access
You must use the app for legal, authorized and acceptable purposes.
# Disclaimer
This app is released "as-is", without any warranty, responsibility or liability. Use of the app is at your own risk.
This app is released “as-is”, without any warranty, responsibility or liability. Use of the app is at your own risk.
# Privacy policy
Aves does not collect any personal data in its standard use. We never have access to your photos and videos. This also means that we cannot get them back for you if you delete them without backing them up.

View file

@ -42,7 +42,7 @@ class AvesAvailability {
return _hasPlayServices;
}
// local geolocation with `geocoder` requires Play Services
// local geocoding with `geocoder` requires Play Services
Future<bool> get canLocatePlaces => Future.wait<bool>([isConnected, hasPlayServices]).then((results) => results.every((result) => result));
Future<bool> get isNewVersionAvailable async {

View file

@ -456,7 +456,7 @@ class AvesEntry {
}
}
// quick reverse geolocation to find the country, using an offline asset
// quick reverse geocoding to find the country, using an offline asset
Future<void> _locateCountry() async {
if (hasAddress) return;
final countryCode = await countryTopology.countryCode(latLng);
@ -472,7 +472,7 @@ class AvesEntry {
);
}
// full reverse geolocation, requiring Play Services and some connectivity
// full reverse geocoding, requiring Play Services and some connectivity
Future<void> locatePlace({@required bool background}) async {
if (hasPlace) return;

View file

@ -33,7 +33,7 @@ mixin LocationMixin on SourceBase {
await _locatePlaces();
}
// quick reverse geolocation to find the countries, using an offline asset
// quick reverse geocoding to find the countries, using an offline asset
Future<void> _locateCountries() async {
final todo = visibleEntries.where((entry) => entry.hasGps && entry.addressDetails?.countryCode == null).toSet();
if (todo.isEmpty) return;
@ -56,7 +56,7 @@ mixin LocationMixin on SourceBase {
// debugPrint('$runtimeType _locateCountries complete in ${stopwatch.elapsed.inSeconds}s');
}
// full reverse geolocation, requiring Play Services and some connectivity
// full reverse geocoding, requiring Play Services and some connectivity
Future<void> _locatePlaces() async {
if (!(await availability.canLocatePlaces)) return;

View file

@ -35,7 +35,7 @@ class BasicSection extends StatelessWidget {
bool get showMegaPixels => entry.isPhoto && megaPixels != null && megaPixels > 0;
String get rasterResolutionText => '${entry.resolutionText}${showMegaPixels ? ' ($megaPixels MP)' : ''}';
String get rasterResolutionText => '${entry.resolutionText}${showMegaPixels ? ' $megaPixels MP' : ''}';
@override
Widget build(BuildContext context) {