@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License
-->

<!-- Layout to be used with only max 3 actions. It has a much larger picture at the left side-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/status_bar_latest_event_content"
android:layout_width="match_parent"
android:layout_height="128dp"
>
<ImageView android:id="@+id/icon"
android:layout_width="128dp"
android:layout_height="128dp"
android:scaleType="centerCrop"
/>

<include layout="@layout/notification_media_cancel_action"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"/>

<include layout="@layout/notification_template_lines"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="128dp"
android:layout_marginStart="128dp"
android:layout_toLeftOf="@id/cancel_action"
android:layout_toStartOf="@id/cancel_action"/>

<LinearLayout
android:id="@+id/media_actions"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_toRightOf="@id/icon"
android:layout_toEndOf="@id/icon"
android:layout_alignParentBottom="true"
android:layout_marginLeft="12dp"
android:layout_marginRight="12dp"
android:orientation="horizontal"
android:layoutDirection="ltr"
>
<!-- media buttons will be added here -->
</LinearLayout>
<ImageView
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_toRightOf="@id/icon"
android:layout_toEndOf="@id/icon"
android:layout_above="@id/media_actions"
android:id="@+id/action_divider"
android:background="?android:attr/dividerHorizontal" />
</RelativeLayout>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/layout/notification_template_big_media_narrow.xml -->
@@ -0,0 +1,108 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License
-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingRight="8dp"
android:paddingEnd="8dp"
android:paddingTop="2dp"
android:paddingBottom="2dp"
>
<LinearLayout
android:id="@+id/line1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="6dp"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:orientation="horizontal"
>
<TextView android:id="@+id/title"
android:textAppearance="@style/TextAppearance.StatusBar.EventContent.Title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:layout_weight="1"
/>
<include
layout="@layout/notification_template_part_time"
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0"
android:visibility="gone"
/>
<include
layout="@layout/notification_template_part_chronometer"
android:id="@+id/chronometer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0"
android:visibility="gone"
/>
</LinearLayout>
<TextView android:id="@+id/text2"
android:textAppearance="@style/TextAppearance.StatusBar.EventContent.Line2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="-2dp"
android:layout_marginBottom="-2dp"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:singleLine="true"
android:fadingEdge="horizontal"
android:ellipsize="marquee"
android:visibility="gone"
/>
<LinearLayout
android:id="@+id/line3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_vertical"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
>
<TextView android:id="@+id/text"
android:textAppearance="@style/TextAppearance.StatusBar.EventContent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:singleLine="true"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
/>
<TextView android:id="@+id/info"
android:textAppearance="@style/TextAppearance.StatusBar.EventContent.Info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0"
android:singleLine="true"
android:gravity="center"
android:paddingLeft="8dp"
android:paddingStart="8dp"
/>
</LinearLayout>
</LinearLayout><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/layout/notification_template_lines.xml -->
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License
-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/status_bar_latest_event_content"
android:layout_width="match_parent"
android:layout_height="64dp"
android:orientation="horizontal"
>
<ImageView android:id="@+id/icon"
android:layout_width="@dimen/notification_large_icon_width"
android:layout_height="@dimen/notification_large_icon_width"
android:scaleType="centerCrop"
/>
<include layout="@layout/notification_template_lines"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<LinearLayout
android:id="@+id/media_actions"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center_vertical|end"
android:orientation="horizontal"
android:layoutDirection="ltr"
>
<!-- media buttons will be added here -->
</LinearLayout>
<include layout="@layout/notification_media_cancel_action"
android:layout_width="48dp"
android:layout_height="match_parent"
android:layout_marginRight="6dp"
android:layout_marginEnd="6dp"/>
<ImageView android:id="@+id/end_padder"
android:layout_width="6dp"
android:layout_height="match_parent"
/>
</LinearLayout>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/layout/notification_template_media.xml -->
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License
-->

