From 1caf64e315c988cd8d5196c80be96efec6c74ccc Mon Sep 17 00:00:00 2001 From: "S. Kozyr" Date: Tue, 3 Dec 2024 10:41:01 +0200 Subject: [PATCH 1/8] Fix attribute `a_position` assignment for OpenGL vertex shader Signed-off-by: S. Kozyr --- qt/qt_common/map_widget.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/qt/qt_common/map_widget.cpp b/qt/qt_common/map_widget.cpp index dadde24a21..0395988cff 100644 --- a/qt/qt_common/map_widget.cpp +++ b/qt/qt_common/map_widget.cpp @@ -267,6 +267,10 @@ void MapWidget::Build() QVector4D(-1.0, -1.0, 0.0, 0.0), QVector4D(1.0, -1.0, 1.0, 0.0)}; m_vbo->allocate(static_cast(vertices), sizeof(vertices)); + QOpenGLFunctions *f = QOpenGLContext::currentContext()->functions(); + f->glEnableVertexAttribArray(0); + f->glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, 4 * sizeof(GLfloat), nullptr); + m_vbo->release(); m_program->release(); m_vao->release(); @@ -420,10 +424,7 @@ void MapWidget::paintGL() int const samplerSizeLocation = m_program->uniformLocation("u_samplerSize"); m_program->setUniformValue(samplerSizeLocation, samplerSize); - m_program->enableAttributeArray("a_position"); - m_program->setAttributeBuffer("a_position", GL_FLOAT, 0, 4, 0); - - funcs->glClearColor(0.0, 0.0, 0.0, 1.0); + funcs->glClearColor(0.5, 0.5, 0.5, 1.0); funcs->glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); funcs->glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); -- 2.45.3 From 362138160df3d7a35b35bb9a7b2be1de8f825b49 Mon Sep 17 00:00:00 2001 From: "S. Kozyr" Date: Tue, 3 Dec 2024 15:07:22 +0200 Subject: [PATCH 2/8] Added comments to new lines. Added reference to the PR Signed-off-by: S. Kozyr --- qt/qt_common/map_widget.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qt/qt_common/map_widget.cpp b/qt/qt_common/map_widget.cpp index 0395988cff..7d7ab8f432 100644 --- a/qt/qt_common/map_widget.cpp +++ b/qt/qt_common/map_widget.cpp @@ -268,8 +268,10 @@ void MapWidget::Build() QVector4D(1.0, -1.0, 1.0, 0.0)}; m_vbo->allocate(static_cast(vertices), sizeof(vertices)); QOpenGLFunctions *f = QOpenGLContext::currentContext()->functions(); + // 0-index of the buffer is linked to "a_position" attribute in vertex shader. + // Introduced in https://github.com/organicmaps/organicmaps/pull/9814 f->glEnableVertexAttribArray(0); - f->glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, 4 * sizeof(GLfloat), nullptr); + f->glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, sizeof(QVector4D), nullptr); m_vbo->release(); m_program->release(); -- 2.45.3 From b10af621baff013f2fdc88504b0dae63d9277669 Mon Sep 17 00:00:00 2001 From: "S. Kozyr" Date: Tue, 3 Dec 2024 15:10:57 +0200 Subject: [PATCH 3/8] Reverted color change Signed-off-by: S. Kozyr --- qt/qt_common/map_widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/qt_common/map_widget.cpp b/qt/qt_common/map_widget.cpp index 7d7ab8f432..31c6a56072 100644 --- a/qt/qt_common/map_widget.cpp +++ b/qt/qt_common/map_widget.cpp @@ -426,7 +426,7 @@ void MapWidget::paintGL() int const samplerSizeLocation = m_program->uniformLocation("u_samplerSize"); m_program->setUniformValue(samplerSizeLocation, samplerSize); - funcs->glClearColor(0.5, 0.5, 0.5, 1.0); + funcs->glClearColor(0.0, 0.0, 0.0, 1.0); funcs->glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); funcs->glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); -- 2.45.3 From 6a2e58168df2c5f9cd200b37ce8387790b58d9d4 Mon Sep 17 00:00:00 2001 From: "S. Kozyr" Date: Tue, 3 Dec 2024 15:33:35 +0200 Subject: [PATCH 4/8] Removed m_vbo->release() call Signed-off-by: S. Kozyr --- qt/qt_common/map_widget.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/qt/qt_common/map_widget.cpp b/qt/qt_common/map_widget.cpp index 31c6a56072..07da1e31f3 100644 --- a/qt/qt_common/map_widget.cpp +++ b/qt/qt_common/map_widget.cpp @@ -272,7 +272,6 @@ void MapWidget::Build() // Introduced in https://github.com/organicmaps/organicmaps/pull/9814 f->glEnableVertexAttribArray(0); f->glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, sizeof(QVector4D), nullptr); - m_vbo->release(); m_program->release(); m_vao->release(); -- 2.45.3 From 20aa24a74b190b060663afafb279d11641204840 Mon Sep 17 00:00:00 2001 From: map-per Date: Wed, 4 Dec 2024 08:15:56 +0100 Subject: [PATCH 5/8] EN as additional search language in the editor Signed-off-by: map-per --- .../src/main/cpp/app/organicmaps/editor/Editor.cpp | 13 ++++++++----- .../Editor/MWMObjectsCategorySelectorDataSource.mm | 1 + 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/android/app/src/main/cpp/app/organicmaps/editor/Editor.cpp b/android/app/src/main/cpp/app/organicmaps/editor/Editor.cpp index c8f9992770..a62eb8c21f 100644 --- a/android/app/src/main/cpp/app/organicmaps/editor/Editor.cpp +++ b/android/app/src/main/cpp/app/organicmaps/editor/Editor.cpp @@ -406,8 +406,10 @@ Java_app_organicmaps_editor_Editor_nativeGetAllCreatableFeatureTypes(JNIEnv * en jstring jLang) { std::string const & lang = jni::ToNativeString(env, jLang); - GetFeatureCategories().AddLanguage(lang); - return jni::ToJavaStringArray(env, GetFeatureCategories().GetAllCreatableTypeNames()); + auto & categories = GetFeatureCategories(); + categories.AddLanguage(lang); + categories.AddLanguage("en"); + return jni::ToJavaStringArray(env, categories.GetAllCreatableTypeNames()); } JNIEXPORT jobjectArray JNICALL @@ -416,9 +418,10 @@ Java_app_organicmaps_editor_Editor_nativeSearchCreatableFeatureTypes(JNIEnv * en jstring jLang) { std::string const & lang = jni::ToNativeString(env, jLang); - GetFeatureCategories().AddLanguage(lang); - return jni::ToJavaStringArray(env, - GetFeatureCategories().Search(jni::ToNativeString(env, query))); + auto & categories = GetFeatureCategories(); + categories.AddLanguage(lang); + categories.AddLanguage("en"); + return jni::ToJavaStringArray(env, categories.Search(jni::ToNativeString(env, query))); } JNIEXPORT jobjectArray JNICALL diff --git a/iphone/Maps/UI/Editor/MWMObjectsCategorySelectorDataSource.mm b/iphone/Maps/UI/Editor/MWMObjectsCategorySelectorDataSource.mm index 7db8e370d1..43e482f58c 100644 --- a/iphone/Maps/UI/Editor/MWMObjectsCategorySelectorDataSource.mm +++ b/iphone/Maps/UI/Editor/MWMObjectsCategorySelectorDataSource.mm @@ -50,6 +50,7 @@ std::string locale() { m_categories = GetFramework().GetEditorCategories(); m_categories.AddLanguage(locale()); + m_categories.AddLanguage("en"); auto const & types = m_categories.GetAllCreatableTypeNames(); m_categoriesList.reserve(types.size()); -- 2.45.3 From aa507ac3f533185931e5028eea79a96607c62bab Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Wed, 4 Dec 2024 01:31:01 +0300 Subject: [PATCH 6/8] =?UTF-8?q?Revert=20"[android]=20Remove=20a=20referral?= =?UTF-8?q?=20code=20from=20=E2=80=9CPhotos,=20reviews,=20booking=E2=80=9D?= =?UTF-8?q?"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit ee7e87fa1e3a991401bb077fa7331938aa7916c3. Signed-off-by: Konstantin Pastbin --- android/app/src/main/cpp/app/organicmaps/Framework.cpp | 5 ++--- android/app/src/main/java/app/organicmaps/Framework.java | 3 +-- .../app/src/main/java/app/organicmaps/MwmActivity.java | 2 +- .../java/app/organicmaps/bookmarks/data/MapObject.java | 4 +--- .../app/src/main/java/app/organicmaps/util/Config.java | 5 ----- indexer/kayak.cpp | 9 ++++----- indexer/kayak.hpp | 4 ++-- 7 files changed, 11 insertions(+), 21 deletions(-) diff --git a/android/app/src/main/cpp/app/organicmaps/Framework.cpp b/android/app/src/main/cpp/app/organicmaps/Framework.cpp index d1ec74cc4a..0b2acc3c91 100644 --- a/android/app/src/main/cpp/app/organicmaps/Framework.cpp +++ b/android/app/src/main/cpp/app/organicmaps/Framework.cpp @@ -1982,13 +1982,12 @@ Java_app_organicmaps_Framework_nativeMemoryWarning(JNIEnv *, jclass) JNIEXPORT jstring JNICALL Java_app_organicmaps_Framework_nativeGetKayakHotelLink(JNIEnv * env, jclass, jstring countryIsoCode, jstring uri, - jlong firstDaySec, jlong lastDaySec, jboolean isReferral) + jlong firstDaySec, jlong lastDaySec) { string const url = osm::GetKayakHotelURLFromURI(jni::ToNativeString(env, countryIsoCode), jni::ToNativeString(env, uri), static_cast(firstDaySec), - static_cast(lastDaySec), - isReferral); + static_cast(lastDaySec)); return url.empty() ? nullptr : jni::ToJavaString(env, url); } diff --git a/android/app/src/main/java/app/organicmaps/Framework.java b/android/app/src/main/java/app/organicmaps/Framework.java index 24cdac37ab..63d70abde3 100644 --- a/android/app/src/main/java/app/organicmaps/Framework.java +++ b/android/app/src/main/java/app/organicmaps/Framework.java @@ -456,10 +456,9 @@ public class Framework * @param uri `$HOTEL_NAME,-c$CITY_ID-h$HOTEL_ID` URI. * @param firstDaySec the epoch seconds of the first day of planned stay. * @param lastDaySec the epoch seconds of the last day of planned stay. - * @param isReferral enable referral code to help the project. * @return a URL to Kayak's hotel page. */ @Nullable public static native String nativeGetKayakHotelLink(@NonNull String countryIsoCode, @NonNull String uri, - long firstDaySec, long lastDaySec, boolean isReferral); + long firstDaySec, long lastDaySec); } diff --git a/android/app/src/main/java/app/organicmaps/MwmActivity.java b/android/app/src/main/java/app/organicmaps/MwmActivity.java index f8d60e581f..c5baf60699 100644 --- a/android/app/src/main/java/app/organicmaps/MwmActivity.java +++ b/android/app/src/main/java/app/organicmaps/MwmActivity.java @@ -1726,7 +1726,7 @@ public class MwmActivity extends BaseMwmFragmentActivity public void openKayakLink(@NonNull String url) { - if (Config.isKayakDisclaimerAccepted() || !Config.isKayakReferralAllowed()) + if (Config.isKayakDisclaimerAccepted()) { Utils.openUrl(this, url); return; diff --git a/android/app/src/main/java/app/organicmaps/bookmarks/data/MapObject.java b/android/app/src/main/java/app/organicmaps/bookmarks/data/MapObject.java index 750c9bb263..869674fb74 100644 --- a/android/app/src/main/java/app/organicmaps/bookmarks/data/MapObject.java +++ b/android/app/src/main/java/app/organicmaps/bookmarks/data/MapObject.java @@ -13,7 +13,6 @@ import androidx.core.os.ParcelCompat; import app.organicmaps.Framework; import app.organicmaps.routing.RoutePointInfo; import app.organicmaps.search.Popularity; -import app.organicmaps.util.Config; import app.organicmaps.util.Utils; import app.organicmaps.widget.placepage.PlacePageData; @@ -292,8 +291,7 @@ public class MapObject implements PlacePageData final Instant firstDay = Instant.now(); final long firstDaySec = firstDay.getEpochSecond(); final long lastDaySec = firstDay.plus(1, ChronoUnit.DAYS).getEpochSecond(); - final boolean isReferral = Config.isKayakReferralAllowed(); - final String res = Framework.nativeGetKayakHotelLink(Utils.getCountryCode(), uri, firstDaySec, lastDaySec, isReferral); + final String res = Framework.nativeGetKayakHotelLink(Utils.getCountryCode(), uri, firstDaySec, lastDaySec); return res == null ? "" : res; } diff --git a/android/app/src/main/java/app/organicmaps/util/Config.java b/android/app/src/main/java/app/organicmaps/util/Config.java index b5634cae8f..132b3c6051 100644 --- a/android/app/src/main/java/app/organicmaps/util/Config.java +++ b/android/app/src/main/java/app/organicmaps/util/Config.java @@ -229,11 +229,6 @@ public final class Config setBool(KEY_MISC_KAYAK_ACCEPTED); } - public static boolean isKayakReferralAllowed() - { - return !isFdroid(); - } - public static boolean isLocationRequested() { return getBool(KEY_MISC_LOCATION_REQUESTED); diff --git a/indexer/kayak.cpp b/indexer/kayak.cpp index 3d1a598fc4..d8a26f2bc6 100644 --- a/indexer/kayak.cpp +++ b/indexer/kayak.cpp @@ -88,7 +88,7 @@ const map KAYAK_DOMAINS = { string GetKayakHotelURL(const string & countryIsoCode, uint64_t kayakHotelId, const string & kayakHotelName, uint64_t kayakCityId, - time_t firstDay, time_t lastDay, bool isReferral) + time_t firstDay, time_t lastDay) { // https://www.kayak.com.tr/hotels/Elexus-Hotel-Resort--Spa--Casino,Kyrenia-c7163-h2651619-details/2023-10-03/2023-10-04/1adults @@ -97,8 +97,7 @@ string GetKayakHotelURL(const string & countryIsoCode, uint64_t kayakHotelId, url << "https://"; auto const it = KAYAK_DOMAINS.find(countryIsoCode); url << ((it == KAYAK_DOMAINS.end()) ? KAYAK_DOMAINS.find("US")->second : it->second); - if (isReferral) - url << "/in?" << "a=" << KAYAK_AFFILIATE << "&url="; + url << "/in?" << "a=" << KAYAK_AFFILIATE << "&url="; url << "/hotels/"; url << url::Slug(kayakHotelName) << ","; url << "-c" << kayakCityId << "-h" << kayakHotelId << "-details"; @@ -115,7 +114,7 @@ string GetKayakHotelURL(const string & countryIsoCode, uint64_t kayakHotelId, } string GetKayakHotelURLFromURI(const string & countryIsoCode, const string & uri, - time_t firstDay, time_t lastDay, bool isReferral) + time_t firstDay, time_t lastDay) { // Elexus Hotel Resort & Spa & Casino,-c7163-h1696321580 @@ -134,7 +133,7 @@ string GetKayakHotelURLFromURI(const string & countryIsoCode, const string & uri !to_uint64(uri.substr(c + 3, h - c - 3).c_str(), kayakCityId)) return {}; - return GetKayakHotelURL(countryIsoCode, kayakHotelId, kayakHotelName, kayakCityId, firstDay, lastDay, isReferral); + return GetKayakHotelURL(countryIsoCode, kayakHotelId, kayakHotelName, kayakCityId, firstDay, lastDay); } } // namespace osm diff --git a/indexer/kayak.hpp b/indexer/kayak.hpp index 760a01d84b..a329c26a1b 100644 --- a/indexer/kayak.hpp +++ b/indexer/kayak.hpp @@ -8,8 +8,8 @@ namespace osm { std::string GetKayakHotelURL(const std::string & countryIsoCode, uint64_t kayakHotelId, const std::string & kayakHotelName, uint64_t kayakCityId, - time_t firstDay, time_t lastDay, bool isReferral = true); + time_t firstDay, time_t lastDay); std::string GetKayakHotelURLFromURI(const std::string & countryIsoCode, const std::string & uri, - time_t firstDay, time_t lastDay, bool isReferral = true); + time_t firstDay, time_t lastDay); } // namespace osm -- 2.45.3 From 7821c1d453c748952c8e193163a3f814c41267dd Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Wed, 4 Dec 2024 01:24:30 +0300 Subject: [PATCH 7/8] [android] Add a setting to display Kayak links Disabled by default in F-Droid build, enabled in other builds. Signed-off-by: Konstantin Pastbin --- .../java/app/organicmaps/MwmActivity.java | 9 +- .../settings/SettingsPrefsFragment.java | 16 ++ .../java/app/organicmaps/util/Config.java | 13 ++ .../sections/PlacePageLinksFragment.java | 5 +- .../src/main/res/values/donottranslate.xml | 2 + android/app/src/main/res/xml/prefs_main.xml | 7 + data/strings/strings.txt | 140 ++++++++++++++++++ 7 files changed, 187 insertions(+), 5 deletions(-) diff --git a/android/app/src/main/java/app/organicmaps/MwmActivity.java b/android/app/src/main/java/app/organicmaps/MwmActivity.java index c5baf60699..d64562190f 100644 --- a/android/app/src/main/java/app/organicmaps/MwmActivity.java +++ b/android/app/src/main/java/app/organicmaps/MwmActivity.java @@ -1726,7 +1726,8 @@ public class MwmActivity extends BaseMwmFragmentActivity public void openKayakLink(@NonNull String url) { - if (Config.isKayakDisclaimerAccepted()) + // The disclaimer is not needed if a user had explicitly opted-in via the setting. + if (Config.isKayakDisclaimerAccepted() || Config.isKayakDisplayEnabled()) { Utils.openUrl(this, url); return; @@ -1736,12 +1737,16 @@ public class MwmActivity extends BaseMwmFragmentActivity mAlertDialog = new MaterialAlertDialogBuilder(this, R.style.MwmTheme_AlertDialog) .setTitle(R.string.how_to_support_us) .setMessage(R.string.dialog_kayak_disclaimer) - .setCancelable(false) + .setCancelable(true) .setPositiveButton(R.string.dialog_kayak_button, (dlg, which) -> { Config.acceptKayakDisclaimer(); Utils.openUrl(this, url); }) .setNegativeButton(R.string.cancel, null) + .setNeutralButton(R.string.dialog_kayak_disable_button, (dlg, which) -> { + Config.setKayakDisplay(false); + UiUtils.hide(findViewById(R.id.ll__place_kayak)); + }) .setOnDismissListener(dialog -> mAlertDialog = null) .show(); } diff --git a/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java b/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java index 5fad681533..b7d8e35f69 100644 --- a/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java +++ b/android/app/src/main/java/app/organicmaps/settings/SettingsPrefsFragment.java @@ -66,6 +66,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment implements La initPowerManagementPrefsCallbacks(); initPlayServicesPrefsCallbacks(); initSearchPrivacyPrefsCallbacks(); + initDisplayKayakPrefsCallbacks(); initScreenSleepEnabledPrefsCallbacks(); initShowOnLockScreenPrefsCallbacks(); } @@ -301,6 +302,21 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment implements La }); } + private void initDisplayKayakPrefsCallbacks() + { + final TwoStatePreference pref = getPreference(getString(R.string.pref_display_kayak)); + + pref.setChecked(Config.isKayakDisplayEnabled()); + pref.setOnPreferenceChangeListener((preference, newValue) -> { + final boolean oldVal = Config.isKayakDisplayEnabled(); + final boolean newVal = (Boolean) newValue; + if (oldVal != newVal) + Config.setKayakDisplay(newVal); + + return true; + }); + } + private void init3dModePrefsCallbacks() { final TwoStatePreference pref = getPreference(getString(R.string.pref_3d_buildings)); diff --git a/android/app/src/main/java/app/organicmaps/util/Config.java b/android/app/src/main/java/app/organicmaps/util/Config.java index 132b3c6051..18760a93e1 100644 --- a/android/app/src/main/java/app/organicmaps/util/Config.java +++ b/android/app/src/main/java/app/organicmaps/util/Config.java @@ -21,6 +21,7 @@ public final class Config private static final String KEY_PREF_USE_GS = "UseGoogleServices"; private static final String KEY_MISC_DISCLAIMER_ACCEPTED = "IsDisclaimerApproved"; + private static final String KEY_PREF_KAYAK_DISPLAY = "DisplayKayak"; private static final String KEY_MISC_KAYAK_ACCEPTED = "IsKayakApproved"; private static final String KEY_MISC_LOCATION_REQUESTED = "LocationRequested"; private static final String KEY_MISC_UI_THEME = "UiTheme"; @@ -219,6 +220,18 @@ public final class Config setBool(KEY_MISC_DISCLAIMER_ACCEPTED); } + public static boolean isKayakDisplayEnabled() + { + // Kayak is disabled by default in F-Droid build, + // unless a user has already accepted its disclaimer before. + return getBool(KEY_PREF_KAYAK_DISPLAY, !isFdroid() || isKayakDisclaimerAccepted()); + } + + public static void setKayakDisplay(boolean enabled) + { + setBool(KEY_PREF_KAYAK_DISPLAY, enabled); + } + public static boolean isKayakDisclaimerAccepted() { return getBool(KEY_MISC_KAYAK_ACCEPTED); diff --git a/android/app/src/main/java/app/organicmaps/widget/placepage/sections/PlacePageLinksFragment.java b/android/app/src/main/java/app/organicmaps/widget/placepage/sections/PlacePageLinksFragment.java index e27f3d2f7a..b6754928f8 100644 --- a/android/app/src/main/java/app/organicmaps/widget/placepage/sections/PlacePageLinksFragment.java +++ b/android/app/src/main/java/app/organicmaps/widget/placepage/sections/PlacePageLinksFragment.java @@ -18,6 +18,7 @@ import app.organicmaps.MwmActivity; import app.organicmaps.R; import app.organicmaps.bookmarks.data.MapObject; import app.organicmaps.bookmarks.data.Metadata; +import app.organicmaps.util.Config; import app.organicmaps.util.UiUtils; import app.organicmaps.util.Utils; import app.organicmaps.widget.placepage.PlacePageUtils; @@ -201,8 +202,6 @@ public class PlacePageLinksFragment extends Fragment implements Observerpref_privacy pref_search_history + DisplayKayak NEVER ALWAYS AUTO + com.google.android.material.bottomsheet.BottomSheetBehavior CAR_NOTIFICATION_CHANNEL diff --git a/android/app/src/main/res/xml/prefs_main.xml b/android/app/src/main/res/xml/prefs_main.xml index a3d27cc074..e162e025d6 100644 --- a/android/app/src/main/res/xml/prefs_main.xml +++ b/android/app/src/main/res/xml/prefs_main.xml @@ -163,6 +163,13 @@ app:singleLineTitle="false" android:defaultValue="true" android:order="2"/> + Date: Wed, 4 Dec 2024 02:27:50 +0300 Subject: [PATCH 8/8] [strings] Regenerate for Kayak setting Signed-off-by: Konstantin Pastbin --- android/app/src/main/res/values-ar/strings.xml | 6 ++++++ android/app/src/main/res/values-az/strings.xml | 6 ++++++ android/app/src/main/res/values-be/strings.xml | 6 ++++++ android/app/src/main/res/values-bg/strings.xml | 6 ++++++ android/app/src/main/res/values-ca/strings.xml | 6 ++++++ android/app/src/main/res/values-cs/strings.xml | 6 ++++++ android/app/src/main/res/values-da/strings.xml | 6 ++++++ android/app/src/main/res/values-de/strings.xml | 6 ++++++ android/app/src/main/res/values-el/strings.xml | 6 ++++++ android/app/src/main/res/values-es/strings.xml | 6 ++++++ android/app/src/main/res/values-et/strings.xml | 6 ++++++ android/app/src/main/res/values-eu/strings.xml | 6 ++++++ android/app/src/main/res/values-fa/strings.xml | 6 ++++++ android/app/src/main/res/values-fi/strings.xml | 6 ++++++ android/app/src/main/res/values-fr/strings.xml | 6 ++++++ android/app/src/main/res/values-hi/strings.xml | 6 ++++++ android/app/src/main/res/values-hu/strings.xml | 6 ++++++ android/app/src/main/res/values-in/strings.xml | 6 ++++++ android/app/src/main/res/values-it/strings.xml | 6 ++++++ android/app/src/main/res/values-iw/strings.xml | 6 ++++++ android/app/src/main/res/values-ja/strings.xml | 6 ++++++ android/app/src/main/res/values-ko/strings.xml | 6 ++++++ android/app/src/main/res/values-mr/strings.xml | 6 ++++++ android/app/src/main/res/values-nb/strings.xml | 6 ++++++ android/app/src/main/res/values-nl/strings.xml | 6 ++++++ android/app/src/main/res/values-pl/strings.xml | 6 ++++++ android/app/src/main/res/values-pt-rBR/strings.xml | 6 ++++++ android/app/src/main/res/values-pt/strings.xml | 6 ++++++ android/app/src/main/res/values-ro/strings.xml | 6 ++++++ android/app/src/main/res/values-ru/strings.xml | 6 ++++++ android/app/src/main/res/values-sk/strings.xml | 6 ++++++ android/app/src/main/res/values-sv/strings.xml | 6 ++++++ android/app/src/main/res/values-sw/strings.xml | 6 ++++++ android/app/src/main/res/values-th/strings.xml | 6 ++++++ android/app/src/main/res/values-tr/strings.xml | 6 ++++++ android/app/src/main/res/values-uk/strings.xml | 6 ++++++ android/app/src/main/res/values-vi/strings.xml | 6 ++++++ android/app/src/main/res/values-zh-rTW/strings.xml | 6 ++++++ android/app/src/main/res/values-zh/strings.xml | 6 ++++++ android/app/src/main/res/values/strings.xml | 6 ++++++ iphone/Maps/LocalizedStrings/ar.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/az.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/be.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/bg.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/ca.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/cs.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/da.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/de.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/el.lproj/Localizable.strings | 3 +++ .../Maps/LocalizedStrings/en-GB.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/en.lproj/Localizable.strings | 3 +++ .../Maps/LocalizedStrings/es-MX.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/es.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/et.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/eu.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/fa.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/fi.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/fr.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/he.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/hi.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/hu.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/id.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/it.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/ja.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/ko.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/mr.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/nb.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/nl.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/pl.lproj/Localizable.strings | 3 +++ .../Maps/LocalizedStrings/pt-BR.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/pt.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/ro.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/ru.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/sk.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/sv.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/sw.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/th.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/tr.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/uk.lproj/Localizable.strings | 3 +++ iphone/Maps/LocalizedStrings/vi.lproj/Localizable.strings | 3 +++ .../Maps/LocalizedStrings/zh-Hans.lproj/Localizable.strings | 3 +++ .../Maps/LocalizedStrings/zh-Hant.lproj/Localizable.strings | 3 +++ 82 files changed, 366 insertions(+) diff --git a/android/app/src/main/res/values-ar/strings.xml b/android/app/src/main/res/values-ar/strings.xml index 1d7b6b3302..565a061b25 100644 --- a/android/app/src/main/res/values-ar/strings.xml +++ b/android/app/src/main/res/values-ar/strings.xml @@ -327,6 +327,10 @@ خدمات الموقع في جوجل بلاي حدد موقعك التقريبي بسرعة باستخدام Bluetooth أو WiFi أو شبكة الهاتف المحمول + + روابط فنادق كيك دوت كوم + + يتم عرض الصور والمراجعات وروابط الحجز للفنادق التي لديها قائمة على موقع Kayak.com. تذهب مكافأة الإحالة المستلمة عن كل حجز من خلال هذه الروابط إلى تطوير Organic Maps. تنزيل الخرائط على طول طريقك @@ -563,6 +567,8 @@ تذهب مكافأة الإحالة التي يتم تلقيها لكل حجز من خلال هذا الرابط إلى تطوير Organic Maps. التفاصيل على Kayak + + تعطيل Kayak تحرير العلامة المرجعية تعليق… هل تريد مسح كافة التغييرات المحلية؟ diff --git a/android/app/src/main/res/values-az/strings.xml b/android/app/src/main/res/values-az/strings.xml index 36cae3131b..694b1f0915 100644 --- a/android/app/src/main/res/values-az/strings.xml +++ b/android/app/src/main/res/values-az/strings.xml @@ -313,6 +313,10 @@ Google Play Məkan Xidmətləri Bluetooth, WiFi və ya mobil şəbəkə vasitəsilə təxmini yerinizi tez müəyyənləşdirin + + Kayak.com Otel Bağlantıları + + Şəkillər, rəylər, rezervasiya linkləri Kayak.com-da siyahısı olan otellər üçün göstərilir. Bu bağlantılar vasitəsilə hər bir rezervasiya üçün alınan tövsiyə bonusu Organic Maps-in inkişafına yönəldilir. Marşrut boyunca bütün xəritələri endirin @@ -550,6 +554,8 @@ Bu link vasitəsilə edilən hər rezervasiya üçün alınan tövsiyə bonusu Organic Maps\'in inkişafına sərf olunur. Xizək sürmə haqqında təfərrüatlar + + Kayak-ı söndürün Əlfəcini redaktə edin Şərh… Bütün yerli dəyişikliklər ləğv edilsin? diff --git a/android/app/src/main/res/values-be/strings.xml b/android/app/src/main/res/values-be/strings.xml index 136aabf9fa..918438fd12 100644 --- a/android/app/src/main/res/values-be/strings.xml +++ b/android/app/src/main/res/values-be/strings.xml @@ -313,6 +313,10 @@ Службы месцазнаходжання Google Play Хуткае вызначэнне прыблізнага месцазнаходжання з дапамогай Bluetooth, WiFi або мабільнай сеткі + + Спасылкі на гасцініцы Kayak.com + + Фота, агляды, спасылкі на браніраванне паказваюцца для гатэляў, якія ёсць у спісе на Kayak.com. Рэферальны бонус, атрыманы за кожнае браніраванне па гэтых спасылках, ідзе на развіццё Organic Maps. Спампаваць усе мапы на вашым маршруце @@ -549,6 +553,8 @@ Рэферальны бонус, атрыманы за кожнае браніраванне па гэтай спасылцы, ідзе на распрацоўку Organic Maps. Падрабязнасці на Kayak + + Адключыць Kayak Рэдагаваць закладку Каментарый… Адмовіцца ад усіх лакальных змен? diff --git a/android/app/src/main/res/values-bg/strings.xml b/android/app/src/main/res/values-bg/strings.xml index bec7a187bd..1fe0279b73 100644 --- a/android/app/src/main/res/values-bg/strings.xml +++ b/android/app/src/main/res/values-bg/strings.xml @@ -296,6 +296,10 @@ Услуги за местоположение в Google Play Бързо определяне на приблизителното ви местоположение чрез Bluetooth, WiFi или мобилна мрежа + + Kayak.com Връзки с хотели + + Снимки, отзиви и връзки за резервация се показват за хотелите, които имат обява в Kayak.com. Полученият бонус за всяка резервация чрез тези връзки отива за развитието на Organic Maps. Изтегляне на всички карти по вашия маршрут @@ -509,6 +513,8 @@ Полученият бонус за всяка резервация чрез тази връзка отива за развитието на Organic Maps. Подробности в Kayak + + Деактивиране на Kayak Редакция на отметка Коментиране… Отхвърляне на всички локални промени? diff --git a/android/app/src/main/res/values-ca/strings.xml b/android/app/src/main/res/values-ca/strings.xml index 7dac733238..124d96000c 100644 --- a/android/app/src/main/res/values-ca/strings.xml +++ b/android/app/src/main/res/values-ca/strings.xml @@ -314,6 +314,10 @@ Serveis d\'ubicació de Google Play Determineu ràpidament la vostra ubicació aproximada mitjançant Bluetooth, WiFi o xarxa mòbil + + Enllaços a l\'hotel Kayak.com + + Es mostren fotos, comentaris i enllaços de reserva per als hotels que tenen una llista a Kayak.com. La bonificació de referència rebuda per cada reserva a través d\'aquests enllaços es destina al desenvolupament d\'Organic Maps. Baixeu tots els mapes de la ruta @@ -550,6 +554,8 @@ La bonificació de referència rebuda per cada reserva a través d\'aquest enllaç es destina al desenvolupament de Organic Maps. Detalls a Kayak + + Desactiva Kayak Edita el marcador Comentari… Voleu descartar tots els canvis locals? diff --git a/android/app/src/main/res/values-cs/strings.xml b/android/app/src/main/res/values-cs/strings.xml index 730a5aa0d8..b383b9d49a 100644 --- a/android/app/src/main/res/values-cs/strings.xml +++ b/android/app/src/main/res/values-cs/strings.xml @@ -295,6 +295,10 @@ Služby určování polohy Google Play Rychlé určení přibližné polohy pomocí Bluetooth, WiFi nebo mobilní sítě + + Kayak.com Hotel Odkazy + + Fotografie, recenze a rezervační odkazy se zobrazují u hotelů, které jsou uvedeny na Kayak.com. Bonus získaný za každou rezervaci prostřednictvím těchto odkazů jde na rozvoj Organic Maps. Stahovat mapy podél cesty @@ -527,6 +531,8 @@ Bonus za každou rezervaci provedenou prostřednictvím tohoto odkazu je určen na rozvoj služby Organic Maps. Podrobnosti na Kayak + + Zakázat Kayak Upravit záložku Poznámka… Vymazat všechny místní změny? diff --git a/android/app/src/main/res/values-da/strings.xml b/android/app/src/main/res/values-da/strings.xml index 7427262f90..52a0d9e4ce 100644 --- a/android/app/src/main/res/values-da/strings.xml +++ b/android/app/src/main/res/values-da/strings.xml @@ -287,6 +287,10 @@ Google Play Placeringstjenester Find hurtigt din omtrentlige position via Bluetooth, WiFi eller mobilnetværk + + Kayak.com hotel-links + + Fotos, anmeldelser og bookinglinks vises for hoteller, der har en liste på Kayak.com. Den henvisningsbonus, der modtages for hver booking via disse links, går til udvikling af Organic Maps. Download kort på vejen @@ -519,6 +523,8 @@ Henvisningsbonussen, der modtages for hver booking via dette link, går til udviklingen af Organic Maps. Detaljer på Kayak + + Deaktiver Kayak Rediger bogmærke Kommentar… Nulstil alle lokale ændringer? diff --git a/android/app/src/main/res/values-de/strings.xml b/android/app/src/main/res/values-de/strings.xml index ef03bc390c..2b88fe0ea7 100644 --- a/android/app/src/main/res/values-de/strings.xml +++ b/android/app/src/main/res/values-de/strings.xml @@ -312,6 +312,10 @@ Google Play Standortdienste Ermitteln Sie schnell Ihren ungefähren Standort über Bluetooth, WLAN oder das Mobilfunknetz + + Kayak.com Hotel-Links + + Fotos, Bewertungen und Buchungslinks werden für Hotels angezeigt, die einen Eintrag auf Kayak.com haben. Der Empfehlungsbonus, den Sie für jede Buchung über diese Links erhalten, fließt in die Entwicklung von Organic Maps. Karten entlang der Route herunterladen @@ -549,6 +553,8 @@ Der Empfehlungsbonus, den wir für jede Buchung über diesen Link erhalten, fließt in die Entwicklung von Organic Maps. Einzelheiten bei Kayak + + Kayak deaktivieren Lesezeichen bearbeiten Kommentar… Alle lokalen Korrekturen verwerfen? diff --git a/android/app/src/main/res/values-el/strings.xml b/android/app/src/main/res/values-el/strings.xml index 971b0c1039..1f3392a6d3 100644 --- a/android/app/src/main/res/values-el/strings.xml +++ b/android/app/src/main/res/values-el/strings.xml @@ -315,6 +315,10 @@ Υπηρεσίες τοποθεσίας Google Play Προσδιορίστε γρήγορα την κατά προσέγγιση τοποθεσία σας μέσω Bluetooth, WiFi ή δικτύου κινητής τηλεφωνίας + + Kayak.com Σύνδεσμοι ξενοδοχείων + + Οι φωτογραφίες, οι κριτικές και οι σύνδεσμοι κρατήσεων εμφανίζονται για τα ξενοδοχεία που έχουν καταχωρηθεί στο Kayak.com. Το μπόνους παραπομπής που λαμβάνεται για κάθε κράτηση μέσω αυτών των συνδέσμων πηγαίνει στην ανάπτυξη του Organic Maps. Κατέβασμα όλων των χαρτών για ολόκληρο το μήκος της διαδρομής σας @@ -546,6 +550,8 @@ Το μπόνους παραπομπής που λαμβάνετε για κάθε κράτηση μέσω αυτού του συνδέσμου πηγαίνει στην ανάπτυξη του Organic Maps. Λεπτομέρειες στο Kayak + + Απενεργοποίηση του Kayak Επεξεργασία αγαπημένου Σχόλιο… Απόρριψη όλων των τοπικών αλλαγών; diff --git a/android/app/src/main/res/values-es/strings.xml b/android/app/src/main/res/values-es/strings.xml index 305a2b516c..307ab89603 100644 --- a/android/app/src/main/res/values-es/strings.xml +++ b/android/app/src/main/res/values-es/strings.xml @@ -312,6 +312,10 @@ Servicios de localización de Google Play Determina rápidamente tu ubicación aproximada mediante Bluetooth, WiFi o red móvil + + Enlaces de hoteles Kayak.com + + Se muestran fotos, reseñas y enlaces de reserva para los hoteles que tienen un listado en Kayak.com. La bonificación por referencia recibida por cada reserva a través de estos enlaces se destina al desarrollo de Organic Maps. Descargue todos los mapas de su ruta @@ -548,6 +552,8 @@ La bonificación por recomendación recibida por cada reserva a través de este enlace se destina al desarrollo de Organic Maps. Detalles en Kayak + + Desactivar Kayak Editar marcador Comentario… ¿Restablecer todos los cambios locales? diff --git a/android/app/src/main/res/values-et/strings.xml b/android/app/src/main/res/values-et/strings.xml index 8986f47ab0..d803a9c71f 100644 --- a/android/app/src/main/res/values-et/strings.xml +++ b/android/app/src/main/res/values-et/strings.xml @@ -305,6 +305,10 @@ Google Play asukohateenused Määrake kiiresti oma ligikaudne asukoht Bluetoothi, WiFi või mobiilivõrgu kaudu + + Kayak.com Hotellilinkid + + Fotod, arvustused ja broneerimislingid kuvatakse hotellide kohta, mis on Kayak.com-is loetletud. Iga nende linkide kaudu tehtud broneeringu eest saadav viitamispreemia läheb Organic Maps\'i arendamiseks. Lae alla kõik kaardid oma marsruudil @@ -542,6 +546,8 @@ Iga selle lingi kaudu tehtud broneeringu eest saadav boonus läheb Organic Maps\'i arendamiseks. Üksikasjad Kayaki kohta + + Kayak välja lülitada Muuda järjehoidjat Kommenteeri… Loobu kõigist kohalikest muudatustest? diff --git a/android/app/src/main/res/values-eu/strings.xml b/android/app/src/main/res/values-eu/strings.xml index 36e132b872..c46325ef5d 100644 --- a/android/app/src/main/res/values-eu/strings.xml +++ b/android/app/src/main/res/values-eu/strings.xml @@ -313,6 +313,10 @@ Google Play Kokapen Zerbitzuak Zehaztu azkar zure gutxi gorabeherako kokapena Bluetooth, WiFi edo sare mugikorra erabiliz + + Kayak.com hotelen estekak + + Kayak.com-en zerrenda bat duten hoteletarako argazkiak, iritziak, erreserba estekak bistaratzen dira. Esteka hauen bidez erreserba bakoitzerako jasotako erreferentziazko hobaria Organic Maps-en garapenera doa. Deskargatu zure arrastoaren mapa guztiak @@ -548,6 +552,8 @@ Esteka honen bidez erreserba bakoitzeko jasotzen den erreferentzia-bonua Organic Maps garatzera doa. Xehetasunak Kayak-en + + Desgaitu Kayak Editatu markagailua Iruzkina… Tokiko aldaketa guztiak berrezarri nahi dituzu? diff --git a/android/app/src/main/res/values-fa/strings.xml b/android/app/src/main/res/values-fa/strings.xml index 7c784d6d8b..950e33f276 100644 --- a/android/app/src/main/res/values-fa/strings.xml +++ b/android/app/src/main/res/values-fa/strings.xml @@ -280,6 +280,10 @@ خدمات مکان Google Play به سرعت مکان تقریبی خود را با استفاده از بلوتوث، WiFi یا شبکه تلفن همراه تعیین کنید + + لینک های هتل Kayak.com + + عکسu200cها، نظرات، لینکu200cهای رزرو برای هتلu200cهایی که فهرستی در Kayak.com دارند نمایش داده میu200cشوند. پاداش ارجاعی دریافت شده برای هر رزرو از طریق این پیوندها به سمت توسعه Organic Maps می رود. دانلود تمامی نقشه‌ها در طول مسیر‌تان @@ -514,6 +518,8 @@ پاداش ارجاعی دریافت شده برای هر رزرو از طریق این پیوند به سمت توسعه نقشه های ارگانیک می رود. جزئیات در Kayak + + Kayak را غیرفعال کنید ویرایش نشانه‌ها اظهار نظر آیا تغییرات محلی را نادیده می گیرید؟ diff --git a/android/app/src/main/res/values-fi/strings.xml b/android/app/src/main/res/values-fi/strings.xml index 8b382a3f0a..218ee7bb59 100644 --- a/android/app/src/main/res/values-fi/strings.xml +++ b/android/app/src/main/res/values-fi/strings.xml @@ -311,6 +311,10 @@ Google Play Sijaintipalvelut Määritä nopeasti likimääräinen sijaintisi Bluetoothin, WiFin tai matkapuhelinverkon kautta + + Kayak.com Hotel Linkit + + Kuvat, arvostelut ja varauslinkit näytetään hotelleista, jotka on listattu Kayak.comiin. Jokaisesta näiden linkkien kautta tehdystä varauksesta saatu suosittelupalkkio käytetään Organic Mapsin kehittämiseen. Lataa karttoja matkalla @@ -548,6 +552,8 @@ Jokaisesta tämän linkin kautta tehdystä varauksesta saatu suosittelubonus käytetään Organic Mapsin kehittämiseen. Lisätietoa osoitteessa Kayak + + Poista Kayak käytöstä Muokkaa kirjanmerkkiä Kommentti… Nollataanko kaikki paikalliset muutokset? diff --git a/android/app/src/main/res/values-fr/strings.xml b/android/app/src/main/res/values-fr/strings.xml index 3c0e85da31..3e8e320503 100644 --- a/android/app/src/main/res/values-fr/strings.xml +++ b/android/app/src/main/res/values-fr/strings.xml @@ -317,6 +317,10 @@ Services de localisation de Google Play Détermine rapidement ta position approximative via Bluetooth, WiFi ou le réseau mobile + + Liens vers les hôtels Kayak.com + + Des photos, des commentaires et des liens de réservation sont affichés pour les hôtels répertoriés sur Kayak.com. La prime de parrainage reçue pour chaque réservation effectuée par le biais de ces liens est destinée au développement d\'Organic Maps. Téléchargez toutes les cartes le long de votre itinéraire @@ -556,6 +560,8 @@ La prime de parrainage reçue pour chaque réservation effectuée par l\'intermédiaire de ce lien sert à développer Organic Maps. Détails sur Kayak + + Désactiver Kayak Éditer le signet Commentaire… Abandonner toutes les modifications locales ? diff --git a/android/app/src/main/res/values-hi/strings.xml b/android/app/src/main/res/values-hi/strings.xml index 1be6892425..2878f3d665 100644 --- a/android/app/src/main/res/values-hi/strings.xml +++ b/android/app/src/main/res/values-hi/strings.xml @@ -302,6 +302,10 @@ Google Play स्थान सेवाएँ ब्लूटूथ, वाईफाई या मोबाइल नेटवर्क का उपयोग करके तुरंत अपना अनुमानित स्थान निर्धारित करें + + Kayak.com हटल लक + + जन हटल क Kayak.com पर सच ह, उनक तसवर, समकषए, बकग लक परदरशत कए जत ह। इन लक क मधयम स परतयक बकग क लए परपत रफरल बनस Organic Maps क वकस क लए जत ह। अपने मार्ग के सभी मानचित्र डाउनलोड करें @@ -414,6 +418,8 @@ इस लिंक के माध्यम से प्रत्येक बुकिंग के लिए प्राप्त रेफरल बोनस ऑर्गेनिक मैप्स के विकास के लिए जाता है। कयाक पर विवरण + + Kayak अकषम कर मिटाना जगह मौजूद नहीं है OpenStreetMap में स्थान जोड़ें diff --git a/android/app/src/main/res/values-hu/strings.xml b/android/app/src/main/res/values-hu/strings.xml index fc783fe044..1d10e2df3b 100644 --- a/android/app/src/main/res/values-hu/strings.xml +++ b/android/app/src/main/res/values-hu/strings.xml @@ -305,6 +305,10 @@ Google Play helymeghatározási szolgáltatások Bluetooth, Wi-Fi vagy mobilhálózat segítségével gyorsan meghatározhatja hozzávetőleges tartózkodási helyét + + Kayak.com Hotel Linkek + + A Kayak.com-on szereplő szállodák esetében fényképek, értékelések, foglalási linkek jelennek meg. Az ezeken a linkeken keresztül történő minden egyes foglalásért kapott ajánlói bónusz az Organic Maps fejlesztését szolgálja. Tölts le térképeket az útvonal mellett @@ -534,6 +538,8 @@ Az ezen a linken keresztül történő minden egyes foglalásért kapott ajánlói bónusz az Organic Maps fejlesztését szolgálja. Részletek a Kayak-on + + Kayak kikapcsolása Könyvjelző szerkesztése Megjegyzés… Elveti az összes helyi módosítást? diff --git a/android/app/src/main/res/values-in/strings.xml b/android/app/src/main/res/values-in/strings.xml index eb511f0450..bffb837019 100644 --- a/android/app/src/main/res/values-in/strings.xml +++ b/android/app/src/main/res/values-in/strings.xml @@ -292,6 +292,10 @@ Layanan Lokasi Google Play Dengan cepat menentukan perkiraan lokasi Anda melalui Bluetooth, WiFi, atau jaringan seluler + + Tautan Hotel Kayak.com + + Foto, ulasan, tautan pemesanan ditampilkan untuk hotel yang memiliki daftar di Kayak.com. Bonus rujukan yang diterima untuk setiap pemesanan melalui tautan ini digunakan untuk pengembangan Organic Maps. Unduh peta bersama rute @@ -522,6 +526,8 @@ Bonus rujukan yang diterima untuk setiap pemesanan melalui tautan ini digunakan untuk pengembangan Organic Maps. Perincian di Kayak + + Nonaktifkan Kayak Edit Bookmark Komentar… Atur ulang perubahan lokal? diff --git a/android/app/src/main/res/values-it/strings.xml b/android/app/src/main/res/values-it/strings.xml index 09d72cd3a6..1e0ff20549 100644 --- a/android/app/src/main/res/values-it/strings.xml +++ b/android/app/src/main/res/values-it/strings.xml @@ -300,6 +300,10 @@ Servizi di localizzazione di Google Play Determina rapidamente la tua posizione approssimativa tramite Bluetooth, WiFi o rete mobile + + Link agli hotel di Kayak.com + + Le foto, le recensioni e i link per le prenotazioni vengono visualizzati per gli hotel che hanno un\'inserzione su Kayak.com. Il bonus di riferimento ricevuto per ogni prenotazione attraverso questi link è destinato allo sviluppo di Organic Maps. Scarica le mappe lungo il percorso @@ -534,6 +538,8 @@ Il bonus ricevuto per ogni prenotazione effettuata tramite questo link è destinato allo sviluppo di Organic Maps. Dettagli su Kayak + + Disabilita Kayak Modifica luogo preferito Commento… Cancellare tutte le modifiche locali? diff --git a/android/app/src/main/res/values-iw/strings.xml b/android/app/src/main/res/values-iw/strings.xml index f64145c36a..0031b40c75 100644 --- a/android/app/src/main/res/values-iw/strings.xml +++ b/android/app/src/main/res/values-iw/strings.xml @@ -314,6 +314,10 @@ שירותי מיקום של Google Play קבע במהירות את המיקום המשוער שלך באמצעות Bluetooth, WiFi או רשת סלולרית + + קישורים למלון Kayak.com + + תמונות, חוות דעת, קישורי הזמנה מוצגים עבור מלונות שיש להם רישום באתר Kayak.com. בונוס ההפניה המתקבל עבור כל הזמנה דרך קישורים אלה מיועד לפיתוח של Organic Maps. הורד את כל המפות במסלול שלך @@ -545,6 +549,8 @@ בונוס ההפניה המתקבל עבור כל הזמנה דרך קישור זה מסייע בפיתוח של Organic Maps. פרטים על Kayak + + השבת את Kayak ערוך סימניה תגובה… למחוק את כל השינויים המקומיים? diff --git a/android/app/src/main/res/values-ja/strings.xml b/android/app/src/main/res/values-ja/strings.xml index 4ab20eba86..7bd578ab49 100644 --- a/android/app/src/main/res/values-ja/strings.xml +++ b/android/app/src/main/res/values-ja/strings.xml @@ -315,6 +315,10 @@ Google Play位置情報サービス Bluetooth、WiFi、またはモバイルネットワーク経由で、おおよその位置を素早く特定する + + Kayak.comホテルリンク + + Kayak.comに掲載されているホテルの写真、レビュー、予約リンクが表示されます。これらのリンクを経由して予約された場合、紹介ボーナスはOrganic Mapsの開発に使用されます。 ルート上の地図をダウンロード @@ -553,6 +557,8 @@ このリンクを経由した予約の紹介ボーナスは、Organic Mapsの発展のために使われる。 Kayak で詳細表示 + + Kayakの無効化 ブックマークを編集 コメント… ローカル編集をすべてリセットしますか? diff --git a/android/app/src/main/res/values-ko/strings.xml b/android/app/src/main/res/values-ko/strings.xml index e5679f5430..e6fccfdb2b 100644 --- a/android/app/src/main/res/values-ko/strings.xml +++ b/android/app/src/main/res/values-ko/strings.xml @@ -290,6 +290,10 @@ Google Play 위치 서비스 블루투스, WiFi 또는 모바일 네트워크를 통해 대략적인 위치를 빠르게 파악할 수 있습니다 + + Kayak.com 호텔 링크 + + Kayak.com에 숙소가 등록된 호텔의 사진, 후기, 예약 링크가 표시됩니다. 이러한 링크를 통해 예약할 때마다 받는 추천 보너스는 Organic Maps의 개발에 사용됩니다. 경로를 따라 지도 다운로드 @@ -520,6 +524,8 @@ 이 링크를 통해 예약할 때마다 받는 추천 보너스는 오가닉맵 개발에 사용됩니다. Kayak의 세부 정보 + + Kayak 비활성화 즐겨찾기 편집 설명… 지역 변경 사항을 재설정하시겠습니까? diff --git a/android/app/src/main/res/values-mr/strings.xml b/android/app/src/main/res/values-mr/strings.xml index c26aa31f5e..331fbfda7a 100644 --- a/android/app/src/main/res/values-mr/strings.xml +++ b/android/app/src/main/res/values-mr/strings.xml @@ -284,6 +284,10 @@ Google Play स्थान सेवा ब्लूटूथ, वायफाय किंवा मोबाइल नेटवर्क वापरून तुमचे अंदाजे स्थान द्रुतपणे निर्धारित करा + + Kayak.com हटल लकस + + Kayak.com वर सच असललय हटलसठ फट, पनरवलकन, बकग लकस परदरशत कल जतत. य लकसदवर परतयक बकगसठ मळलल रफरल बनस Organic Maps चय वकससठ जत. तुमच्या मार्गावरील सर्व नकाशे डाउनलोड करा @@ -518,6 +522,8 @@ या लिंकद्वारे प्रत्येक बुकिंगसाठी मिळणारा रेफरल बोनस ऑरगॅनिक नकाशांच्या विकासासाठी जातो. कायाक वर तपशील + + Kayak अकषम कर खूणपत्र संपादित करा टिप्पणी सर्व स्थानिक बदल टाकून द्यायचे? diff --git a/android/app/src/main/res/values-nb/strings.xml b/android/app/src/main/res/values-nb/strings.xml index 680b8ee644..34e6170070 100644 --- a/android/app/src/main/res/values-nb/strings.xml +++ b/android/app/src/main/res/values-nb/strings.xml @@ -312,6 +312,10 @@ Google Play Stedstjenester Finn raskt ut din omtrentlige posisjon via Bluetooth, WiFi eller mobilnettverk + + Kayak.com Hotellkoblinger + + Bilder, anmeldelser og bestillingslenker vises for hoteller som har en oppføring på Kayak.com. Henvisningsbonusen som mottas for hver bestilling gjennom disse lenkene går til utvikling av Organic Maps. Last ned kart langs ruten @@ -547,6 +551,8 @@ Henvisningsbonusen som mottas for hver bestilling via denne lenken, går til utviklingen av Organic Maps. Mer informasjon om Kayak + + Deaktiver Kayak Rediger bokmerke Kommentar… Nullstille alle lokale endringer? diff --git a/android/app/src/main/res/values-nl/strings.xml b/android/app/src/main/res/values-nl/strings.xml index 12219ff213..cec7c027f4 100644 --- a/android/app/src/main/res/values-nl/strings.xml +++ b/android/app/src/main/res/values-nl/strings.xml @@ -312,6 +312,10 @@ Google Play-locatieservices Bepaal snel je locatie bij benadering via Bluetooth, WiFi of een mobiel netwerk + + Kayak.com Hotellinks + + Foto\'s, beoordelingen en reserveringslinks worden weergegeven voor hotels die een vermelding op Kayak.com hebben. De verwijzingsbonus die voor elke boeking via deze links wordt ontvangen, gaat naar de ontwikkeling van Organic Maps. Download kaarten op de route @@ -547,6 +551,8 @@ De doorverwijsbonus die je ontvangt voor elke boeking via deze link gaat naar de ontwikkeling van Organic Maps. Details op Kayak + + Kayak uitschakelen Bewerk bladwijzer Reactie… Alle lokale wijzigingen weggooien? diff --git a/android/app/src/main/res/values-pl/strings.xml b/android/app/src/main/res/values-pl/strings.xml index 08c0136e14..dd2ff4c30c 100644 --- a/android/app/src/main/res/values-pl/strings.xml +++ b/android/app/src/main/res/values-pl/strings.xml @@ -314,6 +314,10 @@ Usługi lokalizacyjne Google Play Szybko określ swoją przybliżoną lokalizację przez Bluetooth, WiFi lub sieć komórkową + + Linki do hoteli Kayak.com + + Zdjęcia, recenzje, linki do rezerwacji są wyświetlane dla hoteli, które mają wpis na Kayak.com. Premia za polecenie otrzymana za każdą rezerwację za pośrednictwem tych linków jest przeznaczona na rozwój Organic Maps. Pobierz mapy wzdłuż trasy @@ -551,6 +555,8 @@ Premia za polecenie otrzymywana za każdą rezerwację za pośrednictwem tego linku jest przeznaczana na rozwój Organic Maps. Szczegóły na Kayak + + Proszę wyłączyć Kayak Edytuj zakładkę Komentarz… Usunąć wszystkie lokalne zmiany? diff --git a/android/app/src/main/res/values-pt-rBR/strings.xml b/android/app/src/main/res/values-pt-rBR/strings.xml index 1c7b522529..1f422a80e3 100644 --- a/android/app/src/main/res/values-pt-rBR/strings.xml +++ b/android/app/src/main/res/values-pt-rBR/strings.xml @@ -290,6 +290,10 @@ Atualizar mapa Determine rapidamente sua localização aproximada via Bluetooth, WiFi ou rede móvel + + Links de hotéis do Kayak.com + + Fotos, avaliações e links de reserva são exibidos para os hotéis que estão listados no Kayak.com. O bônus de indicação recebido por cada reserva feita por meio desses links é destinado ao desenvolvimento do Organic Maps. Baixar todos os mapas ao longo do trajeto @@ -497,6 +501,8 @@ Fotos, avaliações, reservas O bônus de indicação recebido por cada reserva feita por meio deste link é destinado ao desenvolvimento do Organic Maps. + + Desativar o Kayak Editar favorito Comentar… Descartar todas as modificações locais? diff --git a/android/app/src/main/res/values-pt/strings.xml b/android/app/src/main/res/values-pt/strings.xml index 0aee52cd50..1449727d1e 100644 --- a/android/app/src/main/res/values-pt/strings.xml +++ b/android/app/src/main/res/values-pt/strings.xml @@ -300,6 +300,10 @@ Serviços de localização do Google Play Determina rapidamente a tua localização aproximada através de Bluetooth, WiFi ou rede móvel + + Ligações de hotéis Kayak.com + + São apresentadas fotografias, críticas e links de reserva para os hotéis que têm uma listagem no Kayak.com. O bónus de referência recebido por cada reserva efectuada através destas ligações destina-se ao desenvolvimento do Organic Maps. Descarregar todos os mapas ao longo do trajeto @@ -532,6 +536,8 @@ O bónus de referência recebido por cada reserva efectuada através desta ligação reverte a favor do desenvolvimento do Organic Maps. Detalhes em Kayak + + Desativar Kayak Editar favorito Comentário… Eliminar todas as alterações locais? diff --git a/android/app/src/main/res/values-ro/strings.xml b/android/app/src/main/res/values-ro/strings.xml index 091677d7ec..340a9acbe9 100644 --- a/android/app/src/main/res/values-ro/strings.xml +++ b/android/app/src/main/res/values-ro/strings.xml @@ -298,6 +298,10 @@ Servicii de localizare Google Play Determinați rapid locația dvs. aproximativă prin Bluetooth, WiFi sau rețea mobilă + + Kayak.com Linkuri către hoteluri + + Fotografiile, recenziile, linkurile de rezervare sunt afișate pentru hotelurile care au o listă pe Kayak.com. Bonusul de recomandare primit pentru fiecare rezervare prin intermediul acestor linkuri este destinat dezvoltării Organic Maps. Descarcă hărțile de pe traseu @@ -533,6 +537,8 @@ Bonusul de recomandare primit pentru fiecare rezervare prin acest link este destinat dezvoltării Organic Maps. Detalii pe Kayak + + Dezactivați Kayak Modifică locul preferat Comentariu… Ștergi toate modificările locale? diff --git a/android/app/src/main/res/values-ru/strings.xml b/android/app/src/main/res/values-ru/strings.xml index 2e9acc7cff..0a1f442d83 100644 --- a/android/app/src/main/res/values-ru/strings.xml +++ b/android/app/src/main/res/values-ru/strings.xml @@ -317,6 +317,10 @@ Службы определения местоположения в Google Play Быстрое определение приблизительного местоположения с помощью Bluetooth, WiFi или мобильной сети + + Ссылки в гостиницах на Kayak.com + + Ссылки \"Фотографии, отзывы, бронирование\" отображаются для отелей, подключенных к Kayak.com. Реферальный бонус, полученный за каждое бронирование по этим ссылкам, идет на развитие Organic Maps. Загрузите все карты по пути следования @@ -556,6 +560,8 @@ Реферальный бонус, полученный за каждое бронирование по этой ссылке, идёт на разработку Organic Maps. Подробнее на Kayak + + Отключить Kayak Редактировать метку Коментарий… Сбросить все локальные правки? diff --git a/android/app/src/main/res/values-sk/strings.xml b/android/app/src/main/res/values-sk/strings.xml index 43ca6c61f3..bc1ddd0e2f 100644 --- a/android/app/src/main/res/values-sk/strings.xml +++ b/android/app/src/main/res/values-sk/strings.xml @@ -312,6 +312,10 @@ Lokalizačné služby Google Play Rýchle určenie približnej polohy cez Bluetooth, WiFi alebo mobilnú sieť + + Kayak.com Hotel Odkazy + + Fotografie, recenzie a rezervačné odkazy sa zobrazujú pre hotely, ktoré majú svoju ponuku na Kayak.com. Bonus získaný za každú rezerváciu prostredníctvom týchto odkazov ide na rozvoj Organic Maps. Stiahnite si mapy pozdĺž trasy @@ -549,6 +553,8 @@ Bonus získaný za každú rezerváciu prostredníctvom tohto odkazu ide na rozvoj služby Organic Maps. Podrobnosti na Kayak + + Zakázať Kayak Upraviť záložku Poznámka… Resetovať všetky miestne časy? diff --git a/android/app/src/main/res/values-sv/strings.xml b/android/app/src/main/res/values-sv/strings.xml index e2459b2400..651ed79904 100644 --- a/android/app/src/main/res/values-sv/strings.xml +++ b/android/app/src/main/res/values-sv/strings.xml @@ -289,6 +289,10 @@ Google Play platstjänster Fastställ snabbt din ungefärliga position via Bluetooth, WiFi eller mobilnät + + Kayak.com Hotellänkar + + Foton, recensioner, bokningslänkar visas för hotell som har en lista på Kayak.com. Den värvningsbonus som erhålls för varje bokning via dessa länkar går till utveckling av Organic Maps. Ladda ned kartor längs vägen @@ -519,6 +523,8 @@ Hänvisningsbonusen för varje bokning via denna länk går till utvecklingen av Organic Maps. Information på Kayak + + Inaktivera Kayak Redigera bokmärke kommentar… Återställ alla lokala ändringar? diff --git a/android/app/src/main/res/values-sw/strings.xml b/android/app/src/main/res/values-sw/strings.xml index e817090884..7cbdc8a1f4 100644 --- a/android/app/src/main/res/values-sw/strings.xml +++ b/android/app/src/main/res/values-sw/strings.xml @@ -78,6 +78,10 @@ Huduma za Mahali za Google Play Tambua kwa haraka kadirio la eneo lako kwa kutumia Bluetooth, WiFi au mtandao wa simu + + Viungo vya Hoteli ya Kayak.com + + Picha, maoni, viungo vya kuweka nafasi vinaonyeshwa kwa hoteli ambazo zimeorodheshwa kwenye Kayak.com. Bonasi ya rufaa inayopokelewa kwa kila nafasi iliyowekwa kupitia viungo hivi huenda kwenye uundaji wa Organic Maps. Zambarau Iliyoiva @@ -131,6 +135,8 @@ Bonasi ya rufaa inayopokelewa kwa kila nafasi uliyohifadhi kupitia kiungo hiki huenda kwenye uundaji wa ramani za kikaboni. Maelezo kuhusu Kayak + + Lemaza Kayak Ongeza Mahali kwa OpenStreetMap Wahariri wa OpenStreetMap watakagua mabadiliko na kuwasiliana nawe ikiwa wana maswali yoyote. diff --git a/android/app/src/main/res/values-th/strings.xml b/android/app/src/main/res/values-th/strings.xml index c1cb404277..864879189f 100644 --- a/android/app/src/main/res/values-th/strings.xml +++ b/android/app/src/main/res/values-th/strings.xml @@ -293,6 +293,10 @@ บริการตำแหน่งของ Google Play ระบุตำแหน่งโดยประมาณของคุณอย่างรวดเร็วโดยใช้บลูทูธ WiFi หรือเครือข่ายมือถือ + + ลงคโรงแรม Kayak.com + + รปภาพ รวว ลงกการจองจะแสดงสำหรบโรงแรมทมรายการขอมลบน Kayak.com โบนสผแนะนำทไดรบสำหรบการจองแตละครงผานลงกเหลานจะนำไปใชในการพฒนา Organic Maps ดาวน์โหลดแผนที่ตามเส้นทาง @@ -523,6 +527,8 @@ โบนัสการแนะนำที่ได้รับสำหรับการจองแต่ละครั้งผ่านลิงก์นี้จะนำไปใช้ในการพัฒนาแผนที่ทั่วไป รายละเอียดบน Kayak + + ปดการใชงาน Kayak แก้ไข Bookmark ข้อคิดเห็น ตั้งค่าการเปลี่ยนแปลงท้องถิ่นทั้งหมด diff --git a/android/app/src/main/res/values-tr/strings.xml b/android/app/src/main/res/values-tr/strings.xml index 1b51c4a192..54591a85d2 100644 --- a/android/app/src/main/res/values-tr/strings.xml +++ b/android/app/src/main/res/values-tr/strings.xml @@ -314,6 +314,10 @@ Google Play Konum Hizmetleri Bluetooth, WiFi veya mobil ağ üzerinden yaklaşık konumunuzu hızlıca belirleyin + + Kayak.com Otel Bağlantıları + + Kayak.com\'da listesi olan oteller için fotoğraflar, yorumlar, rezervasyon bağlantıları görüntülenir. Bu bağlantılar aracılığıyla yapılan her rezervasyon için alınan yönlendirme bonusu Organic Maps\'in geliştirilmesine harcanmaktadır. Rota üzerindeki tüm haritaları indir @@ -553,6 +557,8 @@ Bu bağlantı üzerinden yapılan her rezervasyon için alınan yönlendirme bonusu Organic Maps\'in geliştirilmesine harcanmaktadır. Kayak hakkında detaylar + + Kayak\'yı devre dışı bırak Yer İmini Düzenle Yorum… Tüm yerel değişiklikler sıfırlansın mı? diff --git a/android/app/src/main/res/values-uk/strings.xml b/android/app/src/main/res/values-uk/strings.xml index 09c783a087..688a6a6ea3 100644 --- a/android/app/src/main/res/values-uk/strings.xml +++ b/android/app/src/main/res/values-uk/strings.xml @@ -317,6 +317,10 @@ Служби визначення місцезнаходження Google Play Швидке визначення приблизного місця розташування за допомогою Bluetooth, WiFi або мобільної мережі + + Посилання на готелі Kayak.com + + Фотографії, відгуки, посилання на бронювання відображаються для готелів, які мають лістинг на Kayak.com. Реферальний бонус, отриманий за кожне бронювання за цими посиланнями, йде на розвиток Organic Maps. Завантажити мапи з дороги @@ -553,6 +557,8 @@ Реферальний бонус, отриманий за кожне бронювання за цим посиланням, йде на розробку Organic Maps. Докладніше на Kayak + + Вимкнути Kayak Редагувати мiтку Коментар… Скинути всі локальні виправлення? diff --git a/android/app/src/main/res/values-vi/strings.xml b/android/app/src/main/res/values-vi/strings.xml index 61009c1efc..a6b62a07f4 100644 --- a/android/app/src/main/res/values-vi/strings.xml +++ b/android/app/src/main/res/values-vi/strings.xml @@ -291,6 +291,10 @@ Dịch vụ vị trí của Google Play Nhanh chóng xác định vị trí gần đúng của bạn bằng Bluetooth, WiFi hoặc mạng di động + + Liên kết khách sạn Kayak.com + + Hình ảnh, đánh giá, liên kết đặt phòng được hiển thị cho các khách sạn có danh sách trên Kayak.com. Phần thưởng giới thiệu nhận được cho mỗi lần đặt phòng thông qua các liên kết này sẽ hướng tới sự phát triển của Organic Maps. Tải xuống bản đồ theo tuyến đường @@ -521,6 +525,8 @@ Phần thưởng giới thiệu nhận được cho mỗi lần đặt phòng thông qua liên kết này sẽ hướng tới việc phát triển bản đồ không phải trả tiền. Chi tiết trên Kayak + + Vô hiệu hóa Kayak Sửa Dấu Trang Nhận xét… Cài đặt lại tất cả thay đổi cục bộ? diff --git a/android/app/src/main/res/values-zh-rTW/strings.xml b/android/app/src/main/res/values-zh-rTW/strings.xml index 35f7131e50..2d52948db4 100644 --- a/android/app/src/main/res/values-zh-rTW/strings.xml +++ b/android/app/src/main/res/values-zh-rTW/strings.xml @@ -321,6 +321,10 @@ Google Play 定位服務 使用藍牙、WiFi 或行動數據快速確定您的大致位置 + + Kayak.com 飯店鏈接 + + 顯示在 Kayak.com 上列出的飯店的照片、評論和預訂連結。透過這些連結進行的每次預訂收到的推薦獎金將用於 Organic Maps 的開發。 下載路線上的所有地圖 @@ -561,6 +565,8 @@ 每次通過此鏈接預定所獲得的推薦獎金將用於 Organic Maps 的開發。 Kayak 上的詳細資訊 + + 禁用 Kayak 編輯書籤 備註… 重設所有本機變更? diff --git a/android/app/src/main/res/values-zh/strings.xml b/android/app/src/main/res/values-zh/strings.xml index ddc07658e6..74026fb71f 100644 --- a/android/app/src/main/res/values-zh/strings.xml +++ b/android/app/src/main/res/values-zh/strings.xml @@ -321,6 +321,10 @@ Google Play 定位服务 通过蓝牙、WiFi 或移动网络快速确定您的大致位置 + + Kayak.com 酒店链接 + + Kayak.com上列出的酒店会显示照片、评论和预订链接。通过这些链接进行预订所获得的推荐奖金将用于发展 Organic Maps。 下载路线上的所有地图 @@ -561,6 +565,8 @@ 每次通过此链接预订所获得的推荐奖金将用于 Organic Maps 的开发。 客涯 (Kayak) 上的详细信息 + + 禁用 Kayak 编辑书签 备注… 重置所有本地更改? diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index 78828a53da..5baa1089a8 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -337,6 +337,10 @@ Google Play Location Services Quickly determine your approximate location using Bluetooth, WiFi, or mobile network + + Kayak.com Hotel Links + + \"Photos, reviews, booking\" links are displayed for hotels which have a listing on Kayak.com. The referral bonus received for each booking through these links goes towards development of Organic Maps. Download all of the maps along your route @@ -578,6 +582,8 @@ The referral bonus received for each booking through this link goes towards the development of Organic Maps. Details on Kayak + + Disable Kayak Edit Bookmark Comment… Discard all local changes? diff --git a/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.strings index 189d05c6e8..50778fb74e 100644 --- a/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "التفاصيل على Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "تعطيل Kayak"; + "placepage_call_button" = "اتصال"; "placepage_edit_bookmark_button" = "تحرير العلامة المرجعية"; diff --git a/iphone/Maps/LocalizedStrings/az.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/az.lproj/Localizable.strings index 692b90d9e1..23811393c4 100644 --- a/iphone/Maps/LocalizedStrings/az.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/az.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Xizək sürmə haqqında təfərrüatlar"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak-ı söndürün"; + "placepage_call_button" = "Zəng"; "placepage_edit_bookmark_button" = "Əlfəcini redaktə edin"; diff --git a/iphone/Maps/LocalizedStrings/be.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/be.lproj/Localizable.strings index dccac2f1cf..7bc86db4e7 100644 --- a/iphone/Maps/LocalizedStrings/be.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/be.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Падрабязнасці на Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Адключыць Kayak"; + "placepage_call_button" = "Патэлефанаваць"; "placepage_edit_bookmark_button" = "Рэдагаваць закладку"; diff --git a/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.strings index 0ba2ec41ec..8341fb290b 100644 --- a/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Подробности в Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Деактивиране на Kayak"; + "placepage_call_button" = "Обаждане"; "placepage_edit_bookmark_button" = "Редакция на отметка"; diff --git a/iphone/Maps/LocalizedStrings/ca.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ca.lproj/Localizable.strings index 7965c8be34..05cc763e04 100644 --- a/iphone/Maps/LocalizedStrings/ca.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ca.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Detalls a Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Desactiva Kayak"; + "placepage_call_button" = "Truca-hi"; "placepage_edit_bookmark_button" = "Edita el marcador"; diff --git a/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.strings index d75d36e76c..07b650cfa5 100644 --- a/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Podrobnosti na Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Zakázat Kayak"; + "placepage_call_button" = "Volat"; "placepage_edit_bookmark_button" = "Upravit záložku"; diff --git a/iphone/Maps/LocalizedStrings/da.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/da.lproj/Localizable.strings index d540a0c02e..1e93171913 100644 --- a/iphone/Maps/LocalizedStrings/da.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/da.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Detaljer på Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Deaktiver Kayak"; + "placepage_call_button" = "Ring"; "placepage_edit_bookmark_button" = "Rediger bogmærke"; diff --git a/iphone/Maps/LocalizedStrings/de.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/de.lproj/Localizable.strings index 769919dbd6..a6f34b550c 100644 --- a/iphone/Maps/LocalizedStrings/de.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/de.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Einzelheiten bei Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak deaktivieren"; + "placepage_call_button" = "Anrufen"; "placepage_edit_bookmark_button" = "Lesezeichen bearbeiten"; diff --git a/iphone/Maps/LocalizedStrings/el.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/el.lproj/Localizable.strings index 9a281be850..8b0e122987 100644 --- a/iphone/Maps/LocalizedStrings/el.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/el.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Λεπτομέρειες στο Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Απενεργοποίηση του Kayak"; + "placepage_call_button" = "Κλήση"; "placepage_edit_bookmark_button" = "Επεξεργασία αγαπημένου"; diff --git a/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.strings index fe04ac47f0..da31d2791b 100644 --- a/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Details on Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Disable Kayak"; + "placepage_call_button" = "Call"; "placepage_edit_bookmark_button" = "Edit Bookmark"; diff --git a/iphone/Maps/LocalizedStrings/en.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/en.lproj/Localizable.strings index 5d084c17f6..89362d79ea 100644 --- a/iphone/Maps/LocalizedStrings/en.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/en.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Details on Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Disable Kayak"; + "placepage_call_button" = "Call"; "placepage_edit_bookmark_button" = "Edit Bookmark"; diff --git a/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.strings index 073b3b914d..09d3f1070f 100644 --- a/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Detalles sobre Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Desactivar Kayak"; + "placepage_call_button" = "Llamar"; "placepage_edit_bookmark_button" = "Editar marcador"; diff --git a/iphone/Maps/LocalizedStrings/es.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/es.lproj/Localizable.strings index 1190b23073..e1f59bf41c 100644 --- a/iphone/Maps/LocalizedStrings/es.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/es.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Detalles en Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Desactivar Kayak"; + "placepage_call_button" = "Llamar"; "placepage_edit_bookmark_button" = "Editar marcador"; diff --git a/iphone/Maps/LocalizedStrings/et.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/et.lproj/Localizable.strings index f384cd38bd..36a408c1eb 100644 --- a/iphone/Maps/LocalizedStrings/et.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/et.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Üksikasjad Kayaki kohta"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak välja lülitada"; + "placepage_call_button" = "Helista"; "placepage_edit_bookmark_button" = "Muuda järjehoidjat"; diff --git a/iphone/Maps/LocalizedStrings/eu.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/eu.lproj/Localizable.strings index 530039e574..19d06fa407 100644 --- a/iphone/Maps/LocalizedStrings/eu.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/eu.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Xehetasunak Kayak-en"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Desgaitu Kayak"; + "placepage_call_button" = "Deitu"; "placepage_edit_bookmark_button" = "Editatu markagailua"; diff --git a/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.strings index 633918158c..0e64ed6a6c 100644 --- a/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "جزئیات در Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak را غیرفعال کنید"; + "placepage_call_button" = "تماس"; "placepage_edit_bookmark_button" = "ویرایش نشانه‌ها"; diff --git a/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.strings index c8f4f704b8..587263c274 100644 --- a/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Lisätietoa osoitteessa Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Poista Kayak käytöstä"; + "placepage_call_button" = "Soita"; "placepage_edit_bookmark_button" = "Muokkaa kirjanmerkkiä"; diff --git a/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.strings index 770ca7809e..9f5a558515 100644 --- a/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Détails sur Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Désactiver Kayak"; + "placepage_call_button" = "Appeler"; "placepage_edit_bookmark_button" = "Éditer le signet"; diff --git a/iphone/Maps/LocalizedStrings/he.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/he.lproj/Localizable.strings index 18edcbc88a..d9b1b157d0 100644 --- a/iphone/Maps/LocalizedStrings/he.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/he.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "פרטים על Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "השבת את Kayak"; + "placepage_call_button" = "התקשר"; "placepage_edit_bookmark_button" = "ערוך סימניה"; diff --git a/iphone/Maps/LocalizedStrings/hi.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/hi.lproj/Localizable.strings index a447e71709..a8db481cce 100644 --- a/iphone/Maps/LocalizedStrings/hi.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/hi.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "कयाक पर विवरण"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak अकषम कर"; + "placepage_call_button" = "Call"; "placepage_edit_bookmark_button" = "Edit Bookmark"; diff --git a/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.strings index b2d0387f8a..df199f23f1 100644 --- a/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Részletek a Kayak-on"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak kikapcsolása"; + "placepage_call_button" = "Hívás"; "placepage_edit_bookmark_button" = "Könyvjelző szerkesztése"; diff --git a/iphone/Maps/LocalizedStrings/id.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/id.lproj/Localizable.strings index 25955012a4..ecf2542bc1 100644 --- a/iphone/Maps/LocalizedStrings/id.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/id.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Perincian di Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Nonaktifkan Kayak"; + "placepage_call_button" = "Hubungi"; "placepage_edit_bookmark_button" = "Edit Bookmark"; diff --git a/iphone/Maps/LocalizedStrings/it.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/it.lproj/Localizable.strings index bf6f1b42f9..b9ebfb5a42 100644 --- a/iphone/Maps/LocalizedStrings/it.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/it.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Dettagli su Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Disabilita Kayak"; + "placepage_call_button" = "Chiama"; "placepage_edit_bookmark_button" = "Modifica luogo preferito"; diff --git a/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.strings index 93b3f0eab1..ed150ce433 100644 --- a/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Kayak で詳細表示"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayakの無効化"; + "placepage_call_button" = "電話をかける"; "placepage_edit_bookmark_button" = "ブックマークを編集"; diff --git a/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.strings index c296ac2a2c..1997002c06 100644 --- a/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Kayak의 세부 정보"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak 비활성화"; + "placepage_call_button" = "전화"; "placepage_edit_bookmark_button" = "즐겨찾기 편집"; diff --git a/iphone/Maps/LocalizedStrings/mr.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/mr.lproj/Localizable.strings index 42b9d12805..4ea223e965 100644 --- a/iphone/Maps/LocalizedStrings/mr.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/mr.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "कायाक वर तपशील"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak अकषम कर"; + "placepage_call_button" = "फोन करा"; "placepage_edit_bookmark_button" = "खूणपत्र संपादित करा"; diff --git a/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.strings index b1318c8ee0..bd19f33bc2 100644 --- a/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Mer informasjon om Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Deaktiver Kayak"; + "placepage_call_button" = "Ring"; "placepage_edit_bookmark_button" = "Rediger bokmerke"; diff --git a/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.strings index b783c0f098..5e8844eba8 100644 --- a/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Details op Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak uitschakelen"; + "placepage_call_button" = "Bel"; "placepage_edit_bookmark_button" = "Bewerk bladwijzer"; diff --git a/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.strings index af8253c81c..a1a36c53e0 100644 --- a/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Szczegóły na Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Proszę wyłączyć Kayak"; + "placepage_call_button" = "Zadzwoń"; "placepage_edit_bookmark_button" = "Edytuj zakładkę"; diff --git a/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.strings index f317e16f38..715f60b136 100644 --- a/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Detalhes em Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Desativar o Kayak"; + "placepage_call_button" = "Ligar"; "placepage_edit_bookmark_button" = "Editar favorito"; diff --git a/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.strings index 86bec5096b..da7ed1fad3 100644 --- a/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Detalhes em Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Desativar Kayak"; + "placepage_call_button" = "Telefonar"; "placepage_edit_bookmark_button" = "Editar favorito"; diff --git a/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.strings index 5e67cc2568..ed2f1cd8f8 100644 --- a/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Detalii pe Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Dezactivați Kayak"; + "placepage_call_button" = "Apelează"; "placepage_edit_bookmark_button" = "Modifică locul preferat"; diff --git a/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.strings index b08a336ae4..6ed9b61af8 100644 --- a/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Подробнее на Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Отключить Kayak"; + "placepage_call_button" = "Позвонить"; "placepage_edit_bookmark_button" = "Редактировать метку"; diff --git a/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.strings index edf64cb871..d2213be858 100644 --- a/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Podrobnosti na Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Zakázať Kayak"; + "placepage_call_button" = "Zavolať"; "placepage_edit_bookmark_button" = "Upraviť záložku"; diff --git a/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.strings index 9790174448..aa81c5ce0a 100644 --- a/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Information på Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Inaktivera Kayak"; + "placepage_call_button" = "Ring"; "placepage_edit_bookmark_button" = "Redigera bokmärke"; diff --git a/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.strings index 18202629fe..39141b6400 100644 --- a/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Maelezo kuhusu Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Lemaza Kayak"; + "placepage_call_button" = "Call"; "placepage_edit_bookmark_button" = "Edit Bookmark"; diff --git a/iphone/Maps/LocalizedStrings/th.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/th.lproj/Localizable.strings index a95993f563..c052e62287 100644 --- a/iphone/Maps/LocalizedStrings/th.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/th.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "รายละเอียดบน Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "ปดการใชงาน Kayak"; + "placepage_call_button" = "โทร"; "placepage_edit_bookmark_button" = "แก้ไข Bookmark"; diff --git a/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.strings index 4cb1880929..5e643bd5cd 100644 --- a/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Kayak hakkında detaylar"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Kayak'yı devre dışı bırak"; + "placepage_call_button" = "Ara"; "placepage_edit_bookmark_button" = "Yer İmini Düzenle"; diff --git a/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.strings index 7dc7e9cd30..26d48be994 100644 --- a/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Докладніше на Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Вимкнути Kayak"; + "placepage_call_button" = "Подзвонити"; "placepage_edit_bookmark_button" = "Редагувати мiтку"; diff --git a/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.strings index 0276988703..018e704c54 100644 --- a/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Chi tiết trên Kayak"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "Vô hiệu hóa Kayak"; + "placepage_call_button" = "Gọi"; "placepage_edit_bookmark_button" = "Sửa Dấu Trang"; diff --git a/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.strings index 4ba439a4ac..fb78d4f7fd 100644 --- a/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "客涯 (Kayak) 上的详细信息"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "禁用 Kayak"; + "placepage_call_button" = "呼叫"; "placepage_edit_bookmark_button" = "编辑书签"; diff --git a/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.strings index 7b56c2cd10..3a81606885 100644 --- a/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.strings @@ -820,6 +820,9 @@ /* A confirmation button text in the explanation dialog that opens hotel details page on Kayak website. */ "dialog_kayak_button" = "Kayak 上的詳細資訊"; +/* A disable button text in the explanation dialog that opens hotel details page on Kayak website. */ +"dialog_kayak_disable_button" = "禁用 Kayak"; + "placepage_call_button" = "呼叫"; "placepage_edit_bookmark_button" = "編輯書籤"; -- 2.45.3