mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-30 17:44:07 +00:00
Compare commits
2 Commits
jb_rm_trl
...
zyphlar-pa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7ada08c64 | ||
|
|
be1a1626f3 |
@@ -35,6 +35,47 @@ jobs:
|
|||||||
cd ~
|
cd ~
|
||||||
git clone --depth 1 --single-branch https://codeberg.org/comaps/subways.git
|
git clone --depth 1 --single-branch https://codeberg.org/comaps/subways.git
|
||||||
|
|
||||||
|
update-planet-pbf:
|
||||||
|
name: Update PBF Planet
|
||||||
|
runs-on: mapfilemaker
|
||||||
|
container:
|
||||||
|
image: codeberg.org/comaps/maps_generator:f6d53d54f794
|
||||||
|
volumes:
|
||||||
|
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||||
|
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-process-subways-${{ github.event.pull_request.number || github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
steps:
|
||||||
|
- name: Download Planet File if Absent
|
||||||
|
shell: bash
|
||||||
|
# TODO: replace wget2 with curl -Z
|
||||||
|
run: |
|
||||||
|
if [ ! -d /home/planet/planet/ ]; then
|
||||||
|
mkdir -p /home/planet/planet/
|
||||||
|
fi
|
||||||
|
if [ ! -f /home/planet/planet/planet-latest.osm.pbf ]; then
|
||||||
|
cd /home/planet/planet/
|
||||||
|
wget2 --verbose --progress=bar --continue https://ftpmirror.your.org/pub/openstreetmap/pbf/planet-latest.osm.pbf
|
||||||
|
else
|
||||||
|
echo "planet-latest.osm.pbf was found, raw download not required."
|
||||||
|
fi
|
||||||
|
- name: Update PBF Planet
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
cd /home/planet/planet/
|
||||||
|
rm -f planet-latest-new.osm.pbf
|
||||||
|
pyosmium-up-to-date planet-latest.osm.pbf -o planet-latest-new.osm.pbf -v --size 16384
|
||||||
|
mv planet-latest-new.osm.pbf planet-latest.osm.pbf
|
||||||
|
- name: Notify Zulip
|
||||||
|
run: |
|
||||||
|
curl -X POST https://comaps.zulipchat.com/api/v1/messages \
|
||||||
|
-u $ZULIP_BOT_EMAIL:$ZULIP_API_KEY \
|
||||||
|
--data-urlencode type=stream \
|
||||||
|
--data-urlencode 'to="DevOps"' \
|
||||||
|
--data-urlencode topic=codeberg-bot \
|
||||||
|
--data-urlencode 'content=PBF planet update is done!'
|
||||||
|
|
||||||
update-planet-o5m:
|
update-planet-o5m:
|
||||||
name: Update O5M Planet
|
name: Update O5M Planet
|
||||||
runs-on: mapfilemaker
|
runs-on: mapfilemaker
|
||||||
@@ -83,7 +124,6 @@ jobs:
|
|||||||
--data-urlencode 'content=O5M planet update is done!'
|
--data-urlencode 'content=O5M planet update is done!'
|
||||||
|
|
||||||
update-subways:
|
update-subways:
|
||||||
if: inputs.run-subways
|
|
||||||
name: Update Subways
|
name: Update Subways
|
||||||
runs-on: mapfilemaker
|
runs-on: mapfilemaker
|
||||||
needs:
|
needs:
|
||||||
@@ -94,7 +134,7 @@ jobs:
|
|||||||
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
- /mnt/4tbexternal/:/mnt/4tbexternal/
|
||||||
- /mnt/4tbexternal/osm-planet:/home/planet
|
- /mnt/4tbexternal/osm-planet:/home/planet
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-map-generator-${{ github.event.pull_request.number || github.ref }}
|
group: ${{ github.workflow }}-processs-subways-${{ github.event.pull_request.number || github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/cache@v4
|
- uses: actions/cache@v4
|
||||||
|
|||||||
@@ -98,11 +98,6 @@ public class NavigationController implements TrafficManager.TrafficCallback, Nav
|
|||||||
mSpeedLimit = topFrame.findViewById(R.id.nav_speed_limit);
|
mSpeedLimit = topFrame.findViewById(R.id.nav_speed_limit);
|
||||||
mCurrentSpeed = topFrame.findViewById(R.id.nav_current_speed);
|
mCurrentSpeed = topFrame.findViewById(R.id.nav_current_speed);
|
||||||
|
|
||||||
View mTopbar = topFrame.findViewById(R.id.statutbar);
|
|
||||||
ViewCompat.setOnApplyWindowInsetsListener(mTopbar,(v, windowInsets) -> {
|
|
||||||
UiUtils.setViewNavigationTopInsetsMargin(v, windowInsets);
|
|
||||||
return windowInsets;
|
|
||||||
});
|
|
||||||
// Show a blank view below the navbar to hide the menu content
|
// Show a blank view below the navbar to hide the menu content
|
||||||
final View navigationBarBackground = mFrame.findViewById(R.id.nav_bottom_sheet_nav_bar);
|
final View navigationBarBackground = mFrame.findViewById(R.id.nav_bottom_sheet_nav_bar);
|
||||||
final View nextTurnContainer = mFrame.findViewById(R.id.nav_next_turn_container);
|
final View nextTurnContainer = mFrame.findViewById(R.id.nav_next_turn_container);
|
||||||
|
|||||||
@@ -6,10 +6,12 @@ import android.view.View;
|
|||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.annotation.XmlRes;
|
import androidx.annotation.XmlRes;
|
||||||
|
import androidx.core.content.ContextCompat;
|
||||||
import androidx.core.view.ViewCompat;
|
import androidx.core.view.ViewCompat;
|
||||||
import androidx.preference.Preference;
|
import androidx.preference.Preference;
|
||||||
import androidx.preference.PreferenceFragmentCompat;
|
import androidx.preference.PreferenceFragmentCompat;
|
||||||
import androidx.recyclerview.widget.RecyclerView;
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
import app.organicmaps.R;
|
||||||
import app.organicmaps.util.Utils;
|
import app.organicmaps.util.Utils;
|
||||||
import app.organicmaps.util.WindowInsetUtils.ScrollableContentInsetsListener;
|
import app.organicmaps.util.WindowInsetUtils.ScrollableContentInsetsListener;
|
||||||
|
|
||||||
@@ -42,6 +44,7 @@ abstract class BaseXmlSettingsFragment extends PreferenceFragmentCompat
|
|||||||
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState)
|
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState)
|
||||||
{
|
{
|
||||||
super.onViewCreated(view, savedInstanceState);
|
super.onViewCreated(view, savedInstanceState);
|
||||||
|
view.setBackgroundColor(ContextCompat.getColor(requireContext(), R.color.bg_cards));
|
||||||
RecyclerView recyclerView = getListView();
|
RecyclerView recyclerView = getListView();
|
||||||
ViewCompat.setOnApplyWindowInsetsListener(recyclerView, new ScrollableContentInsetsListener(recyclerView));
|
ViewCompat.setOnApplyWindowInsetsListener(recyclerView, new ScrollableContentInsetsListener(recyclerView));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -196,7 +196,7 @@ public final class UiUtils
|
|||||||
public static void showHomeUpButton(MaterialToolbar toolbar)
|
public static void showHomeUpButton(MaterialToolbar toolbar)
|
||||||
{
|
{
|
||||||
toolbar.setNavigationIcon(
|
toolbar.setNavigationIcon(
|
||||||
UiUtils.getStyledResourceId(toolbar.getContext(), androidx.appcompat.R.attr.homeAsUpIndicator));
|
ThemeUtils.getResource(toolbar.getContext(), androidx.appcompat.R.attr.homeAsUpIndicator));
|
||||||
}
|
}
|
||||||
|
|
||||||
// this method returns the total height of the display (in pixels) including notch and other touchable areas
|
// this method returns the total height of the display (in pixels) including notch and other touchable areas
|
||||||
@@ -281,14 +281,6 @@ public final class UiUtils
|
|||||||
view.setPadding(systemInsets.left, systemInsets.top, systemInsets.right, view.getPaddingBottom());
|
view.setPadding(systemInsets.left, systemInsets.top, systemInsets.right, view.getPaddingBottom());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setViewNavigationTopInsetsMargin(View view, WindowInsetsCompat windowInsets)
|
|
||||||
{
|
|
||||||
final Insets systemInsets = windowInsets.getInsets(WindowInsetsCompat.Type.systemBars());
|
|
||||||
ViewGroup.MarginLayoutParams lp = (ViewGroup.MarginLayoutParams) view.getLayoutParams();
|
|
||||||
lp.topMargin = systemInsets.top;
|
|
||||||
view.setLayoutParams(lp);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setupNavigationIcon(@NonNull MaterialToolbar toolbar, @NonNull View.OnClickListener listener)
|
public static void setupNavigationIcon(@NonNull MaterialToolbar toolbar, @NonNull View.OnClickListener listener)
|
||||||
{
|
{
|
||||||
View customNavigationButton = toolbar.findViewById(R.id.back);
|
View customNavigationButton = toolbar.findViewById(R.id.back);
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="?appBackground"
|
android:background="?cardBackground"
|
||||||
android:clipToPadding="false"
|
android:clipToPadding="false"
|
||||||
android:fadeScrollbars="false"
|
android:fadeScrollbars="false"
|
||||||
android:fillViewport="true">
|
android:fillViewport="true">
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
android:id="@+id/scrollView"
|
android:id="@+id/scrollView"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="?appBackground"
|
android:background="?cardBackground"
|
||||||
android:fadeScrollbars="false"
|
android:fadeScrollbars="false"
|
||||||
android:fillViewport="true"
|
android:fillViewport="true"
|
||||||
android:clipToPadding="false">
|
android:clipToPadding="false">
|
||||||
|
|||||||
@@ -11,12 +11,13 @@
|
|||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:id="@+id/statutbar"
|
android:id="@+id/statutbar"
|
||||||
android:layout_height="1dp"
|
android:layout_height="15dp"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
<com.google.android.material.card.MaterialCardView
|
<com.google.android.material.card.MaterialCardView
|
||||||
android:id="@+id/street_frame"
|
android:id="@+id/street_frame"
|
||||||
android:layout_width="500dp"
|
android:layout_width="500dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="@dimen/margin_half_plus_eight"
|
||||||
android:layout_marginEnd="@dimen/margin_quarter"
|
android:layout_marginEnd="@dimen/margin_quarter"
|
||||||
app:cardCornerRadius="@dimen/margin_half"
|
app:cardCornerRadius="@dimen/margin_half"
|
||||||
android:elevation="@dimen/nav_elevation"
|
android:elevation="@dimen/nav_elevation"
|
||||||
@@ -51,6 +52,7 @@
|
|||||||
app:layout_constraintEnd_toStartOf="@+id/street_frame"
|
app:layout_constraintEnd_toStartOf="@+id/street_frame"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/statutbar"
|
app:layout_constraintTop_toBottomOf="@+id/statutbar"
|
||||||
|
android:layout_marginTop="@dimen/margin_half_plus_eight"
|
||||||
android:layout_marginStart="@dimen/margin_quarter"
|
android:layout_marginStart="@dimen/margin_quarter"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
android:elevation="@dimen/nav_elevation">
|
android:elevation="@dimen/nav_elevation">
|
||||||
|
|||||||
@@ -3,8 +3,7 @@
|
|||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical">
|
||||||
android:background="?appBackground">
|
|
||||||
|
|
||||||
<include
|
<include
|
||||||
layout="@layout/toolbar_extended"/>
|
layout="@layout/toolbar_extended"/>
|
||||||
@@ -18,8 +17,7 @@
|
|||||||
android:id="@+id/fragment_container"
|
android:id="@+id/fragment_container"
|
||||||
style="@style/MwmWidget.FrameLayout.Elevation"
|
style="@style/MwmWidget.FrameLayout.Elevation"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"/>
|
||||||
android:background="?appBackground"/>
|
|
||||||
</com.google.android.material.card.MaterialCardView>
|
</com.google.android.material.card.MaterialCardView>
|
||||||
|
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="?appBackground"
|
android:background="?cardBackground"
|
||||||
android:clipToPadding="false"
|
android:clipToPadding="false"
|
||||||
android:fadeScrollbars="false"
|
android:fadeScrollbars="false"
|
||||||
android:fillViewport="true">
|
android:fillViewport="true">
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="?appBackground">
|
android:background="?cardBackground">
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:background="?appBackground"
|
android:background="?cardBackground"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="?appBackground"
|
android:background="?cardBackground"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
|||||||
@@ -3,8 +3,7 @@
|
|||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical">
|
||||||
android:background="?appBackground">
|
|
||||||
|
|
||||||
<include
|
<include
|
||||||
layout="@layout/toolbar_default"/>
|
layout="@layout/toolbar_default"/>
|
||||||
|
|||||||
@@ -2,11 +2,18 @@
|
|||||||
<LinearLayout
|
<LinearLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:background="?appBackground"
|
android:background="?cardBackground"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
<include layout="@layout/toolbar_default"/>
|
<com.google.android.material.appbar.MaterialToolbar
|
||||||
|
android:id="@+id/toolbar"
|
||||||
|
style="@style/MwmWidget.ToolbarStyle"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="end|center_vertical"
|
||||||
|
android:theme="@style/MwmWidget.ToolbarTheme">
|
||||||
|
</com.google.android.material.appbar.MaterialToolbar>
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_marginTop="@dimen/margin_half_double_plus"
|
android:layout_marginTop="@dimen/margin_half_double_plus"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
android:id="@+id/scrollView"
|
android:id="@+id/scrollView"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="?appBackground"
|
android:background="?cardBackground"
|
||||||
android:fadeScrollbars="false"
|
android:fadeScrollbars="false"
|
||||||
android:fillViewport="true"
|
android:fillViewport="true"
|
||||||
android:clipToPadding="false">
|
android:clipToPadding="false">
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:background="?appBackground">
|
android:background="?cardBackground">
|
||||||
<com.google.android.material.appbar.MaterialToolbar
|
<com.google.android.material.appbar.MaterialToolbar
|
||||||
android:id="@+id/toolbar"
|
android:id="@+id/toolbar"
|
||||||
style="@style/MwmWidget.ToolbarStyle"
|
style="@style/MwmWidget.ToolbarStyle"
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:background="?appBackground">
|
android:background="?cardBackground">
|
||||||
|
|
||||||
<com.google.android.material.textview.MaterialTextView
|
<com.google.android.material.textview.MaterialTextView
|
||||||
android:id="@+id/header"
|
android:id="@+id/header"
|
||||||
|
|||||||
@@ -11,12 +11,13 @@
|
|||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:id="@+id/statutbar"
|
android:id="@+id/statutbar"
|
||||||
android:layout_height="1dp"
|
android:layout_height="25dp"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
<com.google.android.material.card.MaterialCardView
|
<com.google.android.material.card.MaterialCardView
|
||||||
android:id="@+id/street_frame"
|
android:id="@+id/street_frame"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="@dimen/margin_half_plus"
|
||||||
android:layout_marginStart="@dimen/nav_street_left"
|
android:layout_marginStart="@dimen/nav_street_left"
|
||||||
android:layout_marginEnd="@dimen/margin_quarter"
|
android:layout_marginEnd="@dimen/margin_quarter"
|
||||||
app:cardCornerRadius="@dimen/margin_half"
|
app:cardCornerRadius="@dimen/margin_half"
|
||||||
@@ -54,6 +55,7 @@
|
|||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/statutbar"
|
app:layout_constraintTop_toBottomOf="@+id/statutbar"
|
||||||
android:layout_marginStart="@dimen/margin_half"
|
android:layout_marginStart="@dimen/margin_half"
|
||||||
|
android:layout_marginTop="@dimen/margin_half_plus"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
android:elevation="@dimen/nav_elevation">
|
android:elevation="@dimen/nav_elevation">
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ android:layout_marginHorizontal="@dimen/margin_base"
|
|||||||
android:layout_marginTop="@dimen/margin_half"
|
android:layout_marginTop="@dimen/margin_half"
|
||||||
app:strokeWidth="1dp"
|
app:strokeWidth="1dp"
|
||||||
app:strokeColor="@color/base_accent"
|
app:strokeColor="@color/base_accent"
|
||||||
app:cardBackgroundColor="?cardBackground">
|
app:cardBackgroundColor="@color/bg_cards">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|||||||
@@ -30,7 +30,8 @@
|
|||||||
android:layout_alignParentStart="true"
|
android:layout_alignParentStart="true"
|
||||||
android:background="?selectableItemBackgroundBorderless"
|
android:background="?selectableItemBackgroundBorderless"
|
||||||
app:srcCompat="?homeAsUpIndicator"
|
app:srcCompat="?homeAsUpIndicator"
|
||||||
android:scaleType="center" />
|
android:scaleType="center"
|
||||||
|
tools:src="@drawable/ic_expand_more" />
|
||||||
|
|
||||||
<RadioGroup
|
<RadioGroup
|
||||||
android:id="@+id/route_type"
|
android:id="@+id/route_type"
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
@@ -10,8 +9,7 @@
|
|||||||
style="@style/MwmWidget.ToolbarStyle"
|
style="@style/MwmWidget.ToolbarStyle"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:theme="@style/MwmWidget.ToolbarTheme"
|
android:theme="@style/MwmWidget.ToolbarTheme.DownButton"/>
|
||||||
app:navigationIcon="@drawable/ic_expand_more"/>
|
|
||||||
|
|
||||||
<View
|
<View
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
android:background="?selectableItemBackgroundBorderless"
|
android:background="?selectableItemBackgroundBorderless"
|
||||||
app:srcCompat="?homeAsUpIndicator"
|
app:srcCompat="?homeAsUpIndicator"
|
||||||
android:scaleType="center"
|
android:scaleType="center"
|
||||||
|
tools:src="@drawable/ic_expand_more"
|
||||||
android:contentDescription="@string/back"/>
|
android:contentDescription="@string/back"/>
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputEditText
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
|
|||||||
8
android/app/src/main/res/layout/toolbar_transparent.xml
Normal file
8
android/app/src/main/res/layout/toolbar_transparent.xml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<com.google.android.material.appbar.MaterialToolbar
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:id="@+id/toolbar"
|
||||||
|
style="@style/MwmWidget.ToolbarStyle"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:theme="@style/MwmWidget.ToolbarTheme.Transparent"/>
|
||||||
@@ -923,6 +923,7 @@
|
|||||||
<string name="advanced">Avançat</string>
|
<string name="advanced">Avançat</string>
|
||||||
<string name="download_resources_custom_url_title">Servidor de Mapes Personalitzat</string>
|
<string name="download_resources_custom_url_title">Servidor de Mapes Personalitzat</string>
|
||||||
<string name="download_resources_custom_url_message">Sobreescriu el servidor de descàrrega de mapes per defecte. Deixa en blanc per a emprar el servidor per defecte de CoMaps.</string>
|
<string name="download_resources_custom_url_message">Sobreescriu el servidor de descàrrega de mapes per defecte. Deixa en blanc per a emprar el servidor per defecte de CoMaps.</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_summary_none">No establert</string>
|
<string name="download_resources_custom_url_summary_none">No establert</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Per favor introdueix una URL completa que comence amb https:// i acabe amb /</string>
|
<string name="download_resources_custom_url_error_scheme">Per favor introdueix una URL completa que comence amb https:// i acabe amb /</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -915,6 +915,7 @@
|
|||||||
<string name="navigation_start_tts_disabled_message">Hlasové pokyny vypnuty: služba TTS není dostupná</string>
|
<string name="navigation_start_tts_disabled_message">Hlasové pokyny vypnuty: služba TTS není dostupná</string>
|
||||||
<string name="download_resources_custom_url_title">Vlastní mapový server</string>
|
<string name="download_resources_custom_url_title">Vlastní mapový server</string>
|
||||||
<string name="download_resources_custom_url_message">Přepsat výchozí server používaný ke stahování map. Nechte pole prázdné, pokud chcete použít výchozí server CoMaps.</string>
|
<string name="download_resources_custom_url_message">Přepsat výchozí server používaný ke stahování map. Nechte pole prázdné, pokud chcete použít výchozí server CoMaps.</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Zadejte prosím celou adresu URL začínající na https:// a končící s /</string>
|
<string name="download_resources_custom_url_error_scheme">Zadejte prosím celou adresu URL začínající na https:// a končící s /</string>
|
||||||
<string name="advanced">Pokročilé</string>
|
<string name="advanced">Pokročilé</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Není nastaveno</string>
|
<string name="download_resources_custom_url_summary_none">Není nastaveno</string>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<string name="delete">Löschen</string>
|
<string name="delete">Löschen</string>
|
||||||
<string name="download_maps">Karten herunterladen</string>
|
<string name="download_maps">Karten herunterladen</string>
|
||||||
<!-- Settings/Downloader - info for country when download fails -->
|
<!-- Settings/Downloader - info for country when download fails -->
|
||||||
<string name="download_has_failed">Das Herunterladen ist fehlgeschlagen – antippen für einen erneuten Versuch</string>
|
<string name="download_has_failed">Das Herunterladen ist fehlgeschlagen, Antippen für einen neuen Versuch</string>
|
||||||
<!-- Settings/Downloader - info for country which started downloading -->
|
<!-- Settings/Downloader - info for country which started downloading -->
|
||||||
<string name="downloading">Wird heruntergeladen …</string>
|
<string name="downloading">Wird heruntergeladen …</string>
|
||||||
<!-- Choose measurement on first launch alert - choose metric system button -->
|
<!-- Choose measurement on first launch alert - choose metric system button -->
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
<!-- A dialog title, that warns a user that Precise Location is disabled and suggests to turn it on -->
|
<!-- A dialog title, that warns a user that Precise Location is disabled and suggests to turn it on -->
|
||||||
<string name="limited_accuracy">Eingeschränkte Genauigkeit</string>
|
<string name="limited_accuracy">Eingeschränkte Genauigkeit</string>
|
||||||
<!-- A dialog text, that warns a user that Precise Location is disabled and suggests to turn it on -->
|
<!-- A dialog text, that warns a user that Precise Location is disabled and suggests to turn it on -->
|
||||||
<string name="precise_location_is_disabled_long_text">Um eine genaue Navigation zu gewährleisten, aktiviere „Genauer Standort“ in den Einstellungen</string>
|
<string name="precise_location_is_disabled_long_text">Um eine genaue Navigation zu gewährleisten, aktivieren Sie „Genauer Standort“ in den Einstellungen</string>
|
||||||
<!-- View and button titles for accessibility -->
|
<!-- View and button titles for accessibility -->
|
||||||
<string name="zoom_to_country">Auf der Karte anzeigen</string>
|
<string name="zoom_to_country">Auf der Karte anzeigen</string>
|
||||||
<!-- Message to display at the center of the screen when the country download has failed -->
|
<!-- Message to display at the center of the screen when the country download has failed -->
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
<string name="try_again">Erneut versuchen</string>
|
<string name="try_again">Erneut versuchen</string>
|
||||||
<string name="about_menu_title">Über CoMaps</string>
|
<string name="about_menu_title">Über CoMaps</string>
|
||||||
<!-- Text in About screen -->
|
<!-- Text in About screen -->
|
||||||
<string name="about_headline">Freies Projekt, von der Gemeinschaft entwickelt</string>
|
<string name="about_headline">Offenes Projekt, von der Gemeinschaft entwickelt</string>
|
||||||
<!-- Text in About screen -->
|
<!-- Text in About screen -->
|
||||||
<string name="about_proposition_1">• Ausgereift und einfach zu bedienen</string>
|
<string name="about_proposition_1">• Ausgereift und einfach zu bedienen</string>
|
||||||
<!-- Text in About screen -->
|
<!-- Text in About screen -->
|
||||||
@@ -53,10 +53,10 @@
|
|||||||
<!-- Used in DownloadResources startup screen -->
|
<!-- Used in DownloadResources startup screen -->
|
||||||
<string name="disconnect_usb_cable">Bitte USB-Kabel entfernen oder Speicherkarte einsetzen, um CoMaps zu verwenden</string>
|
<string name="disconnect_usb_cable">Bitte USB-Kabel entfernen oder Speicherkarte einsetzen, um CoMaps zu verwenden</string>
|
||||||
<!-- Used in DownloadResources startup screen -->
|
<!-- Used in DownloadResources startup screen -->
|
||||||
<string name="not_enough_free_space_on_sdcard">Bitte zuerst den Speicherplatz auf der SD-Karte/USB-Speicher freigeben, um die Anwendung nutzen zu können</string>
|
<string name="not_enough_free_space_on_sdcard">Bitte zuerst Speicherplatz auf SD-Karte/USB-Speicher freigeben, um die Anwendung zu nutzen</string>
|
||||||
<string name="download_resources">Bevor Sie die App verwenden, laden Sie bitte die weltweite Übersichtskarte herunter. \nEs werden %s des Speicherplatzes benötigt.</string>
|
<string name="download_resources">Bevor Sie die App verwenden, laden Sie bitte die weltweite Übersichtskarte herunter. \nEs werden %s Speicherplatz benötigt.</string>
|
||||||
<string name="download_resources_continue">Zur Karte</string>
|
<string name="download_resources_continue">Zur Karte</string>
|
||||||
<string name="downloading_country_can_proceed">%1$s (%2$s) wird heruntergeladen. \nSie können jetzt zur Karte weitergehen.</string>
|
<string name="downloading_country_can_proceed">%1$s (%2$s) wird heruntergeladen. Sie können jetzt \nzur Karte weitergehen.</string>
|
||||||
<string name="download_country_ask">%1$s herunterladen? (%2$s)</string>
|
<string name="download_country_ask">%1$s herunterladen? (%2$s)</string>
|
||||||
<string name="update_country_ask">%1$s aktualisieren? (%2$s)</string>
|
<string name="update_country_ask">%1$s aktualisieren? (%2$s)</string>
|
||||||
<!-- REMOVE THIS STRING AFTER REFACTORING -->
|
<!-- REMOVE THIS STRING AFTER REFACTORING -->
|
||||||
@@ -84,7 +84,7 @@
|
|||||||
<!-- Header of settings activity where user defines storage path -->
|
<!-- Header of settings activity where user defines storage path -->
|
||||||
<string name="maps_storage">Karten speichern auf</string>
|
<string name="maps_storage">Karten speichern auf</string>
|
||||||
<!-- Detailed description of Maps Storage settings button -->
|
<!-- Detailed description of Maps Storage settings button -->
|
||||||
<string name="maps_storage_summary">Wähle den Speicherort für die herunterzuladenden Karten</string>
|
<string name="maps_storage_summary">Wählen Sie den Speicherort für die herunterzuladenden Karten</string>
|
||||||
<!-- E.g. "Downloaded maps: 500Mb" in Maps Storage settings -->
|
<!-- E.g. "Downloaded maps: 500Mb" in Maps Storage settings -->
|
||||||
<string name="maps_storage_downloaded">Heruntergeladene Karten</string>
|
<string name="maps_storage_downloaded">Heruntergeladene Karten</string>
|
||||||
<!-- Free space out of total storage size in Maps Storage settings, e.g. "300 MB free of 2 GB" -->
|
<!-- Free space out of total storage size in Maps Storage settings, e.g. "300 MB free of 2 GB" -->
|
||||||
@@ -94,7 +94,7 @@
|
|||||||
<!-- Error moving map files from one storage to another -->
|
<!-- Error moving map files from one storage to another -->
|
||||||
<string name="move_maps_error">Fehler beim Verschieben der Karten</string>
|
<string name="move_maps_error">Fehler beim Verschieben der Karten</string>
|
||||||
<!-- Ask user to wait several minutes (some long process in modal dialog). -->
|
<!-- Ask user to wait several minutes (some long process in modal dialog). -->
|
||||||
<string name="wait_several_minutes">Dies kann einige Minuten in Anspruch nehmen. \nBitte warten …</string>
|
<string name="wait_several_minutes">Dies kann einige Minuten in Anspruch nehmen. \nBitte warten …</string>
|
||||||
<!-- Measurement units title in settings activity -->
|
<!-- Measurement units title in settings activity -->
|
||||||
<string name="measurement_units">Maßeinheiten</string>
|
<string name="measurement_units">Maßeinheiten</string>
|
||||||
<!-- Detailed description of Measurement Units settings button -->
|
<!-- Detailed description of Measurement Units settings button -->
|
||||||
@@ -105,7 +105,7 @@
|
|||||||
<!-- Search category for grocery stores; any changes should be duplicated in categories.txt @category_food! -->
|
<!-- Search category for grocery stores; any changes should be duplicated in categories.txt @category_food! -->
|
||||||
<string name="category_food">Lebensmittel</string>
|
<string name="category_food">Lebensmittel</string>
|
||||||
<!-- Search category for public transport; any changes should be duplicated in categories.txt @category_transport! -->
|
<!-- Search category for public transport; any changes should be duplicated in categories.txt @category_transport! -->
|
||||||
<string name="category_transport">ÖPNV</string>
|
<string name="category_transport">Verkehr</string>
|
||||||
<!-- Search category for fuel stations; any changes should be duplicated in categories.txt @category_fuel! -->
|
<!-- Search category for fuel stations; any changes should be duplicated in categories.txt @category_fuel! -->
|
||||||
<string name="category_fuel">Tankstelle</string>
|
<string name="category_fuel">Tankstelle</string>
|
||||||
<!-- Search category for parking lots; any changes should be duplicated in categories.txt @category_parking! -->
|
<!-- Search category for parking lots; any changes should be duplicated in categories.txt @category_parking! -->
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
<!-- Search category for nightclubs/bars; any changes should be duplicated in categories.txt @category_nightlife! -->
|
<!-- Search category for nightclubs/bars; any changes should be duplicated in categories.txt @category_nightlife! -->
|
||||||
<string name="category_nightlife">Nachtleben</string>
|
<string name="category_nightlife">Nachtleben</string>
|
||||||
<!-- Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @category_children! -->
|
<!-- Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @category_children! -->
|
||||||
<string name="category_children">Familienfreizeit</string>
|
<string name="category_children">Freizeit mit Kindern</string>
|
||||||
<!-- Search category for banks; any changes should be duplicated in categories.txt @category_bank! -->
|
<!-- Search category for banks; any changes should be duplicated in categories.txt @category_bank! -->
|
||||||
<string name="category_bank">Bank</string>
|
<string name="category_bank">Bank</string>
|
||||||
<!-- Search category for pharmacies; any changes should be duplicated in categories.txt @category_pharmacy! -->
|
<!-- Search category for pharmacies; any changes should be duplicated in categories.txt @category_pharmacy! -->
|
||||||
@@ -137,7 +137,7 @@
|
|||||||
<!-- Search category for post offices; any changes should be duplicated in categories.txt @category_post! -->
|
<!-- Search category for post offices; any changes should be duplicated in categories.txt @category_post! -->
|
||||||
<string name="category_post">Post</string>
|
<string name="category_post">Post</string>
|
||||||
<!-- Search category for police; any changes should be duplicated in categories.txt @category_police! -->
|
<!-- Search category for police; any changes should be duplicated in categories.txt @category_police! -->
|
||||||
<string name="category_police">Polizei</string>
|
<string name="category_police">Polizeistation</string>
|
||||||
<!-- Search category for recycling; any changes should be duplicated in categories.txt @category_recycling! -->
|
<!-- Search category for recycling; any changes should be duplicated in categories.txt @category_recycling! -->
|
||||||
<string name="category_recycling">Recycling</string>
|
<string name="category_recycling">Recycling</string>
|
||||||
<!-- Search category for water; any changes should be duplicated in categories.txt @category_water! also used to sort bookmarks by type -->
|
<!-- Search category for water; any changes should be duplicated in categories.txt @category_water! also used to sort bookmarks by type -->
|
||||||
@@ -148,8 +148,8 @@
|
|||||||
<!-- Notes field in Bookmarks view -->
|
<!-- Notes field in Bookmarks view -->
|
||||||
<string name="description">Notizen</string>
|
<string name="description">Notizen</string>
|
||||||
<!-- Email Subject when sharing bookmark list -->
|
<!-- Email Subject when sharing bookmark list -->
|
||||||
<string name="share_bookmarks_email_subject">CoMaps-Lesezeichen wurden mit dir geteilt</string>
|
<string name="share_bookmarks_email_subject">CoMaps-Lesezeichen wurden mit Ihnen geteilt</string>
|
||||||
<string name="share_bookmarks_email_body">Hallo! \n \nIm Anhang sind meine Lesezeichen der CoMaps-App. Du kannst in CoMaps öffnen. Wenn du die App nicht installiert hast, kannst du sie von https://www.comaps.app/download/ für iOS oder Android herunterladen. \n \nViel Spaß beim Navigieren mit CoMaps!</string>
|
<string name="share_bookmarks_email_body">Hallo! \n \nIm Anhang sind meine Lesezeichen der CoMaps App. Sie können sie mit CoMaps öffnen. Wenn Sie die App nicht installiert haben, können Sie sie von https://www.comaps.app/download/ für iOS oder Android herunterladen. \n \nViel Spaß beim Reisen mit CoMaps!</string>
|
||||||
<!-- message title of loading file -->
|
<!-- message title of loading file -->
|
||||||
<string name="load_kmz_title">Lesezeichen werden geladen</string>
|
<string name="load_kmz_title">Lesezeichen werden geladen</string>
|
||||||
<!-- Kmz file successful loading -->
|
<!-- Kmz file successful loading -->
|
||||||
@@ -163,15 +163,15 @@
|
|||||||
<!-- resource for context menu -->
|
<!-- resource for context menu -->
|
||||||
<string name="edit">Bearbeiten</string>
|
<string name="edit">Bearbeiten</string>
|
||||||
<!-- Warning message when doing search around current position -->
|
<!-- Warning message when doing search around current position -->
|
||||||
<string name="unknown_current_position">Dein Standort konnte noch nicht ermittelt werden</string>
|
<string name="unknown_current_position">Ihr Standort konnte noch nicht ermittelt werden</string>
|
||||||
<!-- Alert message that we can't run Map Storage settings due to some reasons. -->
|
<!-- Alert message that we can't run Map Storage settings due to some reasons. -->
|
||||||
<string name="cant_change_this_setting">Entschuldige, die Einstellungen für die Kartenspeicherung sind aktuell deaktiviert</string>
|
<string name="cant_change_this_setting">Entschuldige, die Einstellungen für die Kartenspeicherung sind aktuell deaktiviert</string>
|
||||||
<!-- Alert message that downloading is in progress. -->
|
<!-- Alert message that downloading is in progress. -->
|
||||||
<string name="downloading_is_active">Die Karte wird jetzt heruntergeladen</string>
|
<string name="downloading_is_active">Die Karte wird heruntergeladen</string>
|
||||||
<!-- Share my position using SMS, %1$@ contains om:// and %2$@ https://comaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. -->
|
<!-- Share my position using SMS, %1$@ contains om:// and %2$@ https://comaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. -->
|
||||||
<string name="my_position_share_sms">Sieh dir meinen aktuellen Standort auf CoMaps an! %1$s oder %2$s Keine Offline-Karten installiert? Hier herunterladen: https://www.comaps.app/de/download/</string>
|
<string name="my_position_share_sms">Sieh dir meinen aktuellen Standort auf CoMaps an! %1$s oder %2$s Keine Offline-Karten installiert? Hier herunterladen: https://www.comaps.app/download/</string>
|
||||||
<!-- Subject for emailed bookmark -->
|
<!-- Subject for emailed bookmark -->
|
||||||
<string name="bookmark_share_email_subject">Hey, sieh dir meine Stecknadel in der CoMaps-App an!</string>
|
<string name="bookmark_share_email_subject">Hey, sieh dir meine Stecknadel auf der CoMaps-Karte an!</string>
|
||||||
<!-- Subject for emailed position -->
|
<!-- Subject for emailed position -->
|
||||||
<string name="my_position_share_email_subject">Hey, sieh dir meinen aktuellen Standort auf der CoMaps-Karte an!</string>
|
<string name="my_position_share_email_subject">Hey, sieh dir meinen aktuellen Standort auf der CoMaps-Karte an!</string>
|
||||||
<!-- Share my position using EMail, %1$@ is om:// and %2$@ is https://comaps.app link WITHOUT NAME -->
|
<!-- Share my position using EMail, %1$@ is om:// and %2$@ is https://comaps.app link WITHOUT NAME -->
|
||||||
@@ -179,7 +179,7 @@
|
|||||||
<!-- Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. -->
|
<!-- Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. -->
|
||||||
<string name="share">Teilen</string>
|
<string name="share">Teilen</string>
|
||||||
<!-- Share by email button text, also used in editor and About. -->
|
<!-- Share by email button text, also used in editor and About. -->
|
||||||
<string name="email">E-Mail</string>
|
<string name="email">Email</string>
|
||||||
<!-- Text for message when used successfully copied something -->
|
<!-- Text for message when used successfully copied something -->
|
||||||
<string name="copied_to_clipboard">In die Zwischenablage kopiert: %s</string>
|
<string name="copied_to_clipboard">In die Zwischenablage kopiert: %s</string>
|
||||||
<!-- Used for bookmark editing -->
|
<!-- Used for bookmark editing -->
|
||||||
@@ -197,7 +197,7 @@
|
|||||||
<string name="prefs_group_information">Information</string>
|
<string name="prefs_group_information">Information</string>
|
||||||
<string name="prefs_group_route">Navigation</string>
|
<string name="prefs_group_route">Navigation</string>
|
||||||
<string name="pref_zoom_title">Zoom-Tasten</string>
|
<string name="pref_zoom_title">Zoom-Tasten</string>
|
||||||
<string name="pref_zoom_summary">Zur Anzeige auf der Karte</string>
|
<string name="pref_zoom_summary">Auf der Karte anzeigen</string>
|
||||||
<!-- Settings «Map» category: «Night style» title -->
|
<!-- Settings «Map» category: «Night style» title -->
|
||||||
<string name="pref_map_style_title">Nachtmodus</string>
|
<string name="pref_map_style_title">Nachtmodus</string>
|
||||||
<!-- Generic «Off» string -->
|
<!-- Generic «Off» string -->
|
||||||
@@ -219,9 +219,9 @@
|
|||||||
<!-- Settings «Route» category: «Tts announce street names» description -->
|
<!-- Settings «Route» category: «Tts announce street names» description -->
|
||||||
<string name="pref_tts_street_names_description">Wenn aktiviert, wird der Name der Straße oder Ausfahrt, in die abgebogen werden soll, laut angekündigt.</string>
|
<string name="pref_tts_street_names_description">Wenn aktiviert, wird der Name der Straße oder Ausfahrt, in die abgebogen werden soll, laut angekündigt.</string>
|
||||||
<!-- Settings «Route» category: «Tts language» title -->
|
<!-- Settings «Route» category: «Tts language» title -->
|
||||||
<string name="pref_tts_language_title">Sprache der Sprachführung</string>
|
<string name="pref_tts_language_title">Sprache für Sprachführung</string>
|
||||||
<!-- Settings «Route» category: «Test Voice Directions» title -->
|
<!-- Settings «Route» category: «Test Voice Directions» title -->
|
||||||
<string name="pref_tts_test_voice_title">Teste die Sprachanweisungen</string>
|
<string name="pref_tts_test_voice_title">Teste Sprachanweisungen</string>
|
||||||
<!-- Settings «Route» category: Pop-up message when clicking «Test Voice Directions» -->
|
<!-- Settings «Route» category: Pop-up message when clicking «Test Voice Directions» -->
|
||||||
<string name="pref_tts_playing_test_voice">Überprüfe die Lautstärke oder die Text-To-Speech-Einstellungen des Systems, wenn du die Stimme jetzt nicht hören kannst</string>
|
<string name="pref_tts_playing_test_voice">Überprüfe die Lautstärke oder die Text-To-Speech-Einstellungen des Systems, wenn du die Stimme jetzt nicht hören kannst</string>
|
||||||
<!-- Settings «Route» category: «Tts unavailable» subtitle -->
|
<!-- Settings «Route» category: «Tts unavailable» subtitle -->
|
||||||
@@ -330,7 +330,7 @@
|
|||||||
<string name="blue_gray">Graublau</string>
|
<string name="blue_gray">Graublau</string>
|
||||||
<!-- SECTION: Routing dialogs strings -->
|
<!-- SECTION: Routing dialogs strings -->
|
||||||
<string name="dialog_routing_disclaimer_title">Wenn Sie der Route folgen, beachten Sie bitte:</string>
|
<string name="dialog_routing_disclaimer_title">Wenn Sie der Route folgen, beachten Sie bitte:</string>
|
||||||
<string name="dialog_routing_disclaimer_priority">— Zustand der Straßen, die Verkehrsordnung und Straßenschilder haben stets Vorrang vor Navigationsanweisungen;</string>
|
<string name="dialog_routing_disclaimer_priority">– Zustand der Straßen, die Verkehrsordnung und Straßenschilder haben stets Vorrang vor Navigationsanweisungen;</string>
|
||||||
<string name="dialog_routing_disclaimer_precision">– Die Karte kann ungenau sein, und die vorgeschlagene Route ist möglicherweise nicht der optimale Weg, um das Ziel zu erreichen;</string>
|
<string name="dialog_routing_disclaimer_precision">– Die Karte kann ungenau sein, und die vorgeschlagene Route ist möglicherweise nicht der optimale Weg, um das Ziel zu erreichen;</string>
|
||||||
<string name="dialog_routing_disclaimer_recommendations">— Die vorgeschlagenen Routen sind als Empfehlungen zu verstehen;</string>
|
<string name="dialog_routing_disclaimer_recommendations">— Die vorgeschlagenen Routen sind als Empfehlungen zu verstehen;</string>
|
||||||
<string name="dialog_routing_disclaimer_borders">— Bitte seien Sie vorsichtig bei Routen in Grenzgebieten: die Routen, die unsere App erstellt, können manchmal Landesgrenzen in gesperrten Gebieten überschreiten.</string>
|
<string name="dialog_routing_disclaimer_borders">— Bitte seien Sie vorsichtig bei Routen in Grenzgebieten: die Routen, die unsere App erstellt, können manchmal Landesgrenzen in gesperrten Gebieten überschreiten.</string>
|
||||||
@@ -543,7 +543,7 @@
|
|||||||
<string name="big_font">Schrift auf der Karte vergrößern</string>
|
<string name="big_font">Schrift auf der Karte vergrößern</string>
|
||||||
<string name="traffic_update_app">Bitte aktualisieren Sie CoMaps</string>
|
<string name="traffic_update_app">Bitte aktualisieren Sie CoMaps</string>
|
||||||
<!-- "traffic" as in "road congestion" -->
|
<!-- "traffic" as in "road congestion" -->
|
||||||
<string name="traffic_data_unavailable">Es sind keine Verkehrsdaten verfügbar</string>
|
<string name="traffic_data_unavailable">Verkehrsdaten sind nicht verfügbar</string>
|
||||||
<string name="enable_logging">Protokollierung aktivieren</string>
|
<string name="enable_logging">Protokollierung aktivieren</string>
|
||||||
<!-- Settings: "Send general feedback" button -->
|
<!-- Settings: "Send general feedback" button -->
|
||||||
<string name="feedback_general">Allgemeines Feedback</string>
|
<string name="feedback_general">Allgemeines Feedback</string>
|
||||||
@@ -873,7 +873,7 @@
|
|||||||
<string name="avoid_steps">Treppen vermeiden</string>
|
<string name="avoid_steps">Treppen vermeiden</string>
|
||||||
<string name="editor_place_doesnt_exist_description">Beschreibe wie der Ort jetzt aussieht um eine Fehlermeldung an die OpenStreetMap Community zu senden</string>
|
<string name="editor_place_doesnt_exist_description">Beschreibe wie der Ort jetzt aussieht um eine Fehlermeldung an die OpenStreetMap Community zu senden</string>
|
||||||
<string name="offline_explanation_title">Offline-Karten</string>
|
<string name="offline_explanation_title">Offline-Karten</string>
|
||||||
<string name="offline_explanation_text">Um die Gegend anzusehen und zu erkunden, musst du eine Karte runterladen.\nLade dir Karten für die Gebiete runter, die du bereisen willst.</string>
|
<string name="offline_explanation_text">Um die Gegend anzusehen, muss eine Karte heruntergeladen werden.\nLaden Sie Karten für die Gebiete herunter, die Sie bereisen möchten.</string>
|
||||||
<string name="charge_socket_type2">Typ 2 (ohne Kabel)</string>
|
<string name="charge_socket_type2">Typ 2 (ohne Kabel)</string>
|
||||||
<string name="charge_socket_type2_cable">Typ 2 (mit Kabel)</string>
|
<string name="charge_socket_type2_cable">Typ 2 (mit Kabel)</string>
|
||||||
<string name="charge_socket_type2_combo">Typ 2 Combo</string>
|
<string name="charge_socket_type2_combo">Typ 2 Combo</string>
|
||||||
@@ -898,15 +898,15 @@
|
|||||||
<string name="opens_day_at">Öffnet am %1$s um %2$s</string>
|
<string name="opens_day_at">Öffnet am %1$s um %2$s</string>
|
||||||
<string name="closes_day_at">Schließt am %1$s um %2$s</string>
|
<string name="closes_day_at">Schließt am %1$s um %2$s</string>
|
||||||
<plurals name="minutes_short">
|
<plurals name="minutes_short">
|
||||||
<item quantity="one">(%d min)</item>
|
<item quantity="one">%d min</item>
|
||||||
<item quantity="other">(%d min)</item>
|
<item quantity="other">%d min</item>
|
||||||
</plurals>
|
</plurals>
|
||||||
<string name="editor_business_vacant_button">Geschäft steht leer</string>
|
<string name="editor_business_vacant_button">Geschäft steht leer</string>
|
||||||
<string name="editor_mark_business_vacant_title">Geschäft auf leerstehend setzen</string>
|
<string name="editor_mark_business_vacant_title">Geschäft auf leerstehend setzen</string>
|
||||||
<string name="editor_submit">Absenden</string>
|
<string name="editor_submit">Absenden</string>
|
||||||
<string name="editor_mark_business_vacant_description">Verwenden Sie diese Option, wenn das Geschäft ausgezogen ist und ein neues Geschäft die leerstehenden Räume übernehmen könnte.</string>
|
<string name="editor_mark_business_vacant_description">Verwenden Sie diese Option, wenn das Geschäft ausgezogen ist und ein neues Geschäft die leerstehenden Räume übernehmen könnte.</string>
|
||||||
<string name="charge_socket_schuko">Schuko</string>
|
<string name="charge_socket_schuko">Schuko</string>
|
||||||
<string name="power_management">Stromverbrauch verwalten</string>
|
<string name="power_management">Energiemanagement</string>
|
||||||
<string name="place_page_map_too_old_title">Kartendaten veraltet</string>
|
<string name="place_page_map_too_old_title">Kartendaten veraltet</string>
|
||||||
<string name="place_page_map_too_old_description">Die aktuellen Kartendaten sind sehr alt, bitte aktualisiere die Karte.</string>
|
<string name="place_page_map_too_old_description">Die aktuellen Kartendaten sind sehr alt, bitte aktualisiere die Karte.</string>
|
||||||
<string name="place_page_app_too_old_description">Die aktuellen Kartendaten sind sehr alt, bitte aktualisiere die CoMaps-App.</string>
|
<string name="place_page_app_too_old_description">Die aktuellen Kartendaten sind sehr alt, bitte aktualisiere die CoMaps-App.</string>
|
||||||
@@ -920,4 +920,5 @@
|
|||||||
<string name="download_resources_custom_url_summary_none">Nicht konfiguriert</string>
|
<string name="download_resources_custom_url_summary_none">Nicht konfiguriert</string>
|
||||||
<string name="download_resources_custom_url_message">Standardserver für Kartendownloads überschreiben. Leer lassen, um den CoMaps-Standardserver zu nutzen.</string>
|
<string name="download_resources_custom_url_message">Standardserver für Kartendownloads überschreiben. Leer lassen, um den CoMaps-Standardserver zu nutzen.</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Bitte eine vollständige URL eingeben, die mit https:// beginnt und mit / endet</string>
|
<string name="download_resources_custom_url_error_scheme">Bitte eine vollständige URL eingeben, die mit https:// beginnt und mit / endet</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -927,4 +927,5 @@
|
|||||||
<string name="download_resources_custom_url_message">Sobreescribe el servidor de mapas por defecto. Deja en blanco para usar el servidor de CoMaps por defecto.</string>
|
<string name="download_resources_custom_url_message">Sobreescribe el servidor de mapas por defecto. Deja en blanco para usar el servidor de CoMaps por defecto.</string>
|
||||||
<string name="download_resources_custom_url_summary_none">No establecido</string>
|
<string name="download_resources_custom_url_summary_none">No establecido</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Por favor introduce un URL completo empezando con https:// y terminando con /</string>
|
<string name="download_resources_custom_url_error_scheme">Por favor introduce un URL completo empezando con https:// y terminando con /</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -915,5 +915,6 @@
|
|||||||
<string name="advanced">Täiendavad seadistused</string>
|
<string name="advanced">Täiendavad seadistused</string>
|
||||||
<string name="download_resources_custom_url_title">Sinu oma kaardiserver</string>
|
<string name="download_resources_custom_url_title">Sinu oma kaardiserver</string>
|
||||||
<string name="download_resources_custom_url_message">Kui tahad kasutada oma kaardiserverit, siis lisa ta siia. CoMapsi vaikimisi serveri kasutamiseks jäta tühjaks.</string>
|
<string name="download_resources_custom_url_message">Kui tahad kasutada oma kaardiserverit, siis lisa ta siia. CoMapsi vaikimisi serveri kasutamiseks jäta tühjaks.</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Palun sisesta täismahuline võrguaadress, mille alguses on https:// ja lõpus /</string>
|
<string name="download_resources_custom_url_error_scheme">Palun sisesta täismahuline võrguaadress, mille alguses on https:// ja lõpus /</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -923,6 +923,7 @@
|
|||||||
<string name="navigation_start_tts_disabled_message">Instructions vocales désactivées : moteur de synthèse vocale non disponible</string>
|
<string name="navigation_start_tts_disabled_message">Instructions vocales désactivées : moteur de synthèse vocale non disponible</string>
|
||||||
<string name="advanced">Avancé</string>
|
<string name="advanced">Avancé</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Non défini</string>
|
<string name="download_resources_custom_url_summary_none">Non défini</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_title">Serveur de cartes personnalisé</string>
|
<string name="download_resources_custom_url_title">Serveur de cartes personnalisé</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Veuillez saisir une URL complète débutant par https:// et se terminant par /</string>
|
<string name="download_resources_custom_url_error_scheme">Veuillez saisir une URL complète débutant par https:// et se terminant par /</string>
|
||||||
<string name="download_resources_custom_url_message">Serveur pour télécharger les cartes. Laissez vide pour utiliser le serveur par défaut CoMaps.</string>
|
<string name="download_resources_custom_url_message">Serveur pour télécharger les cartes. Laissez vide pour utiliser le serveur par défaut CoMaps.</string>
|
||||||
|
|||||||
@@ -908,6 +908,7 @@
|
|||||||
<string name="navigation_start_tts_message">"Inizio Navigazione, lingua per istruzioni vocali: "</string>
|
<string name="navigation_start_tts_message">"Inizio Navigazione, lingua per istruzioni vocali: "</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Aggiungere un URL che inizia con https:// e finisce con /</string>
|
<string name="download_resources_custom_url_error_scheme">Aggiungere un URL che inizia con https:// e finisce con /</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Non impostato</string>
|
<string name="download_resources_custom_url_summary_none">Non impostato</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_message">Sovrascrivi il server da cui scaricare le mappe. Lascia vuoto per usare i server default di CoMaps.</string>
|
<string name="download_resources_custom_url_message">Sovrascrivi il server da cui scaricare le mappe. Lascia vuoto per usare i server default di CoMaps.</string>
|
||||||
<string name="download_resources_custom_url_title">Server mappe personalizzato</string>
|
<string name="download_resources_custom_url_title">Server mappe personalizzato</string>
|
||||||
<string name="advanced">Avanzate</string>
|
<string name="advanced">Avanzate</string>
|
||||||
|
|||||||
@@ -899,6 +899,7 @@
|
|||||||
<string name="advanced">Kita</string>
|
<string name="advanced">Kita</string>
|
||||||
<string name="download_resources_custom_url_title">Pasirinktinis žemėlapių serveris</string>
|
<string name="download_resources_custom_url_title">Pasirinktinis žemėlapių serveris</string>
|
||||||
<string name="download_resources_custom_url_message">Žemėlapiams parsisiųsti galite nurodyti kitą, nei numatytasis, serverį. Palikite lauką tuščią, jei norite naudoti numatytąjį „CoMaps“ serverį.</string>
|
<string name="download_resources_custom_url_message">Žemėlapiams parsisiųsti galite nurodyti kitą, nei numatytasis, serverį. Palikite lauką tuščią, jei norite naudoti numatytąjį „CoMaps“ serverį.</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Nenurodytas</string>
|
<string name="download_resources_custom_url_summary_none">Nenurodytas</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Įveskite visą URL adresą, pradedant „https://“ ir baigiant „/“</string>
|
<string name="download_resources_custom_url_error_scheme">Įveskite visą URL adresą, pradedant „https://“ ir baigiant „/“</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -853,6 +853,7 @@
|
|||||||
<string name="navigation_start_tts_disabled_message">Balss norādes atspējotas: nav pieejams teksta pārveidošanas runā dzinējs</string>
|
<string name="navigation_start_tts_disabled_message">Balss norādes atspējotas: nav pieejams teksta pārveidošanas runā dzinējs</string>
|
||||||
<string name="prefs_speed_cameras_information">Brīdinājumi par ātruma noteikšanas kamerā ir atspējoti valstīs, kurās šādus brīdinājumus aizliedz vietējais likums.</string>
|
<string name="prefs_speed_cameras_information">Brīdinājumi par ātruma noteikšanas kamerā ir atspējoti valstīs, kurās šādus brīdinājumus aizliedz vietējais likums.</string>
|
||||||
<string name="navigation_start_tts_message">"Uzsāk navigāciju, balss norāžu valoda: "</string>
|
<string name="navigation_start_tts_message">"Uzsāk navigāciju, balss norāžu valoda: "</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Nav iestatīts</string>
|
<string name="download_resources_custom_url_summary_none">Nav iestatīts</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Lūgums ievadīt pilnu URL, kas sākas ar https:// un beidzas ar /</string>
|
<string name="download_resources_custom_url_error_scheme">Lūgums ievadīt pilnu URL, kas sākas ar https:// un beidzas ar /</string>
|
||||||
<string name="advanced">Iestatījumi: izvērsta kopa</string>
|
<string name="advanced">Iestatījumi: izvērsta kopa</string>
|
||||||
|
|||||||
@@ -732,7 +732,7 @@
|
|||||||
<!-- App tip #01 -->
|
<!-- App tip #01 -->
|
||||||
<string name="app_tip_01">Med dine donasjoner og støtte kan vi lage de beste kartene i verden!</string>
|
<string name="app_tip_01">Med dine donasjoner og støtte kan vi lage de beste kartene i verden!</string>
|
||||||
<!-- App tip #02 -->
|
<!-- App tip #02 -->
|
||||||
<string name="app_tip_02">Liker du appen vår? Vennligst doner for å støtte utviklingen! Liker du den ikke ennå? La oss få vite hvorfor, så fikser vi det!</string>
|
<string name="app_tip_02">Liker du appen vår? Vennligst doner for å støtte utviklingen! Liker du det ikke ennå? Gi oss beskjed, så fikser vi det!</string>
|
||||||
<!-- App tip #03 -->
|
<!-- App tip #03 -->
|
||||||
<string name="app_tip_03">Hvis du kjenner en programvareutvikler, kan du be ham eller henne implementere en funksjon du trenger.</string>
|
<string name="app_tip_03">Hvis du kjenner en programvareutvikler, kan du be ham eller henne implementere en funksjon du trenger.</string>
|
||||||
<!-- App tip #04 -->
|
<!-- App tip #04 -->
|
||||||
@@ -746,7 +746,7 @@
|
|||||||
<!-- App tip #08 -->
|
<!-- App tip #08 -->
|
||||||
<string name="app_tip_08">Du kan enkelt fikse og forbedre kartdataene.</string>
|
<string name="app_tip_08">Du kan enkelt fikse og forbedre kartdataene.</string>
|
||||||
<!-- App tip #09 -->
|
<!-- App tip #09 -->
|
||||||
<string name="app_tip_09">Vårt hovedmål er å lage raske, personvernfokuserte, brukervennlige kart som du vil like.</string>
|
<string name="app_tip_09">Vårt hovedmål er å bygge raske, personvernfokuserte, brukervennlige kart som du vil elske.</string>
|
||||||
<!-- Text on the Android Auto or CarPlay placeholder screen that maps are displayed on the phone screen -->
|
<!-- Text on the Android Auto or CarPlay placeholder screen that maps are displayed on the phone screen -->
|
||||||
<string name="car_used_on_the_phone_screen">Du bruker nå CoMaps på telefonskjermen</string>
|
<string name="car_used_on_the_phone_screen">Du bruker nå CoMaps på telefonskjermen</string>
|
||||||
<!-- Text on the phone placeholder screen that maps are displayed on the car screen -->
|
<!-- Text on the phone placeholder screen that maps are displayed on the car screen -->
|
||||||
@@ -909,6 +909,7 @@
|
|||||||
<string name="advanced">Avansert</string>
|
<string name="advanced">Avansert</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Ikke angitt</string>
|
<string name="download_resources_custom_url_summary_none">Ikke angitt</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Angi en fullstendig nettadresse som starter med https:// og slutter med /</string>
|
<string name="download_resources_custom_url_error_scheme">Angi en fullstendig nettadresse som starter med https:// og slutter med /</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_message">Overstyr standardserveren som brukes til nedlasting av kart. La det stå tomt for å bruke CoMaps standardserver.</string>
|
<string name="download_resources_custom_url_message">Overstyr standardserveren som brukes til nedlasting av kart. La det stå tomt for å bruke CoMaps standardserver.</string>
|
||||||
<string name="download_resources_custom_url_title">Tilpasset kartserver</string>
|
<string name="download_resources_custom_url_title">Tilpasset kartserver</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -150,8 +150,6 @@
|
|||||||
<item name="colorSurfaceContainer">@color/md_theme_surfaceContainer</item>
|
<item name="colorSurfaceContainer">@color/md_theme_surfaceContainer</item>
|
||||||
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh</item>
|
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh</item>
|
||||||
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest</item>
|
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest</item>
|
||||||
|
|
||||||
<item name="appBackground">?android:attr/colorBackground</item>
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="MwmTheme" parent="MwmTheme.Base"/>
|
<style name="MwmTheme" parent="MwmTheme.Base"/>
|
||||||
|
|||||||
@@ -918,6 +918,7 @@
|
|||||||
<string name="advanced">Geavanceerd</string>
|
<string name="advanced">Geavanceerd</string>
|
||||||
<string name="download_resources_custom_url_title">Aangepaste server voor kaarten</string>
|
<string name="download_resources_custom_url_title">Aangepaste server voor kaarten</string>
|
||||||
<string name="download_resources_custom_url_message">Overschrijf de standaard kaartdownloadserver die wordt gebruikt voor kaartdownloads. Laat leeg om de standaardserver van CoMaps te gebruiken.</string>
|
<string name="download_resources_custom_url_message">Overschrijf de standaard kaartdownloadserver die wordt gebruikt voor kaartdownloads. Laat leeg om de standaardserver van CoMaps te gebruiken.</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Niet ingesteld</string>
|
<string name="download_resources_custom_url_summary_none">Niet ingesteld</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Voer een volledige URL in, beginnend met https:// en eindigend met /</string>
|
<string name="download_resources_custom_url_error_scheme">Voer een volledige URL in, beginnend met https:// en eindigend met /</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -912,6 +912,7 @@
|
|||||||
<string name="advanced">Avançadas</string>
|
<string name="advanced">Avançadas</string>
|
||||||
<string name="download_resources_custom_url_title">Servidor de Mapa Personalizado</string>
|
<string name="download_resources_custom_url_title">Servidor de Mapa Personalizado</string>
|
||||||
<string name="download_resources_custom_url_message">Substitui o servidor de download de mapas normal. Deixe em branco para usar o servidor do CoMaps padrão.</string>
|
<string name="download_resources_custom_url_message">Substitui o servidor de download de mapas normal. Deixe em branco para usar o servidor do CoMaps padrão.</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Indefinido</string>
|
<string name="download_resources_custom_url_summary_none">Indefinido</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Por favor insira um URL inteiro começando com https:// e acabando com /</string>
|
<string name="download_resources_custom_url_error_scheme">Por favor insira um URL inteiro começando com https:// e acabando com /</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -662,4 +662,5 @@
|
|||||||
<string name="download_resources_custom_url_message">Prepiši privzeti strežnik za prenos zemljevidov, ki se uporablja za prenos zemljevidov. Pustite prazno, če želite uporabiti privzeti strežnik CoMaps.</string>
|
<string name="download_resources_custom_url_message">Prepiši privzeti strežnik za prenos zemljevidov, ki se uporablja za prenos zemljevidov. Pustite prazno, če želite uporabiti privzeti strežnik CoMaps.</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Ni nastavljeno</string>
|
<string name="download_resources_custom_url_summary_none">Ni nastavljeno</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Prosimo, vnesite polni URL, ki se začne z https:// in konča z /</string>
|
<string name="download_resources_custom_url_error_scheme">Prosimo, vnesite polni URL, ki se začne z https:// in konča z /</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -917,6 +917,7 @@
|
|||||||
<string name="advanced">Напредно</string>
|
<string name="advanced">Напредно</string>
|
||||||
<string name="download_resources_custom_url_title">Сопствени сервер мапа</string>
|
<string name="download_resources_custom_url_title">Сопствени сервер мапа</string>
|
||||||
<string name="download_resources_custom_url_message">Замени подразумевани сервер за преузимање мапа који се користи за преузимања мапа. Оставите празно да бисте користили CoMaps сервер.</string>
|
<string name="download_resources_custom_url_message">Замени подразумевани сервер за преузимање мапа који се користи за преузимања мапа. Оставите празно да бисте користили CoMaps сервер.</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Није постављено</string>
|
<string name="download_resources_custom_url_summary_none">Није постављено</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Унесите пуну УРЛ адресу која почиње са https:// и која се завршава са /</string>
|
<string name="download_resources_custom_url_error_scheme">Унесите пуну УРЛ адресу која почиње са https:// и која се завршава са /</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -917,6 +917,7 @@
|
|||||||
<string name="place_page_app_too_old_description">您当前的地图数据非常旧,请更新 CoMaps 应用。</string>
|
<string name="place_page_app_too_old_description">您当前的地图数据非常旧,请更新 CoMaps 应用。</string>
|
||||||
<string name="place_page_update_too_old_map">更新地图区域</string>
|
<string name="place_page_update_too_old_map">更新地图区域</string>
|
||||||
<string name="place_page_too_old_to_edit">由于地图数据太旧,OpenStreetMap 编辑被禁用。</string>
|
<string name="place_page_too_old_to_edit">由于地图数据太旧,OpenStreetMap 编辑被禁用。</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_summary_none">未设置</string>
|
<string name="download_resources_custom_url_summary_none">未设置</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">请输入以 https:// 开头、以 / 结尾的完整 URL</string>
|
<string name="download_resources_custom_url_error_scheme">请输入以 https:// 开头、以 / 结尾的完整 URL</string>
|
||||||
<string name="advanced">高级</string>
|
<string name="advanced">高级</string>
|
||||||
|
|||||||
@@ -64,7 +64,6 @@
|
|||||||
<color name="bg_cards">@android:color/white</color>
|
<color name="bg_cards">@android:color/white</color>
|
||||||
<color name="bg_panel">@color/bg_window</color>
|
<color name="bg_panel">@color/bg_window</color>
|
||||||
<color name="bg_primary_dark">#37653F</color> <!-- secondary dark -->
|
<color name="bg_primary_dark">#37653F</color> <!-- secondary dark -->
|
||||||
<color name="bg_app">@android:color/white</color>
|
|
||||||
|
|
||||||
<color name="bg_dialog_translucent">#BB000000</color>
|
<color name="bg_dialog_translucent">#BB000000</color>
|
||||||
<color name="bg_text_translucent">#99FFFFFF</color>
|
<color name="bg_text_translucent">#99FFFFFF</color>
|
||||||
|
|||||||
@@ -105,5 +105,4 @@
|
|||||||
<string name="count_label" translatable="false">× %d</string>
|
<string name="count_label" translatable="false">× %d</string>
|
||||||
<string name="kw_label" translatable="false">%s kW</string>
|
<string name="kw_label" translatable="false">%s kW</string>
|
||||||
<string name="phone_format" translatable="false">+ XX X XX XX XX</string>
|
<string name="phone_format" translatable="false">+ XX X XX XX XX</string>
|
||||||
<string name="download_resources_custom_url_hint" translatable="false">https://cdn-fi-1.comaps.app/</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -971,6 +971,7 @@
|
|||||||
<!-- Custom Download URL -->
|
<!-- Custom Download URL -->
|
||||||
<string name="download_resources_custom_url_title">Custom Map Server</string>
|
<string name="download_resources_custom_url_title">Custom Map Server</string>
|
||||||
<string name="download_resources_custom_url_message">Override the default map download server used for map downloads. Leave empty to use CoMaps default server.</string>
|
<string name="download_resources_custom_url_message">Override the default map download server used for map downloads. Leave empty to use CoMaps default server.</string>
|
||||||
|
<string name="download_resources_custom_url_hint">https://cdn-fi-1.comaps.app/</string>
|
||||||
<string name="download_resources_custom_url_summary_none">Not set</string>
|
<string name="download_resources_custom_url_summary_none">Not set</string>
|
||||||
<string name="download_resources_custom_url_error_scheme">Please enter a full URL starting with https:// and ending with /</string>
|
<string name="download_resources_custom_url_error_scheme">Please enter a full URL starting with https:// and ending with /</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -148,6 +148,11 @@
|
|||||||
<item name="buttonGravity">center_vertical</item>
|
<item name="buttonGravity">center_vertical</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="MwmWidget.ToolbarStyle.Light">
|
||||||
|
<item name="android:titleTextAppearance">@style/MwmTextAppearance.Toolbar.Title.Light</item>
|
||||||
|
<item name="titleTextAppearance">@style/MwmTextAppearance.Toolbar.Title.Light</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<style name="MwmWidget.ToolbarStyle.NoElevation">
|
<style name="MwmWidget.ToolbarStyle.NoElevation">
|
||||||
<item name="android:elevation">0dp</item>
|
<item name="android:elevation">0dp</item>
|
||||||
</style>
|
</style>
|
||||||
@@ -159,6 +164,29 @@
|
|||||||
<item name="iconTint">@color/white_primary</item>
|
<item name="iconTint">@color/white_primary</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="MwmWidget.ToolbarTheme.Light" parent="MwmWidget.ToolbarTheme">
|
||||||
|
<item name="android:gravity">center_vertical</item>
|
||||||
|
<item name="colorAccent">@android:color/white</item>
|
||||||
|
<item name="colorSecondary">#FF32363A</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="MwmWidget.ToolbarTheme.Transparent" parent="ThemeOverlay.Material3.Dark.ActionBar">
|
||||||
|
<item name="android:gravity">center_vertical</item>
|
||||||
|
<item name="colorAccent">@android:color/white</item>
|
||||||
|
<item name="colorSecondary">@android:color/white</item>
|
||||||
|
<item name="android:windowActionBarOverlay">true</item>
|
||||||
|
<item name="windowActionBarOverlay">true</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style
|
||||||
|
name="MwmWidget.ToolbarTheme.DownButton"
|
||||||
|
parent="ThemeOverlay.Material3.Dark.ActionBar">
|
||||||
|
<item name="android:gravity">center_vertical</item>
|
||||||
|
<item name="colorAccent">@android:color/white</item>
|
||||||
|
<item name="colorSecondary">@android:color/white</item>
|
||||||
|
<item name="android:homeAsUpIndicator">@drawable/ic_expand_more</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<style name="MwmWidget.ListView" parent="android:Widget.Material.ListView">
|
<style name="MwmWidget.ListView" parent="android:Widget.Material.ListView">
|
||||||
<item name="android:fadingEdge">none</item>
|
<item name="android:fadingEdge">none</item>
|
||||||
<item name="android:divider">@color/divider</item>
|
<item name="android:divider">@color/divider</item>
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
<attr name="textDialogTheme" format="reference" />
|
<attr name="textDialogTheme" format="reference" />
|
||||||
<attr name="windowBackgroundForced" format="reference|color" />
|
<attr name="windowBackgroundForced" format="reference|color" />
|
||||||
<attr name="cardBackground" format="reference" />
|
<attr name="cardBackground" format="reference" />
|
||||||
<attr name="appBackground" format="reference|color" />
|
|
||||||
<attr name="clickableBackground" format="reference" />
|
<attr name="clickableBackground" format="reference" />
|
||||||
<attr name="statusBar" format="color" />
|
<attr name="statusBar" format="color" />
|
||||||
<attr name="secondary" format="color" />
|
<attr name="secondary" format="color" />
|
||||||
|
|||||||
@@ -158,8 +158,6 @@
|
|||||||
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh</item>
|
<item name="colorSurfaceContainerHigh">@color/md_theme_surfaceContainerHigh</item>
|
||||||
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest</item>
|
<item name="colorSurfaceContainerHighest">@color/md_theme_surfaceContainerHighest</item>
|
||||||
|
|
||||||
<item name="appBackground">@color/bg_app</item>
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="MwmTheme" parent="MwmTheme.Base"/>
|
<style name="MwmTheme" parent="MwmTheme.Base"/>
|
||||||
|
|||||||
@@ -50,37 +50,4 @@
|
|||||||
<string name="type.amenity.place_of_worship.hindu">হিন্দু মন্দির</string>
|
<string name="type.amenity.place_of_worship.hindu">হিন্দু মন্দির</string>
|
||||||
<string name="type.amenity.prison">কারাগার</string>
|
<string name="type.amenity.prison">কারাগার</string>
|
||||||
<string name="type.barrier.fence">বেড়া</string>
|
<string name="type.barrier.fence">বেড়া</string>
|
||||||
<string name="type.waterway.waterfall">ঝর্ণা</string>
|
|
||||||
<string name="type.waterway.river">নদী</string>
|
|
||||||
<string name="type.waterway.dam">বাঁধ</string>
|
|
||||||
<string name="type.attraction.historic">ঐতিহাসিক আকর্ষণ</string>
|
|
||||||
<string name="type.area_highway.steps">সিঁড়ি</string>
|
|
||||||
<string name="type.area_highway.path">পথ</string>
|
|
||||||
<string name="type.amenity.theatre">থিয়েটার</string>
|
|
||||||
<string name="type.sport.soccer">ফুটবল</string>
|
|
||||||
<string name="type.sport.swimming">সাঁতার</string>
|
|
||||||
<string name="type.sport.table_tennis">টেবিল টেনিস</string>
|
|
||||||
<string name="type.sport.yoga">যোগ</string>
|
|
||||||
<string name="type.tourism">পর্যটন</string>
|
|
||||||
<string name="type.tourism.artwork.statue">মূর্তি</string>
|
|
||||||
<string name="type.tourism.attraction">আকর্ষণ</string>
|
|
||||||
<string name="type.tourism.artwork.sculpture">ভাস্কর্য</string>
|
|
||||||
<string name="type.tourism.hostel">হোস্টেল</string>
|
|
||||||
<string name="type.tourism.hotel">হোটেল</string>
|
|
||||||
<string name="type.tourism.zoo">চিড়িয়াখানা</string>
|
|
||||||
<string name="type.tourism.museum">জাদুঘর</string>
|
|
||||||
<string name="type.sport.volleyball">ভলিবল</string>
|
|
||||||
<string name="type.sport.golf">গল্ফ</string>
|
|
||||||
<string name="type.sport.cricket">ক্রিকেট</string>
|
|
||||||
<string name="type.sport.chess">দাবা</string>
|
|
||||||
<string name="type.sport.basketball">বাস্কেটবল</string>
|
|
||||||
<string name="type.sport.badminton">ব্যাডমিন্টন</string>
|
|
||||||
<string name="type.sport">ক্রীড়া</string>
|
|
||||||
<string name="type.sport.multi">বিভিন্ন ক্রীড়া</string>
|
|
||||||
<string name="type.amenity.toilets">শৌচালয়</string>
|
|
||||||
<string name="type.shop.watches">ঘড়ির দোকান</string>
|
|
||||||
<string name="type.shop.paint">রঙের দোকান</string>
|
|
||||||
<string name="type.shop.lottery">লটারি টিকিট</string>
|
|
||||||
<string name="type.shop.boutique">বুটিক</string>
|
|
||||||
<string name="type.shop.bag">ব্যাগের দোকান</string>
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -145,7 +145,7 @@
|
|||||||
<string name="type.amenity.vending_machine.cigarettes">Automat na cigarety</string>
|
<string name="type.amenity.vending_machine.cigarettes">Automat na cigarety</string>
|
||||||
<string name="type.amenity.vending_machine.drinks">Automat na nápoje</string>
|
<string name="type.amenity.vending_machine.drinks">Automat na nápoje</string>
|
||||||
<string name="type.amenity.vending_machine.parking_tickets">Parkovací automat</string>
|
<string name="type.amenity.vending_machine.parking_tickets">Parkovací automat</string>
|
||||||
<string name="type.amenity.vending_machine.public_transport_tickets">Automat na jízdenky MHD</string>
|
<string name="type.amenity.vending_machine.public_transport_tickets">Automat na jízdenky</string>
|
||||||
<string name="type.amenity.vehicle_inspection">Kontrola vozidla</string>
|
<string name="type.amenity.vehicle_inspection">Kontrola vozidla</string>
|
||||||
<string name="type.amenity.veterinary">Veterinář</string>
|
<string name="type.amenity.veterinary">Veterinář</string>
|
||||||
<string name="type.amenity.waste_basket">Odpadkový koš</string>
|
<string name="type.amenity.waste_basket">Odpadkový koš</string>
|
||||||
@@ -1260,7 +1260,7 @@
|
|||||||
<string name="type.recycling.cardboard">Lepenka</string>
|
<string name="type.recycling.cardboard">Lepenka</string>
|
||||||
<string name="type.recycling.shoes">Boty</string>
|
<string name="type.recycling.shoes">Boty</string>
|
||||||
<string name="type.building.warehouse">Sklad</string>
|
<string name="type.building.warehouse">Sklad</string>
|
||||||
<string name="type.amenity.shelter.lean_to">Otevřený spací přístřešek</string>
|
<string name="type.amenity.shelter.lean_to">Otevřený přístřešek</string>
|
||||||
<string name="type.amenity.vending_machine.coffee">Automat na kávu</string>
|
<string name="type.amenity.vending_machine.coffee">Automat na kávu</string>
|
||||||
<string name="type.amenity.taxi">Stanoviště taxislužby</string>
|
<string name="type.amenity.taxi">Stanoviště taxislužby</string>
|
||||||
<string name="type.amenity.vending_machine">Prodejní automat</string>
|
<string name="type.amenity.vending_machine">Prodejní automat</string>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<!-- Removable external storage type in Maps Storage settings, e.g. an SD card -->
|
<!-- Removable external storage type in Maps Storage settings, e.g. an SD card -->
|
||||||
<string name="maps_storage_removable">SD-Karte</string>
|
<string name="maps_storage_removable">SD-Karte</string>
|
||||||
<!-- Generic external storage type in Maps Storage settings -->
|
<!-- Generic external storage type in Maps Storage settings -->
|
||||||
<string name="maps_storage_external">Externer geteilter Speicher</string>
|
<string name="maps_storage_external">Externer gemeinsamer Speicher</string>
|
||||||
<!-- Search category for WiFi access; any changes should be duplicated in categories.txt @category_wifi! -->
|
<!-- Search category for WiFi access; any changes should be duplicated in categories.txt @category_wifi! -->
|
||||||
<string name="category_wifi">WLAN</string>
|
<string name="category_wifi">WLAN</string>
|
||||||
<string name="postal_code">Postleitzahl</string>
|
<string name="postal_code">Postleitzahl</string>
|
||||||
|
|||||||
@@ -154,7 +154,7 @@
|
|||||||
<!-- Compared to wilderness_hut its smaller and simpler, without a fireplace. -->
|
<!-- Compared to wilderness_hut its smaller and simpler, without a fireplace. -->
|
||||||
<string name="type.amenity.shelter.basic_hut">Biwakschachtel</string>
|
<string name="type.amenity.shelter.basic_hut">Biwakschachtel</string>
|
||||||
<!-- A traditional 3-walled shelter (one side open), suitable for overnight camping. -->
|
<!-- A traditional 3-walled shelter (one side open), suitable for overnight camping. -->
|
||||||
<string name="type.amenity.shelter.lean_to">Lean-to Schlafunterstand</string>
|
<string name="type.amenity.shelter.lean_to">Überdachung zum Schlafen</string>
|
||||||
<string name="type.amenity.public_bath">Öffentliches Bad</string>
|
<string name="type.amenity.public_bath">Öffentliches Bad</string>
|
||||||
<string name="type.amenity.shower">Dusche</string>
|
<string name="type.amenity.shower">Dusche</string>
|
||||||
<string name="type.amenity.stripclub">Stripclub</string>
|
<string name="type.amenity.stripclub">Stripclub</string>
|
||||||
@@ -173,7 +173,7 @@
|
|||||||
<string name="type.amenity.vending_machine.food">Essensautomat</string>
|
<string name="type.amenity.vending_machine.food">Essensautomat</string>
|
||||||
<string name="type.amenity.vending_machine.newspapers">Zeitungsautomat</string>
|
<string name="type.amenity.vending_machine.newspapers">Zeitungsautomat</string>
|
||||||
<string name="type.amenity.vending_machine.parking_tickets">Parkautomat</string>
|
<string name="type.amenity.vending_machine.parking_tickets">Parkautomat</string>
|
||||||
<string name="type.amenity.vending_machine.public_transport_tickets">Fahrkartenautomat</string>
|
<string name="type.amenity.vending_machine.public_transport_tickets">5Fahrkartenautomat|4Ticketautomat|4Busticket|4Zugticket|5Bahnticket|4Zugfahrschein|U+1F3AB|U+1F39F|U+1F9FE</string>
|
||||||
<string name="type.amenity.vending_machine.sweets">Süßigkeitenautomat</string>
|
<string name="type.amenity.vending_machine.sweets">Süßigkeitenautomat</string>
|
||||||
<string name="type.amenity.vending_machine.excrement_bags">Hundekotbeutelspender</string>
|
<string name="type.amenity.vending_machine.excrement_bags">Hundekotbeutelspender</string>
|
||||||
<string name="type.amenity.parcel_locker">Paketstation</string>
|
<string name="type.amenity.parcel_locker">Paketstation</string>
|
||||||
@@ -374,9 +374,9 @@
|
|||||||
<string name="type.spherical_buoy.special_purpose">Kugelförmige Spezialboje</string>
|
<string name="type.spherical_buoy.special_purpose">Kugelförmige Spezialboje</string>
|
||||||
<string name="type.lateral.port">Backbord</string>
|
<string name="type.lateral.port">Backbord</string>
|
||||||
<string name="type.lateral.starboard">Steuerbord</string>
|
<string name="type.lateral.starboard">Steuerbord</string>
|
||||||
<string name="type.cardinal.east">Osten</string>
|
<string name="type.cardinal.east">Ost</string>
|
||||||
<string name="type.cardinal.north">Norden</string>
|
<string name="type.cardinal.north">Nord</string>
|
||||||
<string name="type.cardinal.south">Süden</string>
|
<string name="type.cardinal.south">Süd</string>
|
||||||
<string name="type.cardinal.west">Westen</string>
|
<string name="type.cardinal.west">Westen</string>
|
||||||
<!-- A mountain rescue base for search and rescue activities. -->
|
<!-- A mountain rescue base for search and rescue activities. -->
|
||||||
<string name="type.emergency.mountain_rescue">Bergrettungsstation</string>
|
<string name="type.emergency.mountain_rescue">Bergrettungsstation</string>
|
||||||
|
|||||||
@@ -1274,7 +1274,7 @@
|
|||||||
<string name="type.sport.beachvolleyball">Paplūdimo tinklinis</string>
|
<string name="type.sport.beachvolleyball">Paplūdimo tinklinis</string>
|
||||||
<string name="type.sport.bowls">Rutulių sportas</string>
|
<string name="type.sport.bowls">Rutulių sportas</string>
|
||||||
<string name="type.sport.chess">Šachmatai</string>
|
<string name="type.sport.chess">Šachmatai</string>
|
||||||
<string name="type.sport.climbing">Laipiojimo centras</string>
|
<string name="type.sport.climbing">Alpinizmo centras</string>
|
||||||
<string name="type.sport.cricket">Kriketas</string>
|
<string name="type.sport.cricket">Kriketas</string>
|
||||||
<string name="type.sport.curling">Akmenslydis</string>
|
<string name="type.sport.curling">Akmenslydis</string>
|
||||||
<string name="type.sport.diving">Šuoliai į vandenį</string>
|
<string name="type.sport.diving">Šuoliai į vandenį</string>
|
||||||
|
|||||||
@@ -1,35 +1,35 @@
|
|||||||
{
|
{
|
||||||
"@category_eat": "3Essen|Trinken|4Gastronomie|Gastro|Lokal|Speisen|Verpflegung|Hunger",
|
"@category_eat": "Essmöglichkeiten|Essen|5Essensmöglichkeiten|Mahlzeit",
|
||||||
"@category_food": "4Lebensmittel|4Essen|4Nahrung|4Nahrungsmittel",
|
"@category_food": "4Lebensmittel|Essen|Nahrung|Nahrungsmittel",
|
||||||
"@category_transport": "ÖPNV",
|
"@category_transport": "Verkehr",
|
||||||
"@category_fuel": "2Tankstelle|4Tanken|3Benzin|4Diesel|4Sprit|3Kraftstoff|4Tankfüllung",
|
"@category_fuel": "2Tankstelle|4Tanken|3Benzin|3Diesel|4Sprit|3Kraftstoff|3Treibstoff",
|
||||||
"@category_parking": "4Parkplätze|Parkplatz|Parkhaus|Tiefgarage|Parken",
|
"@category_parking": "4Parkplätze|Parkplatz|Parkhaus|Tiefgarage",
|
||||||
"@category_shopping": "4Einkaufen|Laden|2Läden|Bummeln|Shoppen|Geschäfte",
|
"@category_shopping": "4Einkaufen|Laden|2Läden|Bummeln",
|
||||||
"@category_hotel": "Hotel|Hotels|Übernachtung|übernachten|Schlaf|schlafen|Unterkunft",
|
"@category_hotel": "Hotel|Hotels|Übernachtung|übernachten|Schlaf|schlafen",
|
||||||
"@category_tourism": "4Sehenswürdigkeit|4Attraktion|4Tourismus|Touristenattraktion|Sehenswürdigkeiten|Wahrzeichen|Attraktionen",
|
"@category_tourism": "4Sehenswürdigkeit|4Attraktion|4Tourismus|Touristenattraktion|Sehenswürdigkeiten|Wahrzeichen|Attraktionen",
|
||||||
"@category_entertainment": "3Unterhaltung|4Ausgehen",
|
"@category_entertainment": "4Unterhaltung",
|
||||||
"@category_nightlife": "Nachtleben|Party|Ausgehen",
|
"@category_nightlife": "Nachtleben",
|
||||||
"@category_children": "Freizeit mit Kindern|Familienurlaub|Familie|Kinder|Babies|Babys|kinderfreundlich|familienfreundlich",
|
"@category_children": "Freizeit mit Kindern|Familienurlaub|Familie|Kinder|Babies|Babys|kinderfreundlich|familienfreundlich",
|
||||||
"@category_atm": "3Geldautomat|4Bankautomat|7Bargeldautomat|3Geldscheinautomat",
|
"@category_atm": "3Geldautomat|4Bankautomat|7Bargeldautomat|3Geldscheinautomat",
|
||||||
"@category_rv": "6Einrichtungen für Wohnmobile|4Wohnmobile|4Wohnmobilstellplatz|Campingbus",
|
"@category_rv": "6Einrichtungen für Wohnmobile|4Wohnmobile|4Wohnmobilstellplatz",
|
||||||
"amenity-atm|@category_atm": "5Geldautomat|5Bankautomat|5Bankomat|4Bargeld|3Geld|U+1F3E7|U+1F4B2|U+1F4B3|U+1F4B4|U+1F4B5|U+1F4B6|U+1F4B7",
|
"amenity-atm|@category_atm": "3Geldautomat|4Bankautomat|5Bankomat|4Bancomat|3Bargeld|Geld|$|€",
|
||||||
"@category_bank": "3Bank|4Geldbank|4Kreditinstitut",
|
"@category_bank": "3Bank|4Geldbank",
|
||||||
"@category_secondhand": "3Second-hand|3Second Hand|3Gebrauchte Ware|3Gebrauchte Artikel",
|
"@category_secondhand": "3Second-hand|3Gebraucht|4Gebrauchtware|4Brockenhaus|5Brockenstube",
|
||||||
"amenity-bank|@category_bank": "3Bankfiliale|Geld",
|
"amenity-bank|@category_bank": "3Bankfiliale|Geld",
|
||||||
"@category_recycling": "Recycling|Abfallverwertung|Recyclebares Material|Getrennte Müllsammlung|Müllsortierung|Wiederverwendung|Wiederverwertung|Entsorgung",
|
"@category_recycling": "Recycling|Abfallverwertung|Recyclebares Material|Getrennte Müllsammlung|Müllsortierung|Wiederverwendung|Wiederverwertung",
|
||||||
"amenity-bureau_de_change": "3Geldwechselstelle|Wechselstube|Geld|Geldumtausch",
|
"amenity-bureau_de_change": "3Geldwechselstelle|Wechselstube|Geld|Geldumtausch",
|
||||||
"amenity-bar|amenity-pub|@category_eat|@category_nightlife": "2Bar|2Pub|4Kneipe|3Bier|4Trinken|4Gaststätte|4Bars und Kneipen|4Brauhaus|4Cocktail-Lounge|3Lokal",
|
"amenity-bar|amenity-pub|@category_eat|@category_nightlife": "2Bar|2Pub|4Kneipe|Bier|Trinken|4Gaststätte|4Bars und Kneipen|Brauhaus|Cocktail-Lounge",
|
||||||
"amenity-cafe|@category_eat": "3Café|6Kaffeehaus|Kaffeebar|Cafeteria|Kaffee|Bistro",
|
"amenity-cafe|@category_eat": "3Café|6Kaffeehaus|Kaffeebar|Cafeteria",
|
||||||
"amenity-fast_food|@category_eat": "4Fast Food|3Imbiss |7Schnellimbiss| Junkfood |Essen zum Mitnehmen",
|
"amenity-fast_food|@category_eat": "4Fast Food|Mitnahme|3Imbiss|Essen zum Mitnehmen|Junkfood|7Schnellimbiss",
|
||||||
"amenity-restaurant|@category_eat": "3Restaurant|4Gasthaus|4Gaststube|6Speiselokal|4Gastwirtschaft|U+1F356|U+1F357|U+1F35A|U+1F35B|U+1F35C|U+1F35D|U+1F363|U+1F366|U+1F367|U+1F368|U+1F369|U+1F370|U+1F372|U+1F374|U+1F377|U+1F60B",
|
"amenity-restaurant|@category_eat": "3Restaurant|4Gasthaus|Gaststube|6Speiselokal|Gastwirtschaft",
|
||||||
"amenity-fuel|@category_fuel": "3Tankstelle|3Zapfsäule|U+26FD",
|
"amenity-fuel|@category_fuel": "7Tankstation|3Tankstelle",
|
||||||
"@shop": "3Verbrauchermarkt|5Geschäft|5Laden|3Shop|4Einkaufen|4Einzelhandel|5Detailgeschäft|4Einkaufsladen",
|
"@shop": "3Verbrauchermarkt|5Geschäft|5Laden",
|
||||||
"shop-bakery|shop-pastry|@category_eat|@category_food|@shop": "3Bäckerei|3Bäckerladen|3Bäcker|4Konditorei|3Konditor|3Backwaren|3Kuchen|3Brot",
|
"shop-bakery|shop-pastry|@category_eat|@category_food|@shop": "3Bäckerei|Bäckerladen|Bäcker|4Konditorei|Konditor",
|
||||||
"shop-cosmetics|@category_shopping|@shop": "4Kosmetikgeschäft|4Kosmetik|5Schönheitspflege|5Make Up|Make-Up|5Makeup|5Schönheitssalon|4Schminke",
|
"shop-cosmetics|@category_shopping|@shop": "9Kosmetikgeschäft|Kosmetik|Schönheitspflege|5Make Up|Make-Up|5Makeup",
|
||||||
"shop-convenience|@category_food|@shop": "5Gemischtwarenladen|5Lebensmittelhändler|5Lebensmittelhandlung|5Lebensmittelgeschäft|4Greißler|4Tante-Emma-Laden|3Kiosk|3Späti|3Büdchen|4Trinkhalle|4Minimarkt",
|
"shop-convenience|@category_food|@shop": "5Gemischtwarenladen|Lebensmittelhändler|Lebensmittelhandlung|Lebensmittelgeschäft|4Greißler|4Tante-Emma-Laden",
|
||||||
"shop-deli|@category_food|@shop": "4Feinkostladen|4Feinkostgeschäftt|4Delikatessen",
|
"shop-deli|@category_food|@shop": "4Feinkostladen|Feinkostgeschäft",
|
||||||
"shop-farm|@category_food|@shop": "4Hofladen|4Bauernhofladen|4Bauernladen|4Direktvermarkter",
|
"shop-farm|@category_food|@shop": "4Hofladen|4Bauernhofladen",
|
||||||
"shop-garden_centre|@shop": "4Gartencenter|4Gärtnerei|4Pflanzen",
|
"shop-garden_centre|@shop": "4Gartencenter|Gärtnerei",
|
||||||
"shop-grocery|@category_food|@shop": "Lebensmittelkonserven",
|
"shop-grocery|@category_food|@shop": "Lebensmittelkonserven",
|
||||||
"shop-health_food|@category_food|@shop": "4Reformhaus|5Naturkostladen|5Bioladen",
|
"shop-health_food|@category_food|@shop": "4Reformhaus|5Naturkostladen|5Bioladen",
|
||||||
"shop-hearing_aids|@shop": "4Hörgeräte",
|
"shop-hearing_aids|@shop": "4Hörgeräte",
|
||||||
@@ -77,9 +77,6 @@
|
|||||||
"amenity-townhall": "3Rathaus|4Gemeindeamt",
|
"amenity-townhall": "3Rathaus|4Gemeindeamt",
|
||||||
"tourism-attraction|@category_tourism": "3Attraktion|3Sehenswürdigkeit",
|
"tourism-attraction|@category_tourism": "3Attraktion|3Sehenswürdigkeit",
|
||||||
"tourism-artwork": "3Kunstwerk|4Skulptur|4Gemälde|Statue",
|
"tourism-artwork": "3Kunstwerk|4Skulptur|4Gemälde|Statue",
|
||||||
"tourism-artwork-sculpture": "Skulptur|Kunstwerk",
|
|
||||||
"tourism-artwork-statue": "Statue|Kunstwerk",
|
|
||||||
"tourism-artwork-painting": "Gemälde|Kunstwerk",
|
|
||||||
"tourism-viewpoint|@category_tourism": "3Panorama|Ausblick|4Aussichtspunkt",
|
"tourism-viewpoint|@category_tourism": "3Panorama|Ausblick|4Aussichtspunkt",
|
||||||
"tourism-information": "4Tourist-Information|Information|7Touristeninformation",
|
"tourism-information": "4Tourist-Information|Information|7Touristeninformation",
|
||||||
"tourism-picnic_site|amenity-bbq|leisure-picnic_table": "3Picknickplatz|5Grillplatz|3Picknicktisch|3BBQ",
|
"tourism-picnic_site|amenity-bbq|leisure-picnic_table": "3Picknickplatz|5Grillplatz|3Picknicktisch|3BBQ",
|
||||||
@@ -90,7 +87,7 @@
|
|||||||
"amenity-place_of_worship-hindu": "4Hinduistischer Tempel|4Tempel|4Anbetungsstätte|4Hinduismus|U+1F64F|U+1F549",
|
"amenity-place_of_worship-hindu": "4Hinduistischer Tempel|4Tempel|4Anbetungsstätte|4Hinduismus|U+1F64F|U+1F549",
|
||||||
"amenity-place_of_worship-shinto": "4Schrein|4Anbetungsstätte|4Tempel|4Shintoismus|Shinto|U+1F64F|U+26E9",
|
"amenity-place_of_worship-shinto": "4Schrein|4Anbetungsstätte|4Tempel|4Shintoismus|Shinto|U+1F64F|U+26E9",
|
||||||
"amenity-place_of_worship-jewish": "4Synagoge|4Anbetungsstätte|4Tempel|4Judentum|U+1F64F|U+1F54D|U+2721",
|
"amenity-place_of_worship-jewish": "4Synagoge|4Anbetungsstätte|4Tempel|4Judentum|U+1F64F|U+1F54D|U+2721",
|
||||||
"amenity-place_of_worship-taoist": "3Daoistischer Tempel|3Taoistischer Tempel|4Daoismus|4Taoismus|4Tempel|4Anbetungsstätte|U+1F64F|U+262F",
|
"amenity-place_of_worship-taoist": "4Tempel|4Anbetungsstätte|4Taoismus|U+1F64F|U+262F",
|
||||||
"tourism-museum|@category_tourism": "2Museum|Ausstellung|3Galerie|Sehenswürdigkeit",
|
"tourism-museum|@category_tourism": "2Museum|Ausstellung|3Galerie|Sehenswürdigkeit",
|
||||||
"waterway-waterfall|@category_tourism": "2Wasserfall",
|
"waterway-waterfall|@category_tourism": "2Wasserfall",
|
||||||
"historic-archaeological_site|@category_tourism": "Ausgrabungen|4Ausgrabungsstätte|4Archäologische Stätte",
|
"historic-archaeological_site|@category_tourism": "Ausgrabungen|4Ausgrabungsstätte|4Archäologische Stätte",
|
||||||
@@ -185,7 +182,7 @@
|
|||||||
"amenity-school": "3Schule|Schulgebäude",
|
"amenity-school": "3Schule|Schulgebäude",
|
||||||
"amenity-shelter": "5Unterstand|Wetterschutz|Schutzhütte",
|
"amenity-shelter": "5Unterstand|Wetterschutz|Schutzhütte",
|
||||||
"amenity-shelter-basic_hut": "4Biwakschachtel|4Schutzhütte|6Schlafunterkunft|U+1F634|U+1F4A4|U+1F6D6|U+1F6CF|U+1F6CC",
|
"amenity-shelter-basic_hut": "4Biwakschachtel|4Schutzhütte|6Schlafunterkunft|U+1F634|U+1F4A4|U+1F6D6|U+1F6CF|U+1F6CC",
|
||||||
"amenity-shelter-lean_to": "3Lean-to Schlafunterstand|Lean-to|3A-Frame Shelter|4Wetterschutz|4Schutzhütte|U+1F6D6",
|
"amenity-shelter-lean_to": "3Lean-to|3A-Frame Shelter|4Wetterschutz|4Schutzhütte|U+1F6D6",
|
||||||
"amenity-stripclub": "5Stripclub|5Striptease|5Strip Club|4Tabledance|5Striplokal|5Strip Lokal|5Nachtklub|5Stripklub|5Nachtclub|U+1F46F|U+1F459|U+1F460|U+1F51E",
|
"amenity-stripclub": "5Stripclub|5Striptease|5Strip Club|4Tabledance|5Striplokal|5Strip Lokal|5Nachtklub|5Stripklub|5Nachtclub|U+1F46F|U+1F459|U+1F460|U+1F51E",
|
||||||
"amenity-telephone": "2Telefon|Fernsprecher",
|
"amenity-telephone": "2Telefon|Fernsprecher",
|
||||||
"@category_toilet": "3Toilette|WC|3Klosett|Pissoir|Null-Null|00",
|
"@category_toilet": "3Toilette|WC|3Klosett|Pissoir|Null-Null|00",
|
||||||
@@ -213,7 +210,7 @@
|
|||||||
"natural-strait": "Meerenge",
|
"natural-strait": "Meerenge",
|
||||||
"landuse-forest": "Wald|Urwald|Nadelwald|Laubwald|Mischwald|Forst",
|
"landuse-forest": "Wald|Urwald|Nadelwald|Laubwald|Mischwald|Forst",
|
||||||
"leisure-park": "Park",
|
"leisure-park": "Park",
|
||||||
"tourism-aquarium|@category_tourism": "3Aquarium|3Aquarien",
|
"tourism-aquarium|@category_tourism": "Aquarium",
|
||||||
"tourism-hostel|@category_hotel": "3Herberge|Hostel|Gasthaus|Unterkunft",
|
"tourism-hostel|@category_hotel": "3Herberge|Hostel|Gasthaus|Unterkunft",
|
||||||
"tourism-hotel|@category_hotel": "Gasthaus",
|
"tourism-hotel|@category_hotel": "Gasthaus",
|
||||||
"tourism-guest_house|@category_hotel": "3Pension|Unterkunft|Herberge|Wohnheim|Gästehaus",
|
"tourism-guest_house|@category_hotel": "3Pension|Unterkunft|Herberge|Wohnheim|Gästehaus",
|
||||||
@@ -224,7 +221,7 @@
|
|||||||
"leisure-stadium": "4Stadion|5Sport|4Olympiastadion|5Sportanlage|5Sportstadion|5Sportkomplex|5Sporthalle|3Arena|U+26BD|U+26BE|U+1F3BE|U+1F3C0|U+1F3C8|U+1F4AA|U+1F3C9|U+1F3DF",
|
"leisure-stadium": "4Stadion|5Sport|4Olympiastadion|5Sportanlage|5Sportstadion|5Sportkomplex|5Sporthalle|3Arena|U+26BD|U+26BE|U+1F3BE|U+1F3C0|U+1F3C8|U+1F4AA|U+1F3C9|U+1F3DF",
|
||||||
"leisure-playground|@category_children": "Spielplatz",
|
"leisure-playground|@category_children": "Spielplatz",
|
||||||
"leisure-sports_centre|leisure-sports_centre-sport-american_football|leisure-sports_centre-sport-archery|leisure-sports_centre-sport-athletics|leisure-sports_centre-sport-australian_football|leisure-sports_centre-sport-badminton|leisure-sports_centre-sport-baseball|leisure-sports_centre-sport-basketball|leisure-sports_centre-sport-beachvolleyball|leisure-sports_centre-sport-bowls|leisure-sports_centre-sport-climbing|leisure-sports_centre-sport-cricket|leisure-sports_centre-sport-curling|leisure-sports_centre-sport-equestrian|leisure-sports_centre-sport-field_hockey|leisure-sports_centre-sport-futsal|leisure-sports_centre-sport-golf|leisure-sports_centre-sport-gymnastics|leisure-sports_centre-sport-handball|leisure-sports_centre-sport-ice_hockey|leisure-sports_centre-sport-multi|leisure-sports_centre-sport-padel|leisure-sports_centre-sport-pelota|leisure-sports_centre-sport-scuba_diving|leisure-sports_centre-sport-shooting|leisure-sports_centre-sport-skateboard|leisure-sports_centre-sport-skiing|leisure-sports_centre-sport-soccer|leisure-sports_centre-sport-table_tennis|leisure-sports_centre-sport-tennis|leisure-sports_centre-sport-volleyball|leisure-sports_centre-sport-yoga": "4Sportzentrum|4Sport|4Fitness-Zentrum|4Fitness-Center|4Sportkomplex|5Sportforum|5Sporthalle|4Sportanlage|U+26BD|U+26BE|U+1F3BE|U+1F4AA|U+1F3C8|U+1F3C0|U+1F3C9",
|
"leisure-sports_centre|leisure-sports_centre-sport-american_football|leisure-sports_centre-sport-archery|leisure-sports_centre-sport-athletics|leisure-sports_centre-sport-australian_football|leisure-sports_centre-sport-badminton|leisure-sports_centre-sport-baseball|leisure-sports_centre-sport-basketball|leisure-sports_centre-sport-beachvolleyball|leisure-sports_centre-sport-bowls|leisure-sports_centre-sport-climbing|leisure-sports_centre-sport-cricket|leisure-sports_centre-sport-curling|leisure-sports_centre-sport-equestrian|leisure-sports_centre-sport-field_hockey|leisure-sports_centre-sport-futsal|leisure-sports_centre-sport-golf|leisure-sports_centre-sport-gymnastics|leisure-sports_centre-sport-handball|leisure-sports_centre-sport-ice_hockey|leisure-sports_centre-sport-multi|leisure-sports_centre-sport-padel|leisure-sports_centre-sport-pelota|leisure-sports_centre-sport-scuba_diving|leisure-sports_centre-sport-shooting|leisure-sports_centre-sport-skateboard|leisure-sports_centre-sport-skiing|leisure-sports_centre-sport-soccer|leisure-sports_centre-sport-table_tennis|leisure-sports_centre-sport-tennis|leisure-sports_centre-sport-volleyball|leisure-sports_centre-sport-yoga": "4Sportzentrum|4Sport|4Fitness-Zentrum|4Fitness-Center|4Sportkomplex|5Sportforum|5Sporthalle|4Sportanlage|U+26BD|U+26BE|U+1F3BE|U+1F4AA|U+1F3C8|U+1F3C0|U+1F3C9",
|
||||||
"leisure-sports_centre-sport-swimming": "4Schwimmbad|Freibad|Hallenbad|Schwimmhalle",
|
"leisure-sports_centre-sport-swimming": "4Schwimmmbad|Freibad|Hallenbad|Schwimmhalle",
|
||||||
"leisure-fitness_centre-sport-yoga": "Yoga-Studio",
|
"leisure-fitness_centre-sport-yoga": "Yoga-Studio",
|
||||||
"leisure-golf_course": "3Golfplatz|Golf|U+26F3|U+1F3CC",
|
"leisure-golf_course": "3Golfplatz|Golf|U+26F3|U+1F3CC",
|
||||||
"leisure-miniature_golf": "4Minigolf|5Miniaturgolf|4Golf|U+26F3|U+1F3CC",
|
"leisure-miniature_golf": "4Minigolf|5Miniaturgolf|4Golf|U+26F3|U+1F3CC",
|
||||||
@@ -234,18 +231,18 @@
|
|||||||
"sport-american_football": "Amerikanischer Fußball",
|
"sport-american_football": "Amerikanischer Fußball",
|
||||||
"sport-archery": "Bogenschießen",
|
"sport-archery": "Bogenschießen",
|
||||||
"sport-athletics": "Leichtathletik",
|
"sport-athletics": "Leichtathletik",
|
||||||
"sport-australian_football": "4Australian Football",
|
"sport-australian_football": "Australian Football",
|
||||||
"sport-baseball": "Baseball",
|
"sport-baseball": "Baseball",
|
||||||
"sport-basketball": "3Basketball",
|
"sport-basketball": "Basketball",
|
||||||
"sport-beachvolleyball": "Beachvolleyball",
|
"sport-beachvolleyball": "Beachvolleyball",
|
||||||
"sport-bowls": "3Bowls",
|
"sport-bowls": "Bowls",
|
||||||
"sport-chess": "Schach",
|
"sport-chess": "Schach",
|
||||||
"sport-cricket": "3Cricket",
|
"sport-cricket": "Cricket",
|
||||||
"sport-curling": "Eisstockschießen|Curling",
|
"sport-curling": "Eisstockschießen|Curling",
|
||||||
"sport-equestrian": "Reitsport",
|
"sport-equestrian": "Reitsport",
|
||||||
"sport-golf": "Golf",
|
"sport-golf": "Golf",
|
||||||
"sport-gymnastics": "Gymnastik",
|
"sport-gymnastics": "Gymnastik",
|
||||||
"sport-handball": "4Handball",
|
"sport-handball": "Handball",
|
||||||
"sport-scuba_diving": "4Gerätetauchen|3Tauchen|U+1F93F",
|
"sport-scuba_diving": "4Gerätetauchen|3Tauchen|U+1F93F",
|
||||||
"sport-shooting": "5Schießanlage|5Sportschießen|4Schießen|5Schützenschießanlage|5Schützenschießstand|5Schießstand|U+1F52B|U+1F3AF",
|
"sport-shooting": "5Schießanlage|5Sportschießen|4Schießen|5Schützenschießanlage|5Schützenschießstand|5Schießstand|U+1F52B|U+1F3AF",
|
||||||
"sport-skateboard": "Skateboarding|Skateboard",
|
"sport-skateboard": "Skateboarding|Skateboard",
|
||||||
@@ -253,11 +250,11 @@
|
|||||||
"sport-soccer": "Fußball",
|
"sport-soccer": "Fußball",
|
||||||
"sport-swimming": "Schwimmen",
|
"sport-swimming": "Schwimmen",
|
||||||
"sport-table_tennis": "5Tischtennis|4Ping Pong|4Pingpong|U+1F3D3",
|
"sport-table_tennis": "5Tischtennis|4Ping Pong|4Pingpong|U+1F3D3",
|
||||||
"sport-tennis": "3Tennis",
|
"sport-tennis": "Tennis",
|
||||||
"sport-padel": "3Padel",
|
"sport-padel": "Padel",
|
||||||
"sport-volleyball": "4Volleyball",
|
"sport-volleyball": "Volleyball",
|
||||||
"sport-9pin": "Kegeln",
|
"sport-9pin": "Kegeln",
|
||||||
"sport-10pin": "3Bowling",
|
"sport-10pin": "Bowling",
|
||||||
"building": "Gebäude",
|
"building": "Gebäude",
|
||||||
"building-address": "Adresse",
|
"building-address": "Adresse",
|
||||||
"@category_police": "Polizeistation|4Polizei",
|
"@category_police": "Polizeistation|4Polizei",
|
||||||
@@ -275,7 +272,7 @@
|
|||||||
"natural-water-basin|landuse-basin|@waterbody": "Wasserbecken",
|
"natural-water-basin|landuse-basin|@waterbody": "Wasserbecken",
|
||||||
"natural-water-pond|@waterbody": "Teich|Wasserbecken",
|
"natural-water-pond|@waterbody": "Teich|Wasserbecken",
|
||||||
"natural-water-lake|@waterbody": "See|Wasserbecken",
|
"natural-water-lake|@waterbody": "See|Wasserbecken",
|
||||||
"natural-water-reservoir|landuse-reservoir|@waterbody": "5Reservoir|5Wasserreservoir|5Stausee",
|
"natural-water-reservoir|landuse-reservoir|@waterbody": "5Reservoir",
|
||||||
"waterway-river|waterway-stream|natural-water-river": "Fluss|Strom",
|
"waterway-river|waterway-stream|natural-water-river": "Fluss|Strom",
|
||||||
"waterway-canal": "Kanal",
|
"waterway-canal": "Kanal",
|
||||||
"shop-car_repair": "3Autowerkstatt|3Kfz-Werkstatt|4Reparaturwerkstatt|4Auto|4Werkstatt|5Reparieren|U+1F527",
|
"shop-car_repair": "3Autowerkstatt|3Kfz-Werkstatt|4Reparaturwerkstatt|4Auto|4Werkstatt|5Reparieren|U+1F527",
|
||||||
@@ -299,118 +296,116 @@
|
|||||||
"craft-handicraft": "4Kunsthandwerk",
|
"craft-handicraft": "4Kunsthandwerk",
|
||||||
"craft-hvac": "4Heizung|4Lüftung|4Kühlung|4Klimatisierung|U+1F32C|U+1F975|U+1F976|U+2668|U+2744|U+1F525|U+1F321",
|
"craft-hvac": "4Heizung|4Lüftung|4Kühlung|4Klimatisierung|U+1F32C|U+1F975|U+1F976|U+2668|U+2744|U+1F525|U+1F321",
|
||||||
"craft-metal_construction": "5Metallverarbeitung|4Schlosser",
|
"craft-metal_construction": "5Metallverarbeitung|4Schlosser",
|
||||||
"craft-key_cutter": "5Schlüssel-Nachmachdienst|5Schlüssel|5Schlüsselservice|5Schlüssel-Service|U+1F511|U+1F5DD|U+00A9",
|
"craft-key_cutter": "4Schlüssel-Nachmachdienst",
|
||||||
"craft-locksmith": "4Schlüsseldienst",
|
"craft-locksmith": "4Schlüsseldienst",
|
||||||
"craft-painter": "Maler",
|
"craft-painter": "Maler",
|
||||||
"craft-photographer": "4Fotograf|Fotostudio",
|
"craft-photographer": "4Fotograf|Fotostudio",
|
||||||
"craft-plumber": "5Installateur|4Klempner|U+1F527|U+1F6C1|U+1F6BD",
|
"craft-plumber": "5Installateur",
|
||||||
"craft-sawmill": "4Sägewerk",
|
"craft-sawmill": "4Sägewerk",
|
||||||
"craft-shoemaker": "Schuhreparatur|4Schuhmacher|Schuster",
|
"craft-shoemaker": "Schuhreparatur|4Schuhmacher|Schuster",
|
||||||
"craft-winery": "4Kellerei|4Weingut|3Winzer|4Weinbauer|U+1F347|U+1F377",
|
"craft-winery": "4Kellerei|4Weingut|3Winzer|Weinbauer",
|
||||||
"craft-tailor": "4Schneider",
|
"craft-tailor": "4Schneider",
|
||||||
"area:highway-footway|area:highway-pedestrian|area:highway-steps|place-square": "Platz|Fußgängerzone",
|
"area:highway-footway|area:highway-pedestrian|area:highway-steps|place-square": "Platz|Fußgängerzone",
|
||||||
"place-sea": "Meer",
|
"place-sea": "Meer",
|
||||||
"place-ocean": "Ozean",
|
"place-ocean": "Ozean",
|
||||||
"@category_wifi": "3WLAN|3W-LAN|3WiFi|3Wi-Fi|6Internet|U+1F6DC",
|
"@category_wifi": "WLAN|WiFi|Wi-Fi",
|
||||||
"internet_access|internet_access-wlan|@category_wifi": "3Internet|Internetzugang",
|
"internet_access|internet_access-wlan|@category_wifi": "3Internet|Internetzugang",
|
||||||
"natural-beach|natural-beach-sand|natural-beach-gravel|leisure-beach_resort": "Strand",
|
"natural-beach|natural-beach-sand|natural-beach-gravel|leisure-beach_resort": "Strand",
|
||||||
"man_made-lighthouse": "5Leuchtturm|6Schifffahrtszeichen|5Leuchtfeuer|5Leuchtbake|U+1F6A8|U+1F4A1",
|
"man_made-lighthouse": "Leuchtturm",
|
||||||
"man_made-survey_point": "4Vermessungspunkt",
|
"man_made-survey_point": "4Vermessungspunkt",
|
||||||
"man_made-flagpole": "4Fahnenmast|4Flaggenmast|U+1F3F3",
|
"man_made-flagpole": "Fahnenmast",
|
||||||
"man_made-mast": "Mast",
|
"man_made-mast": "Mast",
|
||||||
"man_made-communications_tower|man_made-tower-communication": "Funkturm|Kommunikationsturm",
|
"man_made-communications_tower|man_made-tower-communication": "Funkturm|Kommunikationsturm",
|
||||||
"man_made-petroleum_well": "4Erdölbohrung|3Ölquelle|U+1F6E2",
|
"man_made-petroleum_well": "4Erdölbohrung|Ölquelle",
|
||||||
"organic-only|organic-yes": "3Bio|Biologische|biologisch|5Ökologische|Ökologisches|öko|bio|4organische|organisch|naturnah|natürliches|natürlich|gesundes|gesund|umweltfreundlich",
|
"organic-only|organic-yes": "3Bio|Biologische|biologisch|5Ökologische|Ökologisches|öko|bio|4organische|organisch|naturnah|natürliches|natürlich|gesundes|gesund|umweltfreundlich",
|
||||||
"shop-copyshop": "4Kopierladen|4Drucker|Copyshop",
|
"shop-copyshop": "4Kopierladen|4Drucker|Copyshop",
|
||||||
"shop-photo|@shop": "4Fotofachgeschäft|Foto|Rahmen",
|
"shop-photo|@shop": "4Fotofachgeschäft|Foto|Rahmen",
|
||||||
"shop-camera|@shop": "4Kamerageschäft|4Kamerafachgeschäft|4Fotofachgeschäft|4Fotogeschäft|4Kamera|4Photografie|4Fotografie|U+1F4F7|U+1F4F8|U+1F4F9|U+1F39E|U+1F5BC",
|
"shop-camera|@shop": "Kamerageschäft",
|
||||||
"shop-travel_agency": "5Reisebüro|Reisen|Rundreisen|Reisevermittlung|Reisevermittler|Reiseagentur|Touren|Ausflüge|Urlaub|Touristeninformation|Last-Minute-Tour",
|
"shop-travel_agency": "5Reisebüro|Reisen|Rundreisen|Reisevermittlung|Reisevermittler|Reiseagentur|Touren|Ausflüge|Urlaub|Touristeninformation|Last-Minute-Tour",
|
||||||
"shop-outdoor|@shop": "4Outdoor-Ausrüstungs-Laden|Outdoor-Ausrüstung|Trekking|Klettern|Camping",
|
"shop-outdoor|@shop": "4Outdoor-Ausrüstungs-Laden|Outdoor-Ausrüstung|Trekking|Klettern|Camping",
|
||||||
"shop-dry_cleaning": "Chemische Reinigung|4Reinigung",
|
"shop-dry_cleaning": "Chemische Reinigung|4Reinigung",
|
||||||
"shop-tyres|@shop": "4Reifenhändler|4Autoreifen|4Reifen|U+1F6DE",
|
"shop-tyres|@shop": "4Reifenhändler|4Autoreifen|Reifen",
|
||||||
"amenity-car_wash": "4Autowaschanlage|Autowäsche",
|
"amenity-car_wash": "4Autowaschanlage|Autowäsche",
|
||||||
"amenity-veterinary": "4Tierarzt|4Tierärztin|4Tierarztpraxis|4Tierpraxis|4Tierdoktor|5Hundearzt|5Katzenarzt|4Haustiere|U+2695",
|
"amenity-veterinary": "4Tierarzt",
|
||||||
"@charging_station": "4Ladestation|aufladen",
|
"@charging_station": "4Ladestation|aufladen",
|
||||||
"amenity-charging_station-bicycle|@charging_station": "Fahrrad aufladen",
|
"amenity-charging_station-bicycle|@charging_station": "Fahrrad aufladen",
|
||||||
"amenity-childcare": "Kindertagesstätte|Kindergarten|Kinderbetreuung",
|
"amenity-childcare": "Kindertagesstätte|Kindergarten|Kinderbetreuung",
|
||||||
"amenity-bicycle_parking": "6Fahrradständer",
|
"amenity-bicycle_parking": "6Fahrradständer",
|
||||||
"amenity-waste_basket": "6Abfalleimer|4Mülleimer|4Restmüll|3Müll|4Müllkorb|U+1F6AE|U+1F5D1",
|
"amenity-waste_basket": "6Abfalleimer|4Mülleimer|Papierkorb",
|
||||||
"emergency-phone": "4Notruftelefon|Nottelefon",
|
"emergency-phone": "4Notruftelefon|Nottelefon",
|
||||||
"leisure-fitness_centre": "3Fitnessstudio|3Fitnesscenter|3Fitness|3Fitnessraum|4Sport|3Fitnessclub|5Gesundheitsclub|4Training|4Trainingsraum|4Turnhalle|U+1F4AA|U+1F3CB",
|
"leisure-fitness_centre": "3Fitnessstudio|Fitnesscenter|Fitness|Fitnessraum|Fitnessclub|Gesundheitsclub|Training|Trainingsraum|Turnhalle",
|
||||||
"leisure-sauna": "3Sauna|Schwitzbad|Schwitzhütte|Dampfbad|Dampfsauna|Saunakabine",
|
"leisure-sauna": "3Sauna|Schwitzbad|Schwitzhütte|Dampfbad|Dampfsauna|Saunakabine",
|
||||||
"shop-car_repair-tyres|shop-car_repair": "Reifenservice|Reifen|6Reifenreparatur|Reifeninstandsetzung|Reifenpannenreparatur|Reifenpannenbehebung|Reifenersatz|Pneureparatur|Pneu|Pannenreparatur",
|
"shop-car_repair-tyres|shop-car_repair": "Reifenservice|Reifen|6Reifenreparatur|Reifeninstandsetzung|Reifenpannenreparatur|Reifenpannenbehebung|Reifenersatz|Pneureparatur|Pneu|Pannenreparatur",
|
||||||
"shop-chemist|@shop": "4Drogerie",
|
"shop-chemist|@shop": "4Drogerie",
|
||||||
"shop-pet|@shop": "4Tierhandlung",
|
"shop-pet|@shop": "4Tierhandlung",
|
||||||
"tourism-zoo|@category_tourism|@category_children": "Zoo",
|
"tourism-zoo|@category_tourism|@category_children": "Zoo",
|
||||||
"attraction-animal": "Tiergehege",
|
"attraction-animal": "Tiergehege",
|
||||||
"tourism-information-office|amenity-ranger_station|@category_tourism": "4Fremdenverkehrsamt|4Fremdenbüro|4Touriinfo|4Touri-Info|4Touristeninfo|4Touristeninformationszentrum|4Infopoint|U+2139",
|
"tourism-information-office|amenity-ranger_station|@category_tourism": "Fremdenverkehrsamt",
|
||||||
"tourism-information-visitor_centre|amenity-ranger_station|@category_tourism": "4Besucherzentrum|4Besucherinfo|4Fremdenverkehrsamt|4Fremdenbüro|4Touriinfo|4Touri-Info|4Touristeninfo|4Touristeninformationszentrum|4Infopoint|U+2139",
|
"tourism-information-visitor_centre|amenity-ranger_station|@category_tourism": "3Besucherzentrum",
|
||||||
"amenity-community_centre": "4Gemeinschaftszentrum|3Bürgerhaus|3Bürgerzentrum|4Gemeindesaal|4Bürgersaal|4Gemeinschaftshaus|5Dorfgemeinschaftshaus|4Gemeindezentrum|U+1F3DB",
|
"amenity-community_centre": "5Gemeinschaftszentrum|Bürgerhaus",
|
||||||
"amenity-compressed_air": "3Druckluft|5Pressluft|4Kompressor|U+1F32C",
|
"amenity-compressed_air": "Druckluft|Pressluft",
|
||||||
"amenity-courthouse": "Justizgebäude|Gerichtsgebäude",
|
"amenity-courthouse": "Justizgebäude|Gerichtsgebäude",
|
||||||
"amenity-vending_machine": "Verkaufsautomat|Automat",
|
"amenity-vending_machine-cigarettes": "5Zigarettenautomat",
|
||||||
"amenity-vending_machine-cigarettes": "5Zigarettenautomat|U+1F6AC",
|
"amenity-vending_machine-coffee": "6Kaffeeautomat",
|
||||||
"amenity-vending_machine-coffee": "6Kaffeeautomat|U+2615",
|
"amenity-vending_machine-condoms": "6Kondomautomat",
|
||||||
"amenity-vending_machine-condoms": "6Kondomautomat|U+1F6E1",
|
|
||||||
"amenity-vending_machine-drinks": "9Getränkeautomat",
|
"amenity-vending_machine-drinks": "9Getränkeautomat",
|
||||||
"amenity-vending_machine-food|@category_food": "4Lebensmittelautomat|3Snackautomat|3Snacks",
|
"amenity-vending_machine-food|@category_food": "5Essensautomat|9Lebensmittelautomat|Snacks|Knabbereien|Nahrungsmittelautomat",
|
||||||
"amenity-vending_machine-parking_tickets|@category_parking": "4Parkautomat|4Parkscheinautomat|4Parkticketautomat",
|
"amenity-vending_machine-parking_tickets|@category_parking": "4Parkautomat|Parkscheinautomat|Parkticketautomat",
|
||||||
"amenity-vending_machine-public_transport_tickets|@category_transport": "5Fahrkartenautomat|5Fahrscheinautomat|4Ticketautomat|4Fahrkarten|3Tickets",
|
"amenity-vending_machine-public_transport_tickets|@category_transport": "5Fahrkartenautomat|5Fahrscheinautomat",
|
||||||
"amenity-vending_machine-newspapers": "Zeitungsautomat|Zeitungsständer",
|
"amenity-vending_machine-newspapers": "Zeitungsautomat|Zeitungsständer",
|
||||||
"amenity-vending_machine-sweets": "Süßigkeitenautomat|Süßwaren|Süßigkeiten",
|
"amenity-vending_machine-sweets": "Süßigkeitenautomat|Süßwaren|Süßigkeiten",
|
||||||
"amenity-vending_machine-excrement_bags": "Hundetütenspender|Hundekotsähuckchenspender|Hundekotbeutelspender|Hundekotbeutel",
|
"amenity-vending_machine-excrement_bags": "Hundetütenspender|Hundekotsähuckchenspender|Hundekotbeutelspender|Hundekotbeutel",
|
||||||
"amenity-parcel_locker|@category_post": "5Paketstation|Paket Abholstation|Paket SB|Paket Versandstation",
|
"amenity-parcel_locker|@category_post": "5Paketstation|Paket Abholstation|Paket SB|Paket Versandstation",
|
||||||
"shop-outpost": "Abholpunkt",
|
"shop-outpost": "Abholpunkt",
|
||||||
"amenity-vending_machine-fuel|@category_fuel": "Zapfsäule|Tankautomat",
|
"amenity-vending_machine-fuel|@category_fuel": "Zapfsäule|Tankautomat",
|
||||||
"building-garage": "3Garage",
|
"building-garage": "Garage",
|
||||||
"highway-rest_area|highway-services": "4Rastplatz|4Raststätte",
|
"highway-rest_area|highway-services": "Rastplatz|Raststätte",
|
||||||
"man_made-tower|man_made-flare": "Hochhaus|Turm",
|
"man_made-tower|man_made-flare": "Hochhaus|Turm",
|
||||||
"shop-bookmaker|@gambling": "5Buchmacher|3Wettbüro",
|
"shop-bookmaker|@gambling": "Buchmacher|3Wettbüro",
|
||||||
"shop-seafood|@category_food|@shop": "Fischhändler|5Fischmarkt|Fisch|Meeresfrüchte|Schalentier",
|
"shop-seafood|@category_food|@shop": "Fischhändler|5Fischmarkt|Fisch|Meeresfrüchte|Schalentier",
|
||||||
"shop-second_hand|@category_shopping|@shop|@category_secondhand": "3Second-Hand-Laden|5Gebrauchtwarenladen|3Trödelladen|3Secondhand",
|
"shop-second_hand|@category_shopping|@shop|@category_secondhand": "Second-Hand-Laden|5Gebrauchtwarenladen|Trödelladen",
|
||||||
"shop-charity|@shop|@category_secondhand": "4Sozialkaufhaus",
|
"shop-charity|@shop|@category_secondhand": "5Wohltätigkeitsladen",
|
||||||
"shop-ticket": "4Kartenverkauf|4Fahrkartenschalter|4Fahrkartengeschäft|4Fahrkarten|4Fahrkartenzentrum|4Fahrkartenausgabe|4Fahrkartenagentur|4Fahrkartenhäuschen|4Reisecenter|4Kassenschalter|5Zahlschalter",
|
"shop-ticket": "4Kartenverkauf|Fahrkartenschalter|Fahrkartengeschäft|Fahrkarten|Fahrkartenzentrum|Fahrkartenausgabe|Fahrkartenagentur|Fahrkartenhäuschen|Reisecenter|Kassenschalter|Zahlschalter",
|
||||||
"shop-wine|@category_food|@shop": "4Weinhandlung|4Weinladen|4Weingeschäft|3Winzer|3Wein",
|
"shop-wine|@category_food|@shop": "4Weinhandlung|Weinladen|Weingeschäft",
|
||||||
"shop-car_parts|@shop": "4Autoersatzteile|Autoteile",
|
"shop-car_parts|@shop": "4Autoersatzteile|Autoteile",
|
||||||
"tourism-chalet|@category_hotel": "4Ferienhäuschen|4Ferienhaus",
|
"tourism-chalet|@category_hotel": "Ferienhäuschen|Ferienhaus",
|
||||||
"tourism-information-board": "Informationstafel",
|
"tourism-information-board": "Informationstafel",
|
||||||
"tourism-information-guidepost": "Wegweiser",
|
"tourism-information-map": "Touristenkarte",
|
||||||
"tourism-information-map": "4Touristenkarte|4Karte|4Informationskarte|4Informationstafel|4Touristeninfokarte|U+1F5FA",
|
"aerialway-station": "Seilbahn|Liftstation",
|
||||||
"aerialway-station": "4Seilbahn|4Seilbahnstation|4Liftstation|U+1F6A0|U+1F6A1",
|
"aeroway-helipad": "Hubschrauberlandeplatz",
|
||||||
"aeroway-helipad": "4Hubschrauberlandeplatz|4Helikopterlandeplatz|U+1F681",
|
|
||||||
"barrier-border_control": "Grenzkontrolle",
|
"barrier-border_control": "Grenzkontrolle",
|
||||||
"leisure-water_park|@category_tourism|@category_children": "Wasserpark|Freizeitbad|3Aquapark",
|
"leisure-water_park|@category_tourism|@category_children": "Wasserpark|Freizeitbad|3Aquapark",
|
||||||
"man_made-water_tower": "Wasserturm",
|
"man_made-water_tower": "Wasserturm",
|
||||||
"man_made-windmill": "4Windmühle",
|
"man_made-windmill": "Windmühle",
|
||||||
"natural-cave_entrance": "Höhle|Höhleneingang",
|
"natural-cave_entrance": "Höhle|Höhleneingang",
|
||||||
"natural-volcano|@mountain": "4Vulkan",
|
"natural-volcano|@mountain": "4Vulkan",
|
||||||
"office-estate_agent": "4Immobilienmakler",
|
"office-estate_agent": "4Immobilienmakler",
|
||||||
"waterway-lock_gate": "Schleuse",
|
"waterway-lock_gate": "Schleuse",
|
||||||
"amenity-public_bookcase": "4Bücherregal|4Büchertausch|4Bücherschrank|4Bücherbox|4Bücherzelle",
|
"amenity-public_bookcase": "Bücherregal|Büchertausch|Bücherschrank|Bücherbox|Bücherzelle",
|
||||||
"sport-climbing": "4Kletterzentrum|4Kletterhalle|U+1F9D7",
|
"sport-climbing": "Kletterzentrum|Kletterhalle",
|
||||||
"sport-yoga": "Yoga Studio",
|
"sport-yoga": "Yoga Studio",
|
||||||
"tourism-apartment|@category_hotel": "4Ferienwohnung",
|
"tourism-apartment|@category_hotel": "4Ferienwohnung",
|
||||||
"leisure-resort|@category_hotel": "Resort|4Ferienhotel",
|
"leisure-resort|@category_hotel": "Resort|4Ferienhotel",
|
||||||
"amenity-biergarten|@category_eat|@category_nightlife": "4Biergarten",
|
"amenity-biergarten|@category_eat|@category_nightlife": "5Biergarten",
|
||||||
"amenity-driving_school": "4Fahrschule",
|
"amenity-driving_school": "Fahrschule",
|
||||||
"amenity-music_school": "4Musikschule|U+1F3EB|U+1F3BC",
|
"amenity-music_school": "Musikschule",
|
||||||
"amenity-language_school": "4Sprachschule",
|
"amenity-language_school": "Sprachschule",
|
||||||
"amenity-ice_cream": "3Eis|3Eisstand|3Eisdiele",
|
"amenity-ice_cream": "Eis|Eisstand|Eisdiele",
|
||||||
"amenity-internet_cafe": "3Internetcafé",
|
"amenity-internet_cafe": "3Internetcafé",
|
||||||
"amenity-motorcycle_parking": "4Motorrad-Parkplatz|9Motorradparkplatz",
|
"amenity-motorcycle_parking": "4Motorrad-Parkplatz|9Motorradparkplatz",
|
||||||
"amenity-parking_space-disabled|@category_parking": "4Behindertenparkplatz",
|
"amenity-parking_space-disabled|@category_parking": "Behindertenparkplatz",
|
||||||
"amenity-nursing_home": "Pflegeheim",
|
"amenity-nursing_home": "Pflegeheim",
|
||||||
"amenity-payment_terminal": "3Bezahlterminal",
|
"amenity-payment_terminal": "Bezahlterminal",
|
||||||
"amenity-public_bath": "4Öffentliches Bad|4Hallenbad|5Schwimmen|5Schwimmbad|U+1F3CA",
|
"amenity-public_bath": "Öffentliches Bad",
|
||||||
"amenity-shower": "Dusche",
|
"amenity-shower": "Dusche",
|
||||||
"emergency-access_point": "4Rettungspunkt|Notfallpunkt|Notfall-Rettungspunkt|Notfall-Treffpunkt",
|
"emergency-access_point": "4Rettungspunkt|Notfallpunkt|Notfall-Rettungspunkt|Notfall-Treffpunkt",
|
||||||
"emergency-assembly_point": "4Notfall-Sammelpunkt|4Sammelstelle|U+1F46A|U+2795",
|
"emergency-assembly_point": "Notfall-Sammelpunkt",
|
||||||
"emergency-life_ring": "4Rettungsring",
|
"emergency-life_ring": "4Rettungsring",
|
||||||
"emergency-defibrillator": "4Defibrillator",
|
"emergency-defibrillator": "4Defibrillator",
|
||||||
"emergency-fire_hydrant": "4Hydrant|4Feuerhydrant|4Löschwasser",
|
"emergency-fire_hydrant": "4Hydrant",
|
||||||
"emergency-lifeguard": "Notfall-Rettungsschwimmer|Rettungsschwimmer",
|
"emergency-lifeguard": "Notfall-Rettungsschwimmer|Rettungsschwimmer",
|
||||||
"emergency-mountain_rescue": "4Bergrettung-Notdienst|4Bergrettung|5Notdienst",
|
"emergency-mountain_rescue": "4Bergrettung Notdienst",
|
||||||
"leisure-fitness_station": "3Fitnessstation|4Trimm-dich-Station",
|
"leisure-fitness_station": "3Fitnessstation",
|
||||||
"office-insurance": "4Versicherungsbüro",
|
"office-insurance": "4Versicherungsbüro",
|
||||||
"office-ngo": "5Nichtregierungsorganisation",
|
"office-ngo": "5Nichtregierungsorganisation",
|
||||||
"shop-erotic|@shop": "Erotikladen|3Sexshop|4Erotikshop",
|
"shop-erotic|@shop": "Erotikladen|3Sexshop|4Erotikshop",
|
||||||
@@ -421,13 +416,13 @@
|
|||||||
"shop-pawnbroker": "5Pfandleihe",
|
"shop-pawnbroker": "5Pfandleihe",
|
||||||
"shop-stationery|@shop": "7Schreibwarenladen",
|
"shop-stationery|@shop": "7Schreibwarenladen",
|
||||||
"shop-tattoo": "4Tattoo-Studio",
|
"shop-tattoo": "4Tattoo-Studio",
|
||||||
"shop-variety_store|@category_shopping|@shop": "5Billigladen|6Niedrigpreisgeschäft|4 1-Euro-Laden|4Kruschladen|5Haushaltswaren",
|
"shop-variety_store|@category_shopping|@shop": "5Billigladen|Niedrigpreisgeschäft",
|
||||||
"shop-video|@shop": "4Videoshop|4Videothek",
|
"shop-video|@shop": "4Videoshop",
|
||||||
"shop-video_games|@shop": "4Gameshop|4Gamingladen|4Gaminggeschäft|4Videospiele|U+1F47E|U+1F579|U+1F3AE",
|
"shop-video_games|@shop": "4Gameshop",
|
||||||
"tourism-wilderness_hut|@category_hotel": "Selbstversorgerhütte|Wildnishütte",
|
"tourism-wilderness_hut|@category_hotel": "Selbstversorgerhütte|Wildnishütte",
|
||||||
"tourism-gallery|@category_tourism": "4Kunstgalerie|3Galerie|Museum|Kunstausstellung",
|
"tourism-gallery|@category_tourism": "4Kunstgalerie|3Galerie|Museum|Kunstausstellung",
|
||||||
"tourism-theme_park|@category_tourism|@category_children": "5Freizeitpark|4Vergnügungspark|U+1F3A2",
|
"tourism-theme_park|@category_tourism|@category_children": "Freizeitpark|Vergnügungspark",
|
||||||
"boundary-national_park|@category_tourism": "5Naturschutzpark|5Nationalpark",
|
"boundary-national_park|@category_tourism": "5Naturschutzpark|Nationalpark",
|
||||||
"leisure-nature_reserve|@category_tourism": "5Naturschutzgebiet",
|
"leisure-nature_reserve|@category_tourism": "5Naturschutzgebiet",
|
||||||
"natural-cape": "Kap|Landzunge|Landspitze",
|
"natural-cape": "Kap|Landzunge|Landspitze",
|
||||||
"natural-geyser": "3Geysir",
|
"natural-geyser": "3Geysir",
|
||||||
@@ -436,16 +431,16 @@
|
|||||||
"leisure-marina": "5Jachthafen",
|
"leisure-marina": "5Jachthafen",
|
||||||
"piste:type-downhill|piste:type-nordic": "Skifahren|Skipiste",
|
"piste:type-downhill|piste:type-nordic": "Skifahren|Skipiste",
|
||||||
"amenity-events_venue": "Veranstaltungszentrum",
|
"amenity-events_venue": "Veranstaltungszentrum",
|
||||||
"shop-chocolate|@category_food|@shop": "4Schokoladengeschäft|4Schokolade|4Pralinen",
|
"shop-chocolate|@category_food|@shop": "4Schokoladengeschäft",
|
||||||
"shop-coffee|@category_food|@shop": "4Kaffeegeschäft",
|
"shop-coffee|@category_food|@shop": "6Kaffeegeschäft",
|
||||||
"shop-fabric|@shop": "4Textilgeschäft|Stoffgeschäft|Stoffladen|Stoffe",
|
"shop-fabric|@shop": "4Textilgeschäft|Stoffgeschäft|Stoffladen|Stoffe",
|
||||||
"shop-money_lender": "4Geldverleiher|4Geldverleih",
|
"shop-money_lender": "4Geldverleiher",
|
||||||
"shop-music|@shop": "5Musikgeschäft|5Plattenladen",
|
"shop-music|@shop": "5Musikgeschäft|5Plattenladen",
|
||||||
"shop-musical_instrument|@shop": "5Musikinstrumenteladen|5Musikhaus",
|
"shop-musical_instrument|@shop": "5Musikinstrumenteladen|Musikhaus",
|
||||||
"shop-tea|@shop": "3Teegeschäft",
|
"shop-tea|@shop": "3Teegeschäft",
|
||||||
"shop-antiques|@category_shopping|@shop|@category_secondhand": "5Antiquitäten",
|
"shop-antiques|@category_shopping|@shop|@category_secondhand": "5Antiquitäten",
|
||||||
"shop-art|@category_shopping|@shop": "5Kunstgeschäft",
|
"shop-art|@category_shopping|@shop": "5Kunstgeschäft",
|
||||||
"shop-baby_goods|@category_children|@shop": "4Kinderladen|4Babybedarf",
|
"shop-baby_goods|@category_children|@shop": "Kinderladen|4Babybedarf",
|
||||||
"shop-bag|@category_shopping|@shop": "5Taschen Shop",
|
"shop-bag|@category_shopping|@shop": "5Taschen Shop",
|
||||||
"shop-cheese|@category_food|@shop": "3Käseladen",
|
"shop-cheese|@category_food|@shop": "3Käseladen",
|
||||||
"shop-dairy|@category_food|@shop": "5Milchprodukte",
|
"shop-dairy|@category_food|@shop": "5Milchprodukte",
|
||||||
@@ -454,11 +449,11 @@
|
|||||||
"shop-interior_decoration|@shop": "4Einrichtungsgeschäft|5Innendekorationen",
|
"shop-interior_decoration|@shop": "4Einrichtungsgeschäft|5Innendekorationen",
|
||||||
"shop-lottery|@gambling": "Lotteriescheine",
|
"shop-lottery|@gambling": "Lotteriescheine",
|
||||||
"shop-medical_supply|@shop": "4Sanitätshaus|4Medizinische Versorgung|5Heilbehelfe",
|
"shop-medical_supply|@shop": "4Sanitätshaus|4Medizinische Versorgung|5Heilbehelfe",
|
||||||
"shop-nutrition_supplements|@shop": "6Nahrungsergänzungsmittel",
|
"shop-nutrition_supplements|@shop": "Nahrungsergänzungsmittel",
|
||||||
"shop-paint|@shop": "Farben",
|
"shop-paint|@shop": "Farben",
|
||||||
"shop-perfumery|@category_shopping|@shop": "4Parfümerie",
|
"shop-perfumery|@category_shopping|@shop": "4Parfümerie",
|
||||||
"shop-sewing|@shop": "3Nähbedarf|3Nähzubehör|4Stoffe|5Kurzwaren|5Schneiderbedarf",
|
"shop-sewing|@shop": "Nähzubehör",
|
||||||
"shop-storage_rental": "5Lagervermietung|6Speichermiete",
|
"shop-storage_rental": "5Lagervermietung|Speichermiete",
|
||||||
"shop-tobacco|@shop": "5Tabakwarengeschäft|Tabak|4Trafik",
|
"shop-tobacco|@shop": "5Tabakwarengeschäft|Tabak|4Trafik",
|
||||||
"shop-trade|@shop": "Baustoffhandel|Handelsbedarf",
|
"shop-trade|@shop": "Baustoffhandel|Handelsbedarf",
|
||||||
"shop-watches|@category_shopping|@shop": "Uhrengeschäft|Uhren",
|
"shop-watches|@category_shopping|@shop": "Uhrengeschäft|Uhren",
|
||||||
@@ -466,35 +461,34 @@
|
|||||||
"leisure-track": "Laufbahn",
|
"leisure-track": "Laufbahn",
|
||||||
"leisure-bandstand": "6Musikpavillon|8Konzertpavillon|Konzertmuschel|Musikmuschel|Kurpavillon|Kurmuschel",
|
"leisure-bandstand": "6Musikpavillon|8Konzertpavillon|Konzertmuschel|Musikmuschel|Kurpavillon|Kurmuschel",
|
||||||
"power-plant": "Kraftwerk",
|
"power-plant": "Kraftwerk",
|
||||||
"power-generator-wind": "Windgenerator|Windrad|Windkraftanlage",
|
|
||||||
"shop-auction|@category_secondhand": "Auktion",
|
"shop-auction|@category_secondhand": "Auktion",
|
||||||
"shop-collector|@category_shopping|@category_secondhand": "Sammlerartikel|Sammlerstücke",
|
"shop-collector|@category_shopping|@category_secondhand": "Sammlerartikel|Sammlerstücke",
|
||||||
"man_made-cairn": "Steinmännchen",
|
"man_made-cairn": "Steinmännchen",
|
||||||
"wheelchair-yes": "4Rollstuhl|6Vollständiger Zugang für Rollstühle|4Barrierefreiheit",
|
"wheelchair-yes": "Rollstuhl|Vollständiger Zugang für Rollstühle",
|
||||||
"amenity-social_facility": "4Soziale Einrichtung",
|
"amenity-social_facility": "Soziale Einrichtung",
|
||||||
"leisure-sports_hall": "Sporthalle",
|
"leisure-sports_hall": "Sporthalle",
|
||||||
"amenity-arts_centre|@category_tourism": "Kunstzentrum",
|
"amenity-arts_centre|@category_tourism": "Kunstzentrum",
|
||||||
"amenity-prison": "4Gefängnis",
|
"amenity-prison": "Gefängnis",
|
||||||
"amenity-exhibition_centre": "4Messezentrum|4Ausstellungszentrum",
|
"amenity-exhibition_centre": "Messezentrum|Ausstellungszentrum",
|
||||||
"shop-bathroom_furnishing|@shop": "4Badezimmerausstattung",
|
"shop-bathroom_furnishing|@shop": "Badezimmerausstattung",
|
||||||
"shop-bed|@shop": "4Bettengeschäft",
|
"shop-bed|@shop": "Bettengeschäft",
|
||||||
"shop-boutique|@shop": "4Modehaus|4Modegeschäft|4Modeshop|4Modeladen|4Boutique",
|
"shop-boutique|@shop": "Boutique",
|
||||||
"shop-curtain|@shop": "4Gardinengeschäft",
|
"shop-curtain|@shop": "Gardinengeschäft",
|
||||||
"shop-gas|@shop": "4Gas-Geschäft",
|
"shop-gas|@shop": "Gas-Geschäft",
|
||||||
"shop-pet_grooming": "4Tiersalon|5Haustierpflege",
|
"shop-pet_grooming": "Tiersalon|Haustierpflege",
|
||||||
"shop-hifi|@shop": "4HiFi-Audio-Geschäft|4Radiogeschäft|4Radioshop",
|
"shop-hifi|@shop": "HiFi-Audio",
|
||||||
"amenity-conference_centre": "4Konferenzzentrum",
|
"amenity-conference_centre": "Konferenzzentrum",
|
||||||
"shop-herbalist|@shop": "4Kräuterladen",
|
"shop-herbalist|@shop": "Kräuterladen",
|
||||||
"shop-appliance|@shop": "6Laden für Haushaltsgeräte|4Küchengeräte|4Küche",
|
"shop-appliance|@shop": "Laden für Haushaltsgeräte",
|
||||||
"shop-agrarian|@shop": "5Landwirtschaftliches Geschäft",
|
"shop-agrarian|@shop": "Landwirtschaftliches Geschäft",
|
||||||
"shop-fashion_accessories|@shop": "4Mode-Accessoires",
|
"shop-fashion_accessories|@shop": "Mode-Accessoires",
|
||||||
"amenity-waste_transfer_station": "Müllumladestation",
|
"amenity-waste_transfer_station": "Müllumladestation",
|
||||||
"shop-carpet|@shop": "4Teppichgeschäft",
|
"shop-carpet|@shop": "Teppichgeschäft",
|
||||||
"shop-craft|@shop": "4Künstlerbedarf",
|
"shop-craft|@shop": "Künstlerbedarf",
|
||||||
"shop-pasta|@shop": "Nudelgeschäft",
|
"shop-pasta|@shop": "Nudelgeschäft",
|
||||||
"amenity-luggage_locker": "4Gepäckschließfach|4Kofferschließfach|4Schließfach",
|
"amenity-luggage_locker": "Gepäckschließfach",
|
||||||
"amenity-studio": "4Medienstudio|Studio|5Radiostudio|5Fernsehstudio",
|
"amenity-studio": "4Medienstudio|Studio|5Radiostudio|5Fernsehstudio",
|
||||||
"shop-cannabis|@shop": "4Cannabis|4Hanfladen|2CBD",
|
"shop-cannabis|@shop": "Cannabis",
|
||||||
"man_made-cross": "Kreuz",
|
"man_made-cross": "Kreuz",
|
||||||
"leisure-dance|@category_entertainment": "4Tanz|Tanzschule",
|
"leisure-dance|@category_entertainment": "4Tanz|Tanzschule",
|
||||||
"leisure-firepit": "5Feuerstelle",
|
"leisure-firepit": "5Feuerstelle",
|
||||||
@@ -502,8 +496,8 @@
|
|||||||
"leisure-hackerspace": "4Hackspace|4Hackerspace|4Hacker Space|4Hacklab|U+1F913|U+1F5A5|U+1F4BB",
|
"leisure-hackerspace": "4Hackspace|4Hackerspace|4Hacker Space|4Hacklab|U+1F913|U+1F5A5|U+1F4BB",
|
||||||
"natural-peak|@mountain": "Gipfel",
|
"natural-peak|@mountain": "Gipfel",
|
||||||
"man_made-crane": "Stationärer Kran",
|
"man_made-crane": "Stationärer Kran",
|
||||||
"amenity-food_court": "4Gastronomiebereich",
|
"amenity-food_court": "Gastronomiebereich",
|
||||||
"amenity-animal_shelter": "4Tierheim",
|
"amenity-animal_shelter": "Tierheim",
|
||||||
"recycling-cans|@category_recycling": "4Recycling von Dosen|4Dosenrecycling|4Aluminiumdosen Recycling|3Blechdosen",
|
"recycling-cans|@category_recycling": "4Recycling von Dosen|4Dosenrecycling|4Aluminiumdosen Recycling|3Blechdosen",
|
||||||
"recycling-shoes|@category_recycling": "4Recycling von Schuhen|Schuh Recycling|Schuhe spenden|Schuhe",
|
"recycling-shoes|@category_recycling": "4Recycling von Schuhen|Schuh Recycling|Schuhe spenden|Schuhe",
|
||||||
"recycling-green_waste|@category_recycling": "4Recycling von Gartenabfällen|5Organisches Müll Recycling|5Gartenabfälle",
|
"recycling-green_waste|@category_recycling": "4Recycling von Gartenabfällen|5Organisches Müll Recycling|5Gartenabfälle",
|
||||||
@@ -513,7 +507,7 @@
|
|||||||
"recycling-cardboard|@category_recycling": "9Recycling von Karton|9Recycling von Pappe|Kartonrecycling|Pappenrecycling|Kartonmüll|Pappenmüll|Karton|Pappe|Pappkarton|Kartonpappe",
|
"recycling-cardboard|@category_recycling": "9Recycling von Karton|9Recycling von Pappe|Kartonrecycling|Pappenrecycling|Kartonmüll|Pappenmüll|Karton|Pappe|Pappkarton|Kartonpappe",
|
||||||
"natural-saddle|mountain_pass": "4Sattel|4Bergsattel|Bergpass|Pass|Gebirgspass",
|
"natural-saddle|mountain_pass": "4Sattel|4Bergsattel|Bergpass|Pass|Gebirgspass",
|
||||||
"man_made-chimney": "Schornstein",
|
"man_made-chimney": "Schornstein",
|
||||||
"attraction-amusement_ride|attraction-carousel|attraction-roller_coaster|attraction-maze|attraction-historic|attraction-big_wheel|attraction-bumper_car|@category_children": "4Attraktion|4Labyrinth",
|
"attraction-amusement_ride|attraction-carousel|attraction-roller_coaster|attraction-maze|attraction-historic|attraction-big_wheel|attraction-bumper_car|@category_children": "Attraktion|Labyrinth",
|
||||||
"building-guardhouse": "4Wache",
|
"building-guardhouse": "4Wache",
|
||||||
"shop-lighting|@shop": "Leuchtmittel|Lampen|Leuchte",
|
"shop-lighting|@shop": "Leuchtmittel|Lampen|Leuchte",
|
||||||
"amenity-charging_station-motorcar|amenity-charging_station-motorcar-small|@charging_station": "4Autoladestation|5Autoladegerät|Ladestation",
|
"amenity-charging_station-motorcar|amenity-charging_station-motorcar-small|@charging_station": "4Autoladestation|5Autoladegerät|Ladestation",
|
||||||
|
|||||||
@@ -242,7 +242,7 @@
|
|||||||
"leisure-stadium": "4Stadium|4sport|U+26BD|U+26BE|U+1F3BE|U+1F3C0|U+1F3C8|U+1F4AA|U+1F3C9|olympic stadium|sports stadium|sports complex|arena|sports arena",
|
"leisure-stadium": "4Stadium|4sport|U+26BD|U+26BE|U+1F3BE|U+1F3C0|U+1F3C8|U+1F4AA|U+1F3C9|olympic stadium|sports stadium|sports complex|arena|sports arena",
|
||||||
"leisure-playground|@category_children": "4Playground",
|
"leisure-playground|@category_children": "4Playground",
|
||||||
"leisure-sports_centre|leisure-sports_centre-sport-american_football|leisure-sports_centre-sport-archery|leisure-sports_centre-sport-athletics|leisure-sports_centre-sport-australian_football|leisure-sports_centre-sport-badminton|leisure-sports_centre-sport-baseball|leisure-sports_centre-sport-basketball|leisure-sports_centre-sport-beachvolleyball|leisure-sports_centre-sport-bowls|leisure-sports_centre-sport-climbing|leisure-sports_centre-sport-cricket|leisure-sports_centre-sport-curling|leisure-sports_centre-sport-equestrian|leisure-sports_centre-sport-field_hockey|leisure-sports_centre-sport-futsal|leisure-sports_centre-sport-golf|leisure-sports_centre-sport-gymnastics|leisure-sports_centre-sport-handball|leisure-sports_centre-sport-ice_hockey|leisure-sports_centre-sport-multi|leisure-sports_centre-sport-padel|leisure-sports_centre-sport-pelota|leisure-sports_centre-sport-scuba_diving|leisure-sports_centre-sport-shooting|leisure-sports_centre-sport-skateboard|leisure-sports_centre-sport-skiing|leisure-sports_centre-sport-soccer|leisure-sports_centre-sport-table_tennis|leisure-sports_centre-sport-tennis|leisure-sports_centre-sport-volleyball|leisure-sports_centre-sport-yoga": "4Sports Center|sport|sports|U+26BD|U+26BE|U+1F3BE|U+1F4AA|U+1F3C8|U+1F3C0|U+1F3C9|sports complex|sports forum",
|
"leisure-sports_centre|leisure-sports_centre-sport-american_football|leisure-sports_centre-sport-archery|leisure-sports_centre-sport-athletics|leisure-sports_centre-sport-australian_football|leisure-sports_centre-sport-badminton|leisure-sports_centre-sport-baseball|leisure-sports_centre-sport-basketball|leisure-sports_centre-sport-beachvolleyball|leisure-sports_centre-sport-bowls|leisure-sports_centre-sport-climbing|leisure-sports_centre-sport-cricket|leisure-sports_centre-sport-curling|leisure-sports_centre-sport-equestrian|leisure-sports_centre-sport-field_hockey|leisure-sports_centre-sport-futsal|leisure-sports_centre-sport-golf|leisure-sports_centre-sport-gymnastics|leisure-sports_centre-sport-handball|leisure-sports_centre-sport-ice_hockey|leisure-sports_centre-sport-multi|leisure-sports_centre-sport-padel|leisure-sports_centre-sport-pelota|leisure-sports_centre-sport-scuba_diving|leisure-sports_centre-sport-shooting|leisure-sports_centre-sport-skateboard|leisure-sports_centre-sport-skiing|leisure-sports_centre-sport-soccer|leisure-sports_centre-sport-table_tennis|leisure-sports_centre-sport-tennis|leisure-sports_centre-sport-volleyball|leisure-sports_centre-sport-yoga": "4Sports Center|sport|sports|U+26BD|U+26BE|U+1F3BE|U+1F4AA|U+1F3C8|U+1F3C0|U+1F3C9|sports complex|sports forum",
|
||||||
"leisure-sports_centre-sport-swimming": "4Swimming Centre",
|
"leisure-sports_centre-sport-swimming": "4Swimmming Centre",
|
||||||
"leisure-golf_course": "4Golf Course|golf|U+26F3",
|
"leisure-golf_course": "4Golf Course|golf|U+26F3",
|
||||||
"leisure-miniature_golf": "4Minigolf|Miniature Golf|Putt Putt|mini golf|mini-golf",
|
"leisure-miniature_golf": "4Minigolf|Miniature Golf|Putt Putt|mini golf|mini-golf",
|
||||||
"leisure-escape_game": "4Escape Room|Escape Game|quest",
|
"leisure-escape_game": "4Escape Room|Escape Game|quest",
|
||||||
|
|||||||
@@ -41,11 +41,11 @@
|
|||||||
"Austria_Upper Austria":"Oberösterreich",
|
"Austria_Upper Austria":"Oberösterreich",
|
||||||
"Austria_Vorarlberg":"Vorarlberg",
|
"Austria_Vorarlberg":"Vorarlberg",
|
||||||
"Azerbaijan":"Aserbaidschan",
|
"Azerbaijan":"Aserbaidschan",
|
||||||
"Azerbaijan Region":"Aserbaidschan Region",
|
"Azerbaijan Region":"Aserbaidschan",
|
||||||
"Bahrain":"Bahrain",
|
"Bahrain":"Bahrain",
|
||||||
"Bangladesh":"Bangladesch",
|
"Bangladesh":"Bangladesch",
|
||||||
"Barbados":"Barbados",
|
"Barbados":"Barbados",
|
||||||
"Belarus":"Belarus (Weißrussland)",
|
"Belarus":"Weißrussland",
|
||||||
"Belarus_Brest Region":"Breszkaja Woblasz",
|
"Belarus_Brest Region":"Breszkaja Woblasz",
|
||||||
"Belarus_Homiel Region":"Homelskaja Woblasz",
|
"Belarus_Homiel Region":"Homelskaja Woblasz",
|
||||||
"Belarus_Hrodna Region":"Hrodsenskaja Woblasz",
|
"Belarus_Hrodna Region":"Hrodsenskaja Woblasz",
|
||||||
@@ -55,10 +55,10 @@
|
|||||||
"Belgium":"Belgien",
|
"Belgium":"Belgien",
|
||||||
"Belgium_Antwerp":"Provinz Antwerpen",
|
"Belgium_Antwerp":"Provinz Antwerpen",
|
||||||
"Belgium_East Flanders":"Provinz Ostflandern",
|
"Belgium_East Flanders":"Provinz Ostflandern",
|
||||||
"Belgium_Flemish Brabant":"Provinz Flämisch-Brabant",
|
"Belgium_Flemish Brabant":"Flämisch-Brabant",
|
||||||
"Belgium_Hainaut":"Provinz Hennegau",
|
"Belgium_Hainaut":"Provinz Hennegau",
|
||||||
"Belgium_Liege":"Provinz Lüttich",
|
"Belgium_Liege":"Provinz Lüttich",
|
||||||
"Belgium_Limburg":"Provinz Limburg",
|
"Belgium_Limburg":"Limburg",
|
||||||
"Belgium_Luxembourg":"Provinz Luxemburg",
|
"Belgium_Luxembourg":"Provinz Luxemburg",
|
||||||
"Belgium_Namur":"Provinz Namur",
|
"Belgium_Namur":"Provinz Namur",
|
||||||
"Belgium_Walloon Brabant":"Provinz Wallonisch-Brabant",
|
"Belgium_Walloon Brabant":"Provinz Wallonisch-Brabant",
|
||||||
@@ -80,13 +80,13 @@
|
|||||||
"Brazil_Goias":"Goiás",
|
"Brazil_Goias":"Goiás",
|
||||||
"Brazil_Mato Grosso":"Mato Grosso",
|
"Brazil_Mato Grosso":"Mato Grosso",
|
||||||
"Brazil_Mato Grosso Do Sul":"Mato Grosso do Sul",
|
"Brazil_Mato Grosso Do Sul":"Mato Grosso do Sul",
|
||||||
"Brazil_North Region":"Região Norte do Brasil (Nördliche Region)",
|
"Brazil_North Region":"Norden",
|
||||||
"Brazil_Northeast Region":"Região Nordeste do Brasil (Nordöstliche Region)",
|
"Brazil_Northeast Region":"Nordosten",
|
||||||
"Brazil_Paraiba":"Paraíba",
|
"Brazil_Paraiba":"Paraíba",
|
||||||
"Brazil_Parana":"Paraná",
|
"Brazil_Parana":"Paraná",
|
||||||
"Brazil_Rio Grande do Norte":"Rio Grande do Norte",
|
"Brazil_Rio Grande do Norte":"Rio Grande do Norte",
|
||||||
"Brazil_Santa Catarina":"Santa Catarina",
|
"Brazil_Santa Catarina":"Santa Catarina",
|
||||||
"Brazil_South Region":"Südliches Brasilien",
|
"Brazil_South Region":"Süd Brasilien",
|
||||||
"Brazil_Southeast Region_Espirito Santo":"Espírito Santo",
|
"Brazil_Southeast Region_Espirito Santo":"Espírito Santo",
|
||||||
"Brazil_Southeast Region_Minas Gerais_Contagem":"Minas Gerais — Contagem",
|
"Brazil_Southeast Region_Minas Gerais_Contagem":"Minas Gerais — Contagem",
|
||||||
"Brazil_Southeast Region_Minas Gerais_North":"Minas Gerais — Norden",
|
"Brazil_Southeast Region_Minas Gerais_North":"Minas Gerais — Norden",
|
||||||
@@ -159,7 +159,7 @@
|
|||||||
"Canada_Ontario_Toronto":"Toronto",
|
"Canada_Ontario_Toronto":"Toronto",
|
||||||
"Canada_Prince Edward Island":"Prince Edward Island",
|
"Canada_Prince Edward Island":"Prince Edward Island",
|
||||||
"Canada_Quebec":"Québec",
|
"Canada_Quebec":"Québec",
|
||||||
"Canada_Quebec_Quebec":"Québec, Stadt",
|
"Canada_Quebec_Quebec":"Québec",
|
||||||
"Canada_Quebek_Far North":"Québec — Norden",
|
"Canada_Quebek_Far North":"Québec — Norden",
|
||||||
"Canada_Quebek_Montreal":"Montreal",
|
"Canada_Quebek_Montreal":"Montreal",
|
||||||
"Canada_Quebek_North":"Sept-Îles",
|
"Canada_Quebek_North":"Sept-Îles",
|
||||||
@@ -188,7 +188,7 @@
|
|||||||
"China_Fujian":"Fujian",
|
"China_Fujian":"Fujian",
|
||||||
"China_Gansu":"Gansu",
|
"China_Gansu":"Gansu",
|
||||||
"China_Guangdong":"Guangdong",
|
"China_Guangdong":"Guangdong",
|
||||||
"China_Guangxi":"Autonomes Gebiet Guangxi der Zhuang",
|
"China_Guangxi":"Guangxi",
|
||||||
"China_Guizhou":"Guizhou",
|
"China_Guizhou":"Guizhou",
|
||||||
"China_Hebei":"Hebei",
|
"China_Hebei":"Hebei",
|
||||||
"China_Heilongjiang":"Heilongjiang",
|
"China_Heilongjiang":"Heilongjiang",
|
||||||
@@ -200,15 +200,15 @@
|
|||||||
"China_Jiangxi":"Jiangxi",
|
"China_Jiangxi":"Jiangxi",
|
||||||
"China_Jilin":"Jilin",
|
"China_Jilin":"Jilin",
|
||||||
"China_Liaoning":"Liaoning",
|
"China_Liaoning":"Liaoning",
|
||||||
"China_Ningxia Hui":"Autonomes Gebiet Ningxia der Hui",
|
"China_Ningxia Hui":"Ningxia",
|
||||||
"China_Qinghai":"Qinghai",
|
"China_Qinghai":"Qinghai",
|
||||||
"China_Shaanxi":"Shaanxi",
|
"China_Shaanxi":"Shaanxi",
|
||||||
"China_Shandong":"Shandong",
|
"China_Shandong":"Shandong",
|
||||||
"China_Shanghai":"Shanghai",
|
"China_Shanghai":"Shanghai",
|
||||||
"China_Shanxi":"Shanxi",
|
"China_Shanxi":"Shanxi",
|
||||||
"China_Sichuan":"Sichuan",
|
"China_Sichuan":"Sichuan",
|
||||||
"China_Tibet Autonomous Region":"Autonome Region Tibet",
|
"China_Tibet Autonomous Region":"Tibet",
|
||||||
"China_Xinjiang":"Uigurisches Autonomes Gebiet Xinjiang",
|
"China_Xinjiang":"Xinjiang",
|
||||||
"China_Yunnan":"Yunnan",
|
"China_Yunnan":"Yunnan",
|
||||||
"China_Zhejiang":"Zhejiang",
|
"China_Zhejiang":"Zhejiang",
|
||||||
"Colombia":"Kolumbien",
|
"Colombia":"Kolumbien",
|
||||||
@@ -226,7 +226,7 @@
|
|||||||
"Croatia":"Kroatien",
|
"Croatia":"Kroatien",
|
||||||
"Cuba":"Kuba",
|
"Cuba":"Kuba",
|
||||||
"Cyprus":"Zypern",
|
"Cyprus":"Zypern",
|
||||||
"Czech Republic":"Tschechische Republik",
|
"Czech Republic":"Tschechien",
|
||||||
"Czech_Jihovychod_Jihomoravsky kraj":"Region Südmähren",
|
"Czech_Jihovychod_Jihomoravsky kraj":"Region Südmähren",
|
||||||
"Czech_Jihovychod_Kraj Vysocina":"Region Hochland",
|
"Czech_Jihovychod_Kraj Vysocina":"Region Hochland",
|
||||||
"Czech_Jihozapad_Jihocesky kraj":"Region Südböhmen",
|
"Czech_Jihozapad_Jihocesky kraj":"Region Südböhmen",
|
||||||
@@ -251,7 +251,7 @@
|
|||||||
"Djibouti":"Dschibuti",
|
"Djibouti":"Dschibuti",
|
||||||
"Dominica":"Dominica",
|
"Dominica":"Dominica",
|
||||||
"Dominican Republic":"Dominikanische Republik",
|
"Dominican Republic":"Dominikanische Republik",
|
||||||
"East Timor":"Timor-Leste",
|
"East Timor":"Osttimor",
|
||||||
"Ecuador":"Ecuador",
|
"Ecuador":"Ecuador",
|
||||||
"Egypt":"Ägypten",
|
"Egypt":"Ägypten",
|
||||||
"El Salvador":"El Salvador",
|
"El Salvador":"El Salvador",
|
||||||
@@ -263,15 +263,15 @@
|
|||||||
"Ethiopia":"Äthiopien",
|
"Ethiopia":"Äthiopien",
|
||||||
"Falkland Islands":"Falklandinseln",
|
"Falkland Islands":"Falklandinseln",
|
||||||
"Faroe Islands":"Färöer",
|
"Faroe Islands":"Färöer",
|
||||||
"Federated States of Micronesia":"Föderierten Staaten von Mikronesien",
|
"Federated States of Micronesia":"Mikronesien",
|
||||||
"Fiji":"Fidschi",
|
"Fiji":"Fidschi",
|
||||||
"Finland":"Finnland",
|
"Finland":"Finnland",
|
||||||
"Finland_Eastern Finland":"Ost-Finnland",
|
"Finland_Eastern Finland":"Ostfinnland",
|
||||||
"Finland_Northern Finland":"Nord-Finnland",
|
"Finland_Northern Finland":"Nordfinnland",
|
||||||
"Finland_Southern Finland_Helsinki":"Süd-Finnland — Helsinki",
|
"Finland_Southern Finland_Helsinki":"Südfinnland — Helsinki",
|
||||||
"Finland_Southern Finland_Lappeenranta":"Süd-Finnland — Lappeenranta",
|
"Finland_Southern Finland_Lappeenranta":"Südfinnland — Lappeenranta",
|
||||||
"Finland_Southern Finland_West":"Varsinais-Suomi",
|
"Finland_Southern Finland_West":"Varsinais-Suomi",
|
||||||
"Finland_Western Finland":"West-Finnland",
|
"Finland_Western Finland":"Westfinnland",
|
||||||
"Florida":"Florida",
|
"Florida":"Florida",
|
||||||
"France":"Frankreich",
|
"France":"Frankreich",
|
||||||
"France_Alsace":"Elsass",
|
"France_Alsace":"Elsass",
|
||||||
@@ -383,7 +383,7 @@
|
|||||||
"France_Upper Normandy":"Haute-Normandie",
|
"France_Upper Normandy":"Haute-Normandie",
|
||||||
"French Polynesia":"Französisch-Polynesien",
|
"French Polynesia":"Französisch-Polynesien",
|
||||||
"Gabon":"Gabun",
|
"Gabon":"Gabun",
|
||||||
"Georgia Region":"Georgien – Region",
|
"Georgia Region":"Georgien",
|
||||||
"Georgia":"Georgien",
|
"Georgia":"Georgien",
|
||||||
"Germany":"Deutschland",
|
"Germany":"Deutschland",
|
||||||
"Germany_Baden-Wurttemberg":"Baden-Württemberg",
|
"Germany_Baden-Wurttemberg":"Baden-Württemberg",
|
||||||
@@ -706,7 +706,7 @@
|
|||||||
"Netherlands_Gelderland_North":"Provinz Gelderland — Apeldoorn",
|
"Netherlands_Gelderland_North":"Provinz Gelderland — Apeldoorn",
|
||||||
"Netherlands_Gelderland_Zutphen":"Provinz Gelderland — Zutphen",
|
"Netherlands_Gelderland_Zutphen":"Provinz Gelderland — Zutphen",
|
||||||
"Netherlands_Groningen":"Provinz Groningen",
|
"Netherlands_Groningen":"Provinz Groningen",
|
||||||
"Netherlands_Limburg":"Limburg",
|
"Netherlands_Limburg":"Provinz Limburg",
|
||||||
"Netherlands_North Brabant_Eindhoven":"Provinz Nordbrabant — Eindhoven",
|
"Netherlands_North Brabant_Eindhoven":"Provinz Nordbrabant — Eindhoven",
|
||||||
"Netherlands_North Brabant_Roosendaal":"Provinz Nordbrabant — Roosendaal",
|
"Netherlands_North Brabant_Roosendaal":"Provinz Nordbrabant — Roosendaal",
|
||||||
"Netherlands_North Brabant_Tiburg":"Provinz Nordbrabant — Tilburg",
|
"Netherlands_North Brabant_Tiburg":"Provinz Nordbrabant — Tilburg",
|
||||||
@@ -1135,7 +1135,7 @@
|
|||||||
"US_Texas_Tyler":"Tyler",
|
"US_Texas_Tyler":"Tyler",
|
||||||
"US_Texas_Wako":"Waco",
|
"US_Texas_Wako":"Waco",
|
||||||
"US_Texas_West":"Odessa",
|
"US_Texas_West":"Odessa",
|
||||||
"US_United States Minor Outlying Islands":"Kleinere, abgelegene Inseln der Vereinigten Staaten von Amerika",
|
"US_United States Minor Outlying Islands":"US Kleinere abgelegene Inseln",
|
||||||
"US_Utah":"Utah",
|
"US_Utah":"Utah",
|
||||||
"US_Vermont":"Vermont",
|
"US_Vermont":"Vermont",
|
||||||
"US_Virginia_Chesapeake":"Chesapeake",
|
"US_Virginia_Chesapeake":"Chesapeake",
|
||||||
@@ -1432,7 +1432,7 @@
|
|||||||
"Brazil_Southeast Region_Espirito Santo Description":"Serra, Vila Velha, Cariacica",
|
"Brazil_Southeast Region_Espirito Santo Description":"Serra, Vila Velha, Cariacica",
|
||||||
"Brazil_Southeast Region_Minas Gerais_Contagem Description":"Belo Horizonte",
|
"Brazil_Southeast Region_Minas Gerais_Contagem Description":"Belo Horizonte",
|
||||||
"Brazil_Southeast Region_Minas Gerais_North Description":"Uberlandia, Montes Claros, Uberaba",
|
"Brazil_Southeast Region_Minas Gerais_North Description":"Uberlandia, Montes Claros, Uberaba",
|
||||||
"Brazil_Southeast Region_Rio de Janeiro Description":"Rio de Janeiro, São Gonçalo, Duque de Caxias",
|
"Brazil_Southeast Region_Rio de Janeiro Description":"Rio de Janeiro",
|
||||||
"Brazil_Southeast Region_Sao Paulo_Campinas Description":"Campinas, Sorocaba, Jundiaí",
|
"Brazil_Southeast Region_Sao Paulo_Campinas Description":"Campinas, Sorocaba, Jundiaí",
|
||||||
"Brazil_Southeast Region_Sao Paulo_City Description":"São Paulo",
|
"Brazil_Southeast Region_Sao Paulo_City Description":"São Paulo",
|
||||||
"Brazil_Southeast Region_Sao Paulo_West Description":"Ribeirão Preto, São José do Rio Preto, Franca",
|
"Brazil_Southeast Region_Sao Paulo_West Description":"Ribeirão Preto, São José do Rio Preto, Franca",
|
||||||
@@ -1446,7 +1446,7 @@
|
|||||||
"Cambodia Description":"Phnom Penh",
|
"Cambodia Description":"Phnom Penh",
|
||||||
"Cameroon_Central Description":"Jaunde",
|
"Cameroon_Central Description":"Jaunde",
|
||||||
"Cameroon_West Description":"Duala",
|
"Cameroon_West Description":"Duala",
|
||||||
"Canada_Alberta_Edmonton Description":"Edmonton, Lacombe, Wetaskiwin",
|
"Canada_Alberta_Edmonton Description":"Edmonton",
|
||||||
"Canada_Alberta_North Description":"Grande Prairie, Peace River, Fort McMurray",
|
"Canada_Alberta_North Description":"Grande Prairie, Peace River, Fort McMurray",
|
||||||
"Canada_Alberta_South Description":"Calgary, Chestermere, Lethbridge",
|
"Canada_Alberta_South Description":"Calgary, Chestermere, Lethbridge",
|
||||||
"Canada_British Columbia_Central Description":"Williams Lake, Quesnel, Prince George",
|
"Canada_British Columbia_Central Description":"Williams Lake, Quesnel, Prince George",
|
||||||
@@ -1462,7 +1462,7 @@
|
|||||||
"Canada_Manitoba_Northeast Description":"Caribou, Manigotagan, English Brook",
|
"Canada_Manitoba_Northeast Description":"Caribou, Manigotagan, English Brook",
|
||||||
"Canada_Manitoba_Northwest Description":"Young Point, Cormorant, Pickerel Narrows",
|
"Canada_Manitoba_Northwest Description":"Young Point, Cormorant, Pickerel Narrows",
|
||||||
"Canada_Manitoba_South Description":"Foxwarren, Shoal Lake, Brandon",
|
"Canada_Manitoba_South Description":"Foxwarren, Shoal Lake, Brandon",
|
||||||
"Canada_Manitoba_Winnipeg Description":"Winnipeg, Portage La Prairie, Killarney",
|
"Canada_Manitoba_Winnipeg Description":"Winnipeg",
|
||||||
"Canada_New Brunswick Description":"Edmundston, Fredericton, Campbellton",
|
"Canada_New Brunswick Description":"Edmundston, Fredericton, Campbellton",
|
||||||
"Canada_Newfoundland_East Description":"Mount Pearl, St John's, Badger",
|
"Canada_Newfoundland_East Description":"Mount Pearl, St John's, Badger",
|
||||||
"Canada_Newfoundland_North Description":"St. Anthony, Kippens, Gallants",
|
"Canada_Newfoundland_North Description":"St. Anthony, Kippens, Gallants",
|
||||||
@@ -1486,7 +1486,7 @@
|
|||||||
"Canada_Ontario_Northeastern_W Description":"Wawa, Dubreuilville, White River",
|
"Canada_Ontario_Northeastern_W Description":"Wawa, Dubreuilville, White River",
|
||||||
"Canada_Ontario_Northern Description":"Thunder Bay, Geraldton, Longlac",
|
"Canada_Ontario_Northern Description":"Thunder Bay, Geraldton, Longlac",
|
||||||
"Canada_Ontario_Northwestern Description":"Pikangikum, Peawanuck, Sandy Lake",
|
"Canada_Ontario_Northwestern Description":"Pikangikum, Peawanuck, Sandy Lake",
|
||||||
"Canada_Ontario_Toronto Description":"Toronto, Guelph, Mississauga",
|
"Canada_Ontario_Toronto Description":"Toronto",
|
||||||
"Canada_Prince Edward Island Description":"Summerside, Charlottetown, Borden",
|
"Canada_Prince Edward Island Description":"Summerside, Charlottetown, Borden",
|
||||||
"Canada_Quebec_Quebec Description":"Quebec",
|
"Canada_Quebec_Quebec Description":"Quebec",
|
||||||
"Canada_Quebek_Far North Description":"Radisson, Akulivik, Inukjuak",
|
"Canada_Quebek_Far North Description":"Radisson, Akulivik, Inukjuak",
|
||||||
@@ -1531,7 +1531,7 @@
|
|||||||
"China_Qinghai Description":"Delingha, Yushu",
|
"China_Qinghai Description":"Delingha, Yushu",
|
||||||
"China_Shaanxi Description":"Xi'an, Baoji, Hanzhong",
|
"China_Shaanxi Description":"Xi'an, Baoji, Hanzhong",
|
||||||
"China_Shandong Description":"Jinan, Tai'an, Zibo",
|
"China_Shandong Description":"Jinan, Tai'an, Zibo",
|
||||||
"China_Shanghai Description":"Shanghai, Jinshan, Putuo",
|
"China_Shanghai Description":"Shanghai",
|
||||||
"China_Shanxi Description":"Taiyuan, Changzhi, Huozhou",
|
"China_Shanxi Description":"Taiyuan, Changzhi, Huozhou",
|
||||||
"China_Sichuan Description":"Chengdu, Panzhihua, Yibin",
|
"China_Sichuan Description":"Chengdu, Panzhihua, Yibin",
|
||||||
"China_Tibet Autonomous Region Description":"Gya'gya, Chabkha, Shelkar",
|
"China_Tibet Autonomous Region Description":"Gya'gya, Chabkha, Shelkar",
|
||||||
@@ -1573,7 +1573,7 @@
|
|||||||
"Denmark_North Denmark Region Description":"Hjörring, Frederikshavn",
|
"Denmark_North Denmark Region Description":"Hjörring, Frederikshavn",
|
||||||
"Denmark_Region Zealand Description":"Nästved, Greve",
|
"Denmark_Region Zealand Description":"Nästved, Greve",
|
||||||
"Denmark_Region of Southern Denmark Description":"Odense, Morud, Korup",
|
"Denmark_Region of Southern Denmark Description":"Odense, Morud, Korup",
|
||||||
"Djibouti Description":"Dschibuti, Randa, Yoboki",
|
"Djibouti Description":"Dschibuti",
|
||||||
"Dominica Description":"Roseau, Salisbury, Grand Bay",
|
"Dominica Description":"Roseau, Salisbury, Grand Bay",
|
||||||
"Dominican Republic Description":"Santo Domingo, Barahona, Azua",
|
"Dominican Republic Description":"Santo Domingo, Barahona, Azua",
|
||||||
"East Timor Description":"Dili, Pante Macassar, Viqueque",
|
"East Timor Description":"Dili, Pante Macassar, Viqueque",
|
||||||
@@ -1630,7 +1630,7 @@
|
|||||||
"France_French Guiana Description":"Cayenne, Saint-Laurent-du-Maroni, Matoury",
|
"France_French Guiana Description":"Cayenne, Saint-Laurent-du-Maroni, Matoury",
|
||||||
"France_Ile-de-France_Essonne Description":"Évry, Corbeil-Essonnes, Massy",
|
"France_Ile-de-France_Essonne Description":"Évry, Corbeil-Essonnes, Massy",
|
||||||
"France_Ile-de-France_Hauts-de-Seine Description":"Boulogne-Billancourt, Nanterre, Courbevoie",
|
"France_Ile-de-France_Hauts-de-Seine Description":"Boulogne-Billancourt, Nanterre, Courbevoie",
|
||||||
"France_Ile-de-France_Paris Description":"Paris, Campagne à Paris",
|
"France_Ile-de-France_Paris Description":"Paris",
|
||||||
"France_Ile-de-France_Seine-Saint-Denis Description":"Saint-Denis, Montreuil, Aubervilliers",
|
"France_Ile-de-France_Seine-Saint-Denis Description":"Saint-Denis, Montreuil, Aubervilliers",
|
||||||
"France_Ile-de-France_Seine-et-Marne Description":"Meaux, Chelles, Melun",
|
"France_Ile-de-France_Seine-et-Marne Description":"Meaux, Chelles, Melun",
|
||||||
"France_Ile-de-France_Val-dOise Description":"Argenteuil, Cergy, Sarcelles",
|
"France_Ile-de-France_Val-dOise Description":"Argenteuil, Cergy, Sarcelles",
|
||||||
@@ -1872,7 +1872,7 @@
|
|||||||
"Italy_Veneto_Venezia Description":"Venedig",
|
"Italy_Veneto_Venezia Description":"Venedig",
|
||||||
"Italy_Veneto_Verona Description":"Verona, Villafranca di Verona, Legnago",
|
"Italy_Veneto_Verona Description":"Verona, Villafranca di Verona, Legnago",
|
||||||
"Italy_Veneto_Vicenza Description":"Bassan, Schleit",
|
"Italy_Veneto_Vicenza Description":"Bassan, Schleit",
|
||||||
"Jamaica Description":"Kingston, Montego Bay, Spanish Town",
|
"Jamaica Description":"Kingston",
|
||||||
"Japan_Chubu Region_Aichi_Nagoya Description":"Nagoya",
|
"Japan_Chubu Region_Aichi_Nagoya Description":"Nagoya",
|
||||||
"Japan_Chubu Region_Aichi_Toyohashi Description":"Tahara, Gamagori, Nishio",
|
"Japan_Chubu Region_Aichi_Toyohashi Description":"Tahara, Gamagori, Nishio",
|
||||||
"Japan_Chubu Region_Fukui Description":"Obama, Fukui, Sakai",
|
"Japan_Chubu Region_Fukui Description":"Obama, Fukui, Sakai",
|
||||||
@@ -2282,7 +2282,7 @@
|
|||||||
"UK_England_East Midlands Description":"Nottingham, Leicester, Derby",
|
"UK_England_East Midlands Description":"Nottingham, Leicester, Derby",
|
||||||
"UK_England_East of England_Essex Description":"Luton, Colchester, Southend-on-Sea",
|
"UK_England_East of England_Essex Description":"Luton, Colchester, Southend-on-Sea",
|
||||||
"UK_England_East of England_Norfolk Description":"Norwich, Peterborough, Cambridge",
|
"UK_England_East of England_Norfolk Description":"Norwich, Peterborough, Cambridge",
|
||||||
"UK_England_Greater London Description":"London, Croydon, Ilford",
|
"UK_England_Greater London Description":"London",
|
||||||
"UK_England_North East England Description":"Sunderland, Newcastle upon Tyne",
|
"UK_England_North East England Description":"Sunderland, Newcastle upon Tyne",
|
||||||
"UK_England_North West England_Lancaster Description":"Blackpool, Whitehaven, Egremont",
|
"UK_England_North West England_Lancaster Description":"Blackpool, Whitehaven, Egremont",
|
||||||
"UK_England_North West England_Manchester Description":"Manchester, Liverpool, Salford",
|
"UK_England_North West England_Manchester Description":"Manchester, Liverpool, Salford",
|
||||||
|
|||||||
@@ -6,10 +6,10 @@
|
|||||||
"make_a_right_turn_street":"NULL",
|
"make_a_right_turn_street":"NULL",
|
||||||
"make_a_sharp_right_turn":"Scharf rechts.",
|
"make_a_sharp_right_turn":"Scharf rechts.",
|
||||||
"make_a_sharp_right_turn_street":"NULL",
|
"make_a_sharp_right_turn_street":"NULL",
|
||||||
"enter_the_roundabout":"Fahre in den Kreisverkehr ein.",
|
"enter_the_roundabout":"Fahren Sie in den Kreisverkehr ein.",
|
||||||
"enter_the_roundabout_street":"NULL",
|
"enter_the_roundabout_street":"NULL",
|
||||||
"enter_the_roundabout_street_verb":"NULL",
|
"enter_the_roundabout_street_verb":"NULL",
|
||||||
"leave_the_roundabout":"Verlasse den Kreisverkehr.",
|
"leave_the_roundabout":"Verlassen Sie den Kreisverkehr.",
|
||||||
"leave_the_roundabout_street":"NULL",
|
"leave_the_roundabout_street":"NULL",
|
||||||
"leave_the_roundabout_street_verb":"NULL",
|
"leave_the_roundabout_street_verb":"NULL",
|
||||||
"make_a_slight_left_turn":"Halten Sie sich links.",
|
"make_a_slight_left_turn":"Halten Sie sich links.",
|
||||||
|
|||||||
@@ -80,7 +80,7 @@
|
|||||||
"type.leisure.pitch" = "Sport Pitch";
|
"type.leisure.pitch" = "Sport Pitch";
|
||||||
"type.leisure.playground" = "Playground";
|
"type.leisure.playground" = "Playground";
|
||||||
"type.leisure.sports_centre" = "Sports Center";
|
"type.leisure.sports_centre" = "Sports Center";
|
||||||
"type.sport.yoga" = "যোগ";
|
"type.sport.yoga" = "Yoga Studio";
|
||||||
"type.leisure.swimming_pool" = "Swimming Pool";
|
"type.leisure.swimming_pool" = "Swimming Pool";
|
||||||
"type.leisure.swimming_pool.private" = "Swimming Pool";
|
"type.leisure.swimming_pool.private" = "Swimming Pool";
|
||||||
"type.leisure.track" = "Track";
|
"type.leisure.track" = "Track";
|
||||||
@@ -262,7 +262,7 @@
|
|||||||
"type.waterway.stream.tunnel" = "Stream";
|
"type.waterway.stream.tunnel" = "Stream";
|
||||||
"type.railway.subway_entrance.mecca" = "Subway Entrance";
|
"type.railway.subway_entrance.mecca" = "Subway Entrance";
|
||||||
"type.shop.chocolate" = "Chocolate Shop";
|
"type.shop.chocolate" = "Chocolate Shop";
|
||||||
"type.tourism" = "পর্যটন";
|
"type.tourism" = "Tourism";
|
||||||
"type.highway.residential.area" = "Residential Street";
|
"type.highway.residential.area" = "Residential Street";
|
||||||
"type.wheelchair.yes" = "Full Wheelchair Access";
|
"type.wheelchair.yes" = "Full Wheelchair Access";
|
||||||
"type.boundary.protected_area.2" = "Protected Area";
|
"type.boundary.protected_area.2" = "Protected Area";
|
||||||
@@ -313,7 +313,7 @@
|
|||||||
"type.man_made.lighthouse" = "Lighthouse";
|
"type.man_made.lighthouse" = "Lighthouse";
|
||||||
"type.cuisine.tea" = "Tea";
|
"type.cuisine.tea" = "Tea";
|
||||||
"type.shop.money_lender" = "Money Lender";
|
"type.shop.money_lender" = "Money Lender";
|
||||||
"type.area_highway.steps" = "সিঁড়ি";
|
"type.area_highway.steps" = "Stairs";
|
||||||
"type.historic.fort" = "Fort";
|
"type.historic.fort" = "Fort";
|
||||||
"type.railway.station.funicular" = "Funicular";
|
"type.railway.station.funicular" = "Funicular";
|
||||||
"type.barrier.swing_gate" = "Swing Gate";
|
"type.barrier.swing_gate" = "Swing Gate";
|
||||||
@@ -332,7 +332,7 @@
|
|||||||
"type.natural.geyser" = "Geyser";
|
"type.natural.geyser" = "Geyser";
|
||||||
"type.amenity.bbq" = "Barbecue Grill";
|
"type.amenity.bbq" = "Barbecue Grill";
|
||||||
"type.landuse.reservoir" = "Reservoir";
|
"type.landuse.reservoir" = "Reservoir";
|
||||||
"type.sport.soccer" = "ফুটবল";
|
"type.sport.soccer" = "Soccer";
|
||||||
"type.amenity.shelter.basic_hut" = "Bivouac Hut";
|
"type.amenity.shelter.basic_hut" = "Bivouac Hut";
|
||||||
"type.natural.desert" = "মরুভূমি";
|
"type.natural.desert" = "মরুভূমি";
|
||||||
"type.natural.wetland.mangrove" = "Mangrove";
|
"type.natural.wetland.mangrove" = "Mangrove";
|
||||||
@@ -351,19 +351,19 @@
|
|||||||
"type.sport.scuba_diving" = "Scuba Diving Site";
|
"type.sport.scuba_diving" = "Scuba Diving Site";
|
||||||
"type.highway.living_street" = "Living Street";
|
"type.highway.living_street" = "Living Street";
|
||||||
"type.railway.subway_entrance.kunming" = "Subway Entrance";
|
"type.railway.subway_entrance.kunming" = "Subway Entrance";
|
||||||
"type.sport.cricket" = "ক্রিকেট";
|
"type.sport.cricket" = "Cricket";
|
||||||
"type.natural.scrub" = "Scrub";
|
"type.natural.scrub" = "Scrub";
|
||||||
"type.leisure.amusement_arcade" = "Arcade";
|
"type.leisure.amusement_arcade" = "Arcade";
|
||||||
"type.highway.ford" = "Ford";
|
"type.highway.ford" = "Ford";
|
||||||
"type.shop.bed" = "Bed Shop";
|
"type.shop.bed" = "Bed Shop";
|
||||||
"type.tourism.museum" = "জাদুঘর";
|
"type.tourism.museum" = "Museum";
|
||||||
"type.amenity.school" = "School";
|
"type.amenity.school" = "School";
|
||||||
"type.amenity.parcel_locker" = "Parcel Locker";
|
"type.amenity.parcel_locker" = "Parcel Locker";
|
||||||
"type.historic.pillory" = "Pillory";
|
"type.historic.pillory" = "Pillory";
|
||||||
"type.barrier.block" = "Block";
|
"type.barrier.block" = "Block";
|
||||||
"type.man_made.tower" = "Tower";
|
"type.man_made.tower" = "Tower";
|
||||||
"type.historic.archaeological_site" = "Archaeological Site";
|
"type.historic.archaeological_site" = "Archaeological Site";
|
||||||
"type.shop.watches" = "ঘড়ির দোকান";
|
"type.shop.watches" = "Watch Store";
|
||||||
"type.amenity.parking_space.underground" = "Parking Space";
|
"type.amenity.parking_space.underground" = "Parking Space";
|
||||||
"type.aeroway.runway" = "Runway";
|
"type.aeroway.runway" = "Runway";
|
||||||
"type.railway.subway_entrance.lille" = "Subway Entrance";
|
"type.railway.subway_entrance.lille" = "Subway Entrance";
|
||||||
@@ -386,7 +386,7 @@
|
|||||||
"type.recycling.glass_bottles" = "Glass Bottles";
|
"type.recycling.glass_bottles" = "Glass Bottles";
|
||||||
"type.amenity.shelter" = "Shelter";
|
"type.amenity.shelter" = "Shelter";
|
||||||
"type.landuse.grass" = "Grass";
|
"type.landuse.grass" = "Grass";
|
||||||
"type.amenity.toilets" = "শৌচালয়";
|
"type.amenity.toilets" = "Toilet";
|
||||||
"type.railway.subway_entrance.hongkong" = "Subway Entrance";
|
"type.railway.subway_entrance.hongkong" = "Subway Entrance";
|
||||||
"type.landuse.forest.deciduous" = "Deciduous Forest";
|
"type.landuse.forest.deciduous" = "Deciduous Forest";
|
||||||
"type.power.pole" = "Power Pole";
|
"type.power.pole" = "Power Pole";
|
||||||
@@ -410,7 +410,7 @@
|
|||||||
"type.healthcare.alternative" = "Alternative Medicine";
|
"type.healthcare.alternative" = "Alternative Medicine";
|
||||||
"type.highway.cycleway.bridge" = "Bridge";
|
"type.highway.cycleway.bridge" = "Bridge";
|
||||||
"type.amenity.fire_station" = "দমকল স্টেশন";
|
"type.amenity.fire_station" = "দমকল স্টেশন";
|
||||||
"type.sport.table_tennis" = "টেবিল টেনিস";
|
"type.sport.table_tennis" = "Table Tennis";
|
||||||
"type.railway.station.subway.dnepro" = "Subway Station";
|
"type.railway.station.subway.dnepro" = "Subway Station";
|
||||||
"type.railway.subway_entrance.valencia" = "Subway Entrance";
|
"type.railway.subway_entrance.valencia" = "Subway Entrance";
|
||||||
"type.highway.track.tunnel" = "Tunnel";
|
"type.highway.track.tunnel" = "Tunnel";
|
||||||
@@ -424,7 +424,7 @@
|
|||||||
"type.amenity.brothel" = "Brothel";
|
"type.amenity.brothel" = "Brothel";
|
||||||
"type.piste_type.sled" = "Sledding Piste";
|
"type.piste_type.sled" = "Sledding Piste";
|
||||||
"type.shop.funeral_directors" = "Funeral Directors";
|
"type.shop.funeral_directors" = "Funeral Directors";
|
||||||
"type.sport.volleyball" = "ভলিবল";
|
"type.sport.volleyball" = "Volleyball";
|
||||||
"type.amenity.bicycle_parking" = "Bicycle Parking";
|
"type.amenity.bicycle_parking" = "Bicycle Parking";
|
||||||
"type.railway.subway_entrance.kazan" = "Subway Entrance";
|
"type.railway.subway_entrance.kazan" = "Subway Entrance";
|
||||||
"type.cuisine.austrian" = "Austrian";
|
"type.cuisine.austrian" = "Austrian";
|
||||||
@@ -447,8 +447,8 @@
|
|||||||
"type.railway.monorail.tunnel" = "Monorail Tunnel";
|
"type.railway.monorail.tunnel" = "Monorail Tunnel";
|
||||||
"type.barrier.fence" = "বেড়া";
|
"type.barrier.fence" = "বেড়া";
|
||||||
"type.natural.cliff" = "Cliff";
|
"type.natural.cliff" = "Cliff";
|
||||||
"type.tourism.zoo" = "চিড়িয়াখানা";
|
"type.tourism.zoo" = "Zoo";
|
||||||
"type.shop.paint" = "রঙের দোকান";
|
"type.shop.paint" = "Paint Shop";
|
||||||
"type.railway.subway_entrance.novosibirsk" = "Subway Entrance";
|
"type.railway.subway_entrance.novosibirsk" = "Subway Entrance";
|
||||||
"type.shop.department_store" = "Department Store";
|
"type.shop.department_store" = "Department Store";
|
||||||
"type.railway.station.subway.nagoya" = "Subway Station";
|
"type.railway.station.subway.nagoya" = "Subway Station";
|
||||||
@@ -476,7 +476,7 @@
|
|||||||
"type.natural.meadow" = "Meadow";
|
"type.natural.meadow" = "Meadow";
|
||||||
"type.railway.station.subway.shenzhen" = "Subway Station";
|
"type.railway.station.subway.shenzhen" = "Subway Station";
|
||||||
"type.natural.wetland.saltmarsh.tidal" = "Tidal Salt Marsh";
|
"type.natural.wetland.saltmarsh.tidal" = "Tidal Salt Marsh";
|
||||||
"type.area_highway.path" = "পথ";
|
"type.area_highway.path" = "Path";
|
||||||
"type.mountain_pass" = "Mountain Pass";
|
"type.mountain_pass" = "Mountain Pass";
|
||||||
"type.shop.car_repair" = "Car Repair Workshop";
|
"type.shop.car_repair" = "Car Repair Workshop";
|
||||||
"type.highway.construction" = "Road Under Construction";
|
"type.highway.construction" = "Road Under Construction";
|
||||||
@@ -528,7 +528,7 @@
|
|||||||
"type.railway.construction" = "Railway Construction";
|
"type.railway.construction" = "Railway Construction";
|
||||||
"type.railway.subway_entrance.nnov" = "Subway Entrance";
|
"type.railway.subway_entrance.nnov" = "Subway Entrance";
|
||||||
"type.barrier.wall" = "Wall";
|
"type.barrier.wall" = "Wall";
|
||||||
"type.tourism.artwork.statue" = "মূর্তি";
|
"type.tourism.artwork.statue" = "Statue";
|
||||||
"type.cuisine.hungarian" = "Hungarian";
|
"type.cuisine.hungarian" = "Hungarian";
|
||||||
"type.natural.cape" = "Cape";
|
"type.natural.cape" = "Cape";
|
||||||
"type.place.islet" = "Islet";
|
"type.place.islet" = "Islet";
|
||||||
@@ -563,7 +563,7 @@
|
|||||||
"type.railway.station.subway.sendai" = "Subway Station";
|
"type.railway.station.subway.sendai" = "Subway Station";
|
||||||
"type.healthcare.speech_therapist" = "Logopedics";
|
"type.healthcare.speech_therapist" = "Logopedics";
|
||||||
"type.area_highway.track" = "Track";
|
"type.area_highway.track" = "Track";
|
||||||
"type.amenity.theatre" = "থিয়েটার";
|
"type.amenity.theatre" = "Theatre";
|
||||||
"type.sport.baseball" = "Baseball";
|
"type.sport.baseball" = "Baseball";
|
||||||
"type.recycling.batteries" = "Batteries";
|
"type.recycling.batteries" = "Batteries";
|
||||||
"type.fee.yes" = "$";
|
"type.fee.yes" = "$";
|
||||||
@@ -588,7 +588,7 @@
|
|||||||
"type.natural.beach.gravel" = "Gravel Beach";
|
"type.natural.beach.gravel" = "Gravel Beach";
|
||||||
"type.railway.subway_entrance.sofia" = "Subway Entrance";
|
"type.railway.subway_entrance.sofia" = "Subway Entrance";
|
||||||
"type.area_highway.pedestrian" = "Pedestrian Street";
|
"type.area_highway.pedestrian" = "Pedestrian Street";
|
||||||
"type.shop.bag" = "ব্যাগের দোকান";
|
"type.shop.bag" = "Bag Shop";
|
||||||
"type.highway.cycleway.permissive" = "Cycle Path";
|
"type.highway.cycleway.permissive" = "Cycle Path";
|
||||||
"type.historic.wreck" = "Shipwreck";
|
"type.historic.wreck" = "Shipwreck";
|
||||||
"type.shop.fishing" = "Fishing Store";
|
"type.shop.fishing" = "Fishing Store";
|
||||||
@@ -637,7 +637,7 @@
|
|||||||
"type.sport.athletics" = "Athletics";
|
"type.sport.athletics" = "Athletics";
|
||||||
"type.tourism.artwork" = "Artwork";
|
"type.tourism.artwork" = "Artwork";
|
||||||
"type.railway.funicular.tunnel" = "Funicular Tunnel";
|
"type.railway.funicular.tunnel" = "Funicular Tunnel";
|
||||||
"type.tourism.attraction" = "আকর্ষণ";
|
"type.tourism.attraction" = "Attraction";
|
||||||
"type.railway.station.subway.rotterdam" = "Subway Station";
|
"type.railway.station.subway.rotterdam" = "Subway Station";
|
||||||
"type.railway.station.subway.vienna" = "Subway Station";
|
"type.railway.station.subway.vienna" = "Subway Station";
|
||||||
"type.barrier.hedge" = "Hedge";
|
"type.barrier.hedge" = "Hedge";
|
||||||
@@ -711,20 +711,20 @@
|
|||||||
"type.highway.road.tunnel" = "Tunnel";
|
"type.highway.road.tunnel" = "Tunnel";
|
||||||
"type.shop.cheese" = "Cheese Shop";
|
"type.shop.cheese" = "Cheese Shop";
|
||||||
"type.man_made.pipeline.overground" = "Overground Pipeline";
|
"type.man_made.pipeline.overground" = "Overground Pipeline";
|
||||||
"type.sport.multi" = "বিভিন্ন ক্রীড়া";
|
"type.sport.multi" = "Various Sports";
|
||||||
"type.boundary.protected_area.1" = "Protected Area";
|
"type.boundary.protected_area.1" = "Protected Area";
|
||||||
"type.boundary.aboriginal_lands" = "Indigenous Lands";
|
"type.boundary.aboriginal_lands" = "Indigenous Lands";
|
||||||
"type.amenity.driving_school" = "Driving School";
|
"type.amenity.driving_school" = "Driving School";
|
||||||
"type.amenity.payment_terminal" = "Payment Terminal";
|
"type.amenity.payment_terminal" = "Payment Terminal";
|
||||||
"type.man_made.petroleum_well" = "Oil or Gas Well";
|
"type.man_made.petroleum_well" = "Oil or Gas Well";
|
||||||
"type.sport.golf" = "গল্ফ";
|
"type.sport.golf" = "Golf";
|
||||||
"type.highway.unclassified.tunnel" = "Tunnel";
|
"type.highway.unclassified.tunnel" = "Tunnel";
|
||||||
"type.shop.lottery" = "লটারি টিকিট";
|
"type.shop.lottery" = "Lottery Tickets";
|
||||||
"type.railway.subway_entrance.medellin" = "Subway Entrance";
|
"type.railway.subway_entrance.medellin" = "Subway Entrance";
|
||||||
"type.railway.subway_entrance.sf" = "Subway Entrance";
|
"type.railway.subway_entrance.sf" = "Subway Entrance";
|
||||||
"type.railway.station.subway.tabriz" = "Subway Station";
|
"type.railway.station.subway.tabriz" = "Subway Station";
|
||||||
"type.shop.boutique" = "বুটিক";
|
"type.shop.boutique" = "Boutique";
|
||||||
"type.sport.swimming" = "সাঁতার";
|
"type.sport.swimming" = "Swimming";
|
||||||
"type.railway.station.subway.kharkiv" = "Subway Station";
|
"type.railway.station.subway.kharkiv" = "Subway Station";
|
||||||
"type.amenity.vending_machine.newspapers" = "Newspaper Dispenser";
|
"type.amenity.vending_machine.newspapers" = "Newspaper Dispenser";
|
||||||
"type.railway.rail.main.tunnel" = "Railway Tunnel";
|
"type.railway.rail.main.tunnel" = "Railway Tunnel";
|
||||||
@@ -770,14 +770,14 @@
|
|||||||
"type.sport.padel" = "Padel";
|
"type.sport.padel" = "Padel";
|
||||||
"type.sport.futsal" = "Futsal";
|
"type.sport.futsal" = "Futsal";
|
||||||
"type.sport.field_hockey" = "Field Hockey";
|
"type.sport.field_hockey" = "Field Hockey";
|
||||||
"type.sport.badminton" = "ব্যাডমিন্টন";
|
"type.sport.badminton" = "Badminton";
|
||||||
"type.sport.pelota" = "Basque Pelota";
|
"type.sport.pelota" = "Basque Pelota";
|
||||||
"type.tourism.aquarium" = "Aquarium";
|
"type.tourism.aquarium" = "Aquarium";
|
||||||
"type.waterway.dock" = "Waterway Dock";
|
"type.waterway.dock" = "Waterway Dock";
|
||||||
"type.waterway.drain" = "Drain";
|
"type.waterway.drain" = "Drain";
|
||||||
"type.natural.water.drain" = "Drain";
|
"type.natural.water.drain" = "Drain";
|
||||||
"type.waterway.lock_gate" = "Lock Gate";
|
"type.waterway.lock_gate" = "Lock Gate";
|
||||||
"type.waterway.river" = "নদী";
|
"type.waterway.river" = "River";
|
||||||
"type.highway.track" = "Track";
|
"type.highway.track" = "Track";
|
||||||
"type.man_made.wastewater_plant" = "Wastewater Treatment Plant";
|
"type.man_made.wastewater_plant" = "Wastewater Treatment Plant";
|
||||||
"type.place.square" = "Square";
|
"type.place.square" = "Square";
|
||||||
@@ -866,7 +866,7 @@
|
|||||||
"type.railway.subway_entrance.taipei" = "Subway Entrance";
|
"type.railway.subway_entrance.taipei" = "Subway Entrance";
|
||||||
"type.cemetery.grave" = "Grave";
|
"type.cemetery.grave" = "Grave";
|
||||||
"type.junction.roundabout" = "Roundabout";
|
"type.junction.roundabout" = "Roundabout";
|
||||||
"type.tourism.hostel" = "হোস্টেল";
|
"type.tourism.hostel" = "Hostel";
|
||||||
"type.highway.tertiary_link.tunnel" = "Tunnel";
|
"type.highway.tertiary_link.tunnel" = "Tunnel";
|
||||||
"type.attraction.maze" = "Maze";
|
"type.attraction.maze" = "Maze";
|
||||||
"type.railway.subway_entrance.tabriz" = "Subway Entrance";
|
"type.railway.subway_entrance.tabriz" = "Subway Entrance";
|
||||||
@@ -971,7 +971,7 @@
|
|||||||
"type.cuisine.bagel" = "Bagel";
|
"type.cuisine.bagel" = "Bagel";
|
||||||
"type.power.plant.wind" = "Wind Power Plant";
|
"type.power.plant.wind" = "Wind Power Plant";
|
||||||
"type.cuisine.arab" = "Arab";
|
"type.cuisine.arab" = "Arab";
|
||||||
"type.tourism.hotel" = "হোটেল";
|
"type.tourism.hotel" = "Hotel";
|
||||||
"type.amenity.shower" = "Shower";
|
"type.amenity.shower" = "Shower";
|
||||||
"type.barrier.chain" = "Chain";
|
"type.barrier.chain" = "Chain";
|
||||||
"type.office" = "Office";
|
"type.office" = "Office";
|
||||||
@@ -1008,10 +1008,10 @@
|
|||||||
"type.natural.heath" = "Heath";
|
"type.natural.heath" = "Heath";
|
||||||
"type.craft.electronics_repair" = "Electronics Repair";
|
"type.craft.electronics_repair" = "Electronics Repair";
|
||||||
"type.amenity.place_of_worship.christian.mormon" = "Church of Jesus Christ of Latter Day Saints";
|
"type.amenity.place_of_worship.christian.mormon" = "Church of Jesus Christ of Latter Day Saints";
|
||||||
"type.sport.basketball" = "বাস্কেটবল";
|
"type.sport.basketball" = "Basketball";
|
||||||
"type.waterway.canal" = "Canal";
|
"type.waterway.canal" = "Canal";
|
||||||
"type.shop.caravan" = "RV Dealership";
|
"type.shop.caravan" = "RV Dealership";
|
||||||
"type.tourism.artwork.sculpture" = "ভাস্কর্য";
|
"type.tourism.artwork.sculpture" = "Sculpture";
|
||||||
"type.railway.subway_entrance.tianjin" = "Subway Entrance";
|
"type.railway.subway_entrance.tianjin" = "Subway Entrance";
|
||||||
"type.landuse" = "Landuse";
|
"type.landuse" = "Landuse";
|
||||||
"type.natural.bay" = "Bay";
|
"type.natural.bay" = "Bay";
|
||||||
@@ -1119,14 +1119,14 @@
|
|||||||
"type.railway.subway_entrance.lisboa" = "Subway Entrance";
|
"type.railway.subway_entrance.lisboa" = "Subway Entrance";
|
||||||
"type.noexit" = "Dead End";
|
"type.noexit" = "Dead End";
|
||||||
"type.railway.subway_entrance.helsinki" = "Subway Entrance";
|
"type.railway.subway_entrance.helsinki" = "Subway Entrance";
|
||||||
"type.sport.chess" = "দাবা";
|
"type.sport.chess" = "Chess";
|
||||||
"type.railway.station.subway.bengalore" = "Subway Station";
|
"type.railway.station.subway.bengalore" = "Subway Station";
|
||||||
"type.landuse.orchard" = "Orchard";
|
"type.landuse.orchard" = "Orchard";
|
||||||
"type.piste_type.downhill.area" = "Downhill Ski Run";
|
"type.piste_type.downhill.area" = "Downhill Ski Run";
|
||||||
"type.highway.bridleway.bridge" = "Bridge";
|
"type.highway.bridleway.bridge" = "Bridge";
|
||||||
"type.waterway.waterfall" = "ঝর্ণা";
|
"type.waterway.waterfall" = "Waterfall";
|
||||||
"type.landuse.landfill" = "Landfill";
|
"type.landuse.landfill" = "Landfill";
|
||||||
"type.sport" = "ক্রীড়া";
|
"type.sport" = "Sport";
|
||||||
"type.landuse.meadow" = "Meadow";
|
"type.landuse.meadow" = "Meadow";
|
||||||
"type.natural.wetland.swamp" = "Swamp";
|
"type.natural.wetland.swamp" = "Swamp";
|
||||||
"type.landuse.railway" = "Railway Premises";
|
"type.landuse.railway" = "Railway Premises";
|
||||||
@@ -1165,7 +1165,7 @@
|
|||||||
"type.man_made.flare" = "Gas Flare";
|
"type.man_made.flare" = "Gas Flare";
|
||||||
"type.cuisine.peruvian" = "Peruvian";
|
"type.cuisine.peruvian" = "Peruvian";
|
||||||
"type.natural.water.pond" = "পুকুর";
|
"type.natural.water.pond" = "পুকুর";
|
||||||
"type.waterway.dam" = "বাঁধ";
|
"type.waterway.dam" = "Dam";
|
||||||
"type.amenity.parking.park_and_ride" = "Park And Ride Parking";
|
"type.amenity.parking.park_and_ride" = "Park And Ride Parking";
|
||||||
"type.amenity.fountain" = "ফাউন্টেন";
|
"type.amenity.fountain" = "ফাউন্টেন";
|
||||||
"type.amenity.vending_machine.coffee" = "Coffee Dispenser";
|
"type.amenity.vending_machine.coffee" = "Coffee Dispenser";
|
||||||
@@ -1271,7 +1271,7 @@
|
|||||||
"type.highway.primary.bridge" = "Bridge";
|
"type.highway.primary.bridge" = "Bridge";
|
||||||
"type.railway.subway_entrance.barcelona" = "Subway Entrance";
|
"type.railway.subway_entrance.barcelona" = "Subway Entrance";
|
||||||
"type.railway.station.subway.la" = "Subway Station";
|
"type.railway.station.subway.la" = "Subway Station";
|
||||||
"type.attraction.historic" = "ঐতিহাসিক আকর্ষণ";
|
"type.attraction.historic" = "Historic attraction";
|
||||||
"type.barrier.gate" = "Gate";
|
"type.barrier.gate" = "Gate";
|
||||||
"type.area_highway.secondary" = "Secondary Road";
|
"type.area_highway.secondary" = "Secondary Road";
|
||||||
"type.cuisine.bavarian" = "Bavarian";
|
"type.cuisine.bavarian" = "Bavarian";
|
||||||
|
|||||||
@@ -43,7 +43,7 @@
|
|||||||
"country_status_download_failed" = "Herunterladen fehlgeschlagen";
|
"country_status_download_failed" = "Herunterladen fehlgeschlagen";
|
||||||
|
|
||||||
/* Text in About screen */
|
/* Text in About screen */
|
||||||
"about_headline" = "Freies Projekt, von der Gemeinschaft entwickelt";
|
"about_headline" = "Ein offenes Projekt der Community";
|
||||||
|
|
||||||
/* Text in About screen */
|
/* Text in About screen */
|
||||||
"about_proposition_1" = "Offline, schnell und einfach zu benutzen";
|
"about_proposition_1" = "Offline, schnell und einfach zu benutzen";
|
||||||
@@ -93,7 +93,7 @@
|
|||||||
"category_food" = "Lebensmittel";
|
"category_food" = "Lebensmittel";
|
||||||
|
|
||||||
/* Search category for public transport; any changes should be duplicated in categories.txt @category_transport! */
|
/* Search category for public transport; any changes should be duplicated in categories.txt @category_transport! */
|
||||||
"category_transport" = "ÖPNV";
|
"category_transport" = "Verkehr";
|
||||||
|
|
||||||
/* Search category for fuel stations; any changes should be duplicated in categories.txt @category_fuel! */
|
/* Search category for fuel stations; any changes should be duplicated in categories.txt @category_fuel! */
|
||||||
"category_fuel" = "Tankstelle";
|
"category_fuel" = "Tankstelle";
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
"category_nightlife" = "Nachtleben";
|
"category_nightlife" = "Nachtleben";
|
||||||
|
|
||||||
/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @category_children! */
|
/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @category_children! */
|
||||||
"category_children" = "Familienfreizeit";
|
"category_children" = "Freizeit mit Kindern";
|
||||||
|
|
||||||
/* Search category for banks; any changes should be duplicated in categories.txt @category_bank! */
|
/* Search category for banks; any changes should be duplicated in categories.txt @category_bank! */
|
||||||
"category_bank" = "Bank";
|
"category_bank" = "Bank";
|
||||||
@@ -141,7 +141,7 @@
|
|||||||
"category_post" = "Post";
|
"category_post" = "Post";
|
||||||
|
|
||||||
/* Search category for police; any changes should be duplicated in categories.txt @category_police! */
|
/* Search category for police; any changes should be duplicated in categories.txt @category_police! */
|
||||||
"category_police" = "Polizei";
|
"category_police" = "Polizeistation";
|
||||||
|
|
||||||
/* Search category for WiFi access; any changes should be duplicated in categories.txt @category_wifi! */
|
/* Search category for WiFi access; any changes should be duplicated in categories.txt @category_wifi! */
|
||||||
"category_wifi" = "WLAN";
|
"category_wifi" = "WLAN";
|
||||||
@@ -169,16 +169,16 @@
|
|||||||
"edit" = "Bearbeiten";
|
"edit" = "Bearbeiten";
|
||||||
|
|
||||||
/* Warning message when doing search around current position */
|
/* Warning message when doing search around current position */
|
||||||
"unknown_current_position" = "Dein Standort konnte noch nicht ermittelt werden";
|
"unknown_current_position" = "Ihr Standort konnte noch nicht ermittelt werden";
|
||||||
|
|
||||||
/* Subject for emailed bookmark */
|
/* Subject for emailed bookmark */
|
||||||
"bookmark_share_email_subject" = "Hey, sieh dir meine Stecknadel in der CoMaps-App an!";
|
"bookmark_share_email_subject" = "Hey, sieh dir meine Stecknadel auf der CoMaps-Karte an!";
|
||||||
|
|
||||||
/* Subject for emailed position */
|
/* Subject for emailed position */
|
||||||
"my_position_share_email_subject" = "Hey, sieh dir meinen aktuellen Standort auf der CoMaps-Karte an!";
|
"my_position_share_email_subject" = "Hey, sieh dir meinen aktuellen Standort auf der CoMaps-Karte an!";
|
||||||
|
|
||||||
/* Share by email button text, also used in editor and About. */
|
/* Share by email button text, also used in editor and About. */
|
||||||
"email" = "E-Mail";
|
"email" = "Email";
|
||||||
|
|
||||||
/* Text for message to copy something */
|
/* Text for message to copy something */
|
||||||
"copy_to_clipboard" = "In die Zwischenablage kopieren";
|
"copy_to_clipboard" = "In die Zwischenablage kopieren";
|
||||||
@@ -250,10 +250,10 @@
|
|||||||
"pref_tts_street_names_description" = "Wenn aktiviert, wird der Name der Straße oder Ausfahrt, in die abgebogen werden soll, laut angekündigt.";
|
"pref_tts_street_names_description" = "Wenn aktiviert, wird der Name der Straße oder Ausfahrt, in die abgebogen werden soll, laut angekündigt.";
|
||||||
|
|
||||||
/* Settings «Route» category: «Tts language» title */
|
/* Settings «Route» category: «Tts language» title */
|
||||||
"pref_tts_language_title" = "Sprache der Sprachführung";
|
"pref_tts_language_title" = "Sprache für Sprachführung";
|
||||||
|
|
||||||
/* Settings «Route» category: «Test Voice Directions» title */
|
/* Settings «Route» category: «Test Voice Directions» title */
|
||||||
"pref_tts_test_voice_title" = "Teste die Sprachanweisungen";
|
"pref_tts_test_voice_title" = "Teste Sprachanweisungen";
|
||||||
|
|
||||||
/* Title for "Other" section in TTS settings. */
|
/* Title for "Other" section in TTS settings. */
|
||||||
"pref_tts_other_section_title" = "Weitere";
|
"pref_tts_other_section_title" = "Weitere";
|
||||||
@@ -441,7 +441,7 @@
|
|||||||
/* blue gray color */
|
/* blue gray color */
|
||||||
"blue_gray" = "Graublau";
|
"blue_gray" = "Graublau";
|
||||||
"dialog_routing_disclaimer_title" = "Wenn Sie der Route folgen, beachten Sie bitte:";
|
"dialog_routing_disclaimer_title" = "Wenn Sie der Route folgen, beachten Sie bitte:";
|
||||||
"dialog_routing_disclaimer_priority" = "— Zustand der Straßen, die Verkehrsordnung und Straßenschilder haben stets Vorrang vor Navigationsanweisungen;";
|
"dialog_routing_disclaimer_priority" = "– Zustand der Straßen, die Verkehrsordnung und Straßenschilder haben stets Vorrang vor Navigationsanweisungen;";
|
||||||
"dialog_routing_disclaimer_precision" = "– Die Karte kann ungenau sein, und die vorgeschlagene Route ist möglicherweise nicht der optimale Weg, um das Ziel zu erreichen;";
|
"dialog_routing_disclaimer_precision" = "– Die Karte kann ungenau sein, und die vorgeschlagene Route ist möglicherweise nicht der optimale Weg, um das Ziel zu erreichen;";
|
||||||
"dialog_routing_disclaimer_recommendations" = "— Die vorgeschlagenen Routen sind als Empfehlungen zu verstehen;";
|
"dialog_routing_disclaimer_recommendations" = "— Die vorgeschlagenen Routen sind als Empfehlungen zu verstehen;";
|
||||||
"dialog_routing_disclaimer_borders" = "— Bitte seien Sie vorsichtig bei Routen in Grenzgebieten: die Routen, die unsere App erstellt, können manchmal Landesgrenzen in gesperrten Gebieten überschreiten.";
|
"dialog_routing_disclaimer_borders" = "— Bitte seien Sie vorsichtig bei Routen in Grenzgebieten: die Routen, die unsere App erstellt, können manchmal Landesgrenzen in gesperrten Gebieten überschreiten.";
|
||||||
@@ -730,14 +730,14 @@
|
|||||||
"mobile_data_description" = "Für Benachrichtigungen über Kartenaktualisierungen und das Hochladen von Änderungen ist eine mobile Internetverbindung erforderlich.";
|
"mobile_data_description" = "Für Benachrichtigungen über Kartenaktualisierungen und das Hochladen von Änderungen ist eine mobile Internetverbindung erforderlich.";
|
||||||
"mobile_data_option_never" = "Nie verwenden";
|
"mobile_data_option_never" = "Nie verwenden";
|
||||||
"mobile_data_option_ask" = "Immer fragen";
|
"mobile_data_option_ask" = "Immer fragen";
|
||||||
"traffic_update_maps_text" = "Um die Verkehrsdaten anzuzeigen, müssen die Karten aktualisiert werden.";
|
"traffic_update_maps_text" = "Um Verkehrsdaten anzuzeigen, müssen die Karten aktualisiert werden.";
|
||||||
"big_font" = "Schrift auf der Karte vergrößern";
|
"big_font" = "Schrift auf der Karte vergrößern";
|
||||||
|
|
||||||
/* "traffic" as in road congestion */
|
/* "traffic" as in road congestion */
|
||||||
"traffic_update_app_message" = "Zum Anzeigen von Verkehrsdaten muss die Anwendung aktualisiert werden.";
|
"traffic_update_app_message" = "Zum Anzeigen von Verkehrsdaten muss die Anwendung aktualisiert werden.";
|
||||||
|
|
||||||
/* "traffic" as in "road congestion" */
|
/* "traffic" as in "road congestion" */
|
||||||
"traffic_data_unavailable" = "Es sind keine Verkehrsdaten verfügbar";
|
"traffic_data_unavailable" = "Verkehrsdaten sind nicht verfügbar";
|
||||||
"enable_logging" = "Protokollierung aktivieren";
|
"enable_logging" = "Protokollierung aktivieren";
|
||||||
"log_file_size" = "Größe der Protokolldatei: %@";
|
"log_file_size" = "Größe der Protokolldatei: %@";
|
||||||
"transliteration_title" = "Transliteration ins lateinische Alphabet";
|
"transliteration_title" = "Transliteration ins lateinische Alphabet";
|
||||||
@@ -813,7 +813,7 @@
|
|||||||
"power_managment_title" = "Stromsparmodus";
|
"power_managment_title" = "Stromsparmodus";
|
||||||
"power_managment_description" = "Versuchen Sie, den Stromverbrauch auf Kosten einiger Funktionen zu reduzieren.";
|
"power_managment_description" = "Versuchen Sie, den Stromverbrauch auf Kosten einiger Funktionen zu reduzieren.";
|
||||||
"power_managment_setting_never" = "Niemals";
|
"power_managment_setting_never" = "Niemals";
|
||||||
"power_managment_setting_auto" = "Bei niedrigem Akkustand";
|
"power_managment_setting_auto" = "Auto";
|
||||||
"power_managment_setting_manual_max" = "Maximale Stromsparung";
|
"power_managment_setting_manual_max" = "Maximale Stromsparung";
|
||||||
"enable_logging_warning_message" = "Diese Option wird aktiviert, um Aktivitäten zwecks Diagnostik aufzuzeichnen. Das hilft unserem Team, Probleme mit der App zu erkennen. Aktivieren Sie diese Option, reproduzieren Sie das Problem und senden Sie die Protokolle über die Schaltfläche \"Fehler melden\" an uns.";
|
"enable_logging_warning_message" = "Diese Option wird aktiviert, um Aktivitäten zwecks Diagnostik aufzuzeichnen. Das hilft unserem Team, Probleme mit der App zu erkennen. Aktivieren Sie diese Option, reproduzieren Sie das Problem und senden Sie die Protokolle über die Schaltfläche \"Fehler melden\" an uns.";
|
||||||
"driving_options_title" = "Routenbeschränkungen";
|
"driving_options_title" = "Routenbeschränkungen";
|
||||||
@@ -925,7 +925,7 @@
|
|||||||
"elevation_profile_max_elevation" = "Max. Höhe";
|
"elevation_profile_max_elevation" = "Max. Höhe";
|
||||||
"isolines_toast_zooms_1_10" = "Karte vergrößern, um Höhelinien sichtbar zu machen";
|
"isolines_toast_zooms_1_10" = "Karte vergrößern, um Höhelinien sichtbar zu machen";
|
||||||
"downloader_updating_ios" = "Aktualisierung";
|
"downloader_updating_ios" = "Aktualisierung";
|
||||||
"downloader_loading_ios" = "Wird heruntergeladen";
|
"downloader_loading_ios" = "Herunterladen";
|
||||||
|
|
||||||
/* Autoupdate dialog on start */
|
/* Autoupdate dialog on start */
|
||||||
"whats_new_auto_update_title" = "Aktualisieren Sie Ihre heruntergeladenen Karten";
|
"whats_new_auto_update_title" = "Aktualisieren Sie Ihre heruntergeladenen Karten";
|
||||||
@@ -1100,7 +1100,7 @@
|
|||||||
"existence_confirmed_time_ago" = "Existenz bestätigt %@";
|
"existence_confirmed_time_ago" = "Existenz bestätigt %@";
|
||||||
"hours_confirmed_time_ago" = "Bestätigt %@";
|
"hours_confirmed_time_ago" = "Bestätigt %@";
|
||||||
"offline_explanation_title" = "Offline-Karten";
|
"offline_explanation_title" = "Offline-Karten";
|
||||||
"offline_explanation_text" = "Um die Gegend anzusehen und zu erkunden, musst du eine Karte runterladen.\nLade dir Karten für die Gebiete runter, die du bereisen willst.";
|
"offline_explanation_text" = "Um die Gegend anzusehen, muss eine Karte heruntergeladen werden.\nLaden Sie Karten für die Gebiete herunter, die Sie bereisen möchten.";
|
||||||
"editor_place_doesnt_exist_description" = "Beschreibe wie der Ort jetzt aussieht um eine Fehlermeldung an die OpenStreetMap Community zu senden";
|
"editor_place_doesnt_exist_description" = "Beschreibe wie der Ort jetzt aussieht um eine Fehlermeldung an die OpenStreetMap Community zu senden";
|
||||||
"voice" = "Stimme";
|
"voice" = "Stimme";
|
||||||
"unknown" = "Unbekannt";
|
"unknown" = "Unbekannt";
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
<key>NSStringFormatValueTypeKey</key>
|
<key>NSStringFormatValueTypeKey</key>
|
||||||
<string>d</string>
|
<string>d</string>
|
||||||
<key>zero</key>
|
<key>zero</key>
|
||||||
<string>Keine Datei wurde gefunden. Du kannst sie nach der Konvertierung sehen.</string>
|
<string>%d Datei wurde gefunden. Sie können sie nach der Konvertierung sehen.</string>
|
||||||
<key>one</key>
|
<key>one</key>
|
||||||
<string>%d Datei wurde gefunden. Du kannst sie nach der Konvertierung sehen.</string>
|
<string>%d Datei wurde gefunden. Du kannst sie nach der Konvertierung sehen.</string>
|
||||||
<key>other</key>
|
<key>other</key>
|
||||||
|
|||||||
@@ -397,9 +397,9 @@
|
|||||||
"type.spherical_buoy.special_purpose" = "Kugelförmige Spezialboje";
|
"type.spherical_buoy.special_purpose" = "Kugelförmige Spezialboje";
|
||||||
"type.lateral.port" = "Backbord";
|
"type.lateral.port" = "Backbord";
|
||||||
"type.lateral.starboard" = "Steuerbord";
|
"type.lateral.starboard" = "Steuerbord";
|
||||||
"type.cardinal.east" = "Osten";
|
"type.cardinal.east" = "Ost";
|
||||||
"type.cardinal.north" = "Norden";
|
"type.cardinal.north" = "Nord";
|
||||||
"type.cardinal.south" = "Süden";
|
"type.cardinal.south" = "Süd";
|
||||||
"type.cardinal.west" = "Westen";
|
"type.cardinal.west" = "Westen";
|
||||||
|
|
||||||
/* A mountain rescue base for search and rescue activities. */
|
/* A mountain rescue base for search and rescue activities. */
|
||||||
|
|||||||
@@ -2,7 +2,12 @@
|
|||||||
"type.addr_interpolation.even" = "Adresas / blokas";
|
"type.addr_interpolation.even" = "Adresas / blokas";
|
||||||
"type.addr_interpolation.odd" = "Adresas / blokas";
|
"type.addr_interpolation.odd" = "Adresas / blokas";
|
||||||
"type.aerialway" = "Oro keltuvas";
|
"type.aerialway" = "Oro keltuvas";
|
||||||
|
"type.aerialway.cable_car" = "Cable Car";
|
||||||
|
"type.aerialway.chair_lift" = "Chair Lift";
|
||||||
|
"type.aerialway.drag_lift" = "Drag Lift";
|
||||||
"type.aerialway.gondola" = "Gondola";
|
"type.aerialway.gondola" = "Gondola";
|
||||||
|
"type.aerialway.mixed_lift" = "Mixed Lift";
|
||||||
|
"type.aerialway.station" = "Aerialway Station";
|
||||||
"type.aeroway" = "Oro transporto infrastruktūra";
|
"type.aeroway" = "Oro transporto infrastruktūra";
|
||||||
"type.aeroway.aerodrome" = "Oro uostas";
|
"type.aeroway.aerodrome" = "Oro uostas";
|
||||||
"type.aeroway.aerodrome.international" = "Tarptautinis oro uostas";
|
"type.aeroway.aerodrome.international" = "Tarptautinis oro uostas";
|
||||||
@@ -75,6 +80,7 @@
|
|||||||
"type.amenity.internet_cafe" = "Interneto kavinė";
|
"type.amenity.internet_cafe" = "Interneto kavinė";
|
||||||
"type.amenity.kindergarten" = "Vaikų darželis";
|
"type.amenity.kindergarten" = "Vaikų darželis";
|
||||||
"type.amenity.library" = "Biblioteka";
|
"type.amenity.library" = "Biblioteka";
|
||||||
|
"type.amenity.loading_dock" = "Loading Dock";
|
||||||
"type.amenity.marketplace" = "Turgavietė";
|
"type.amenity.marketplace" = "Turgavietė";
|
||||||
"type.amenity.motorcycle_parking" = "Motociklų stovėjimo aikštelė";
|
"type.amenity.motorcycle_parking" = "Motociklų stovėjimo aikštelė";
|
||||||
"type.amenity.nightclub" = "Naktinis klubas";
|
"type.amenity.nightclub" = "Naktinis klubas";
|
||||||
@@ -348,6 +354,7 @@
|
|||||||
"type.cuisine.vegan" = "Veganiška virtuvė";
|
"type.cuisine.vegan" = "Veganiška virtuvė";
|
||||||
"type.cuisine.vegetarian" = "Vegetariška virtuvė";
|
"type.cuisine.vegetarian" = "Vegetariška virtuvė";
|
||||||
"type.cuisine.vietnamese" = "Vietnamiečių virtuvė";
|
"type.cuisine.vietnamese" = "Vietnamiečių virtuvė";
|
||||||
|
"type.emergency" = "Emergency";
|
||||||
"type.emergency.assembly_point" = "Evakuacijos susirinkimo vieta";
|
"type.emergency.assembly_point" = "Evakuacijos susirinkimo vieta";
|
||||||
"type.emergency.defibrillator" = "Defibriliatorius";
|
"type.emergency.defibrillator" = "Defibriliatorius";
|
||||||
"type.emergency.fire_hydrant" = "Gaisrinis hidrantas";
|
"type.emergency.fire_hydrant" = "Gaisrinis hidrantas";
|
||||||
@@ -543,9 +550,13 @@
|
|||||||
|
|
||||||
/* These translations are used for all type.highway.*.tunnel. */
|
/* These translations are used for all type.highway.*.tunnel. */
|
||||||
"type.highway.tertiary_link.tunnel" = "Tunelis";
|
"type.highway.tertiary_link.tunnel" = "Tunelis";
|
||||||
|
"type.highway.track" = "Track";
|
||||||
|
"type.highway.track.area" = "Track";
|
||||||
|
|
||||||
/* These translations are used for all type.highway.*.bridge. */
|
/* These translations are used for all type.highway.*.bridge. */
|
||||||
"type.highway.track.bridge" = "Tiltas";
|
"type.highway.track.bridge" = "Tiltas";
|
||||||
|
"type.highway.track.grade1" = "Track";
|
||||||
|
"type.highway.track.no.access" = "Track";
|
||||||
|
|
||||||
/* These translations are used for all type.highway.*.tunnel. */
|
/* These translations are used for all type.highway.*.tunnel. */
|
||||||
"type.highway.track.tunnel" = "Tunelis";
|
"type.highway.track.tunnel" = "Tunelis";
|
||||||
@@ -584,11 +595,13 @@
|
|||||||
"type.area_highway.service" = "Privažiuojamasis kelias";
|
"type.area_highway.service" = "Privažiuojamasis kelias";
|
||||||
"type.area_highway.tertiary" = "Tretinės svarbos kelias";
|
"type.area_highway.tertiary" = "Tretinės svarbos kelias";
|
||||||
"type.area_highway.steps" = "Laiptai";
|
"type.area_highway.steps" = "Laiptai";
|
||||||
|
"type.area_highway.track" = "Track";
|
||||||
"type.area_highway.trunk" = "Magistralinis kelias";
|
"type.area_highway.trunk" = "Magistralinis kelias";
|
||||||
"type.area_highway.unclassified" = "Vietinės reikšmės kelias";
|
"type.area_highway.unclassified" = "Vietinės reikšmės kelias";
|
||||||
"type.historic" = "Senovinis / istorinis objektas";
|
"type.historic" = "Senovinis / istorinis objektas";
|
||||||
"type.historic.aircraft" = "Senovinis orlaivis";
|
"type.historic.aircraft" = "Senovinis orlaivis";
|
||||||
"type.historic.anchor" = "Senovinis inkaras";
|
"type.historic.anchor" = "Senovinis inkaras";
|
||||||
|
"type.historic.archaeological_site" = "Archaeological Site";
|
||||||
"type.historic.battlefield" = "Istorinio mūšio laukas";
|
"type.historic.battlefield" = "Istorinio mūšio laukas";
|
||||||
"type.historic.boundary_stone" = "Senovinis riboženklis";
|
"type.historic.boundary_stone" = "Senovinis riboženklis";
|
||||||
"type.historic.cannon" = "Patranka";
|
"type.historic.cannon" = "Patranka";
|
||||||
@@ -702,7 +715,7 @@
|
|||||||
"type.leisure.sauna" = "Sauna";
|
"type.leisure.sauna" = "Sauna";
|
||||||
"type.leisure.slipway" = "Slipas";
|
"type.leisure.slipway" = "Slipas";
|
||||||
"type.leisure.sports_centre" = "Sporto centras";
|
"type.leisure.sports_centre" = "Sporto centras";
|
||||||
"type.sport.climbing" = "Laipiojimo centras";
|
"type.sport.climbing" = "Alpinizmo centras";
|
||||||
"type.sport.yoga" = "Joga";
|
"type.sport.yoga" = "Joga";
|
||||||
"type.leisure.stadium" = "Stadionas";
|
"type.leisure.stadium" = "Stadionas";
|
||||||
"type.leisure.swimming_pool" = "Plaukimo baseinas";
|
"type.leisure.swimming_pool" = "Plaukimo baseinas";
|
||||||
@@ -1405,6 +1418,13 @@
|
|||||||
"type.wheelchair.limited" = "Ribota prieiga neįgaliojo vežimėliu";
|
"type.wheelchair.limited" = "Ribota prieiga neįgaliojo vežimėliu";
|
||||||
"type.wheelchair.no" = "Prieigos neįgaliojo vežimėliu nėra";
|
"type.wheelchair.no" = "Prieigos neįgaliojo vežimėliu nėra";
|
||||||
"type.wheelchair.yes" = "Visapusė prieiga neįgaliojo vežimėliu";
|
"type.wheelchair.yes" = "Visapusė prieiga neįgaliojo vežimėliu";
|
||||||
|
"type.aerialway.j.bar" = "J-bar Lift";
|
||||||
|
"type.aerialway.magic_carpet" = "Magic Carpet";
|
||||||
|
"type.aerialway.platter" = "Platter Lift";
|
||||||
|
"type.aerialway.rope_tow" = "Rope Tow";
|
||||||
|
"type.aerialway.t.bar" = "T-bar Lift";
|
||||||
|
"type.piste_type.downhill" = "Downhill Ski Run";
|
||||||
|
"type.piste_type.downhill.area" = "Downhill Ski Run";
|
||||||
"type.piste_type.downhill.advanced" = "Downhill Ski Run";
|
"type.piste_type.downhill.advanced" = "Downhill Ski Run";
|
||||||
"type.piste_type.downhill.advanced.area" = "Downhill Ski Run";
|
"type.piste_type.downhill.advanced.area" = "Downhill Ski Run";
|
||||||
"type.piste_type.downhill.easy" = "Downhill Ski Run";
|
"type.piste_type.downhill.easy" = "Downhill Ski Run";
|
||||||
@@ -1416,6 +1436,9 @@
|
|||||||
"type.piste_type.downhill.intermediate.area" = "Downhill Ski Run";
|
"type.piste_type.downhill.intermediate.area" = "Downhill Ski Run";
|
||||||
"type.piste_type.downhill.novice" = "Downhill Ski Run";
|
"type.piste_type.downhill.novice" = "Downhill Ski Run";
|
||||||
"type.piste_type.downhill.novice.area" = "Downhill Ski Run";
|
"type.piste_type.downhill.novice.area" = "Downhill Ski Run";
|
||||||
|
"type.piste_type.nordic" = "Nordic Ski Trail";
|
||||||
|
"type.piste_type.sled" = "Sledding Piste";
|
||||||
|
"type.piste_type.sled.area" = "Sledding Piste";
|
||||||
"type.piste_type.snow_park" = "Sniego parkas";
|
"type.piste_type.snow_park" = "Sniego parkas";
|
||||||
"type.piste_type.hike" = "Sniego pėsčiųjų takas";
|
"type.piste_type.hike" = "Sniego pėsčiųjų takas";
|
||||||
"type.piste_type.connection" = "\"Piste Connection";
|
"type.piste_type.connection" = "\"Piste Connection";
|
||||||
@@ -1459,6 +1482,7 @@
|
|||||||
"type.amenity.luggage_locker" = "Bagažo pasaugojimo automatas";
|
"type.amenity.luggage_locker" = "Bagažo pasaugojimo automatas";
|
||||||
"type.amenity.ranger_station" = "Parko lankytojų centras";
|
"type.amenity.ranger_station" = "Parko lankytojų centras";
|
||||||
"type.amenity.bicycle_parking.covered" = "Dengta dviračių stovėjimo aikštelė";
|
"type.amenity.bicycle_parking.covered" = "Dengta dviračių stovėjimo aikštelė";
|
||||||
|
"type.post_office.post_partner" = "Post Partner";
|
||||||
"type.barrier.wicket_gate" = "Varteliai";
|
"type.barrier.wicket_gate" = "Varteliai";
|
||||||
"type.amenity.animal_shelter" = "Gyvūnų prieglauda";
|
"type.amenity.animal_shelter" = "Gyvūnų prieglauda";
|
||||||
"type.office.security" = "Saugos tarnyba";
|
"type.office.security" = "Saugos tarnyba";
|
||||||
|
|||||||
@@ -957,7 +957,7 @@
|
|||||||
"app_tip_01" = "Med dine donasjoner og støtte kan vi lage de beste kartene i verden!";
|
"app_tip_01" = "Med dine donasjoner og støtte kan vi lage de beste kartene i verden!";
|
||||||
|
|
||||||
/* App tip #02 */
|
/* App tip #02 */
|
||||||
"app_tip_02" = "Liker du appen vår? Vennligst doner for å støtte utviklingen! Liker du den ikke ennå? La oss få vite hvorfor, så fikser vi det!";
|
"app_tip_02" = "Liker du appen vår? Vennligst doner for å støtte utviklingen! Liker du det ikke ennå? Gi oss beskjed, så fikser vi det!";
|
||||||
|
|
||||||
/* App tip #03 */
|
/* App tip #03 */
|
||||||
"app_tip_03" = "Hvis du kjenner en programvareutvikler, kan du be ham eller henne implementere en funksjon du trenger.";
|
"app_tip_03" = "Hvis du kjenner en programvareutvikler, kan du be ham eller henne implementere en funksjon du trenger.";
|
||||||
@@ -978,7 +978,7 @@
|
|||||||
"app_tip_08" = "Du kan enkelt fikse og forbedre kartdataene.";
|
"app_tip_08" = "Du kan enkelt fikse og forbedre kartdataene.";
|
||||||
|
|
||||||
/* App tip #09 */
|
/* App tip #09 */
|
||||||
"app_tip_09" = "Vårt hovedmål er å lage raske, personvernfokuserte, brukervennlige kart som du vil like.";
|
"app_tip_09" = "Vårt hovedmål er å bygge raske, personvernfokuserte, brukervennlige kart som du vil elske.";
|
||||||
|
|
||||||
/* Text on the Android Auto or CarPlay placeholder screen that maps are displayed on the phone screen */
|
/* Text on the Android Auto or CarPlay placeholder screen that maps are displayed on the phone screen */
|
||||||
"car_used_on_the_phone_screen" = "Du bruker nå CoMaps på telefonskjermen";
|
"car_used_on_the_phone_screen" = "Du bruker nå CoMaps på telefonskjermen";
|
||||||
|
|||||||
Reference in New Issue
Block a user