<Chronometer android:id="@+id/chronometer" xmlns:android="http://schemas.android.com/apk/res/android"
android:textAppearance="@style/TextAppearance.StatusBar.EventContent.Time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0"
android:singleLine="true"
android:gravity="center"
android:paddingLeft="8dp"
android:paddingStart="8dp"
/>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/layout/notification_template_part_chronometer.xml -->
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License
-->

<DateTimeView android:id="@+id/time" xmlns:android="http://schemas.android.com/apk/res/android"
android:textAppearance="@style/TextAppearance.StatusBar.EventContent.Time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="0"
android:singleLine="true"
android:gravity="center"
android:paddingLeft="8dp"
android:paddingStart="8dp"
/>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/layout/notification_template_part_time.xml -->
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2014 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<!--
This layout file is used by the AlertDialog when displaying a list of items.
This layout file is inflated and used as the TextView to display individual
items.
-->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/listPreferredItemHeightSmall"
android:textAppearance="?attr/textAppearanceListItemSmall"
android:textColor="?attr/textColorAlertDialogListItem"
android:gravity="center_vertical"
android:paddingLeft="?attr/listPreferredItemPaddingLeft"
android:paddingRight="?attr/listPreferredItemPaddingRight"
android:ellipsize="marquee" />
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/layout/select_dialog_item_material.xml -->
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2014 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/listPreferredItemHeightSmall"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?attr/textColorAlertDialogListItem"
android:gravity="center_vertical"
android:paddingLeft="@dimen/abc_select_dialog_padding_start_material"
android:paddingRight="?attr/dialogPreferredPadding"
android:paddingStart="@dimen/abc_select_dialog_padding_start_material"
android:paddingEnd="?attr/dialogPreferredPadding"
android:drawableLeft="?android:attr/listChoiceIndicatorMultiple"
android:drawableStart="?android:attr/listChoiceIndicatorMultiple"
android:drawablePadding="20dp"
android:ellipsize="marquee" />
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/layout/select_dialog_multichoice_material.xml -->
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2014 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/listPreferredItemHeightSmall"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?attr/textColorAlertDialogListItem"
android:gravity="center_vertical"
android:paddingLeft="@dimen/abc_select_dialog_padding_start_material"
android:paddingRight="?attr/dialogPreferredPadding"
android:paddingStart="@dimen/abc_select_dialog_padding_start_material"
android:paddingEnd="?attr/dialogPreferredPadding"
android:drawableLeft="?android:attr/listChoiceIndicatorSingle"
android:drawableStart="?android:attr/listChoiceIndicatorSingle"
android:drawablePadding="20dp"
android:ellipsize="marquee" />
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/layout/select_dialog_singlechoice_material.xml -->
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
**
** Copyright 2008, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
style="?attr/spinnerDropDownItemStyle"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="?attr/dropdownListPreferredItemHeight"
android:ellipsize="marquee"/><!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/layout/support_simple_spinner_dropdown_item.xml -->
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-af/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeer tuis"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeer op"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Nog opsies"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Klaar"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sien alles"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Kies \'n program"</string>
<string msgid="121134116657445385" name="abc_capital_off">"AF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Soek …"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vee navraag uit"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Soeknavraag"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Soek"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dien navraag in"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Stemsoektog"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deel met"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deel met %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Vou in"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-am/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"ወደ መነሻ ይዳስሱ"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s፣ %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s፣ %2$s፣ %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"ወደ ላይ ይዳስሱ"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"ተከናውኗል"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"መተግበሪያ ይምረጡ"</string>
<string msgid="121134116657445385" name="abc_capital_off">"ጠፍቷል"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"በርቷል"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"ፈልግ…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"የፍለጋ ጥያቄ"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"ፍለጋ"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"መጠይቅ ያስረክቡ"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"የድምፅ ፍለጋ"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ከሚከተለው ጋር ያጋሩ"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ከ%s ጋር ያጋሩ"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ሰብስብ"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-ar/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"التنقل إلى الشاشة الرئيسية"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s، %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s، %2$s، %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"خيارات إضافية"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"تم"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"عرض الكل"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string>
<string msgid="121134116657445385" name="abc_capital_off">"إيقاف"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"تشغيل"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"بحث…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"محو طلب البحث"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"طلب البحث"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"بحث"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"إرسال طلب البحث"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"البحث الصوتي"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"مشاركة مع"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏مشاركة مع %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"تصغير"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
</resources>
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-az-rAZ/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Evə get"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuxarı get"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Daha çox seçim"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Hazırdır"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string>
<string msgid="121134116657445385" name="abc_capital_off">"DEAKTİV"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"AKTİV"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Axtarış..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorğunu təmizlə"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Axtarış sorğusu"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Axtarış"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorğunu göndərin"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Səsli axtarış"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bununla paylaşın"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Dağıt"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-bg/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Придвижване към „Начало“"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"„%1$s“ – %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"„%1$s“, „%2$s“ – %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Придвижване нагоре"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Още опции"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Вижте всички"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Изберете приложение"</string>
<string msgid="121134116657445385" name="abc_capital_off">"ИЗКЛ."</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Търсете…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Изчистване на заявката"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Заявка за търсене"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Търсене"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Изпращане на заявката"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласово търсене"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Споделяне със:"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Споделяне със: %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свиване"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-bn-rBD/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"হোম এ নেভিগেট করুন"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"উপরের দিকে নেভিগেট করুন"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"আরো বিকল্প"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"সম্পন্ন হয়েছে"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"সবগুলো দেখুন"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"একটি অ্যাপ্লিকেশান চয়ন করুন"</string>
<string msgid="121134116657445385" name="abc_capital_off">"বন্ধ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"চালু"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"অনুসন্ধান..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"ক্যোয়ারী সাফ করুন"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"ক্যোয়ারী অনুসন্ধান করুন"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"অনুসন্ধান করুন"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"ক্যোয়ারী জমা দিন"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"ভয়েস অনুসন্ধান"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"এর সাথে ভাগ করুন"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s এর সাথে ভাগ করুন"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"সঙ্কুচিত করুন"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"৯৯৯+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-ca/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navega a la pàgina d\'inici"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navega cap a dalt"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Més opcions"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Fet"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Mostra\'ls tots"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string>
<string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAT"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAT"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Cerca..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Esborra la consulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de cerca"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envia la consulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Cerca per veu"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Comparteix amb"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Comparteix amb %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Replega"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-cs/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Přejít na plochu"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s – %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s – %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Přejít nahoru"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Více možností"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobrazit vše"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string>
<string msgid="121134116657445385" name="abc_capital_off">"VYPNUTO"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ZAPNUTO"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Vyhledat…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Smazat dotaz"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhledávací dotaz"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Hledat"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odeslat dotaz"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhledávání"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Sdílet pomocí"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Sdílet pomocí %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sbalit"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-da/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Naviger hjem"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Naviger op"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere muligheder"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Luk"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vælg en app"</string>
<string msgid="121134116657445385" name="abc_capital_off">"FRA"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"TIL"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Søg…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ryd forespørgslen"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Søgeforespørgsel"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Søg"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Indsend forespørgslen"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøgning"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-de/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zur Startseite"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nach oben"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Weitere Optionen"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Fertig"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alle ansehen"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"App auswählen"</string>
<string msgid="121134116657445385" name="abc_capital_off">"Aus"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"An"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Suchen…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Suchanfrage löschen"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Suchanfrage"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Suchen"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Suchanfrage senden"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Sprachsuche"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Freigeben für"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Freigeben für %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minimieren"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-el/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Πλοήγηση προς τα επάνω"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Περισσότερες επιλογές"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Τέλος"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Προβολή όλων"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Επιλέξτε κάποια εφαρμογή"</string>
<string msgid="121134116657445385" name="abc_capital_off">"ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Αναζήτηση…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Διαγραφή ερωτήματος"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Ερώτημα αναζήτησης"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Αναζήτηση"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Υποβολή ερωτήματος"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Κοινή χρήση με"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Κοινή χρήση με %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Σύμπτυξη"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-en-rAU/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-en-rGB/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-en-rIN/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-es-rUS/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar a la página principal"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar hacia arriba"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Elige una aplicación."</string>
<string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAR"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAR"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Eliminar la consulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de búsqueda"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Búsqueda"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-es/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir a la pantalla de inicio"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string>
<string msgid="121134116657445385" name="abc_capital_off">"NO"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"SÍ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-et-rEE/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeerimine avaekraanile"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeerimine üles"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valige rakendus"</string>
<string msgid="121134116657445385" name="abc_capital_off">"VÄLJAS"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"SEES"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Otsige …"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Päringu tühistamine"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Otsingupäring"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Otsing"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Päringu esitamine"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Häälotsing"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jagamine:"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jagamine kasutajaga %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ahendamine"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-eu-rES/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Joan orri nagusira"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Joan gora"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Aukera gehiago"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Eginda"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string>
<string msgid="121134116657445385" name="abc_capital_off">"DESAKTIBATUTA"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"AKTIBATUTA"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Bilatu…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Garbitu kontsulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Bilatu"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Bidali kontsulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Ahots bidezko bilaketa"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partekatu hauekin"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partekatu %s erabiltzailearekin"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Tolestu"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-fa/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"پیمایش به صفحه اصلی"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏، %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏، %2$s‏، %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"پیمایش به بالا"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"گزینه‌های بیشتر"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"تمام"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"مشاهده همه"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"انتخاب برنامه"</string>
<string msgid="121134116657445385" name="abc_capital_off">"خاموش"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"روشن"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"جستجو…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"پاک کردن عبارت جستجو"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"عبارت جستجو"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"جستجو"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"ارسال عبارت جستجو"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"جستجوی شفاهی"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک‌گذاری با"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏اشتراک‌گذاری با %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"کوچک کردن"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"۹۹۹+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-fi/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Siirry etusivulle"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Siirry ylös"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lisää"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Näytä kaikki"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valitse sovellus"</string>
<string msgid="121134116657445385" name="abc_capital_off">"POIS KÄYTÖSTÄ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"KÄYTÖSSÄ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Haku…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Tyhjennä kysely"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Hakulauseke"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Haku"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lähetä kysely"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Puhehaku"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jakaminen:"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jakaminen: %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kutista"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-fr-rCA/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Terminé"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Voir toutes les chaînes"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionnez une application"</string>
<string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Recherche en cours..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-fr/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"OK"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tout afficher"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string>
<string msgid="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Rechercher…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager avec"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-gl-rES/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir á páxina de inicio"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desprazarse cara arriba"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Máis opcións"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Feito"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todas"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escoller unha aplicación"</string>
<string msgid="121134116657445385" name="abc_capital_off">"DESACTIVAR"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAR"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de busca"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Busca de voz"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-gu-rIN/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"હોમ પર નેવિગેટ કરો"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"ઉપર નેવિગેટ કરો"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"વધુ વિકલ્પો"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"થઈ ગયું"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"બધું જુઓ"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"એક એપ્લિકેશન પસંદ કરો"</string>
<string msgid="121134116657445385" name="abc_capital_off">"બંધ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ચાલુ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"શોધો…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"ક્વેરી સાફ કરો"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"શોધ ક્વેરી"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"શોધો"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"ક્વેરી સબમિટ કરો"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"વૉઇસ શોધ"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"આની સાથે શેર કરો"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s સાથે શેર કરો"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"સંકુચિત કરો"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-h320dp/bools.xml -->
<eat-comment/>
<bool name="abc_allow_stacked_button_bar">true</bool>
</resources>
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-h720dp/dimens.xml -->
<eat-comment/>
<dimen name="abc_alert_dialog_button_bar_height">54dip</dimen>
</resources>
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-hdpi/styles_base.xml -->
<eat-comment/>
<style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
<item name="barLength">18.66dp</item>
<item name="gapBetweenBars">3.33dp</item>
<item name="drawableSize">24dp</item>
</style>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-hi/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्यपृष्ठ पर नेविगेट करें"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"ऊपर नेविगेट करें"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक विकल्प"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सभी देखें"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"कोई एप्‍लिकेशन चुनें"</string>
<string msgid="121134116657445385" name="abc_capital_off">"बंद"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"चालू"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"खोजा जा रहा है…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी साफ़ करें"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"खोज क्वेरी"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"खोजें"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करें"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"ध्वनि खोज"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"इसके द्वारा साझा करें"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s के साथ साझा करें"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"संक्षिप्त करें"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-hr/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Idi na početnu"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Idi gore"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Dodatne opcije"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odabir aplikacije"</string>
<string msgid="121134116657445385" name="abc_capital_off">"ISKLJUČENO"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"UKLJUČENO"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Pretražite…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbriši upit"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretraživanje"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraživanje"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dijeljenje sa"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dijeljenje sa: %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sažmi"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-hu/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ugrás a főoldalra"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Felfelé mozgatás"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"További lehetőségek"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Kész"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Összes megtekintése"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Válasszon ki egy alkalmazást"</string>
<string msgid="121134116657445385" name="abc_capital_off">"KI"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"BE"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Keresés…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Lekérdezés törlése"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Keresési lekérdezés"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Keresés"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lekérdezés küldése"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Hangalapú keresés"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Megosztás a következővel:"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Megosztás a következővel: %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Összecsukás"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-hy-rAM/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ուղղվել տուն"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ուղղվել վերև"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Այլ ընտրանքներ"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Կատարված է"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Տեսնել բոլորը"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Ընտրել ծրագիր"</string>
<string msgid="121134116657445385" name="abc_capital_off">"ԱՆՋԱՏՎԱԾ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ՄԻԱՑՎԱԾ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Որոնում..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Մաքրել հարցումը"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Որոնման հարցում"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Որոնել"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Ուղարկել հարցումը"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Ձայնային որոնում"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Տարածել"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Տարածել ըստ %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Թաքցնել"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-in/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi ke beranda"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi naik"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsi lain"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih aplikasi"</string>
<string msgid="121134116657445385" name="abc_capital_off">"NONAKTIF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"AKTIF"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Telusuri..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hapus kueri"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Kueri penelusuran"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Telusuri"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Kirim kueri"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Penelusuran suara"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bagikan dengan"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bagikan dengan %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ciutkan"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-is-rIS/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Fara heim"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Fara upp"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fleiri valkostir"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Lokið"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sjá allt"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Veldu forrit"</string>
<string msgid="121134116657445385" name="abc_capital_off">"SLÖKKT"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"KVEIKT"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Leita…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hreinsa fyrirspurn"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Leitarfyrirspurn"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Leita"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Senda fyrirspurn"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Raddleit"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deila með"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deila með %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minnka"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-it/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vai alla home page"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Vai in alto"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Altre opzioni"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Fine"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visualizza tutte"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Scegli un\'applicazione"</string>
<string msgid="121134116657445385" name="abc_capital_off">"OFF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Cerca…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Cancella query"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Query di ricerca"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Invia query"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Ricerca vocale"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Condividi con"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Condividi con %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Comprimi"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/mnc-supportlib-release/frameworks/support/v7/appcompat/res/values-iw/strings.xml -->
<eat-comment/>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"נווט לדף הבית"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"‏%1$s‏, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"‏%1$s‏, %2$s‏, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"נווט למעלה"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"עוד אפשרויות"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"בוצע"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ראה הכל"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"בחר אפליקציה"</string>
<string msgid="121134116657445385" name="abc_capital_off">"כבוי"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"פועל"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"חפש…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"מחק שאילתה"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"שאילתת חיפוש"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"חפש"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"שלח שאילתה"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"חיפוש קולי"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"שתף עם"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏שתף עם %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"כווץ"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"‎999+‎"</string>
</resources>