forked from organicmaps/organicmaps
[android] Added hotel type filter
This commit is contained in:
parent
e0dd57c50e
commit
df25e1dd44
56 changed files with 810 additions and 545 deletions
|
@ -34,7 +34,8 @@ public:
|
|||
{
|
||||
TYPE_AND = 0,
|
||||
TYPE_OR = 1,
|
||||
TYPE_OP = 2
|
||||
TYPE_OP = 2,
|
||||
TYPE_ONE_OF = 3
|
||||
};
|
||||
|
||||
// *NOTE* keep this in sync with Java counterpart.
|
||||
|
@ -82,6 +83,17 @@ public:
|
|||
m_op = env->GetFieldID(opClass, "mOp", "I");
|
||||
}
|
||||
|
||||
{
|
||||
auto const oneOfClass = env->FindClass("com/mapswithme/maps/search/HotelsFilter$OneOf");
|
||||
auto const hotelTypeClass =
|
||||
env->FindClass("com/mapswithme/maps/search/HotelsFilter$HotelType");
|
||||
m_hotelType = env->GetFieldID(oneOfClass, "mType",
|
||||
"Lcom/mapswithme/maps/search/HotelsFilter$HotelType;");
|
||||
m_typeRhs =
|
||||
env->GetFieldID(oneOfClass, "mRhs", "Lcom/mapswithme/maps/search/HotelsFilter$OneOf;");
|
||||
m_hotelId = env->GetFieldID(hotelTypeClass, "mType", "I");
|
||||
}
|
||||
|
||||
{
|
||||
auto const ratingFilterClass =
|
||||
env->FindClass("com/mapswithme/maps/search/HotelsFilter$RatingFilter");
|
||||
|
@ -112,6 +124,7 @@ public:
|
|||
case TYPE_AND: return BuildAnd(env, filter);
|
||||
case TYPE_OR: return BuildOr(env, filter);
|
||||
case TYPE_OP: return BuildOp(env, filter);
|
||||
case TYPE_ONE_OF: return BuildOneOf(env, filter);
|
||||
}
|
||||
|
||||
LOG(LERROR, ("Unknown type:", type));
|
||||
|
@ -148,6 +161,28 @@ private:
|
|||
return {};
|
||||
}
|
||||
|
||||
Rule BuildOneOf(JNIEnv * env, jobject filter)
|
||||
{
|
||||
auto const hotelType = env->GetObjectField(filter, m_hotelType);
|
||||
auto type = static_cast<unsigned>(env->GetIntField(hotelType, m_hotelId));
|
||||
auto const rhs = env->GetObjectField(filter, m_typeRhs);
|
||||
unsigned value = 1U << type;
|
||||
return BuildOneOf(env, rhs, value);
|
||||
}
|
||||
|
||||
Rule BuildOneOf(JNIEnv * env, jobject filter, unsigned value)
|
||||
{
|
||||
if (filter == NULL)
|
||||
return search::hotels_filter::OneOf(value);
|
||||
|
||||
auto const hotelType = env->GetObjectField(filter, m_hotelType);
|
||||
auto type = static_cast<unsigned>(env->GetIntField(hotelType, m_hotelId));
|
||||
auto const rhs = env->GetObjectField(filter, m_typeRhs);
|
||||
value = value | (1U << type);
|
||||
|
||||
return BuildOneOf(env, rhs, value);
|
||||
}
|
||||
|
||||
Rule BuildRatingOp(JNIEnv * env, int op, jobject filter)
|
||||
{
|
||||
using namespace search::hotels_filter;
|
||||
|
@ -197,6 +232,10 @@ private:
|
|||
jfieldID m_field;
|
||||
jfieldID m_op;
|
||||
|
||||
jfieldID m_hotelType;
|
||||
jfieldID m_hotelId;
|
||||
jfieldID m_typeRhs;
|
||||
|
||||
jfieldID m_rating;
|
||||
jfieldID m_priceRate;
|
||||
|
||||
|
@ -459,4 +498,24 @@ extern "C"
|
|||
g_framework->NativeFramework()->CancelSearch(search::Mode::Viewport);
|
||||
});
|
||||
}
|
||||
|
||||
JNIEXPORT jobjectArray JNICALL
|
||||
Java_com_mapswithme_maps_search_SearchEngine_nativeGetHotelTypes(JNIEnv * env, jclass clazz)
|
||||
{
|
||||
using Type = ftypes::IsHotelChecker::Type;
|
||||
static const jclass hotelTypeClass =
|
||||
env->FindClass("com/mapswithme/maps/search/HotelsFilter$HotelType");
|
||||
static jmethodID const hotelTypeCtorId =
|
||||
jni::GetConstructorID(env, hotelTypeClass, "(ILjava/lang/String;)V");
|
||||
|
||||
vector<Type> types;
|
||||
for (size_t i = 0; i < static_cast<size_t>(Type::Count); i++)
|
||||
types.push_back(static_cast<Type>(i));
|
||||
|
||||
return jni::ToJavaArray(env, hotelTypeClass, types, [](JNIEnv * env, Type const & item) {
|
||||
auto const tag = ftypes::IsHotelChecker::GetHotelTypeTag(item);
|
||||
return env->NewObject(hotelTypeClass, hotelTypeCtorId, static_cast<jint>(item),
|
||||
jni::ToJavaString(env, tag));
|
||||
});
|
||||
}
|
||||
} // extern "C"
|
||||
|
|
7
android/res/drawable/bg_tag.xml
Normal file
7
android/res/drawable/bg_tag.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/bg_tag_selected"
|
||||
android:state_selected="true"/>
|
||||
|
||||
<item android:drawable="@drawable/bg_tag_normal"/>
|
||||
</selector>
|
7
android/res/drawable/bg_tag_night.xml
Normal file
7
android/res/drawable/bg_tag_night.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/bg_tag_selected_night"
|
||||
android:state_selected="true"/>
|
||||
|
||||
<item android:drawable="@drawable/bg_tag_normal_night"/>
|
||||
</selector>
|
13
android/res/drawable/bg_tag_normal.xml
Normal file
13
android/res/drawable/bg_tag_normal.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<stroke android:color="@color/black_11" android:width="1dp"/>
|
||||
<size android:height="@dimen/hotel_filters_tag_height"/>
|
||||
<padding
|
||||
android:bottom="@dimen/margin_half"
|
||||
android:top="@dimen/margin_half"
|
||||
android:left="@dimen/margin_base"
|
||||
android:right="@dimen/margin_base"/>
|
||||
<corners android:radius="@dimen/margin_base"/>
|
||||
</shape>
|
13
android/res/drawable/bg_tag_normal_night.xml
Normal file
13
android/res/drawable/bg_tag_normal_night.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<stroke android:color="@color/white_11" android:width="1dp"/>
|
||||
<size android:height="@dimen/hotel_filters_tag_height"/>
|
||||
<padding
|
||||
android:bottom="@dimen/margin_half"
|
||||
android:top="@dimen/margin_half"
|
||||
android:left="@dimen/margin_base"
|
||||
android:right="@dimen/margin_base"/>
|
||||
<corners android:radius="@dimen/margin_base"/>
|
||||
</shape>
|
13
android/res/drawable/bg_tag_selected.xml
Normal file
13
android/res/drawable/bg_tag_selected.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color="@color/base_accent"/>
|
||||
<size android:height="@dimen/hotel_filters_tag_height"/>
|
||||
<padding
|
||||
android:bottom="@dimen/margin_half"
|
||||
android:top="@dimen/margin_half"
|
||||
android:left="@dimen/margin_base"
|
||||
android:right="@dimen/margin_base"/>
|
||||
<corners android:radius="@dimen/margin_base"/>
|
||||
</shape>
|
13
android/res/drawable/bg_tag_selected_night.xml
Normal file
13
android/res/drawable/bg_tag_selected_night.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid android:color="@color/base_accent_night"/>
|
||||
<size android:height="@dimen/hotel_filters_tag_height"/>
|
||||
<padding
|
||||
android:bottom="@dimen/margin_half"
|
||||
android:top="@dimen/margin_half"
|
||||
android:left="@dimen/margin_base"
|
||||
android:right="@dimen/margin_base"/>
|
||||
<corners android:radius="@dimen/margin_base"/>
|
||||
</shape>
|
|
@ -2,5 +2,6 @@
|
|||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<size android:width="@dimen/margin_quarter"
|
||||
android:height="@dimen/margin_quarter"/>
|
||||
<solid android:color="@android:color/transparent"/>
|
||||
<!--<solid android:color="@android:color/transparent"/>-->
|
||||
<solid android:color="@android:color/black"/>
|
||||
</shape>
|
||||
|
|
6
android/res/drawable/divider_transparent_half.xml
Normal file
6
android/res/drawable/divider_transparent_half.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<size android:width="@dimen/margin_half"
|
||||
android:height="@dimen/margin_half"/>
|
||||
<solid android:color="@android:color/transparent"/>
|
||||
</shape>
|
6
android/res/drawable/divider_transparent_quarter.xml
Normal file
6
android/res/drawable/divider_transparent_quarter.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<size android:width="@dimen/margin_quarter"
|
||||
android:height="@dimen/margin_quarter"/>
|
||||
<solid android:color="@android:color/transparent"/>
|
||||
</shape>
|
|
@ -60,7 +60,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/header"/>
|
||||
|
||||
<ScrollView
|
||||
<android.support.v4.widget.NestedScrollView
|
||||
android:id="@+id/scroll"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
@ -110,8 +110,26 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<include layout="@layout/divider_horizontal"/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/margin_base"
|
||||
android:layout_marginRight="@dimen/margin_base"
|
||||
android:layout_marginTop="@dimen/margin_base"
|
||||
android:layout_marginBottom="@dimen/margin_half"
|
||||
android:textAppearance="@style/MwmTextAppearance.Body3"
|
||||
android:textColor="?colorAccent"
|
||||
android:fontFamily="@string/robotoMedium"
|
||||
android:text="@string/booking_filters_type"
|
||||
tools:targetApi="jelly_bean"/>
|
||||
<android.support.v7.widget.RecyclerView
|
||||
android:id="@+id/type"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
tools:listitem="@layout/item_tag"/>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</android.support.v4.widget.NestedScrollView>
|
||||
<RelativeLayout
|
||||
android:id="@+id/buttons_frame"
|
||||
android:layout_width="match_parent"
|
||||
|
|
25
android/res/layout/item_tag.xml
Normal file
25
android/res/layout/item_tag.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="@dimen/hotel_filters_tag_height"
|
||||
android:background="?tagBackground"
|
||||
android:gravity="center"
|
||||
android:clickable="true">
|
||||
<TextView
|
||||
android:id="@+id/tv__tag"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="@style/MwmTextAppearance.Body3.Primary"
|
||||
android:lines="1"
|
||||
android:ellipsize="end"
|
||||
android:lineSpacingExtra="2sp"
|
||||
android:letterSpacing="-0.01"
|
||||
android:includeFontPadding="false"
|
||||
android:layout_gravity="center"
|
||||
android:gravity="center_horizontal"
|
||||
tools:text="Hotel"
|
||||
tools:targetApi="lollipop"/>
|
||||
</LinearLayout>
|
|
@ -300,15 +300,6 @@
|
|||
<string name="length">Длина</string>
|
||||
<string name="share_my_location">Поделиться местоположением</string>
|
||||
<string name="menu_search">Поиск</string>
|
||||
<!-- Settings general group in settings screen -->
|
||||
<string name="prefs_group_general">Общие настройки</string>
|
||||
<!-- Settings information group in settings screen -->
|
||||
<string name="prefs_group_information">Информация</string>
|
||||
<!-- Settings languages information in voice instructions screen -->
|
||||
<string name="prefs_languages_information">Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).</string>
|
||||
<!-- Settings languages off information in voice instructions screen -->
|
||||
<string name="prefs_languages_information_off">For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device\'s settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.</string>
|
||||
<string name="prefs_languages_information_off_link">Для получения дополнительной информации, пожалуйста, ознакомьтесь с руководством.</string>
|
||||
<!-- Settings screen: "Map" category title -->
|
||||
<string name="prefs_group_map">Карта</string>
|
||||
<!-- Settings screen: "Miscellaneous" category title -->
|
||||
|
@ -1104,6 +1095,5 @@
|
|||
<string name="search_hotel_filter_hostel">Хостел</string>
|
||||
<string name="search_hotel_filter_resort">Дом отдыха</string>
|
||||
<string name="search_hotel_filter_motel">Мотель</string>
|
||||
<string name="on">Вкл.</string>
|
||||
<string name="off">Выкл.</string>
|
||||
<string name="booking_filters_type">Тип</string>
|
||||
</resources>
|
||||
|
|
|
@ -21,12 +21,14 @@
|
|||
<color name="black_secondary">#8A000000</color> <!-- 54% black -->
|
||||
<color name="black_lightest">#61000000</color> <!-- 38% black -->
|
||||
<color name="black_8">#14000000</color> <!-- 8% black -->
|
||||
<color name="black_11">#1E000000</color> <!-- 11% black -->
|
||||
<color name="black_24">#3D000000</color> <!-- 24% black -->
|
||||
<color name="black_60">#99000000</color> <!-- 24% black -->
|
||||
<color name="white_primary">#FFFFFFFF</color> <!-- 100% white -->
|
||||
<color name="white_secondary">#B3FFFFFF</color> <!-- 70% white -->
|
||||
<color name="white_lightest">#4CFFFFFF</color> <!-- 50% white -->
|
||||
<color name="white_8">#14FFFFFF</color> <!-- 8% white -->
|
||||
<color name="white_11">#1EFFFFFF</color> <!-- 11% white -->
|
||||
<color name="white_12">#1Effffff</color> <!-- 12% white -->
|
||||
<color name="white_24">#3DFFFFFF</color> <!-- 24% black -->
|
||||
<color name="white_60">#99FFFFFF</color> <!-- 24% black -->
|
||||
|
|
|
@ -184,8 +184,7 @@
|
|||
<dimen name="hotels_filter_padding">128dp</dimen>
|
||||
|
||||
<dimen name="margin_dialog_title">20dp</dimen>
|
||||
<!-- Fab elevation-->
|
||||
<dimen name="fab_elevation">8dp</dimen>
|
||||
|
||||
<dimen name="action_bar_extended_height">72dp</dimen>
|
||||
<!-- Hotel silters-->
|
||||
<dimen name="hotel_filters_tag_height">32dp</dimen>
|
||||
</resources>
|
||||
|
|
|
@ -302,15 +302,6 @@
|
|||
<string name="length">Length</string>
|
||||
<string name="share_my_location">Share My Location</string>
|
||||
<string name="menu_search">Search</string>
|
||||
<!-- Settings general group in settings screen -->
|
||||
<string name="prefs_group_general">General settings</string>
|
||||
<!-- Settings information group in settings screen -->
|
||||
<string name="prefs_group_information">Information</string>
|
||||
<!-- Settings languages information in voice instructions screen -->
|
||||
<string name="prefs_languages_information">Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).</string>
|
||||
<!-- Settings languages off information in voice instructions screen -->
|
||||
<string name="prefs_languages_information_off">For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device\'s settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.</string>
|
||||
<string name="prefs_languages_information_off_link">For more information please check the guide.</string>
|
||||
<!-- Settings screen: "Map" category title -->
|
||||
<string name="prefs_group_map">Map</string>
|
||||
<!-- Settings screen: "Miscellaneous" category title -->
|
||||
|
@ -1116,6 +1107,5 @@
|
|||
<string name="search_hotel_filter_motel">Motel</string>
|
||||
<string name="create_campaign_button">Create ad campaign</string>
|
||||
<string name="view_campaign_button">View ad campaign</string>
|
||||
<string name="on">On</string>
|
||||
<string name="off">Off</string>
|
||||
<string name="booking_filters_type">Type</string>
|
||||
</resources>
|
||||
|
|
|
@ -84,6 +84,8 @@
|
|||
<attr name="warmGray" format="color"/>
|
||||
|
||||
<attr name="localAdSearchResBackground" format="color"/>
|
||||
|
||||
<attr name="tagBackground" format="reference"/>
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="ThemeAttrs.NavButtons">
|
||||
|
|
|
@ -101,6 +101,8 @@
|
|||
|
||||
<item name="localAdSearchResBackground">@color/search_local_ads_customer_result</item>
|
||||
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
|
||||
|
||||
<item name="tagBackground">@drawable/bg_tag</item>
|
||||
</style>
|
||||
|
||||
<!-- Night theme -->
|
||||
|
@ -204,6 +206,7 @@
|
|||
<item name="warmGray">@color/warm_gray_night</item>
|
||||
|
||||
<item name="localAdSearchResBackground">@color/search_local_ads_customer_result_night</item>
|
||||
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
|
||||
|
||||
<item name="tagBackground">@drawable/bg_tag_night</item>
|
||||
</style>
|
||||
</resources>
|
||||
|
|
|
@ -43,7 +43,7 @@ public class GalleryFragment extends BaseMwmFragment implements RecyclerClickLis
|
|||
RecyclerView rvGallery = (RecyclerView) view.findViewById(R.id.rv__gallery);
|
||||
rvGallery.setLayoutManager(new GridLayoutManager(getContext(), NUM_COLUMNS));
|
||||
rvGallery.setAdapter(new ImageAdapter(mImages, this));
|
||||
Drawable divider = ContextCompat.getDrawable(getContext(), R.drawable.divider_transparent);
|
||||
Drawable divider = ContextCompat.getDrawable(getContext(), R.drawable.divider_transparent_quarter);
|
||||
rvGallery.addItemDecoration(new GridDividerItemDecoration(divider, divider, NUM_COLUMNS));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@ package com.mapswithme.maps.search;
|
|||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.annotation.Nullable;
|
||||
|
||||
import static com.mapswithme.maps.search.HotelsFilter.Op.FIELD_RATING;
|
||||
|
||||
|
@ -12,6 +13,7 @@ public class HotelsFilter implements Parcelable
|
|||
public final static int TYPE_AND = 0;
|
||||
public final static int TYPE_OR = 1;
|
||||
public final static int TYPE_OP = 2;
|
||||
public final static int TYPE_ONE_OF = 3;
|
||||
|
||||
public final int mType;
|
||||
|
||||
|
@ -112,6 +114,36 @@ public class HotelsFilter implements Parcelable
|
|||
}
|
||||
}
|
||||
|
||||
public static class OneOf extends HotelsFilter
|
||||
{
|
||||
@NonNull
|
||||
public final HotelType mType;
|
||||
@Nullable
|
||||
public final OneOf mRhs;
|
||||
|
||||
public OneOf(@NonNull HotelType type, @Nullable OneOf rhs)
|
||||
{
|
||||
super(TYPE_ONE_OF);
|
||||
mType = type;
|
||||
mRhs = rhs;
|
||||
}
|
||||
|
||||
public OneOf(Parcel source)
|
||||
{
|
||||
super(TYPE_ONE_OF);
|
||||
mType = source.readParcelable(HotelType.class.getClassLoader());
|
||||
mRhs = source.readParcelable(HotelsFilter.class.getClassLoader());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeToParcel(Parcel dest, int flags)
|
||||
{
|
||||
super.writeToParcel(dest, flags);
|
||||
dest.writeParcelable(mType, flags);
|
||||
dest.writeParcelable(mRhs, flags);
|
||||
}
|
||||
}
|
||||
|
||||
public static class RatingFilter extends Op
|
||||
{
|
||||
public final float mValue;
|
||||
|
@ -186,6 +218,9 @@ public class HotelsFilter implements Parcelable
|
|||
if (type == TYPE_OR)
|
||||
return new Or(source);
|
||||
|
||||
if (type == TYPE_ONE_OF)
|
||||
return new OneOf(source);
|
||||
|
||||
int field = source.readInt();
|
||||
if (field == FIELD_RATING)
|
||||
return new RatingFilter(source);
|
||||
|
@ -207,4 +242,79 @@ public class HotelsFilter implements Parcelable
|
|||
return new HotelsFilter[size];
|
||||
}
|
||||
};
|
||||
|
||||
public static class HotelType implements Parcelable
|
||||
{
|
||||
final int mType;
|
||||
@NonNull
|
||||
final String mTag;
|
||||
|
||||
public HotelType(int type, @NonNull String tag)
|
||||
{
|
||||
mType = type;
|
||||
mTag = tag;
|
||||
}
|
||||
|
||||
protected HotelType(Parcel in)
|
||||
{
|
||||
mType = in.readInt();
|
||||
mTag = in.readString();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeToParcel(Parcel dest, int flags)
|
||||
{
|
||||
dest.writeInt(mType);
|
||||
dest.writeString(mTag);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int describeContents()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
public int getType()
|
||||
{
|
||||
return mType;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public String getTag()
|
||||
{
|
||||
return mTag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o)
|
||||
{
|
||||
if (this == o) return true;
|
||||
if (o == null || getClass() != o.getClass()) return false;
|
||||
|
||||
HotelType type = (HotelType) o;
|
||||
|
||||
return mType == type.mType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
return mType;
|
||||
}
|
||||
|
||||
public static final Creator<HotelType> CREATOR = new Creator<HotelType>()
|
||||
{
|
||||
@Override
|
||||
public HotelType createFromParcel(Parcel in)
|
||||
{
|
||||
return new HotelType(in);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HotelType[] newArray(int size)
|
||||
{
|
||||
return new HotelType[size];
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,26 +3,34 @@ package com.mapswithme.maps.search;
|
|||
import android.annotation.TargetApi;
|
||||
import android.content.Context;
|
||||
import android.content.res.Resources;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.os.Build;
|
||||
import android.os.Bundle;
|
||||
import android.support.annotation.CallSuper;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.annotation.Nullable;
|
||||
import android.support.v4.content.ContextCompat;
|
||||
import android.support.v7.widget.RecyclerView;
|
||||
import android.util.AttributeSet;
|
||||
import android.util.DisplayMetrics;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.MotionEvent;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.FrameLayout;
|
||||
import android.widget.ScrollView;
|
||||
|
||||
import com.mapswithme.maps.R;
|
||||
import com.mapswithme.maps.widget.recycler.TagItemDecoration;
|
||||
import com.mapswithme.maps.widget.recycler.TagLayoutManager;
|
||||
import com.mapswithme.util.Animations;
|
||||
import com.mapswithme.util.InputUtils;
|
||||
import com.mapswithme.util.UiUtils;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Iterator;
|
||||
import java.util.Set;
|
||||
|
||||
public class HotelsFilterView extends FrameLayout
|
||||
implements HotelsTypeAdapter.OnTypeSelectedListener
|
||||
{
|
||||
private static final String STATE_OPENED = "state_opened";
|
||||
|
||||
|
@ -41,6 +49,11 @@ public class HotelsFilterView extends FrameLayout
|
|||
private View mElevation;
|
||||
private int mHeaderHeight;
|
||||
private int mButtonsHeight;
|
||||
private Drawable mTagsDecorator;
|
||||
@NonNull
|
||||
private final Set<HotelsFilter.HotelType> mHotelTypes = new HashSet<>();
|
||||
@Nullable
|
||||
private HotelsTypeAdapter mTypeAdapter;
|
||||
|
||||
@Nullable
|
||||
private HotelsFilterListener mListener;
|
||||
|
@ -79,6 +92,7 @@ public class HotelsFilterView extends FrameLayout
|
|||
UiUtils.getStyledResourceId(context, android.R.attr.actionBarSize));
|
||||
mButtonsHeight = (int) res.getDimension(R.dimen.height_block_base);
|
||||
LayoutInflater.from(context).inflate(R.layout.hotels_filter, this, true);
|
||||
mTagsDecorator = ContextCompat.getDrawable(context, R.drawable.divider_transparent_half);
|
||||
}
|
||||
|
||||
@CallSuper
|
||||
|
@ -93,6 +107,13 @@ public class HotelsFilterView extends FrameLayout
|
|||
mPrice = (PriceFilterView) findViewById(R.id.price);
|
||||
mContent = mFrame.findViewById(R.id.content);
|
||||
mElevation = mFrame.findViewById(R.id.elevation);
|
||||
RecyclerView type = (RecyclerView) mContent.findViewById(R.id.type);
|
||||
type.setLayoutManager(new TagLayoutManager());
|
||||
type.getLayoutManager().setAutoMeasureEnabled(true);
|
||||
type.setNestedScrollingEnabled(false);
|
||||
type.addItemDecoration(new TagItemDecoration(mTagsDecorator));
|
||||
mTypeAdapter = new HotelsTypeAdapter(this);
|
||||
type.setAdapter(mTypeAdapter);
|
||||
findViewById(R.id.cancel).setOnClickListener(new OnClickListener()
|
||||
{
|
||||
@Override
|
||||
|
@ -119,6 +140,7 @@ public class HotelsFilterView extends FrameLayout
|
|||
public void onClick(View v)
|
||||
{
|
||||
mFilter = null;
|
||||
mHotelTypes.clear();
|
||||
if (mListener != null)
|
||||
mListener.onDone(null);
|
||||
close();
|
||||
|
@ -156,27 +178,68 @@ public class HotelsFilterView extends FrameLayout
|
|||
mPrice.updateFilter();
|
||||
HotelsFilter.RatingFilter rating = mRating.getFilter();
|
||||
HotelsFilter price = mPrice.getFilter();
|
||||
if (rating == null && price == null)
|
||||
if (rating == null && price == null && mHotelTypes.isEmpty())
|
||||
{
|
||||
mFilter = null;
|
||||
return;
|
||||
}
|
||||
|
||||
final HotelsFilter.OneOf oneOf = makeOneOf(mHotelTypes.iterator());
|
||||
|
||||
if (rating == null)
|
||||
{
|
||||
mFilter = price;
|
||||
return;
|
||||
if (oneOf != null && price != null)
|
||||
{
|
||||
mFilter = new HotelsFilter.And(price, oneOf);
|
||||
return;
|
||||
}
|
||||
else if (price == null && oneOf != null)
|
||||
{
|
||||
mFilter = oneOf;
|
||||
return;
|
||||
}
|
||||
else if (price != null)
|
||||
{
|
||||
mFilter = price;
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
mFilter = null;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (price == null)
|
||||
{
|
||||
if (oneOf != null)
|
||||
{
|
||||
mFilter = new HotelsFilter.And(rating, oneOf);
|
||||
return;
|
||||
}
|
||||
mFilter = rating;
|
||||
return;
|
||||
}
|
||||
|
||||
if (oneOf != null)
|
||||
{
|
||||
mFilter = new HotelsFilter.And(rating, new HotelsFilter.And(price, oneOf));
|
||||
return;
|
||||
}
|
||||
|
||||
mFilter = new HotelsFilter.And(rating, price);
|
||||
}
|
||||
|
||||
@Nullable
|
||||
private HotelsFilter.OneOf makeOneOf(Iterator<HotelsFilter.HotelType> iterator)
|
||||
{
|
||||
if (!iterator.hasNext())
|
||||
return null;
|
||||
|
||||
HotelsFilter.HotelType type = iterator.next();
|
||||
return new HotelsFilter.OneOf(type, makeOneOf(iterator));
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onTouchEvent(MotionEvent event)
|
||||
{
|
||||
|
@ -219,11 +282,15 @@ public class HotelsFilterView extends FrameLayout
|
|||
* Update views state according with current {@link #mFilter}
|
||||
*
|
||||
* mFilter may be null or {@link HotelsFilter.RatingFilter} or {@link HotelsFilter.PriceRateFilter}
|
||||
* or {@link HotelsFilter.And} or {@link HotelsFilter.Or}.
|
||||
* or {@link HotelsFilter.And} or {@link HotelsFilter.Or} or {@link HotelsFilter.OneOf}.
|
||||
*
|
||||
* if mFilter is {@link HotelsFilter.And} then mLhs must be {@link HotelsFilter.RatingFilter} and
|
||||
* mRhs must be {@link HotelsFilter.PriceRateFilter} or {@link HotelsFilter.Or} with mLhs and mRhs -
|
||||
* {@link HotelsFilter.PriceRateFilter}
|
||||
* if mHotelTypes is not empty then mFilter must be {@link HotelsFilter.OneOf} or
|
||||
* {@link HotelsFilter.And} with mLhs - ({@link HotelsFilter.PriceRateFilter} or
|
||||
* {@link HotelsFilter.Or} or {@link HotelsFilter.RatingFilter}) and (mRhs - {@link HotelsFilter.OneOf})
|
||||
*
|
||||
* if mFilter is {@link HotelsFilter.And} and mHotelTypes is empty then mLhs must be
|
||||
* {@link HotelsFilter.RatingFilter} and mRhs must be {@link HotelsFilter.PriceRateFilter} or
|
||||
* {@link HotelsFilter.Or} with mLhs and mRhs - {@link HotelsFilter.PriceRateFilter}
|
||||
*
|
||||
* if mFilter is {@link HotelsFilter.Or} then mLhs and mRhs must be {@link HotelsFilter.PriceRateFilter}
|
||||
*/
|
||||
|
@ -233,11 +300,14 @@ public class HotelsFilterView extends FrameLayout
|
|||
{
|
||||
mRating.update(null);
|
||||
mPrice.update(null);
|
||||
if (mTypeAdapter != null)
|
||||
updateTypeAdapter(mTypeAdapter, null);
|
||||
}
|
||||
else
|
||||
{
|
||||
HotelsFilter.RatingFilter rating = null;
|
||||
HotelsFilter price = null;
|
||||
HotelsFilter.OneOf types = null;
|
||||
if (mFilter instanceof HotelsFilter.RatingFilter)
|
||||
{
|
||||
rating = (HotelsFilter.RatingFilter) mFilter;
|
||||
|
@ -246,14 +316,55 @@ public class HotelsFilterView extends FrameLayout
|
|||
{
|
||||
price = mFilter;
|
||||
}
|
||||
else if (mFilter instanceof HotelsFilter.OneOf)
|
||||
{
|
||||
types = (HotelsFilter.OneOf) mFilter;
|
||||
}
|
||||
else if (mFilter instanceof HotelsFilter.And)
|
||||
{
|
||||
HotelsFilter.And and = (HotelsFilter.And) mFilter;
|
||||
if (!(and.mLhs instanceof HotelsFilter.RatingFilter))
|
||||
throw new AssertionError("And.mLhs must be RatingFilter");
|
||||
if (!(and.mLhs instanceof HotelsFilter.RatingFilter)
|
||||
&& !(and.mLhs instanceof HotelsFilter.PriceRateFilter)
|
||||
&& !(and.mLhs instanceof HotelsFilter.Or))
|
||||
{
|
||||
throw new AssertionError("And.mLhs must be RatingFilter or PriceRateFilter or Or");
|
||||
}
|
||||
|
||||
rating = (HotelsFilter.RatingFilter) and.mLhs;
|
||||
price = and.mRhs;
|
||||
if (and.mLhs instanceof HotelsFilter.RatingFilter)
|
||||
{
|
||||
rating = (HotelsFilter.RatingFilter) and.mLhs;
|
||||
|
||||
if (!(and.mRhs instanceof HotelsFilter.And)
|
||||
&& !(and.mRhs instanceof HotelsFilter.PriceRateFilter)
|
||||
&& !(and.mRhs instanceof HotelsFilter.Or))
|
||||
{
|
||||
throw new AssertionError("And.mRhs must be And or PriceRateFilter or Or");
|
||||
}
|
||||
|
||||
if (and.mRhs instanceof HotelsFilter.And)
|
||||
{
|
||||
HotelsFilter.And rand = (HotelsFilter.And) and.mRhs;
|
||||
if (!(rand.mLhs instanceof HotelsFilter.PriceRateFilter)
|
||||
&& !(rand.mLhs instanceof HotelsFilter.Or))
|
||||
{
|
||||
throw new AssertionError("And.mLhs must be PriceRateFilter or Or");
|
||||
}
|
||||
price = rand.mLhs;
|
||||
|
||||
if (!(rand.mRhs instanceof HotelsFilter.OneOf))
|
||||
throw new AssertionError("And.mRhs must be OneOf");
|
||||
|
||||
types = (HotelsFilter.OneOf) rand.mRhs;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
price = and.mLhs;
|
||||
if (!(and.mRhs instanceof HotelsFilter.OneOf))
|
||||
throw new AssertionError("And.mRhs must be OneOf");
|
||||
|
||||
types = (HotelsFilter.OneOf) and.mRhs;
|
||||
}
|
||||
}
|
||||
else if (mFilter instanceof HotelsFilter.Or)
|
||||
{
|
||||
|
@ -261,9 +372,28 @@ public class HotelsFilterView extends FrameLayout
|
|||
}
|
||||
mRating.update(rating);
|
||||
mPrice.update(price);
|
||||
if (mTypeAdapter != null)
|
||||
updateTypeAdapter(mTypeAdapter, types);
|
||||
}
|
||||
}
|
||||
|
||||
private void updateTypeAdapter(@NonNull HotelsTypeAdapter typeAdapter,
|
||||
@Nullable HotelsFilter.OneOf types)
|
||||
{
|
||||
mHotelTypes.clear();
|
||||
if (types != null)
|
||||
populateHotelTypes(mHotelTypes, types);
|
||||
typeAdapter.updateItems(mHotelTypes);
|
||||
}
|
||||
|
||||
private void populateHotelTypes(@NonNull Set<HotelsFilter.HotelType> hotelTypes,
|
||||
@NonNull HotelsFilter.OneOf types)
|
||||
{
|
||||
hotelTypes.add(types.mType);
|
||||
if (types.mRhs != null)
|
||||
populateHotelTypes(hotelTypes, types.mRhs);
|
||||
}
|
||||
|
||||
public void setListener(@Nullable HotelsFilterListener listener)
|
||||
{
|
||||
mListener = listener;
|
||||
|
@ -279,4 +409,13 @@ public class HotelsFilterView extends FrameLayout
|
|||
if (state.getBoolean(STATE_OPENED, false))
|
||||
open(filter);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTypeSelected(boolean selected, @NonNull HotelsFilter.HotelType type)
|
||||
{
|
||||
if (selected)
|
||||
mHotelTypes.add(type);
|
||||
else
|
||||
mHotelTypes.remove(type);
|
||||
}
|
||||
}
|
||||
|
|
166
android/src/com/mapswithme/maps/search/HotelsTypeAdapter.java
Normal file
166
android/src/com/mapswithme/maps/search/HotelsTypeAdapter.java
Normal file
|
@ -0,0 +1,166 @@
|
|||
package com.mapswithme.maps.search;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.Resources;
|
||||
import android.support.annotation.ColorRes;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.annotation.Nullable;
|
||||
import android.support.v4.content.ContextCompat;
|
||||
import android.support.v7.widget.RecyclerView;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.mapswithme.maps.R;
|
||||
import com.mapswithme.util.UiUtils;
|
||||
import com.mapswithme.util.log.Logger;
|
||||
import com.mapswithme.util.log.LoggerFactory;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
class HotelsTypeAdapter extends RecyclerView.Adapter<HotelsTypeAdapter.HotelsTypeViewHolder>
|
||||
{
|
||||
private static final Logger LOGGER = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC);
|
||||
private static final String TAG = HotelsTypeAdapter.class.getName();
|
||||
|
||||
@NonNull
|
||||
private static final String SEARCH_HOTEL_FILTER = "search_hotel_filter_%s";
|
||||
@NonNull
|
||||
private static final HotelsFilter.HotelType[] TYPES = SearchEngine.nativeGetHotelTypes();
|
||||
|
||||
@Nullable
|
||||
private final OnTypeSelectedListener mListener;
|
||||
@NonNull
|
||||
private final List<Item> mItems;
|
||||
|
||||
HotelsTypeAdapter(@Nullable OnTypeSelectedListener listener)
|
||||
{
|
||||
mListener = listener;
|
||||
mItems = new ArrayList<>();
|
||||
for (HotelsFilter.HotelType type : TYPES)
|
||||
mItems.add(new Item(type));
|
||||
}
|
||||
|
||||
@Override
|
||||
public HotelsTypeViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
|
||||
{
|
||||
final LayoutInflater inflater = LayoutInflater.from(parent.getContext());
|
||||
return new HotelsTypeViewHolder(inflater.inflate(R.layout.item_tag, parent, false), mItems,
|
||||
mListener);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBindViewHolder(HotelsTypeViewHolder holder, int position)
|
||||
{
|
||||
holder.bind(mItems.get(position));
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getItemCount()
|
||||
{
|
||||
return mItems.size();
|
||||
}
|
||||
|
||||
void updateItems(@NonNull Set<HotelsFilter.HotelType> selectedTypes)
|
||||
{
|
||||
for (Item item : mItems)
|
||||
item.mSelected = selectedTypes.contains(item.mType);
|
||||
|
||||
notifyDataSetChanged();
|
||||
}
|
||||
|
||||
static class HotelsTypeViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener
|
||||
{
|
||||
@NonNull
|
||||
private final View mFrame;
|
||||
@NonNull
|
||||
private final TextView mTitle;
|
||||
@NonNull
|
||||
private final List<Item> mItems;
|
||||
@Nullable
|
||||
private OnTypeSelectedListener mListener;
|
||||
|
||||
HotelsTypeViewHolder(@NonNull View itemView, @NonNull List<Item> items,
|
||||
@Nullable OnTypeSelectedListener listener)
|
||||
{
|
||||
super(itemView);
|
||||
|
||||
mFrame = itemView;
|
||||
mItems = items;
|
||||
mListener = listener;
|
||||
mTitle = (TextView) itemView.findViewById(R.id.tv__tag);
|
||||
}
|
||||
|
||||
void bind(@NonNull Item item)
|
||||
{
|
||||
mFrame.setOnClickListener(this);
|
||||
mTitle.setText(getStringResourceByTag(item.mType.getTag()));
|
||||
mFrame.setSelected(item.mSelected);
|
||||
updateTitleColor();
|
||||
}
|
||||
|
||||
@NonNull
|
||||
private String getStringResourceByTag(@NonNull String tag)
|
||||
{
|
||||
try
|
||||
{
|
||||
Context context = mFrame.getContext();
|
||||
Resources resources = context.getResources();
|
||||
return resources.getString(resources.getIdentifier(String.format(SEARCH_HOTEL_FILTER, tag),
|
||||
"string",
|
||||
context.getPackageName()));
|
||||
}
|
||||
catch (Resources.NotFoundException e)
|
||||
{
|
||||
LOGGER.e(TAG, "Not found resource for hotel tag " + tag, e);
|
||||
}
|
||||
|
||||
return tag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClick(View v)
|
||||
{
|
||||
int pos = getAdapterPosition();
|
||||
if (pos == RecyclerView.NO_POSITION)
|
||||
return;
|
||||
|
||||
mFrame.setSelected(!mFrame.isSelected());
|
||||
updateTitleColor();
|
||||
Item item = mItems.get(pos);
|
||||
item.mSelected = mFrame.isSelected();
|
||||
if (mListener != null)
|
||||
mListener.onTypeSelected(item.mSelected, item.mType);
|
||||
}
|
||||
|
||||
private void updateTitleColor()
|
||||
{
|
||||
boolean select = mFrame.isSelected();
|
||||
@ColorRes
|
||||
int titleColor =
|
||||
select ? UiUtils.getStyledResourceId(mFrame.getContext(), R.attr.accentButtonTextColor)
|
||||
: UiUtils.getStyledResourceId(mFrame.getContext(), android.R.attr.textColorPrimary);
|
||||
mTitle.setTextColor(ContextCompat.getColor(mFrame.getContext(), titleColor));
|
||||
}
|
||||
}
|
||||
|
||||
interface OnTypeSelectedListener
|
||||
{
|
||||
void onTypeSelected(boolean selected, @NonNull HotelsFilter.HotelType type);
|
||||
}
|
||||
|
||||
static class Item
|
||||
{
|
||||
@NonNull
|
||||
private final HotelsFilter.HotelType mType;
|
||||
private boolean mSelected;
|
||||
|
||||
Item(@NonNull HotelsFilter.HotelType type)
|
||||
{
|
||||
mType = type;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -8,6 +8,7 @@ import com.mapswithme.util.Language;
|
|||
import com.mapswithme.util.Listeners;
|
||||
import com.mapswithme.util.concurrency.UiThread;
|
||||
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.annotation.Nullable;
|
||||
|
||||
public enum SearchEngine implements NativeSearchListener,
|
||||
|
@ -174,4 +175,10 @@ public enum SearchEngine implements NativeSearchListener,
|
|||
private static native void nativeShowAllResults();
|
||||
|
||||
public static native void nativeCancelInteractiveSearch();
|
||||
|
||||
/**
|
||||
* @return all existing hotel types
|
||||
*/
|
||||
@NonNull
|
||||
static native HotelsFilter.HotelType[] nativeGetHotelTypes();
|
||||
}
|
||||
|
|
|
@ -605,7 +605,7 @@ public class PlacePageView extends RelativeLayout
|
|||
mRvHotelGallery.setLayoutManager(new LinearLayoutManager(getContext(),
|
||||
LinearLayoutManager.HORIZONTAL, false));
|
||||
mRvHotelGallery.addItemDecoration(new DividerItemDecoration(ContextCompat.getDrawable(getContext(),
|
||||
R.drawable.divider_transparent)));
|
||||
R.drawable.divider_transparent_quarter)));
|
||||
mGalleryAdapter.setListener(this);
|
||||
mRvHotelGallery.setAdapter(mGalleryAdapter);
|
||||
}
|
||||
|
|
|
@ -0,0 +1,88 @@
|
|||
package com.mapswithme.maps.widget.recycler;
|
||||
|
||||
import android.graphics.Canvas;
|
||||
import android.graphics.Rect;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.support.annotation.NonNull;
|
||||
import android.support.v7.widget.RecyclerView;
|
||||
import android.view.View;
|
||||
|
||||
/**
|
||||
* Adds interior dividers to a RecyclerView with a TagLayoutManager or its
|
||||
* subclass.
|
||||
*/
|
||||
public class TagItemDecoration extends RecyclerView.ItemDecoration
|
||||
{
|
||||
@NonNull
|
||||
private final Drawable mDivider;
|
||||
|
||||
public TagItemDecoration(@NonNull Drawable divider)
|
||||
{
|
||||
mDivider = divider;
|
||||
}
|
||||
|
||||
/**
|
||||
* Draws horizontal and vertical dividers onto the parent RecyclerView.
|
||||
*
|
||||
* @param canvas The {@link Canvas} onto which dividers will be drawn
|
||||
* @param parent The RecyclerView onto which dividers are being added
|
||||
* @param state The current RecyclerView.State of the RecyclerView
|
||||
*/
|
||||
@Override
|
||||
public void onDraw(Canvas canvas, RecyclerView parent, RecyclerView.State state)
|
||||
{
|
||||
if (state.isMeasuring())
|
||||
return;
|
||||
|
||||
int parentRight = parent.getWidth() - parent.getPaddingRight();
|
||||
int parentLeft = parent.getPaddingLeft();
|
||||
int lastHeight = 0;
|
||||
|
||||
int childCount = parent.getChildCount();
|
||||
for (int i = 0; i < childCount; i++)
|
||||
{
|
||||
View child = parent.getChildAt(i);
|
||||
if (lastHeight == 0)
|
||||
lastHeight = child.getTop();
|
||||
boolean isLineChanged = child.getTop() > lastHeight;
|
||||
boolean isNewLine = isLineChanged || i == 0;
|
||||
lastHeight = child.getTop();
|
||||
|
||||
if (!isNewLine)
|
||||
{
|
||||
mDivider.setBounds(child.getLeft() - mDivider.getIntrinsicWidth(),
|
||||
child.getTop(),
|
||||
child.getLeft(),
|
||||
child.getBottom());
|
||||
mDivider.draw(canvas);
|
||||
}
|
||||
else
|
||||
{
|
||||
mDivider.setBounds(parentLeft,
|
||||
child.getTop() - mDivider.getIntrinsicHeight(),
|
||||
parentRight,
|
||||
child.getTop());
|
||||
mDivider.draw(canvas);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines the size and location of offsets between items in the parent
|
||||
* RecyclerView.
|
||||
*
|
||||
* @param outRect The {@link Rect} of offsets to be added around the child
|
||||
* view
|
||||
* @param view The child view to be decorated with an offset
|
||||
* @param parent The RecyclerView onto which dividers are being added
|
||||
* @param state The current RecyclerView.State of the RecyclerView
|
||||
*/
|
||||
@Override
|
||||
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state)
|
||||
{
|
||||
super.getItemOffsets(outRect, view, parent, state);
|
||||
|
||||
outRect.left = mDivider.getIntrinsicWidth();
|
||||
outRect.top = mDivider.getIntrinsicHeight();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
package com.mapswithme.maps.widget.recycler;
|
||||
|
||||
import android.support.v7.widget.RecyclerView;
|
||||
import android.view.View;
|
||||
|
||||
/**
|
||||
* This LayoutManager designed only for use with RecyclerView.setNestedScrollingEnabled(false)
|
||||
* and recycle item must be wrap_content or fixed size
|
||||
*/
|
||||
public class TagLayoutManager extends RecyclerView.LayoutManager
|
||||
{
|
||||
|
||||
@Override
|
||||
public RecyclerView.LayoutParams generateDefaultLayoutParams()
|
||||
{
|
||||
return new RecyclerView.LayoutParams(RecyclerView.LayoutParams.MATCH_PARENT,
|
||||
RecyclerView.LayoutParams.WRAP_CONTENT);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onLayoutChildren(RecyclerView.Recycler recycler, RecyclerView.State state)
|
||||
{
|
||||
detachAndScrapAttachedViews(recycler);
|
||||
|
||||
int widthUsed = 0;
|
||||
int heightUsed = 0;
|
||||
int maxHeight = 0;
|
||||
int itemsCountOneLine = 0;
|
||||
for (int i=0; i < getItemCount(); i++)
|
||||
{
|
||||
View child = recycler.getViewForPosition(i);
|
||||
addView(child);
|
||||
measureChildWithMargins(child, widthUsed, heightUsed);
|
||||
int width = getDecoratedMeasuredWidth(child);
|
||||
int height = getDecoratedMeasuredHeight(child);
|
||||
maxHeight = Math.max(maxHeight, height);
|
||||
if (widthUsed + width >= getWidth())
|
||||
{
|
||||
widthUsed = 0;
|
||||
if (itemsCountOneLine > 0)
|
||||
{
|
||||
itemsCountOneLine = -1;
|
||||
heightUsed += maxHeight;
|
||||
child.forceLayout();
|
||||
measureChildWithMargins(child, widthUsed, heightUsed);
|
||||
width = getDecoratedMeasuredWidth(child);
|
||||
height = getDecoratedMeasuredHeight(child);
|
||||
}
|
||||
maxHeight = 0;
|
||||
}
|
||||
layoutDecorated(child, widthUsed, heightUsed, widthUsed + width, heightUsed + height);
|
||||
widthUsed += width;
|
||||
itemsCountOneLine++;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "بحث";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "الخريطة";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Vyhledávání";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Mapa";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Søg";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Kort";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Suche";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Karte";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Search";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Χάρτης";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Search";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Map";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Search";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Map";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Buscar";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Mapa";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Haku";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Kartta";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Rechercher";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Carte";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Keresés";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Térkép";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Cari";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Peta";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Cerca";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Mappa";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "検索";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "地図";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "검색";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "지도";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Søk";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Kart";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Zoek";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Kaart";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Wyszukaj";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Mapa";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Pesquisar";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Mapa";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Căutare";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Hartă";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Поиск";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "Общие настройки";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Информация";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "Для получения дополнительной информации, пожалуйста, ознакомьтесь с руководством.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Карта";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Мотель";
|
||||
|
||||
"on" = "Вкл.";
|
||||
|
||||
"off" = "Выкл.";
|
||||
"booking_filters_type" = "Тип";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Vyhľadávanie";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Mapa";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Sök";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Karta";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "ค้นหา";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "แผนที่";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Ara";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Harita";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Пошук";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Карта";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "Tìm kiếm";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "Bản đồ";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "搜索";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "地图";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
|
@ -467,20 +467,6 @@
|
|||
|
||||
"menu_search" = "搜尋";
|
||||
|
||||
/* Settings general group in settings screen */
|
||||
"prefs_group_general" = "General settings";
|
||||
|
||||
/* Settings information group in settings screen */
|
||||
"prefs_group_information" = "Information";
|
||||
|
||||
/* Settings languages information in voice instructions screen */
|
||||
"prefs_languages_information" = "Написать о том когда вообще ничего не установлено\n\nНа Android голосовые подсказки доступны на 24 языках: русский, английский, арабский, венгерский, голландский, греческий, датский, индонезийский, испанский, итальянский, китайский (традиционный и упрощенный), корейский, немецкий, польский, португальский, румынский, тайский, турецкий, финский, французский, хинди, чешский, японский.\n\nВозможно, для некоторых языков вам необходимо будет установить сторонний синтезатор речи и дополнительный языковой пакет из магазина приложений (Google Play Маркет, Samsung Apps и др.).";
|
||||
|
||||
/* Settings languages off information in voice instructions screen */
|
||||
"prefs_languages_information_off" = "For some languages, you will need to install a other speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\n\nOpen your device's settings –> Language and input –> Speech –> Text to speech output.*\n\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine.";
|
||||
|
||||
"prefs_languages_information_off_link" = "For more information please check the guide.";
|
||||
|
||||
/* Settings screen: "Map" category title */
|
||||
"prefs_group_map" = "地圖";
|
||||
|
||||
|
@ -1885,6 +1871,4 @@
|
|||
|
||||
"search_hotel_filter_motel" = "Motel";
|
||||
|
||||
"on" = "On";
|
||||
|
||||
"off" = "Off";
|
||||
"booking_filters_type" = "Type";
|
||||
|
|
10
strings.txt
10
strings.txt
|
@ -23362,10 +23362,6 @@
|
|||
[view_campaign_button]
|
||||
en = View ad campagain
|
||||
|
||||
[on]
|
||||
en = On
|
||||
ru = Вкл.
|
||||
|
||||
[off]
|
||||
en = Off
|
||||
ru = Выкл.
|
||||
[booking_filters_type]
|
||||
en = Type
|
||||
ru = Тип
|
||||
|
|
Loading…
Add table
Reference in a new issue