Compare commits

..

2 Commits

Author SHA1 Message Date
x7z4w
7bd0b414cd [search] Add more synonyms
Co-Authored-By: Matheus Gomes <matheus.gomes03@hotmail.com>
Co-Authored-By: Omar Hassan <omarhassan@noreply.codeberg.org>
Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
2025-08-03 10:43:07 +01:00
x7z4w
1ac344d926 [strings] Remove internal types
Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
2025-08-03 10:42:34 +01:00
405 changed files with 855994 additions and 5400 deletions

View File

@@ -32,12 +32,13 @@ on:
- track_generator/**
- xcode/**
env:
JAVA_HOME: /usr/lib/jvm/temurin-17-jdk-amd64 # Java 17 is required for Android Gradle 8 plugin
jobs:
android-google-beta:
name: Android Google Beta
runs-on: ubuntu-latest
container:
image: runmymind/docker-android-sdk:latest
environment: beta
steps:
- name: Install build tools and dependencies

View File

@@ -11,7 +11,7 @@ on:
jobs:
android-check-metadata:
name: Check app metadata
runs-on: codeberg-tiny
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

View File

@@ -34,12 +34,13 @@ on:
- track_generator/**
- xcode/**
env:
JAVA_HOME: /usr/lib/jvm/temurin-17-jdk-amd64 # Java 17 is required for Android Gradle 8 plugin
jobs:
lint:
name: Android Lint
runs-on: codeberg-tiny
container:
image: runmymind/docker-android-sdk:latest
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
@@ -58,8 +59,6 @@ jobs:
android-check:
name: Build Android Debug
runs-on: ubuntu-latest
container:
image: runmymind/docker-android-sdk:latest
strategy:
fail-fast: false
matrix:

View File

@@ -4,9 +4,12 @@ on:
schedule:
- cron: '0 5 * * 0' # Once per week at 05:00 UTC
env:
JAVA_HOME: /usr/lib/jvm/temurin-17-jdk-amd64 # Java 17 is required for Android Gradle 8 plugin
jobs:
precondition:
runs-on: codeberg-tiny
runs-on: ubuntu-latest
name: Check preconditions
steps:
- name: Checkout sources
@@ -31,8 +34,6 @@ jobs:
android-google-beta:
name: Android Google Beta
runs-on: ubuntu-latest
container:
image: runmymind/docker-android-sdk:latest
needs: precondition
if: ${{ needs.precondition.outputs.updated != '' }}
environment: beta

View File

@@ -2,12 +2,13 @@ name: Android Release Metadata
on:
workflow_dispatch: # Manual trigger
env:
JAVA_HOME: /usr/lib/jvm/temurin-17-jdk-amd64 # Java 17 is required for Android Gradle 8 plugin
jobs:
android-release-metadata:
name: Upload Google Play metadata
runs-on: codeberg-tiny
container:
image: runmymind/docker-android-sdk:latest
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout sources

View File

@@ -5,13 +5,12 @@ on:
env:
RELEASE_NOTES: android/app/src/google/play/release-notes/en-US/default.txt
FDROID_VERSION: android/app/src/fdroid/play/version.yaml
JAVA_HOME: /usr/lib/jvm/temurin-17-jdk-amd64 # Java 17 is required for Android Gradle 8 plugin
jobs:
tag:
name: Tag
runs-on: ubuntu-latest
container:
image: runmymind/docker-android-sdk:latest
environment: production
steps:
- name: Checkout sources

View File

@@ -3,20 +3,20 @@ on:
workflow_dispatch: # Manual trigger
pull_request:
paths:
- packaging/app.comaps.comaps.metainfo.xml
- .forgejo/workflows/appstream-check.yaml # Run check on self change
- packaging/app.organicmaps.desktop.metainfo.xml
- .forgejo/workflows/appstream-check.yaml # Run check on self change
jobs:
validate-appstream:
name: Validate appstream metadata xml
runs-on: codeberg-tiny
runs-on: ubuntu-24.04
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
fetch-depth: 1
sparse-checkout: |
packaging/app.comaps.comaps.metainfo.xml
packaging/app.organicmaps.desktop.metainfo.xml
- name: Install appstream validator and flatpak Builder
shell: bash
@@ -29,8 +29,8 @@ jobs:
- name: Lint appstream data with flatpak Builder
shell: bash
run: flatpak run --command=flatpak-builder-lint org.flatpak.Builder appstream packaging/app.comaps.comaps.metainfo.xml
run: flatpak run --command=flatpak-builder-lint org.flatpak.Builder appstream packaging/app.organicmaps.desktop.metainfo.xml
- name: Run appstreamcli in pedantic mode
shell: bash
run: flatpak run --command=appstreamcli org.flatpak.Builder validate --pedantic packaging/app.comaps.comaps.metainfo.xml
run: flatpak run --command=appstreamcli org.flatpak.Builder validate --pedantic packaging/app.organicmaps.desktop.metainfo.xml

View File

@@ -33,7 +33,7 @@ concurrency:
jobs:
should-run-check:
name: Should run coverage
runs-on: codeberg-tiny
runs-on: ubuntu-24.04
outputs:
run-from-pr: ${{ steps.run-from-pr.outputs.run-from-pr }}
manually-triggered: ${{ steps.manually-triggered.outputs.manually-triggered }}
@@ -59,9 +59,14 @@ jobs:
coverage:
needs: should-run-check
name: Generate coverage report
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: ${{ needs.should-run-check.outputs.run-from-pr == 'true' || needs.should-run-check.outputs.manually-triggered == 'true'}}
steps:
- name: Free disk space by removing .NET, Android and Haskell
shell: bash
run: |
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc
- name: Checkout sources
uses: actions/checkout@v4
with:

View File

@@ -3,20 +3,20 @@ on:
workflow_dispatch: # Manual trigger
pull_request:
paths:
- qt/res/app.comaps.comaps.desktop
- .forgejo/workflows/desktop-file-check.yaml # Run check on self change
- qt/res/app.organicmaps.desktop.desktop
- .forgejo/workflows/desktop-file-check.yaml # Run check on self change
jobs:
validate-desktop-file:
name: Validate .desktop file
runs-on: codeberg-tiny
runs-on: ubuntu-24.04
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
fetch-depth: 1
sparse-checkout: |
qt/res/app.comaps.comaps.desktop
qt/res/app.organicmaps.desktop.desktop
- name: Install desktop-file-validate tool
shell: bash
@@ -27,4 +27,4 @@ jobs:
- name: Validate desktop file
shell: bash
run: desktop-file-validate qt/res/app.comaps.comaps.desktop && echo "Successfully validated .desktop file"
run: desktop-file-validate qt/res/app.organicmaps.desktop.desktop && echo "Successfully validated .desktop file"

View File

@@ -66,10 +66,6 @@ jobs:
CERTIFICATES_DEV_P12: ${{ secrets.CERTIFICATES_DEV_P12 }}
CERTIFICATES_DISTR_P12: ${{ secrets.CERTIFICATES_DISTR_P12 }}
- name: Configure repository
shell: bash
run: ./configure.sh
- name: Compile and upload to TestFlight
run: |
echo "IOS_VERSION=$(../tools/unix/version.sh ios_version)-$(../tools/unix/version.sh ios_build)" >> "$GITHUB_ENV"

View File

@@ -10,7 +10,7 @@ on:
jobs:
ios-check-metadata:
name: Check app metadata
runs-on: codeberg-tiny
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

View File

@@ -59,10 +59,6 @@ jobs:
shell: bash
run: git submodule update --depth 1 --init --recursive --jobs=$(($(sysctl -n hw.logicalcpu) * 20))
- name: Configure repository
shell: bash
run: ./configure.sh
- name: Configure XCode cache
uses: irgaly/xcode-cache@v1
with:

View File

@@ -31,13 +31,18 @@ on:
jobs:
linux-no-unity:
name: Linux no unity build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
# Cancels previous jobs if the same branch or PR was updated again.
concurrency:
group: ${{ github.workflow }}-no-unity-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
steps:
- name: Free disk space by removing .NET, Android and Haskell
shell: bash
run: |
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc
- name: Checkout sources
uses: actions/checkout@v4
with:
@@ -90,7 +95,7 @@ jobs:
linux-matrix:
name: Linux builds and tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
@@ -102,6 +107,11 @@ jobs:
cancel-in-progress: true
steps:
- name: Free disk space by removing .NET, Android and Haskell
shell: bash
run: |
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc
- name: Checkout sources
uses: actions/checkout@v4

View File

@@ -37,10 +37,6 @@ jobs:
shell: bash
run: git submodule update --depth 1 --init --recursive --jobs=$(($(sysctl -n hw.logicalcpu) * 20))
- name: Configure repository
shell: bash
run: ./configure.sh
- name: Configure XCode cache
uses: irgaly/xcode-cache@v1
with:

17
.gitignore vendored
View File

@@ -14,10 +14,12 @@ stxxl.errlog
stxxl.log
screenlog.0
data/symbols/*/design/
data/styles/*/*/out/*
data/resources-*_design/*
# symbols png/sdf are now generated at build
data/symbols/**/symbols.png
data/symbols/**/symbols.sdf
data/resources-*_*/symbols.png
data/resources-*_*/symbols.sdf
data/drules_proto_default_design.bin
data/colors_design.txt
data/patterns_design.txt
data/bookmarks
@@ -26,12 +28,6 @@ data/World.mwm
data/WorldCoasts.mwm
data/world_mwm/*
data/*_hash
data/drules_proto*
data/classificator.txt
data/types.txt
data/visibility.txt
data/colors.txt
data/patterns.txt
# Compiled Python
*.pyc
@@ -52,7 +48,8 @@ omim.sdf
*.rc
!qt/res/windows.rc
*.pdb
out/
out/*
qt/mapswithme.log
# XCode
xcode/keys/*

View File

@@ -1 +1 @@
See [docs/INSTALL.md](docs/INSTALL.md)
See [docs/INSTALL.md](docs/INSTALL.md)

View File

@@ -125,8 +125,10 @@ You can help by donating, contributing code, translating, or by telling others a
- Build instructions: [docs/INSTALL.md](docs/INSTALL.md)
- Contribution guide: [docs/CONTRIBUTING.md](docs/CONTRIBUTING.md)
> [!NOTE]
> Some docs might be outdated, contain broken links or old references to Organic Maps, etc. Its a work in progress and help is much appreciated!
There is a dedicated [Zulip](https://codeberg.org/comaps/Governance/src/branch/main/contribute.md#3-team-messaging) chat for active contributors.
There is a dedicated Zulip chat for active contributors: [Zulip](https://comaps.zulipchat.com)
---

View File

@@ -1 +1 @@
Navigation cartographique facile - Vivez de grands voyages - Propulsé par la communauté
Navigation cartographique facile - Découvrez davantage de votre voyage - Propulsé par la communauté

View File

@@ -1 +0,0 @@
Navegação fácil nos mapas - Descubra mais sobre o seu percurso - Feito por todos

View File

@@ -1 +0,0 @@
CoMaps - Mapas e Navegação - Offline e Privada

View File

@@ -1 +1 @@
Navigation cartographique facile - Vivez de grands voyages - Propulsé par la communauté
Navigation cartographique facile - Découvrez davantage de votre voyage - Propulsé par la communauté

View File

@@ -1 +0,0 @@
കോമാപ്പ്സ് - സ്വകാര്യതയോടെ സഞ്ചരിക്കൂ

View File

@@ -1 +0,0 @@
CoMaps - Nawigacja szanująca prywatność

View File

@@ -7,12 +7,12 @@ Topluluğa katılın ve en iyi harita uygulamasını oluşturmamıza yardım edi
<i>Geri bildirimleriniz ve 5 yıldızlı yorumlarınız bizim için en iyi destektir!</i>
‣ <b>Basit ve Temiz</b>: Sadece temel, kullanımı basit ve işe yarayan özellikler.
‣ <b>Çevrimdışı Odaklı</b>: Mobil veriye ihtiyaç duymadan yurt dışı seyahatinizi planlayın ve gezin, uzun bir yürüyüş sırasında rotanızdaki noktaları bulun ve daha fazlası. Tüm özellikler çevrimdışı çalışmak üzere tasarlanmıştır.
‣ <b>Basit ve Temiz</b>: Sadece temel, kullanımı basit, işe yarayan özellikler.
‣ <b>Çevrimdışı Odaklı</b>: Mobil veriye ihtiyaç duymadan yurt dışı seyahatinizi planlayın ve gezin, uzun bir yürüyüş sırasında rotanızdaki noktaları bulun ve daha fazlası . Tüm özellikler çevrimdışı çalışmak üzere tasarlanmıştır.
‣ <b>Gizliliğe Saygılı</b>: Uygulama gizliliğe saygılı olarak tasarlanmıştır. Kullanıcı profilinizi çıkarmaz, sizi takip etmez ve kişisel bilgi toplamaz. Üstelik tamamen reklamsızdır.
‣ <b>Pil ve Depolamanızdan Tasarruf Eder</b>: Diğer navigasyon uygulamaları gibi pilinizi sömürmez. Kompakt harita dosyaları, değerli depolama alanınızdan tasarruf eder.
‣ <b>Ücretsizdir ve Gücünü Topluluktan Alır</b>: Sizin gibi insanlar OpenStreetMap'e yer ekleyerek, yeni özellikleri test ederek, geri bildirimde bulunarak, program geliştirme becerileri ve bağışlarla katkıda bulunarak bu uygulamanın oluşturulmasına yardımcı oldular.
‣ <b>Açık ve Şeffaf Bir Şekilde Yürütülen Karar Alma ve Fonlama Süreçlerine Sahip, Kâr Amacı Gütmeyen ve Tamamen Açık Kaynaklı Bir Uygulama.</b>
‣ <b>Pil ve Depolamanızdan Tasarruf Eder</b>: Diğer navigasyon uygulamaları gibi pilinizi sömürmez. Compact maps değerli depolama alanınızdan tasarruf eder.
‣ <b>Ücretsizdir ve Gücünü Topluluktan Alır</b>: Sizin gibi insanlar OpenStreetMap'e yer ekleyerek, yeni özellikleri test ederek, geri bildirimde bulunarak, program geliştirme becerileri ve bağışlarla katkıda bulunarak uygulamanın oluşturulmasına yardımcı oldu.
‣ <b>Açık ve Şeffaf Şekilde Yürütülen Karar Alma ve Fonlama Süreçleri, Kâr Amacı Gütmez ve Tamamen Açık Kaynaklı.</b>
<b>Ana Özellikler</b>:
• Google Haritalar'da bulunmayan yerleri içeren, çevrimdışı detaylı haritalar

View File

@@ -9,6 +9,7 @@ import android.view.View;
import android.view.ViewGroup;
import android.widget.ExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AlertDialog;
import app.organicmaps.R;
@@ -18,7 +19,6 @@ import app.organicmaps.sdk.downloader.CountryItem;
import app.organicmaps.sdk.util.StringUtils;
import app.organicmaps.sdk.util.UiUtils;
import com.google.android.material.dialog.MaterialAlertDialogBuilder;
import com.google.android.material.textview.MaterialTextView;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -93,9 +93,9 @@ abstract class BaseRoutingErrorDialogFragment extends BaseMwmDialogFragment
{
@SuppressLint("InflateParams")
final View countryView = View.inflate(requireActivity(), R.layout.dialog_missed_map, null);
((MaterialTextView) countryView.findViewById(R.id.tv__title)).setText(map.name);
((TextView) countryView.findViewById(R.id.tv__title)).setText(map.name);
final MaterialTextView szView = countryView.findViewById(R.id.tv__size);
final TextView szView = countryView.findViewById(R.id.tv__size);
szView.setText(StringUtils.getFileSizeString(requireContext(), map.totalSize));
ViewGroup.MarginLayoutParams lp = (ViewGroup.MarginLayoutParams) szView.getLayoutParams();
lp.rightMargin = 0;

View File

@@ -8,11 +8,11 @@ import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.appcompat.content.res.AppCompatResources;
import androidx.recyclerview.widget.RecyclerView;
import com.google.android.material.imageview.ShapeableImageView;
import com.google.android.material.textview.MaterialTextView;
import app.organicmaps.R;
import app.organicmaps.sdk.bookmarks.data.MapObject;
import app.organicmaps.sdk.routing.RouteMarkData;
@@ -232,16 +232,16 @@ public class ManageRouteAdapter extends RecyclerView.Adapter<ManageRouteAdapter.
public final View mItemView;
@NonNull
public final ShapeableImageView mImageViewIcon;
public final ImageView mImageViewIcon;
@NonNull
public final MaterialTextView mTextViewTitle;
public final TextView mTextViewTitle;
@NonNull
public final MaterialTextView mTextViewSubtitle;
public final TextView mTextViewSubtitle;
@NonNull
public final ShapeableImageView mImageViewDelete;
public final ImageView mImageViewDelete;
ManageRouteViewHolder(@NonNull View itemView)
{

View File

@@ -4,6 +4,7 @@ import android.location.Location;
import android.text.TextUtils;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
@@ -27,22 +28,20 @@ import app.organicmaps.widget.LanesView;
import app.organicmaps.widget.SpeedLimitView;
import app.organicmaps.widget.menu.NavMenu;
import com.google.android.material.bottomsheet.BottomSheetBehavior;
import com.google.android.material.imageview.ShapeableImageView;
import com.google.android.material.textview.MaterialTextView;
public class NavigationController implements TrafficManager.TrafficCallback, NavMenu.NavMenuListener
{
private final View mFrame;
private final ImageView mNextTurnImage;
private final MaterialTextView mNextTurnDistance;
private final MaterialTextView mCircleExit;
private final TextView mNextTurnDistance;
private final TextView mCircleExit;
private final View mNextNextTurnFrame;
private final ImageView mNextNextTurnImage;
private final View mStreetFrame;
private final MaterialTextView mNextStreet;
private final TextView mNextStreet;
@NonNull
private final LanesView mLanesView;

View File

@@ -60,7 +60,7 @@ final class RoutingBottomMenuController implements View.OnClickListener
@NonNull
private final View mTransitFrame;
@NonNull
private final MaterialTextView mError;
private final TextView mError;
@NonNull
private final Button mStart;
@NonNull
@@ -94,7 +94,7 @@ final class RoutingBottomMenuController implements View.OnClickListener
View altitudeChartFrame = getViewById(activity, frame, R.id.altitude_chart_panel);
View timeElevationLine = getViewById(activity, frame, R.id.time_elevation_line);
View transitFrame = getViewById(activity, frame, R.id.transit_panel);
MaterialTextView error = (MaterialTextView) getViewById(activity, frame, R.id.error);
TextView error = (TextView) getViewById(activity, frame, R.id.error);
Button start = (Button) getViewById(activity, frame, R.id.start);
ImageView altitudeChart = (ImageView) getViewById(activity, frame, R.id.altitude_chart);
MaterialTextView time = (MaterialTextView) getViewById(activity, frame, R.id.time);
@@ -117,7 +117,7 @@ final class RoutingBottomMenuController implements View.OnClickListener
private RoutingBottomMenuController(@NonNull Activity context, @NonNull View altitudeChartFrame,
@NonNull View timeElevationLine, @NonNull View transitFrame,
@NonNull MaterialTextView error, @NonNull Button start, @NonNull ImageView altitudeChart,
@NonNull TextView error, @NonNull Button start, @NonNull ImageView altitudeChart,
@NonNull MaterialTextView time, @NonNull MaterialTextView altitudeDifference,
@NonNull TextView timeVehicle, @Nullable MaterialTextView arrival,
@NonNull View actionFrame, @Nullable RoutingBottomMenuListener listener)
@@ -223,7 +223,7 @@ final class RoutingBottomMenuController implements View.OnClickListener
else
UiUtils.hide(rv); // Show only distance between start and finish
MaterialTextView totalTimeView = mTransitFrame.findViewById(R.id.total_time);
TextView totalTimeView = mTransitFrame.findViewById(R.id.total_time);
totalTimeView.setText(mContext.getString(R.string.placepage_distance) + ": " + totalLength.mDistanceStr + " "
+ totalLength.getUnitsStr(mContext));

View File

@@ -8,12 +8,12 @@ import android.text.TextUtils;
import android.util.Pair;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AlertDialog;
import androidx.fragment.app.FragmentFactory;
import androidx.fragment.app.FragmentManager;
import com.google.android.material.textview.MaterialTextView;
import app.organicmaps.R;
import app.organicmaps.sdk.downloader.CountryItem;
import app.organicmaps.sdk.downloader.MapManager;
@@ -38,7 +38,7 @@ public class RoutingErrorDialogFragment extends BaseRoutingErrorDialogFragment
if (!TextUtils.isEmpty(titleMessage.first))
{
MaterialTextView titleView = new MaterialTextView(requireContext());
TextView titleView = new TextView(requireContext());
titleView.setText(titleMessage.first);
titleView.setPadding(65, 32, 32, 16);
titleView.setTextSize(18);

View File

@@ -5,6 +5,7 @@ import android.util.Pair;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.content.ContextCompat;
@@ -18,7 +19,6 @@ import app.organicmaps.util.Graphics;
import app.organicmaps.util.ThemeUtils;
import com.google.android.material.bottomsheet.BottomSheetBehavior;
import com.google.android.material.progressindicator.LinearProgressIndicator;
import com.google.android.material.textview.MaterialTextView;
import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
import java.util.concurrent.TimeUnit;
@@ -31,15 +31,15 @@ public class NavMenu
private final ImageView mTts;
private final View mSpeedViewContainer;
private final MaterialTextView mSpeedValue;
private final MaterialTextView mSpeedUnits;
private final MaterialTextView mTimeHourValue;
private final MaterialTextView mTimeHourUnits;
private final MaterialTextView mTimeMinuteValue;
private final MaterialTextView mTimeMinuteUnits;
private final MaterialTextView mTimeEstimate;
private final MaterialTextView mDistanceValue;
private final MaterialTextView mDistanceUnits;
private final TextView mSpeedValue;
private final TextView mSpeedUnits;
private final TextView mTimeHourValue;
private final TextView mTimeHourUnits;
private final TextView mTimeMinuteValue;
private final TextView mTimeMinuteUnits;
private final TextView mTimeEstimate;
private final TextView mDistanceValue;
private final TextView mDistanceUnits;
private final LinearProgressIndicator mRouteProgress;
private final AppCompatActivity mActivity;

View File

@@ -5,6 +5,7 @@ import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import app.organicmaps.MwmActivity;
@@ -20,17 +21,16 @@ import app.organicmaps.sdk.util.StringUtils;
import app.organicmaps.sdk.util.UiUtils;
import app.organicmaps.util.Utils;
import app.organicmaps.widget.ArrowView;
import com.google.android.material.textview.MaterialTextView;
public class DirectionFragment extends BaseMwmDialogFragment implements LocationListener, SensorListener
{
private static final String EXTRA_MAP_OBJECT = "MapObject";
private ArrowView mAvDirection;
private MaterialTextView mTvTitle;
private MaterialTextView mTvSubtitle;
private MaterialTextView mTvDistance;
private MaterialTextView mTvAzimuth;
private TextView mTvTitle;
private TextView mTvSubtitle;
private TextView mTvDistance;
private TextView mTvAzimuth;
private MapObject mMapObject;

View File

@@ -619,7 +619,7 @@ public class PlacePageView extends Fragment
private void addOrganisation()
{
((MwmActivity) requireActivity()).showPositionChooserForEditor(true, true);
((MwmActivity) requireActivity()).showPositionChooserForEditor(true, false);
}
private void addPlace()

View File

@@ -4,7 +4,7 @@
<size
android:width="40dp"
android:height="40dp" />
<solid android:color="#427BB8" />
<solid android:color="#2E89B0" />
</shape>
</item>
<item>

View File

@@ -5,7 +5,7 @@
<size
android:width="40dp"
android:height="40dp" />
<solid android:color="#54A3B6" />
<solid android:color="#14A0C2" />
</shape>
</item>
<item>

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m15.251,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m16.985,17h-5.848v-1.16l2.76,-2.941q0.568,-0.621 0.838,-1.084 0.275,-0.463 0.275,-0.879 0,-0.568 -0.287,-0.891 -0.287,-0.328 -0.82,-0.328 -0.574,0 -0.908,0.398 -0.328,0.393 -0.328,1.037h-1.699q0,-0.779 0.369,-1.424 0.375,-0.645 1.055,-1.008 0.68,-0.369 1.541,-0.369 1.318,0 2.045,0.633 0.732,0.633 0.732,1.787 0,0.633 -0.328,1.289t-1.125,1.529l-1.939,2.045h3.668z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m12.86,11.984h0.902q0.645,0 0.955,-0.322 0.311,-0.322 0.311,-0.855 0,-0.516 -0.311,-0.803 -0.305,-0.287 -0.844,-0.287 -0.486,0 -0.814,0.27 -0.328,0.264 -0.328,0.691h-1.693q0,-0.668 0.357,-1.195 0.363,-0.533 1.008,-0.832 0.65,-0.299 1.43,-0.299 1.354,0 2.121,0.65 0.768,0.645 0.768,1.781 0,0.586 -0.357,1.078 -0.357,0.492 -0.938,0.756 0.721,0.258 1.072,0.773 0.357,0.516 0.357,1.219 0,1.137 -0.832,1.822 -0.826,0.686 -2.191,0.686 -1.277,0 -2.092,-0.674 -0.809,-0.674 -0.809,-1.781h1.693q0,0.48 0.357,0.785 0.363,0.305 0.891,0.305 0.604,0 0.943,-0.316 0.346,-0.322 0.346,-0.85 0,-1.277 -1.406,-1.277h-0.896z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m16.147,13.789h0.967v1.365h-0.967v1.846h-1.693v-1.846h-3.498l-0.076,-1.066 3.557,-5.619h1.711zM12.567,13.789h1.887v-3.012l-0.111,0.193z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.39,12.805 l0.492,-4.336h4.781v1.412h-3.393l-0.211,1.834q0.604,-0.322 1.283,-0.322 1.219,0 1.91,0.756 0.691,0.756 0.691,2.115 0,0.826 -0.352,1.482 -0.346,0.65 -0.996,1.014 -0.65,0.357 -1.535,0.357 -0.773,0 -1.436,-0.311 -0.662,-0.316 -1.049,-0.885 -0.381,-0.568 -0.404,-1.295h1.676q0.053,0.533 0.369,0.832 0.322,0.293 0.838,0.293 0.574,0 0.885,-0.41 0.311,-0.416 0.311,-1.172 0,-0.727 -0.357,-1.113 -0.357,-0.387 -1.014,-0.387 -0.604,0 -0.979,0.316l-0.164,0.152z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m15.731,8.381v1.395h-0.164q-1.148,0.018 -1.852,0.598 -0.697,0.58 -0.838,1.611 0.68,-0.691 1.717,-0.691 1.113,0 1.77,0.797t0.656,2.098q0,0.832 -0.363,1.506 -0.357,0.674 -1.02,1.049 -0.656,0.375 -1.488,0.375 -1.348,0 -2.18,-0.938 -0.826,-0.938 -0.826,-2.502v-0.609q0,-1.389 0.521,-2.449 0.527,-1.066 1.506,-1.646 0.984,-0.586 2.279,-0.592zM14.079,12.652q-0.41,0 -0.744,0.217 -0.334,0.211 -0.492,0.563v0.516q0,0.85 0.334,1.33 0.334,0.475 0.938,0.475 0.545,0 0.879,-0.428 0.34,-0.434 0.34,-1.119 0,-0.697 -0.34,-1.125 -0.34,-0.428 -0.914,-0.428z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m16.938,9.418 l-3.299,7.582h-1.787l3.305,-7.16h-4.242v-1.371h6.023z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m16.698,10.736q0,0.621 -0.311,1.102 -0.311,0.48 -0.855,0.768 0.621,0.299 0.984,0.826 0.363,0.521 0.363,1.23 0,1.137 -0.773,1.799 -0.773,0.656 -2.103,0.656t-2.109,-0.662 -0.779,-1.793q0,-0.709 0.363,-1.236 0.363,-0.527 0.979,-0.82 -0.545,-0.287 -0.855,-0.768 -0.305,-0.48 -0.305,-1.102 0,-1.09 0.727,-1.734 0.727,-0.65 1.975,-0.65 1.242,0 1.969,0.645 0.732,0.639 0.732,1.74zM15.18,14.539q0,-0.557 -0.322,-0.891 -0.322,-0.334 -0.867,-0.334 -0.539,0 -0.861,0.334 -0.322,0.328 -0.322,0.891 0,0.545 0.316,0.879 0.316,0.334 0.879,0.334 0.551,0 0.861,-0.322 0.316,-0.322 0.316,-0.891zM15.005,10.818q0,-0.498 -0.264,-0.797 -0.264,-0.305 -0.744,-0.305 -0.475,0 -0.738,0.293 -0.264,0.293 -0.264,0.809 0,0.51 0.264,0.82t0.744,0.311q0.48,0 0.738,-0.311 0.264,-0.311 0.264,-0.82z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m15.099,13.59q-0.662,0.65 -1.547,0.65 -1.131,0 -1.811,-0.773 -0.68,-0.779 -0.68,-2.098 0,-0.838 0.363,-1.535 0.369,-0.703 1.025,-1.09 0.656,-0.393 1.477,-0.393 0.844,0 1.5,0.422t1.02,1.213q0.363,0.791 0.369,1.811v0.627q0,2.133 -1.061,3.352t-3.006,1.301l-0.416,0.006v-1.412l0.375,-0.006q2.209,-0.1 2.391,-2.074zM13.968,12.945q0.41,0 0.703,-0.211 0.299,-0.211 0.451,-0.51v-0.697q0,-0.861 -0.328,-1.336 -0.328,-0.475 -0.879,-0.475 -0.51,0 -0.838,0.469 -0.328,0.463 -0.328,1.166 0,0.697 0.316,1.148 0.322,0.445 0.902,0.445z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM20.323,13.473q0,1.77 -0.732,2.707 -0.732,0.938 -2.145,0.938 -1.395,0 -2.133,-0.92 -0.738,-0.92 -0.756,-2.637v-1.57q0,-1.787 0.738,-2.713 0.744,-0.926 2.139,-0.926 1.395,0 2.133,0.92 0.738,0.914 0.756,2.631zM18.629,11.75q0,-1.061 -0.293,-1.541 -0.287,-0.486 -0.902,-0.486 -0.598,0 -0.885,0.463 -0.281,0.457 -0.299,1.436v2.074q0,1.043 0.281,1.553 0.287,0.504 0.914,0.504 0.621,0 0.896,-0.486 0.275,-0.486 0.287,-1.488z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM18.694,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM20.428,17h-5.848v-1.16l2.76,-2.941q0.568,-0.621 0.838,-1.084 0.275,-0.463 0.275,-0.879 0,-0.568 -0.287,-0.891 -0.287,-0.328 -0.82,-0.328 -0.574,0 -0.908,0.398 -0.328,0.393 -0.328,1.037h-1.699q0,-0.779 0.369,-1.424 0.375,-0.645 1.055,-1.008 0.68,-0.369 1.541,-0.369 1.318,0 2.045,0.633 0.732,0.633 0.732,1.787 0,0.633 -0.328,1.289t-1.125,1.529l-1.939,2.045h3.668z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM16.303,11.984h0.902q0.645,0 0.955,-0.322 0.311,-0.322 0.311,-0.855 0,-0.516 -0.311,-0.803 -0.305,-0.287 -0.844,-0.287 -0.486,0 -0.814,0.27 -0.328,0.264 -0.328,0.691h-1.693q0,-0.668 0.357,-1.195 0.363,-0.533 1.008,-0.832 0.65,-0.299 1.43,-0.299 1.354,0 2.121,0.65 0.768,0.645 0.768,1.781 0,0.586 -0.357,1.078 -0.357,0.492 -0.938,0.756 0.721,0.258 1.072,0.773 0.357,0.516 0.357,1.219 0,1.137 -0.832,1.822 -0.826,0.686 -2.191,0.686 -1.277,0 -2.092,-0.674 -0.809,-0.674 -0.809,-1.781h1.693q0,0.48 0.357,0.785 0.363,0.305 0.891,0.305 0.604,0 0.943,-0.316 0.346,-0.322 0.346,-0.85 0,-1.277 -1.406,-1.277h-0.896z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM19.59,13.789h0.967v1.365h-0.967v1.846h-1.693v-1.846h-3.498l-0.076,-1.066 3.557,-5.619h1.711zM16.01,13.789h1.887v-3.012l-0.111,0.193z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM14.832,12.805 L15.325,8.469h4.781v1.412h-3.393l-0.211,1.834q0.604,-0.322 1.283,-0.322 1.219,0 1.91,0.756 0.691,0.756 0.691,2.115 0,0.826 -0.352,1.482 -0.346,0.65 -0.996,1.014 -0.65,0.357 -1.535,0.357 -0.773,0 -1.436,-0.311 -0.662,-0.316 -1.049,-0.885 -0.381,-0.568 -0.404,-1.295h1.676q0.053,0.533 0.369,0.832 0.322,0.293 0.838,0.293 0.574,0 0.885,-0.41 0.311,-0.416 0.311,-1.172 0,-0.727 -0.357,-1.113 -0.357,-0.387 -1.014,-0.387 -0.604,0 -0.979,0.316l-0.164,0.152z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM19.174,8.381v1.395h-0.164q-1.148,0.018 -1.852,0.598 -0.697,0.58 -0.838,1.611 0.68,-0.691 1.717,-0.691 1.113,0 1.77,0.797t0.656,2.098q0,0.832 -0.363,1.506 -0.357,0.674 -1.02,1.049 -0.656,0.375 -1.488,0.375 -1.348,0 -2.18,-0.938 -0.826,-0.938 -0.826,-2.502v-0.609q0,-1.389 0.521,-2.449 0.527,-1.066 1.506,-1.646 0.984,-0.586 2.279,-0.592zM17.522,12.652q-0.41,0 -0.744,0.217 -0.334,0.211 -0.492,0.563v0.516q0,0.85 0.334,1.33 0.334,0.475 0.938,0.475 0.545,0 0.879,-0.428 0.34,-0.434 0.34,-1.119 0,-0.697 -0.34,-1.125 -0.34,-0.428 -0.914,-0.428z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM20.381,9.418 L17.083,17h-1.787l3.305,-7.16h-4.242v-1.371h6.023z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM20.141,10.736q0,0.621 -0.311,1.102 -0.311,0.48 -0.855,0.768 0.621,0.299 0.984,0.826 0.363,0.521 0.363,1.23 0,1.137 -0.773,1.799 -0.773,0.656 -2.103,0.656 -1.33,0 -2.109,-0.662 -0.779,-0.662 -0.779,-1.793 0,-0.709 0.363,-1.236 0.363,-0.527 0.979,-0.82 -0.545,-0.287 -0.855,-0.768 -0.305,-0.48 -0.305,-1.102 0,-1.09 0.727,-1.734 0.727,-0.65 1.975,-0.65 1.242,0 1.969,0.645 0.732,0.639 0.732,1.74zM18.623,14.539q0,-0.557 -0.322,-0.891 -0.322,-0.334 -0.867,-0.334 -0.539,0 -0.861,0.334 -0.322,0.328 -0.322,0.891 0,0.545 0.316,0.879 0.316,0.334 0.879,0.334 0.551,0 0.861,-0.322 0.316,-0.322 0.316,-0.891zM18.448,10.818q0,-0.498 -0.264,-0.797 -0.264,-0.305 -0.744,-0.305 -0.475,0 -0.738,0.293 -0.264,0.293 -0.264,0.809 0,0.51 0.264,0.82t0.744,0.311q0.48,0 0.738,-0.311 0.264,-0.311 0.264,-0.82z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m11.809,17h-1.693v-6.527l-2.022,0.627v-1.377l3.533,-1.266h0.182zM18.541,13.59q-0.662,0.65 -1.547,0.65 -1.131,0 -1.811,-0.773 -0.68,-0.779 -0.68,-2.098 0,-0.838 0.363,-1.535 0.369,-0.703 1.025,-1.09 0.656,-0.393 1.477,-0.393 0.844,0 1.5,0.422t1.02,1.213q0.363,0.791 0.369,1.811v0.627q0,2.133 -1.061,3.352 -1.061,1.219 -3.006,1.301l-0.416,0.006v-1.412l0.375,-0.006q2.209,-0.1 2.391,-2.074zM17.411,12.945q0.41,0 0.703,-0.211 0.299,-0.211 0.451,-0.51v-0.697q0,-0.861 -0.328,-1.336 -0.328,-0.475 -0.879,-0.475 -0.51,0 -0.838,0.469 -0.328,0.463 -0.328,1.166 0,0.697 0.316,1.148 0.322,0.445 0.902,0.445z"

View File

@@ -11,7 +11,7 @@
<path
android:pathData="M14,13m-11,0a11,11 0,1 1,22 0a11,11 0,1 1,-22 0"
android:strokeWidth="2"
android:fillColor="#FF37653F"
android:fillColor="#006c35"
android:strokeColor="#fff"/>
<path
android:pathData="m8.598,16.168q0,-0.404 0.27,-0.656 0.275,-0.252 0.686,-0.252 0.416,0 0.686,0.252 0.275,0.252 0.275,0.656 0,0.398 -0.27,0.65 -0.27,0.246 -0.691,0.246 -0.416,0 -0.686,-0.246 -0.27,-0.252 -0.27,-0.65zM8.598,11.369q0,-0.404 0.27,-0.656 0.275,-0.252 0.686,-0.252 0.416,0 0.686,0.252 0.275,0.252 0.275,0.656 0,0.398 -0.27,0.65 -0.27,0.246 -0.691,0.246 -0.416,0 -0.686,-0.246 -0.27,-0.252 -0.27,-0.65zM15.195,14.029h-3.299v-1.365h3.299zM19.473,13.666q0,1.324 -0.381,2.549 -0.381,1.225 -1.096,2.162 -0.715,0.938 -1.529,1.289l-0.328,-0.896q0.832,-0.627 1.313,-1.934 0.48,-1.307 0.498,-3.006v-0.311q0,-1.752 -0.48,-3.088 -0.475,-1.336 -1.33,-2.004l0.328,-0.896q0.797,0.346 1.5,1.254 0.709,0.908 1.096,2.115 0.393,1.207 0.41,2.502z"

View File

@@ -26,7 +26,7 @@
android:layout_toEndOf="@id/av__direction"
android:orientation="vertical">
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__title"
style="@style/MwmWidget.TextView.Direction"
android:layout_width="wrap_content"
@@ -35,7 +35,7 @@
android:textSize="@dimen/text_direction_title"
tools:text="Some place"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__subtitle"
style="@style/MwmWidget.TextView.Direction"
android:layout_width="wrap_content"
@@ -44,7 +44,7 @@
android:textSize="@dimen/text_direction_subtitle"
tools:text="Some place type"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__straight_distance"
style="@style/MwmWidget.TextView.Direction"
android:layout_width="wrap_content"
@@ -53,7 +53,7 @@
android:textSize="@dimen/text_direction_dist"
tools:text="9000 km"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__azimuth"
style="@style/MwmWidget.TextView.Direction"
android:layout_width="wrap_content"

View File

@@ -20,7 +20,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:ignore="UselessParent">
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/street"
style="@style/MwmWidget.TextView.NavStreet"
android:layout_width="match_parent"
@@ -64,7 +64,7 @@
app:tint="?iconTint"
tools:background="#400000FF"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/circle_exit"
style="@style/MwmWidget.TextView.NavNextTurn.Exit"
android:layout_width="wrap_content"
@@ -73,7 +73,7 @@
tools:text="9"/>
</FrameLayout>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/distance"
style="@style/MwmWidget.TextView.NavNextTurn"
android:layout_width="wrap_content"
@@ -96,7 +96,7 @@
android:elevation="@dimen/nav_elevation"
android:visibility="gone"
tools:visibility="visible">
<com.google.android.material.imageview.ShapeableImageView
<ImageView
android:id="@id/turn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@@ -5,7 +5,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@@ -17,27 +17,25 @@
android:orientation="vertical">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/edit_bookmark_name_input"
style="?fontBody1"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_height="wrap_content"
android:textColorHint="?android:textColorSecondary"
app:endIconMode="custom"
app:endIconCheckable="false"
app:endIconContentDescription="@string/clear"
app:endIconDrawable="@drawable/ic_clear_rounded"
app:endIconTint="?android:textColorSecondary"
app:boxBackgroundMode="filled"
app:boxBackgroundColor="@null">
app:endIconTint="?android:textColorSecondary">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et__bookmark_name"
style="@style/MwmWidget.Editor.CustomTextInput"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:hint="@string/name"
android:padding="@dimen/margin_half_double_plus"
android:textAlignment="viewStart"
android:inputType="textCapSentences"
android:singleLine="true"
android:backgroundTint="@android:color/transparent"/>
android:singleLine="true" />
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
<RelativeLayout
@@ -90,23 +88,21 @@
tools:src="@drawable/ic_bookmark_none" />
</RelativeLayout>
<com.google.android.material.textfield.TextInputLayout
style="?fontBody1"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_height="wrap_content"
android:layout_below="@id/rl__bookmark_set"
android:layout_margin="@dimen/margin_half"
android:textColorHint="?android:textColorSecondary"
app:boxBackgroundMode="filled"
app:boxBackgroundColor="@null">
android:textColorHint="?android:textColorSecondary">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et__description"
style="@style/MwmWidget.Editor.CustomTextInput"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/margin_half_double_plus"
android:hint="@string/placepage_personal_notes_hint"
android:inputType="textMultiLine"
android:textAlignment="viewStart"
android:backgroundTint="@android:color/transparent"/>
android:textAlignment="viewStart" />
</com.google.android.material.textfield.TextInputLayout>
</RelativeLayout>

View File

@@ -16,7 +16,7 @@
android:layout_marginTop="@dimen/margin_direction_small"
app:srcCompat="@drawable/ic_direction_fullscreen"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__subtitle"
style="@style/MwmWidget.TextView.Direction"
android:layout_width="wrap_content"
@@ -28,7 +28,7 @@
android:textSize="@dimen/text_direction_subtitle"
tools:text="Some place type"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__title"
style="@style/MwmWidget.TextView.Direction"
android:layout_width="wrap_content"
@@ -40,7 +40,7 @@
android:textSize="@dimen/text_direction_title"
tools:text="Place, \n long, \n long"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__straight_distance"
style="@style/MwmWidget.TextView.Direction"
android:layout_width="wrap_content"
@@ -51,7 +51,7 @@
android:layout_marginTop="@dimen/margin_direction_big"
android:textSize="@dimen/text_direction_dist"
tools:text="9000 km"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__azimuth"
style="@style/MwmWidget.TextView.Direction"
android:layout_width="wrap_content"

View File

@@ -23,7 +23,7 @@
layout="@layout/routing_action_panel"
android:visibility="gone"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/error"
android:paddingStart="@dimen/margin_base"
android:paddingEnd="@dimen/margin_base"

View File

@@ -23,7 +23,7 @@
app:centerDrawable="@android:color/transparent"
tools:visibility="visible"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__size"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -34,7 +34,7 @@
android:textAppearance="@style/MwmTextAppearance.Body1"
tools:text="256 MB"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@@ -23,7 +23,7 @@
app:centerDrawable="@android:color/transparent"
tools:visibility="visible"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__size"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -35,7 +35,7 @@
android:textColor="?colorAccent"
tools:text="256 MB"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/tv__title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@@ -23,7 +23,7 @@
android:gravity="center"
android:minWidth="@dimen/nav_numbers_side_min_width">
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/speed_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -33,7 +33,7 @@
tools:text="999" />
<!-- Speed -->
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/speed_dimen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -63,7 +63,7 @@
android:layout_height="wrap_content"
tools:background="#20FF0000">
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/time_hour_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -72,7 +72,7 @@
android:textAppearance="@style/MwmTextAppearance.NavMenu.Time"
tools:text="999" />
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/time_hour_dimen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -82,7 +82,7 @@
android:textAppearance="@style/MwmTextAppearance.NavMenu.Time.Dimension"
tools:text="h" />
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/time_minute_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -92,7 +92,7 @@
android:textAppearance="@style/MwmTextAppearance.NavMenu.Time"
tools:text="99" />
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/time_minute_dimen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -102,7 +102,7 @@
tools:text="m" />
</LinearLayout>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/time_estimate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -126,7 +126,7 @@
android:gravity="center"
android:minWidth="@dimen/nav_numbers_side_min_width">
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/distance_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -135,7 +135,7 @@
android:textAppearance="@style/MwmTextAppearance.NavMenu.Number"
tools:text="99999" />
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/distance_dimen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@@ -20,7 +20,7 @@
android:layout_width="match_parent"
android:layout_height="@dimen/nav_street_height"
tools:ignore="UselessParent">
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/street"
style="@style/MwmWidget.TextView.NavStreet"
android:layout_width="match_parent"
@@ -64,7 +64,7 @@
app:tint="?iconTint"
tools:background="#400000FF"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/circle_exit"
style="@style/MwmWidget.TextView.NavNextTurn.Exit"
android:layout_width="wrap_content"
@@ -73,7 +73,7 @@
tools:text="9"/>
</FrameLayout>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/distance"
style="@style/MwmWidget.TextView.NavNextTurn"
android:layout_width="wrap_content"
@@ -96,7 +96,7 @@
android:elevation="@dimen/nav_elevation"
android:visibility="invisible"
tools:visibility="visible">
<com.google.android.material.imageview.ShapeableImageView
<ImageView
android:id="@id/turn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@@ -20,7 +20,7 @@
android:paddingStart="0dp"
android:paddingEnd="@dimen/altitude_chart_container_padding_left">
<com.google.android.material.textview.MaterialTextView
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
@@ -28,7 +28,7 @@
android:textSize="20sp"
android:textStyle="bold"/>
<com.google.android.material.imageview.ShapeableImageView
<ImageView
android:id="@+id/image_my_location"
android:layout_width="24dp"
android:layout_height="24dp"
@@ -80,7 +80,7 @@
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
@@ -94,24 +94,20 @@
style="@style/MwmWidget.Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="@string/cancel"
android:textColor="?android:attr/textColorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:text="@string/cancel"/>
<Button
android:id="@+id/btn__plan"
style="@style/MwmWidget.Button.Primary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="@string/button_plan"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
android:layout_gravity="end|center_vertical"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:text="@string/button_plan"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</RelativeLayout>
</LinearLayout>

View File

@@ -6,7 +6,7 @@
android:layout_height="60dp"
android:gravity="center_vertical">
<com.google.android.material.imageview.ShapeableImageView
<ImageView
android:id="@+id/type_icon"
android:layout_width="24dp"
android:layout_height="24dp"
@@ -15,7 +15,7 @@
app:layout_constraintBottom_toBottomOf="parent"
app:srcCompat="@drawable/route_point_finish"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -34,7 +34,7 @@
app:layout_constrainedWidth="true"
tools:text="Title"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/subtitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -52,7 +52,7 @@
app:layout_constrainedWidth="true"
tools:text="Subtitle"/>
<com.google.android.material.imageview.ShapeableImageView
<ImageView
android:id="@+id/delete_icon"
android:layout_width="24dp"
android:layout_height="24dp"

View File

@@ -10,7 +10,7 @@
<include layout="@layout/routing_bottom_panel_transit"/>
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/error"
android:paddingStart="@dimen/margin_base"
android:paddingEnd="@dimen/margin_base"

View File

@@ -23,7 +23,7 @@
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">
<com.google.android.material.imageview.ShapeableImageView
<ImageView
android:id="@+id/back"
android:layout_width="?attr/actionBarSize"
android:layout_height="?attr/actionBarSize"
@@ -157,14 +157,14 @@
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<com.google.android.material.imageview.ShapeableImageView
<ImageView
android:id="@+id/driving_options_btn_img"
android:layout_width="@dimen/margin_base_plus"
android:layout_height="@dimen/margin_base_plus"
android:layout_gravity="center"
android:layout_marginEnd="@dimen/margin_half_plus_eight"
app:srcCompat="@drawable/ic_error_white" />
<com.google.android.material.textview.MaterialTextView
<TextView
android:id="@+id/driving_options_btn_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@@ -763,11 +763,6 @@
<string name="type.power.substation">Substasie</string>
<!-- A tower or pylon carrying high voltage electricity cables. -->
<string name="type.power.tower">Kragmas</string>
<string name="type.psurface">Padoppervlak</string>
<string name="type.psurface.paved_bad">Geteer</string>
<string name="type.psurface.paved_good">Geteer</string>
<string name="type.psurface.unpaved_bad">Ongeteer</string>
<string name="type.psurface.unpaved_good">Ongeteer</string>
<string name="type.public_transport">Openbare vervoer</string>
<string name="type.public_transport.platform">Platform</string>
<string name="type.railway">Spoorweg</string>
@@ -1315,5 +1310,4 @@
<!-- https://wiki.openstreetmap.org/wiki/Tag:leisure=sports_hall -->
<string name="type.leisure.sports_hall">Sportsaal</string>
<string name="type.railway.station.subway.qingdao">Moltreinstasie</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -1280,5 +1280,4 @@
<string name="type.amenity.love_hotel">فندق جب</string>
<string name="type.amenity.studio">معرض</string>
<string name="type.railway.station.subway.qingdao">محطة مترو</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -158,5 +158,4 @@
<string name="type.amenity.language_school">Escuela de llingües</string>
<string name="type.amenity.hospital">Hospital</string>
<string name="type.craft.confectionery">Confitería</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -1328,5 +1328,4 @@
<string name="type.amenity.dojo">Dojo</string>
<!-- https://wiki.openstreetmap.org/wiki/Tag:leisure=sports_hall -->
<string name="type.leisure.sports_hall">İdman zalı</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -623,6 +623,4 @@
<string name="type.amenity.dojo">Додзе</string>
<!-- https://wiki.openstreetmap.org/wiki/Tag:leisure=sports_hall -->
<string name="type.leisure.sports_hall">Спартыўная зала</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -79,7 +79,7 @@
<string name="type.craft.brewery">Пивоварна</string>
<string name="type.craft.caterer">Кетъринг</string>
<string name="type.craft.carpenter">Марангоз</string>
<string name="type.craft.confectionery">Сладкарница</string>
<string name="type.craft.confectionery">Сладкарски изделия</string>
<string name="type.craft.electrician">Електротехник</string>
<string name="type.craft.electronics_repair">Ремонт на електроника</string>
<string name="type.craft.gardener">Градинар</string>
@@ -354,7 +354,7 @@
<string name="type.place.country">Страна</string>
<string name="type.place.county">Графство</string>
<string name="type.place.farm">Ферма</string>
<string name="type.place.hamlet">Село</string>
<string name="type.place.hamlet">Cело</string>
<string name="type.place.island">Остров</string>
<string name="type.place.islet">Острови</string>
<string name="type.place.isolated_dwelling">Изолирано жилище</string>
@@ -595,7 +595,7 @@
<string name="type.recycling.plastic_bottles">Пластмасови бутилки</string>
<string name="type.recycling.cardboard">Картон</string>
<string name="type.recycling.shoes">Обувки</string>
<string name="type.amenity.restaurant">Ресторант</string>
<string name="type.amenity.restaurant">Заведение</string>
<string name="type.amenity.school">Училище</string>
<string name="type.amenity.shower">Душ</string>
<string name="type.amenity.telephone">Телефон</string>
@@ -659,7 +659,7 @@
<string name="type.shop.car_parts">Магазин за авточасти</string>
<string name="type.shop.car_repair">Сервиз за коли</string>
<string name="type.shop.car_repair.tyres">Гумаджия</string>
<string name="type.shop.chemist">Битова химия</string>
<string name="type.shop.chemist">Химик</string>
<string name="type.shop.pet">Магазин за животни</string>
<string name="type.shop.seafood">Риба</string>
<string name="type.shop.shoes">Магазин за обувки</string>
@@ -774,7 +774,6 @@
<string name="type.highway.road">Път</string>
<string name="type.highway.tertiary">Третостепенен път</string>
<string name="type.landuse.cemetery">Гробище</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.amenity.studio">Студио</string>
<string name="type.amenity.college">Колеж</string>
<string name="type.barrier.guard_rail">Мантинела</string>
@@ -1370,6 +1369,4 @@
<string name="type.piste_type.downhill.advanced.area">Спускане със ски за напреднали</string>
<string name="type.piste_type.downhill.freeride">Свободно каране спускане със ски</string>
<string name="type.piste_type.downhill.novice.area">Спускане със ски за начинаещи</string>
<string name="type.highway.services">Обслужвана зона</string>
<string name="type.landuse.forest">Гора</string>
</resources>

View File

@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.addr_interpolation">ঠিকানা/ব্লক</string>
</resources>

View File

@@ -963,5 +963,4 @@
<string name="type.amenity.studio">Estudi</string>
<string name="type.barrier.guard_rail">Barrera de seguretat</string>
<string name="type.leisure.hackerspace">Hacklab</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -1171,11 +1171,8 @@
<string name="type.amenity.dojo">Dódžó</string>
<!-- https://wiki.openstreetmap.org/wiki/Tag:leisure=sports_hall -->
<string name="type.leisure.sports_hall">Sportovní hala</string>
<string name="type.psurface">psurface</string>
<string name="type.landuse.salt_pond">Solné jezírko</string>
<string name="type.route">Trasa</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.hwtag.yesbicycle">hwtag-yesbicycle</string>
<string name="type.power.minor_line">Vedlejší elektrické vedení</string>
<string name="type.recycling.cans">Plechovky</string>
<string name="type.aerialway.drag_lift">Vlek</string>
@@ -1204,10 +1201,6 @@
<string name="type.highway.bridleway.permissive">Hipostezka</string>
<string name="type.highway.cycleway.permissive">Cyklostezka</string>
<string name="type.highway.elevator">Výtah</string>
<string name="type.hwtag.nobicycle">hwtag-nobicycle</string>
<string name="type.hwtag.oneway">hwtag-oneway</string>
<string name="type.hwtag.yescar">hwtag-yescar</string>
<string name="type.hwtag.yesfoot">hwtag-yesfoot</string>
<string name="type.internet_access">Internet</string>
<string name="type.junction.roundabout">Kruhový objezd</string>
<string name="type.landuse.brownfield">Brownfield</string>
@@ -1225,7 +1218,6 @@
<string name="type.man_made.pipeline.overground">Povrchové potrubí</string>
<string name="type.man_made.wastewater_plant">Čistírna odpadních vod</string>
<string name="type.man_made.works">Průmysl</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.military">Armáda</string>
<string name="type.mountain_pass">Horské sedlo</string>
<string name="type.power">Energie</string>
@@ -1262,12 +1254,10 @@
<string name="type.aerialway.cable_car">Visutá lanovka</string>
<string name="type.landuse.vineyard">Vinice</string>
<string name="type.leisure.beach_resort">Plážový areál</string>
<string name="type.route.shuttle_train">route-shuttle_train</string>
<string name="type.amenity.food_court">Jídelní zóna</string>
<string name="type.recycling.cardboard">Lepenka</string>
<string name="type.recycling.shoes">Boty</string>
<string name="type.building.warehouse">Sklad</string>
<string name="type.hwtag">hwtag</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.taxi">Stanoviště taxislužby</string>
@@ -1275,7 +1265,6 @@
<string name="type.barrier.hedge">Živý plot</string>
<string name="type.boundary">Hranice</string>
<string name="type.amenity.vending_machine.newspapers">Automat na noviny</string>
<string name="type.hwtag.nofoot">hwtag-nofoot</string>
<string name="type.leisure.ice_rink">Ledové kluziště</string>
<string name="type.railway.construction">Železniční stavba</string>
<string name="type.landuse">Využití území</string>
@@ -1288,18 +1277,12 @@
<string name="type.boundary.administrative.3">Hranice oblasti</string>
<string name="type.landuse.garages">Garáže</string>
<string name="type.leisure.track.area">Trať</string>
<string name="type.hwtag.bidir_bicycle">hwtag-bidir_bicycle</string>
<string name="type.hwtag.nocar">hwtag-nocar</string>
<string name="type.junction.circular">Kruhový objezd</string>
<string name="type.area_highway.cycleway">Cyklostezka</string>
<string name="type.hwtag.toll">hwtag-toll</string>
<string name="type.landuse.commercial">Komerční zóna</string>
<string name="type.highway.world_level">highway-world_level</string>
<string name="type.hwtag.lit">hwtag-lit</string>
<string name="type.organic.only">Přírodní</string>
<string name="type.railway.abandoned">Zaniklá železnice</string>
<string name="type.landuse.education">Vzdělávací zařízení</string>
<string name="type.hwtag.private">hwtag-private</string>
<string name="type.sport.bowls">Bowls</string>
<string name="type.landuse.farmyard">Statek</string>
<string name="type.man_made.pier">Molo</string>
@@ -1312,10 +1295,8 @@
<string name="type.railway.crossing">Železniční přejezd</string>
<string name="type.man_made.silo">Silo</string>
<string name="type.man_made.survey_point">Topografický bod</string>
<string name="type.psurface.unpaved_good">psurface-unpaved_good</string>
<string name="type.shop.supermarket">Supermarket</string>
<string name="type.organic.yes">Přírodní</string>
<string name="type.psurface.unpaved_bad">psurface-unpaved_bad</string>
<string name="type.railway.tram">Tramvajová trať</string>
<string name="type.railway.light_rail.tunnel">Tunel lehké železnice</string>
<string name="type.railway.abandoned.bridge">Most zaniklé železnice</string>
@@ -1329,18 +1310,14 @@
<string name="type.railway.tram.tunnel">Tunel tramvajové trati</string>
<string name="type.barrier.fence">Plot</string>
<string name="type.leisure.marina">Přístav</string>
<string name="type.psurface.paved_good">psurface-paved_good</string>
<string name="type.amenity.vending_machine.condoms">Automat na kondomy</string>
<string name="type.public_transport">Veřejná doprava</string>
<string name="type.highway.world_towns_level">highway-world_towns_level</string>
<string name="type.hwtag.onedir_bicycle">hwtag-onedir_bicycle</string>
<string name="type.leisure.common">Veřejný prostor</string>
<string name="type.leisure.recreation_ground">Rekreační areál</string>
<string name="type.boundary.administrative.4">Hranice oblasti</string>
<string name="type.aerialway">Lanová dráha</string>
<string name="type.highway.services">Odpočívadlo se službami</string>
<string name="type.man_made.cutline">Průsek</string>
<string name="type.psurface.paved_bad">psurface-paved_bad</string>
<string name="type.railway.preserved.bridge">Most zachovalé železnice</string>
<string name="type.railway.narrow_gauge.tunnel">Tunel úzkorozchodné železnice</string>
<string name="type.amenity.bar">Bar</string>

View File

@@ -220,7 +220,7 @@
<!-- Settings «Route» category: «Tts language» title -->
<string name="pref_tts_language_title">Stemmesprog</string>
<!-- Settings «Route» category: «Test Voice Directions» title -->
<string name="pref_tts_test_voice_title">Test stemmevejledninger</string>
<string name="pref_tts_test_voice_title">Test stemmeanvisninger (TTS, Text-To-Speech)</string>
<!-- Settings «Route» category: Pop-up message when clicking «Test Voice Directions» -->
<string name="pref_tts_playing_test_voice">Tjek lydstyrken eller systemets tekst-til-tale-indstillinger, hvis du ikke kan høre stemmen nu</string>
<!-- Settings «Route» category: «Tts unavailable» subtitle -->

View File

@@ -1356,7 +1356,6 @@
<string name="type.piste_type.sled.area">Kælkebane</string>
<string name="type.piste_type.downhill.novice.area">Meget let pist</string>
<string name="type.railway.tram.bridge">Sporvejsbro</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.landuse.plant_nursery">Planteskole</string>
<string name="type.leisure.firepit">Bålplads</string>
<string name="type.man_made.crane">Kran</string>

View File

@@ -1344,40 +1344,17 @@
<string name="type.man_made.pipeline">Pipeline</string>
<string name="type.amenity.bar">Bar</string>
<string name="type.amenity.restaurant">Restaurant</string>
<string name="type.hwtag">hwtag</string>
<string name="type.hwtag.bidir_bicycle">hwtag-bidir_bicycle</string>
<string name="type.hwtag.onedir_bicycle">hwtag-onedir_bicycle</string>
<string name="type.hwtag.lit">hwtag-lit</string>
<string name="type.internet_access">Internet</string>
<string name="type.internet_access.wlan">Internet</string>
<string name="type.hwtag.nofoot">hwtag-nofoot</string>
<string name="type.hwtag.oneway">hwtag-oneway</string>
<string name="type.hwtag.private">hwtag-private</string>
<string name="type.hwtag.toll">hwtag-toll</string>
<string name="type.hwtag.yesbicycle">hwtag-yesbicycle</string>
<string name="type.hwtag.yescar">hwtag-yescar</string>
<string name="type.hwtag.yesfoot">hwtag-yesfoot</string>
<string name="type.leisure.hackerspace">Hackerraum</string>
<string name="type.sport.yoga">Yoga Studio</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.noexit">Sackgasse</string>
<string name="type.psurface">psurface</string>
<string name="type.psurface.paved_bad">psurface-paved_bad</string>
<string name="type.psurface.unpaved_good">psurface-unpaved_good</string>
<string name="type.route.shuttle_train">route-shuttle_train</string>
<string name="type.shop.kiosk">Kiosk</string>
<string name="type.psurface.unpaved_bad">psurface-unpaved_bad</string>
<string name="type.boundary.administrative.2">Landesgrenze</string>
<string name="type.building.garage">Garage</string>
<string name="type.cuisine.fish_and_chips">Fisch und Chips</string>
<string name="type.highway.world_level">highway-world_level</string>
<string name="type.hwtag.nobicycle">hwtag-nobicycle</string>
<string name="type.hwtag.nocar">hwtag-nocar</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.psurface.paved_good">psurface-paved_good</string>
<string name="type.leisure.beach_resort">Badestrand</string>
<string name="type.amenity.food_court">Food Court</string>
<string name="type.highway.world_towns_level">highway-world_towns_level</string>
<string name="type.fee.yes">$</string>
<string name="type.man_made.utility_pole">Versorgungsmast</string>
<string name="type.cuisine.bubble_tea">Bubble Tea</string>

View File

@@ -9,7 +9,7 @@
<string name="delete">Διαγραφή</string>
<string name="download_maps">Λήψη χαρτών</string>
<!-- Settings/Downloader - info for country when download fails -->
<string name="download_has_failed">Η λήψη απέτυχε, πατήστε για να προσπαθήσετε ξανά</string>
<string name="download_has_failed">Η λήψη απέτυχε. Πατήστε για να προσπαθήσετε ξανά.</string>
<!-- Settings/Downloader - info for country which started downloading -->
<string name="downloading">Λήψη…</string>
<!-- Choose measurement on first launch alert - choose metric system button -->
@@ -30,7 +30,7 @@
<!-- A dialog title, that warns a user that Precise Location is disabled and suggests to turn it on -->
<string name="limited_accuracy">Περιορισμένη ακρίβεια</string>
<!-- 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">Για να εξασφαλίσετε ακριβή πλοήγηση, ενεργοποιήστε την Ακριβής τοποθεσία στις ρυθμίσεις</string>
<string name="precise_location_is_disabled_long_text">Για να εξασφαλίσετε ακριβή πλοήγηση, ενεργοποιήστε την Ακριβής τοποθεσία στις ρυθμίσεις.</string>
<!-- View and button titles for accessibility -->
<string name="zoom_to_country">Εμφάνιση στο χάρτη</string>
<!-- Message to display at the center of the screen when the country download has failed -->
@@ -236,7 +236,7 @@
<!-- Settings «Route» category: «Tts language» title -->
<string name="pref_tts_language_title">Γλώσσα φωνής</string>
<!-- Settings «Route» category: «Test Voice Directions» title -->
<string name="pref_tts_test_voice_title">Δοκιμή φωνητικών οδηγιών</string>
<string name="pref_tts_test_voice_title">Δοκιμή φωνητικών οδηγιών (TTS, Text-To-Speech)</string>
<!-- Settings «Route» category: Pop-up message when clicking «Test Voice Directions» -->
<string name="pref_tts_playing_test_voice">Ελέγξτε την ένταση ήχου ή τις ρυθμίσεις του συστήματος text-to-speech αν δεν ακούτε τη φωνή τώρα.</string>
<!-- Settings «Route» category: «Tts unavailable» subtitle -->

View File

@@ -691,9 +691,9 @@
<string name="type.power.substation">Υποσταθμός</string>
<!-- A tower or pylon carrying high voltage electricity cables. -->
<string name="type.power.tower">Πυλώνες μεταφοράς ρεύματος</string>
<string name="type.railway.funicular">Τελεφερίκ</string>
<string name="type.railway.halt">Σιδηροδρομική στάση</string>
<string name="type.railway.level_crossing">Σιδηροδρομική διάβαση</string>
<string name="type.railway.funicular">Μονωτικό τρενάκι</string>
<string name="type.railway.halt">Σιδηροδρομικός σταθμός</string>
<string name="type.railway.level_crossing">Σιδηροδρομική διέλευση</string>
<string name="type.railway.monorail">Μονοαξονικός σιδηρόδρομος</string>
<string name="type.railway.rail">Σιδηρόδρομος</string>
<string name="type.railway.rail.highspeed">Σιδηρόδρομος υψηλής ταχύτητας</string>
@@ -723,126 +723,126 @@
<string name="type.railway.rail.spur.tunnel">Σιδηροδρομική σήραγγα</string>
<string name="type.railway.rail.service.tunnel">Σιδηροδρομική σήραγγα</string>
<string name="type.railway.station">Σιδηροδρομικός σταθμός</string>
<string name="type.railway.station.funicular">Τελεφερίκ</string>
<string name="type.railway.station.funicular">Μονωτικό τρενάκι</string>
<string name="type.railway.station.light_rail">Σιδηροδρομικός σταθμός</string>
<string name="type.railway.station.light_rail.berlin">Σιδηροδρομικός σταθμός</string>
<string name="type.railway.station.light_rail.london">Σιδηροδρομικός σταθμός</string>
<string name="type.railway.station.light_rail.porto">Σιδηροδρομικός σταθμός</string>
<string name="type.railway.station.monorail">Σιδηροδρομικός σταθμός</string>
<string name="type.railway.station.subway">Σταθμός μετρό</string>
<string name="type.railway.station.subway.adana">Σταθμός μετρό</string>
<string name="type.railway.station.subway.algiers">Σταθμός μετρό</string>
<string name="type.railway.station.subway.almaty">Σταθμός μετρό</string>
<string name="type.railway.station.subway.amsterdam">Σταθμός μετρό</string>
<string name="type.railway.station.subway.ankara">Σταθμός μετρό</string>
<string name="type.railway.station.subway.athens">Σταθμός μετρό</string>
<string name="type.railway.station.subway.baku">Σταθμός μετρό</string>
<string name="type.railway.station.subway.bangkok">Σταθμός μετρό</string>
<string name="type.railway.station.subway.barcelona">Σταθμός μετρό</string>
<string name="type.railway.station.subway.beijing">Σταθμός μετρό</string>
<string name="type.railway.station.subway.bengalore">Σταθμός μετρό</string>
<string name="type.railway.station.subway.berlin">Σταθμός μετρό</string>
<string name="type.railway.station.subway.bilbao">Σταθμός μετρό</string>
<string name="type.railway.station.subway.brasilia">Σταθμός μετρό</string>
<string name="type.railway.station.subway.brescia">Σταθμός μετρό</string>
<string name="type.railway.station.subway.brussels">Σταθμός μετρό</string>
<string name="type.railway.station.subway.bucharest">Σταθμός μετρό</string>
<string name="type.railway.station.subway.budapest">Σταθμός μετρό</string>
<string name="type.railway.station.subway.buenos_aires">Σταθμός μετρό</string>
<string name="type.railway.station.subway.bursa">Σταθμός μετρό</string>
<string name="type.railway.station.subway.cairo">Σταθμός μετρό</string>
<string name="type.railway.station.subway.caracas">Σταθμός μετρό</string>
<string name="type.railway.station.subway.catania">Σταθμός μετρό</string>
<string name="type.railway.station.subway.changchun">Σταθμός μετρό</string>
<string name="type.railway.station.subway.chengdu">Σταθμός μετρό</string>
<string name="type.railway.station.subway.chicago">Σταθμός μετρό</string>
<string name="type.railway.station.subway.chongqing">Σταθμός μετρό</string>
<string name="type.railway.station.subway.dalian">Σταθμός μετρό</string>
<string name="type.railway.station.subway.delhi">Σταθμός μετρό</string>
<string name="type.railway.station.subway.dnepro">Σταθμός μετρό</string>
<string name="type.railway.station.subway.dubai">Σταθμός μετρό</string>
<string name="type.railway.station.subway.ekb">Σταθμός μετρό</string>
<string name="type.railway.station.subway.fukuoka">Σταθμός μετρό</string>
<string name="type.railway.station.subway.glasgow">Σταθμός μετρό</string>
<string name="type.railway.station.subway.guangzhou">Σταθμός μετρό</string>
<string name="type.railway.station.subway.hamburg">Σταθμός μετρό</string>
<string name="type.railway.station.subway.helsinki">Σταθμός μετρό</string>
<string name="type.railway.station.subway.hiroshima">Σταθμός μετρό</string>
<string name="type.railway.station.subway.hongkong">Σταθμός μετρό</string>
<string name="type.railway.station.subway.isfahan">Σταθμός μετρό</string>
<string name="type.railway.station.subway.istanbul">Σταθμός μετρό</string>
<string name="type.railway.station.subway.izmir">Σταθμός μετρό</string>
<string name="type.railway.station.subway.kazan">Σταθμός μετρό</string>
<string name="type.railway.station.subway.kharkiv">Σταθμός μετρό</string>
<string name="type.railway.station.subway.kiev">Σταθμός μετρό</string>
<string name="type.railway.station.subway.kobe">Σταθμός μετρό</string>
<string name="type.railway.station.subway.kolkata">Σταθμός μετρό</string>
<string name="type.railway.station.subway.kunming">Σταθμός μετρό</string>
<string name="type.railway.station.subway.kyoto">Σταθμός μετρό</string>
<string name="type.railway.station.subway.la">Σταθμός μετρό</string>
<string name="type.railway.station.subway.lausanne">Σταθμός μετρό</string>
<string name="type.railway.station.subway.lille">Σταθμός μετρό</string>
<string name="type.railway.station.subway.lima">Σταθμός μετρό</string>
<string name="type.railway.station.subway.lisboa">Σταθμός μετρό</string>
<string name="type.railway.station.subway.london">Υπόγειος σταθμός</string>
<string name="type.railway.station.subway.lyon">Σταθμός μετρό</string>
<string name="type.railway.station.subway.madrid">Σταθμός μετρό</string>
<string name="type.railway.station.subway.malaga">Σταθμός μετρό</string>
<string name="type.railway.station.subway.manila">Σταθμός μετρό</string>
<string name="type.railway.station.subway.maracaibo">Σταθμός μετρό</string>
<string name="type.railway.station.subway.mashhad">Σταθμός μετρό</string>
<string name="type.railway.station.subway.mecca">Σταθμός μετρό</string>
<string name="type.railway.station.subway.medellin">Σταθμός μετρό</string>
<string name="type.railway.station.subway.mexico">Σταθμός μετρό</string>
<string name="type.railway.station.subway.milan">Σταθμός μετρό</string>
<string name="type.railway.station.subway.minsk">Σταθμός μετρό</string>
<string name="type.railway.station.subway.montreal">Σταθμός μετρό</string>
<string name="type.railway.station.subway.moscow">Σταθμός μετρό</string>
<string name="type.railway.station.subway.munchen">Σταθμός μετρό</string>
<string name="type.railway.station.subway.nagoya">Σταθμός μετρό</string>
<string name="type.railway.station.subway.newyork">Σταθμός μετρό</string>
<string name="type.railway.station.subway.nnov">Σταθμός μετρό</string>
<string name="type.railway.station.subway.novosibirsk">Σταθμός μετρό</string>
<string name="type.railway.station.subway.osaka">Σταθμός μετρό</string>
<string name="type.railway.station.subway.oslo">Σταθμός μετρό</string>
<string name="type.railway.station.subway.palma">Σταθμός μετρό</string>
<string name="type.railway.station.subway.panama">Σταθμός μετρό</string>
<string name="type.railway.station.subway.paris">Σταθμός μετρό</string>
<string name="type.railway.station.subway.philadelphia">Σταθμός μετρό</string>
<string name="type.railway.station.subway.pyongyang">Σταθμός μετρό</string>
<string name="type.railway.station.subway.rennes">Σταθμός μετρό</string>
<string name="type.railway.station.subway.rio">Σταθμός μετρό</string>
<string name="type.railway.station.subway.roma">Σταθμός μετρό</string>
<string name="type.railway.station.subway.rotterdam">Σταθμός μετρό</string>
<string name="type.railway.station.subway.samara">Σταθμός μετρό</string>
<string name="type.railway.station.subway.santiago">Σταθμός μετρό</string>
<string name="type.railway.station.subway.santo_domingo">Σταθμός μετρό</string>
<string name="type.railway.station.subway.saopaulo">Σταθμός μετρό</string>
<string name="type.railway.station.subway.sapporo">Σταθμός μετρό</string>
<string name="type.railway.station.subway.sendai">Σταθμός μετρό</string>
<string name="type.railway.station.subway.sf">Σταθμός μετρό</string>
<string name="type.railway.station.subway.shanghai">Σταθμός μετρό</string>
<string name="type.railway.station.subway.shenzhen">Σταθμός μετρό</string>
<string name="type.railway.station.subway.shiraz">Σταθμός μετρό</string>
<string name="type.railway.station.subway.singapore">Σταθμός μετρό</string>
<string name="type.railway.station.subway.sofia">Σταθμός μετρό</string>
<string name="type.railway.station.subway.spb">Σταθμός μετρό</string>
<string name="type.railway.station.subway.stockholm">Σταθμός μετρό</string>
<string name="type.railway.station.subway.tabriz">Σταθμός μετρό</string>
<string name="type.railway.station.subway.taipei">Σταθμός μετρό</string>
<string name="type.railway.station.subway.taoyuan">Σταθμός μετρό</string>
<string name="type.railway.station.subway.tashkent">Σταθμός μετρό</string>
<string name="type.railway.station.subway.tbilisi">Σταθμός μετρό</string>
<string name="type.railway.station.subway.tehran">Σταθμός μετρό</string>
<string name="type.railway.station.subway.tianjin">Σταθμός μετρό</string>
<string name="type.railway.station.subway.tokyo">Σταθμός μετρό</string>
<string name="type.railway.station.subway.valencia">Σταθμός μετρό</string>
<string name="type.railway.station.subway.vienna">Σταθμός μετρό</string>
<string name="type.railway.station.subway.warszawa">Σταθμός μετρό</string>
<string name="type.railway.station.subway.washington">Σταθμός μετρό</string>
<string name="type.railway.station.subway.wuhan">Σταθμός μετρό</string>
<string name="type.railway.station.subway.yerevan">Σταθμός μετρό</string>
<string name="type.railway.station.subway.yokohama">Σταθμός μετρό</string>
<string name="type.railway.station.subway">Μετρό</string>
<string name="type.railway.station.subway.adana">Μετρό</string>
<string name="type.railway.station.subway.algiers">Μετρό</string>
<string name="type.railway.station.subway.almaty">Μετρό</string>
<string name="type.railway.station.subway.amsterdam">Μετρό</string>
<string name="type.railway.station.subway.ankara">Μετρό</string>
<string name="type.railway.station.subway.athens">Μετρό</string>
<string name="type.railway.station.subway.baku">Μετρό</string>
<string name="type.railway.station.subway.bangkok">Μετρό</string>
<string name="type.railway.station.subway.barcelona">Μετρό</string>
<string name="type.railway.station.subway.beijing">Μετρό</string>
<string name="type.railway.station.subway.bengalore">Μετρό</string>
<string name="type.railway.station.subway.berlin">Μετρό</string>
<string name="type.railway.station.subway.bilbao">Μετρό</string>
<string name="type.railway.station.subway.brasilia">Μετρό</string>
<string name="type.railway.station.subway.brescia">Μετρό</string>
<string name="type.railway.station.subway.brussels">Μετρό</string>
<string name="type.railway.station.subway.bucharest">Μετρό</string>
<string name="type.railway.station.subway.budapest">Μετρό</string>
<string name="type.railway.station.subway.buenos_aires">Μετρό</string>
<string name="type.railway.station.subway.bursa">Μετρό</string>
<string name="type.railway.station.subway.cairo">Μετρό</string>
<string name="type.railway.station.subway.caracas">Μετρό</string>
<string name="type.railway.station.subway.catania">Μετρό</string>
<string name="type.railway.station.subway.changchun">Μετρό</string>
<string name="type.railway.station.subway.chengdu">Μετρό</string>
<string name="type.railway.station.subway.chicago">Μετρό</string>
<string name="type.railway.station.subway.chongqing">Μετρό</string>
<string name="type.railway.station.subway.dalian">Μετρό</string>
<string name="type.railway.station.subway.delhi">Μετρό</string>
<string name="type.railway.station.subway.dnepro">Μετρό</string>
<string name="type.railway.station.subway.dubai">Μετρό</string>
<string name="type.railway.station.subway.ekb">Μετρό</string>
<string name="type.railway.station.subway.fukuoka">Μετρό</string>
<string name="type.railway.station.subway.glasgow">Μετρό</string>
<string name="type.railway.station.subway.guangzhou">Μετρό</string>
<string name="type.railway.station.subway.hamburg">Μετρό</string>
<string name="type.railway.station.subway.helsinki">Μετρό</string>
<string name="type.railway.station.subway.hiroshima">Μετρό</string>
<string name="type.railway.station.subway.hongkong">Μετρό</string>
<string name="type.railway.station.subway.isfahan">Μετρό</string>
<string name="type.railway.station.subway.istanbul">Μετρό</string>
<string name="type.railway.station.subway.izmir">Μετρό</string>
<string name="type.railway.station.subway.kazan">Μετρό</string>
<string name="type.railway.station.subway.kharkiv">Μετρό</string>
<string name="type.railway.station.subway.kiev">Μετρό</string>
<string name="type.railway.station.subway.kobe">Μετρό</string>
<string name="type.railway.station.subway.kolkata">Μετρό</string>
<string name="type.railway.station.subway.kunming">Μετρό</string>
<string name="type.railway.station.subway.kyoto">Μετρό</string>
<string name="type.railway.station.subway.la">Μετρό</string>
<string name="type.railway.station.subway.lausanne">Μετρό</string>
<string name="type.railway.station.subway.lille">Μετρό</string>
<string name="type.railway.station.subway.lima">Μετρό</string>
<string name="type.railway.station.subway.lisboa">Μετρό</string>
<string name="type.railway.station.subway.london">Μετρό</string>
<string name="type.railway.station.subway.lyon">Μετρό</string>
<string name="type.railway.station.subway.madrid">Μετρό</string>
<string name="type.railway.station.subway.malaga">Μετρό</string>
<string name="type.railway.station.subway.manila">Μετρό</string>
<string name="type.railway.station.subway.maracaibo">Μετρό</string>
<string name="type.railway.station.subway.mashhad">Μετρό</string>
<string name="type.railway.station.subway.mecca">Μετρό</string>
<string name="type.railway.station.subway.medellin">Μετρό</string>
<string name="type.railway.station.subway.mexico">Μετρό</string>
<string name="type.railway.station.subway.milan">Μετρό</string>
<string name="type.railway.station.subway.minsk">Μετρό</string>
<string name="type.railway.station.subway.montreal">Μετρό</string>
<string name="type.railway.station.subway.moscow">Μετρό</string>
<string name="type.railway.station.subway.munchen">Μετρό</string>
<string name="type.railway.station.subway.nagoya">Μετρό</string>
<string name="type.railway.station.subway.newyork">Μετρό</string>
<string name="type.railway.station.subway.nnov">Μετρό</string>
<string name="type.railway.station.subway.novosibirsk">Μετρό</string>
<string name="type.railway.station.subway.osaka">Μετρό</string>
<string name="type.railway.station.subway.oslo">Μετρό</string>
<string name="type.railway.station.subway.palma">Μετρό</string>
<string name="type.railway.station.subway.panama">Μετρό</string>
<string name="type.railway.station.subway.paris">Μετρό</string>
<string name="type.railway.station.subway.philadelphia">Μετρό</string>
<string name="type.railway.station.subway.pyongyang">Μετρό</string>
<string name="type.railway.station.subway.rennes">Μετρό</string>
<string name="type.railway.station.subway.rio">Μετρό</string>
<string name="type.railway.station.subway.roma">Μετρό</string>
<string name="type.railway.station.subway.rotterdam">Μετρό</string>
<string name="type.railway.station.subway.samara">Μετρό</string>
<string name="type.railway.station.subway.santiago">Μετρό</string>
<string name="type.railway.station.subway.santo_domingo">Μετρό</string>
<string name="type.railway.station.subway.saopaulo">Μετρό</string>
<string name="type.railway.station.subway.sapporo">Μετρό</string>
<string name="type.railway.station.subway.sendai">Μετρό</string>
<string name="type.railway.station.subway.sf">Μετρό</string>
<string name="type.railway.station.subway.shanghai">Μετρό</string>
<string name="type.railway.station.subway.shenzhen">Μετρό</string>
<string name="type.railway.station.subway.shiraz">Μετρό</string>
<string name="type.railway.station.subway.singapore">Μετρό</string>
<string name="type.railway.station.subway.sofia">Μετρό</string>
<string name="type.railway.station.subway.spb">Μετρό</string>
<string name="type.railway.station.subway.stockholm">Μετρό</string>
<string name="type.railway.station.subway.tabriz">Μετρό</string>
<string name="type.railway.station.subway.taipei">Μετρό</string>
<string name="type.railway.station.subway.taoyuan">Μετρό</string>
<string name="type.railway.station.subway.tashkent">Μετρό</string>
<string name="type.railway.station.subway.tbilisi">Μετρό</string>
<string name="type.railway.station.subway.tehran">Μετρό</string>
<string name="type.railway.station.subway.tianjin">Μετρό</string>
<string name="type.railway.station.subway.tokyo">Μετρό</string>
<string name="type.railway.station.subway.valencia">Μετρό</string>
<string name="type.railway.station.subway.vienna">Μετρό</string>
<string name="type.railway.station.subway.warszawa">Μετρό</string>
<string name="type.railway.station.subway.washington">Μετρό</string>
<string name="type.railway.station.subway.wuhan">Μετρό</string>
<string name="type.railway.station.subway.yerevan">Μετρό</string>
<string name="type.railway.station.subway.yokohama">Μετρό</string>
<string name="type.railway.subway_entrance">Είσοδος μετρό</string>
<string name="type.railway.subway_entrance.adana">Είσοδος μετρό</string>
<string name="type.railway.subway_entrance.algiers">Είσοδος μετρό</string>
@@ -1197,7 +1197,7 @@
<string name="type.man_made.silo">Σιλό</string>
<string name="type.power.pole">Ηλεκτρικός πόλος</string>
<string name="type.man_made.utility_pole">Πόλος κοινής ωφέλειας</string>
<string name="type.railway.narrow_gauge.bridge">Σιδηροδρομική γέφυρα στενού εύρους</string>
<string name="type.railway.narrow_gauge.bridge">Σιδηροδρομική γέφυρα στενής γραμμής</string>
<string name="type.aeroway">Υποδομή εναέριου χώρου</string>
<string name="type.aeroway.apron">Ποδιά</string>
<string name="type.aeroway.runway">Αεροδιάδρομος</string>
@@ -1227,7 +1227,6 @@
<string name="type.highway.cycleway">Ποδηλατόδρομος</string>
<string name="type.highway.cycleway.permissive">Ποδηλατόδρομος</string>
<string name="type.highway.elevator">Ανελκυστήρας</string>
<string name="type.highway.world_level">αυτοκινητόδρομος-κόσμος_επίπεδο</string>
<string name="type.barrier.wall">Τοίχος</string>
<string name="type.recycling.cans">Κονσερβοκούτια</string>
<string name="type.barrier">Εμπόδιο</string>
@@ -1247,13 +1246,4 @@
<string name="type.area_highway.cycleway">Ποδηλατόδρομος</string>
<string name="type.aeroway.gate">Πύλη</string>
<string name="type.amenity.atm">ATM</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.railway.platform">Σιδηροδρομική πλατφόρμα</string>
<string name="type.railway.narrow_gauge.tunnel">Σιδηροδρομική σήραγγα στενού εύρους</string>
<string name="type.railway.subway.bridge">Γέφυρα γραμμής μετρό</string>
<string name="type.railway.subway">Γραμμή μετρό</string>
<string name="type.highway.ladder">Σκάλα</string>
<string name="type.railway.subway.tunnel">Σήραγγα γραμμής μετρό</string>
<string name="type.man_made.crane">Γερανός</string>
<string name="type.railway.station.subway.qingdao">Σταθμός μετρό</string>
</resources>

View File

@@ -287,5 +287,4 @@
<string name="type.power.pole">Power Pole</string>
<string name="type.man_made.utility_pole">Utility Pole</string>
<string name="type.railway.station.subway.qingdao">Metro Station</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -5,7 +5,7 @@
<string name="type.amenity.bbq">Barbacoa</string>
<string name="type.amenity.bicycle_parking">Estacionamiento de bicicletas</string>
<string name="type.amenity.bicycle_rental">Renta de bicicletas</string>
<string name="type.amenity.car_rental">Renta de autos</string>
<string name="type.amenity.car_rental">Renta de coches</string>
<string name="type.amenity.car_wash">Autolavado</string>
<string name="type.amenity.kindergarten">Jardín de niños</string>
<string name="type.amenity.motorcycle_parking">Estacionamiento de motocicletas</string>
@@ -554,5 +554,4 @@
<string name="type.amenity.motorcycle_rental">Renta de motocicletas</string>
<string name="type.highway.traffic_signals">Semáforo</string>
<string name="type.cuisine.crepe">Crepas</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -25,7 +25,7 @@
<!-- Search box placeholder text; Used when searching on the map itself, not when searching for a map -->
<string name="search_map">Buscar en el mapa</string>
<!-- Location services are disabled by user alert - message -->
<string name="location_is_disabled_long_text">Actualmente tienes desactivados todos los Servicios de Localización para este dispositivo o aplicación. Actívalos en Ajustes.</string>
<string name="location_is_disabled_long_text">No se puede acceder a los servicios de localización en este dispositivo o aplicación. Actívelos en la configuración.</string>
<!-- A dialog title, that warns a user that Precise Location is disabled and suggests to turn it on -->
<string name="limited_accuracy">Precisión limitada</string>
<!-- A dialog text, that warns a user that Precise Location is disabled and suggests to turn it on -->
@@ -42,7 +42,7 @@
<!-- Text in About screen -->
<string name="about_proposition_1">• Fácil de utilizar y depurado</string>
<!-- Text in About screen -->
<string name="about_proposition_2">• Enfocado en la privacidad y sin anuncios</string>
<string name="about_proposition_2">• Enfocado a la privacidad y sin anuncios</string>
<!-- Text in About screen -->
<string name="about_proposition_3">• No necesita conexión a internet, rápido y compacto</string>
<!-- Text in About screen -->
@@ -58,7 +58,7 @@
<string name="not_enough_free_space_on_sdcard">Libere espacio en la memoria SD o almacenamiento USB para usar la aplicación</string>
<string name="download_resources">Antes de comenzar, permita que descarguemos en su dispositivo un mapamundi general. \nSe requieren %s de almacenamiento.</string>
<string name="download_resources_continue">Ir al mapa</string>
<string name="downloading_country_can_proceed">Descargando %1$s (%2$s). Ya puede \nproceder al mapa.</string>
<string name="downloading_country_can_proceed">Descargando %1$s (%2$s). Puede ahora \nproceder al mapa.</string>
<string name="download_country_ask">¿Descargar %1$s? (%2$s)</string>
<string name="update_country_ask">¿Actualizar %1$s? (%2$s)</string>
<!-- REMOVE THIS STRING AFTER REFACTORING -->
@@ -68,7 +68,7 @@
<!-- Show popup notification on top of the map when country download has failed. -->
<string name="download_country_failed">No se pudo descargar %s</string>
<!-- "Add new bookmark list" dialog title -->
<string name="add_new_set">Agregar una lista nueva</string>
<string name="add_new_set">Agregar un grupo nuevo</string>
<!-- Add Bookmark list dialog - hint when the list name is empty -->
<string name="bookmark_set_name">Nombre del grupo de marcadores</string>
<!-- Should be used in the bookmarks-only context, see bookmarks_and_tracks if tracks are also implied. -->
@@ -106,7 +106,7 @@
<!-- Error moving map files from one storage to another -->
<string name="move_maps_error">Error al mover los archivos de mapas</string>
<!-- Ask user to wait several minutes (some long process in modal dialog). -->
<string name="wait_several_minutes">Esto podría tardar varios minutos. \nAguarda un momento…</string>
<string name="wait_several_minutes">Esto podría tardar varios minutos. \nAguarde un momento…</string>
<!-- Measurement units title in settings activity -->
<string name="measurement_units">Unidades de medida</string>
<!-- Detailed description of Measurement Units settings button -->
@@ -119,7 +119,7 @@
<!-- Search category for public transport; any changes should be duplicated in categories.txt @category_transport! -->
<string name="category_transport">Transporte</string>
<!-- Search category for fuel stations; any changes should be duplicated in categories.txt @category_fuel! -->
<string name="category_fuel">Estación de Servicio</string>
<string name="category_fuel">Gasolinera</string>
<!-- Search category for parking lots; any changes should be duplicated in categories.txt @category_parking! -->
<string name="category_parking">Aparcamiento</string>
<!-- Search category for malls/clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @category_shopping! -->
@@ -163,11 +163,11 @@
<string name="description">Notas</string>
<!-- Email Subject when sharing bookmark list -->
<string name="share_bookmarks_email_subject">Marcadores de CoMaps compartidos con usted</string>
<string name="share_bookmarks_email_body">¡Hola! \n\nAdjunto mis marcadores de la aplicación CoMaps. Por favor, ábralos si tiene instalado CoMaps. O, si no lo tiene, descargue la aplicación para su dispositivo iOS o Android siguiendo este enlace: https://www.comaps.app/es/download/ \n\n¡Disfrute viajando con CoMaps!</string>
<string name="share_bookmarks_email_body">¡Hola! \n\nAdjunto mis marcadores de la aplicación CoMaps. Por favor, ábralos si tiene instalado CoMaps. O, si no lo tiene, descargue la aplicación para su dispositivo iOS o Android siguiendo este enlace: https://www.comaps.app/download/ \n\n¡Disfrute viajando con CoMaps!</string>
<!-- message title of loading file -->
<string name="load_kmz_title">Cargando marcadores</string>
<!-- Kmz file successful loading -->
<string name="load_kmz_successful">¡Los marcadores se han cargado con éxito! Puedes encontrarlos en el mapa o en la pantalla de Gestor de Marcadores.</string>
<string name="load_kmz_successful">¡Los marcadores se han cargado con éxito! Puede encontrarlos en el mapa o en la pantalla de Gestión de marcadores.</string>
<!-- Kml file loading failed -->
<string name="load_kmz_failed">No se pudieron cargar los marcadores. El archivo podría tener daños o defectos.</string>
<!-- Failed to recognize the format of a bookmarks or tracks file. -->
@@ -177,7 +177,7 @@
<!-- resource for context menu -->
<string name="edit">Editar</string>
<!-- Warning message when doing search around current position -->
<string name="unknown_current_position">Aún no se ha determinado tu ubicación</string>
<string name="unknown_current_position">Aún no se ha determinado su ubicación</string>
<!-- Alert message that we can't run Map Storage settings due to some reasons. -->
<string name="cant_change_this_setting">Lo sentimos, la configuración del almacenamiento de mapas está desactivada</string>
<!-- Alert message that downloading is in progress. -->
@@ -193,7 +193,7 @@
<!-- Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. -->
<string name="share">Compartir</string>
<!-- Share by email button text, also used in editor and About. -->
<string name="email">Correo electrónico</string>
<string name="email">Correo</string>
<!-- Text for message when used successfully copied something -->
<string name="copied_to_clipboard">Copiado en el portapapeles: %s</string>
<!-- Used for bookmark editing -->
@@ -203,7 +203,7 @@
<!-- Confirmation for OpenStreetMap log out. -->
<string name="osm_log_out_confirmation">¿Quiere salir de su cuenta de OpenStreetMap?</string>
<!-- Title for tracks category in bookmarks manager -->
<string name="tracks_title">Trazas</string>
<string name="tracks_title">Trayectos</string>
<!-- Length of track in cell that describes route -->
<string name="length">Longitud</string>
<string name="share_my_location">Compartir mi ubicación</string>
@@ -305,13 +305,13 @@
<!-- Preference title -->
<!-- Preference description -->
<!-- Text for routing error dialog -->
<string name="routing_download_maps_along">Descarga todos los mapas de tu ruta</string>
<string name="routing_download_maps_along">Descargue todos los mapas de su ruta</string>
<!-- Text for routing error dialog -->
<string name="routing_requires_all_map">Para crear una ruta es necesario descargar y actualizar todos los mapas desde su ubicación a su destino.</string>
<!-- Text for routing error dialog -->
<string name="routing_not_enough_space">No hay suficiente espacio</string>
<!-- location service disabled -->
<string name="enable_location_services">Por favor, activa los Servicios de Localización</string>
<string name="enable_location_services">Por favor, active los servicios de localización</string>
<string name="save">Guardar</string>
<string name="create">crear</string>
<!-- red color -->
@@ -355,9 +355,9 @@
<string name="dialog_routing_disclaimer_beware">¡Manténgase alerta y a salvo durante el viaje!</string>
<string name="dialog_routing_check_gps">Verificar la señal del GPS</string>
<string name="dialog_routing_error_location_not_found">No se puede crear la ruta. No se pudieron identificar las coordenadas actuales del GPS.</string>
<string name="dialog_routing_location_turn_wifi">Verifica la señal del GPS. Activar la Wi-Fi mejorará la precisión de su ubicación.</string>
<string name="dialog_routing_location_turn_wifi">Verifique la señal del GPS. Activar la Wi-Fi mejorará la precisión de su ubicación.</string>
<string name="dialog_routing_location_turn_on">Activar servicios de ubicación</string>
<string name="dialog_routing_location_unknown_turn_on">No se pueden encontrar las coordenadas del GPS. Activa los servicios de ubicación para calcular la ruta.</string>
<string name="dialog_routing_location_unknown_turn_on">No se pueden encontrar las coordenadas del GPS. Active los servicios de ubicación para calcular la ruta.</string>
<string name="dialog_routing_unable_locate_route">Imposible de encontrar una ruta</string>
<string name="dialog_routing_cant_build_route">No se puede crear la ruta</string>
<string name="dialog_routing_change_start_or_end">Ajuste su punto de inicio o su destino.</string>

View File

@@ -4,7 +4,7 @@
<string name="type.addr_interpolation">Dirección/manzana</string>
<string name="type.addr_interpolation.even">Dirección/manzana</string>
<string name="type.addr_interpolation.odd">Dirección/manzana</string>
<string name="type.aerialway">Transporte por Cable</string>
<string name="type.aerialway">Transporte aéreo</string>
<string name="type.aerialway.cable_car">Teleférico</string>
<string name="type.aerialway.chair_lift">Telesilla</string>
<string name="type.aerialway.drag_lift">Telesquí</string>
@@ -37,7 +37,7 @@
<string name="type.amenity.cafe">Café</string>
<string name="type.amenity.car_rental">Alquiler de coches</string>
<string name="type.amenity.motorcycle_rental">Alquiler de motocicletas</string>
<string name="type.amenity.car_sharing">Car Sharing</string>
<string name="type.amenity.car_sharing">Compartir coche</string>
<string name="type.amenity.car_wash">Lavado de coches</string>
<string name="type.amenity.casino">Casino</string>
<string name="type.amenity.gambling">Juegos de apuestas</string>
@@ -50,7 +50,7 @@
<string name="type.amenity.cinema">Cine</string>
<string name="type.leisure.bowling_alley">Bolera</string>
<string name="type.amenity.clinic">Clínica</string>
<string name="type.amenity.college">Facultad</string>
<string name="type.amenity.college">Colegio</string>
<string name="type.amenity.community_centre">Centro comunitario</string>
<string name="type.amenity.compressed_air">Aire comprimido</string>
<string name="type.amenity.conference_centre">Centro de conferencias</string>
@@ -180,7 +180,7 @@
<string name="type.amenity.vending_machine.excrement_bags">Maquina expendedora de bolsas para excrementos</string>
<string name="type.amenity.parcel_locker">Taquilla de paquetes</string>
<string name="type.amenity.vehicle_inspection">Inspección de vehículos</string>
<string name="type.amenity.vending_machine.fuel">Surtidor de combustible</string>
<string name="type.amenity.vending_machine.fuel">Maquina expendedora de combustible</string>
<string name="type.amenity.veterinary">Clínica veterinaria</string>
<string name="type.amenity.waste_basket">Papelera</string>
<string name="type.amenity.waste_disposal">Contenedor de basura</string>
@@ -1359,29 +1359,6 @@
<string name="type.man_made.utility_pole">Poste</string>
<string name="type.railway.abandoned.tunnel">Túnel ferroviario abandonado</string>
<string name="type.railway.abandoned.bridge">Puente ferroviario abandonado</string>
<string name="type.highway.world_level">highway-world_level</string>
<string name="type.hwtag">hwtag</string>
<string name="type.hwtag.bidir_bicycle">hwtag-bidir_bicycle</string>
<string name="type.hwtag.lit">hwtag-lit</string>
<string name="type.hwtag.private">hwtag-private</string>
<string name="type.hwtag.toll">hwtag-toll</string>
<string name="type.hwtag.yesbicycle">hwtag-yesbicycle</string>
<string name="type.hwtag.yescar">hwtag-yescar</string>
<string name="type.psurface">psurface</string>
<string name="type.psurface.paved_bad">psurface-paved_bad</string>
<string name="type.psurface.unpaved_good">psurface-unpaved_good</string>
<string name="type.hwtag.nocar">hwtag-nocar</string>
<string name="type.hwtag.nofoot">hwtag-nofoot</string>
<string name="type.psurface.unpaved_bad">psurface-unpaved_bad</string>
<string name="type.psurface.paved_good">psurface-paved_good</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.hwtag.onedir_bicycle">hwtag-onedir_bicycle</string>
<string name="type.hwtag.yesfoot">hwtag-yesfoot</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.hwtag.nobicycle">hwtag-nobicycle</string>
<string name="type.hwtag.oneway">hwtag-oneway</string>
<string name="type.route.shuttle_train">route-shuttle_train</string>
<string name="type.highway.world_towns_level">highway-world_towns_level</string>
<string name="type.railway.funicular.bridge">Puente de funicular</string>
<string name="type.railway.funicular.tunnel">Túnel de funicular</string>
<string name="type.railway.light_rail.tunnel">Túnel de tren ligero</string>

View File

@@ -799,7 +799,6 @@
<string name="type.power.substation">Alajaam</string>
<!-- A tower or pylon carrying high voltage electricity cables. -->
<string name="type.power.tower">Kõrgepingemast</string>
<string name="type.psurface">Pind</string>
<string name="type.public_transport">Ühistransport</string>
<string name="type.public_transport.platform">Ooteplatvorm</string>
<string name="type.railway">Raudtee</string>
@@ -1369,28 +1368,6 @@
<string name="type.attraction.bumper_car">Autodroom</string>
<string name="type.fee.yes">$ / €</string>
<string name="type.leisure.hackerspace">Häkkerite ühisruum</string>
<string name="type.route.shuttle_train">route-shuttle_train</string>
<string name="type.hwtag.bidir_bicycle">hwtag-bidir_bicycle</string>
<string name="type.highway.world_level">highway-world_level</string>
<string name="type.hwtag">hwtag</string>
<string name="type.hwtag.onedir_bicycle">hwtag-onedir_bicycle</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.psurface.paved_bad">psurface-paved_bad</string>
<string name="type.psurface.paved_good">psurface-paved_good</string>
<string name="type.hwtag.nocar">hwtag-nocar</string>
<string name="type.hwtag.yesbicycle">hwtag-yesbicycle</string>
<string name="type.hwtag.nofoot">hwtag-nofoot</string>
<string name="type.hwtag.lit">hwtag-lit</string>
<string name="type.psurface.unpaved_good">psurface-unpaved_good</string>
<string name="type.psurface.unpaved_bad">psurface-unpaved_bad</string>
<string name="type.hwtag.yesfoot">hwtag-yesfoot</string>
<string name="type.highway.world_towns_level">highway-world_towns_level</string>
<string name="type.hwtag.oneway">hwtag-oneway</string>
<string name="type.hwtag.private">hwtag-private</string>
<string name="type.hwtag.toll">hwtag-toll</string>
<string name="type.hwtag.yescar">hwtag-yescar</string>
<string name="type.hwtag.nobicycle">hwtag-nobicycle</string>
<string name="type.sport.diving">Vettehüpped</string>
<string name="type.leisure.firepit">Tulease</string>
<string name="type.amenity.love_hotel">Armuhotell</string>

View File

@@ -1241,7 +1241,6 @@
<string name="type.highway.bridleway.permissive">Zaldi-bidea</string>
<string name="type.amenity.bicycle_repair_station">Bizikleta konponketa gunea</string>
<string name="type.highway.services">Zerbitzugunea</string>
<string name="type.highway.world_level">Mundu mailako errepidea</string>
<string name="type.internet_access.wlan">Wi-Fia</string>
<string name="type.junction">Bidegurutzea</string>
<string name="type.landuse.allotments">Baratze komunitatea</string>
@@ -1271,7 +1270,6 @@
<string name="type.landuse.garages">Garajeak</string>
<string name="type.railway.narrow_gauge.bridge">Zabalera estuko trenbide-zubia</string>
<string name="type.landuse">Lurzoruaren erabilera</string>
<string name="type.highway.world_towns_level">Herri mailako errepidea</string>
<string name="type.landuse.commercial">Komertzial-gunea</string>
<string name="type.landuse.military">Militar-gunea</string>
<string name="type.leisure.recreation_ground">Parkea</string>
@@ -1339,13 +1337,11 @@
<string name="type.tourism.zoo">Zoo</string>
<string name="type.railway.tram">Tranbia bidea</string>
<string name="type.man_made.survey_point">Markatze-puntua</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.man_made">Artifiziala</string>
<string name="type.amenity.love_hotel">Maitasun hotela</string>
<string name="type.noexit">Irteerarik gabeko bidea</string>
<string name="type.leisure.escape_game">Escape Room</string>
<string name="type.landuse.religious">Eremu erlijiosoa</string>
<string name="type.mapswithme.grid">mapswithme-sareta</string>
<string name="type.amenity.bicycle_parking.covered">Txirrinduen aparkaleku estalia</string>
<string name="type.amenity.luggage_locker">Ekipaje-kontsigna</string>
<string name="type.natural.wetland.saltmarsh">Gatz-padura</string>

View File

@@ -1091,6 +1091,5 @@
<!-- https://wiki.openstreetmap.org/wiki/Tag:leisure=sports_hall -->
<string name="type.leisure.sports_hall">سالن ورزشی</string>
<string name="type.man_made.silo">سیلو</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.man_made.storage_tank">مخازن سیال</string>
</resources>

View File

@@ -1313,27 +1313,12 @@
<string name="type.aeroway">Airspace Infrastructure</string>
<string name="type.aeroway.apron">Lentokentän asemataso</string>
<string name="type.amenity.vending_machine.excrement_bags">Koirankakkapussiautomaatti</string>
<string name="type.hwtag.yescar">hwtag-yescar</string>
<string name="type.amenity.biergarten">Olutpuutarha</string>
<string name="type.highway.ladder">Tikapuut</string>
<string name="type.hwtag.yesfoot">hwtag-yesfoot</string>
<string name="type.landuse.plant_nursery">Kasvitarha</string>
<string name="type.highway.world_towns_level">highway-world_towns_level</string>
<string name="type.cuisine.fish_and_chips">Fish and Chips</string>
<string name="type.highway.world_level">highway-world_level</string>
<string name="type.hwtag.bidir_bicycle">hwtag-bidir_bicycle</string>
<string name="type.hwtag.private">hwtag-private</string>
<string name="type.hwtag">hwtag</string>
<string name="type.amenity.studio">Studio</string>
<string name="type.barrier.guard_rail">Tiekaide</string>
<string name="type.hwtag.onedir_bicycle">hwtag-onedir_bicycle</string>
<string name="type.hwtag.lit">hwtag-lit</string>
<string name="type.hwtag.nobicycle">hwtag-nobicycle</string>
<string name="type.hwtag.nocar">hwtag-nocar</string>
<string name="type.hwtag.nofoot">hwtag-nofoot</string>
<string name="type.hwtag.oneway">hwtag-oneway</string>
<string name="type.hwtag.toll">hwtag-toll</string>
<string name="type.hwtag.yesbicycle">hwtag-yesbicycle</string>
<string name="type.leisure.firepit">Tulentekopaikka</string>
<string name="type.leisure">Leisure</string>
<string name="type.internet_access">Internet</string>
@@ -1350,15 +1335,7 @@
<string name="type.internet_access.wlan">Internet</string>
<string name="type.man_made">Man Made</string>
<string name="type.fee.yes">$</string>
<string name="type.psurface.paved_bad">psurface-paved_bad</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.organic.yes">Luomu</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.psurface.paved_good">psurface-paved_good</string>
<string name="type.psurface.unpaved_bad">psurface-unpaved_bad</string>
<string name="type.psurface">psurface</string>
<string name="type.route.shuttle_train">route-shuttle_train</string>
<string name="type.psurface.unpaved_good">psurface-unpaved_good</string>
<string name="type.leisure.common">Julkinen paikka</string>
<string name="type.leisure.track">Juoksurata</string>
<string name="type.leisure.track.area">Juoksurata</string>

View File

@@ -240,7 +240,7 @@
<!-- Settings «Route» category: «Tts language» title -->
<string name="pref_tts_language_title">Langue vocale</string>
<!-- Settings «Route» category: «Test Voice Directions» title -->
<string name="pref_tts_test_voice_title">Tester les instructions vocales</string>
<string name="pref_tts_test_voice_title">Teste les instructions vocales (TTS, Text-To-Speech)</string>
<!-- Settings «Route» category: Pop-up message when clicking «Test Voice Directions» -->
<string name="pref_tts_playing_test_voice">Vérifiez le volume ou les paramètres de synthèse vocale du système si vous n\'entendez pas la voix maintenant</string>
<!-- Settings «Route» category: «Tts unavailable» subtitle -->
@@ -504,7 +504,7 @@
<!-- Error message in Editor when a user tries to set the number of floors for a building higher than %d floors -->
<string name="error_enter_correct_storey_number">Le nombre d\'étages ne doit pas dépasser %d</string>
<string name="editor_zip_code">Code postal</string>
<string name="error_enter_correct_zip_code">Saisissez un code postal valide</string>
<string name="error_enter_correct_zip_code">Entrer un code postal valide</string>
<!-- Place Page title for long tap -->
<string name="core_placepage_unknown_place">Point sur la carte</string>
<!-- Title for OSM note section in the editor -->

View File

@@ -1368,36 +1368,13 @@
<string name="type.wheelchair">Fauteuil roulant</string>
<string name="type.aerialway.platter">Téléski</string>
<string name="type.aerialway.rope_tow">Télésiège</string>
<string name="type.highway.world_level">highway-world_level</string>
<string name="type.highway.world_towns_level">highway-world_towns_level</string>
<string name="type.psurface.unpaved_bad">psurface-unpaved_bad</string>
<string name="type.route">Itinéraire</string>
<string name="type.hwtag.bidir_bicycle">hwtag-bidir_bicycle</string>
<string name="type.hwtag.onedir_bicycle">hwtag-onedir_bicycle</string>
<string name="type.hwtag.lit">hwtag-lit</string>
<string name="type.hwtag.nobicycle">hwtag-nobicycle</string>
<string name="type.hwtag.nocar">hwtag-nocar</string>
<string name="type.hwtag.nofoot">hwtag-nofoot</string>
<string name="type.hwtag.oneway">hwtag-oneway</string>
<string name="type.hwtag.private">hwtag-private</string>
<string name="type.hwtag.toll">hwtag-toll</string>
<string name="type.hwtag.yesbicycle">hwtag-yesbicycle</string>
<string name="type.hwtag.yescar">hwtag-yescar</string>
<string name="type.hwtag.yesfoot">hwtag-yesfoot</string>
<string name="type.internet_access">Internet</string>
<string name="type.internet_access.wlan">Internet</string>
<string name="type.landuse.village_green">Terrain</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.military.bunker">Bunker</string>
<string name="type.psurface">psurface</string>
<string name="type.psurface.paved_bad">psurface-paved_bad</string>
<string name="type.psurface.paved_good">psurface-paved_good</string>
<string name="type.psurface.unpaved_good">psurface-unpaved_good</string>
<string name="type.route.shuttle_train">route-shuttle_train</string>
<string name="type.shop.bookmaker">Bookmaker</string>
<string name="type.tourism.attraction">Attraction</string>
<string name="type.hwtag">hwtag</string>
<string name="type.man_made.crane">Grue</string>
<string name="type.railway.station.subway.qingdao">Station de métro</string>
<string name="type.landuse.religious">Terre religieuse</string>

View File

@@ -474,8 +474,6 @@
<string name="type.area_highway.track">Pista</string>
<string name="type.area_highway.trunk">Vía troncal</string>
<string name="type.area_highway.unclassified">Estrada sen clasificar</string>
<string name="type.highway.world_level">highway-world_level</string>
<string name="type.highway.world_towns_level">highway-world_towns_level</string>
<string name="type.historic">Obxecto histórico</string>
<string name="type.historic.aircraft">Avión histórico</string>
<string name="type.historic.anchor">Ancora histórica</string>
@@ -518,19 +516,6 @@
<string name="type.historic.wayside_cross">Cruz de termo</string>
<string name="type.historic.wayside_shrine">Peto de ánimas</string>
<string name="type.historic.wreck">Naufraxio</string>
<string name="type.hwtag">hwtag</string>
<string name="type.hwtag.bidir_bicycle">hwtag-bidir_bicycle</string>
<string name="type.hwtag.onedir_bicycle">hwtag-onedir_bicycle</string>
<string name="type.hwtag.lit">hwtag-lit</string>
<string name="type.hwtag.nobicycle">hwtag-nobicycle</string>
<string name="type.hwtag.nocar">hwtag-nocar</string>
<string name="type.hwtag.nofoot">hwtag-nofoot</string>
<string name="type.hwtag.oneway">hwtag-oneway</string>
<string name="type.hwtag.private">hwtag-private</string>
<string name="type.hwtag.toll">hwtag-toll</string>
<string name="type.hwtag.yesbicycle">hwtag-yesbicycle</string>
<string name="type.hwtag.yescar">hwtag-yescar</string>
<string name="type.hwtag.yesfoot">hwtag-yesfoot</string>
<string name="type.internet_access">Internet</string>
<string name="type.internet_access.wlan">Internet</string>
<string name="type.junction">Cruce</string>
@@ -633,8 +618,6 @@
<string name="type.man_made.water_well.drinking_water_no">Pozo</string>
<string name="type.man_made.windmill">Muíño</string>
<string name="type.man_made.works">Fábrica</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.military">Militar</string>
<string name="type.military.bunker">Búnker</string>
<string name="type.mountain_pass">Porto de montaña</string>
@@ -743,11 +726,6 @@
<string name="type.power.tower">Torre eléctrica</string>
<string name="type.power.pole">Poste eléctrico</string>
<string name="type.man_made.utility_pole">Poste</string>
<string name="type.psurface">psurface</string>
<string name="type.psurface.paved_bad">psurface-paved_bad</string>
<string name="type.psurface.paved_good">psurface-paved_good</string>
<string name="type.psurface.unpaved_bad">psurface-unpaved_bad</string>
<string name="type.psurface.unpaved_good">psurface-unpaved_good</string>
<string name="type.public_transport">Transporte público</string>
<string name="type.railway.abandoned">Vía férrea abandonada</string>
<string name="type.railway.abandoned.bridge">Puente ferroviario abandonado</string>
@@ -1039,7 +1017,6 @@
<string name="type.railway.tram_stop">Parada de tranvía</string>
<string name="type.route">Roteiro</string>
<string name="type.route.ferry">Roteiro de ferry</string>
<string name="type.route.shuttle_train">route-lanzadeira_train</string>
<string name="type.shop">Tenda</string>
<string name="type.shop.alcohol">Licorería</string>
<string name="type.shop.bakery">Panadería</string>

View File

@@ -430,7 +430,6 @@
<string name="type.area_highway.track">Forst-/Feldweg</string>
<string name="type.area_highway.trunk">Autostrass</string>
<string name="type.area_highway.unclassified">Näbestrass</string>
<string name="type.highway.world_level">highway-world_level</string>
<string name="type.historic">Historischs Objekt</string>
<string name="type.historic.aircraft">Historischs Flugzüüg</string>
<string name="type.historic.anchor">Historische Anker</string>
@@ -469,18 +468,6 @@
<string name="type.historic.wayside_cross">Wegchrüz</string>
<string name="type.historic.wayside_shrine">Wegkapelle</string>
<string name="type.historic.wreck">Schiffswrack</string>
<string name="type.hwtag">hwtag</string>
<string name="type.hwtag.bidir_bicycle">hwtag-bidir_bicycle</string>
<string name="type.hwtag.onedir_bicycle">hwtag-onedir_bicycle</string>
<string name="type.hwtag.lit">hwtag-lit</string>
<string name="type.hwtag.nobicycle">hwtag-nobicycle</string>
<string name="type.hwtag.nocar">hwtag-nocar</string>
<string name="type.hwtag.nofoot">hwtag-nofoot</string>
<string name="type.hwtag.oneway">hwtag-oneway</string>
<string name="type.hwtag.private">hwtag-private</string>
<string name="type.hwtag.toll">hwtag-toll</string>
<string name="type.hwtag.yesbicycle">hwtag-yesbicycle</string>
<string name="type.hwtag.yescar">hwtag-yescar</string>
<string name="type.internet_access">Internet</string>
<string name="type.internet_access.wlan">Internet</string>
<string name="type.junction">Chrüzig</string>
@@ -576,8 +563,6 @@
<string name="type.man_made.water_well.drinking_water_no">Brunne</string>
<string name="type.man_made.windmill">Windmühli</string>
<string name="type.man_made.works">Fabrik</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.military">Militärischs Objekt</string>
<string name="type.mountain_pass">Gebirgspass</string>
<string name="type.natural">Natur</string>
@@ -678,11 +663,6 @@
<string name="type.power.substation">Umspannwerch</string>
<string name="type.power.tower">Hochspannigsmascht</string>
<string name="type.power.pole">Strommascht</string>
<string name="type.psurface">psurface</string>
<string name="type.psurface.paved_bad">psurface-paved_bad</string>
<string name="type.psurface.paved_good">psurface-paved_good</string>
<string name="type.psurface.unpaved_bad">psurface-unpaved_bad</string>
<string name="type.psurface.unpaved_good">psurface-unpaved_good</string>
<string name="type.public_transport">Öffentliche Verchehr</string>
<string name="type.public_transport.platform">Plattform</string>
<string name="type.railway">Isebahn</string>
@@ -822,7 +802,6 @@
<string name="type.craft.gardener">Landschaftsgärtner</string>
<string name="type.entrance.main">Hauptiigang</string>
<string name="type.highway.steps.tunnel">Tunnel</string>
<string name="type.highway.world_towns_level">highway-world_towns_level</string>
<string name="type.leisure.picnic_table">Picknicktisch</string>
<string name="type.man_made.communications_tower">Funkturm</string>
<string name="type.place.hamlet">Wiiler</string>
@@ -858,7 +837,6 @@
<string name="type.railway.rail.highspeed">Höchgschwindigkeitsisebahn</string>
<string name="type.area_highway.primary">Hauptstrass</string>
<string name="type.man_made.cross">Chrüz</string>
<string name="type.hwtag.yesfoot">hwtag-yesfoot</string>
<string name="type.leisure.swimming_pool">Schwümmbecki</string>
<string name="type.man_made.survey_point">Vermessigspunkt</string>
<string name="type.railway.funicular.bridge">Standseilbahnbrugg</string>
@@ -983,7 +961,6 @@
<string name="type.railway.tram.tunnel">Tramtunnel</string>
<string name="type.route">Route</string>
<string name="type.route.ferry">Fähre</string>
<string name="type.route.shuttle_train">route-shuttle_train</string>
<string name="type.shop">Gschäft</string>
<string name="type.shop.alcohol">Spirituosegschäft</string>
<string name="type.shop.bakery">Bäckerei</string>

View File

@@ -665,5 +665,4 @@
<string name="type.amenity.dojo">डोजो</string>
<!-- https://wiki.openstreetmap.org/wiki/Tag:leisure=sports_hall -->
<string name="type.leisure.sports_hall">खेल हॉल</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -2,5 +2,4 @@
<resources>
<string name="type.leisure.hackerspace">Hackerspace</string>
<string name="type.man_made.silo">Silo</string>
<string name="type.mapswithme">MapsWithMe</string>
</resources>

View File

@@ -1238,9 +1238,6 @@
<string name="type.highway.elevator">Felvonó</string>
<string name="type.highway.services">Pihenőhely</string>
<string name="type.area_highway.cycleway">Kerékpárút</string>
<string name="type.hwtag.oneway">egyirányú</string>
<string name="type.hwtag.private">magán</string>
<string name="type.hwtag.toll">útdíjjas</string>
<string name="type.internet_access.wlan">Internetcsatlakozás</string>
<string name="type.landuse">Területhasználat</string>
<string name="type.landuse.allotments">Kiskertek</string>
@@ -1355,37 +1352,17 @@
<string name="type.wheelchair">Akadálymentesség</string>
<string name="type.aerialway.platter">Tányéros sífelvonó</string>
<string name="type.aerialway.t.bar">Csákányos sífelvonó</string>
<string name="type.highway.world_level">út-világszint</string>
<string name="type.highway.world_towns_level">út-világvárosok szint</string>
<string name="type.hwtag">útcímke</string>
<string name="type.hwtag.bidir_bicycle">útcímke-kétirányú_kerékpárút</string>
<string name="type.hwtag.onedir_bicycle">útcímke-egyirányú_kerékpárút</string>
<string name="type.hwtag.yesbicycle">útcímke-kerékpárral_használható</string>
<string name="type.hwtag.yesfoot">útcímke-gyalogosan_használható</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.mapswithme.grid">mapswithme-rács</string>
<string name="type.psurface">felület</string>
<string name="type.psurface.paved_bad">felület-burkolt_rossz</string>
<string name="type.psurface.paved_good">felület-burkolt_jó</string>
<string name="type.psurface.unpaved_bad">felület-burkolatlan_rossz</string>
<string name="type.psurface.unpaved_good">felület-burkolatlan_jó</string>
<string name="type.piste_type.downhill">Sípálya</string>
<string name="type.piste_type.downhill.advanced.area">Sípálya tapasztaltaknak</string>
<string name="type.piste_type.downhill.expert">Sípálya szakértőknek</string>
<string name="type.piste_type.downhill.novice">Sípálya kezdőknek</string>
<string name="type.piste_type.downhill.novice.area">Sípálya kezdőknek</string>
<string name="type.piste_type.downhill.intermediate">Sípálya középhaladóknak</string>
<string name="type.hwtag.yescar">útcímke-személyautóval_használható</string>
<string name="type.hwtag.lit">útcímke-megvilágítás</string>
<string name="type.hwtag.nobicycle">útcímke-kerékpárral_nem_használható</string>
<string name="type.route.shuttle_train">útvonal-ingajáratú_vonat</string>
<string name="type.piste_type.downhill.area">Sípálya</string>
<string name="type.piste_type.downhill.advanced">Sípálya tapasztaltaknak</string>
<string name="type.piste_type.downhill.easy">Sípálya újoncoknak</string>
<string name="type.piste_type.downhill.expert.area">Sípálya szakértőknek</string>
<string name="type.piste_type.downhill.intermediate.area">Sípálya középhaladóknak</string>
<string name="type.piste_type.downhill.easy.area">Sípálya újoncoknak</string>
<string name="type.hwtag.nocar">útcímke-személyautóval_nem_használható</string>
<string name="type.hwtag.nofoot">útcímke-gyalogosan_nem_használható</string>
<string name="type.piste_type.downhill.freeride">Természetes eredetű sípálya</string>
</resources>

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.addr_interpolation">Adresse/Bloco</string>
<string name="type.addr_interpolation.even">Adresse/Bloco</string>
</resources>

View File

@@ -1166,6 +1166,5 @@
<!-- https://wiki.openstreetmap.org/wiki/Tag:leisure=sports_hall -->
<string name="type.leisure.sports_hall">Ruang olahraga</string>
<string name="type.leisure.hackerspace">Hackerspace</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.man_made.silo">Silo</string>
</resources>

View File

@@ -1203,14 +1203,6 @@
<string name="type.self_service.yes">Sjálfsafgreiðsla tiltæk</string>
<string name="type.self_service.only">Einungis sjálfsafgreiðsla</string>
<string name="type.self_service.partially">Sjálfsafgreiðsla að hluta</string>
<string name="type.hwtag.nobicycle">hwtag-nobicycle</string>
<string name="type.hwtag.nofoot">hwtag-nofoot</string>
<string name="type.hwtag.oneway">hwtag-oneway</string>
<string name="type.hwtag.private">hwtag-private</string>
<string name="type.hwtag.toll">hwtag-toll</string>
<string name="type.hwtag.yesbicycle">hwtag-yesbicycle</string>
<string name="type.hwtag.yescar">hwtag-yescar</string>
<string name="type.hwtag.yesfoot">hwtag-yesfoot</string>
<string name="type.railway.preserved">Varðveitt lestarspor</string>
<string name="type.railway.preserved.bridge">Varðveitt lestarbrú</string>
<string name="type.railway.preserved.tunnel">Varðveitt lestargöng</string>
@@ -1224,24 +1216,10 @@
<string name="type.craft.confectionery">Smáréttagerð</string>
<string name="type.healthcare.sample_collection">Söfnunarmiðstöð sýna</string>
<string name="type.healthcare.speech_therapist">Talmeinafræði</string>
<string name="type.highway.world_level">highway-world_level</string>
<string name="type.highway.world_towns_level">highway-world_towns_level</string>
<string name="type.historic.castle.hillfort">Víggirt hæð</string>
<string name="type.historic.castle.stately">Kastalasetur</string>
<string name="type.hwtag">hwtag</string>
<string name="type.hwtag.bidir_bicycle">hwtag-bidir_bicycle</string>
<string name="type.hwtag.onedir_bicycle">hwtag-onedir_bicycle</string>
<string name="type.hwtag.lit">hwtag-lit</string>
<string name="type.hwtag.nocar">hwtag-nocar</string>
<string name="type.landuse.railway">Járnbrautasvæði</string>
<string name="type.mapswithme">MapsWithMe</string>
<string name="type.mapswithme.grid">mapswithme-grid</string>
<string name="type.natural.water.lock">Skipastigahólf</string>
<string name="type.psurface">psurface</string>
<string name="type.psurface.paved_bad">psurface-paved_bad</string>
<string name="type.psurface.paved_good">psurface-paved_good</string>
<string name="type.psurface.unpaved_bad">psurface-unpaved_bad</string>
<string name="type.psurface.unpaved_good">psurface-unpaved_good</string>
<string name="type.railway.funicular.bridge">Dráttarlestarbrú</string>
<string name="type.railway.funicular.tunnel">Dráttarlestargöng</string>
<string name="type.railway.halt">Járnbrautarstopp</string>
@@ -1259,7 +1237,6 @@
<string name="type.railway.subway_entrance.london">Inngangur í neðanjarðarlest</string>
<string name="type.railway.tram.bridge">Sporvagnabrú</string>
<string name="type.railway.tram.tunnel">Sporvagnagöng</string>
<string name="type.route.shuttle_train">route-shuttle_train</string>
<string name="type.shop.houseware">Búsáhaldaverslun</string>
<string name="type.shop.craft">Handverksvöruverslun</string>
<string name="type.shop.tobacco">Reykingaverslun</string>

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