| @@ -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/lmp-mr1-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/lmp-mr1-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/lmp-mr1-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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/layout/select_dialog_item_material.xml --> |
| @@ -0,0 +1,30 @@ | ||
| <?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="?attr/dialogPreferredPadding" | ||
| android:paddingRight="?attr/dialogPreferredPadding" | ||
| android:checkMark="?android:attr/listChoiceIndicatorMultiple" | ||
| android:ellipsize="marquee" /> | ||
| <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/layout/select_dialog_multichoice_material.xml --> |
| @@ -0,0 +1,30 @@ | ||
| <?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="?attr/dialogPreferredPadding" | ||
| android:paddingRight="?attr/dialogPreferredPadding" | ||
| android:checkMark="?android:attr/listChoiceIndicatorSingle" | ||
| android:ellipsize="marquee" /> | ||
| <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/layout/support_simple_spinner_dropdown_item.xml --> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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">"Stemmesø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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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">"Finished"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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">"Finished"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </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/lmp-mr1-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/lmp-mr1-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="barSize">18.66dp</item> | ||
| <item name="gapBetweenBars">3.33dp</item> | ||
| <item name="drawableSize">24dp</item> | ||
| </style> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-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="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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-ja/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ホームへ移動"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-ka-rGE/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"მთავარზე ნავიგაცია"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-kk-rKZ/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Негізгі бетте қозғалу"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-km-rKH/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"រកមើលទៅដើម"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-kn-rIN/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-ko/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"홈 탐색"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-ky-rKG/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Үйгө багыттоо"</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="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> | ||
| </resources> |
| @@ -0,0 +1,20 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-land/bools.xml --> | ||
| <eat-comment/> | ||
| <bool name="abc_action_bar_embed_tabs_pre_jb">true</bool> | ||
| <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-land/config.xml --> | ||
| <eat-comment/> | ||
| <bool name="abc_config_allowActionMenuItemTextWithIcon">true</bool> | ||
| <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-land/dimens_material.xml --> | ||
| <eat-comment/> | ||
| <dimen name="abc_action_bar_default_height_material">48dp</dimen> | ||
| <dimen name="abc_action_bar_default_padding_material">0dp</dimen> | ||
| <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-land/dimens.xml --> | ||
| <eat-comment/> | ||
| <dimen name="abc_action_bar_progress_bar_size">32dp</dimen> | ||
| <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-land/dimens_material.xml --> | ||
| <eat-comment/> | ||
| <dimen name="abc_text_size_subtitle_material_toolbar">12dp</dimen> | ||
| <dimen name="abc_text_size_title_material_toolbar">14dp</dimen> | ||
| </resources> |
| @@ -0,0 +1,22 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-large/bools.xml --> | ||
| <eat-comment/> | ||
| <bool name="abc_action_bar_embed_tabs_pre_jb">true</bool> | ||
| <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-large/config.xml --> | ||
| <eat-comment/> | ||
| <bool name="abc_config_allowActionMenuItemTextWithIcon">true</bool> | ||
| <dimen name="abc_config_prefDialogWidth">440dp</dimen> | ||
| <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-large/dimens.xml --> | ||
| <eat-comment/> | ||
| <dimen name="abc_search_view_text_min_width">192dip</dimen> | ||
| <item name="dialog_fixed_height_major" type="dimen">60%</item> | ||
| <item name="dialog_fixed_height_minor" type="dimen">90%</item> | ||
| <item name="dialog_fixed_width_major" type="dimen">60%</item> | ||
| <item name="dialog_fixed_width_minor" type="dimen">90%</item> | ||
| <integer name="abc_max_action_buttons">4</integer> | ||
| <!-- From: file:/usr/local/google/buildbot/repo_clients/https___googleplex-android.googlesource.com_a_platform_manifest.git/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-large/themes_base.xml --> | ||
| <eat-comment/> | ||
| <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.Dialog.FixedSize"/> | ||
| <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.Dialog.FixedSize"/> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-lo-rLA/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ກັບໄປໜ້າຫຼັກ"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-lt/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Eiti į pagrindinį puslapį"</string> | ||
| <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Eiti į viršų"</string> | ||
| <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Daugiau parinkčių"</string> | ||
| <string msgid="4076576682505996667" name="abc_action_mode_done">"Atlikta"</string> | ||
| <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Peržiūrėti viską"</string> | ||
| <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pasirinkti programą"</string> | ||
| <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Išvalyti užklausą"</string> | ||
| <string msgid="2550479030709304392" name="abc_searchview_description_query">"Paieškos užklausa"</string> | ||
| <string msgid="8264924765203268293" name="abc_searchview_description_search">"Paieška"</string> | ||
| <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pateikti užklausą"</string> | ||
| <string msgid="893419373245838918" name="abc_searchview_description_voice">"Paieška balsu"</string> | ||
| <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bendrinti naudojant"</string> | ||
| <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bendrinti naudojant „%s“"</string> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-lv/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Pārvietoties uz sākuma ekrānu"</string> | ||
| <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Pārvietoties augšup"</string> | ||
| <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Vairāk opciju"</string> | ||
| <string msgid="4076576682505996667" name="abc_action_mode_done">"Gatavs"</string> | ||
| <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Skatīt visu"</string> | ||
| <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Izvēlieties lietotni"</string> | ||
| <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Notīrīt vaicājumu"</string> | ||
| <string msgid="2550479030709304392" name="abc_searchview_description_query">"Meklēšanas vaicājums"</string> | ||
| <string msgid="8264924765203268293" name="abc_searchview_description_search">"Meklēt"</string> | ||
| <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Iesniegt vaicājumu"</string> | ||
| <string msgid="893419373245838918" name="abc_searchview_description_voice">"Meklēšana ar balsi"</string> | ||
| <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kopīgot ar:"</string> | ||
| <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kopīgot ar %s"</string> | ||
| </resources> |
| @@ -0,0 +1,17 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-mk-rMK/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Движи се кон дома"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-ml-rIN/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-mn-rMN/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Нүүр хуудас руу шилжих"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-mr-rIN/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुख्यपृष्ठ नेव्हिगेट करा"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-ms-rMY/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi skrin utama"</string> | ||
| <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi ke atas"</string> | ||
| <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lagi pilihan"</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 apl"</string> | ||
| <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Kosongkan pertanyaan"</string> | ||
| <string msgid="2550479030709304392" name="abc_searchview_description_query">"Pertanyaan carian"</string> | ||
| <string msgid="8264924765203268293" name="abc_searchview_description_search">"Cari"</string> | ||
| <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Serah pertanyaan"</string> | ||
| <string msgid="893419373245838918" name="abc_searchview_description_voice">"Carian suara"</string> | ||
| <string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Kongsi dengan"</string> | ||
| <string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Kongsi dengan %s"</string> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-my-rMM/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"မူလနေရာကို သွားရန်"</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="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> | ||
| </resources> |
| @@ -0,0 +1,18 @@ | ||
| <?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/lmp-mr1-supportlib-release/frameworks/support/v7/appcompat/res/values-nb/strings.xml --> | ||
| <eat-comment/> | ||
| <string msgid="4600421777120114993" name="abc_action_bar_home_description">"Gå til startsiden"</string> | ||
| <string msgid="1594238315039666878" name="abc_action_bar_up_description">"Gå opp"</string> | ||
| <string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere alternativer"</string> | ||
| <string msgid="4076576682505996667" name="abc_action_mode_done">"Ferdig"</string> | ||
| <string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string> | ||
| <string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Velg en app"</string> | ||
| <string msgid="3691816814315814921" name="abc_searchview_description_clear">"Slett søket"</string> | ||
| <string msgid="2550479030709304392" name="abc_searchview_description_query">"Søkeord"</string> | ||
| <string msgid="8264924765203268293" name="abc_searchview_description_search">"Søk"</string> | ||
| <string msgid="8928215447528550784" name="abc_searchview_description_submit">"Utfør søket"</string> | ||
| <string msgid="893419373245838918" name="abc_searchview_description_voice">"Talesøk"</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> | ||
| </resources> |