mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-07-31 07:42:30 +10:00
Merge pull request #461 from ericszimmermann/ez_alternative_maps
Alternative Maps
This commit is contained in:
@@ -944,6 +944,28 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
@override
|
||||
String get appSettings_lastWeek => 'Letzte Woche';
|
||||
|
||||
@override
|
||||
String get appSettings_rasterTileSource => 'Quelle für Rasterkacheln';
|
||||
|
||||
@override
|
||||
String get appSettings_stadiaEndpoint => 'Stadia-Endpunkt';
|
||||
|
||||
@override
|
||||
String get appSettings_stadiaApiKey => 'Stadia-API-Schlüssel';
|
||||
|
||||
@override
|
||||
String get appSettings_stadiaApiKeyRequired =>
|
||||
'Für die Nutzung von Stadia Maps erforderlich';
|
||||
|
||||
@override
|
||||
String appSettings_stadiaApiKeyConfigured(String maskedKey) {
|
||||
return 'Konfiguriert: $maskedKey';
|
||||
}
|
||||
|
||||
@override
|
||||
String get appSettings_stadiaApiKeyDialogDescription =>
|
||||
'Geben Sie Ihren Stadia-Maps-API-Schlüssel ein. Die App verwendet ihn für Rasterkachel-Anfragen.';
|
||||
|
||||
@override
|
||||
String get appSettings_offlineMapCache => 'Offline-Karten-Cache';
|
||||
|
||||
@@ -2098,6 +2120,42 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
return 'Fehlgeschlagene Downloads: $count';
|
||||
}
|
||||
|
||||
@override
|
||||
String get mapCache_cachedTilesLabel => 'Cached tiles';
|
||||
|
||||
@override
|
||||
String get mapCache_cachedTileSummaryLabel => 'Cached tile summary';
|
||||
|
||||
@override
|
||||
String mapCache_bulkDownloadDisabledForSource(String source) {
|
||||
return 'Offline bulk downloads are disabled for $source.';
|
||||
}
|
||||
|
||||
@override
|
||||
String mapCache_bulkDownloadDisabledInConfig(String source) {
|
||||
return 'Offline bulk downloads are disabled for $source in this app configuration.';
|
||||
}
|
||||
|
||||
@override
|
||||
String mapCache_summarySource(String source) {
|
||||
return 'Source: $source';
|
||||
}
|
||||
|
||||
@override
|
||||
String mapCache_summaryCachedTilesForSource(int count) {
|
||||
return 'Cached tiles for source: $count';
|
||||
}
|
||||
|
||||
@override
|
||||
String mapCache_summaryCachedInSelection(int count) {
|
||||
return 'Cached in selected area/zoom: $count';
|
||||
}
|
||||
|
||||
@override
|
||||
String mapCache_summaryApproxCacheSize(String size) {
|
||||
return 'Approx cache size: $size';
|
||||
}
|
||||
|
||||
@override
|
||||
String mapCache_boundsLabel(
|
||||
String north,
|
||||
|
||||
Reference in New Issue
Block a user