Merge branch 'master' of ssh://github.com/osmandapp/Osmand into waypoint_categories_import

This commit is contained in:
Alexander Sytnyk 2018-03-19 16:47:12 +02:00
commit 41d45f7dcf
126 changed files with 314 additions and 119 deletions

View file

@ -69,6 +69,11 @@ public abstract class AbstractPoiType {
return registry.getTranslation(this);
}
public String getEnTranslation() {
return registry.getEnTranslation(this);
}
public String getPoiAdditionalCategoryTranslation() {
if (poiAdditionalCategory != null) {
return registry.getPoiTranslation(poiAdditionalCategory);

View file

@ -54,6 +54,9 @@ public class MapPoiTypes {
String getTranslation(AbstractPoiType type);
String getTranslation(String keyName);
String getEnTranslation(AbstractPoiType type);
String getEnTranslation(String keyName);
}
public static MapPoiTypes getDefaultNoInit() {
@ -696,6 +699,16 @@ public class MapPoiTypes {
}
public String getEnTranslation(AbstractPoiType abstractPoiType) {
if (poiTranslator != null) {
String translation = poiTranslator.getEnTranslation(abstractPoiType);
if (!Algorithms.isEmpty(translation)) {
return translation;
}
}
return getBasePoiName(abstractPoiType);
}
public String getTranslation(AbstractPoiType abstractPoiType) {
if (poiTranslator != null) {
String translation = poiTranslator.getTranslation(abstractPoiType);
@ -703,6 +716,10 @@ public class MapPoiTypes {
return translation;
}
}
return getBasePoiName(abstractPoiType);
}
private String getBasePoiName(AbstractPoiType abstractPoiType) {
String name = abstractPoiType.getKeyName();
if(name.startsWith("osmand_")) {
name = name.substring("osmand_".length());

0
OsmAnd-java/src/net/osmand/osm/io/OsmBaseStorage.java Executable file → Normal file
View file

View file

@ -616,13 +616,13 @@ public class SearchCoreFactory {
List<AbstractPoiType> results = new ArrayList<AbstractPoiType>() ;
NameStringMatcher nm = phrase.getNameStringMatcher();
for (PoiFilter pf : topVisibleFilters) {
if (!phrase.isUnknownSearchWordPresent() || nm.matches(pf.getTranslation())) {
if (!phrase.isUnknownSearchWordPresent() || nm.matches(pf.getTranslation()) || nm.matches(pf.getEnTranslation())) {
results.add(pf);
}
}
if (phrase.isUnknownSearchWordPresent()) {
for (PoiCategory c : categories) {
if (!results.contains(c) && nm.matches(c.getTranslation())) {
if (!results.contains(c) && (nm.matches(c.getTranslation()) || nm.matches(c.getEnTranslation()) ) ) {
results.add(c);
}
}
@ -631,13 +631,14 @@ public class SearchCoreFactory {
Entry<String, PoiType> e = it.next();
PoiType pt = e.getValue();
if (pt.getCategory() != types.getOtherMapCategory()) {
if (!results.contains(pt) && (nm.matches(e.getKey()) || nm.matches(pt.getTranslation()))) {
if (!results.contains(pt) && ( nm.matches(pt.getEnTranslation()) || nm.matches(pt.getTranslation()) )) {
results.add(pt);
}
List<PoiType> additionals = pt.getPoiAdditionals();
if (additionals != null) {
for (PoiType a : additionals) {
if (!a.isReference() && !results.contains(a) && (nm.matches(a.getKeyName().replace('_', ' ')) || nm.matches(a.getTranslation()))) {
if (!a.isReference() && !results.contains(a) &&
( nm.matches(a.getEnTranslation()) || nm.matches(a.getTranslation()) )) {
results.add(a);
}
}

View file

@ -39,6 +39,7 @@ public class OpeningHoursParser {
DateFormatSymbols dateFormatSymbols = DateFormatSymbols.getInstance(Locale.US);
monthsStr = dateFormatSymbols.getShortMonths();
daysStr = getTwoLettersStringArray(dateFormatSymbols.getShortWeekdays());
dateFormatSymbols = DateFormatSymbols.getInstance();
localMothsStr = dateFormatSymbols.getShortMonths();
localDaysStr = getTwoLettersStringArray(dateFormatSymbols.getShortWeekdays());
@ -78,8 +79,8 @@ public class OpeningHoursParser {
String[] newStrings = new String[strings.length];
for (int i = 0; i < strings.length; i++) {
if (strings[i] != null) {
if (strings[i].length() > 2) {
newStrings[i] = Algorithms.capitalizeFirstLetter(strings[i].substring(0, 2));
if (strings[i].length() > 3) {
newStrings[i] = Algorithms.capitalizeFirstLetter(strings[i].substring(0, 3));
} else {
newStrings[i] = Algorithms.capitalizeFirstLetter(strings[i]);
}

0
OsmAnd/.settings/org.eclipse.jdt.core.prefs Executable file → Normal file
View file

View file

@ -6,6 +6,10 @@
android:icon="@mipmap/icon_free"
android:label="@string/app_name_free"
tools:replace="android:icon, android:label">
<meta-data android:name="com.facebook.sdk.ApplicationId" android:resource="@string/facebook_app_id"/>
<activity android:name="com.facebook.FacebookActivity"/>
<activity
android:name="net.osmand.plus.activities.MapActivity"
android:theme="@style/FirstSplashScreenFree"

View file

@ -380,7 +380,7 @@ dependencies {
if (analytics) {
compile 'com.google.firebase:firebase-core:9.8.0'
compile 'com.google.firebase:firebase-config:9.8.0'
implementation 'com.facebook.android:facebook-android-sdk:[4,5)'
}
// compile project(':eclipse-compile:design')
// compile project(':eclipse-compile:cardview')

View file

@ -5,6 +5,7 @@
<!-- string name="app_version_suffix"></string -->
<!-- Not translatable -->
<string name="facebook_app_id">2057524931189530</string>
<string name="full_version_price">€7,99</string>
<string name="osm_live">OsmAnd Live</string>
<string name="ga_api_key">UA-28342846-2</string>

0
OsmAnd/proguard-project.txt Executable file → Normal file
View file

0
OsmAnd/res/drawable-hdpi/ic_action_battery.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

0
OsmAnd/res/drawable-hdpi/map_search_dark.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

0
OsmAnd/res/drawable-hdpi/map_search_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

0
OsmAnd/res/drawable-hdpi/widget_battery_day.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

0
OsmAnd/res/drawable-hdpi/widget_battery_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

0
OsmAnd/res/drawable-large-hdpi/map_search_dark.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

0
OsmAnd/res/drawable-large-hdpi/map_search_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

0
OsmAnd/res/drawable-large-hdpi/map_target_point.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View file

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

0
OsmAnd/res/drawable-large-hdpi/widget_battery_day.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

0
OsmAnd/res/drawable-large-xhdpi/map_search_dark.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

0
OsmAnd/res/drawable-large-xhdpi/map_search_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

0
OsmAnd/res/drawable-large-xhdpi/map_target_point.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

0
OsmAnd/res/drawable-large-xhdpi/widget_battery_day.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

0
OsmAnd/res/drawable-large/map_search_dark.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

0
OsmAnd/res/drawable-large/map_search_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

0
OsmAnd/res/drawable-large/warnings_limit.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

View file

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

0
OsmAnd/res/drawable-large/widget_battery_day.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

0
OsmAnd/res/drawable-large/widget_battery_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
OsmAnd/res/drawable-mdpi/ic_action_battery.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 3 KiB

0
OsmAnd/res/drawable-mdpi/ic_action_circle.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
OsmAnd/res/drawable-mdpi/ic_action_label.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

0
OsmAnd/res/drawable-mdpi/ic_action_wikipedia.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 729 B

After

Width:  |  Height:  |  Size: 729 B

0
OsmAnd/res/drawable-mdpi/map_intermediate_point.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

0
OsmAnd/res/drawable-mdpi/map_search_dark.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

0
OsmAnd/res/drawable-mdpi/map_search_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

0
OsmAnd/res/drawable-mdpi/map_target_point.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

0
OsmAnd/res/drawable-mdpi/warnings_limit.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

0
OsmAnd/res/drawable-mdpi/widget_battery_day.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

0
OsmAnd/res/drawable-mdpi/widget_battery_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

0
OsmAnd/res/drawable-xhdpi/ic_action_battery.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

0
OsmAnd/res/drawable-xhdpi/ic_action_circle.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

0
OsmAnd/res/drawable-xhdpi/ic_action_label.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

0
OsmAnd/res/drawable-xhdpi/ic_action_wikipedia.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

0
OsmAnd/res/drawable-xhdpi/map_intermediate_point.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

0
OsmAnd/res/drawable-xhdpi/map_search_dark.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

0
OsmAnd/res/drawable-xhdpi/map_search_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

0
OsmAnd/res/drawable-xhdpi/map_target_point.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

0
OsmAnd/res/drawable-xhdpi/warnings_limit.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View file

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

0
OsmAnd/res/drawable-xhdpi/widget_battery_day.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

0
OsmAnd/res/drawable-xhdpi/widget_battery_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 3 KiB

View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

0
OsmAnd/res/drawable-xxhdpi/ic_action_battery.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

0
OsmAnd/res/drawable-xxhdpi/ic_action_circle.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

0
OsmAnd/res/drawable-xxhdpi/ic_action_label.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

0
OsmAnd/res/drawable-xxhdpi/ic_action_wikipedia.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

0
OsmAnd/res/drawable-xxhdpi/map_intermediate_point.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

0
OsmAnd/res/drawable-xxhdpi/map_search_dark.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

0
OsmAnd/res/drawable-xxhdpi/map_search_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

0
OsmAnd/res/drawable-xxhdpi/warnings_limit.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View file

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

0
OsmAnd/res/drawable-xxhdpi/widget_battery_day.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

0
OsmAnd/res/drawable-xxhdpi/widget_battery_night.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

Before

Width:  |  Height:  |  Size: 4 KiB

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -3826,4 +3826,6 @@
<string name="poi_outpost">Пункт дастаўкі замоў</string>
<string name="poi_barbecue_grill">Мангал: так</string>
</resources>

View file

@ -3499,4 +3499,80 @@
<string name="poi_water_purification">Čištění vody</string>
<string name="poi_water_place_access">Přístup k místu s vodou</string>
</resources>
<string name="poi_climbing_style">Lezecký styl</string>
<string name="poi_socket">Zásuvka</string>
<string name="poi_socket_chademo_output_filter">CHAdeMO</string>
<string name="poi_socket_type2_output_filter">Typ 2</string>
<string name="poi_socket_type2_combo_output_filter">Typ 2 kombinovaný</string>
<string name="poi_socket_type3_output_filter">Typ 3</string>
<string name="poi_socket_cee_blue_output_filter">CEE blue</string>
<string name="poi_socket_schuko_output_filter">Schuko</string>
<string name="poi_lock_basin">Zdymadlo</string>
<string name="poi_seamark_clearance_height">Podjezdná výška</string>
<string name="poi_seamark_clearance_height_closed">Podjezdná výška (uzavřeno)</string>
<string name="poi_seamark_clearance_height_open">Podjezdná výška (otevřeno)</string>
<string name="poi_seamark_clearance_width">Šířka plavební dráhy</string>
<string name="poi_route_subway_ref">Metro</string>
<string name="poi_cuisine_doner">Šavarma</string>
<string name="poi_cuisine_beef_bowl">Gyudon</string>
<string name="poi_cuisine_tapas">Tapas</string>
<string name="poi_cuisine_heuriger">Heuriger</string>
<string name="poi_cuisine_buschenschank">Buschenschank</string>
<string name="poi_cuisine_bagel">Bagel</string>
<string name="poi_cuisine_soba">Soba</string>
<string name="poi_cuisine_deli">Delikatesy</string>
<string name="poi_cuisine_suki">Suki</string>
<string name="poi_cuisine_udon">Udon</string>
<string name="poi_cuisine_brasserie">Bistro</string>
<string name="poi_cuisine_yakitori">Yakitori</string>
<string name="poi_cuisine_sagardotegia">Cidrerie</string>
<string name="poi_cuisine_pita">Pita</string>
<string name="poi_cuisine_fondue">Fondue</string>
<string name="poi_cuisine_pastel">Pastel</string>
<string name="poi_cuisine_teriyaki">Terijaki</string>
<string name="poi_cuisine_shawarma">Šavarma</string>
<string name="poi_cuisine_tex_mex">Tex-mex</string>
<string name="poi_party">Party potřeby</string>
<string name="poi_gambling_pachinko">Pačinko</string>
<string name="poi_motorcycle_type_chopper">Chopper</string>
<string name="poi_motorcycle_type_dualsport">Dualsport</string>
<string name="poi_boat_jetski_rental_yes">Vodní skútry: ano</string>
<string name="poi_boat_jetski_rental_no">Vodní skútry: ne</string>
<string name="poi_gorge">Rokle</string>
<string name="poi_mountain_area">Horská oblast</string>
<string name="poi_surface_clay">Antuka</string>
<string name="poi_surface_tartan">Tartan</string>
<string name="poi_surface_artificial_turf">Umělý trávník</string>
<string name="poi_surface_decoturf">DecoTurf</string>
<string name="poi_surface_metal_grid">Kovový rošt</string>
<string name="poi_location_underground">Umístění: pod zemí</string>
<string name="poi_location_underwater">Umístění: pod vodou</string>
<string name="poi_location_overground">Umístění: u země</string>
<string name="poi_location_overhead">Umístění: nad zemí</string>
<string name="poi_location_roof">Umístění: na střeše</string>
<string name="poi_location_rooftop">Umístění: na střeše</string>
<string name="poi_location_outdoor">Umístění: venku</string>
<string name="poi_location_indoor">Umístění: uvnitř</string>
<string name="poi_location_platform">Umístění: námořní plošina</string>
<string name="poi_location_kiosk">Umístění: schránka</string>
<string name="poi_location_bridge">Umístění: na mostě</string>
<string name="poi_location_wall">Umístění: na zdi</string>
<string name="poi_location_entrance">Umístění: vstup</string>
<string name="poi_visibility_house">Viditelnost: z chodníku</string>
<string name="poi_visibility_street">Viditelnost: z ulice</string>
<string name="poi_visibility_area">Viditelnost: z dálky</string>
<string name="poi_operational_status_open">Otevřeno</string>
<string name="poi_operational_status_closed">Zavřeno</string>
<string name="poi_operational_status_restricted">Omezeno</string>
<string name="poi_operational_status_broken">Nefunkční</string>
<string name="poi_operational_status_needs_maintenance">Vyžaduje údržbu</string>
</resources>

View file

@ -3784,4 +3784,8 @@
<string name="poi_whitewater_rapid_name">Name der Stromschnellen</string>
<string name="poi_outpost">Anlieferungsstelle des Geschäftes</string>
<string name="poi_barbecue_grill">Barbecue-Grill: ja</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="distance_moving">Korrigierte Distanz</string>
<string name="wiki_around">Wikipedia-Artikel zur Umgebung</string>
@ -2940,4 +2941,5 @@ Abgedeckte Fläche: %1$s x %2$s</string>
<string name="transport_nearby_routes">IN DER NÄHE</string>
<string name="group_deleted">Gruppe gelöscht</string>
<string name="rendering_attr_whiteWaterSports_name">Wildwasser Sportarten</string>
<string name="clear_all_intermediates">Alle Zwischenpunkte löschen</string>
</resources>

View file

@ -3794,4 +3794,6 @@
<string name="poi_outpost">Ricevejo de aĉetaĵoj</string>
<string name="poi_barbecue_grill">Rostigilo: jes</string>
</resources>

View file

@ -1024,7 +1024,7 @@
<string name="poi_shower">Duchas</string>
<string name="poi_drinking_water_yes"></string>
<string name="poi_drinking_water_no">No</string>
<string name="poi_supervised_yes">Supervisado: Sí</string>
<string name="poi_supervised_yes">Supervisado: sí</string>
<string name="poi_supervised_no">Supervisado: No</string>
<string name="poi_seasonal_yes"></string>
<string name="poi_seasonal_no">No</string>
@ -1225,7 +1225,7 @@
<string name="poi_rural">Rural</string>
<string name="poi_seats">Asientos</string>
<string name="poi_backrest_yes">Respaldo: Sí</string>
<string name="poi_backrest_yes">Respaldo: sí</string>
<string name="poi_backrest_no">Respaldo: No</string>
<string name="poi_intermittent">Intermitente</string>
@ -1378,12 +1378,12 @@
<string name="poi_capacity_disabled_yes"></string>
<string name="poi_capacity_disabled_no">Lugares para discapacitados: No</string>
<string name="poi_capacity_disabled">Lugares para discapacitados</string>
<string name="poi_capacity_women_yes">Lugares para mujeres: Sí</string>
<string name="poi_capacity_women_yes">Lugares para mujeres: sí</string>
<string name="poi_capacity_women_no">Lugares para mujeres: No</string>
<string name="poi_capacity_women">Lugares para mujeres</string>
<string name="poi_capacity_pupils">Lugares para estudiantes</string>
<string name="poi_capacity_teachers">Lugares para profesores</string>
<string name="poi_capacity_parent_yes">Lugares para padres: Sí</string>
<string name="poi_capacity_parent_yes">Lugares para padres: sí</string>
<string name="poi_capacity_parent_no">Lugares para padres: No</string>
<string name="poi_capacity_parent">Lugares para padres</string>
@ -1422,7 +1422,7 @@
<string name="poi_love_hotel">Albergue transitorio</string>
<string name="poi_internet_access_yes">Conexión a Internet: Sí</string>
<string name="poi_internet_access_yes">Conexión a Internet: sí</string>
<string name="poi_internet_access_no">Conexión a Internet: No</string>
<string name="poi_payment_coins_yes">Monedas</string>
@ -1604,12 +1604,12 @@
<string name="poi_microbrewery_yes"></string>
<string name="poi_microbrewery_no">Cerveza artesanal: No</string>
<string name="poi_takeaway_yes">Comida para llevar: Sí</string>
<string name="poi_takeaway_yes">Comida para llevar: sí</string>
<string name="poi_takeaway_no">Comida para llevar: No</string>
<string name="poi_takeaway_only">Comida para llevar: Únicamente</string>
<string name="poi_delivery_no">Servicio a domicilio: No</string>
<string name="poi_delivery_yes">Servicio a domicilio: Sí</string>
<string name="poi_delivery_yes">Servicio a domicilio: sí</string>
<string name="poi_delivery_only">Servicio a domicilio: Únicamente</string>
<string name="poi_outdoor_seating_yes">Asientos exteriores: Si</string>
@ -1622,7 +1622,7 @@
<string name="poi_cocktails_yes"></string>
<string name="poi_second_hand_yes">Artículos usados: Sí</string>
<string name="poi_second_hand_yes">Artículos usados: sí</string>
<string name="poi_second_hand_no">Artículos usados: No</string>
<string name="poi_second_hand_only">Artículos usados: Únicamente</string>
@ -1645,17 +1645,17 @@
<string name="poi_female_yes">Femenino</string>
<string name="poi_female_no">Mujeres: Prohibido</string>
<string name="poi_indoor_yes">Cubierto (interior)</string>
<string name="poi_indoor_no">Al aire libre: Sí</string>
<string name="poi_indoor_no">Al aire libre: sí</string>
<string name="poi_toilets_yes"></string>
<string name="poi_toilets_no">Baños: No</string>
<string name="poi_toilets_wheelchair_yes">Baños para personas en sillas de rueda: Sí</string>
<string name="poi_toilets_wheelchair_yes">Baños para personas en sillas de rueda: sí</string>
<string name="poi_toilets_wheelchair_no">Baños para personas en sillas de rueda: No</string>
<string name="poi_toilets_access_customers">Acceso a los baños: Clientes</string>
<string name="poi_toilets_access_permissive">Acceso a los baños: Permisivo</string>
<string name="poi_toilets_access_community">Acceso a los baños: Comunidad</string>
<string name="poi_toilets_access_public">Acceso a los baños: Público</string>
<string name="poi_diaper_yes">Cambiador de pañales: Sí</string>
<string name="poi_diaper_yes">Cambiador de pañales: sí</string>
<string name="poi_diaper_no">Cambiador de pañales: No</string>
<string name="poi_diaper_room">Habitación para cambio de pañales</string>
@ -1792,7 +1792,7 @@
<string name="poi_bench_yes"></string>
<string name="poi_bench_no">Bancos (asientos): No</string>
<string name="poi_bin_yes">Cesto de basura: Sí</string>
<string name="poi_bin_yes">Cesto de basura: sí</string>
<string name="poi_bin_no">Cesto de basura: No</string>
<string name="poi_shelter_type_public_transport">Transporte público</string>
@ -1891,7 +1891,7 @@
<string name="poi_bridge_movable_transporter">Tipo de puente móvil: Transportador</string>
<string name="poi_bridge_movable_retractable">Tipo de puente móvil: Retráctil</string>
<string name="poi_lit_yes">Iluminado: Sí</string>
<string name="poi_lit_yes">Iluminado: sí</string>
<string name="poi_lit_no">Iluminado: No</string>
<string name="poi_surface_unpaved">Superficie: Sin pavimento</string>
@ -1932,8 +1932,8 @@
<string name="poi_bridge_structure_simple_wooden">Estructura del puente: Madera simple</string>
<string name="poi_historic_yes">Objeto histórico</string>
<string name="poi_surveillance_yes">Vigilancia: Sí</string>
<string name="poi_shop_additional_yes">Con tienda: Sí</string>
<string name="poi_surveillance_yes">Vigilancia: sí</string>
<string name="poi_shop_additional_yes">Con tienda: sí</string>
<string name="poi_service_bicycle_retail_yes">Venta</string>
<string name="poi_service_bicycle_retail_no">Venden bicicletas: No</string>
@ -2001,7 +2001,7 @@
<string name="poi_honey">Miel</string>
<string name="poi_elevator_yes">Ascensor: Sí</string>
<string name="poi_elevator_yes">Ascensor: sí</string>
<string name="poi_elevator_no">Ascensor: No</string>
<string name="poi_technical_monument">Monumento técnico</string>
@ -2126,11 +2126,11 @@
<string name="poi_backcountry_no">No</string>
<string name="poi_scout_yes"></string>
<string name="poi_scout_no">Campamento scout: No</string>
<string name="poi_group_only_yes">Sólo para grupos: Sí</string>
<string name="poi_group_only_yes">Sólo para grupos: sí</string>
<string name="poi_group_only_no">Sólo para grupos: No</string>
<string name="poi_washing_machine_yes"></string>
<string name="poi_washing_machine_no">Lavarropas: No</string>
<string name="poi_shower_yes">Ducha: Sí</string>
<string name="poi_shower_yes">Ducha: sí</string>
<string name="poi_shower_no">Ducha: No</string>
<string name="poi_shower_hot">Ducha: caliente</string>
<string name="poi_shower_outdoor">Ducha: exterior</string>
@ -2138,9 +2138,9 @@
<string name="poi_shower_indoor">Ducha: interior</string>
<string name="poi_caravans_yes"></string>
<string name="poi_caravans_no">Casas rodante: No</string>
<string name="poi_impromptu_yes">Improvisado: Sí</string>
<string name="poi_impromptu_yes">Improvisado: sí</string>
<string name="poi_impromptu_no">Improvisado: No</string>
<string name="poi_sanitary_dump_station_yes">Estación de descarga sanitaria: Sí</string>
<string name="poi_sanitary_dump_station_yes">Estación de descarga sanitaria: sí</string>
<string name="poi_sanitary_dump_station_no">Estación de descarga sanitaria: No</string>
<string name="poi_sanitary_dump_station_customers">Estación de descarga sanitaria sólo para clientes</string>
<string name="poi_power_supply_yes"></string>
@ -2208,17 +2208,17 @@
<string name="poi_deaf_description">Descripción para sordos</string>
<string name="poi_highway_steps">Escalera</string>
<string name="poi_handrail_yes">Barandilla: Sí</string>
<string name="poi_handrail_yes">Barandilla: sí</string>
<string name="poi_handrail_no">Barandilla: No</string>
<string name="poi_ramp_yes">Rampa: Sí</string>
<string name="poi_ramp_yes">Rampa: sí</string>
<string name="poi_ramp_no">Rampa: No</string>
<string name="poi_ramp_wheelchair_yes">Rampa para sillas de rueda: Sí</string>
<string name="poi_ramp_wheelchair_yes">Rampa para sillas de rueda: sí</string>
<string name="poi_ramp_wheelchair_no">Rampa para sillas de rueda: No</string>
<string name="poi_ramp_stroller_yes">Rampa para cochecitos: Sí</string>
<string name="poi_ramp_stroller_yes">Rampa para cochecitos: sí</string>
<string name="poi_ramp_stroller_no">Rampa para cochecitos: No</string>
<string name="poi_ramp_bicycle_yes">Rampa para bicicletas: Sí</string>
<string name="poi_ramp_bicycle_yes">Rampa para bicicletas: sí</string>
<string name="poi_ramp_bicycle_no">Rampa para bicicletas: No</string>
<string name="poi_ramp_luggage_yes">Rampa para equipajes: Sí</string>
<string name="poi_ramp_luggage_yes">Rampa para equipajes: sí</string>
<string name="poi_ramp_luggage_no">Rampa para equipajes: No</string>
<string name="poi_step_count">Cantidad de escalones</string>
<string name="poi_step_condition_even">Estado de los escalones: Buena</string>
@ -2229,7 +2229,7 @@
<string name="poi_memorial_fassade_decoration">Decoración de la fachada</string>
<string name="poi_defibrillator">Desfibrilador</string>
<string name="poi_defibrillator_yes">Desfibrilador: Sí</string>
<string name="poi_defibrillator_yes">Desfibrilador: sí</string>
<string name="poi_tomb_war_grave">Tipo: Guerra</string>
<string name="poi_tomb_tumulus">Tipo: Túmulo</string>
@ -2385,7 +2385,7 @@
<string name="poi_sculptor">Escultor</string>
<string name="poi_cross">Cruz</string>
<string name="poi_summit_cross">Cumbre a la cruz: Sí</string>
<string name="poi_summit_cross">Cumbre a la cruz: sí</string>
<string name="poi_prison_camp">Ex campo de prisioneros</string>
<string name="poi_concentration_camp">Tipo: Campo de concentración</string>
@ -2395,14 +2395,14 @@
<string name="poi_concentration_camp_gulag">Tipo: Gulag</string>
<string name="poi_temperature">Temperatura</string>
<string name="poi_bathing_yes">Bañarse: Sí</string>
<string name="poi_bathing_yes">Bañarse: sí</string>
<string name="poi_bathing_no">Bañarse: No</string>
<string name="poi_traffic_calming_island">Calzada dividida</string>
<string name="poi_boat_storage">Guardería náutica</string>
<string name="poi_conveying_yes">Transportadora: Sí</string>
<string name="poi_conveying_yes">Transportadora: sí</string>
<string name="poi_bridge_ref">Referencia del puente</string>
<string name="poi_tunnel_ref">Referencia del túnel</string>
@ -2487,7 +2487,7 @@
<string name="poi_aerialway_length">Longitud</string>
<string name="poi_internet_access_type_yes">Conexión a Internet: Sí</string>
<string name="poi_internet_access_type_yes">Conexión a Internet: sí</string>
<string name="poi_health_specialty_general_yes">Médico general</string>
<string name="poi_health_specialty_ophthalmology_yes">Oftalmología</string>
@ -2568,9 +2568,9 @@
<string name="poi_billiards">Billar</string>
<string name="poi_microwave_oven_yes">Horno de microondas: Sí</string>
<string name="poi_microwave_oven_yes">Horno de microondas: sí</string>
<string name="poi_microwave_oven_no">Horno de microondas: No</string>
<string name="poi_water_heater_yes">Calentador de agua: Sí</string>
<string name="poi_water_heater_yes">Calentador de agua: sí</string>
<string name="poi_water_heater_no">Calentador de agua: No</string>
<string name="poi_parking_surface">En superficie</string>
@ -2610,13 +2610,13 @@
<string name="poi_inscription_ne">Inscripción: NE</string>
<string name="poi_construction_yes">En construcción</string>
<string name="poi_additional_atm_yes">Cajero automático: Sí</string>
<string name="poi_additional_atm_yes">Cajero automático: sí</string>
<string name="poi_atm_no">Cajero automático: No</string>
<string name="poi_firepit">Lugar para fogata</string>
<string name="poi_street_cabinet">Gabinete exterior</string>
<string name="poi_fair_trade_yes">Comercio justo: Sí</string>
<string name="poi_fair_trade_yes">Comercio justo: sí</string>
<string name="poi_fair_trade_no">Comercio justo: No</string>
<string name="poi_fair_trade_only">Sólo productos de comercio justo</string>
@ -2688,7 +2688,7 @@
<string name="poi_bicycle_repair_station">Estación de reparación para bicicletas</string>
<string name="poi_water_tap">Canilla pública</string>
<string name="poi_button_operated_yes">Activado por botón: Sí</string>
<string name="poi_button_operated_yes">Activado por botón: sí</string>
<string name="poi_button_operated_no">Activado por botón: No</string>
<string name="poi_free_flying_site_takeoff">Despegue</string>
@ -2713,7 +2713,7 @@
<string name="poi_free_flying_site_orientation_w">Orientación del sitio en vuelo libre: O</string>
<string name="poi_free_flying_site_orientation_nw">Orientación del sitio en vuelo libre: NO</string>
<string name="poi_free_flying_no_flight_time">Sin horario de vuelo (vuelo libre)</string>
<string name="poi_free_flying_guest_guidelines_yes">Directrices de invitado: Sí</string>
<string name="poi_free_flying_guest_guidelines_yes">Directrices de invitado: sí</string>
<string name="poi_free_flying_guest_guidelines_no">Directrices de invitado: No</string>
<string name="poi_tanning_salon">Centro de bronceado (solárium)</string>
@ -2788,80 +2788,80 @@
<string name="poi_health_person_type_technician">Rol del trabajador en salud: Técnico</string>
<string name="poi_health_person_type_witchdoctor">Rol del trabajador en salud: Brujo/a</string>
<string name="poi_counselling_type_addiction_yes">Asesoría (adicción): Sí</string>
<string name="poi_counselling_type_addiction_yes">Asesoría (adicción): sí</string>
<string name="poi_counselling_type_addiction_no">Asesoría (adicción): No</string>
<string name="poi_counselling_type_antenatal_yes">Asesoría (prenatal): Sí</string>
<string name="poi_counselling_type_antenatal_yes">Asesoría (prenatal): sí</string>
<string name="poi_counselling_type_antenatal_no">Asesoría (prenatal): No</string>
<string name="poi_counselling_type_child_guidance_yes">Asesoría (orientación infantil): Sí</string>
<string name="poi_counselling_type_child_guidance_yes">Asesoría (orientación infantil): sí</string>
<string name="poi_counselling_type_child_guidance_no">Asesoría (orientación infantil): No</string>
<string name="poi_counselling_type_couple_yes">Asesoría (pareja): Sí</string>
<string name="poi_counselling_type_couple_yes">Asesoría (pareja): sí</string>
<string name="poi_counselling_type_couple_no">Asesoría (pareja): No</string>
<string name="poi_counselling_type_crisis_yes">Asesoría (crisis): Sí</string>
<string name="poi_counselling_type_crisis_yes">Asesoría (crisis): sí</string>
<string name="poi_counselling_type_crisis_no">Asesoría (crisis): No</string>
<string name="poi_counselling_type_drugs_yes">Asesoría (drogas): Sí</string>
<string name="poi_counselling_type_drugs_yes">Asesoría (drogas): sí</string>
<string name="poi_counselling_type_drugs_no">Asesoría (drogas): No</string>
<string name="poi_counselling_type_education_yes">Asesoría (educación): Sí</string>
<string name="poi_counselling_type_education_yes">Asesoría (educación): sí</string>
<string name="poi_counselling_type_education_no">Asesoría (educación): No</string>
<string name="poi_counselling_type_family_yes">Asesoría (familiar): Sí</string>
<string name="poi_counselling_type_family_yes">Asesoría (familiar): sí</string>
<string name="poi_counselling_type_family_no">Asesoría (familiar): No</string>
<string name="poi_counselling_type_homeless_yes">Asesoría (sin hogar): Sí</string>
<string name="poi_counselling_type_homeless_yes">Asesoría (sin hogar): sí</string>
<string name="poi_counselling_type_homeless_no">Asesoría (sin hogar): No</string>
<string name="poi_counselling_type_immigrant_yes">Asesoría (inmigrantes): Sí</string>
<string name="poi_counselling_type_immigrant_yes">Asesoría (inmigrantes): sí</string>
<string name="poi_counselling_type_immigrant_no">Asesoría (inmigrantes): No</string>
<string name="poi_counselling_type_marriage_yes">Asesoría (matrimonio): Sí</string>
<string name="poi_counselling_type_marriage_yes">Asesoría (matrimonio): sí</string>
<string name="poi_counselling_type_marriage_no">Asesoría (matrimonio): No</string>
<string name="poi_counselling_type_nutrition_yes">Asesoría (nutrición): Sí</string>
<string name="poi_counselling_type_nutrition_yes">Asesoría (nutrición): sí</string>
<string name="poi_counselling_type_nutrition_no">Asesoramiento (nutrición): No</string>
<string name="poi_counselling_type_rehabilitation_yes">Asesoría (rehabilitación): Sí</string>
<string name="poi_counselling_type_rehabilitation_yes">Asesoría (rehabilitación): sí</string>
<string name="poi_counselling_type_rehabilitation_no">Asesoría (rehabilitación): No</string>
<string name="poi_counselling_type_sexual_yes">Asesoría (sexual): Sí</string>
<string name="poi_counselling_type_sexual_yes">Asesoría (sexual): sí</string>
<string name="poi_counselling_type_sexual_no">Asesoría (sexual): No</string>
<string name="poi_counselling_type_sexual_abuse_yes">Asesoría (abuso sexual): Sí</string>
<string name="poi_counselling_type_sexual_abuse_yes">Asesoría (abuso sexual): sí</string>
<string name="poi_counselling_type_sexual_abuse_no">Asesoría (abuso sexual): No</string>
<string name="poi_counselling_type_victim_yes">Asesoría (víctimas): Sí</string>
<string name="poi_counselling_type_victim_yes">Asesoría (víctimas): sí</string>
<string name="poi_counselling_type_victim_no">Asesoría (víctimas): No</string>
<string name="poi_counselling_type_violence_yes">Asesoría (violencia): Sí</string>
<string name="poi_counselling_type_violence_yes">Asesoría (violencia): sí</string>
<string name="poi_counselling_type_violence_no">Asesoría (violencia): No</string>
<string name="poi_health_person_type_psychologist">Rol del trabajador en salud: Psicólogo/a</string>
<string name="poi_provided_for_infant_yes">Provisto para bebés: Sí</string>
<string name="poi_provided_for_infant_yes">Provisto para bebés: sí</string>
<string name="poi_provided_for_infant_no">Provisto para bebés: No</string>
<string name="poi_provided_for_toddler_yes">Provisto para niños pequeños: Sí</string>
<string name="poi_provided_for_toddler_yes">Provisto para niños pequeños: sí</string>
<string name="poi_provided_for_toddler_no">Provisto para niños pequeños: No</string>
<string name="poi_provided_for_child_yes">Provisto para niños: Sí</string>
<string name="poi_provided_for_child_yes">Provisto para niños: sí</string>
<string name="poi_provided_for_child_no">Provisto para niños: No</string>
<string name="poi_provided_for_adult_yes">Provisto para adultos: Sí</string>
<string name="poi_provided_for_adult_yes">Provisto para adultos: sí</string>
<string name="poi_provided_for_adult_no">Provisto para adultos: No</string>
<string name="poi_provided_for_woman_yes">Provisto para mujeres: Sí</string>
<string name="poi_provided_for_woman_yes">Provisto para mujeres: sí</string>
<string name="poi_provided_for_woman_no">Provisto para mujeres: No</string>
<string name="poi_provided_for_senior_yes">Provisto para adultos mayores: Sí</string>
<string name="poi_provided_for_senior_yes">Provisto para adultos mayores: sí</string>
<string name="poi_provided_for_senior_no">Provisto para adultos mayores: No</string>
<string name="poi_provided_for_girl_yes">Provisto para chicas: Sí</string>
<string name="poi_provided_for_girl_yes">Provisto para chicas: sí</string>
<string name="poi_provided_for_girl_no">Provisto para chicas: No</string>
<string name="poi_provided_for_man_yes">Provisto para hombres: Sí</string>
<string name="poi_provided_for_man_yes">Provisto para hombres: sí</string>
<string name="poi_provided_for_man_no">Provisto para hombres: No</string>
<string name="poi_provided_for_boy_yes">Provisto para chicos: Sí</string>
<string name="poi_provided_for_boy_yes">Provisto para chicos: sí</string>
<string name="poi_provided_for_boy_no">Provisto para chicos: No</string>
<string name="poi_capacity_beds">Capacidad (camas)</string>
<string name="poi_treat_inpatient_yes">Servicios para pacientes: Sí</string>
<string name="poi_treat_inpatient_yes">Servicios para pacientes: sí</string>
<string name="poi_treat_inpatient_no">Servicios para pacientes: No</string>
<string name="poi_treat_inpatient_only">Servicios para pacientes: Únicamente</string>
<string name="poi_counselling_yes">Asesoría: Sí</string>
<string name="poi_counselling_yes">Asesoría: sí</string>
<string name="poi_counselling_no">Asesoría: No</string>
<string name="poi_emergency_yes">Emergencias: Sí</string>
<string name="poi_emergency_yes">Emergencias: sí</string>
<string name="poi_emergency_no">Emergencias: No</string>
<string name="poi_home_visit_yes"></string>
<string name="poi_home_visit_no">Visitas domiciliarias: No</string>
<string name="poi_disease_malaria_yes">Malaria: Sí</string>
<string name="poi_disease_malaria_yes">Malaria: sí</string>
<string name="poi_disease_malaria_no">Malaria: No</string>
<string name="poi_disease_ebola_yes">Ébola: Sí</string>
<string name="poi_disease_ebola_yes">Ébola: sí</string>
<string name="poi_disease_ebola_no">Ébola: No</string>
<string name="poi_disease_autism_yes">Autismo: Sí</string>
<string name="poi_disease_autism_yes">Autismo: sí</string>
<string name="poi_disease_autism_no">Autismo: No</string>
<string name="poi_disease_aids_yes">SIDA: Sí</string>
<string name="poi_disease_aids_yes">SIDA: sí</string>
<string name="poi_disease_aids_no">SIDA: No</string>
<string name="poi_office_physician">Consultorio médico</string>
@ -2887,7 +2887,7 @@
<string name="poi_fire_hydrant_style_water_source_pond">Estanque</string>
<string name="poi_fire_hydrant_style_water_source_stream">Arroyo</string>
<string name="poi_fire_hydrant_style_water_source_cistern">Cisterna</string>
<string name="poi_in_service_yes">En servicio: Sí</string>
<string name="poi_in_service_yes">En servicio: sí</string>
<string name="poi_fire_hydrant_style_wsh">Estilo de hidrante: wsh</string>
<string name="poi_street_cabinet_power">Tipo de gabinete: Energía</string>
@ -2907,7 +2907,7 @@
<string name="poi_depth">Profundidad</string>
<string name="poi_salt_yes">Salado: Sí</string>
<string name="poi_salt_yes">Salado: sí</string>
<string name="poi_salt_no">Salado: No</string>
<string name="poi_wheelchair_designated">Designado</string>
<string name="poi_spoil_heap">Escombrera</string>
@ -2919,7 +2919,7 @@
<string name="poi_crossing_activation_local">Activación del cruce: Local</string>
<string name="poi_crossing_activation_remote">Activación del cruce: Remota</string>
<string name="poi_crossing_barrier_no">Cruce de barreras: No</string>
<string name="poi_crossing_barrier_yes">Cruce de barreras: Sí</string>
<string name="poi_crossing_barrier_yes">Cruce de barreras: sí</string>
<string name="poi_crossing_barrier_full">Cruce de barreras: Completas</string>
<string name="poi_crossing_barrier_half">Cruce de barreras: Semi-barreras</string>
<string name="poi_crossing_barrier_double_half">Cruce de barreras: Semi-barreras dobles</string>
@ -2994,7 +2994,7 @@
<string name="poi_pumping_station">Estación de bombeo</string>
<string name="poi_display_yes">Pantalla: Sí</string>
<string name="poi_display_yes">Pantalla: sí</string>
<string name="poi_display_no">Pantalla: No</string>
<string name="poi_display_analog_yes">Pantalla análoga</string>
<string name="poi_display_digital_yes">Pantalla digital</string>
@ -3020,7 +3020,7 @@
<string name="poi_support_roof">Soporte: Techo</string>
<string name="poi_support_tower">Soporte: Torre</string>
<string name="poi_passenger_information_display_yes">Pantalla de información para pasajeros: Sí</string>
<string name="poi_passenger_information_display_yes">Pantalla de información para pasajeros: sí</string>
<string name="poi_passenger_information_display_no">Pantalla de información para pasajeros: No</string>
<string name="poi_aquaculture">Acuicultura</string>
@ -3401,7 +3401,7 @@
<string name="poi_fast_food_cafeteria"></string>
<string name="poi_drink_wine_yes">Vino: Sí</string>
<string name="poi_drink_wine_yes">Vino: sí</string>
<string name="poi_drink_wine_retail">Vino: venta</string>
<string name="poi_drink_wine_served">Vino: servido</string>
@ -3436,7 +3436,7 @@
<string name="poi_motorcycle_sales_yes">Ventas</string>
<string name="poi_motorcycle_sales_no">Venden motocicletas: No</string>
<string name="poi_motorcycle_sales_yes_used">Venden motocicletas: Sí; usadas</string>
<string name="poi_motorcycle_sales_yes_used">Venden motocicletas: sí; usadas</string>
<string name="poi_motorcycle_sales_used">Venden motocicletas: usadas</string>
<string name="poi_motorcycle_rental_yes">Alquiler</string>
<string name="poi_motorcycle_rental_no">Alquilan motocicletas: No</string>
@ -3501,11 +3501,11 @@
<string name="poi_direction_exit">Dirección: Salida</string>
<string name="poi_direction_all">Dirección: Todas</string>
<string name="poi_winter_room_yes">Refugio del invierno: Sí</string>
<string name="poi_winter_room_yes">Refugio del invierno: sí</string>
<string name="poi_winter_room_no">Refugio del invierno: No</string>
<string name="poi_reservation_required">Reservación: Requerida</string>
<string name="poi_reservation_recommended">Reservación: Recomendada</string>
<string name="poi_reservation_yes">Reservación: Sí</string>
<string name="poi_reservation_yes">Reservación: sí</string>
<string name="poi_reservation_no">Reservación: No</string>
<string name="poi_reservation_members_only">Reservación: Sólo miembros</string>
@ -3514,21 +3514,21 @@
<string name="poi_boat_rental_type">Barcos de alquiler</string>
<string name="poi_boat_rental">Alquiler de barcos</string>
<string name="poi_boat_motorboat_rental_yes">Lanchas de motor: Sí</string>
<string name="poi_boat_motorboat_rental_yes">Lanchas de motor: sí</string>
<string name="poi_boat_motorboat_rental_no">Lanchas de motor: No</string>
<string name="poi_boat_houseboat_rental_yes">Casas flotantes: Sí</string>
<string name="poi_boat_houseboat_rental_yes">Casas flotantes: sí</string>
<string name="poi_boat_houseboat_rental_no">Casas flotantes: No</string>
<string name="poi_boat_pedalboat_rental_yes">Barcos a pedal: Sí</string>
<string name="poi_boat_pedalboat_rental_yes">Barcos a pedal: sí</string>
<string name="poi_boat_pedalboat_rental_no">Barcos a pedal: No</string>
<string name="poi_boat_jetski_rental_yes">Motos de agua: Sí</string>
<string name="poi_boat_jetski_rental_yes">Motos de agua: sí</string>
<string name="poi_boat_jetski_rental_no">Motos de agua: No</string>
<string name="poi_boat_sailboat_rental_yes">Veleros: Sí</string>
<string name="poi_boat_sailboat_rental_yes">Veleros: sí</string>
<string name="poi_boat_sailboat_rental_no">Veleros: No</string>
<string name="poi_boat_dinghy_rental_rental_yes">Botes: Sí</string>
<string name="poi_boat_dinghy_rental_rental_yes">Botes: sí</string>
<string name="poi_boat_dinghy_rental_rental_no">Botes: No</string>
<string name="poi_boat_kayak_rental_rental_yes">Kayaks: Sí</string>
<string name="poi_boat_kayak_rental_rental_yes">Kayaks: sí</string>
<string name="poi_boat_kayak_rental_rental_no">Kayaks: No</string>
<string name="poi_boat_canoe_rental_rental_yes">Canoas: Sí</string>
<string name="poi_boat_canoe_rental_rental_yes">Canoas: sí</string>
<string name="poi_boat_canoe_rental_rental_no">Canoas: No</string>
<string name="poi_network">Red</string>
@ -3673,16 +3673,16 @@
<string name="poi_socket_as3112_current">Enchufe: AS/NZS 3112: corriente</string>
<string name="poi_socket_as3112_output">Enchufe: AS/NZS 3112: salida</string>
<string name="poi_car_yes">Automóvil: Sí</string>
<string name="poi_car_yes">Automóvil: sí</string>
<string name="poi_car_no">Automóvil: No</string>
<string name="poi_bicycle_yes">Bicicleta: Sí</string>
<string name="poi_bicycle_yes">Bicicleta: sí</string>
<string name="poi_bicycle_no">Bicicleta: No</string>
<string name="poi_scooter_yes">Motoneta (scooter): Sí</string>
<string name="poi_scooter_yes">Motoneta (scooter): sí</string>
<string name="poi_scooter_no">Motoneta (scooter): No</string>
<string name="poi_truck_yes">Camión: Sí</string>
<string name="poi_truck_yes">Camión: sí</string>
<string name="poi_truck_no">Camión: No</string>
<string name="poi_parking_fee_yes">Tarifa de estacionamiento: Sí</string>
<string name="poi_parking_fee_yes">Tarifa de estacionamiento: sí</string>
<string name="poi_parking_fee_no">Tarifa de estacionamiento: No</string>
<string name="poi_parking_fee">Tarifa de estacionamiento</string>
@ -3715,21 +3715,21 @@
<string name="poi_ref_post">Código postal</string>
<string name="poi_climbing_sport_yes">Deportiva: Sí</string>
<string name="poi_climbing_sport_yes">Deportiva: sí</string>
<string name="poi_climbing_sport_no">Deportiva: No</string>
<string name="poi_climbing_boulder_yes">Escalada en bloque: Sí</string>
<string name="poi_climbing_boulder_yes">Escalada en bloque: sí</string>
<string name="poi_climbing_boulder_no">Escalada en bloque: No</string>
<string name="poi_climbing_toprope_yes">Moulinette: Sí</string>
<string name="poi_climbing_toprope_yes">Moulinette: sí</string>
<string name="poi_climbing_toprope_no">Moulinette: No</string>
<string name="poi_climbing_trad_yes">Tradicional: Sí</string>
<string name="poi_climbing_trad_yes">Tradicional: sí</string>
<string name="poi_climbing_trad_no">Tradicional: No</string>
<string name="poi_climbing_multipitch_yes">Rutas multipaso: Sí</string>
<string name="poi_climbing_multipitch_yes">Rutas multipaso: sí</string>
<string name="poi_climbing_multipitch_no">Rutas multipaso: No</string>
<string name="poi_climbing_ice_yes">Hielo: Sí</string>
<string name="poi_climbing_ice_yes">Hielo: sí</string>
<string name="poi_climbing_ice_no">Hielo: No</string>
<string name="poi_climbing_mixed_yes">Mixto: Sí</string>
<string name="poi_climbing_mixed_yes">Mixto: sí</string>
<string name="poi_climbing_mixed_no">Mixto: No</string>
<string name="poi_climbing_deepwater_yes">Psicobloc: Sí</string>
<string name="poi_climbing_deepwater_yes">Psicobloc: sí</string>
<string name="poi_climbing_deepwater_no">Psicobloc: No</string>
<string name="poi_climbing_length">Longitud de escalada</string>
@ -3743,7 +3743,7 @@
<string name="poi_climbing_rock_porphyry">Escalada en roca: Pórfido</string>
<string name="poi_climbing_quality_solid">Calidad de la escalada: Sólido</string>
<string name="poi_climbing_quality_fragile">Calidad de la escalada: Frágil</string>
<string name="poi_climbing_bolted_yes">Anclajes fijos: Sí</string>
<string name="poi_climbing_bolted_yes">Anclajes fijos: sí</string>
<string name="poi_climbing_bolted_no">Anclajes fijos: No</string>
<string name="poi_climbing_orientation_n">Orientación del muro: N</string>
<string name="poi_climbing_orientation_ne">Orientación del muro: NE</string>
@ -3753,7 +3753,7 @@
<string name="poi_climbing_orientation_sw">Orientación del muro: SO</string>
<string name="poi_climbing_orientation_w">Orientación del muro: O</string>
<string name="poi_climbing_orientation_nw">Orientación del muro: NO</string>
<string name="poi_climbing_summit_log_yes">Registro de la escalada en la cumbre: Sí</string>
<string name="poi_climbing_summit_log_yes">Registro de la escalada en la cumbre: sí</string>
<string name="poi_climbing_summit_log_no">Registro de la escalada en la cumbre: No</string>
<string name="poi_climbing_routes">Rutas de escalada</string>
@ -3840,4 +3840,6 @@
<string name="poi_outpost">Punto de entrega de la tienda</string>
<string name="poi_barbecue_grill">Parrilla de barbacoa: sí</string>
</resources>

View file

@ -1905,7 +1905,7 @@ Tanto la ubicación como el tiempo del estacionamiento se muestran en el menú p
<string name="osn_close_dialog_error">Error: no se cerró la nota de OSM</string>
<string name="shared_string_commit">Confirmar</string>
<string name="context_menu_item_delete_waypoint">¿Quieres borrar el punto GPX de referencia?</string>
<string name="context_menu_item_delete_waypoint">¿Quieres borrar el punto GPX?</string>
<string name="context_menu_item_edit_waypoint">Editar punto GPX</string>
<string name="rendering_attr_currentTrackColor_description">Color del GPX</string>
<string name="rendering_attr_currentTrackWidth_description">Ancho del GPX</string>

View file

@ -3595,4 +3595,10 @@
<string name="poi_flooring">Venta de pisos</string>
<string name="poi_pottery">Alfarería</string>
<string name="poi_whitewater_rapid_name">Nombre de los rápidos del río</string>
<string name="poi_outpost">Punto de entrega de la tienda</string>
<string name="poi_barbecue_grill">Parrilla de barbacoa: sí</string>
</resources>

View file

@ -3714,4 +3714,6 @@
<string name="poi_outpost">Afhendingarstaður verslunar</string>
<string name="poi_barbecue_grill">Steikingargrill: já</string>
</resources>

View file

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?><resources>
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="rendering_attr_roadColors_description">Velg fargeskjema for veier:</string>
<string name="rendering_attr_roadColors_name">Veifargeskjema</string>
<string name="map_widget_show_destination_arrow">Vis retning til målet</string>
@ -2757,4 +2758,6 @@
<string name="west_abbreviation">V</string>
<string name="south_abbreviation">S</string>
<string name="north_abbreviation">N</string>
</resources>
<string name="clear_all_intermediates">Slett alle mellomliggende punkter</string>
<string name="group_deleted">Gruppe slettet</string>
</resources>

Some files were not shown because too many files have changed in this diff Show more