diff options
334 files changed, 11746 insertions, 778 deletions
diff --git a/Android.mk b/Android.mk index 1c4369c9d..3044ea53f 100644 --- a/Android.mk +++ b/Android.mk @@ -11,6 +11,7 @@ LOCAL_STATIC_JAVA_LIBRARIES += guava LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res LOCAL_STATIC_ANDROID_LIBRARIES := \ + android-support-core-ui \ android-support-v4 \ android-support-v7-appcompat \ android-support-v13 \ diff --git a/res/drawable/ic_usb_shortcut.xml b/res/drawable/ic_usb_shortcut.xml index 55f5ed26f..cf954454c 100644 --- a/res/drawable/ic_usb_shortcut.xml +++ b/res/drawable/ic_usb_shortcut.xml @@ -19,13 +19,13 @@ <background android:drawable="@color/shortcut_background" /> <foreground> <inset android:inset="33%"> - <vector + <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" - android:viewportWidth="24.0" - android:viewportHeight="24.0"> + android:viewportHeight="24" + android:viewportWidth="24"> <path - android:fillColor="@color/ic_shorcut_foreground" + android:fillColor="@color/shortcut_foreground" android:pathData="M15 7v4h1v2h-3V5h2l-3,-4,-3 4h2v8H8v-2.07c.7,-.37 1.2,-1.08 1.2,-1.93 0,-1.21,-.99,-2.2,-2.2,-2.2,-1.21 0,-2.2.99,-2.2 2.2 0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37,-1.2 1.1,-1.2 1.95 0 1.22.99 2.2 2.2 2.2 1.21 0 2.2,-.98 2.2,-2.2 0,-.85,-.49,-1.58,-1.2,-1.95V15h3c1.11 0 2,-.89 2,-2v-2h1V7h-4z"/> </vector> </inset> diff --git a/res/drawable/inspector_separator.xml b/res/drawable/inspector_separator.xml new file mode 100644 index 000000000..6a3528331 --- /dev/null +++ b/res/drawable/inspector_separator.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2017 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. +--> +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetTop="10dp" + android:insetBottom="10dp" > + <shape xmlns:android="http://schemas.android.com/apk/res/android"> + <size android:height="1dp"/> + <solid android:color="@color/inspector_section_divider"/> + </shape> +</inset>
\ No newline at end of file diff --git a/res/layout/inspector_action_view.xml b/res/layout/inspector_action_view.xml index 91418ae1c..422638348 100644 --- a/res/layout/inspector_action_view.xml +++ b/res/layout/inspector_action_view.xml @@ -23,8 +23,8 @@ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/default_app_info" - android:paddingLeft="16dp" - android:paddingRight="16dp" + android:paddingLeft="16dp" + android:paddingRight="16dp" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="10dp" @@ -33,12 +33,13 @@ <ImageView android:id="@+id/app_icon" android:paddingLeft="5dp" - android:layout_width="wrap_content" - android:layout_height="wrap_content" /> + android:layout_width="50dp" + android:layout_height="50dp" /> <TextView android:id="@+id/app_name" android:paddingLeft="16dp" + android:paddingBottom="10dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toRightOf="@id/app_icon" @@ -46,8 +47,8 @@ <ImageButton android:id="@+id/inspector_action_button" - android:layout_width="wrap_content" - android:layout_height="wrap_content" + android:layout_width="50dp" + android:layout_height="50dp" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:background="@null"/> diff --git a/res/layout/document_inspector_activity.xml b/res/layout/inspector_activity.xml index 65361de17..f48bc92a9 100644 --- a/res/layout/document_inspector_activity.xml +++ b/res/layout/inspector_activity.xml @@ -21,7 +21,7 @@ <Toolbar android:id="@+id/toolbar" - android:title="Properties" + android:title="@string/inspector_title" android:layout_width="match_parent" android:layout_height="?android:attr/actionBarSize" android:background="?android:attr/colorPrimary" diff --git a/res/layout/document_inspector_fragment.xml b/res/layout/inspector_fragment.xml index 5edb5e081..24f0fdb6a 100644 --- a/res/layout/document_inspector_fragment.xml +++ b/res/layout/inspector_fragment.xml @@ -37,8 +37,13 @@ android:layout_width="match_parent" android:layout_height="wrap_content"/> + <com.android.documentsui.inspector.MediaView + android:id="@+id/inspector_media_view" + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="wrap_content"/> + <com.android.documentsui.inspector.actions.ActionView - android:paddingTop="10dp" android:id="@+id/inspector_show_in_provider_view" android:orientation="vertical" android:layout_width="match_parent" @@ -46,7 +51,6 @@ android:visibility="gone"/> <com.android.documentsui.inspector.actions.ActionView - android:paddingTop="10dp" android:id="@+id/inspector_app_defaults_view" android:orientation="vertical" android:layout_width="match_parent" @@ -58,6 +62,8 @@ android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content" + android:paddingTop="20dp" android:visibility="gone" /> + </LinearLayout> </ScrollView> diff --git a/res/layout/inspector_header.xml b/res/layout/inspector_header.xml index e293c120f..d62180170 100644 --- a/res/layout/inspector_header.xml +++ b/res/layout/inspector_header.xml @@ -23,15 +23,22 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:alpha="0.0" - android:background="@android:color/black" /> + android:background="@android:color/white" /> <TextView android:id="@+id/inspector_file_title" - android:layout_width="wrap_content" + android:layout_width="match_parent" android:layout_height="wrap_content" - android:textSize="20dp" - android:layout_alignBottom="@+id/inspector_thumbnail" - android:paddingBottom="20dp" - android:paddingLeft="18dp" - android:textColor="@android:color/white" /> -</RelativeLayout>
\ No newline at end of file + android:textSize="20sp" + android:paddingTop="5dp" + android:paddingBottom="5dp" + android:paddingStart="16dp" + android:paddingEnd="16dp" + android:textColor="@android:color/white" + android:layout_gravity="center_vertical" + android:background="@color/inspector_title_background" + android:textIsSelectable="true" + android:textAlignment="viewStart" + android:layout_alignBottom="@+id/inspector_thumbnail" /> + +</RelativeLayout> diff --git a/res/layout/inspector_section_title.xml b/res/layout/inspector_section_title.xml index 2804811da..33889a832 100644 --- a/res/layout/inspector_section_title.xml +++ b/res/layout/inspector_section_title.xml @@ -14,16 +14,26 @@ 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:layout_height="match_parent" +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_height="wrap_content" android:layout_width="match_parent" - android:paddingTop="10dp" - android:paddingBottom="10dp" - android:paddingLeft="16dp" - android:layout_gravity="center_vertical" - android:fontFamily="sans-serif-medium" - android:textSize="14sp" - android:textColor="@color/inspector_section_title"> + android:orientation="vertical" + android:divider="@drawable/inspector_separator" + android:showDividers="beginning" + android:paddingStart="10dp" + android:paddingEnd="10dp"> -</TextView> + <TextView + android:layout_height="match_parent" + android:layout_width="match_parent" + android:id="@+id/inspector_header_title" + android:paddingStart="6dp" + android:paddingEnd="6dp" + android:paddingTop="5dp" + android:paddingBottom="5dp" + android:layout_gravity="center_vertical" + android:fontFamily="sans-serif-medium" + android:textSize="15sp" + android:textAlignment="viewStart" + android:textColor="@color/inspector_section_title"/> +</LinearLayout>
\ No newline at end of file diff --git a/res/layout/table_key_value_row.xml b/res/layout/table_key_value_row.xml index 2bc8cf687..b45cda44e 100644 --- a/res/layout/table_key_value_row.xml +++ b/res/layout/table_key_value_row.xml @@ -21,15 +21,18 @@ android:layout_height="match_parent" android:paddingTop="10dp" android:paddingBottom="10dp" - android:paddingLeft="16dp"> + android:paddingStart="16dp" + android:paddingEnd="16dp"> <TextView android:id="@+id/table_row_key" android:layout_height="wrap_content" android:layout_width="0dp" android:layout_weight="1" + android:paddingEnd="5dp" android:textColor="@android:color/black" - android:textSize="14dp"> + android:textSize="14sp" + android:textAlignment="viewStart"> </TextView> <TextView @@ -38,7 +41,9 @@ android:layout_width="0dp" android:layout_weight="1" android:textColor="@color/inspector_value" - android:textSize="14dp"> + android:textSize="14sp" + android:textIsSelectable="true" + android:textAlignment="viewStart"> </TextView> </com.android.documentsui.inspector.KeyValueRow> diff --git a/res/menu/action_mode_menu.xml b/res/menu/action_mode_menu.xml index ba238163a..195228564 100644 --- a/res/menu/action_mode_menu.xml +++ b/res/menu/action_mode_menu.xml @@ -63,8 +63,8 @@ android:showAsAction="never" android:visible="false" /> <item - android:id="@+id/action_menu_inspector" - android:title="@string/menu_inspector" + android:id="@+id/action_menu_inspect" + android:title="@string/menu_inspect" android:showAsAction="never" android:visible="false" /> <item diff --git a/res/menu/activity.xml b/res/menu/activity.xml index ce51e75f7..0c1e68c9b 100644 --- a/res/menu/activity.xml +++ b/res/menu/activity.xml @@ -77,5 +77,10 @@ android:title="@string/menu_settings" android:showAsAction="never" android:visible="false" /> + <item + android:id="@+id/option_menu_inspect" + android:title="@string/menu_inspect" + android:showAsAction="never" + android:visible="false" /> </group> </menu> diff --git a/res/menu/container_context_menu.xml b/res/menu/container_context_menu.xml index 08b0de808..2f70d822b 100644 --- a/res/menu/container_context_menu.xml +++ b/res/menu/container_context_menu.xml @@ -35,4 +35,10 @@ android:id="@+id/dir_menu_select_all" android:title="@string/menu_select_all" /> </group> + <group + android:id="@+id/menu_extras_group"> + <item + android:id="@+id/dir_menu_inspect" + android:title="@string/menu_inspect" /> + </group> </menu>
\ No newline at end of file diff --git a/res/menu/dir_context_menu.xml b/res/menu/dir_context_menu.xml index 2950b53f6..383841ae3 100644 --- a/res/menu/dir_context_menu.xml +++ b/res/menu/dir_context_menu.xml @@ -47,4 +47,10 @@ android:id="@+id/dir_menu_delete" android:title="@string/menu_delete" /> </group> + <group + android:id="@+id/menu_extras_group"> + <item + android:id="@+id/dir_menu_inspect" + android:title="@string/menu_inspect" /> + </group> </menu> diff --git a/res/menu/file_context_menu.xml b/res/menu/file_context_menu.xml index 325bed9bd..9e786f173 100644 --- a/res/menu/file_context_menu.xml +++ b/res/menu/file_context_menu.xml @@ -50,7 +50,10 @@ android:title="@string/menu_delete" /> </group> <group - android:id="@+id/menu_settings_group"> + android:id="@+id/menu_extras_group"> + <item + android:id="@+id/dir_menu_inspect" + android:title="@string/menu_inspect" /> <item android:id="@+id/dir_menu_view_in_owner" android:title="@string/menu_view_in_owner" /> diff --git a/res/menu/mixed_context_menu.xml b/res/menu/mixed_context_menu.xml index aa6d7f54d..cb6b4fdaf 100644 --- a/res/menu/mixed_context_menu.xml +++ b/res/menu/mixed_context_menu.xml @@ -34,4 +34,10 @@ android:id="@+id/dir_menu_delete" android:title="@string/menu_delete" /> </group> + <group + android:id="@+id/menu_extras_group"> + <item + android:id="@+id/dir_menu_inspect" + android:title="@string/menu_inspect" /> + </group> </menu>
\ No newline at end of file diff --git a/res/values-af/inspector_strings.xml b/res/values-af/inspector_strings.xml new file mode 100644 index 000000000..32ffd143b --- /dev/null +++ b/res/values-af/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Inligting"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Lêerinligting kon nie gelaai word nie"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Ontfoutinligting (net ontwikkeling)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Onverwerkte metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Mediabesonderhede"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Hierdie soort lêer maak oop met"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Hierdie lêer word voorsien deur"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nie gekies nie"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Onbekend"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Afmetings"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koördinate"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Hoogte bo seespieël"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Lensopening"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Sluiterspoed"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Tydsduur"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Geneem op"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Fokuslengte"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO-ekwivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Stroomtipes"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Onverwerkte grootte (grepe)"</string> +</resources> diff --git a/res/values-af/mimes.xml b/res/values-af/mimes.xml new file mode 100644 index 000000000..851e97bf6 --- /dev/null +++ b/res/values-af/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g>-lêer"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Lêer"</string> + <string name="image_file_type" msgid="3011633523704887793">"Prent"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g>-prent"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Oudio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g>-oudio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g>-video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g>-argief"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android-program"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Skoonteks"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-dokument"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF-dokument"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word-dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint-aanbieding"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-sigblad"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google-dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google-sigblad"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google-aanbieding"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google-skets"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google-tabel"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google-vorm"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google-kaart"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google-werf"</string> + <string name="directory_type" msgid="2702987727566226354">"Vouer"</string> +</resources> diff --git a/res/values-af/strings.xml b/res/values-af/strings.xml index 9dab30873..5f1d02eb0 100644 --- a/res/values-af/strings.xml +++ b/res/values-af/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Pers saam"</string> <string name="menu_extract" msgid="8171946945982532262">"Onttrek na …"</string> <string name="menu_rename" msgid="1883113442688817554">"Hernoem"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Eienskappe"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Kry inligting"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Bekyk in <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nuwe venster"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Sny"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Skuif"</string> <string name="button_dismiss" msgid="7235249361023803349">"Maak toe"</string> <string name="button_retry" msgid="4011461781916631389">"Probeer weer"</string> + <string name="button_clear" msgid="5412304437764369441">"Vee uit"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Wys in verskaffer"</string> <string name="not_sorted" msgid="7813496644889115530">"Nie gerangskik nie"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Naam"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Opsomming"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipe"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Grootte"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Gewysig"</string> - <string name="directory_children" msgid="8115290268549503262">"Aantal kinders"</string> + <string name="directory_items" msgid="6645621978998614003">"Aantal items"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Stygend"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Dalend"</string> <string name="drawer_open" msgid="8071673398187261741">"Wys wortels"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Kan lêer nie oopmaak nie"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Kan nie lêers in argiewe oopmaak nie"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Kan sommige dokumente nie uitvee nie"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Eienskappe kon nie gelaai word nie"</string> <string name="share_via" msgid="8725082736005677161">"Deel via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopieer tans lêers"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Pers tans lêers saam"</string> diff --git a/res/values-am/inspector_strings.xml b/res/values-am/inspector_strings.xml new file mode 100644 index 000000000..84c7e9d00 --- /dev/null +++ b/res/values-am/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"መረጃ"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"የፋይል መረጃ ሊጫን አልቻለም"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"የማረሚያ መረጃ (ለገንቢ ብቻ)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"ጥሬ ዲበ ውሂብ፦ <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"የሚዲያ ዝርዝሮች"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"እንዲህ ዓይነቱ ፋይል በዚህ ይከፈታል፦"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ይህ ፋይል የቀረበው በ"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"አልተመረጠም"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"ያልታወቀ"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"ልኬቶች"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> ሜፒ"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"መጋጠሚያዎች"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>፣ <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ከፍታ"</string> + <string name="metadata_camera" msgid="2363009732801281319">"ካሜራ"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"የካሜራ ሌንስ መከለያ"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"የካሜራ ሌንስ መከለያ ፍጥነት"</string> + <string name="metadata_duration" msgid="3115494422055472715">"የቆይታ ጊዜ"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"የተነሳበት ቀን"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"የትክተት ርቀት"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> ሚሜ"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"የአይኤስኦ እኩያ"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"አይኤስኦ <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"የዥረት አይነቶች"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"የጥሬ መጠን (ባይት)"</string> +</resources> diff --git a/res/values-am/mimes.xml b/res/values-am/mimes.xml new file mode 100644 index 000000000..a508032d5 --- /dev/null +++ b/res/values-am/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"የ<xliff:g id="EXTENSION">%1$s</xliff:g> ፋይል"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ፋይል"</string> + <string name="image_file_type" msgid="3011633523704887793">"ምስል"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"የ<xliff:g id="FILETYPE">%1$s</xliff:g> ምስል"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ኦዲዮ"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"የ<xliff:g id="FILETYPE">%1$s</xliff:g> ኦዲዮ"</string> + <string name="video_file_type" msgid="7290473366042482095">"ቪዲዮ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"የ<xliff:g id="FILETYPE">%1$s</xliff:g> ቪዲዮ"</string> + <string name="archive_file_type" msgid="1463432996680398798">"የ<xliff:g id="FILETYPE">%1$s</xliff:g> ማህደር"</string> + <string name="apk_file_type" msgid="6004275470389462277">"የAndroid መተግበሪያ"</string> + <string name="txt_file_type" msgid="4677767777860724696">"ስነጣ አልባ ጽሑፍ"</string> + <string name="html_file_type" msgid="2034229603117527970">"የኤችቲኤምኤል ሰነድ"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"የፒዲኤፍ ሰነድ"</string> + <string name="word_file_type" msgid="2366349268129894972">"የWord ሰነድ"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"የPowerPoint ዝግጅት አቀራረብ"</string> + <string name="excel_file_type" msgid="8363932635044575463">"የExcel ተመን ሉህ"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"የGoogle ሰነድ"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"የGoogle ተመን ሉህ"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"የGoogle ዝግጅት አቀራረብ"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"የGoogle ስዕል"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"የGoogle ሠንጠረዥ"</string> + <string name="gform_file_type" msgid="4803176103746107611">"የGoogle ቅጽ"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"የGoogle ካርታ"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"የGoogle ጣቢያ"</string> + <string name="directory_type" msgid="2702987727566226354">"አቃፊ"</string> +</resources> diff --git a/res/values-am/strings.xml b/res/values-am/strings.xml index d52aa9236..f2c1ee1d7 100644 --- a/res/values-am/strings.xml +++ b/res/values-am/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"ጭመቅ"</string> <string name="menu_extract" msgid="8171946945982532262">"አውጣ ወደ…"</string> <string name="menu_rename" msgid="1883113442688817554">"ዳግም ሰይም"</string> - <string name="menu_inspector" msgid="8633147986551632467">"ባህሪያት"</string> + <string name="menu_inspector" msgid="8217713416277319588">"መረጃ አግኝ"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"በ<xliff:g id="SOURCE">%1$s</xliff:g> ይመልከቱ"</string> <string name="menu_new_window" msgid="2947837751796109126">"አዲሰ መስኮት"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"ቁረጥ"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ውሰድ"</string> <string name="button_dismiss" msgid="7235249361023803349">"አሰናብት"</string> <string name="button_retry" msgid="4011461781916631389">"እንደገና ይሞክሩ"</string> + <string name="button_clear" msgid="5412304437764369441">"አጽዳ"</string> + <string name="button_show_provider" msgid="6905880493806292753">"በአቅራቢ ውስጥ አሳይ"</string> <string name="not_sorted" msgid="7813496644889115530">"አልተደረደረም"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"ስም"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"ማጠቃለያ"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"ዓይነት"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"መጠን"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"የተቀየረበት ጊዜ"</string> - <string name="directory_children" msgid="8115290268549503262">"የሕፃናት ብዛት"</string> + <string name="directory_items" msgid="6645621978998614003">"የንጥሎች ብዛት"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ሽቅብታ"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"አቆልቋይ"</string> <string name="drawer_open" msgid="8071673398187261741">"ስሮችን አሳይ"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ፋይሉን መክፈት አይቻልም"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"በማህደሮች ውስጥ ያሉ ፋይሎችን መክፈት አይቻልም"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"አንዳንድ ሰነዶችን መሰረዝ አልተቻለም"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"ባህሪዎቹ ሊጫኑ አልቻሉም"</string> <string name="share_via" msgid="8725082736005677161">"በዚህ በኩል ያጋሩ፦"</string> <string name="copy_notification_title" msgid="52256435625098456">"ፋይሎችን በመቅዳት ላይ"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ፋይሎችን በመጭመቅ ላይ"</string> diff --git a/res/values-ar/inspector_strings.xml b/res/values-ar/inspector_strings.xml new file mode 100644 index 000000000..dd6b37abf --- /dev/null +++ b/res/values-ar/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"المعلومات"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"تعذّر تحميل معلومات الملف"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"معلومات تصحيح الأخطاء (المطوّر فقط)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"البيانات الوصفية الأولية: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"تفاصيل الوسائط"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"يتم فتح هذا النوع من الملفات باستخدام"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"تم تقديم هذا الملف من خلال"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"غير محدّد"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"غير معروف"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"الأبعاد"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> × <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> ميغا بكسل"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"إحداثيات"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>، <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"الارتفاع"</string> + <string name="metadata_camera" msgid="2363009732801281319">"الكاميرا"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"فتحة العدسة"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"سرعة مصراع الكاميرا"</string> + <string name="metadata_duration" msgid="3115494422055472715">"المدة"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"تم الالتقاط في"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"البعد البؤري"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> ملليمتر"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"مكافئ ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"سرعة ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"أنواع سلسلة البطاقات"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"الحجم الأولي (بالبايت)"</string> +</resources> diff --git a/res/values-ar/mimes.xml b/res/values-ar/mimes.xml new file mode 100644 index 000000000..7f5b0ac2a --- /dev/null +++ b/res/values-ar/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"ملف <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ملف"</string> + <string name="image_file_type" msgid="3011633523704887793">"صورة"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"صورة <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"صوت"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"صوت <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"فيديو"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"فيديو <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"أرشيف <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"تطبيق Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"نص عادي"</string> + <string name="html_file_type" msgid="2034229603117527970">"مستند HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"مستند PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"مستند Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"عرض تقديمي في PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"جدول بيانات Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"مستند Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"جدول بيانات Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"عرض تقديمي على Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"رسم Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"جدول Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"نموذج Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"خريطة Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"موقع مصمم في مواقع Google"</string> + <string name="directory_type" msgid="2702987727566226354">"مجلد"</string> +</resources> diff --git a/res/values-ar/strings.xml b/res/values-ar/strings.xml index 3f3a33433..ec1e2e048 100644 --- a/res/values-ar/strings.xml +++ b/res/values-ar/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"ضغط"</string> <string name="menu_extract" msgid="8171946945982532262">"الاستخراج إلى…"</string> <string name="menu_rename" msgid="1883113442688817554">"إعادة تسمية"</string> - <string name="menu_inspector" msgid="8633147986551632467">"الخصائص"</string> + <string name="menu_inspector" msgid="8217713416277319588">"الحصول على المعلومات"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"العرض في <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"نافذة جديدة"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"قص"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"نقل"</string> <string name="button_dismiss" msgid="7235249361023803349">"تجاهل"</string> <string name="button_retry" msgid="4011461781916631389">"إعادة المحاولة"</string> + <string name="button_clear" msgid="5412304437764369441">"محو"</string> + <string name="button_show_provider" msgid="6905880493806292753">"عرض في مقدم الخدمة"</string> <string name="not_sorted" msgid="7813496644889115530">"بدون ترتيب"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"الاسم"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"الملخص"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"النوع"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"الحجم"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"آخر تعديل"</string> - <string name="directory_children" msgid="8115290268549503262">"عدد الأطفال"</string> + <string name="directory_items" msgid="6645621978998614003">"عدد العناصر"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"تصاعدي"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"تنازلي"</string> <string name="drawer_open" msgid="8071673398187261741">"عرض الجذور"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"يتعذر فتح الملف"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"يتعذر فتح الملفات في الأرشيف"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"تعذر حذف بعض المستندات"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"تعذَّر تحميل الخصائص"</string> <string name="share_via" msgid="8725082736005677161">"مشاركة عبر"</string> <string name="copy_notification_title" msgid="52256435625098456">"جارٍ نسخ الملفات"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ضغط الملفات"</string> diff --git a/res/values-az/inspector_strings.xml b/res/values-az/inspector_strings.xml new file mode 100644 index 000000000..234e5003a --- /dev/null +++ b/res/values-az/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Məlumat"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Fayl məlumatını yükləmək mümkün olmadı"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Sazlama haqqında məlumat (yalnız dev)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Sətir metadatası: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Media haqqında məlumat"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Bu fayl növü bele açılmalıdır"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Bu fayl təmin edilib"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Seçilməyib"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Naməlum"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Ölçülər"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinatlar"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Yüksəklik"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Dəlik"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Sürgü sürəti"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Müddət:"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Şəkil çəkilib"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Fokal uzunluq"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ekvivalenti"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Axın növləri"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Sətir ölçüsü (bayt)"</string> +</resources> diff --git a/res/values-az/mimes.xml b/res/values-az/mimes.xml new file mode 100644 index 000000000..7eeb0d3fa --- /dev/null +++ b/res/values-az/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> fayl"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fayl"</string> + <string name="image_file_type" msgid="3011633523704887793">"Şəkil"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> şəkli"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> arxiv faylı"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android tətbiqi"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Adi mətn"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML sənədi"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF sənədi"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word sənədi"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint təqdimatı"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel cədvəli"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google sənədi"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google cədvəli"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google təqdimatı"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google rəsm faylı"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google cədvəli"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google forması"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google xəritəsi"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google saytı"</string> + <string name="directory_type" msgid="2702987727566226354">"Qovluq"</string> +</resources> diff --git a/res/values-az/strings.xml b/res/values-az/strings.xml index 851717e6f..10ed6dd9c 100644 --- a/res/values-az/strings.xml +++ b/res/values-az/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Sıxışdırın"</string> <string name="menu_extract" msgid="8171946945982532262">"Çıxarın…"</string> <string name="menu_rename" msgid="1883113442688817554">"Adını dəyişdirin"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Xüsusiyyətlər"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Məlumat əldə edin"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> mənbəsində baxın"</string> <string name="menu_new_window" msgid="2947837751796109126">"Yeni pəncərə"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Kəsin"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Köçürün"</string> <string name="button_dismiss" msgid="7235249361023803349">"Yığışdırın"</string> <string name="button_retry" msgid="4011461781916631389">"Yenidən cəhd edin"</string> + <string name="button_clear" msgid="5412304437764369441">"Silin"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Provayderdə göstərin"</string> <string name="not_sorted" msgid="7813496644889115530">"Sıralanmayıb"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Ad"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Yekun"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Növ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Ölçü"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Dəyişmiş"</string> - <string name="directory_children" msgid="8115290268549503262">"Uşaqların Sayı"</string> + <string name="directory_items" msgid="6645621978998614003">"Elementlərin sayı"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Artan sıra ilə"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Azalan sıra ilə"</string> <string name="drawer_open" msgid="8071673398187261741">"Kökləri göstərin"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Fayl açılmır"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Arxivdəki faylları açmaq olmur"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Bəzi sənədləri silə bilmir"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Xüsusiyyətləri yükləmək mümkün olmadı"</string> <string name="share_via" msgid="8725082736005677161">"Bunun vasitəsilə paylaş:"</string> <string name="copy_notification_title" msgid="52256435625098456">"Fayllar kopyalanır"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Faylların sıxılması"</string> diff --git a/res/values-b+sr+Latn/inspector_strings.xml b/res/values-b+sr+Latn/inspector_strings.xml new file mode 100644 index 000000000..73d958994 --- /dev/null +++ b/res/values-b+sr+Latn/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informacije"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Učitavanje podataka o datoteci nije uspelo"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Podaci o otklanjanju grešaka (samo za programere)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metapodaci RAW datoteke: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detalji o medijima"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ova vrsta datoteke se otvara pomoću:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Ovu datoteku pruža"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nije izabrano"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Nepoznato"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimenzije"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g>×<xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> megapiksela"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinate"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Nadmorska visina"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Otvor blende"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Brzina zatvarača"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Trajanje"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Snimljeno"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Žižna daljina"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ekvivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Tipovi strimova"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Veličina RAW datoteke (u bajtovima)"</string> +</resources> diff --git a/res/values-b+sr+Latn/mimes.xml b/res/values-b+sr+Latn/mimes.xml new file mode 100644 index 000000000..a4e7bda1f --- /dev/null +++ b/res/values-b+sr+Latn/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> datoteka"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Datoteka"</string> + <string name="image_file_type" msgid="3011633523704887793">"Slika"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> slika"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> arhiva"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android aplikacija"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Običan tekst"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML dokument"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF dokument"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint prezentacija"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel tabela"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google tabela"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google prezentacija"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google crtež"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google tabela"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google upitnik"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google mapa"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google sajt"</string> + <string name="directory_type" msgid="2702987727566226354">"Direktorijum"</string> +</resources> diff --git a/res/values-b+sr+Latn/strings.xml b/res/values-b+sr+Latn/strings.xml index f6b43e2b2..f93de0292 100644 --- a/res/values-b+sr+Latn/strings.xml +++ b/res/values-b+sr+Latn/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Komprimuj"</string> <string name="menu_extract" msgid="8171946945982532262">"Izdvoj u…"</string> <string name="menu_rename" msgid="1883113442688817554">"Preimenuj"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Svojstva"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Prikaži informacije"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Prikaži u: <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Novi prozor"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Iseci"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Premesti"</string> <string name="button_dismiss" msgid="7235249361023803349">"Odbaci"</string> <string name="button_retry" msgid="4011461781916631389">"Probaj ponovo"</string> + <string name="button_clear" msgid="5412304437764369441">"Obriši"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Prikaži u aplikaciji dobavljača"</string> <string name="not_sorted" msgid="7813496644889115530">"Nisu sortirani"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Naziv"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Rezime"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tip"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Veličina"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Izmenjeno"</string> - <string name="directory_children" msgid="8115290268549503262">"Broj dece"</string> + <string name="directory_items" msgid="6645621978998614003">"Broj stavki"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Rastuće"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Opadajuće"</string> <string name="drawer_open" msgid="8071673398187261741">"Prikaži osnovne direktorijume"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Otvaranje datoteke nije uspelo"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Ne možete da otvarate datoteke u arhivama"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Nije moguće izbrisati neke dokumente"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Učitavanje svojstava nije uspelo"</string> <string name="share_via" msgid="8725082736005677161">"Deljenje preko"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopiramo datoteke"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Datoteke se komprimuju"</string> diff --git a/res/values-be/inspector_strings.xml b/res/values-be/inspector_strings.xml new file mode 100644 index 000000000..498e01c82 --- /dev/null +++ b/res/values-be/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Інфармацыя"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Не атрымалася загрузіць звесткі пра файл"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Адладачная інф-цыя (толькі для распрацоўшчыкаў)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Неапрацаваныя метаданыя: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Падрабязная інфармацыя пра мультымедыя"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Такія файлы адкрываюцца з дапамогай"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Гэты файл паходзіць з:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Не выбрана"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Невядома"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Памеры"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> Мп"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Каардынаты"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Вышыня"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Камера"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Апертура"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Хуткасць затвора"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Працягласць"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Знята"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Фокусная адлегласць"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> мм"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Эквівалент ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Тыпы плыні"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Памер файла RAW (у байтах)"</string> +</resources> diff --git a/res/values-be/mimes.xml b/res/values-be/mimes.xml new file mode 100644 index 000000000..42495bbea --- /dev/null +++ b/res/values-be/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Файл <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Файл"</string> + <string name="image_file_type" msgid="3011633523704887793">"Відарыс"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Відарыс <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Аўдыя"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Аўдыя <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Відэа"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Відэа <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Архіў <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Праграма Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Просты тэкст"</string> + <string name="html_file_type" msgid="2034229603117527970">"Дакумент HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Дакумент PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Дакумент Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Прэзентацыя PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Электр. табліца Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Дакумент Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Электр. табліца Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Прэзентацыя Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Рысунак Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Табліца Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Форма Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Карта Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Сайт Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Папка"</string> +</resources> diff --git a/res/values-be/strings.xml b/res/values-be/strings.xml index 9b13fce85..da6b0bd47 100644 --- a/res/values-be/strings.xml +++ b/res/values-be/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Сціснуць"</string> <string name="menu_extract" msgid="8171946945982532262">"Выняць у…"</string> <string name="menu_rename" msgid="1883113442688817554">"Перайменаваць"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Уласцівасці"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Атрымаць інфармацыю"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Праглядзець тут: <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Новае акно"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Выразаць"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Перамясціць"</string> <string name="button_dismiss" msgid="7235249361023803349">"Адхіліць"</string> <string name="button_retry" msgid="4011461781916631389">"Паўтарыць спробу"</string> + <string name="button_clear" msgid="5412304437764369441">"Выдаліць"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Паказаць у Правадніку"</string> <string name="not_sorted" msgid="7813496644889115530">"Не адсартаваны"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Назва"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Кароткае апісанне"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Тып"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Памер"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Зменены"</string> - <string name="directory_children" msgid="8115290268549503262">"Колькасць дзяцей"</string> + <string name="directory_items" msgid="6645621978998614003">"Колькасць элементаў"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Па ўзрастанні"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Па ўбыванні"</string> <string name="drawer_open" msgid="8071673398187261741">"Паказаць каранёвыя папкі"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Немагчыма адкрыць файл"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Немагчыма адкрыць файлы ў архівах"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Немагчыма выдаліць некаторыя дакументы"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Не атрымалася загрузіць уласцівасці"</string> <string name="share_via" msgid="8725082736005677161">"Абагуліць праз"</string> <string name="copy_notification_title" msgid="52256435625098456">"Капіраванне файлаў"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Ідзе сцісканне файлаў"</string> diff --git a/res/values-bg/inspector_strings.xml b/res/values-bg/inspector_strings.xml new file mode 100644 index 000000000..32898075f --- /dev/null +++ b/res/values-bg/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Информация"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Информацията за файла не можа да се зареди"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Инф. за отстр. на грешки (само за програмисти)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Необработени метаданни: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Подробности за мултимедията"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Този тип файл се отваря с/ъс"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Този файл е предоставен от"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Не е избрано"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Неизвестно"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Размери"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> мегапиксела"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Координати"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Надморска височина"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Камера"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MODEL">%2$s</xliff:g> от <xliff:g id="MAKE">%1$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Бленда"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Скорост на затвора"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Продължителност"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Заснето на"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Дължина на фокуса"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> мм"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Еквивалент на ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO: <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Типове поточно предаване"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Необработен размер (байтове)"</string> +</resources> diff --git a/res/values-bg/mimes.xml b/res/values-bg/mimes.xml new file mode 100644 index 000000000..e4633f5a5 --- /dev/null +++ b/res/values-bg/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> файл"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Файл"</string> + <string name="image_file_type" msgid="3011633523704887793">"Изображение"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> изображение"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Аудио"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> аудиофайл"</string> + <string name="video_file_type" msgid="7290473366042482095">"Видео"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> видеоклип"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> архив"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Приложение за Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Неформатиран текст"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML документ"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF документ"</string> + <string name="word_file_type" msgid="2366349268129894972">"Документ в Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Презентация в PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Ел. таблица в Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Документ в Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Ел. таблица в Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Презентация в Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Чертеж в Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Таблица в Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Формуляр в Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Карта в Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Сайт в Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Папка"</string> +</resources> diff --git a/res/values-bg/strings.xml b/res/values-bg/strings.xml index f1f9b4b71..a85d7d85b 100644 --- a/res/values-bg/strings.xml +++ b/res/values-bg/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Компресиране"</string> <string name="menu_extract" msgid="8171946945982532262">"Извличане в/ъв…"</string> <string name="menu_rename" msgid="1883113442688817554">"Преименуване"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Свойства"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Получаване на информация"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Преглед в/ъв <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Нов прозорец"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Изрязване"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Преместване"</string> <string name="button_dismiss" msgid="7235249361023803349">"Отхвърляне"</string> <string name="button_retry" msgid="4011461781916631389">"Нов опит"</string> + <string name="button_clear" msgid="5412304437764369441">"Изчистване"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Показване чрез доставчик"</string> <string name="not_sorted" msgid="7813496644889115530">"Несортирани"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Име"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Обобщена информация"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Тип"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Размер"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Променено"</string> - <string name="directory_children" msgid="8115290268549503262">"Брой деца"</string> + <string name="directory_items" msgid="6645621978998614003">"Брой елементи"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Възходящ ред"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Низходящ ред"</string> <string name="drawer_open" msgid="8071673398187261741">"Показване на основните елементи"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Файлът не може да се отвори"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Файловете в архиви не могат да се отварят"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Някои документи не могат да бъдат изтрити"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Свойствата не можаха да се заредят"</string> <string name="share_via" msgid="8725082736005677161">"Споделяне чрез"</string> <string name="copy_notification_title" msgid="52256435625098456">"Копиране на файлове"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Файловете се компресират"</string> diff --git a/res/values-bn/inspector_strings.xml b/res/values-bn/inspector_strings.xml new file mode 100644 index 000000000..9758ac107 --- /dev/null +++ b/res/values-bn/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"তথ্য"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ফাইলের তথ্য লোড করা যায়নি"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"ত্রুটি সারানোর তথ্য (শুধুমাত্র ডেভেলপারের জন্য)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"RAW মেটাডেটা: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"মিডিয়ার বিশদ বিবরণ"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"এই ধরনের ফাইল এই অ্যাপ দিয়ে খোলা যায়"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"এই ফাইলের সরবরাহকারী"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"বেছে নেওয়া হয়নি"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"অজানা"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"দৈর্ঘ্য-প্রস্থ"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"স্থানাঙ্ক"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"সমুদ্রপৃষ্ঠ থেকে উচ্চতা"</string> + <string name="metadata_camera" msgid="2363009732801281319">"ক্যামেরা"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"অ্যাপারচার"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"শাটার স্পিড"</string> + <string name="metadata_duration" msgid="3115494422055472715">"সময়কাল"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"তোলার তারিখ"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ফোকাল লেংথ"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ইকুইভ্যালেন্ট"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"স্ট্রিমের ধরন"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"RAW এর সাইজ (বাইট)"</string> +</resources> diff --git a/res/values-bn/mimes.xml b/res/values-bn/mimes.xml new file mode 100644 index 000000000..94b3474a4 --- /dev/null +++ b/res/values-bn/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ফাইল"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ফাইল"</string> + <string name="image_file_type" msgid="3011633523704887793">"ছবি"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> ছবি"</string> + <string name="audio_file_type" msgid="3790525543519624632">"অডিও"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> অডিও"</string> + <string name="video_file_type" msgid="7290473366042482095">"ভিডিও"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> ভিডিও"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> আর্কাইভ"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android অ্যাপ্লিকেশান"</string> + <string name="txt_file_type" msgid="4677767777860724696">"সাধারণ টেক্সট"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML ডকুমেন্ট"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF ডকুমেন্ট"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word ডকুমেন্ট"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint উপস্থাপনা"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel স্প্রেডশিট"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google ডকুমেন্ট"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google স্প্রেডশিট"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google উপস্থাপনা"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google অঙ্কন"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google সারণী"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ফর্ম"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google মানচিত্র"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google সাইট"</string> + <string name="directory_type" msgid="2702987727566226354">"ফোল্ডার"</string> +</resources> diff --git a/res/values-bn/strings.xml b/res/values-bn/strings.xml index 9bc8df1f3..07e6cf243 100644 --- a/res/values-bn/strings.xml +++ b/res/values-bn/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"সঙ্কুচিত করুন"</string> <string name="menu_extract" msgid="8171946945982532262">"এখানে রাখুন…"</string> <string name="menu_rename" msgid="1883113442688817554">"পুনঃনামকরণ"</string> - <string name="menu_inspector" msgid="8633147986551632467">"বৈশিষ্ট্য"</string> + <string name="menu_inspector" msgid="8217713416277319588">"তথ্য পান"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> এ দেখুন"</string> <string name="menu_new_window" msgid="2947837751796109126">"নতুন উইন্ডো"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"কাট করুন"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"সরান"</string> <string name="button_dismiss" msgid="7235249361023803349">"খারিজ করুন"</string> <string name="button_retry" msgid="4011461781916631389">"আবার চেষ্টা করুন"</string> + <string name="button_clear" msgid="5412304437764369441">"সাফ করুন"</string> + <string name="button_show_provider" msgid="6905880493806292753">"প্রদানকারীতে দেখুন"</string> <string name="not_sorted" msgid="7813496644889115530">"সাজানো নেই"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"নাম"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"সারাংশ"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"ধরণ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"আকার"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"শেষ সংশোধিত"</string> - <string name="directory_children" msgid="8115290268549503262">"শিশুদের সংখ্যা"</string> + <string name="directory_items" msgid="6645621978998614003">"আইটেমের সংখ্যা"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ঊর্ধ্বক্রম"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"নিম্নক্রম"</string> <string name="drawer_open" msgid="8071673398187261741">"রুটগুলি দেখান"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ফাইল খোলা যাবে না"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"আর্কাইভের ফাইলগুলি খোলা যাচ্ছে না"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"কিছু দস্তাবেজ মোছা গেল না"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"বৈশিষ্ট্যগুলি লোড করা যায়নি"</string> <string name="share_via" msgid="8725082736005677161">"এর মাধ্যমে শেয়ার করুন"</string> <string name="copy_notification_title" msgid="52256435625098456">"ফাইলগুলি কপি করা হচ্ছে"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ফাইলগুলি"</string> diff --git a/res/values-bs/inspector_strings.xml b/res/values-bs/inspector_strings.xml new file mode 100644 index 000000000..b7f7d9961 --- /dev/null +++ b/res/values-bs/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informacije"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Informacije o fajlu nisu učitane"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informacije o otklanjanju grešaka (samo dev)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw metapodaci: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detalji o medijima"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ovu vrstu datoteka otvara aplikacija"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Fajl pruža"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nije odabrano"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Nepoznato"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimenzije"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinate"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Visina"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Blenda"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Brzina zatvarača"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Trajanje"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Vrijeme snimanja"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Žižna daljina"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ekvivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Vrste prijenosa"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Raw veličina (bajta)"</string> +</resources> diff --git a/res/values-bs/mimes.xml b/res/values-bs/mimes.xml new file mode 100644 index 000000000..9a658e7de --- /dev/null +++ b/res/values-bs/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> fajl"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fajl"</string> + <string name="image_file_type" msgid="3011633523704887793">"Slika"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> slika"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Zvuk"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Videozapis"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> videozapis"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> arhiva"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android aplikacija"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Obični tekst"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML dokument"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF dokument"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint prezentacija"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Tabela u Excelu"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google tabela"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google prezentacija"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google crtež"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google tabela"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google obrazac"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google mapa"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google web lokacija"</string> + <string name="directory_type" msgid="2702987727566226354">"Folder"</string> +</resources> diff --git a/res/values-bs/strings.xml b/res/values-bs/strings.xml index de6040492..7e967b7ac 100644 --- a/res/values-bs/strings.xml +++ b/res/values-bs/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Kompresiraj"</string> <string name="menu_extract" msgid="8171946945982532262">"Izdvoji u…"</string> <string name="menu_rename" msgid="1883113442688817554">"Preimenuj"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Svojstva"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Prikaži informacije"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Prikaži u usluzi <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Novi prozor"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Izreži"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Premjesti"</string> <string name="button_dismiss" msgid="7235249361023803349">"Odbaci"</string> <string name="button_retry" msgid="4011461781916631389">"Pokušajte ponovo"</string> + <string name="button_clear" msgid="5412304437764369441">"Obriši"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Prikaži u pružaocu"</string> <string name="not_sorted" msgid="7813496644889115530">"Nije poredano"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Ime"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Sažetak"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Vrsta"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Veličina"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Izmijenjeno"</string> - <string name="directory_children" msgid="8115290268549503262">"Broj djece"</string> + <string name="directory_items" msgid="6645621978998614003">"Broj stavki"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Rastuće"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Opadajuće"</string> <string name="drawer_open" msgid="8071673398187261741">"Prikaži korijenske fordere"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Nije moguće otvoriti fajl"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Nije moguće otvoriti fajlove u arhivama"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Nije moguće izbrisati neke dokumente"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Svojstva nisu učitana"</string> <string name="share_via" msgid="8725082736005677161">"Podijeli koristeći aplikaciju"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopiraju se fajlovi"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Kompresovanje fajlova"</string> diff --git a/res/values-ca/inspector_strings.xml b/res/values-ca/inspector_strings.xml new file mode 100644 index 000000000..93499c3a0 --- /dev/null +++ b/res/values-ca/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informació"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"No s\'ha pogut carregar la informació del fitxer"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informació de depuració (per a desenvolupadors)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadades sense processar: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Dades multimèdia"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Aquest tipus de fitxer s\'obre amb"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Aquest fitxer prové de:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"No s\'ha seleccionat"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Desconeguda"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensions"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g>: <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> Mpx"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordenades"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitud"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Càmera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Obertura"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Velocitat de l\'obturador"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Durada"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Data de la foto:"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Distància focal"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Equivalent d\'ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Tipus de fluxos"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Mida sense processar (bytes)"</string> +</resources> diff --git a/res/values-ca/mimes.xml b/res/values-ca/mimes.xml new file mode 100644 index 000000000..ab35d694d --- /dev/null +++ b/res/values-ca/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Fitxer <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fitxer"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imatge"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imatge <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Àudio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Àudio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Vídeo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Vídeo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arxiu <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplicació per a Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Text sense format"</string> + <string name="html_file_type" msgid="2034229603117527970">"Document HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Document PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Document de Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Presentació de PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Full de càlcul d\'Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Document de Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Full de càlcul de Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Presentació de Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Dibuix de Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Taula de Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulari de Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa de Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Lloc web de Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Carpeta"</string> +</resources> diff --git a/res/values-ca/strings.xml b/res/values-ca/strings.xml index 4d2ffdc6a..329a4afbf 100644 --- a/res/values-ca/strings.xml +++ b/res/values-ca/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Comprimeix"</string> <string name="menu_extract" msgid="8171946945982532262">"Extreu a…"</string> <string name="menu_rename" msgid="1883113442688817554">"Canvia el nom"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propietats"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Obtén informació"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Mostra a <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Finestra nova"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Retalla"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Mou"</string> <string name="button_dismiss" msgid="7235249361023803349">"Ignora"</string> <string name="button_retry" msgid="4011461781916631389">"Torna-ho a provar"</string> + <string name="button_clear" msgid="5412304437764369441">"Esborra"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Mostra al proveïdor"</string> <string name="not_sorted" msgid="7813496644889115530">"Sense ordenar"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nom"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Resum"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipus"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Mida"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modificat"</string> - <string name="directory_children" msgid="8115290268549503262">"Nombre de nens"</string> + <string name="directory_items" msgid="6645621978998614003">"Nombre d\'elements"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascendent"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Descendent"</string> <string name="drawer_open" msgid="8071673398187261741">"Mostra les arrels"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"No es pot obrir el fitxer"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"No es poden obrir els fitxers dels arxius"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"No es poden suprimir alguns documents"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"No s\'han pogut carregar les propietats"</string> <string name="share_via" msgid="8725082736005677161">"Comparteix mitjançant"</string> <string name="copy_notification_title" msgid="52256435625098456">"S\'estan copiant fitxers"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Comprimint els fitxers"</string> diff --git a/res/values-cs/inspector_strings.xml b/res/values-cs/inspector_strings.xml new file mode 100644 index 000000000..6ec828257 --- /dev/null +++ b/res/values-cs/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informace"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Informace o souboru nelze načíst"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informace o ladění (pouze vývojáři)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadata souboru RAW: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Podrobnosti o mediálním obsahu"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Tento typ souborů se otevírá pomocí aplikace"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Poskytovatel souboru:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nevybráno"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Neznámé"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Rozměry"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> × <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> Mpx"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Souřadnice"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Výška"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Fotoaparát"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Clona"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Rychlost závěrky"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Doba trvání"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Pořízeno"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Ohnisková vzdálenost"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Ekvivalent ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Typy streamů"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Velikost souboru RAW (bajty)"</string> +</resources> diff --git a/res/values-cs/mimes.xml b/res/values-cs/mimes.xml new file mode 100644 index 000000000..c92f8cc46 --- /dev/null +++ b/res/values-cs/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Soubor <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Soubor"</string> + <string name="image_file_type" msgid="3011633523704887793">"Obrázek"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Obrázek <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Zvuk"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Zvuk <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Archiv <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplikace Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Prostý text"</string> + <string name="html_file_type" msgid="2034229603117527970">"Dokument HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Dokument PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Dokument Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Prezentace PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Tabulka Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Dokument Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Tabulka Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Prezentace Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Nákres Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabulka Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulář Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Web Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Složka"</string> +</resources> diff --git a/res/values-cs/strings.xml b/res/values-cs/strings.xml index 701aab95e..fa6cd4f9e 100644 --- a/res/values-cs/strings.xml +++ b/res/values-cs/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Zkomprimovat"</string> <string name="menu_extract" msgid="8171946945982532262">"Rozbalit do…"</string> <string name="menu_rename" msgid="1883113442688817554">"Přejmenovat"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Vlastnosti"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Zobrazit informace"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Zobrazit ve službě <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nové okno"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Vyjmout"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Přesunout"</string> <string name="button_dismiss" msgid="7235249361023803349">"Zavřít"</string> <string name="button_retry" msgid="4011461781916631389">"Zkusit znovu"</string> + <string name="button_clear" msgid="5412304437764369441">"Vymazat"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Zobrazit u poskytovatele"</string> <string name="not_sorted" msgid="7813496644889115530">"Neřazeno"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Název"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Souhrn"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Typ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Velikost"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Změněno"</string> - <string name="directory_children" msgid="8115290268549503262">"Počet dětí"</string> + <string name="directory_items" msgid="6645621978998614003">"Počet položek"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Vzestupně"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Sestupně"</string> <string name="drawer_open" msgid="8071673398187261741">"Zobrazit kořeny"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Soubor nelze otevřít"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Soubory v archivu nelze otevírat"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Některé dokumenty nelze smazat"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Vlastnosti nelze načíst"</string> <string name="share_via" msgid="8725082736005677161">"Sdílet pomocí"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopírování souborů"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Komprimace souborů"</string> diff --git a/res/values-da/inspector_strings.xml b/res/values-da/inspector_strings.xml new file mode 100644 index 000000000..bc0763252 --- /dev/null +++ b/res/values-da/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Oplysninger"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Filoplysningerne kunne ikke indlæses"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Oplysninger om fejlretning (kun på enheden)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"RAW-metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Medieoplysninger"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Denne filtype åbnes med"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Denne fil leveres af"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Ikke valgt"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Ukendt"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Mål"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinater"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Højde"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Blænde"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Lukkertid"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Varighed"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Taget den"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Fokuslængde"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Tilsvarende ISO-hastighed"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Streamingtyper"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"RAW-størrelse (i bytes)"</string> +</resources> diff --git a/res/values-da/mimes.xml b/res/values-da/mimes.xml new file mode 100644 index 000000000..f6be5b73a --- /dev/null +++ b/res/values-da/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g>-fil"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fil"</string> + <string name="image_file_type" msgid="3011633523704887793">"Billede"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g>-billede"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Lyd"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g>-lyd"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g>-video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g>-arkiv"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android-applikation"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Almindelig tekst"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-dokument"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF-dokument"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word-dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint-præsentation"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-regneark"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google-dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google-regneark"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google-præsentation"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google-tegning"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google-tabel"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google-formular"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google-kort"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google-website"</string> + <string name="directory_type" msgid="2702987727566226354">"Mappe"</string> +</resources> diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml index fe3dae366..90692a3f2 100644 --- a/res/values-da/strings.xml +++ b/res/values-da/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Komprimer"</string> <string name="menu_extract" msgid="8171946945982532262">"Pak ud i…"</string> <string name="menu_rename" msgid="1883113442688817554">"Omdøb"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Egenskaber"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Få oplysninger"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Se i <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nyt vindue"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Klip"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Flyt"</string> <string name="button_dismiss" msgid="7235249361023803349">"Afvis"</string> <string name="button_retry" msgid="4011461781916631389">"Prøv igen"</string> + <string name="button_clear" msgid="5412304437764369441">"Ryd"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Vis i udbyders tjeneste"</string> <string name="not_sorted" msgid="7813496644889115530">"Ikke sorteret"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Navn"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Oversigt"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Størrelse"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Ændret"</string> - <string name="directory_children" msgid="8115290268549503262">"Antal børn"</string> + <string name="directory_items" msgid="6645621978998614003">"Antal elementer"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Stigende rækkefølge"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Faldende rækkefølge"</string> <string name="drawer_open" msgid="8071673398187261741">"Vis rødder"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Filen kan ikke åbnes"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Filer i arkiver kan ikke åbnes"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Nogle dokumenter kan ikke slettes"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Ejendommene kunne ikke indlæses"</string> <string name="share_via" msgid="8725082736005677161">"Del via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopierer filer"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Komprimerer filer"</string> diff --git a/res/values-de/inspector_strings.xml b/res/values-de/inspector_strings.xml new file mode 100644 index 000000000..f94264a93 --- /dev/null +++ b/res/values-de/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informationen"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Dateiinformationen konnten nicht geladen werden"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Infos zur Fehlersuche (nur für Entwickler)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Unkomprimierte Metadaten: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Mediendetails"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Dieser Dateityp wird mit der folgenden App geöffnet:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Diese Datei wird bereitgestellt von"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nicht ausgewählt"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Unbekannt"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Abmessungen"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinaten"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Höhe"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Blende"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Belichtungszeit"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Dauer"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Aufgenommen am"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Brennweite"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO-Äquivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Streamingtypen"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Unkomprimierte Größe (Byte)"</string> +</resources> diff --git a/res/values-de/mimes.xml b/res/values-de/mimes.xml new file mode 100644 index 000000000..6772c95c1 --- /dev/null +++ b/res/values-de/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g>-Datei"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Datei"</string> + <string name="image_file_type" msgid="3011633523704887793">"Bild"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g>-Bild"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g>-Audio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g>-Video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g>-Archiv"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android-App"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Nur Text"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-Dokument"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF-Dokument"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word-Dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint-Präsentation"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-Tabelle"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google-Dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google-Tabelle"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google-Präsentation"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google-Zeichnung"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google-Tabelle"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google-Formular"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google-Karte"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google-Website"</string> + <string name="directory_type" msgid="2702987727566226354">"Ordner"</string> +</resources> diff --git a/res/values-de/strings.xml b/res/values-de/strings.xml index c29e631ab..91c033be1 100644 --- a/res/values-de/strings.xml +++ b/res/values-de/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Komprimieren"</string> <string name="menu_extract" msgid="8171946945982532262">"Extrahieren nach…"</string> <string name="menu_rename" msgid="1883113442688817554">"Umbenennen"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Eigenschaften"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Weitere Informationen"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"In <xliff:g id="SOURCE">%1$s</xliff:g> ansehen"</string> <string name="menu_new_window" msgid="2947837751796109126">"Neues Fenster"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Ausschneiden"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Verschieben"</string> <string name="button_dismiss" msgid="7235249361023803349">"Schließen"</string> <string name="button_retry" msgid="4011461781916631389">"Wiederholen"</string> + <string name="button_clear" msgid="5412304437764369441">"Löschen"</string> + <string name="button_show_provider" msgid="6905880493806292753">"In App des Anbieters anzeigen"</string> <string name="not_sorted" msgid="7813496644889115530">"Nicht sortiert"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Name"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Zusammenfassung"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Dateityp"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Größe"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Geändert"</string> - <string name="directory_children" msgid="8115290268549503262">"Anzahl der Kinder"</string> + <string name="directory_items" msgid="6645621978998614003">"Anzahl der Elemente"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Aufsteigend"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Absteigend"</string> <string name="drawer_open" msgid="8071673398187261741">"Root-Verzeichnis anzeigen"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Datei kann nicht geöffnet werden"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Dateien in Archiven können nicht geöffnet werden"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Einige Dokumente konnten nicht gelöscht werden"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Eigenschaften konnten nicht geladen werden"</string> <string name="share_via" msgid="8725082736005677161">"Teilen über"</string> <string name="copy_notification_title" msgid="52256435625098456">"Dateien werden kopiert"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Dateien werden komprimiert"</string> diff --git a/res/values-el/inspector_strings.xml b/res/values-el/inspector_strings.xml new file mode 100644 index 000000000..3492f2213 --- /dev/null +++ b/res/values-el/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Πληροφορίες"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Δεν ήταν δυνατή η φόρτωση των πληροφοριών αρχείου"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Πληροφορίες εντοπισμού σφαλμάτων (μόνο προγρ.)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Μη επεξεργασμένα μεταδεδομένα: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Λεπτομέρειες μέσων"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Αυτός ο τύπος αρχείου ανοίγει με"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Αυτό το αρχείο παρέχεται από"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Δεν έχει επιλεγεί"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Άγνωστη"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Διαστάσεις"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Συντεταγμένες"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Υψόμετρο"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Κάμερα"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Διάφραγμα"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Ταχύτητα κλείστρου"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Διάρκεια"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Λήψη στις"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Εστιακό μήκος"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> χλστ."</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Ισοδύναμο ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Τύποι ροής"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Μη επεξεργασμένο μέγεθος (byte)"</string> +</resources> diff --git a/res/values-el/mimes.xml b/res/values-el/mimes.xml new file mode 100644 index 000000000..b94d035ed --- /dev/null +++ b/res/values-el/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Αρχείο <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Αρχείο"</string> + <string name="image_file_type" msgid="3011633523704887793">"Εικόνα"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Εικόνα <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Ήχος"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Ήχος <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Βίντεο"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Βίντεο <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Αρχείο <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Εφαρμογή Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Απλό κείμενο"</string> + <string name="html_file_type" msgid="2034229603117527970">"Έγγραφο HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Έγγραφο PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Έγγραφο Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Παρουσίαση PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Υπολογιστικό φύλλο Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Έγγραφο Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Υπολογιστικό φύλλο Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Παρουσίαση Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Σχέδιο Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Πίνακας Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Φόρμα Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Χάρτης Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Ιστότοπος Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Φάκελος"</string> +</resources> diff --git a/res/values-el/strings.xml b/res/values-el/strings.xml index 5a51875aa..6709bc9af 100644 --- a/res/values-el/strings.xml +++ b/res/values-el/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Συμπίεση"</string> <string name="menu_extract" msgid="8171946945982532262">"Εξαγωγή σε…"</string> <string name="menu_rename" msgid="1883113442688817554">"Μετονομασία"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Ιδιότητες"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Λήψη πληροφοριών"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Προβολή σε <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Νέο παράθυρο"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Αποκοπή"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Μετακίνηση"</string> <string name="button_dismiss" msgid="7235249361023803349">"Παράβλεψη"</string> <string name="button_retry" msgid="4011461781916631389">"Δοκιμάστε ξανά"</string> + <string name="button_clear" msgid="5412304437764369441">"Διαγραφή"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Εμφάνιση στον πάροχο"</string> <string name="not_sorted" msgid="7813496644889115530">"Χωρίς ταξινόμηση"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Όνομα"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Σύνοψη"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Τύπος"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Μέγεθος"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Τροποποιημένα"</string> - <string name="directory_children" msgid="8115290268549503262">"Αριθμός παιδιών"</string> + <string name="directory_items" msgid="6645621978998614003">"Αριθμός στοιχείων"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Αύξουσα"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Φθίνουσα"</string> <string name="drawer_open" msgid="8071673398187261741">"Εμφάνιση ριζών"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Δεν είναι δυνατό το άνοιγμα του αρχείου"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Αδύνατο άνοιγμα αρχείων σε αρχειοθήκες"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Δεν είναι δυνατή η διαγραφή ορισμένων εγγράφων"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Η φόρτωση των ιδιοτήτων δεν ήταν δυνατή"</string> <string name="share_via" msgid="8725082736005677161">"Κοινοποίηση μέσω"</string> <string name="copy_notification_title" msgid="52256435625098456">"Αντιγραφή αρχείων"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Συμπίεση αρχείων"</string> diff --git a/res/values-en-rAU/inspector_strings.xml b/res/values-en-rAU/inspector_strings.xml new file mode 100644 index 000000000..2a590b54a --- /dev/null +++ b/res/values-en-rAU/inspector_strings.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for inspector_title (1924760928091740238) --> + <skip /> + <!-- no translation found for inspector_load_error (7522190243413249291) --> + <skip /> + <!-- no translation found for inspector_debug_section (2576052661505700421) --> + <skip /> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Media details"</string> + <!-- no translation found for handler_app_file_opens_with (5272329600389613550) --> + <skip /> + <!-- no translation found for handler_app_belongs_to (5444507329303253553) --> + <skip /> + <!-- no translation found for handler_app_not_selected (1294439257183908786) --> + <skip /> + <!-- no translation found for handler_app_unknown (5911661530593229287) --> + <skip /> + <!-- no translation found for metadata_dimensions (6112907724016659801) --> + <skip /> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <!-- no translation found for metadata_coordinates (6897383227370702734) --> + <skip /> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <!-- no translation found for metadata_altitude (8063792127436794294) --> + <skip /> + <!-- no translation found for metadata_camera (2363009732801281319) --> + <skip /> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <!-- no translation found for metadata_aperture (6538741952698935357) --> + <skip /> + <!-- no translation found for metadata_shutter_speed (8204739885103326131) --> + <skip /> + <!-- no translation found for metadata_duration (3115494422055472715) --> + <skip /> + <!-- no translation found for metadata_date_time (1090351199248114406) --> + <skip /> + <!-- no translation found for metadata_focal_length (3440735161407699893) --> + <skip /> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO equivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <!-- no translation found for debug_stream_types (2088565280360139333) --> + <skip /> + <!-- no translation found for debug_raw_size (7487139640175650185) --> + <skip /> +</resources> diff --git a/res/values-en-rAU/mimes.xml b/res/values-en-rAU/mimes.xml new file mode 100644 index 000000000..4da626d18 --- /dev/null +++ b/res/values-en-rAU/mimes.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> file"</string> + <!-- no translation found for generic_file_type (1415477154743494280) --> + <skip /> + <!-- no translation found for image_file_type (3011633523704887793) --> + <skip /> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> image"</string> + <!-- no translation found for audio_file_type (3790525543519624632) --> + <skip /> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <!-- no translation found for video_file_type (7290473366042482095) --> + <skip /> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> archive"</string> + <!-- no translation found for apk_file_type (6004275470389462277) --> + <skip /> + <!-- no translation found for txt_file_type (4677767777860724696) --> + <skip /> + <string name="html_file_type" msgid="2034229603117527970">"HTML document"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF document"</string> + <!-- no translation found for word_file_type (2366349268129894972) --> + <skip /> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint presentation"</string> + <!-- no translation found for excel_file_type (8363932635044575463) --> + <skip /> + <!-- no translation found for gdoc_file_type (242328101061228382) --> + <skip /> + <!-- no translation found for gsheet_file_type (8055591929133067952) --> + <skip /> + <!-- no translation found for gslides_file_type (8359750985956690177) --> + <skip /> + <!-- no translation found for gdraw_file_type (655688091676820371) --> + <skip /> + <!-- no translation found for gtable_file_type (7332773878374650335) --> + <skip /> + <!-- no translation found for gform_file_type (4803176103746107611) --> + <skip /> + <!-- no translation found for gmap_file_type (6684180781808007016) --> + <skip /> + <string name="gsite_file_type" msgid="3742812051249149526">"Google site"</string> + <!-- no translation found for directory_type (2702987727566226354) --> + <skip /> +</resources> diff --git a/res/values-en-rAU/strings.xml b/res/values-en-rAU/strings.xml index 6c5d10f13..c6327e722 100644 --- a/res/values-en-rAU/strings.xml +++ b/res/values-en-rAU/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Compress"</string> <string name="menu_extract" msgid="8171946945982532262">"Extract to…"</string> <string name="menu_rename" msgid="1883113442688817554">"Rename"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Properties"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Get info"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"View in <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"New window"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cut"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Move"</string> <string name="button_dismiss" msgid="7235249361023803349">"Dismiss"</string> <string name="button_retry" msgid="4011461781916631389">"Try again"</string> + <string name="button_clear" msgid="5412304437764369441">"Clear"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Show in provider"</string> <string name="not_sorted" msgid="7813496644889115530">"Not sorted"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Name"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Summary"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type:"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Size"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modified"</string> - <string name="directory_children" msgid="8115290268549503262">"Number of Children"</string> + <string name="directory_items" msgid="6645621978998614003">"Number of items"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascending"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Descending"</string> <string name="drawer_open" msgid="8071673398187261741">"Show roots"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Can’t open file"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Cannot open files in archives"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Unable to delete some documents"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Properties could not be loaded"</string> <string name="share_via" msgid="8725082736005677161">"Share via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copying files"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Compressing files"</string> diff --git a/res/values-en-rCA/inspector_strings.xml b/res/values-en-rCA/inspector_strings.xml new file mode 100644 index 000000000..2a590b54a --- /dev/null +++ b/res/values-en-rCA/inspector_strings.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for inspector_title (1924760928091740238) --> + <skip /> + <!-- no translation found for inspector_load_error (7522190243413249291) --> + <skip /> + <!-- no translation found for inspector_debug_section (2576052661505700421) --> + <skip /> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Media details"</string> + <!-- no translation found for handler_app_file_opens_with (5272329600389613550) --> + <skip /> + <!-- no translation found for handler_app_belongs_to (5444507329303253553) --> + <skip /> + <!-- no translation found for handler_app_not_selected (1294439257183908786) --> + <skip /> + <!-- no translation found for handler_app_unknown (5911661530593229287) --> + <skip /> + <!-- no translation found for metadata_dimensions (6112907724016659801) --> + <skip /> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <!-- no translation found for metadata_coordinates (6897383227370702734) --> + <skip /> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <!-- no translation found for metadata_altitude (8063792127436794294) --> + <skip /> + <!-- no translation found for metadata_camera (2363009732801281319) --> + <skip /> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <!-- no translation found for metadata_aperture (6538741952698935357) --> + <skip /> + <!-- no translation found for metadata_shutter_speed (8204739885103326131) --> + <skip /> + <!-- no translation found for metadata_duration (3115494422055472715) --> + <skip /> + <!-- no translation found for metadata_date_time (1090351199248114406) --> + <skip /> + <!-- no translation found for metadata_focal_length (3440735161407699893) --> + <skip /> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO equivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <!-- no translation found for debug_stream_types (2088565280360139333) --> + <skip /> + <!-- no translation found for debug_raw_size (7487139640175650185) --> + <skip /> +</resources> diff --git a/res/values-en-rCA/mimes.xml b/res/values-en-rCA/mimes.xml new file mode 100644 index 000000000..4da626d18 --- /dev/null +++ b/res/values-en-rCA/mimes.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> file"</string> + <!-- no translation found for generic_file_type (1415477154743494280) --> + <skip /> + <!-- no translation found for image_file_type (3011633523704887793) --> + <skip /> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> image"</string> + <!-- no translation found for audio_file_type (3790525543519624632) --> + <skip /> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <!-- no translation found for video_file_type (7290473366042482095) --> + <skip /> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> archive"</string> + <!-- no translation found for apk_file_type (6004275470389462277) --> + <skip /> + <!-- no translation found for txt_file_type (4677767777860724696) --> + <skip /> + <string name="html_file_type" msgid="2034229603117527970">"HTML document"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF document"</string> + <!-- no translation found for word_file_type (2366349268129894972) --> + <skip /> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint presentation"</string> + <!-- no translation found for excel_file_type (8363932635044575463) --> + <skip /> + <!-- no translation found for gdoc_file_type (242328101061228382) --> + <skip /> + <!-- no translation found for gsheet_file_type (8055591929133067952) --> + <skip /> + <!-- no translation found for gslides_file_type (8359750985956690177) --> + <skip /> + <!-- no translation found for gdraw_file_type (655688091676820371) --> + <skip /> + <!-- no translation found for gtable_file_type (7332773878374650335) --> + <skip /> + <!-- no translation found for gform_file_type (4803176103746107611) --> + <skip /> + <!-- no translation found for gmap_file_type (6684180781808007016) --> + <skip /> + <string name="gsite_file_type" msgid="3742812051249149526">"Google site"</string> + <!-- no translation found for directory_type (2702987727566226354) --> + <skip /> +</resources> diff --git a/res/values-en-rCA/strings.xml b/res/values-en-rCA/strings.xml new file mode 100644 index 000000000..c6327e722 --- /dev/null +++ b/res/values-en-rCA/strings.xml @@ -0,0 +1,209 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2013 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="files_label" msgid="771781190045103748">"Files"</string> + <string name="downloads_label" msgid="5462789470049501103">"Downloads"</string> + <!-- no translation found for app_label (8089292432455111409) --> + <skip /> + <!-- no translation found for launcher_label (799410258349837668) --> + <skip /> + <string name="title_open" msgid="3165686459158020921">"Open from"</string> + <string name="title_save" msgid="4384490653102710025">"Save to"</string> + <string name="menu_create_dir" msgid="2413624798689091042">"New folder"</string> + <string name="menu_grid" msgid="1453636521731880680">"Grid view"</string> + <string name="menu_list" msgid="6714267452146410402">"List View"</string> + <string name="menu_search" msgid="1876699106790719849">"Search"</string> + <string name="menu_settings" msgid="6520844520117939047">"Storage settings"</string> + <string name="menu_open" msgid="9092138100049759315">"Open"</string> + <string name="menu_open_with" msgid="5507647065467520229">"Open with"</string> + <string name="menu_open_in_new_window" msgid="6686563636123311276">"Open in new window"</string> + <string name="menu_save" msgid="5195367497138965168">"Save"</string> + <string name="menu_share" msgid="4307140947108068356">"Shared"</string> + <string name="menu_delete" msgid="1022254131543256626">"Delete"</string> + <string name="menu_select_all" msgid="7600576812185570403">"Select all"</string> + <string name="menu_copy" msgid="7404820171352314754">"Copy to…"</string> + <string name="menu_move" msgid="2310760789561129882">"Move to…"</string> + <string name="menu_compress" msgid="37539111904724188">"Compress"</string> + <string name="menu_extract" msgid="8171946945982532262">"Extract to…"</string> + <string name="menu_rename" msgid="1883113442688817554">"Rename"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Get info"</string> + <string name="menu_view_in_owner" msgid="7228948660557554770">"View in <xliff:g id="SOURCE">%1$s</xliff:g>"</string> + <string name="menu_new_window" msgid="2947837751796109126">"New window"</string> + <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cut"</string> + <string name="menu_copy_to_clipboard" msgid="5064081159073330776">"Copy"</string> + <string name="menu_paste_from_clipboard" msgid="360947260414135827">"Paste"</string> + <string name="menu_paste_into_folder" msgid="8000644546983240101">"Paste into folder"</string> + <string name="menu_advanced_show" msgid="7558626506462906726">"Show internal storage"</string> + <string name="menu_advanced_hide" msgid="6488381508009246334">"Hide internal storage"</string> + <string name="button_select" msgid="240863497069321364">"Select"</string> + <string name="button_copy" msgid="8219059853840996027">"Copy"</string> + <string name="button_compress" msgid="8951561310857223966">"Compress"</string> + <string name="button_extract" msgid="1038674453689912247">"Extract"</string> + <string name="button_move" msgid="8596460499325291272">"Move"</string> + <string name="button_dismiss" msgid="7235249361023803349">"Dismiss"</string> + <string name="button_retry" msgid="4011461781916631389">"Try again"</string> + <string name="button_clear" msgid="5412304437764369441">"Clear"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Show in provider"</string> + <string name="not_sorted" msgid="7813496644889115530">"Not sorted"</string> + <string name="sort_dimension_name" msgid="6325591541414177579">"Name"</string> + <string name="sort_dimension_summary" msgid="7724534446881397860">"Summary"</string> + <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type:"</string> + <string name="sort_dimension_size" msgid="2190547351159472884">"Size"</string> + <string name="sort_dimension_date" msgid="4231005651895254033">"Modified"</string> + <string name="directory_items" msgid="6645621978998614003">"Number of items"</string> + <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascending"</string> + <string name="sort_direction_descending" msgid="1729187589765894076">"Descending"</string> + <string name="drawer_open" msgid="8071673398187261741">"Show roots"</string> + <string name="drawer_close" msgid="4263880768630848848">"Hide roots"</string> + <string name="save_error" msgid="8631128801982095782">"Failed to save document"</string> + <string name="create_error" msgid="3092144450044861994">"Failed to create folder"</string> + <string name="query_error" msgid="6625421453613879336">"Can’t load content at the moment"</string> + <string name="root_recent" msgid="1080156975424341623">"Recent"</string> + <string name="root_available_bytes" msgid="8269870862691408864">"<xliff:g id="SIZE">%1$s</xliff:g> free"</string> + <string name="root_type_service" msgid="6521366147466512289">"Storage services"</string> + <string name="root_type_shortcut" msgid="6059343175525442279">"Shortcuts"</string> + <string name="root_type_device" msgid="1713604128005476585">"Devices"</string> + <string name="root_type_apps" msgid="8646073235029886342">"More apps"</string> + <string name="empty" msgid="5300254272613103004">"No items"</string> + <string name="no_results" msgid="2371026325236359209">"No matches in %1$s"</string> + <string name="toast_no_application" msgid="7555319548595113121">"Can’t open file"</string> + <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Cannot open files in archives"</string> + <string name="toast_failed_delete" msgid="3453846588205817591">"Unable to delete some documents"</string> + <string name="share_via" msgid="8725082736005677161">"Share via"</string> + <string name="copy_notification_title" msgid="52256435625098456">"Copying files"</string> + <string name="compress_notification_title" msgid="6830195148113751021">"Compressing files"</string> + <string name="extract_notification_title" msgid="5067393961754430469">"Extracting files"</string> + <string name="move_notification_title" msgid="3173424987049347605">"Moving files"</string> + <string name="delete_notification_title" msgid="2512757431856830792">"Deleting files"</string> + <string name="copy_remaining" msgid="5390517377265177727">"<xliff:g id="DURATION">%s</xliff:g> left"</string> + <plurals name="copy_begin" formatted="false" msgid="151184708996738192"> + <item quantity="other">Copying <xliff:g id="COUNT_1">%1$d</xliff:g> items.</item> + <item quantity="one">Copying <xliff:g id="COUNT_0">%1$d</xliff:g> item.</item> + </plurals> + <plurals name="compress_begin" formatted="false" msgid="3534158317098678895"> + <item quantity="other">Compressing <xliff:g id="COUNT_1">%1$d</xliff:g> files.</item> + <item quantity="one">Compressing <xliff:g id="COUNT_0">%1$d</xliff:g> file.</item> + </plurals> + <plurals name="extract_begin" formatted="false" msgid="1006380679562903749"> + <item quantity="other">Extracting <xliff:g id="COUNT_1">%1$d</xliff:g> files.</item> + <item quantity="one">Extracting <xliff:g id="COUNT_0">%1$d</xliff:g> file.</item> + </plurals> + <plurals name="move_begin" formatted="false" msgid="1464229874265756956"> + <item quantity="other">Moving <xliff:g id="COUNT_1">%1$d</xliff:g> items.</item> + <item quantity="one">Moving <xliff:g id="COUNT_0">%1$d</xliff:g> item.</item> + </plurals> + <plurals name="deleting" formatted="false" msgid="1729138001178158901"> + <item quantity="other">Deleting <xliff:g id="COUNT_1">%1$d</xliff:g> items.</item> + <item quantity="one">Deleting <xliff:g id="COUNT_0">%1$d</xliff:g> item.</item> + </plurals> + <string name="undo" msgid="2902438994196400565">"Undo"</string> + <string name="copy_preparing" msgid="5326063807006898223">"Preparing for copy…"</string> + <string name="compress_preparing" msgid="6650018601382062672">"Preparing for compress…"</string> + <string name="extract_preparing" msgid="58266275455027829">"Preparing for extract…"</string> + <string name="move_preparing" msgid="8742573245485449429">"Preparing for move…"</string> + <string name="delete_preparing" msgid="6513863752916028147">"Preparing to delete…"</string> + <string name="delete_progress" msgid="2627631054702306423">"<xliff:g id="COUNT_0">%1$d</xliff:g> / <xliff:g id="TOTALCOUNT">%2$d</xliff:g>"</string> + <plurals name="copy_error_notification_title" formatted="false" msgid="3188432450429390963"> + <item quantity="other">Couldn’t copy <xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one">Couldn’t copy <xliff:g id="COUNT_0">%1$d</xliff:g> item</item> + </plurals> + <plurals name="compress_error_notification_title" formatted="false" msgid="3043630066678213644"> + <item quantity="other">Couldn’t compress <xliff:g id="COUNT_1">%1$d</xliff:g> files</item> + <item quantity="one">Couldn’t compress <xliff:g id="COUNT_0">%1$d</xliff:g> file</item> + </plurals> + <plurals name="move_error_notification_title" formatted="false" msgid="2185736082411854754"> + <item quantity="other">Couldn’t move <xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one">Couldn’t move <xliff:g id="COUNT_0">%1$d</xliff:g> item</item> + </plurals> + <plurals name="delete_error_notification_title" formatted="false" msgid="7568122018481625267"> + <item quantity="other">Couldn’t delete <xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one">Couldn’t delete <xliff:g id="COUNT_0">%1$d</xliff:g> item</item> + </plurals> + <string name="notification_touch_for_details" msgid="2385563502445129570">"Tap to view details"</string> + <string name="close" msgid="905969391788869975">"Close"</string> + <plurals name="copy_failure_alert_content" formatted="false" msgid="5570549471912990536"> + <item quantity="other">These files weren’t copied: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t copied: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="compress_failure_alert_content" formatted="false" msgid="5760632881868842400"> + <item quantity="other">These files weren’t compressed: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t compressed: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="extract_failure_alert_content" formatted="false" msgid="7572748127571720803"> + <item quantity="other">These files weren’t extracted: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t extracted: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="move_failure_alert_content" formatted="false" msgid="2747390342670799196"> + <item quantity="other">These files weren’t moved: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t moved: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="delete_failure_alert_content" formatted="false" msgid="6122372614839711711"> + <item quantity="other">These files weren’t deleted: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t deleted: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="copy_converted_warning_content" formatted="false" msgid="7433742181712126588"> + <item quantity="other">These files were converted to another format: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file was converted to another format: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="clipboard_files_clipped" formatted="false" msgid="4847061634862926902"> + <item quantity="other">Copied <xliff:g id="COUNT_1">%1$d</xliff:g> items to clipboard.</item> + <item quantity="one">Copied <xliff:g id="COUNT_0">%1$d</xliff:g> item to clipboard.</item> + </plurals> + <string name="file_operation_rejected" msgid="4301554203329008794">"File operation is not supported."</string> + <string name="file_operation_error" msgid="2234357335716533795">"File operation failed."</string> + <string name="rename_error" msgid="6700093173508118635">"Failed to rename document"</string> + <string name="menu_eject_root" msgid="9215040039374893613">"Eject"</string> + <string name="notification_copy_files_converted_title" msgid="6916768494891833365">"Some files were converted"</string> + <string name="open_external_dialog_request" msgid="8173558471322861268">"Grant <xliff:g id="APPNAME"><b>^1</b></xliff:g> access to <xliff:g id="DIRECTORY"><i>^2</i></xliff:g> directory on <xliff:g id="STORAGE"><i>^3</i></xliff:g>?"</string> + <string name="open_external_dialog_request_primary_volume" msgid="2240992164087948176">"Grant <xliff:g id="APPNAME"><b>^1</b></xliff:g> access to <xliff:g id="DIRECTORY"><i>^2</i></xliff:g> directory?"</string> + <string name="open_external_dialog_root_request" msgid="6776729293982633">"Grant <xliff:g id="APPNAME"><b>^1</b></xliff:g> access to your data, including photos and videos, on <xliff:g id="STORAGE"><i>^2</i></xliff:g>?"</string> + <string name="never_ask_again" msgid="525908236522201138">"Don\'t ask again"</string> + <string name="allow" msgid="1275746941353040309">"Allow"</string> + <string name="deny" msgid="5127201668078153379">"Deny"</string> + <plurals name="elements_selected" formatted="false" msgid="4448165978637163692"> + <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> selected</item> + <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> selected</item> + </plurals> + <plurals name="elements_dragged" formatted="false" msgid="5932571296037626279"> + <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> item</item> + </plurals> + <string name="delete_filename_confirmation_message" msgid="8338069763240613258">"Delete \"<xliff:g id="NAME">%1$s</xliff:g>\"?"</string> + <string name="delete_foldername_confirmation_message" msgid="9084085260877704140">"Delete folder \"<xliff:g id="NAME">%1$s</xliff:g>\" and its contents?"</string> + <plurals name="delete_files_confirmation_message" formatted="false" msgid="4866664063250034142"> + <item quantity="other">Delete <xliff:g id="COUNT_1">%1$d</xliff:g> files?</item> + <item quantity="one">Delete <xliff:g id="COUNT_0">%1$d</xliff:g> file?</item> + </plurals> + <plurals name="delete_folders_confirmation_message" formatted="false" msgid="1028946402799686388"> + <item quantity="other">Delete <xliff:g id="COUNT_1">%1$d</xliff:g> folders and their contents?</item> + <item quantity="one">Delete <xliff:g id="COUNT_0">%1$d</xliff:g> folder and its contents?</item> + </plurals> + <plurals name="delete_items_confirmation_message" formatted="false" msgid="7285090426511028179"> + <item quantity="other">Delete <xliff:g id="COUNT_1">%1$d</xliff:g> items?</item> + <item quantity="one">Delete <xliff:g id="COUNT_0">%1$d</xliff:g> item?</item> + </plurals> + <string name="images_shortcut_label" msgid="2545168016070493574">"Images"</string> + <string name="archive_loading_failed" msgid="7243436722828766996">"Unable to open archive for browsing. File is either corrupt or an unsupported format."</string> + <string name="name_conflict" msgid="28407269328862986">"A file with this name already exists."</string> + <string name="authentication_required" msgid="8030880723643436099">"To view this directory, sign in to <xliff:g id="NAME">%1$s</xliff:g>"</string> + <string name="cant_display_content" msgid="8633226333229417237">"Can’t display contents"</string> + <string name="sign_in" msgid="6253762676723505592">"Sign in"</string> + <string name="new_archive_file_name" msgid="1604650338077249838">"archive<xliff:g id="EXTENSION">%s</xliff:g>"</string> + <string name="overwrite_file_confirmation_message" msgid="2496109652768222716">"Overwrite <xliff:g id="NAME">%1$s</xliff:g>?"</string> + <string name="continue_in_background" msgid="1974214559047793331">"Continue in background"</string> +</resources> diff --git a/res/values-en-rGB/inspector_strings.xml b/res/values-en-rGB/inspector_strings.xml new file mode 100644 index 000000000..2a590b54a --- /dev/null +++ b/res/values-en-rGB/inspector_strings.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for inspector_title (1924760928091740238) --> + <skip /> + <!-- no translation found for inspector_load_error (7522190243413249291) --> + <skip /> + <!-- no translation found for inspector_debug_section (2576052661505700421) --> + <skip /> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Media details"</string> + <!-- no translation found for handler_app_file_opens_with (5272329600389613550) --> + <skip /> + <!-- no translation found for handler_app_belongs_to (5444507329303253553) --> + <skip /> + <!-- no translation found for handler_app_not_selected (1294439257183908786) --> + <skip /> + <!-- no translation found for handler_app_unknown (5911661530593229287) --> + <skip /> + <!-- no translation found for metadata_dimensions (6112907724016659801) --> + <skip /> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <!-- no translation found for metadata_coordinates (6897383227370702734) --> + <skip /> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <!-- no translation found for metadata_altitude (8063792127436794294) --> + <skip /> + <!-- no translation found for metadata_camera (2363009732801281319) --> + <skip /> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <!-- no translation found for metadata_aperture (6538741952698935357) --> + <skip /> + <!-- no translation found for metadata_shutter_speed (8204739885103326131) --> + <skip /> + <!-- no translation found for metadata_duration (3115494422055472715) --> + <skip /> + <!-- no translation found for metadata_date_time (1090351199248114406) --> + <skip /> + <!-- no translation found for metadata_focal_length (3440735161407699893) --> + <skip /> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO equivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <!-- no translation found for debug_stream_types (2088565280360139333) --> + <skip /> + <!-- no translation found for debug_raw_size (7487139640175650185) --> + <skip /> +</resources> diff --git a/res/values-en-rGB/mimes.xml b/res/values-en-rGB/mimes.xml new file mode 100644 index 000000000..4da626d18 --- /dev/null +++ b/res/values-en-rGB/mimes.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> file"</string> + <!-- no translation found for generic_file_type (1415477154743494280) --> + <skip /> + <!-- no translation found for image_file_type (3011633523704887793) --> + <skip /> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> image"</string> + <!-- no translation found for audio_file_type (3790525543519624632) --> + <skip /> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <!-- no translation found for video_file_type (7290473366042482095) --> + <skip /> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> archive"</string> + <!-- no translation found for apk_file_type (6004275470389462277) --> + <skip /> + <!-- no translation found for txt_file_type (4677767777860724696) --> + <skip /> + <string name="html_file_type" msgid="2034229603117527970">"HTML document"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF document"</string> + <!-- no translation found for word_file_type (2366349268129894972) --> + <skip /> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint presentation"</string> + <!-- no translation found for excel_file_type (8363932635044575463) --> + <skip /> + <!-- no translation found for gdoc_file_type (242328101061228382) --> + <skip /> + <!-- no translation found for gsheet_file_type (8055591929133067952) --> + <skip /> + <!-- no translation found for gslides_file_type (8359750985956690177) --> + <skip /> + <!-- no translation found for gdraw_file_type (655688091676820371) --> + <skip /> + <!-- no translation found for gtable_file_type (7332773878374650335) --> + <skip /> + <!-- no translation found for gform_file_type (4803176103746107611) --> + <skip /> + <!-- no translation found for gmap_file_type (6684180781808007016) --> + <skip /> + <string name="gsite_file_type" msgid="3742812051249149526">"Google site"</string> + <!-- no translation found for directory_type (2702987727566226354) --> + <skip /> +</resources> diff --git a/res/values-en-rGB/strings.xml b/res/values-en-rGB/strings.xml index 6c5d10f13..c6327e722 100644 --- a/res/values-en-rGB/strings.xml +++ b/res/values-en-rGB/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Compress"</string> <string name="menu_extract" msgid="8171946945982532262">"Extract to…"</string> <string name="menu_rename" msgid="1883113442688817554">"Rename"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Properties"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Get info"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"View in <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"New window"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cut"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Move"</string> <string name="button_dismiss" msgid="7235249361023803349">"Dismiss"</string> <string name="button_retry" msgid="4011461781916631389">"Try again"</string> + <string name="button_clear" msgid="5412304437764369441">"Clear"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Show in provider"</string> <string name="not_sorted" msgid="7813496644889115530">"Not sorted"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Name"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Summary"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type:"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Size"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modified"</string> - <string name="directory_children" msgid="8115290268549503262">"Number of Children"</string> + <string name="directory_items" msgid="6645621978998614003">"Number of items"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascending"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Descending"</string> <string name="drawer_open" msgid="8071673398187261741">"Show roots"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Can’t open file"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Cannot open files in archives"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Unable to delete some documents"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Properties could not be loaded"</string> <string name="share_via" msgid="8725082736005677161">"Share via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copying files"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Compressing files"</string> diff --git a/res/values-en-rIN/inspector_strings.xml b/res/values-en-rIN/inspector_strings.xml new file mode 100644 index 000000000..2a590b54a --- /dev/null +++ b/res/values-en-rIN/inspector_strings.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- no translation found for inspector_title (1924760928091740238) --> + <skip /> + <!-- no translation found for inspector_load_error (7522190243413249291) --> + <skip /> + <!-- no translation found for inspector_debug_section (2576052661505700421) --> + <skip /> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Media details"</string> + <!-- no translation found for handler_app_file_opens_with (5272329600389613550) --> + <skip /> + <!-- no translation found for handler_app_belongs_to (5444507329303253553) --> + <skip /> + <!-- no translation found for handler_app_not_selected (1294439257183908786) --> + <skip /> + <!-- no translation found for handler_app_unknown (5911661530593229287) --> + <skip /> + <!-- no translation found for metadata_dimensions (6112907724016659801) --> + <skip /> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <!-- no translation found for metadata_coordinates (6897383227370702734) --> + <skip /> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <!-- no translation found for metadata_altitude (8063792127436794294) --> + <skip /> + <!-- no translation found for metadata_camera (2363009732801281319) --> + <skip /> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <!-- no translation found for metadata_aperture (6538741952698935357) --> + <skip /> + <!-- no translation found for metadata_shutter_speed (8204739885103326131) --> + <skip /> + <!-- no translation found for metadata_duration (3115494422055472715) --> + <skip /> + <!-- no translation found for metadata_date_time (1090351199248114406) --> + <skip /> + <!-- no translation found for metadata_focal_length (3440735161407699893) --> + <skip /> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO equivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <!-- no translation found for debug_stream_types (2088565280360139333) --> + <skip /> + <!-- no translation found for debug_raw_size (7487139640175650185) --> + <skip /> +</resources> diff --git a/res/values-en-rIN/mimes.xml b/res/values-en-rIN/mimes.xml new file mode 100644 index 000000000..4da626d18 --- /dev/null +++ b/res/values-en-rIN/mimes.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> file"</string> + <!-- no translation found for generic_file_type (1415477154743494280) --> + <skip /> + <!-- no translation found for image_file_type (3011633523704887793) --> + <skip /> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> image"</string> + <!-- no translation found for audio_file_type (3790525543519624632) --> + <skip /> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <!-- no translation found for video_file_type (7290473366042482095) --> + <skip /> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> archive"</string> + <!-- no translation found for apk_file_type (6004275470389462277) --> + <skip /> + <!-- no translation found for txt_file_type (4677767777860724696) --> + <skip /> + <string name="html_file_type" msgid="2034229603117527970">"HTML document"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF document"</string> + <!-- no translation found for word_file_type (2366349268129894972) --> + <skip /> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint presentation"</string> + <!-- no translation found for excel_file_type (8363932635044575463) --> + <skip /> + <!-- no translation found for gdoc_file_type (242328101061228382) --> + <skip /> + <!-- no translation found for gsheet_file_type (8055591929133067952) --> + <skip /> + <!-- no translation found for gslides_file_type (8359750985956690177) --> + <skip /> + <!-- no translation found for gdraw_file_type (655688091676820371) --> + <skip /> + <!-- no translation found for gtable_file_type (7332773878374650335) --> + <skip /> + <!-- no translation found for gform_file_type (4803176103746107611) --> + <skip /> + <!-- no translation found for gmap_file_type (6684180781808007016) --> + <skip /> + <string name="gsite_file_type" msgid="3742812051249149526">"Google site"</string> + <!-- no translation found for directory_type (2702987727566226354) --> + <skip /> +</resources> diff --git a/res/values-en-rIN/strings.xml b/res/values-en-rIN/strings.xml index 6c5d10f13..c6327e722 100644 --- a/res/values-en-rIN/strings.xml +++ b/res/values-en-rIN/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Compress"</string> <string name="menu_extract" msgid="8171946945982532262">"Extract to…"</string> <string name="menu_rename" msgid="1883113442688817554">"Rename"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Properties"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Get info"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"View in <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"New window"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cut"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Move"</string> <string name="button_dismiss" msgid="7235249361023803349">"Dismiss"</string> <string name="button_retry" msgid="4011461781916631389">"Try again"</string> + <string name="button_clear" msgid="5412304437764369441">"Clear"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Show in provider"</string> <string name="not_sorted" msgid="7813496644889115530">"Not sorted"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Name"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Summary"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type:"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Size"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modified"</string> - <string name="directory_children" msgid="8115290268549503262">"Number of Children"</string> + <string name="directory_items" msgid="6645621978998614003">"Number of items"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascending"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Descending"</string> <string name="drawer_open" msgid="8071673398187261741">"Show roots"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Can’t open file"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Cannot open files in archives"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Unable to delete some documents"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Properties could not be loaded"</string> <string name="share_via" msgid="8725082736005677161">"Share via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copying files"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Compressing files"</string> diff --git a/res/values-en-rXC/inspector_strings.xml b/res/values-en-rXC/inspector_strings.xml new file mode 100644 index 000000000..ace8d483b --- /dev/null +++ b/res/values-en-rXC/inspector_strings.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Info"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"File info could not be loaded"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Debug info (dev only)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Media details"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"This kind of file opens with"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"This file is supplied by"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Not selected"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Unknown"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensions"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordinates"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitude"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Camera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Aperture"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Shutter speed"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Duration"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Taken on"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Focal length"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO equivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <string name="metadata_artist" msgid="8972421485694988540">"Artist"</string> + <string name="metadata_composer" msgid="4696926808308256056">"Composer"</string> + <string name="metadata_album" msgid="1661699531214720236">"Album"</string> + <string name="metadata_address" msgid="1849921023707744640">"Location"</string> + <string name="debug_stream_types" msgid="2088565280360139333">"Stream types"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Raw size (bytes)"</string> +</resources> diff --git a/res/values-en-rXC/mimes.xml b/res/values-en-rXC/mimes.xml new file mode 100644 index 000000000..43489a96e --- /dev/null +++ b/res/values-en-rXC/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> file"</string> + <string name="generic_file_type" msgid="1415477154743494280">"File"</string> + <string name="image_file_type" msgid="3011633523704887793">"Image"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> image"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> archive"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android application"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Plain text"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML document"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF document"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word document"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint presentation"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel spreadsheet"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google document"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google spreadsheet"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google presentation"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google drawing"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google table"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google form"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google map"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google site"</string> + <string name="directory_type" msgid="2702987727566226354">"Folder"</string> +</resources> diff --git a/res/values-en-rXC/strings.xml b/res/values-en-rXC/strings.xml new file mode 100644 index 000000000..604505a9e --- /dev/null +++ b/res/values-en-rXC/strings.xml @@ -0,0 +1,209 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2013 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="files_label" msgid="771781190045103748">"Files"</string> + <string name="downloads_label" msgid="5462789470049501103">"Downloads"</string> + <!-- no translation found for app_label (8089292432455111409) --> + <skip /> + <!-- no translation found for launcher_label (799410258349837668) --> + <skip /> + <string name="title_open" msgid="3165686459158020921">"Open from"</string> + <string name="title_save" msgid="4384490653102710025">"Save to"</string> + <string name="menu_create_dir" msgid="2413624798689091042">"New folder"</string> + <string name="menu_grid" msgid="1453636521731880680">"Grid view"</string> + <string name="menu_list" msgid="6714267452146410402">"List view"</string> + <string name="menu_search" msgid="1876699106790719849">"Search"</string> + <string name="menu_settings" msgid="6520844520117939047">"Storage settings"</string> + <string name="menu_open" msgid="9092138100049759315">"Open"</string> + <string name="menu_open_with" msgid="5507647065467520229">"Open with"</string> + <string name="menu_open_in_new_window" msgid="6686563636123311276">"Open in new window"</string> + <string name="menu_save" msgid="5195367497138965168">"Save"</string> + <string name="menu_share" msgid="4307140947108068356">"Share"</string> + <string name="menu_delete" msgid="1022254131543256626">"Delete"</string> + <string name="menu_select_all" msgid="7600576812185570403">"Select all"</string> + <string name="menu_copy" msgid="7404820171352314754">"Copy to…"</string> + <string name="menu_move" msgid="2310760789561129882">"Move to…"</string> + <string name="menu_compress" msgid="37539111904724188">"Compress"</string> + <string name="menu_extract" msgid="8171946945982532262">"Extract to…"</string> + <string name="menu_rename" msgid="1883113442688817554">"Rename"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Get info"</string> + <string name="menu_view_in_owner" msgid="7228948660557554770">"View in <xliff:g id="SOURCE">%1$s</xliff:g>"</string> + <string name="menu_new_window" msgid="2947837751796109126">"New window"</string> + <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cut"</string> + <string name="menu_copy_to_clipboard" msgid="5064081159073330776">"Copy"</string> + <string name="menu_paste_from_clipboard" msgid="360947260414135827">"Paste"</string> + <string name="menu_paste_into_folder" msgid="8000644546983240101">"Paste into folder"</string> + <string name="menu_advanced_show" msgid="7558626506462906726">"Show internal storage"</string> + <string name="menu_advanced_hide" msgid="6488381508009246334">"Hide internal storage"</string> + <string name="button_select" msgid="240863497069321364">"Select"</string> + <string name="button_copy" msgid="8219059853840996027">"Copy"</string> + <string name="button_compress" msgid="8951561310857223966">"Compress"</string> + <string name="button_extract" msgid="1038674453689912247">"Extract"</string> + <string name="button_move" msgid="8596460499325291272">"Move"</string> + <string name="button_dismiss" msgid="7235249361023803349">"Dismiss"</string> + <string name="button_retry" msgid="4011461781916631389">"Try Again"</string> + <string name="button_clear" msgid="5412304437764369441">"Clear"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Show in provider"</string> + <string name="not_sorted" msgid="7813496644889115530">"Not sorted"</string> + <string name="sort_dimension_name" msgid="6325591541414177579">"Name"</string> + <string name="sort_dimension_summary" msgid="7724534446881397860">"Summary"</string> + <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type"</string> + <string name="sort_dimension_size" msgid="2190547351159472884">"Size"</string> + <string name="sort_dimension_date" msgid="4231005651895254033">"Modified"</string> + <string name="directory_items" msgid="6645621978998614003">"Number of items"</string> + <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascending"</string> + <string name="sort_direction_descending" msgid="1729187589765894076">"Descending"</string> + <string name="drawer_open" msgid="8071673398187261741">"Show roots"</string> + <string name="drawer_close" msgid="4263880768630848848">"Hide roots"</string> + <string name="save_error" msgid="8631128801982095782">"Failed to save document"</string> + <string name="create_error" msgid="3092144450044861994">"Failed to create folder"</string> + <string name="query_error" msgid="6625421453613879336">"Can’t load content at the moment"</string> + <string name="root_recent" msgid="1080156975424341623">"Recent"</string> + <string name="root_available_bytes" msgid="8269870862691408864">"<xliff:g id="SIZE">%1$s</xliff:g> free"</string> + <string name="root_type_service" msgid="6521366147466512289">"Storage services"</string> + <string name="root_type_shortcut" msgid="6059343175525442279">"Shortcuts"</string> + <string name="root_type_device" msgid="1713604128005476585">"Devices"</string> + <string name="root_type_apps" msgid="8646073235029886342">"More apps"</string> + <string name="empty" msgid="5300254272613103004">"No items"</string> + <string name="no_results" msgid="2371026325236359209">"No matches in %1$s"</string> + <string name="toast_no_application" msgid="7555319548595113121">"Can’t open file"</string> + <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Cannot open files in archives"</string> + <string name="toast_failed_delete" msgid="3453846588205817591">"Unable to delete some documents"</string> + <string name="share_via" msgid="8725082736005677161">"Share via"</string> + <string name="copy_notification_title" msgid="52256435625098456">"Copying files"</string> + <string name="compress_notification_title" msgid="6830195148113751021">"Compressing files"</string> + <string name="extract_notification_title" msgid="5067393961754430469">"Extracting files"</string> + <string name="move_notification_title" msgid="3173424987049347605">"Moving files"</string> + <string name="delete_notification_title" msgid="2512757431856830792">"Deleting files"</string> + <string name="copy_remaining" msgid="5390517377265177727">"<xliff:g id="DURATION">%s</xliff:g> left"</string> + <plurals name="copy_begin" formatted="false" msgid="151184708996738192"> + <item quantity="other">Copying <xliff:g id="COUNT_1">%1$d</xliff:g> items.</item> + <item quantity="one">Copying <xliff:g id="COUNT_0">%1$d</xliff:g> item.</item> + </plurals> + <plurals name="compress_begin" formatted="false" msgid="3534158317098678895"> + <item quantity="other">Compressing <xliff:g id="COUNT_1">%1$d</xliff:g> files.</item> + <item quantity="one">Compressing <xliff:g id="COUNT_0">%1$d</xliff:g> file.</item> + </plurals> + <plurals name="extract_begin" formatted="false" msgid="1006380679562903749"> + <item quantity="other">Extracting <xliff:g id="COUNT_1">%1$d</xliff:g> files.</item> + <item quantity="one">Extracting <xliff:g id="COUNT_0">%1$d</xliff:g> file.</item> + </plurals> + <plurals name="move_begin" formatted="false" msgid="1464229874265756956"> + <item quantity="other">Moving <xliff:g id="COUNT_1">%1$d</xliff:g> items.</item> + <item quantity="one">Moving <xliff:g id="COUNT_0">%1$d</xliff:g> item.</item> + </plurals> + <plurals name="deleting" formatted="false" msgid="1729138001178158901"> + <item quantity="other">Deleting <xliff:g id="COUNT_1">%1$d</xliff:g> items.</item> + <item quantity="one">Deleting <xliff:g id="COUNT_0">%1$d</xliff:g> item.</item> + </plurals> + <string name="undo" msgid="2902438994196400565">"Undo"</string> + <string name="copy_preparing" msgid="5326063807006898223">"Preparing for copy…"</string> + <string name="compress_preparing" msgid="6650018601382062672">"Preparing for compress…"</string> + <string name="extract_preparing" msgid="58266275455027829">"Preparing for extract…"</string> + <string name="move_preparing" msgid="8742573245485449429">"Preparing for move…"</string> + <string name="delete_preparing" msgid="6513863752916028147">"Preparing for delete…"</string> + <string name="delete_progress" msgid="2627631054702306423">"<xliff:g id="COUNT_0">%1$d</xliff:g> / <xliff:g id="TOTALCOUNT">%2$d</xliff:g>"</string> + <plurals name="copy_error_notification_title" formatted="false" msgid="3188432450429390963"> + <item quantity="other">Couldn’t copy <xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one">Couldn’t copy <xliff:g id="COUNT_0">%1$d</xliff:g> item</item> + </plurals> + <plurals name="compress_error_notification_title" formatted="false" msgid="3043630066678213644"> + <item quantity="other">Couldn’t compress <xliff:g id="COUNT_1">%1$d</xliff:g> files</item> + <item quantity="one">Couldn’t compress <xliff:g id="COUNT_0">%1$d</xliff:g> file</item> + </plurals> + <plurals name="move_error_notification_title" formatted="false" msgid="2185736082411854754"> + <item quantity="other">Couldn’t move <xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one">Couldn’t move <xliff:g id="COUNT_0">%1$d</xliff:g> item</item> + </plurals> + <plurals name="delete_error_notification_title" formatted="false" msgid="7568122018481625267"> + <item quantity="other">Couldn’t delete <xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one">Couldn’t delete <xliff:g id="COUNT_0">%1$d</xliff:g> item</item> + </plurals> + <string name="notification_touch_for_details" msgid="2385563502445129570">"Tap to view details"</string> + <string name="close" msgid="905969391788869975">"Close"</string> + <plurals name="copy_failure_alert_content" formatted="false" msgid="5570549471912990536"> + <item quantity="other">These files weren’t copied: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t copied: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="compress_failure_alert_content" formatted="false" msgid="5760632881868842400"> + <item quantity="other">These files weren’t compressed: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t compressed: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="extract_failure_alert_content" formatted="false" msgid="7572748127571720803"> + <item quantity="other">These files weren’t extracted: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t extracted: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="move_failure_alert_content" formatted="false" msgid="2747390342670799196"> + <item quantity="other">These files weren’t moved: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t moved: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="delete_failure_alert_content" formatted="false" msgid="6122372614839711711"> + <item quantity="other">These files weren’t deleted: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file wasn’t deleted: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="copy_converted_warning_content" formatted="false" msgid="7433742181712126588"> + <item quantity="other">These files were converted to another format: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">This file was converted to another format: <xliff:g id="LIST_0">%1$s</xliff:g></item> + </plurals> + <plurals name="clipboard_files_clipped" formatted="false" msgid="4847061634862926902"> + <item quantity="other">Copied <xliff:g id="COUNT_1">%1$d</xliff:g> items to clipboard.</item> + <item quantity="one">Copied <xliff:g id="COUNT_0">%1$d</xliff:g> item to clipboard.</item> + </plurals> + <string name="file_operation_rejected" msgid="4301554203329008794">"File operation is not supported."</string> + <string name="file_operation_error" msgid="2234357335716533795">"File operation failed."</string> + <string name="rename_error" msgid="6700093173508118635">"Failed to rename document"</string> + <string name="menu_eject_root" msgid="9215040039374893613">"Eject"</string> + <string name="notification_copy_files_converted_title" msgid="6916768494891833365">"Some files were converted"</string> + <string name="open_external_dialog_request" msgid="8173558471322861268">"Grant <xliff:g id="APPNAME"><b>^1</b></xliff:g> access to <xliff:g id="DIRECTORY"><i>^2</i></xliff:g> directory on <xliff:g id="STORAGE"><i>^3</i></xliff:g>?"</string> + <string name="open_external_dialog_request_primary_volume" msgid="2240992164087948176">"Grant <xliff:g id="APPNAME"><b>^1</b></xliff:g> access to <xliff:g id="DIRECTORY"><i>^2</i></xliff:g> directory?"</string> + <string name="open_external_dialog_root_request" msgid="6776729293982633">"Grant <xliff:g id="APPNAME"><b>^1</b></xliff:g> access to your data, including photos and videos, on <xliff:g id="STORAGE"><i>^2</i></xliff:g>?"</string> + <string name="never_ask_again" msgid="525908236522201138">"Don\'t ask again"</string> + <string name="allow" msgid="1275746941353040309">"Allow"</string> + <string name="deny" msgid="5127201668078153379">"Deny"</string> + <plurals name="elements_selected" formatted="false" msgid="4448165978637163692"> + <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> selected</item> + <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> selected</item> + </plurals> + <plurals name="elements_dragged" formatted="false" msgid="5932571296037626279"> + <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> item</item> + </plurals> + <string name="delete_filename_confirmation_message" msgid="8338069763240613258">"Delete \"<xliff:g id="NAME">%1$s</xliff:g>\"?"</string> + <string name="delete_foldername_confirmation_message" msgid="9084085260877704140">"Delete folder \"<xliff:g id="NAME">%1$s</xliff:g>\" and its contents?"</string> + <plurals name="delete_files_confirmation_message" formatted="false" msgid="4866664063250034142"> + <item quantity="other">Delete <xliff:g id="COUNT_1">%1$d</xliff:g> files?</item> + <item quantity="one">Delete <xliff:g id="COUNT_0">%1$d</xliff:g> file?</item> + </plurals> + <plurals name="delete_folders_confirmation_message" formatted="false" msgid="1028946402799686388"> + <item quantity="other">Delete <xliff:g id="COUNT_1">%1$d</xliff:g> folders and their contents?</item> + <item quantity="one">Delete <xliff:g id="COUNT_0">%1$d</xliff:g> folder and its contents?</item> + </plurals> + <plurals name="delete_items_confirmation_message" formatted="false" msgid="7285090426511028179"> + <item quantity="other">Delete <xliff:g id="COUNT_1">%1$d</xliff:g> items?</item> + <item quantity="one">Delete <xliff:g id="COUNT_0">%1$d</xliff:g> item?</item> + </plurals> + <string name="images_shortcut_label" msgid="2545168016070493574">"Images"</string> + <string name="archive_loading_failed" msgid="7243436722828766996">"Unable to open archive for browsing. File is either corrupt, or an unsupported format."</string> + <string name="name_conflict" msgid="28407269328862986">"A file with this name already exists."</string> + <string name="authentication_required" msgid="8030880723643436099">"To view this directory, sign in to <xliff:g id="NAME">%1$s</xliff:g>"</string> + <string name="cant_display_content" msgid="8633226333229417237">"Can’t display contents"</string> + <string name="sign_in" msgid="6253762676723505592">"Sign in"</string> + <string name="new_archive_file_name" msgid="1604650338077249838">"archive<xliff:g id="EXTENSION">%s</xliff:g>"</string> + <string name="overwrite_file_confirmation_message" msgid="2496109652768222716">"Overwrite <xliff:g id="NAME">%1$s</xliff:g>?"</string> + <string name="continue_in_background" msgid="1974214559047793331">"Continue in background"</string> +</resources> diff --git a/res/values-es-rUS/inspector_strings.xml b/res/values-es-rUS/inspector_strings.xml new file mode 100644 index 000000000..96a89d205 --- /dev/null +++ b/res/values-es-rUS/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Información"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"No se pudo cargar la información del archivo"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Información de depuración (solo programadores)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadatos RAW: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detalles del contenido multimedia"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Este tipo de archivo se abre con"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Proveedor del archivo:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Sin seleccionar"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Desconocido"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensiones"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> (<xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP)"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordenadas"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitud"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Cámara"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Apertura"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Velocidad del obturador"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Duración"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Fecha de la foto"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Longitud focal"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Equivalente ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Tipos de flujo"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Tamaño del archivo RAW (bytes)"</string> +</resources> diff --git a/res/values-es-rUS/mimes.xml b/res/values-es-rUS/mimes.xml new file mode 100644 index 000000000..6cb9827be --- /dev/null +++ b/res/values-es-rUS/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Archivo <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Archivo"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imagen"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imagen <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Archivo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplicación de Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Texto sin formato"</string> + <string name="html_file_type" msgid="2034229603117527970">"Documento HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Documento PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Documento de Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Presentación PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Hoja de cálculo de Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Documento de Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Hoja de cálculo Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Presentación de Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Dibujo de Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabla de Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulario de Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa de Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Sitio de Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Carpeta"</string> +</resources> diff --git a/res/values-es-rUS/strings.xml b/res/values-es-rUS/strings.xml index 27e249afc..bf592cbfc 100644 --- a/res/values-es-rUS/strings.xml +++ b/res/values-es-rUS/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Comprimir"</string> <string name="menu_extract" msgid="8171946945982532262">"Extraer en…"</string> <string name="menu_rename" msgid="1883113442688817554">"Cambiar nombre"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propiedades"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Obtener información"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Ver en <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Ventana nueva"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cortar"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Mover"</string> <string name="button_dismiss" msgid="7235249361023803349">"Descartar"</string> <string name="button_retry" msgid="4011461781916631389">"Volver a intentar"</string> + <string name="button_clear" msgid="5412304437764369441">"Borrar"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Mostrar en el proveedor"</string> <string name="not_sorted" msgid="7813496644889115530">"Sin ordernar"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nombre"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Resumen"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipo"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Tamaño"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modificación"</string> - <string name="directory_children" msgid="8115290268549503262">"Cantidad de hijos"</string> + <string name="directory_items" msgid="6645621978998614003">"Cantidad de elementos"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascendente"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Descendente"</string> <string name="drawer_open" msgid="8071673398187261741">"Mostrar raíces"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"No se puede abrir el archivo"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"No se pueden abrir los documentos en Archivos"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"No es posible borrar algunos documentos"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"No se pudieron cargar las propiedades"</string> <string name="share_via" msgid="8725082736005677161">"Compartir con"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copiando archivos"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Comprimiendo archivos"</string> diff --git a/res/values-es/inspector_strings.xml b/res/values-es/inspector_strings.xml new file mode 100644 index 000000000..704e08de3 --- /dev/null +++ b/res/values-es/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Información"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"No se ha podido cargar la información del archivo"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Información de depuración (solo desarrolladores)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadatos sin procesar: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detalles de contenido multimedia"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Este tipo de archivo se abre con"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Proveedor del archivo:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"No se ha seleccionado"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Desconocida"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensiones"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g>x<xliff:g id="HEIGHT">%2$d</xliff:g> (<xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP)"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordenadas"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitud"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Cámara"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Apertura"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Velocidad del obturador"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Duración"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Fecha de la foto"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Longitud focal"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Equivalente ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Stream types"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Tamaño del archivo RAW (bytes)"</string> +</resources> diff --git a/res/values-es/mimes.xml b/res/values-es/mimes.xml new file mode 100644 index 000000000..eb2e016da --- /dev/null +++ b/res/values-es/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Archivo <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Archivo"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imagen"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imagen <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Vídeo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Vídeo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Archivo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplicación de Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Texto sin formato"</string> + <string name="html_file_type" msgid="2034229603117527970">"Documento HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Documento PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Documento de Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Presentación PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Hoja de cálculo Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Documento de Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Hoja de cálculo Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Presentación de Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Dibujo de Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabla de Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulario de Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa de Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Sitio de Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Carpeta"</string> +</resources> diff --git a/res/values-es/strings.xml b/res/values-es/strings.xml index 685882252..0eb7bd7bb 100644 --- a/res/values-es/strings.xml +++ b/res/values-es/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Comprimir"</string> <string name="menu_extract" msgid="8171946945982532262">"Extraer a…"</string> <string name="menu_rename" msgid="1883113442688817554">"Cambiar nombre"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propiedades"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Obtener información"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Ver en <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nueva ventana"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cortar"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Mover"</string> <string name="button_dismiss" msgid="7235249361023803349">"Descartar"</string> <string name="button_retry" msgid="4011461781916631389">"Volver a intentarlo"</string> + <string name="button_clear" msgid="5412304437764369441">"Borrar"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Mostrar en el proveedor"</string> <string name="not_sorted" msgid="7813496644889115530">"Sin ordenar"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nombre"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Resumen"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipo"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Tamaño"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modificado"</string> - <string name="directory_children" msgid="8115290268549503262">"Número de hijos"</string> + <string name="directory_items" msgid="6645621978998614003">"Número de elementos"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascendente"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Descendente"</string> <string name="drawer_open" msgid="8071673398187261741">"Mostrar raíces"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"No se puede abrir el archivo"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"No se pueden abrir los elementos archivados"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Error al eliminar algunos documentos"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"No se han podido cargar las propiedades"</string> <string name="share_via" msgid="8725082736005677161">"Compartir a través de"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copiando archivos"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Comprimiendo archivos"</string> diff --git a/res/values-et/inspector_strings.xml b/res/values-et/inspector_strings.xml new file mode 100644 index 000000000..dde2ef916 --- /dev/null +++ b/res/values-et/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Teave"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Faili teavet ei saanud laadida"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Silumisteave (ainult arendajatele)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Toormetaandmed: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Meedia üksikasjad"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Seda tüüpi faile saab avada rakendusega"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Selle faili allikas on"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Pole valitud"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Teadmata"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Mõõtmed"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinaadid"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Kõrgus"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kaamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Ava"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Säriaeg"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Kestus"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Jäädvustatud"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Fookuskaugus"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ekvivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Voo tüübid"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Toorandmete maht (baitides)"</string> +</resources> diff --git a/res/values-et/mimes.xml b/res/values-et/mimes.xml new file mode 100644 index 000000000..ab84b1802 --- /dev/null +++ b/res/values-et/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g>-fail"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fail"</string> + <string name="image_file_type" msgid="3011633523704887793">"Kujutis"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g>-kujutis"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Heli"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g>-helifail"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g>-videofail"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g>-arhiiv"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Androidi rakendus"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Lihttekst"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-dokument"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF-dokument"</string> + <string name="word_file_type" msgid="2366349268129894972">"Wordi dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPointi esitlus"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Exceli arvutustabel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google\'i dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google\'i arvutustabel"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google\'i esitlus"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google\'i joonis"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google\'i tabel"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google\'i vorm"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google\'i kaart"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google\'i sait"</string> + <string name="directory_type" msgid="2702987727566226354">"Kaust"</string> +</resources> diff --git a/res/values-et/strings.xml b/res/values-et/strings.xml index 253220a12..253ab11df 100644 --- a/res/values-et/strings.xml +++ b/res/values-et/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Tihenda"</string> <string name="menu_extract" msgid="8171946945982532262">"Ekstrakti …"</string> <string name="menu_rename" msgid="1883113442688817554">"Nimeta ümber"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Atribuudid"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Teabe hankimine"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Kuva allikas <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Uus aken"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Lõika"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Teisalda"</string> <string name="button_dismiss" msgid="7235249361023803349">"Loobu"</string> <string name="button_retry" msgid="4011461781916631389">"Proovi uuesti"</string> + <string name="button_clear" msgid="5412304437764369441">"Kustuta"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Kuva teenuses"</string> <string name="not_sorted" msgid="7813496644889115530">"Sortimata"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nimi"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Kokkuvõte"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tüüp"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Suurus"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Muudetud"</string> - <string name="directory_children" msgid="8115290268549503262">"Laste arv"</string> + <string name="directory_items" msgid="6645621978998614003">"Üksuste arv"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Kasvav"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Kahanev"</string> <string name="drawer_open" msgid="8071673398187261741">"Kuva juured"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Faili ei saa avada"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Arhiivides olevaid faile ei saa avada"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Mõnda dokumenti ei saa kustutada"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Atribuute ei saanud laadida"</string> <string name="share_via" msgid="8725082736005677161">"Jaga rakendusega"</string> <string name="copy_notification_title" msgid="52256435625098456">"Failide kopeerimine"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Failide tihendamine"</string> diff --git a/res/values-eu/inspector_strings.xml b/res/values-eu/inspector_strings.xml new file mode 100644 index 000000000..a0fd94825 --- /dev/null +++ b/res/values-eu/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informazioa"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Ezin izan da kargatu fitxategiaren informazioa"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Arazte-informazioa (garatzaileentzat soilik)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Prozesatu gabeko metadatuak: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Multimedia-elementuaren xehetasunak"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Mota honetako fitxategiak aplikazio honekin ireki daitezke:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Fitxategiaren hornitzailea:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Hautatu gabe"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Ezezaguna"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimentsioak"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordenatuak"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitudea"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Irekidura"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Kliskagailuaren abiadura"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Iraupena"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Data"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Foku-distantzia"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO baliokidea"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Jario motak"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Prozesatu gabeko tamaina (byte-tan)"</string> +</resources> diff --git a/res/values-eu/mimes.xml b/res/values-eu/mimes.xml new file mode 100644 index 000000000..470c6cc6b --- /dev/null +++ b/res/values-eu/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> fitxategia"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fitxategia"</string> + <string name="image_file_type" msgid="3011633523704887793">"Irudia"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> irudia"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audioa"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audioa"</string> + <string name="video_file_type" msgid="7290473366042482095">"Bideoa"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> bideoa"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> artxiboa"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android aplikazioa"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Testu arrunta"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML dokumentua"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF dokumentua"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word dokumentua"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint aurkezpena"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel kalkulu-orria"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google dokumentua"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google kalkulu-orria"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google aurkezpena"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google marrazkia"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google taula"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google inprimakia"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google mapa"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google gunea"</string> + <string name="directory_type" msgid="2702987727566226354">"Karpeta"</string> +</resources> diff --git a/res/values-eu/strings.xml b/res/values-eu/strings.xml index 0196379ad..6e65806a6 100644 --- a/res/values-eu/strings.xml +++ b/res/values-eu/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Konprimatu"</string> <string name="menu_extract" msgid="8171946945982532262">"Atera hona…"</string> <string name="menu_rename" msgid="1883113442688817554">"Aldatu izena"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propietateak"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Lortu informazioa"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Ikusi <xliff:g id="SOURCE">%1$s</xliff:g> zerbitzuan"</string> <string name="menu_new_window" msgid="2947837751796109126">"Leiho berria"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Ebaki"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Mugitu"</string> <string name="button_dismiss" msgid="7235249361023803349">"Baztertu"</string> <string name="button_retry" msgid="4011461781916631389">"Saiatu berriro"</string> + <string name="button_clear" msgid="5412304437764369441">"Garbitu"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Erakutsi hornitzailean"</string> <string name="not_sorted" msgid="7813496644889115530">"Ordenatu gabe"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Izena"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Laburpena"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Mota"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Tamaina"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Aldatze-ordua"</string> - <string name="directory_children" msgid="8115290268549503262">"Haur kopurua"</string> + <string name="directory_items" msgid="6645621978998614003">"Elementu kopurua"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Gorantz"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Beherantz"</string> <string name="drawer_open" msgid="8071673398187261741">"Erakutsi erroko karpetak"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Ezin da ireki fitxategia"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Ezin dira ireki artxiboetako fitxategiak"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Ezin izan dira ezabatu dokumentu batzuk"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Ezin izan dira kargatu propietateak"</string> <string name="share_via" msgid="8725082736005677161">"Partekatu honekin:"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopiatu fitxategiak"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Fitxategiak konprimatzen"</string> diff --git a/res/values-fa/inspector_strings.xml b/res/values-fa/inspector_strings.xml new file mode 100644 index 000000000..feadbe83b --- /dev/null +++ b/res/values-fa/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"اطلاعات"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"اطلاعات فایل بارگیری نشد"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"اطلاعات اشکالزدایی (فقط برنامهنویس)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"فراداده فایل Raw: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"جزئیات رسانه"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"این نوع فایل با این برنامه باز میشود"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ارائهدهنده این فایل"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"انتخاب نشده است"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"نامشخص"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"ابعاد"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>مگاپیکسل"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"مختصات"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>، <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ارتفاع"</string> + <string name="metadata_camera" msgid="2363009732801281319">"دوربین"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"دیافراگم"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"سرعت شاتر"</string> + <string name="metadata_duration" msgid="3115494422055472715">"مدتزمان"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"گرفتهشده در"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"فیلم کامل"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>میلیمتر"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"معادل ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"<xliff:g id="ISO_SPEED">%1$d</xliff:g> ISO"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"انواع پخش جریانی"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"حجم فایل RAW (بایت)"</string> +</resources> diff --git a/res/values-fa/mimes.xml b/res/values-fa/mimes.xml new file mode 100644 index 000000000..1fc105ea0 --- /dev/null +++ b/res/values-fa/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"فایل <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"فایل"</string> + <string name="image_file_type" msgid="3011633523704887793">"تصویر"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"تصویر <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"فایل صوتی"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"فایل صوتی <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"ویدئو"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"ویدئوی <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"بایگانی <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"برنامه Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"متن ساده"</string> + <string name="html_file_type" msgid="2034229603117527970">"سند HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"سند PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"سند Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"ارائه PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"صفحهگسترده Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"سند Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"صفحهگسترده Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"ارائه Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"طرحنگار Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"جدول Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"فرمنگار Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google Map"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google site"</string> + <string name="directory_type" msgid="2702987727566226354">"پوشه"</string> +</resources> diff --git a/res/values-fa/strings.xml b/res/values-fa/strings.xml index 818560498..5357c7ade 100644 --- a/res/values-fa/strings.xml +++ b/res/values-fa/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"فشرده کردن"</string> <string name="menu_extract" msgid="8171946945982532262">"استخراج در…"</string> <string name="menu_rename" msgid="1883113442688817554">"تغییر نام"</string> - <string name="menu_inspector" msgid="8633147986551632467">"مشخصات"</string> + <string name="menu_inspector" msgid="8217713416277319588">"دریافت اطلاعات"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"مشاهده در <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"پنجره جدید"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"برش"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"انتقال"</string> <string name="button_dismiss" msgid="7235249361023803349">"رد کردن"</string> <string name="button_retry" msgid="4011461781916631389">"دوباره امتحان کنید"</string> + <string name="button_clear" msgid="5412304437764369441">"پاک کردن"</string> + <string name="button_show_provider" msgid="6905880493806292753">"نمایش در برنامه ارائهدهنده"</string> <string name="not_sorted" msgid="7813496644889115530">"مرتبسازی نشده است"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"نام"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"خلاصه"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"نوع"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"اندازه"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"آخرین تغییر"</string> - <string name="directory_children" msgid="8115290268549503262">"تعداد کودکان"</string> + <string name="directory_items" msgid="6645621978998614003">"تعداد موارد"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"صعودی"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"نزولی"</string> <string name="drawer_open" msgid="8071673398187261741">"نمایش ریشهها"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"فایل باز نمیشود"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"فایلهای موجود در بایگانیها باز نمیشوند"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"برخی از اسناد حذف نمیشوند"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"مشخصات بار نشدند"</string> <string name="share_via" msgid="8725082736005677161">"اشتراکگذاری از طریق"</string> <string name="copy_notification_title" msgid="52256435625098456">"در حال کپی کردن فایلها"</string> <string name="compress_notification_title" msgid="6830195148113751021">"درحال فشردهسازی فایلها"</string> diff --git a/res/values-fi/inspector_strings.xml b/res/values-fi/inspector_strings.xml new file mode 100644 index 000000000..c8c6102f8 --- /dev/null +++ b/res/values-fi/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Tietoja"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Tiedoston tietojen lataus epäonnistui."</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Vianetsintätiedot (vain kehittäjät)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raa\'at sisällönkuvaustiedot: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Median tiedot"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Sovellus, jolla tiedostotyyppi avataan"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Tiedoston lähde"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Ei valittu"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Tuntematon"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Mitat"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinaatit"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Korkeus"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Aukko"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Suljinaika"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Kesto"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Kuvaushetki"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Polttoväli"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO-vastine"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Striimaustyypit"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Raaka koko (tavua)"</string> +</resources> diff --git a/res/values-fi/mimes.xml b/res/values-fi/mimes.xml new file mode 100644 index 000000000..64cab9a10 --- /dev/null +++ b/res/values-fi/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g>-tiedosto"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Tiedosto"</string> + <string name="image_file_type" msgid="3011633523704887793">"Kuva"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g>-kuva"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Ääni"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g>-ääni"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g>-video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g>-arkisto"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android-sovellus"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Pelkkä teksti"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-dokumentti"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF-dokumentti"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word-dokumentti"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint-esitys"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-laskentataulukko"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google-dokumentti"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google-laskentataulukko"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google-esitys"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google-piirros"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google-taulukko"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google-lomake"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google-kartta"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google-sivusto"</string> + <string name="directory_type" msgid="2702987727566226354">"Kansio"</string> +</resources> diff --git a/res/values-fi/strings.xml b/res/values-fi/strings.xml index fe0fc2ee5..98ce483cf 100644 --- a/res/values-fi/strings.xml +++ b/res/values-fi/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Pakkaa"</string> <string name="menu_extract" msgid="8171946945982532262">"Pura kohteeseen…"</string> <string name="menu_rename" msgid="1883113442688817554">"Nimeä uudelleen"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Ominaisuudet"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Näytä tiedot"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Avaa sovelluksella <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Uusi ikkuna"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Leikkaa"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Siirrä"</string> <string name="button_dismiss" msgid="7235249361023803349">"Hylkää"</string> <string name="button_retry" msgid="4011461781916631389">"Yritä uudelleen"</string> + <string name="button_clear" msgid="5412304437764369441">"Tyhjennä"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Näytä palveluntarjoajan sovelluksessa"</string> <string name="not_sorted" msgid="7813496644889115530">"Ei lajittelua"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nimi"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Yhteenveto"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tyyppi"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Koko"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Muokattu"</string> - <string name="directory_children" msgid="8115290268549503262">"Lasten määrä"</string> + <string name="directory_items" msgid="6645621978998614003">"Kohteiden määrä"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Nouseva"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Laskeva"</string> <string name="drawer_open" msgid="8071673398187261741">"Näytä juuret"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Tiedoston avaaminen epäonnistui."</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Arkistoissa olevia tiedostoja ei voi avata."</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Joidenkin dokumenttien poistaminen epäonnistui."</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Ominaisuuksien lataaminen epäonnistui."</string> <string name="share_via" msgid="8725082736005677161">"Jaa sovelluksessa"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopioidaan tiedostoja"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Pakataan tiedostoja"</string> diff --git a/res/values-fr-rCA/inspector_strings.xml b/res/values-fr-rCA/inspector_strings.xml new file mode 100644 index 000000000..5a49066a5 --- /dev/null +++ b/res/values-fr-rCA/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Renseignements"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Impossible de charger les renseignements sur le fichier"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Données de débogage (concepteurs uniquement)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Métadonnées brutes : <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Détails des médias"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ce type de fichier s\'ouvre avec"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Ce fichier est fourni par"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Non sélectionné"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Inconnu"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensions"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> Mpx"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordonnées"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitude"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Appareil photo"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MODEL">%2$s</xliff:g> de <xliff:g id="MAKE">%1$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Ouverture"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Vitesse de l\'obturateur"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Durée"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Prise le"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Distance focale"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Équivalent ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Types de flux"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Taille brute (en octets)"</string> +</resources> diff --git a/res/values-fr-rCA/mimes.xml b/res/values-fr-rCA/mimes.xml new file mode 100644 index 000000000..47f07c733 --- /dev/null +++ b/res/values-fr-rCA/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Fichier <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fichier"</string> + <string name="image_file_type" msgid="3011633523704887793">"Image"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Image <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Vidéo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Vidéo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Archive <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Application Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Texte brut"</string> + <string name="html_file_type" msgid="2034229603117527970">"Document HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Document PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Document Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Présentation PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Feuille de calcul Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Document Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Feuille de calcul Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Présentation Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Dessin Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tableau Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulaire Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Carte Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Site Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Dossier"</string> +</resources> diff --git a/res/values-fr-rCA/strings.xml b/res/values-fr-rCA/strings.xml index 1f59cb534..df449d2df 100644 --- a/res/values-fr-rCA/strings.xml +++ b/res/values-fr-rCA/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Compresser"</string> <string name="menu_extract" msgid="8171946945982532262">"Extraire vers…"</string> <string name="menu_rename" msgid="1883113442688817554">"Renommer"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propriétés"</string> + <string name="menu_inspector" msgid="8217713416277319588">"En savoir plus"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Afficher dans <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nouvelle fenêtre"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Couper"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Déplacer"</string> <string name="button_dismiss" msgid="7235249361023803349">"Fermer"</string> <string name="button_retry" msgid="4011461781916631389">"Réessayer"</string> + <string name="button_clear" msgid="5412304437764369441">"Effacer"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Afficher dans l\'application du fournisseur"</string> <string name="not_sorted" msgid="7813496644889115530">"Non trié"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nom"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Résumé"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Taille"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Dernière modification"</string> - <string name="directory_children" msgid="8115290268549503262">"Nombre d\'enfants"</string> + <string name="directory_items" msgid="6645621978998614003">"Nombre d\'éléments"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Par ordre croissant"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Par ordre décroissant"</string> <string name="drawer_open" msgid="8071673398187261741">"Afficher les racines"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Impossible d\'ouvrir le fichier"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Impossible d\'ouvrir des fichiers dans les archives"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Impossible de supprimer certains documents"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Les propriétés n\'ont pas pu être chargées"</string> <string name="share_via" msgid="8725082736005677161">"Partager via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copie de fichiers…"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Compression des fichiers"</string> diff --git a/res/values-fr/inspector_strings.xml b/res/values-fr/inspector_strings.xml new file mode 100644 index 000000000..2a56e4a51 --- /dev/null +++ b/res/values-fr/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informations"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Impossible de charger les informations relatives au fichier"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informations de débogage (développeur seulement)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Métadonnées brutes : <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Informations sur les médias"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ce type de fichier s\'ouvre avec"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Ce fichier est fourni par"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Non sélectionnée"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Inconnue"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensions"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> Mpx"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordonnées"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitude"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Appareil photo"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Ouverture"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Vitesse d\'obturation"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Durée"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Prise le"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Longueur focale"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Équivalent ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Types de flux"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Taille brute (octets)"</string> +</resources> diff --git a/res/values-fr/mimes.xml b/res/values-fr/mimes.xml new file mode 100644 index 000000000..47f07c733 --- /dev/null +++ b/res/values-fr/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Fichier <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fichier"</string> + <string name="image_file_type" msgid="3011633523704887793">"Image"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Image <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Vidéo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Vidéo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Archive <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Application Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Texte brut"</string> + <string name="html_file_type" msgid="2034229603117527970">"Document HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Document PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Document Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Présentation PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Feuille de calcul Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Document Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Feuille de calcul Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Présentation Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Dessin Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tableau Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulaire Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Carte Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Site Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Dossier"</string> +</resources> diff --git a/res/values-fr/strings.xml b/res/values-fr/strings.xml index d0a96eed8..4cd841d57 100644 --- a/res/values-fr/strings.xml +++ b/res/values-fr/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Compresser"</string> <string name="menu_extract" msgid="8171946945982532262">"Extraire sur…"</string> <string name="menu_rename" msgid="1883113442688817554">"Renommer"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propriétés"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Obtenir les informations"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Afficher dans <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nouvelle fenêtre"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Couper"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Déplacer"</string> <string name="button_dismiss" msgid="7235249361023803349">"Ignorer"</string> <string name="button_retry" msgid="4011461781916631389">"Réessayer"</string> + <string name="button_clear" msgid="5412304437764369441">"Effacer"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Afficher dans le fournisseur"</string> <string name="not_sorted" msgid="7813496644889115530">"Non triés"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nom"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Résumé"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Taille"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Dernière modif."</string> - <string name="directory_children" msgid="8115290268549503262">"Nombre d\'enfants"</string> + <string name="directory_items" msgid="6645621978998614003">"Nombre d\'éléments"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Croissant"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Décroissant"</string> <string name="drawer_open" msgid="8071673398187261741">"Afficher les répertoires racines"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Impossible d\'ouvrir le fichier"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Impossible d\'ouvrir un fichier dans une archive"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Impossible de supprimer certains documents"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Impossible de charger les propriétés"</string> <string name="share_via" msgid="8725082736005677161">"Partager via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copie de fichiers…"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Compression de fichiers"</string> diff --git a/res/values-gl/inspector_strings.xml b/res/values-gl/inspector_strings.xml new file mode 100644 index 000000000..b9688435b --- /dev/null +++ b/res/values-gl/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Información"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Non se puido cargar a información do ficheiro"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Datos de depuración (só para programadores)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadatos sen procesar: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Datos multimedia"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Este tipo de ficheiro ábrese con"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Provedor do ficheiro"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Non seleccionada"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Descoñecida"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensións"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> (<xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> Mpx)"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordenadas"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitude"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Cámara"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MODEL">%2$s</xliff:g> de <xliff:g id="MAKE">%1$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Abertura"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Velocidade do obturador"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Duración"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Data da foto"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Distancia focal"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Equivalente ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Tipos de emisión"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Tamaño sen procesar (bytes)"</string> +</resources> diff --git a/res/values-gl/mimes.xml b/res/values-gl/mimes.xml new file mode 100644 index 000000000..05b48c4e1 --- /dev/null +++ b/res/values-gl/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Ficheiro <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Ficheiro"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imaxe"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imaxe <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Vídeo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Vídeo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arquivo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplicación Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Texto sen formato"</string> + <string name="html_file_type" msgid="2034229603117527970">"Documento HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Documento PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Documento de Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Presentación PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Folla de cálculo Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Documento de Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Folla de cálculo Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Presentación de Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Debuxo de Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Táboa de Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulario de Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa de Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Sitio de Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Cartafol"</string> +</resources> diff --git a/res/values-gl/strings.xml b/res/values-gl/strings.xml index 2f2d5e1db..b1e38a3b8 100644 --- a/res/values-gl/strings.xml +++ b/res/values-gl/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Comprimir"</string> <string name="menu_extract" msgid="8171946945982532262">"Extraer en..."</string> <string name="menu_rename" msgid="1883113442688817554">"Cambiar nome"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propiedades"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Obter información"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Ver en <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nova ventá"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cortar"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Mover"</string> <string name="button_dismiss" msgid="7235249361023803349">"Ignorar"</string> <string name="button_retry" msgid="4011461781916631389">"Tentar de novo"</string> + <string name="button_clear" msgid="5412304437764369441">"Borrar"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Mostrar no provedor"</string> <string name="not_sorted" msgid="7813496644889115530">"Sen ordenar"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nome"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Resumo"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipo"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Tamaño"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modificado"</string> - <string name="directory_children" msgid="8115290268549503262">"Número de nenos"</string> + <string name="directory_items" msgid="6645621978998614003">"Número de elementos"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascendente"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Descendente"</string> <string name="drawer_open" msgid="8071673398187261741">"Mostrar raíces"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Non se pode abrir o ficheiro"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Non se poden abrir ficheiros dentro de arquivos"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Non se poden eliminar algúns documentos"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Non se puideron cargar as propiedades"</string> <string name="share_via" msgid="8725082736005677161">"Compartir a través de"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copiando ficheiros"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Comprimindo ficheiros"</string> diff --git a/res/values-gu/inspector_strings.xml b/res/values-gu/inspector_strings.xml new file mode 100644 index 000000000..0cf703ce5 --- /dev/null +++ b/res/values-gu/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"માહિતી"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ફાઇલની માહિતી લોડ કરી શકાતી નથી"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"ડિબગ માહિતી (માત્ર વિકાસકર્તા)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw મેટાડેટા: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"મીડિયા વિગતો"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"આની સાથે આ પ્રકારની ફાઇલ ખૂલે છે"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"આ ફાઇલ આમના દ્વારા પૂરી પાડવામાં આવી"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"પસંદ કર્યું નથી"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"અજાણ"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"પરિમાણો"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"કોઓર્ડિનેટ્સ"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ઊંચાઈ"</string> + <string name="metadata_camera" msgid="2363009732801281319">"કૅમેરા"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"ઍપર્ચર"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"શટરની સ્પીડ"</string> + <string name="metadata_duration" msgid="3115494422055472715">"અવધિ"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"ના રોજ લીધેલો"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ફોકલ લંબાઈ"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>મિમી"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO સમકક્ષ"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"સ્ટ્રીમના પ્રકારો"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Rawનું કદ (બાઇટ)"</string> +</resources> diff --git a/res/values-gu/mimes.xml b/res/values-gu/mimes.xml new file mode 100644 index 000000000..97e922464 --- /dev/null +++ b/res/values-gu/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ફાઇલ"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ફાઇલ"</string> + <string name="image_file_type" msgid="3011633523704887793">"છબી"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> છબી"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ઑડિઓ"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ઑડિઓ"</string> + <string name="video_file_type" msgid="7290473366042482095">"વીડિઓ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> વીડિઓ"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> આર્કાઇવ"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android ઍપ્લિકેશન"</string> + <string name="txt_file_type" msgid="4677767777860724696">"સાદી ટેક્સ્ટ"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML દસ્તાવેજ"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF દસ્તાવેજ"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word દસ્તાવેજ"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint પ્રસ્તુતિ"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel સ્પ્રેડશીટ"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google દસ્તાવેજ"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google સ્પ્રેડશીટ"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google પ્રસ્તુતિ"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google ડ્રોઇંગ"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google કોષ્ટક"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ફોર્મ"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google નકશો"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google સાઇટ"</string> + <string name="directory_type" msgid="2702987727566226354">"ફોલ્ડર"</string> +</resources> diff --git a/res/values-gu/strings.xml b/res/values-gu/strings.xml index f61a9c495..f652c362d 100644 --- a/res/values-gu/strings.xml +++ b/res/values-gu/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"સંકુચિત કરો"</string> <string name="menu_extract" msgid="8171946945982532262">"આમાં એક્સટ્રેક્ટ કરો…"</string> <string name="menu_rename" msgid="1883113442688817554">"નામ બદલો"</string> - <string name="menu_inspector" msgid="8633147986551632467">"ગુણધર્મો"</string> + <string name="menu_inspector" msgid="8217713416277319588">"માહિતી મેળવો"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g>માં જુઓ"</string> <string name="menu_new_window" msgid="2947837751796109126">"નવી વિંડો"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"કાપો"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ખસેડો"</string> <string name="button_dismiss" msgid="7235249361023803349">"છોડી દો"</string> <string name="button_retry" msgid="4011461781916631389">"ફરી પ્રયાસ કરો"</string> + <string name="button_clear" msgid="5412304437764369441">"સાફ કરો"</string> + <string name="button_show_provider" msgid="6905880493806292753">"પ્રદાતા સેવામાં બતાવો"</string> <string name="not_sorted" msgid="7813496644889115530">"સૉર્ટ કરેલ નથી"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"નામ"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"સારાંશ"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"પ્રકાર"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"કદ"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"સંશોધિત"</string> - <string name="directory_children" msgid="8115290268549503262">"બાળકોની સંખ્યા"</string> + <string name="directory_items" msgid="6645621978998614003">"આઇટમની સંખ્યા:"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ચઢતાં ક્રમમાં"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"ઉતરતા ક્રમમાં"</string> <string name="drawer_open" msgid="8071673398187261741">"રૂટ્સ બતાવો"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ફાઇલ ખોલી શકતાં નથી"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"આર્કાઇવમાંની ફાઇલો ખોલી શકાતી નથી"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"કેટલાક દસ્તાવેજો કાઢી નાખવામાં અસમર્થ"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"પ્રોપર્ટી લોડ કરી શકાઈ નથી"</string> <string name="share_via" msgid="8725082736005677161">"આના દ્વારા શેર કરો"</string> <string name="copy_notification_title" msgid="52256435625098456">"ફાઇલો કૉપિ કરી રહ્યાં છે"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ફાઇલોને સંકુચિત કરવી"</string> diff --git a/res/values-hi/inspector_strings.xml b/res/values-hi/inspector_strings.xml new file mode 100644 index 000000000..6e03a1710 --- /dev/null +++ b/res/values-hi/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"जानकारी"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"फ़ाइल की जानकारी लोड नहीं हो सकी"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"डीबग जानकारी (केवल डेवलपर)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"अपरिष्कृत मेटाडेटा: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"मीडिया की जानकारी"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"इस तरह की फ़ाइल इसमें खुलती है:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"यह फ़ाइल यहां से उपलब्ध कराई गई है"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"नहीं चुना गया"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"अज्ञात"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"आयाम"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"निर्देशांक"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ऊंचाई"</string> + <string name="metadata_camera" msgid="2363009732801281319">"कैमरा"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"एपर्चर"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"शटर की गति"</string> + <string name="metadata_duration" msgid="3115494422055472715">"अवधि"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"फ़ोटो लिए जाने का समय"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"फ़ोकल लंबाई"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> मिमी"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO के बराबर"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"स्ट्रीम के प्रकार"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"अपरिष्कृत आकार (बाइट)"</string> +</resources> diff --git a/res/values-hi/mimes.xml b/res/values-hi/mimes.xml new file mode 100644 index 000000000..47215f8a2 --- /dev/null +++ b/res/values-hi/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> फ़ाइल"</string> + <string name="generic_file_type" msgid="1415477154743494280">"फ़ाइल"</string> + <string name="image_file_type" msgid="3011633523704887793">"चित्र"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> चित्र"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ऑडियो"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ऑडियो"</string> + <string name="video_file_type" msgid="7290473366042482095">"वीडियो"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> वीडियो"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> संग्रह"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android ऐप्लिकेशन"</string> + <string name="txt_file_type" msgid="4677767777860724696">"सादा पाठ"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML दस्तावेज़"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF दस्तावेज़"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word दस्तावेज़"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint प्रस्तुतिकरण"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel स्प्रैडशीट"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google दस्तावेज़"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google स्प्रैडशीट"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google प्रस्तुतिकरण"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google आरेखण"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google तालिका"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google फ़ॉर्म"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google मानचित्र"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google साइट"</string> + <string name="directory_type" msgid="2702987727566226354">"फ़ोल्डर"</string> +</resources> diff --git a/res/values-hi/strings.xml b/res/values-hi/strings.xml index 492496503..701c19d94 100644 --- a/res/values-hi/strings.xml +++ b/res/values-hi/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"कंप्रेस करें"</string> <string name="menu_extract" msgid="8171946945982532262">"यहां निकालें…"</string> <string name="menu_rename" msgid="1883113442688817554">"नाम बदलें"</string> - <string name="menu_inspector" msgid="8633147986551632467">"गुण"</string> + <string name="menu_inspector" msgid="8217713416277319588">"जानकारी पाएं"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> में देखें"</string> <string name="menu_new_window" msgid="2947837751796109126">"नई विंडो"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"काटें"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ले जाएं"</string> <string name="button_dismiss" msgid="7235249361023803349">"खारिज करें"</string> <string name="button_retry" msgid="4011461781916631389">"फिर से कोशिश करें"</string> + <string name="button_clear" msgid="5412304437764369441">"साफ़ करें"</string> + <string name="button_show_provider" msgid="6905880493806292753">"प्रदाता में दिखाएं"</string> <string name="not_sorted" msgid="7813496644889115530">"क्रमबद्ध नहीं हैं"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"नाम"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"सारांश"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"प्रकार"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"आकार"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"बदलनेे का समय"</string> - <string name="directory_children" msgid="8115290268549503262">"बच्चों की संख्या"</string> + <string name="directory_items" msgid="6645621978998614003">"आइटम की संख्या"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"बढ़ते क्रम में"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"घटते क्रम में"</string> <string name="drawer_open" msgid="8071673398187261741">"रूट दिखाएं"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"फ़ाइल नहीं खोली जा सकती"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"संग्रह में मौजूद फ़ाइलें नहीं खोली जा सकतीं"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"कुछ दस्तावेज़ों को हटाने में असमर्थ"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"प्रॉपर्टी लोड नहीं हो सकीं"</string> <string name="share_via" msgid="8725082736005677161">"इसके द्वारा साझा करें"</string> <string name="copy_notification_title" msgid="52256435625098456">"फ़ाइलें कॉपी हो रही हैं"</string> <string name="compress_notification_title" msgid="6830195148113751021">"फ़ाइलें कंप्रेस करना"</string> diff --git a/res/values-hr/inspector_strings.xml b/res/values-hr/inspector_strings.xml new file mode 100644 index 000000000..bb458c28f --- /dev/null +++ b/res/values-hr/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informacije"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Učitavanje informacija o datoteci nije uspjelo"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Podaci o otklanjanju pogrešaka (samo razvoj)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Neobrađeni metapodaci: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Pojedinosti o medijma"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ova se vrsta datoteke otvara aplikacijom"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Datoteku pruža"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nije odabrano"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Nepoznato"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimenzije"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinate"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Nadmorska visina"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Fotoaparat"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Otvor blende"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Brzina zatvarača"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Trajanje"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Snimljeno"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Žarišna duljina"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ekvivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Vrste strujanja"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Neobrađena veličina (u bajtovima)"</string> +</resources> diff --git a/res/values-hr/mimes.xml b/res/values-hr/mimes.xml new file mode 100644 index 000000000..44c9e2839 --- /dev/null +++ b/res/values-hr/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> datoteka"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Datoteka"</string> + <string name="image_file_type" msgid="3011633523704887793">"Slika"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> slika"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audiozapisi"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audiozapis"</string> + <string name="video_file_type" msgid="7290473366042482095">"Videozapisi"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> videozapis"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> arhiva"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android aplikacija"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Obični tekst"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML dokument"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF dokument"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint prezentacija"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel proračun. tablica"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google proračun. tablica"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google prezentacija"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google crtež"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google tablica"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google obrazac"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google karta"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google web-lokacija"</string> + <string name="directory_type" msgid="2702987727566226354">"Mapa"</string> +</resources> diff --git a/res/values-hr/strings.xml b/res/values-hr/strings.xml index 91a705fb6..b51204d75 100644 --- a/res/values-hr/strings.xml +++ b/res/values-hr/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Sažmi"</string> <string name="menu_extract" msgid="8171946945982532262">"Izdvoji u…"</string> <string name="menu_rename" msgid="1883113442688817554">"Promijeni naziv"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Svojstva"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Pogledajte informacije"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Prikaži na usluzi <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Novi prozor"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Izreži"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Premjesti"</string> <string name="button_dismiss" msgid="7235249361023803349">"Odbaci"</string> <string name="button_retry" msgid="4011461781916631389">"Pokušaj ponovo"</string> + <string name="button_clear" msgid="5412304437764369441">"Izbriši"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Prikaži na davatelju usluga"</string> <string name="not_sorted" msgid="7813496644889115530">"Nije poredano"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Naziv"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Sažetak"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Vrsta"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Veličina"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Izmijenjeno"</string> - <string name="directory_children" msgid="8115290268549503262">"Broj djece"</string> + <string name="directory_items" msgid="6645621978998614003">"Broj stavki"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Uzlazno"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Silazno"</string> <string name="drawer_open" msgid="8071673398187261741">"Prikaži korijene"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Datoteka se ne može otvoriti"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Nije moguće otvoriti datoteke u arhivama"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Nije moguće izbrisati neke dokumente"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Učitavanje svojstava nije uspjelo"</string> <string name="share_via" msgid="8725082736005677161">"Dijeli putem"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopiranje datoteka"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Sažimanje datoteka"</string> diff --git a/res/values-hu/inspector_strings.xml b/res/values-hu/inspector_strings.xml new file mode 100644 index 000000000..1dec6c1c5 --- /dev/null +++ b/res/values-hu/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Információ"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Nem sikerült betölteni a fájl információit"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Hibakeresési információ (csak fejlesztőknek)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"RAW-metaadatok: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Médiainformációk"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ezt a fájltípust a következő alkalmazás nyitja meg:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"A fájlt a következő biztosítja:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nincs kiválasztva"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Ismeretlen"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Méretek"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> × <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordináták"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Magasság"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Fényképezőgép"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Rekesz"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Záridő"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Időtartam"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Felvétel ideje:"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Fókusztávolság"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO-egyenérték"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Streamtípusok"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"RAW-méret (bájt)"</string> +</resources> diff --git a/res/values-hu/mimes.xml b/res/values-hu/mimes.xml new file mode 100644 index 000000000..013e5ec1c --- /dev/null +++ b/res/values-hu/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g>-fájl"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fájl"</string> + <string name="image_file_type" msgid="3011633523704887793">"Kép"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g>-kép"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Hang"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g>-hang"</string> + <string name="video_file_type" msgid="7290473366042482095">"Videó"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g>-videó"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g>-archívum"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android-alkalmazás"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Egyszerű szöveg"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-dokumentum"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF-dokumentum"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word-dokumentum"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint-prezentáció"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-táblázat"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google-dokumentum"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google-táblázat"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google-prezentáció"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google-rajz"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google-táblázat"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google-űrlap"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google-térkép"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google-webhely"</string> + <string name="directory_type" msgid="2702987727566226354">"Mappa"</string> +</resources> diff --git a/res/values-hu/strings.xml b/res/values-hu/strings.xml index 2bc2d2498..c82264d4c 100644 --- a/res/values-hu/strings.xml +++ b/res/values-hu/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Tömörítés"</string> <string name="menu_extract" msgid="8171946945982532262">"Kicsomagolás ide…"</string> <string name="menu_rename" msgid="1883113442688817554">"Átnevezés"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Tulajdonságok"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Információ megjelenítése"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Megtekintés a következőben: <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Új ablak"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Kivágás"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Áthelyezés"</string> <string name="button_dismiss" msgid="7235249361023803349">"Elvetés"</string> <string name="button_retry" msgid="4011461781916631389">"Próbálja újra"</string> + <string name="button_clear" msgid="5412304437764369441">"Törlés"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Megjelenítés a szolgáltatónál"</string> <string name="not_sorted" msgid="7813496644889115530">"Nincs rendezve"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Név"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Összefoglalás"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Típus"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Méret"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Módosítva"</string> - <string name="directory_children" msgid="8115290268549503262">"Gyermekek száma"</string> + <string name="directory_items" msgid="6645621978998614003">"Elemek száma"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Növekvő"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Csökkenő"</string> <string name="drawer_open" msgid="8071673398187261741">"Gyökérszint megjelenítése"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"A fájlt nem lehet megnyitni"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Az archívumban nem lehet fájlokat megnyitni"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Néhány dokumentumot nem lehet törölni"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Nem sikerült betölteni a tulajdonságokat"</string> <string name="share_via" msgid="8725082736005677161">"Megosztás itt:"</string> <string name="copy_notification_title" msgid="52256435625098456">"Fájlok másolása"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Fájlok tömörítése"</string> diff --git a/res/values-hy/inspector_strings.xml b/res/values-hy/inspector_strings.xml new file mode 100644 index 000000000..b9d358365 --- /dev/null +++ b/res/values-hy/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Տեղեկություններ"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Չհաջողվեց բեռնել ֆայլի տվյալները"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Վրիպազերծման տեղեկություններ (միայն մշակող)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw մետատվյալներ՝ <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Մեդիա տվյալներ"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Այս տեսակի ֆայլերի բացման հավելվածը"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Այս ֆայլի մատակարարը"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Ընտրված չէ"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Անհայտ է"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Չափեր"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> ՄՊ"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Կոորդինատներ"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Բարձրություն"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Տեսախցիկ"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Բացվածք"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Պահաժամ"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Տևողությունը"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Լուսանկարվել է՝"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Ֆոկուսային հեռավորությունը"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> մմ"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO-ի համարժեք"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Հոսքի տեսակներ"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Raw ֆայլի չափ (բայթ)"</string> +</resources> diff --git a/res/values-hy/mimes.xml b/res/values-hy/mimes.xml new file mode 100644 index 000000000..660d7b3ba --- /dev/null +++ b/res/values-hy/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ֆայլ"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Ֆայլ"</string> + <string name="image_file_type" msgid="3011633523704887793">"Պատկեր"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> պատկեր"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Աուդիո"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> աուդիո"</string> + <string name="video_file_type" msgid="7290473366042482095">"Տեսանյութ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> տեսանյութ"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> արխիվ"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android հավելված"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Հասարակ տեքստ"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML փաստաթուղթ"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF փաստաթուղթ"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word փաստաթուղթ"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint ներկայացում"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel աղյուսակ"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google փաստաթուղթ"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google աղյուսակ"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google ներկայացում"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google գծագիր"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google աղյուսակ"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ձև"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google քարտեզ"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google կայք"</string> + <string name="directory_type" msgid="2702987727566226354">"Պանակ"</string> +</resources> diff --git a/res/values-hy/strings.xml b/res/values-hy/strings.xml index 2156865dd..7ed4abfe5 100644 --- a/res/values-hy/strings.xml +++ b/res/values-hy/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Սեղմել"</string> <string name="menu_extract" msgid="8171946945982532262">"Արտահանել…"</string> <string name="menu_rename" msgid="1883113442688817554">"Վերանվանել"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Հատկություններ"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Ստանալ տեղեկություններ"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Դիտել <xliff:g id="SOURCE">%1$s</xliff:g>-ում"</string> <string name="menu_new_window" msgid="2947837751796109126">"Նոր պատուհան"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Կտրել"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Տեղափոխել"</string> <string name="button_dismiss" msgid="7235249361023803349">"Փակել"</string> <string name="button_retry" msgid="4011461781916631389">"Փորձել նորից"</string> + <string name="button_clear" msgid="5412304437764369441">"Մաքրել"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Ցուցադրել մատակարարում"</string> <string name="not_sorted" msgid="7813496644889115530">"Տեսակավորված չեն"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Անունը"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Ամփոփագիր"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Տեսակը"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Չափը"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Փոփոխվել է"</string> - <string name="directory_children" msgid="8115290268549503262">"Երեխաների թիվը"</string> + <string name="directory_items" msgid="6645621978998614003">"Տարրերի քանակ"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Աճման կարգով"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Նվազման կարգով"</string> <string name="drawer_open" msgid="8071673398187261741">"Ցույց տալ արմատները"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Հնարավոր չէ բացել ֆայլը"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Հնարավոր չէ բացել արխիվացված ֆայլերը"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Հնարավոր չէ ջնջել որոշ փաստաթղթեր"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Հատկությունները հնարավոր չէ բեռնել"</string> <string name="share_via" msgid="8725082736005677161">"Կիսվել"</string> <string name="copy_notification_title" msgid="52256435625098456">"Ֆայլերի պատճենում"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Ֆայլերի սեղմում"</string> diff --git a/res/values-in/inspector_strings.xml b/res/values-in/inspector_strings.xml new file mode 100644 index 000000000..286c8c7f2 --- /dev/null +++ b/res/values-in/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Info"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Info file tidak dapat dimuat"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Info debug (khusus dev)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadata raw: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detail media"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"File jenis ini dibuka dengan"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"File ini diberikan oleh"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Tidak dipilih"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Tidak diketahui"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensi"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinat"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Ketinggian"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Bukaan"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Kecepatan rana"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Durasi"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Diambil pada"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Panjang fokal"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Setara ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Jenis streaming"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Ukuran raw (byte)"</string> +</resources> diff --git a/res/values-in/mimes.xml b/res/values-in/mimes.xml new file mode 100644 index 000000000..a5664d5df --- /dev/null +++ b/res/values-in/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"File <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"File"</string> + <string name="image_file_type" msgid="3011633523704887793">"Gambar"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Gambar <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arsip <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplikasi Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Teks biasa"</string> + <string name="html_file_type" msgid="2034229603117527970">"Dokumen HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Dokumen PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Dokumen Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Presentasi PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Spreadsheet Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Dokumen Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Spreadsheet Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Presentasi Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Gambar Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabel Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulir Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Peta Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Situs Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Folder"</string> +</resources> diff --git a/res/values-in/strings.xml b/res/values-in/strings.xml index 0da925249..0f1419e37 100644 --- a/res/values-in/strings.xml +++ b/res/values-in/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Kompresi"</string> <string name="menu_extract" msgid="8171946945982532262">"Ekstrak ke…"</string> <string name="menu_rename" msgid="1883113442688817554">"Ganti nama"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Properti"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Dapatkan info"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Lihat di <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Jendela baru"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Potong"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Pindahkan"</string> <string name="button_dismiss" msgid="7235249361023803349">"Tutup"</string> <string name="button_retry" msgid="4011461781916631389">"Coba Lagi"</string> + <string name="button_clear" msgid="5412304437764369441">"Hapus"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Tampilkan di provider"</string> <string name="not_sorted" msgid="7813496644889115530">"Tidak diurutkan"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nama"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Ringkasan"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Jenis"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Ukuran"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Diubah"</string> - <string name="directory_children" msgid="8115290268549503262">"Jumlah Anak"</string> + <string name="directory_items" msgid="6645621978998614003">"Jumlah item"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Naik"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Turun"</string> <string name="drawer_open" msgid="8071673398187261741">"Tampilkan root"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Tidak dapat membuka file"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Tidak dapat membuka file dalam arsip"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Tidak dapat menghapus beberapa dokumen"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Properti tidak dapat dimuat"</string> <string name="share_via" msgid="8725082736005677161">"Bagikan melalui"</string> <string name="copy_notification_title" msgid="52256435625098456">"Menyalin file"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Mengompres file"</string> diff --git a/res/values-is/inspector_strings.xml b/res/values-is/inspector_strings.xml new file mode 100644 index 000000000..c00f84383 --- /dev/null +++ b/res/values-is/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Upplýsingar"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Ekki var hægt að hlaða skráarupplýsingar"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Kembiupplýsingar (aðeins þróunaraðilar)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Óunnin lýsigögn: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Efnisupplýsingar"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Þessi tegund af skrá opnast með"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Veita þessarar skráar er:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Ekki valið"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Óþekkt"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Stærð"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Hnit"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Hæð"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Myndavél"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Ljósop"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Lokarahraði"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Tímalengd"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Tekin"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Brennivídd"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO-jafngildi"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Streymisgerðir"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Óunnin stærð (bæti)"</string> +</resources> diff --git a/res/values-is/mimes.xml b/res/values-is/mimes.xml new file mode 100644 index 000000000..b21d293d6 --- /dev/null +++ b/res/values-is/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> skrá"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Skrá"</string> + <string name="image_file_type" msgid="3011633523704887793">"Mynd"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> mynd"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Hljóð"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> hljóð"</string> + <string name="video_file_type" msgid="7290473366042482095">"Myndskeið"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> myndskeið"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> geymsla"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android forrit"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Hreinn texti"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-skjal"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF-skjal"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word-skjal"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint-kynning"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-töflureiknir"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google skjal"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google töflureiknir"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google kynning"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google teikning"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google tafla"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google eyðublað"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google kort"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google vefsvæði"</string> + <string name="directory_type" msgid="2702987727566226354">"Mappa"</string> +</resources> diff --git a/res/values-is/strings.xml b/res/values-is/strings.xml index 1a3cce81c..a9f8c71ac 100644 --- a/res/values-is/strings.xml +++ b/res/values-is/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Þjappa"</string> <string name="menu_extract" msgid="8171946945982532262">"Flytja út í…"</string> <string name="menu_rename" msgid="1883113442688817554">"Endurnefna"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Eiginleikar"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Sækja upplýsingar"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Opna í <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nýr gluggi"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Klippa"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Færa"</string> <string name="button_dismiss" msgid="7235249361023803349">"Hunsa"</string> <string name="button_retry" msgid="4011461781916631389">"Reyna aftur"</string> + <string name="button_clear" msgid="5412304437764369441">"Hreinsa"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Sýna í þjónustu"</string> <string name="not_sorted" msgid="7813496644889115530">"Ekki flokkuð"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Heiti"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Samantekt"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Gerð"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Stærð"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Breytt"</string> - <string name="directory_children" msgid="8115290268549503262">"Fjöldi barna"</string> + <string name="directory_items" msgid="6645621978998614003">"Fjöldi atriða"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Hækkandi"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Lækkandi"</string> <string name="drawer_open" msgid="8071673398187261741">"Sýna rótarsöfn"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Ekki hægt að opna skrá"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Ekki er hægt að opna skrár í geymslu"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Ekki hægt að eyða einhverjum skjölum"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Ekki tókst að sækja eiginleika"</string> <string name="share_via" msgid="8725082736005677161">"Deila í gegnum"</string> <string name="copy_notification_title" msgid="52256435625098456">"Afritar skrár"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Þjappar skrám"</string> diff --git a/res/values-it/inspector_strings.xml b/res/values-it/inspector_strings.xml new file mode 100644 index 000000000..091bd2abc --- /dev/null +++ b/res/values-it/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informazioni"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Impossibile caricare le informazioni del file"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informazioni di debug (solo sviluppatori)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadati non elaborati: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Dettagli contenuti multimediali"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Questo tipo di file viene aperto con"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Questo file è fornito da"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Non selezionata"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Sconosciuto"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensioni"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordinate"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitudine"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Fotocamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Apertura"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Velocità otturatore"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Durata"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Data/ora"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Lunghezza focale"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO equivalenti"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Tipi di stream"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Dimensioni file non elaborato (byte)"</string> +</resources> diff --git a/res/values-it/mimes.xml b/res/values-it/mimes.xml new file mode 100644 index 000000000..cffc59c06 --- /dev/null +++ b/res/values-it/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"File <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"File"</string> + <string name="image_file_type" msgid="3011633523704887793">"Immagine"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Immagine <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Archivio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Applicazione Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Solo testo"</string> + <string name="html_file_type" msgid="2034229603117527970">"Documento HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Documento PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Documento Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Presentazione PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Foglio di calcolo Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Documento Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Foglio di lavoro Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Presentazione Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Disegno Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabella Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Modulo Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mappa Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Sito Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Cartella"</string> +</resources> diff --git a/res/values-it/strings.xml b/res/values-it/strings.xml index 8f6403ed3..76008db11 100644 --- a/res/values-it/strings.xml +++ b/res/values-it/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Comprimi"</string> <string name="menu_extract" msgid="8171946945982532262">"Estrai in…"</string> <string name="menu_rename" msgid="1883113442688817554">"Rinomina"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Proprietà"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Informazioni"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Visualizza in <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nuova finestra"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Taglia"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Sposta"</string> <string name="button_dismiss" msgid="7235249361023803349">"Ignora"</string> <string name="button_retry" msgid="4011461781916631389">"Riprova"</string> + <string name="button_clear" msgid="5412304437764369441">"Cancella"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Mostra in provider"</string> <string name="not_sorted" msgid="7813496644889115530">"Nessun ordine"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nome"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Riepilogo"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipo"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Dimensioni"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Ultima modifica"</string> - <string name="directory_children" msgid="8115290268549503262">"Numero di figli"</string> + <string name="directory_items" msgid="6645621978998614003">"Numero di elementi"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Crescente"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Decrescente"</string> <string name="drawer_open" msgid="8071673398187261741">"Mostra nodi principali"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Impossibile aprire il file."</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Impossibile aprire i file negli archivi"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Impossibile eliminare alcuni documenti."</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Impossibile caricare le proprietà"</string> <string name="share_via" msgid="8725082736005677161">"Condividi tramite"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copia dei file in corso"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Compressione di file"</string> diff --git a/res/values-iw/inspector_strings.xml b/res/values-iw/inspector_strings.xml new file mode 100644 index 000000000..58586c867 --- /dev/null +++ b/res/values-iw/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"מאפיינים"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"לא ניתן היה לטעון את פרטי הקובץ"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"מידע על ניפוי באגים (פיתוח בלבד)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"סוג המטא נתונים של קובץ ה-RAW: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"פרטי הקבצים"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"אפשר לפתוח קבצים מהסוג הזה באמצעות"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"הקובץ סופק על ידי"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"לא נבחרה"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"לא ידועה"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"מידות"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"קואורדינטות"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"גובה"</string> + <string name="metadata_camera" msgid="2363009732801281319">"מצלמה"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"צמצם"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"מהירות תריס"</string> + <string name="metadata_duration" msgid="3115494422055472715">"משך"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"צולם ב-"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"אורך מוקד"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> מ\"מ"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"רגישות לאור (שווה ערך ל-ISO)"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Stream types"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"גודל קובץ RAW (בייט)"</string> +</resources> diff --git a/res/values-iw/mimes.xml b/res/values-iw/mimes.xml new file mode 100644 index 000000000..b871900b8 --- /dev/null +++ b/res/values-iw/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"קובץ <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"קובץ"</string> + <string name="image_file_type" msgid="3011633523704887793">"תמונה"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"תמונה בפורמט <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"אודיו"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"אודיו בפורמט <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"וידאו"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"קובץ וידאו בפורמט <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"קובץ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"אפליקציית Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"טקסט פשוט"</string> + <string name="html_file_type" msgid="2034229603117527970">"מסמך HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"קובץ PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"מסמך Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"מצגת PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"גיליון אלקטרוני ב-Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"מסמך ב-Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"גיליון אלקטרוני ב-Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"מצגת ב-Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"שרטוט ב-Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"טבלה ב-Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"טופס ב-Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"מפה ב-Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"אתר ב-Google Sites"</string> + <string name="directory_type" msgid="2702987727566226354">"תיקיה"</string> +</resources> diff --git a/res/values-iw/strings.xml b/res/values-iw/strings.xml index 0ea688e0c..e3a9bbfbe 100644 --- a/res/values-iw/strings.xml +++ b/res/values-iw/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"דחוס"</string> <string name="menu_extract" msgid="8171946945982532262">"חלץ לתיקייה…"</string> <string name="menu_rename" msgid="1883113442688817554">"שנה שם"</string> - <string name="menu_inspector" msgid="8633147986551632467">"מאפיינים"</string> + <string name="menu_inspector" msgid="8217713416277319588">"מידע על המסמך"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"הצג ב-<xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"חלון חדש"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"גזור"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"העבר"</string> <string name="button_dismiss" msgid="7235249361023803349">"ביטול"</string> <string name="button_retry" msgid="4011461781916631389">"נסה שנית"</string> + <string name="button_clear" msgid="5412304437764369441">"נקה"</string> + <string name="button_show_provider" msgid="6905880493806292753">"הצג באפליקציה של הספק"</string> <string name="not_sorted" msgid="7813496644889115530">"לא ממוין"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"שם"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"סיכום"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"סוג"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"גודל"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"שינוי אחרון"</string> - <string name="directory_children" msgid="8115290268549503262">"מספר הבנים"</string> + <string name="directory_items" msgid="6645621978998614003">"מספר הפריטים"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"סדר עולה"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"סדר יורד"</string> <string name="drawer_open" msgid="8071673398187261741">"הצג שורשים"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"לא ניתן לפתוח את הקובץ"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"לא ניתן לפתוח קבצים בארכיונים"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"לא ניתן למחוק חלק מהמסמכים"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"לא ניתן היה לטעון מאפיינים"</string> <string name="share_via" msgid="8725082736005677161">"שתף באמצעות"</string> <string name="copy_notification_title" msgid="52256435625098456">"מעתיק קבצים"</string> <string name="compress_notification_title" msgid="6830195148113751021">"דוחס קבצים"</string> diff --git a/res/values-ja/inspector_strings.xml b/res/values-ja/inspector_strings.xml new file mode 100644 index 000000000..97eec664a --- /dev/null +++ b/res/values-ja/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"情報"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ファイル情報を読み込めませんでした"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"デバッグ情報(デベロッパーのみ)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"未加工のメタデータ: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"メディアの詳細"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"このファイル形式を開けるアプリ"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"このファイルの提供元"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"未選択"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"不明"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"サイズ"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"座標"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"高度"</string> + <string name="metadata_camera" msgid="2363009732801281319">"カメラ"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"絞り"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"シャッター スピード"</string> + <string name="metadata_duration" msgid="3115494422055472715">"時間"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"撮影"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"レンズ焦点距離"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO 相当"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ストリーム タイプ"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"未加工のサイズ(バイト)"</string> +</resources> diff --git a/res/values-ja/mimes.xml b/res/values-ja/mimes.xml new file mode 100644 index 000000000..ce6238287 --- /dev/null +++ b/res/values-ja/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ファイル"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ファイル"</string> + <string name="image_file_type" msgid="3011633523704887793">"画像"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> 画像"</string> + <string name="audio_file_type" msgid="3790525543519624632">"音声"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> 音声"</string> + <string name="video_file_type" msgid="7290473366042482095">"動画"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> 動画"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> アーカイブ"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android アプリ"</string> + <string name="txt_file_type" msgid="4677767777860724696">"書式なしテキスト"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML ドキュメント"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF ドキュメント"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word ドキュメント"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint プレゼンテーション"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel スプレッドシート"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google ドキュメント"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google スプレッドシート"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google プレゼンテーション"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google 図形描画"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google Table"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google フォーム"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google マップ"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google サイト"</string> + <string name="directory_type" msgid="2702987727566226354">"フォルダ"</string> +</resources> diff --git a/res/values-ja/strings.xml b/res/values-ja/strings.xml index fc101fb1b..71e8bea03 100644 --- a/res/values-ja/strings.xml +++ b/res/values-ja/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"圧縮"</string> <string name="menu_extract" msgid="8171946945982532262">"次の場所に解凍…"</string> <string name="menu_rename" msgid="1883113442688817554">"名前を変更"</string> - <string name="menu_inspector" msgid="8633147986551632467">"プロパティ"</string> + <string name="menu_inspector" msgid="8217713416277319588">"情報を見る"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g>に表示"</string> <string name="menu_new_window" msgid="2947837751796109126">"新しいウィンドウ"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"切り取り"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"移動"</string> <string name="button_dismiss" msgid="7235249361023803349">"非表示"</string> <string name="button_retry" msgid="4011461781916631389">"再試行"</string> + <string name="button_clear" msgid="5412304437764369441">"削除"</string> + <string name="button_show_provider" msgid="6905880493806292753">"プロバイダで表示"</string> <string name="not_sorted" msgid="7813496644889115530">"並べ替えなし"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"名前"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"概要"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"タイプ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"サイズ"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"最終変更"</string> - <string name="directory_children" msgid="8115290268549503262">"子供の数"</string> + <string name="directory_items" msgid="6645621978998614003">"アイテム数"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"昇順"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"降順"</string> <string name="drawer_open" msgid="8071673398187261741">"ルートを表示する"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ファイルを開けません"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"アーカイブ内のファイルを開くことはできません"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"一部のドキュメントを削除できません"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"プロパティを読み込めませんでした"</string> <string name="share_via" msgid="8725082736005677161">"共有ツール"</string> <string name="copy_notification_title" msgid="52256435625098456">"ファイルのコピー中"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ファイルの圧縮中"</string> diff --git a/res/values-ka/inspector_strings.xml b/res/values-ka/inspector_strings.xml new file mode 100644 index 000000000..29053acd6 --- /dev/null +++ b/res/values-ka/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"ინფორმაცია"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ფაილის ინფორმაციის ჩატვირთვა ვერ მოხერხდა"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"შეცდომების გამართვის ინფორმაცია (მხოლოდ დეველ.)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"ნედლი მეტა-მონაცემები: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"მედიის დეტალები"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"ამ ტიპის ფაილი იხსნება"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ფაილის მომწოდებელი:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"არ არის არჩეული"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"უცნობი"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"ზომები"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> — <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>მეგაპიქსელი"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"კოორდინატები"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"სიმაღლე"</string> + <string name="metadata_camera" msgid="2363009732801281319">"კამერა"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g>, <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"აპერტურა"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"ობიექტივის საკეტის სისწრაფე"</string> + <string name="metadata_duration" msgid="3115494422055472715">"ხანგრძლივობა"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"გადაღებულია:"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ფოკუსური მანძილი"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>მმ"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO-ს ეკვივალენტი"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO: <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"სტრიმინგის ტიპები"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"ნედლი ზომა (ბაიტები)"</string> +</resources> diff --git a/res/values-ka/mimes.xml b/res/values-ka/mimes.xml new file mode 100644 index 000000000..8264d81f3 --- /dev/null +++ b/res/values-ka/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ფაილი"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ფაილი"</string> + <string name="image_file_type" msgid="3011633523704887793">"სურათი"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> სურათი"</string> + <string name="audio_file_type" msgid="3790525543519624632">"აუდიო"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> აუდიო"</string> + <string name="video_file_type" msgid="7290473366042482095">"ვიდეო"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> ვიდეო"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> არქივი"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android-ის აპლიკაცია"</string> + <string name="txt_file_type" msgid="4677767777860724696">"ჩვეულებრივი ტექსტი"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML დოკუმენტი"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF დოკუმენტი"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word დოკუმენტი"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint პრეზენტაცია"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-ის ელცხრილი"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google დოკუმენტი"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google ელცხრილი"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google პრეზენტაცია"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google ნახაზი"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google ცხრილი"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ფორმა"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google რუკა"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google საიტი"</string> + <string name="directory_type" msgid="2702987727566226354">"საქაღალდე"</string> +</resources> diff --git a/res/values-ka/strings.xml b/res/values-ka/strings.xml index 506d2325e..99f7efd68 100644 --- a/res/values-ka/strings.xml +++ b/res/values-ka/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"შეკუმშვა"</string> <string name="menu_extract" msgid="8171946945982532262">"ამოღება…"</string> <string name="menu_rename" msgid="1883113442688817554">"გადარქმევა"</string> - <string name="menu_inspector" msgid="8633147986551632467">"მახასიათებლები"</string> + <string name="menu_inspector" msgid="8217713416277319588">"ინფორმაციის მიღება"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g>-ში ნახვა"</string> <string name="menu_new_window" msgid="2947837751796109126">"ახალი ფანჯარა"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"ამოჭრა"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"გადაადგილება"</string> <string name="button_dismiss" msgid="7235249361023803349">"უარყოფა"</string> <string name="button_retry" msgid="4011461781916631389">"ხელახლა ცდა"</string> + <string name="button_clear" msgid="5412304437764369441">"გასუფთავება"</string> + <string name="button_show_provider" msgid="6905880493806292753">"პროვაიდერში ჩვენება"</string> <string name="not_sorted" msgid="7813496644889115530">"დაულაგებელი"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"სახელი"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"რეზიუმე"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"ტიპი"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"ზომა"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"ცვლილება"</string> - <string name="directory_children" msgid="8115290268549503262">"ბავშვთა რაოდენობა"</string> + <string name="directory_items" msgid="6645621978998614003">"ერთეულების რაოდენობა"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ზრდადი"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"კლებადი"</string> <string name="drawer_open" msgid="8071673398187261741">"ფესვების ჩვენება"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ფაილის გახსნა ვერ ხერხდება"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"არქივებში განთავსებული ფაილების გახსნა ვერ მოხერხდა"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"ზოგიერთი დოკუმენტის წაშლა ვერ ხერხდება"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"მახასიათებლების ჩატვირთვა ვერ მოხერხდა"</string> <string name="share_via" msgid="8725082736005677161">"გაზიარება…"</string> <string name="copy_notification_title" msgid="52256435625098456">"ფაილების კოპირება…"</string> <string name="compress_notification_title" msgid="6830195148113751021">"მიმდინარეობს ფაილების შეკუმშვა"</string> diff --git a/res/values-kk/inspector_strings.xml b/res/values-kk/inspector_strings.xml new file mode 100644 index 000000000..2d9e4a7ca --- /dev/null +++ b/res/values-kk/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Ақпарат"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Файл ақпараты жүктелмеді"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Түзету туралы ақпарат (тек әзірлеуші)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"RAW метадеректері: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Медиамазмұн деректері"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Мұндай файл түрі келесі қолданбамен ашылады"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Файлды ұсынушы"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Таңдалмады"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Белгісіз"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Өлшемдер"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> МП"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Координаталар"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Биіктік"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Камера"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Aпертура"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Ысырма жылдамдығы"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Ұзақтығы"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Түсірілді"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Фокус қашықтығы"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> мм"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO баламасы"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO жылдамдығы: <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Трансляция түрлері"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"RAW файлының өлшемі (байт)"</string> +</resources> diff --git a/res/values-kk/mimes.xml b/res/values-kk/mimes.xml new file mode 100644 index 000000000..166d2ed59 --- /dev/null +++ b/res/values-kk/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> файлы"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Файл"</string> + <string name="image_file_type" msgid="3011633523704887793">"Сурет"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> суреті"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Aудио"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> аудиофайлы"</string> + <string name="video_file_type" msgid="7290473366042482095">"Бейне"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> бейнефайлы"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> мұрағаты"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android қолданбасы"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Қарапайым мәтін"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML құжаты"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF құжаты"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word құжаты"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint көрсетілімі"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel электрондық кестесі"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google құжаты"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google электрондық кестесі"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google көрсетілімі"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google суреті"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google кестесі"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google үлгісі"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google картасы"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google сайты"</string> + <string name="directory_type" msgid="2702987727566226354">"Қалта"</string> +</resources> diff --git a/res/values-kk/strings.xml b/res/values-kk/strings.xml index b466594da..b8afb217a 100644 --- a/res/values-kk/strings.xml +++ b/res/values-kk/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Сығу"</string> <string name="menu_extract" msgid="8171946945982532262">"Алынуда…"</string> <string name="menu_rename" msgid="1883113442688817554">"Атауын өзгерту"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Сипаттары"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Ақпарат алу"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> ішінде көру"</string> <string name="menu_new_window" msgid="2947837751796109126">"Жаңа терезе"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Қиып алу"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Тасымалдау"</string> <string name="button_dismiss" msgid="7235249361023803349">"Жабу"</string> <string name="button_retry" msgid="4011461781916631389">"Әрекетті қайталау"</string> + <string name="button_clear" msgid="5412304437764369441">"Өшіру"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Провайдерде көрсету"</string> <string name="not_sorted" msgid="7813496644889115530">"Сұрыпталмаған"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Аты"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Жиынтық мәлімет"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tүрі"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Көлемі"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Өзгертілген уақыты"</string> - <string name="directory_children" msgid="8115290268549503262">"Балалар саны"</string> + <string name="directory_items" msgid="6645621978998614003">"Элементтер саны"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Арту ретімен"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Кему ретімен"</string> <string name="drawer_open" msgid="8071673398187261741">"Түбір қалтаны көрсету"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Файл ашылмады"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Мұрағаттағы файлдар ашылмайды"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Кейбір құжаттар жойылмады"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Сипаттар жүктелмеді"</string> <string name="share_via" msgid="8725082736005677161">"Бөлісу әдісі"</string> <string name="copy_notification_title" msgid="52256435625098456">"Файлдар көшірілуде"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Файлдар сығу"</string> diff --git a/res/values-km/inspector_strings.xml b/res/values-km/inspector_strings.xml new file mode 100644 index 000000000..ae86865b6 --- /dev/null +++ b/res/values-km/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"ព័ត៌មាន"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"មិនអាចផ្ទុកព័ត៌មានឯកសារបានទេ"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"ព័ត៌មានអំពីការជួសជុល (dev ប៉ុណ្ណោះ)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"ទិន្នន័យមេតាដើម៖ <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"ព័ត៌មានលម្អិតអំពីមេឌៀ"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"ប្រភេទឯកសារនេះបើកដោយប្រើ"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ឯកសារនេះត្រូវបានផ្ដល់ដោយ"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"មិនបានជ្រើសរើស"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"មិនស្គាល់"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"ទំហំ"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"កូអរដោណេ"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"រយៈកម្ពស់"</string> + <string name="metadata_camera" msgid="2363009732801281319">"កាមេរ៉ា"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"ជម្រៅរូបភាព"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"ល្បឿនពន្លឺរូបថត"</string> + <string name="metadata_duration" msgid="3115494422055472715">"រយៈពេល"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"ថតនៅថ្ងៃទី"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ប្រវែងផ្ដោត"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ល្បឿន ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ប្រភេទការផ្សាយ"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"ទំហំដើម (បៃ)"</string> +</resources> diff --git a/res/values-km/mimes.xml b/res/values-km/mimes.xml new file mode 100644 index 000000000..3c16552cb --- /dev/null +++ b/res/values-km/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"ឯកសារ <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ឯកសារ"</string> + <string name="image_file_type" msgid="3011633523704887793">"រូបភាព"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"រូបភាព <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"សំឡេង"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"សំឡេង <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"វីដេអូ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"វីដេអូ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"បណ្ណសារ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"កម្មវិធី Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"អត្ថបទធម្មតា"</string> + <string name="html_file_type" msgid="2034229603117527970">"ឯកសារ HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"ឯកសារ PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"ឯកសារ Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"បទបង្ហាញ PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"បញ្ជី Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google ឯកសារ"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"បញ្ជី Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google បទបង្ហាញ"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google គំនូរ"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google តារាង"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ទម្រង់បែបបទ"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google ផែនទី"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"ទំព័រ Google"</string> + <string name="directory_type" msgid="2702987727566226354">"ថត"</string> +</resources> diff --git a/res/values-km/strings.xml b/res/values-km/strings.xml index 046f1e5b0..7e113dbdc 100644 --- a/res/values-km/strings.xml +++ b/res/values-km/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"បង្ហាប់"</string> <string name="menu_extract" msgid="8171946945982532262">"ស្រង់ទៅ…"</string> <string name="menu_rename" msgid="1883113442688817554">"ប្ដូរឈ្មោះ"</string> - <string name="menu_inspector" msgid="8633147986551632467">"លក្ខណៈសម្បត្តិ"</string> + <string name="menu_inspector" msgid="8217713416277319588">"ទទួលព័ត៌មាន"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"មើលនៅក្នុង <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"ផ្ទាំងវិនដូថ្មី"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"កាត់"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ផ្លាស់ទី"</string> <string name="button_dismiss" msgid="7235249361023803349">"បដិសេធ"</string> <string name="button_retry" msgid="4011461781916631389">"ព្យាយាមម្តងទៀត"</string> + <string name="button_clear" msgid="5412304437764369441">"សម្អាត"</string> + <string name="button_show_provider" msgid="6905880493806292753">"បង្ហាញនៅក្នុងក្រុមហ៊ុនផ្តល់សេវា"</string> <string name="not_sorted" msgid="7813496644889115530">"Not sorted"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"ឈ្មោះ"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"សេចក្តីសង្ខេប"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"ប្រភេទ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"ទំហំ"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"បានកែសម្រួល"</string> - <string name="directory_children" msgid="8115290268549503262">"ចំនួនកុមារ"</string> + <string name="directory_items" msgid="6645621978998614003">"ចំនួនធាតុ"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ឡើង"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"ចុះ"</string> <string name="drawer_open" msgid="8071673398187261741">"បង្ហាញ roots"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"មិនអាចបើកឯកសារបានទេ"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"មិនអាចបើកឯកសារនៅក្នុងបណ្ណសារបានទេ"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"មិនអាចលុបឯកសារមួយចំនួន"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"មិនអាចផ្ទុកលក្ខណសម្បត្តិបានទេ"</string> <string name="share_via" msgid="8725082736005677161">"ចែករំលែកតាម"</string> <string name="copy_notification_title" msgid="52256435625098456">"កំពុងចម្លងឯកសារ"</string> <string name="compress_notification_title" msgid="6830195148113751021">"កំពុងបង្ហាប់ឯកសារ"</string> diff --git a/res/values-kn/inspector_strings.xml b/res/values-kn/inspector_strings.xml new file mode 100644 index 000000000..0012339cb --- /dev/null +++ b/res/values-kn/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"ಮಾಹಿತಿ"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ಫೈಲ್ ಮಾಹಿತಿಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗಲಿಲ್ಲ"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"ಡೀಬಗ್ ಮಾಹಿತಿ (dev ಮಾತ್ರ)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw ಮೆಟಾಡೇಟಾ: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"ಮಾಧ್ಯಮ ವಿವರಗಳು"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"ಈ ಪ್ರಕಾರದ ಫೈಲ್ ಇದರ ಮೂಲಕ ತೆರೆಯುತ್ತದೆ"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ಈ ಫೈಲ್ ಅನ್ನು ವಿತರಿಸಿದವರು"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"ಆಯ್ಕೆಮಾಡಲಾಗಿಲ್ಲ"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"ಅಪರಿಚಿತ"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"ಅಳತೆಗಳು"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>ಎಮ್ಪಿ"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"ಅಕ್ಷಾಂಶಗಳು"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ಎತ್ತರ"</string> + <string name="metadata_camera" msgid="2363009732801281319">"ಕ್ಯಾಮರಾ"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"ಅಪರ್ಚರ್"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"ಶಟರ್ ವೇಗ"</string> + <string name="metadata_duration" msgid="3115494422055472715">"ಅವಧಿ"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"ತೆಗೆದುಕೊಂಡಾಗ"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ಫೋಕಲ್ ಅಂತರ"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>ಮಿಮೀ"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ಸಮಾನ"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ಸ್ಟ್ರೀಮ್ ವಿಧಗಳು"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"RAW ಗಾತ್ರ (ಬೈಟ್ಗಳು)"</string> +</resources> diff --git a/res/values-kn/mimes.xml b/res/values-kn/mimes.xml new file mode 100644 index 000000000..515c4239f --- /dev/null +++ b/res/values-kn/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ಫೈಲ್"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ಫೈಲ್"</string> + <string name="image_file_type" msgid="3011633523704887793">"ಚಿತ್ರ"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> ಚಿತ್ರ"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ಆಡಿಯೋ"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ಆಡಿಯೋ"</string> + <string name="video_file_type" msgid="7290473366042482095">"ವೀಡಿಯೊ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> ವೀಡಿಯೊ"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> ಆರ್ಕೈವ್ ಮಾಡಿ"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android ಅಪ್ಲಿಕೇಶನ್"</string> + <string name="txt_file_type" msgid="4677767777860724696">"ಸರಳ ಪಠ್ಯ"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML ಡಾಕ್ಯುಮೆಂಟ್"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF ಡಾಕ್ಯುಮೆಂಟ್"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word ಡಾಕ್ಯುಮೆಂಟ್"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint ಪ್ರಸ್ತುತಿ"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel ಸ್ಪ್ರೆಡ್ಶೀಟ್"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google ಡಾಕ್ಯುಮೆಂಟ್"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google ಸ್ಪ್ರೆಡ್ಶೀಟ್"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google ಪ್ರಸ್ತುತಿ"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google ರೇಖಾಚಿತ್ರ"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google ಟೇಬಲ್"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ಫಾರ್ಮ್"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google ನಕ್ಷೆ"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google ಸೈಟ್"</string> + <string name="directory_type" msgid="2702987727566226354">"ಫೋಲ್ಡರ್"</string> +</resources> diff --git a/res/values-kn/strings.xml b/res/values-kn/strings.xml index a19927785..191376226 100644 --- a/res/values-kn/strings.xml +++ b/res/values-kn/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"ಕುಗ್ಗಿಸಿ"</string> <string name="menu_extract" msgid="8171946945982532262">"ಇದಕ್ಕೆ ಬೇರ್ಪಡಿಸಲಾಗಿದೆ…"</string> <string name="menu_rename" msgid="1883113442688817554">"ಮರುಹೆಸರಿಸು"</string> - <string name="menu_inspector" msgid="8633147986551632467">"ಗುಣಲಕ್ಷಣಗಳು"</string> + <string name="menu_inspector" msgid="8217713416277319588">"ಮಾಹಿತಿಯನ್ನು ಪಡೆಯಿರಿ"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> ನಲ್ಲಿ ವೀಕ್ಷಿಸಿ"</string> <string name="menu_new_window" msgid="2947837751796109126">"ಹೊಸ ವಿಂಡೋ"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"ಕತ್ತರಿಸು"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ಸರಿಸು"</string> <string name="button_dismiss" msgid="7235249361023803349">"ವಜಾಗೊಳಿಸಿ"</string> <string name="button_retry" msgid="4011461781916631389">"ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ"</string> + <string name="button_clear" msgid="5412304437764369441">"ತೆರವುಗೊಳಿಸಿ"</string> + <string name="button_show_provider" msgid="6905880493806292753">"ಒದಗಿಸುವವರಲ್ಲಿ ತೋರಿಸಿ"</string> <string name="not_sorted" msgid="7813496644889115530">"ವಿಂಗಡಿಸಲಾಗಿಲ್ಲ"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"ಹೆಸರು"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"ಸಾರಾಂಶ"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"ಪ್ರಕಾರ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"ಗಾತ್ರ"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"ಮಾರ್ಪಾಡು"</string> - <string name="directory_children" msgid="8115290268549503262">"ಮಕ್ಕಳ ಸಂಖ್ಯೆ"</string> + <string name="directory_items" msgid="6645621978998614003">"ಐಟಂಗಳ ಸಂಖ್ಯೆ"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ಆರೋಹಣ"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"ಅವರೋಹಣ"</string> <string name="drawer_open" msgid="8071673398187261741">"ರೂಟ್ಗಳನ್ನು ತೋರಿಸು"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ಫೈಲ್ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"ಆರ್ಕೈವ್ಗಳಲ್ಲಿ ಫೈಲ್ಗಳನ್ನು ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"ಕೆಲವು ಡಾಕ್ಯುಮೆಂಟ್ಗಳನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"ಗುಣಲಕ್ಷಣಗಳನ್ನು ಲೋಡ್ ಮಾಡುವುದು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ"</string> <string name="share_via" msgid="8725082736005677161">"ಈ ಮೂಲಕ ಹಂಚಿಕೊಳ್ಳಿ"</string> <string name="copy_notification_title" msgid="52256435625098456">"ಫೈಲ್ಗಳನ್ನು ನಕಲಿಸಲಾಗುತ್ತಿದೆ"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ಫೈಲ್ ಕುಗ್ಗಿಸಲಾಗುತ್ತಿದೆ"</string> diff --git a/res/values-ko/inspector_strings.xml b/res/values-ko/inspector_strings.xml new file mode 100644 index 000000000..afe2bfd26 --- /dev/null +++ b/res/values-ko/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"정보"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"파일 정보를 로드할 수 없습니다"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"디버그 정보(개발자 전용)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"원본 메타데이터: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"미디어 세부정보"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"이 유형의 파일에 연결된 앱"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"파일 제공자:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"선택되지 않음"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"알 수 없음"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"크기"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g>x<xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"좌표"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"고도"</string> + <string name="metadata_camera" msgid="2363009732801281319">"카메라"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"조리개"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"셔터 속도"</string> + <string name="metadata_duration" msgid="3115494422055472715">"시간"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"촬영 일시"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"초점 거리"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO 등급"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"스트림 유형"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"원본 크기(바이트)"</string> +</resources> diff --git a/res/values-ko/mimes.xml b/res/values-ko/mimes.xml new file mode 100644 index 000000000..769d97a5f --- /dev/null +++ b/res/values-ko/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> 파일"</string> + <string name="generic_file_type" msgid="1415477154743494280">"파일"</string> + <string name="image_file_type" msgid="3011633523704887793">"이미지"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> 이미지"</string> + <string name="audio_file_type" msgid="3790525543519624632">"오디오"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> 오디오"</string> + <string name="video_file_type" msgid="7290473366042482095">"동영상"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> 동영상"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> 보관 파일"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android 애플리케이션"</string> + <string name="txt_file_type" msgid="4677767777860724696">"일반 텍스트"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML 문서"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF 문서"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word 문서"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint 프레젠테이션"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel 스프레드시트"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google 문서"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google 스프레드시트"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google 프레젠테이션"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google 드로잉"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google 표"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google 설문지"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google 지도"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google 사이트"</string> + <string name="directory_type" msgid="2702987727566226354">"폴더"</string> +</resources> diff --git a/res/values-ko/strings.xml b/res/values-ko/strings.xml index d2e308442..340465275 100644 --- a/res/values-ko/strings.xml +++ b/res/values-ko/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"압축"</string> <string name="menu_extract" msgid="8171946945982532262">"다음 위치에 추출..."</string> <string name="menu_rename" msgid="1883113442688817554">"이름 바꾸기"</string> - <string name="menu_inspector" msgid="8633147986551632467">"속성"</string> + <string name="menu_inspector" msgid="8217713416277319588">"정보 확인"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g>에서 보기"</string> <string name="menu_new_window" msgid="2947837751796109126">"새 창"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"잘라내기"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"이동"</string> <string name="button_dismiss" msgid="7235249361023803349">"닫기"</string> <string name="button_retry" msgid="4011461781916631389">"다시 시도"</string> + <string name="button_clear" msgid="5412304437764369441">"삭제"</string> + <string name="button_show_provider" msgid="6905880493806292753">"제공업체 앱에서 보기"</string> <string name="not_sorted" msgid="7813496644889115530">"정렬되지 않음"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"이름"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"요약"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"형식"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"크기"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"마지막 수정 시간"</string> - <string name="directory_children" msgid="8115290268549503262">"자녀 수"</string> + <string name="directory_items" msgid="6645621978998614003">"항목 수"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"오름차순"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"내림차순"</string> <string name="drawer_open" msgid="8071673398187261741">"루트 표시"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"파일을 열 수 없습니다."</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"보관 파일 안에 있는 파일은 열 수 없습니다."</string> <string name="toast_failed_delete" msgid="3453846588205817591">"일부 문서를 삭제할 수 없습니다."</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"속성을 로드할 수 없습니다."</string> <string name="share_via" msgid="8725082736005677161">"공유에 사용할 앱"</string> <string name="copy_notification_title" msgid="52256435625098456">"파일 복사"</string> <string name="compress_notification_title" msgid="6830195148113751021">"파일 압축 중"</string> diff --git a/res/values-ky/inspector_strings.xml b/res/values-ky/inspector_strings.xml new file mode 100644 index 000000000..f46c1a68b --- /dev/null +++ b/res/values-ky/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Маалымат"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Файл жөнүндө маалымат жүктөлбөй койду"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Мүчүлүштүктөрдү оңдоо маалыматы (түзм. гана)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Баштапкы метадата: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Медиа маалымат"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Файлдын мындай түрү төмөнкү колдонмо менен ачылат"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Бул файлды жасаган тутум"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Тандалган жок"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Белгисиз"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Чен-өлчөмү"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>Мпикс."</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Координаталар"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Бийиктик"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Камера"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Апертура"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Жапкычтын ылдамдыгы"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Узактыгы"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Тартылган күнү"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Фокустук аралык"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>мм"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO эквиваленти"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Агымдын түрү"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Баштапкы өлчөмү (байт)"</string> +</resources> diff --git a/res/values-ky/mimes.xml b/res/values-ky/mimes.xml new file mode 100644 index 000000000..8eb7cd68c --- /dev/null +++ b/res/values-ky/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> файлы"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Файл"</string> + <string name="image_file_type" msgid="3011633523704887793">"Сүрөт"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> сүрөтү"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Аудио"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> форматындагы аудио файл"</string> + <string name="video_file_type" msgid="7290473366042482095">"Видео"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> видеосу"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> форматындагы архив"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android колдонмосу"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Жөнөкөй текст"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML документи"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF документи"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word документи"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint презентациясы"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel электрондук жадыбалы"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google документи"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google электрондук жадыбалы"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google презентациясы"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google чиймеси"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google жадыбалы"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google формасы"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google картасы"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google сайты"</string> + <string name="directory_type" msgid="2702987727566226354">"Папка"</string> +</resources> diff --git a/res/values-ky/strings.xml b/res/values-ky/strings.xml index 5f98eaa53..dc880f8a5 100644 --- a/res/values-ky/strings.xml +++ b/res/values-ky/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Кысуу"</string> <string name="menu_extract" msgid="8171946945982532262">"Төмөнкүгө чыгаруу…"</string> <string name="menu_rename" msgid="1883113442688817554">"Аталышын өзгөртүү"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Касиеттери"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Маалымат алуу"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> аркылуу көрүү"</string> <string name="menu_new_window" msgid="2947837751796109126">"Жаңы терезе"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Кесүү"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Жылдыруу"</string> <string name="button_dismiss" msgid="7235249361023803349">"Көз жаздымда калтыруу"</string> <string name="button_retry" msgid="4011461781916631389">"Кайра аракет кылыңыз"</string> + <string name="button_clear" msgid="5412304437764369441">"Тазалоо"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Демейки колдонмодон көрсөтүү"</string> <string name="not_sorted" msgid="7813496644889115530">"Ылганган эмес"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Аты"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Жыйынтыгы"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Түрү"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Өлчөмү"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Өзгөрүлгөн"</string> - <string name="directory_children" msgid="8115290268549503262">"Балдардын саны"</string> + <string name="directory_items" msgid="6645621978998614003">"Элементтердин саны"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Чоңойгон ыраатта"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Кичирейген ыраатта"</string> <string name="drawer_open" msgid="8071673398187261741">"Папкаларды көрсөтүү"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Файл ачылбай жатат"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Архивделген файлдарды ачуу мүмкүн эмес"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Кээ бир документтерди өчүрүү мүмкүн болбой жатат"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Касиеттери жүктөлбөй койду"</string> <string name="share_via" msgid="8725082736005677161">"Бул аркылуу бөлүшүү"</string> <string name="copy_notification_title" msgid="52256435625098456">"Файлдар көчүрүлүүдө"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Файлдар кысылууда"</string> diff --git a/res/values-lo/inspector_strings.xml b/res/values-lo/inspector_strings.xml new file mode 100644 index 000000000..d4f633a90 --- /dev/null +++ b/res/values-lo/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"ຂໍ້ມູນ"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ບໍ່ສາມາດໂຫຼດຂໍ້ມູນໄຟລ໌ໄດ້"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"ຂໍ້ມູນດີບັກ (ນັກພັດທະນາເທົ່ານັ້ນ)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"ເມເຕເດຕາ Raw: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"ລາຍລະອຽດມີເດຍ"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"ໄຟລ໌ປະເພດນີ້ເປີດດ້ວຍ"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ໄຟລ໌ນີ້ຖືກຈຳໜ່າຍໃຫ້ໂດຍ"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"ບໍ່ໄດ້ເລືອກ"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"ບໍ່ຮູ້ຈັກ"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"ຂະໜາດພາບ"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"ພິກັດ"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ຄວາມສູງ"</string> + <string name="metadata_camera" msgid="2363009732801281319">"ກ້ອງຖ່າຍຮູບ"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"ຮູຮັບແສງ"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"ຄວາມໄວຊັດເຕີ"</string> + <string name="metadata_duration" msgid="3115494422055472715">"ໄລຍະເວລາ"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"ຖ່າຍເມື່ອ"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ທາງຍາວໂຟກັສ"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ທຽບເທົ່າ"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ປະເພດສະຕຣີມ"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"ຂະໜາດ Raw (ໄບຕ໌)"</string> +</resources> diff --git a/res/values-lo/mimes.xml b/res/values-lo/mimes.xml new file mode 100644 index 000000000..55775c22f --- /dev/null +++ b/res/values-lo/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"ໄຟລ໌ <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ໄຟລ໌"</string> + <string name="image_file_type" msgid="3011633523704887793">"ຮູບພາບ"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"ຮູບພາບ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ໄຟລ໌ສຽງ"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"ໄຟລ໌ສຽງ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"ວິດີໂອ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"ວິດີໂອ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"ແຟ້ມຈັດເກັບ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"ແອັບພລິເຄຊັນ Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"ຂໍ້ຄວາມທຳມະດາ"</string> + <string name="html_file_type" msgid="2034229603117527970">"ເອກະສານ HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"ເອກະສານ PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"ເອກະສານ Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"ພຣີເຊັນເທເຊິນ PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"ສະເປຣດຊີດ Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"ເອກະສານ Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"ສະເປຣດຊີດ Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"ພຣີເຊັນເທເຊິນ Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"ແບບແຕ້ມ Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"ຕາຕາລາງ Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"ແບບຟອມ Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"ແຜນທີ່ Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"ເວັບໄຊ Google"</string> + <string name="directory_type" msgid="2702987727566226354">"ໂຟນເດີ"</string> +</resources> diff --git a/res/values-lo/strings.xml b/res/values-lo/strings.xml index 1e53a8e4c..878645c3d 100644 --- a/res/values-lo/strings.xml +++ b/res/values-lo/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"ບີບອັດ"</string> <string name="menu_extract" msgid="8171946945982532262">"ແຕກໄຟລ໌ໄປ…"</string> <string name="menu_rename" msgid="1883113442688817554">"ປ່ຽນຊື່"</string> - <string name="menu_inspector" msgid="8633147986551632467">"ຄຸນສົມບັດ"</string> + <string name="menu_inspector" msgid="8217713416277319588">"ຂໍຂໍ້ມູນ"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"ເບິ່ງໃນ <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"ໜ້າຈໍໃໝ່"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"ຕັດ"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ຍ້າຍ"</string> <string name="button_dismiss" msgid="7235249361023803349">"ປິດໄວ້"</string> <string name="button_retry" msgid="4011461781916631389">"ລອງໃໝ່ອີກເທື່ອໜຶ່ງ"</string> + <string name="button_clear" msgid="5412304437764369441">"ລຶບລ້າງ"</string> + <string name="button_show_provider" msgid="6905880493806292753">"ສະແດງໃນຜູ້ໃຫ້ບລິການ"</string> <string name="not_sorted" msgid="7813496644889115530">"ບໍ່ໄດ້ຈັດຮຽງ"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"ຊື່"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"ສະຫຼຸບ"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"ປະເພດ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"ຂະໜາດ"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"ແກ້ໄຂເມື່ອ"</string> - <string name="directory_children" msgid="8115290268549503262">"ຈຳນວນຂອງລູກ"</string> + <string name="directory_items" msgid="6645621978998614003">"ຈໍານວນລາຍການ"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ໃຫຍ່ຫານ້ອຍ"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"ນ້ອຍຫາໃຫຍ່"</string> <string name="drawer_open" msgid="8071673398187261741">"ສະແດງ roots"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ບໍ່ສາມາດເປີດໄຟລ໌ໄດ້"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"ບໍ່ສາມາດເປີດໄຟລ໌ໃນແຟ້ມຈັດເກັບໄດ້"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"ບໍ່ສາມາດລຶບບາງເອກະສານໄດ້"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"ບໍ່ສາມາດໂຫຼດຄຸນສົມບັດໄດ້"</string> <string name="share_via" msgid="8725082736005677161">"ແບ່ງປັນຜ່ານ"</string> <string name="copy_notification_title" msgid="52256435625098456">"ກຳລັງສຳເນົາໄຟລ໌"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ກຳລັງບີບອັດໄຟລ໌"</string> diff --git a/res/values-lt/inspector_strings.xml b/res/values-lt/inspector_strings.xml new file mode 100644 index 000000000..e7bcc2a71 --- /dev/null +++ b/res/values-lt/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informacija"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Nepavyko įkelti failo"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Derinimo informacija (tik kūrėjams)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Neapdoroto failo metaduomenys: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Išsami medijos informacija"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Šio tipo failas atidaromas naudojant"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Šį failą teikia"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nepasirinkta"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Nežinoma"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Matmenys"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinatės"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Aukštis virš jūros lygio"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Fotoaparatas"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Diafragma"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Užrakto greitis"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Trukmė"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Nufotografuota"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Židinio nuotolis"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ekvivalentas"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Srautų tipai"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Neapdoroto failo dydis (baitais)"</string> +</resources> diff --git a/res/values-lt/mimes.xml b/res/values-lt/mimes.xml new file mode 100644 index 000000000..5bf01e25b --- /dev/null +++ b/res/values-lt/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> failas"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Failas"</string> + <string name="image_file_type" msgid="3011633523704887793">"Vaizdas"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> vaizdas"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Garso įrašas"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> garso įrašas"</string> + <string name="video_file_type" msgid="7290473366042482095">"Vaizdo įrašas"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> vaizdo įrašas"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> archyvas"</string> + <string name="apk_file_type" msgid="6004275470389462277">"„Android“ programa"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Grynasis tekstas"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML dokumentas"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF dokumentas"</string> + <string name="word_file_type" msgid="2366349268129894972">"„Word“ dokumentas"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"„PowerPoint“ pristatymas"</string> + <string name="excel_file_type" msgid="8363932635044575463">"„Excel“ skaičiuoklė"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"„Google“ dokumentas"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"„Google“ skaičiuoklė"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"„Google“ pristatymas"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"„Google“ piešinys"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"„Google“ lentelė"</string> + <string name="gform_file_type" msgid="4803176103746107611">"„Google“ forma"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"„Google“ žemėlapis"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"„Google“ svetainė"</string> + <string name="directory_type" msgid="2702987727566226354">"Aplankas"</string> +</resources> diff --git a/res/values-lt/strings.xml b/res/values-lt/strings.xml index 681b3df8b..a902cb89b 100644 --- a/res/values-lt/strings.xml +++ b/res/values-lt/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Suglaudinti"</string> <string name="menu_extract" msgid="8171946945982532262">"Išskleisti į..."</string> <string name="menu_rename" msgid="1883113442688817554">"Pervardyti"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Ypatybės"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Gauti informacijos"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Žr. <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Naujas langas"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Iškirpti"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Perkelti"</string> <string name="button_dismiss" msgid="7235249361023803349">"Atsisakyti"</string> <string name="button_retry" msgid="4011461781916631389">"Bandyti dar kartą"</string> + <string name="button_clear" msgid="5412304437764369441">"Išvalyti"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Rodyti naudojant teikėjo programą"</string> <string name="not_sorted" msgid="7813496644889115530">"Nerūšiuota"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Pavadinimas"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Suvestinė"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipas"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Dydis"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Pakeista"</string> - <string name="directory_children" msgid="8115290268549503262">"Antrinių elementų skaičius"</string> + <string name="directory_items" msgid="6645621978998614003">"Elementų skaičius"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Didėjimo tvarka"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Mažėjimo tvarka"</string> <string name="drawer_open" msgid="8071673398187261741">"Rodyti šaknis"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Nepavyksta atidaryti failo"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Negalima atidaryti failų archyvuose"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Nepavyko ištrinti kai kurių dokumentų"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Nepavyko įkelti nuosavybių"</string> <string name="share_via" msgid="8725082736005677161">"Bendrinti naudojant"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopijuojami failai"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Glaudinami failai"</string> diff --git a/res/values-lv/inspector_strings.xml b/res/values-lv/inspector_strings.xml new file mode 100644 index 000000000..37ec7e87f --- /dev/null +++ b/res/values-lv/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informācija"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Nevarēja ielādēt faila informāciju"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Atkļūdošanas informācija (tikai izstrādātājiem)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Neapstrādāti metadati: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Multivides informācija"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Šāda veida failu var atvērt lietotnē"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Šis fails ir nodrošināts lietotnē"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nav atlasīta"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Nezināma"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Izmēri"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> — <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinātas"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Augstums"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Diafragmas atvērums"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Slēdža ātrums"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Ilgums"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Uzņemts:"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Fokusa attālums"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ekvivalents"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Straumes veidi"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Neapstrādāta faila lielums (baiti)"</string> +</resources> diff --git a/res/values-lv/mimes.xml b/res/values-lv/mimes.xml new file mode 100644 index 000000000..afe110b90 --- /dev/null +++ b/res/values-lv/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> fails"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fails"</string> + <string name="image_file_type" msgid="3011633523704887793">"Attēls"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> attēls"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> arhīvs"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android lietotne"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Vienkāršs teksts"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML dokuments"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF dokuments"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word dokuments"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint prezentācija"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel izklājlapa"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google dokuments"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google izklājlapa"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google prezentācija"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google zīmējums"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google tabula"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google veidlapa"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google karte"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google vietne"</string> + <string name="directory_type" msgid="2702987727566226354">"Mape"</string> +</resources> diff --git a/res/values-lv/strings.xml b/res/values-lv/strings.xml index 367258889..dbcbb5c69 100644 --- a/res/values-lv/strings.xml +++ b/res/values-lv/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Saspiest"</string> <string name="menu_extract" msgid="8171946945982532262">"Izvilkt..."</string> <string name="menu_rename" msgid="1883113442688817554">"Pārdēvēt"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Rekvizīti"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Saņemt informāciju"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Skatīt, izmantojot <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Jauns logs"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Izgriezt"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Pārvietot"</string> <string name="button_dismiss" msgid="7235249361023803349">"Nerādīt"</string> <string name="button_retry" msgid="4011461781916631389">"Mēģināt vēlreiz"</string> + <string name="button_clear" msgid="5412304437764369441">"Dzēst"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Rādīt nodrošinātājā"</string> <string name="not_sorted" msgid="7813496644889115530">"Nav kārtoti"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nosaukums"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Kopsavilkums"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Veids"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Lielums"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Izmaiņas"</string> - <string name="directory_children" msgid="8115290268549503262">"Bērnu skaits"</string> + <string name="directory_items" msgid="6645621978998614003">"Vienumu skaits"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Augošā secībā"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Dilstošā secībā"</string> <string name="drawer_open" msgid="8071673398187261741">"Rādīt saknes"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Nevar atvērt failu."</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Nevar atvērt arhīvos esošos failus"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Nevar izdzēst dažus dokumentus."</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Nevarēja ielādēt rekvizītus"</string> <string name="share_via" msgid="8725082736005677161">"Kopīgošanas veids"</string> <string name="copy_notification_title" msgid="52256435625098456">"Failu kopēšana"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Failu saspiešana"</string> diff --git a/res/values-mk/inspector_strings.xml b/res/values-mk/inspector_strings.xml new file mode 100644 index 000000000..20bb1badf --- /dev/null +++ b/res/values-mk/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Информации"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Не можеше да се вчитаат информациите за датотеката"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Информации за отстранување грешки (само за DEV)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Необработени метаподатоци: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Детали за аудиовизуелните содржини"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Овој вид датотека се отвора со"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Датотекава е обезбедена од"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Не е избрана"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Непозната"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Димензии"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> х <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Координати"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Надморска височина"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Камера"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Апертура"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Брзина на блендата"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Времетраење"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Фотографирано на"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Фокусна должина"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> мм"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Еквивалент на ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Типови пренос"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Големина на необработена (бајти)"</string> +</resources> diff --git a/res/values-mk/mimes.xml b/res/values-mk/mimes.xml new file mode 100644 index 000000000..167ab2dd1 --- /dev/null +++ b/res/values-mk/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> датотека"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Датотека"</string> + <string name="image_file_type" msgid="3011633523704887793">"Слика"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> слика"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Аудио"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> аудио"</string> + <string name="video_file_type" msgid="7290473366042482095">"Видео"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> видео"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> архива"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Апликација за Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Обичен текст"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML документ"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF документ"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word документ"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint презентација"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Таб. пресметка на Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Документ на Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Таб. пресметка на Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Презентација на Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Цртеж на Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Табела на Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Формулар на Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Карта на Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Сајт на Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Папка"</string> +</resources> diff --git a/res/values-mk/strings.xml b/res/values-mk/strings.xml index 97d514195..051654851 100644 --- a/res/values-mk/strings.xml +++ b/res/values-mk/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Компресирај"</string> <string name="menu_extract" msgid="8171946945982532262">"Отпакувај во…"</string> <string name="menu_rename" msgid="1883113442688817554">"Преименувај"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Својства"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Добијте информации"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Прикажи во <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Нов прозорец"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Исечи"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Премести"</string> <string name="button_dismiss" msgid="7235249361023803349">"Отфрли"</string> <string name="button_retry" msgid="4011461781916631389">"Обидете се повторно"</string> + <string name="button_clear" msgid="5412304437764369441">"Исчисти"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Прикажи во услугата на операторот"</string> <string name="not_sorted" msgid="7813496644889115530">"Неподредени"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Име"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Краток преглед"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Тип"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Големина"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Изменето"</string> - <string name="directory_children" msgid="8115290268549503262">"Број на деца"</string> + <string name="directory_items" msgid="6645621978998614003">"Број на ставки"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Растечко"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Опаѓачко"</string> <string name="drawer_open" msgid="8071673398187261741">"Прикажи корени"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Датотеката не може да се отвори"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Не може да се отвораат датотеките во архивите"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Некои документи не може да се избришат"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Не можеше да се вчитаат својствата"</string> <string name="share_via" msgid="8725082736005677161">"Споделете преку"</string> <string name="copy_notification_title" msgid="52256435625098456">"Се копираат датотеки"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Компримирање датотеки"</string> diff --git a/res/values-ml/inspector_strings.xml b/res/values-ml/inspector_strings.xml new file mode 100644 index 000000000..8ec91b06c --- /dev/null +++ b/res/values-ml/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"വിവരം"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ഫയൽ വിവരം ലോഡുചെയ്യാനായില്ല"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"ഡീബഗ് വിവരങ്ങൾ (dev മാത്രം)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"റോ മെറ്റാഡാറ്റാ: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"മീഡിയ വിശദാംശങ്ങള്"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"ഇത്തരത്തിലുള്ള ഫയലുകൾ തുറക്കുന്നു"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ഈ ഫയൽ വിതരണം ചെയ്യുന്നത്"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"തിരഞ്ഞെടുത്തില്ല"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"അറിയില്ല"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"തലങ്ങൾ"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"കോർഡിനേറ്റുകൾ"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ഉയരം"</string> + <string name="metadata_camera" msgid="2363009732801281319">"ക്യാമറ"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"അപ്റേച്ചർ"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"ഷട്ടര് വേഗത"</string> + <string name="metadata_duration" msgid="3115494422055472715">"ദൈര്ഘ്യം"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"എടുത്തത്"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ഫോക്കൽ ദൈർഘ്യം"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>മി.മീ"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO തത്തുല്യം"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"സ്ട്രീം തരങ്ങൾ"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"റോ വലുപ്പം (ബൈറ്റുകൾ)"</string> +</resources> diff --git a/res/values-ml/mimes.xml b/res/values-ml/mimes.xml new file mode 100644 index 000000000..a6cfb7958 --- /dev/null +++ b/res/values-ml/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ഫയൽ"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ഫയല്"</string> + <string name="image_file_type" msgid="3011633523704887793">"ചിത്രം"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> ചിത്രം"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ഓഡിയോ"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ഓഡിയോ"</string> + <string name="video_file_type" msgid="7290473366042482095">"വീഡിയോ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> വീഡിയോ"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> ആർക്കൈവുചെയ്യുക"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android ആപ്പ്"</string> + <string name="txt_file_type" msgid="4677767777860724696">"പ്ലെയിന് ടെക്സ്റ്റ്"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML ഡോക്യുമെന്റ്"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF ഡോക്യുമെന്റ്"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word ഡോക്യുമെന്റ്"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint പ്രസന്റേഷൻ"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel സ്പ്രെഡ്ഷീറ്റ്"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google പ്രമാണം"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google സ്പ്രെഡ്ഷീറ്റ്"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google അവതരണം"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google ഡ്രോയിംഗ്"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google പട്ടിക"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ഫോം"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google മാപ്പ്"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google സൈറ്റ്"</string> + <string name="directory_type" msgid="2702987727566226354">"ഫോള്ഡര്"</string> +</resources> diff --git a/res/values-ml/strings.xml b/res/values-ml/strings.xml index ebfbc6bad..3f29374e7 100644 --- a/res/values-ml/strings.xml +++ b/res/values-ml/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"കംപ്രസ്സുചെയ്യുക"</string> <string name="menu_extract" msgid="8171946945982532262">"എക്സ്ട്രാക്റ്റുചെയ്യുക…"</string> <string name="menu_rename" msgid="1883113442688817554">"പേരുമാറ്റുക"</string> - <string name="menu_inspector" msgid="8633147986551632467">"പ്രോപ്പർട്ടികൾ"</string> + <string name="menu_inspector" msgid="8217713416277319588">"വിവരങ്ങൾ സ്വന്തമാക്കൂ"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> എന്നതിൽ കാണുക"</string> <string name="menu_new_window" msgid="2947837751796109126">"പുതിയ വിന്ഡോ"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"മുറിക്കുക"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"നീക്കുക"</string> <string name="button_dismiss" msgid="7235249361023803349">"ഡിസ്മിസ് ചെയ്യുക"</string> <string name="button_retry" msgid="4011461781916631389">"വീണ്ടും ശ്രമിക്കുക"</string> + <string name="button_clear" msgid="5412304437764369441">"മായ്ക്കുക"</string> + <string name="button_show_provider" msgid="6905880493806292753">"ദാതാവിൽ കാണിക്കുക"</string> <string name="not_sorted" msgid="7813496644889115530">"അടുക്കിയിട്ടില്ല"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"പേര്"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"ചുരുക്കം"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"തരം"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"വലുപ്പം"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"പരിഷ്ക്കരിച്ചു"</string> - <string name="directory_children" msgid="8115290268549503262">"കുട്ടികളുടെ എണ്ണം"</string> + <string name="directory_items" msgid="6645621978998614003">"ഇനങ്ങളുടെ എണ്ണം"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ആരോഹണം"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"അവരോഹണം"</string> <string name="drawer_open" msgid="8071673398187261741">"റൂട്ടുകൾ ദൃശ്യമാക്കുക"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ഫയൽ തുറക്കാൻ കഴിയില്ല"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"ആർക്കൈവുകളിലെ ഫയലുകൾ തുറക്കാൻ കഴിയില്ല"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"ചില പ്രമാണങ്ങൾ ഇല്ലാതാക്കാനായില്ല"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"പ്രോപ്പർട്ടികൾ ലോഡുചെയ്യാനായില്ല"</string> <string name="share_via" msgid="8725082736005677161">"ഇതുവഴി പങ്കിടുക"</string> <string name="copy_notification_title" msgid="52256435625098456">"ഫയലുകൾ പകർത്തുന്നു"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ഫയലുകൾ കംപ്രസ്സുചെയ്യുന്നു"</string> diff --git a/res/values-mn/inspector_strings.xml b/res/values-mn/inspector_strings.xml new file mode 100644 index 000000000..67ca1e30c --- /dev/null +++ b/res/values-mn/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Мэдээлэл"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Файлын мэдээллийг ачааллаж чадсангүй"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Дебаг хийх мэдээлэл (зөвхөн хөгжүүлэгчид)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"RAW мета өгөгдөл: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Медианы дэлгэрэнгүй"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ийм төрлийн файлыг дараахаар нээдэг"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Энэ файлыг дараахаас хангасан"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Сонгоогүй"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Тодорхойгүй"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Хэмжээс"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Координат"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Өндөр"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Камер"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Өрц"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Зураг дарах хурд"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Хугацаа"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Авсан огноо"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Фокусын урт"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO дүйцэх"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Цацалтын төрөл"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"RAW-н хэмжээ (байт)"</string> +</resources> diff --git a/res/values-mn/mimes.xml b/res/values-mn/mimes.xml new file mode 100644 index 000000000..fed9c98c0 --- /dev/null +++ b/res/values-mn/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> файл"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Файл"</string> + <string name="image_file_type" msgid="3011633523704887793">"Зураг"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> зураг"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Аудио"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> аудио"</string> + <string name="video_file_type" msgid="7290473366042482095">"Видео"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> видео"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> архив"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Андройд апп"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Энгийн бичвэр"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML документ"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF документ"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word документ"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint үзүүлэн"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-н хүснэгт"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google документ"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google хүснэгт"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google үзүүлэн"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google зураглал"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google хүснэгт"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google маягт"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google газрын зураг"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google сайт"</string> + <string name="directory_type" msgid="2702987727566226354">"Фолдер"</string> +</resources> diff --git a/res/values-mn/strings.xml b/res/values-mn/strings.xml index d20cbeea8..84c39fc7f 100644 --- a/res/values-mn/strings.xml +++ b/res/values-mn/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Шахах"</string> <string name="menu_extract" msgid="8171946945982532262">"Дараахад задлах…"</string> <string name="menu_rename" msgid="1883113442688817554">"Нэр өөрчлөх"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Шинж чанар"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Мэдээлэл авах"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g>-д харах"</string> <string name="menu_new_window" msgid="2947837751796109126">"Шинэ цонх"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Таслах"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Зөөх"</string> <string name="button_dismiss" msgid="7235249361023803349">"Хаах"</string> <string name="button_retry" msgid="4011461781916631389">"Дахин оролдох"</string> + <string name="button_clear" msgid="5412304437764369441">"Устгах"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Үйлчилгээ үзүүлэгчид харуулах"</string> <string name="not_sorted" msgid="7813496644889115530">"Эрэмбэлээгүй"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Нэр"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Хураангуй"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Төрөл"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Хэмжээ"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Өөрчилсөн"</string> - <string name="directory_children" msgid="8115290268549503262">"Хүүхдийн тоо"</string> + <string name="directory_items" msgid="6645621978998614003">"Зүйлийн тоо"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Дээшилж буй"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Буурч буй"</string> <string name="drawer_open" msgid="8071673398187261741">"Документын санг харуулах"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Файлыг нээх боломжгүй байна"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Архивын файлыг нээх боломжгүй"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Зарим документыг устгах боломжгүй"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Документын мэдээллийг ачааллаж чадсангүй"</string> <string name="share_via" msgid="8725082736005677161">"Дараахаар хуваалцах"</string> <string name="copy_notification_title" msgid="52256435625098456">"Файлыг хуулж байна"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Файлыг шахаж байна"</string> diff --git a/res/values-mr/inspector_strings.xml b/res/values-mr/inspector_strings.xml new file mode 100644 index 000000000..aa05e8012 --- /dev/null +++ b/res/values-mr/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"माहिती"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"फाइलची माहिती लोड करता आली नाही"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"डीबग माहिती (फक्त विकासकांसाठी)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"अविश्लेषित मेटाडेटा: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"मीडिया तपशील"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"या प्रकारची फाइल ज्याने उघडेल ते"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"कडून ही फाइल पुरवण्यात आली"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"निवडलेले नाही"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"अज्ञात"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"आकारमान"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"अक्षांश रेखांश"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"उंची"</string> + <string name="metadata_camera" msgid="2363009732801281319">"कॅमेरा"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"अॅपर्चर"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"शटर गती"</string> + <string name="metadata_duration" msgid="3115494422055472715">"कालावधी"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"रोजी घेतला"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"केंद्रावरून लांबी"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>मिमी"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO सारखे"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"स्ट्रीम प्रकार"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"अविश्लेषित आकार (बाइट)"</string> +</resources> diff --git a/res/values-mr/mimes.xml b/res/values-mr/mimes.xml new file mode 100644 index 000000000..57bf3d1d4 --- /dev/null +++ b/res/values-mr/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> फाइल"</string> + <string name="generic_file_type" msgid="1415477154743494280">"फाइल"</string> + <string name="image_file_type" msgid="3011633523704887793">"इमेज"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> इमेज"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ऑडिओ"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ऑडिओ"</string> + <string name="video_file_type" msgid="7290473366042482095">"व्हिडिओ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> व्हिडिओ"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> संग्रहित करा"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android अॅप्लिकेशन"</string> + <string name="txt_file_type" msgid="4677767777860724696">"साधा मजकूर"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML दस्तऐवज"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF दस्तऐवज"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word दस्तऐवज"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint सादरीकरण"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel स्प्रेडशीट"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google दस्तऐवज"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google स्प्रेडशीट"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google सादरीकरण"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google रेखांकन"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google सारणी"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google फॉर्म"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google नकाशा"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google साइट"</string> + <string name="directory_type" msgid="2702987727566226354">"फोल्डर"</string> +</resources> diff --git a/res/values-mr/strings.xml b/res/values-mr/strings.xml index 5827eb9e0..cd0a44ded 100644 --- a/res/values-mr/strings.xml +++ b/res/values-mr/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"संकुचित करा"</string> <string name="menu_extract" msgid="8171946945982532262">"मध्ये काढा..."</string> <string name="menu_rename" msgid="1883113442688817554">"पुनर्नामित करा"</string> - <string name="menu_inspector" msgid="8633147986551632467">"गुणधर्म"</string> + <string name="menu_inspector" msgid="8217713416277319588">"माहिती मिळवा"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> मध्ये पहा"</string> <string name="menu_new_window" msgid="2947837751796109126">"नवीन विंडो"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"कट करा"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"हलवा"</string> <string name="button_dismiss" msgid="7235249361023803349">"डिसमिस करा"</string> <string name="button_retry" msgid="4011461781916631389">"पुन्हा प्रयत्न करा"</string> + <string name="button_clear" msgid="5412304437764369441">"साफ करा"</string> + <string name="button_show_provider" msgid="6905880493806292753">"पुरवठादारामध्ये दाखवा"</string> <string name="not_sorted" msgid="7813496644889115530">"क्रमवारी लावलेली नाही"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"नाव"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"सारांश"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"प्रकार"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"आकार"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"सुधारित"</string> - <string name="directory_children" msgid="8115290268549503262">"मुलांची संख्या"</string> + <string name="directory_items" msgid="6645621978998614003">"आयटमची संख्या"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"चढत्या क्रमाने"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"उतरत्या क्रमाने"</string> <string name="drawer_open" msgid="8071673398187261741">"रूट दर्शवा"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"फाईल उघडू शकत नाही"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"संग्रहणांमध्ये फायली उघडू शकत नाही"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"काही दस्तऐवज हटविण्यात अक्षम"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"गुणधर्म लोड करू शकत नाही"</string> <string name="share_via" msgid="8725082736005677161">"द्वारे सामायिक करा"</string> <string name="copy_notification_title" msgid="52256435625098456">"फायली कॉपी करणे"</string> <string name="compress_notification_title" msgid="6830195148113751021">"फायली संकुचित करत आहे"</string> diff --git a/res/values-ms/inspector_strings.xml b/res/values-ms/inspector_strings.xml new file mode 100644 index 000000000..dcbfc4f8d --- /dev/null +++ b/res/values-ms/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Maklumat"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Maklumat fail tidak dapat dimuatkan"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Maklumat nyahpepijat (pembangun sahaja)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadata mentah: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Butiran media"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Jenis fail ini dibuka menggunakan"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Fail ini dibekalkan oleh"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Tidak dipilih"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Tidak diketahui"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensi"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinat"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitud"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Bukaan"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Kelajuan pengatup"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Tempoh"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Diambil pada"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Jarak fokus"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Setara ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Jenis strim"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Saiz mentah (bait)"</string> +</resources> diff --git a/res/values-ms/mimes.xml b/res/values-ms/mimes.xml new file mode 100644 index 000000000..14a56d8cb --- /dev/null +++ b/res/values-ms/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Fail <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fail"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imej"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imej <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arkib <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplikasi Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Teks biasa"</string> + <string name="html_file_type" msgid="2034229603117527970">"Dokumen HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Dokumen PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Dokumen Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Pembentangan PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Hamparan Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Dokumen Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Hamparan Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Pembentangan Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Lukisan Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Jadual Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Borang Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Peta Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Tapak Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Folder"</string> +</resources> diff --git a/res/values-ms/strings.xml b/res/values-ms/strings.xml index 35adcad65..05c2dc3fe 100644 --- a/res/values-ms/strings.xml +++ b/res/values-ms/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Mampatkan"</string> <string name="menu_extract" msgid="8171946945982532262">"Ekstrak ke…"</string> <string name="menu_rename" msgid="1883113442688817554">"Namakan semula"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Sifat"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Dapatkan maklumat"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Lihat dalam <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Tetingkap baharu"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Potong"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Alih"</string> <string name="button_dismiss" msgid="7235249361023803349">"Ketepikan"</string> <string name="button_retry" msgid="4011461781916631389">"Cuba Lagi"</string> + <string name="button_clear" msgid="5412304437764369441">"Kosongkan"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Tunjukkan dalam pembekal"</string> <string name="not_sorted" msgid="7813496644889115530">"Tidak diisih"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nama"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Ringkasan"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Jenis"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Saiz"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Diubah suai"</string> - <string name="directory_children" msgid="8115290268549503262">"Bilangan Anak"</string> + <string name="directory_items" msgid="6645621978998614003">"Bilangan item"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Menaik"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Menurun"</string> <string name="drawer_open" msgid="8071673398187261741">"Tunjukkan akar"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Tidak dapat membuka fail"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Tidak dapat membuka fail dalam arkib"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Tidak dapat memadamkan sesetengah dokumen"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Sifat tidak dapat dimuatkan"</string> <string name="share_via" msgid="8725082736005677161">"Kongsi melalui"</string> <string name="copy_notification_title" msgid="52256435625098456">"Menyalin fail"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Memampatkan fail"</string> diff --git a/res/values-my/inspector_strings.xml b/res/values-my/inspector_strings.xml new file mode 100644 index 000000000..3b8ed882f --- /dev/null +++ b/res/values-my/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"အချက်အလက်"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ဖိုင်အချက်အလက်များကို ဖွင့်၍မရပါ"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"အမှားရှာပြင်ရန် အချက်အလက် (ဆော့ဖ်ဝဲအင်ဂျင်နီယာသာ)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"အကြမ်းထည် မက်တာဒေတာ− <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"မီဒီယာ အသေးစိတ်များ"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"၎င်းဖိုင်အမျိုးအစားကို ဖွင့်နိုင်သည့်အက်ပ်−"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ဤဖိုင်အား ဝန်ဆောင်ပေးသူ−"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"ရွေးမထားပါ"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"အမျိုးအမည်မသိ"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"အတိုင်းအတာများ"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> − <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"ကိုဩဒိနိတ်များ"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>၊ <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"အမြင့်"</string> + <string name="metadata_camera" msgid="2363009732801281319">"ကင်မရာ"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"အလင်းဝင်ပေါက်"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"ရှပ်တာအမြန်နှုန်း"</string> + <string name="metadata_duration" msgid="3115494422055472715">"ကြာချိန်"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"ရိုက်ထားသည့်အချိန်−"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ဆုံတာ"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO နှုန်း"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ထုတ်လွှင့်မှုအမျိုးအစားများ"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"အကြမ်းထည် အရွယ်အစား (ဘိုက်)"</string> +</resources> diff --git a/res/values-my/mimes.xml b/res/values-my/mimes.xml new file mode 100644 index 000000000..23e75cb40 --- /dev/null +++ b/res/values-my/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ဖိုင်"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ဖိုင်"</string> + <string name="image_file_type" msgid="3011633523704887793">"ပုံ"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> ပုံ"</string> + <string name="audio_file_type" msgid="3790525543519624632">"အသံ"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> အသံ"</string> + <string name="video_file_type" msgid="7290473366042482095">"ဗီဒီယို"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> ဗီဒီယို"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> မှတ်တမ်းဟောင်း"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android အပလီကေးရှင်း"</string> + <string name="txt_file_type" msgid="4677767777860724696">"ရိုးရိုးစာသား"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML နှင့်ရေးသည့်ဖိုင်"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF ဖိုင်"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word ဖိုင်"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint တင်ပြမှု"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel ဇယားကွက်"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google စာရွက်စာတမ်း"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google ဇယားကွက်"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google တင်ပြမှု"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google ပုံ"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google ဇယား"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ဖောင်"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google မြေပုံ"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google ဝဘ်ဆိုက်"</string> + <string name="directory_type" msgid="2702987727566226354">"အကန့်"</string> +</resources> diff --git a/res/values-my/strings.xml b/res/values-my/strings.xml index f0ec9869a..4af3db43c 100644 --- a/res/values-my/strings.xml +++ b/res/values-my/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"ချုံ့ရန်"</string> <string name="menu_extract" msgid="8171946945982532262">"ရွှေးချယ်ထည့်သွင်းရန်…"</string> <string name="menu_rename" msgid="1883113442688817554">"အမည်ပြောင်းပါ"</string> - <string name="menu_inspector" msgid="8633147986551632467">"သတ်မှတ်ချက်များ"</string> + <string name="menu_inspector" msgid="8217713416277319588">"အချက်အလက် ရယူရန်"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> တွင် ကြည့်ရန်"</string> <string name="menu_new_window" msgid="2947837751796109126">"ဝင်းဒိုးသစ်"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"ဖြတ်ယူပါ"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ရွှေ့ရန်"</string> <string name="button_dismiss" msgid="7235249361023803349">"ပယ်ရန်"</string> <string name="button_retry" msgid="4011461781916631389">"ပြန်စမ်းကြည့်ပါ"</string> + <string name="button_clear" msgid="5412304437764369441">"ရှင်းထုတ်ရန်"</string> + <string name="button_show_provider" msgid="6905880493806292753">"ပံ့ပိုးပေးသူတွင် ပြရန်"</string> <string name="not_sorted" msgid="7813496644889115530">"စီမထားပါ"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"အမည်"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"အနှစ်ချုပ်"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"အမျိုးအစား"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"အရွယ်အစား"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"မွမ်းမံပြီး"</string> - <string name="directory_children" msgid="8115290268549503262">"ကလေးအရေအတွက်"</string> + <string name="directory_items" msgid="6645621978998614003">"ပစ္စည်းအရေအတွက်"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ငယ်စဉ်ကြီးလိုက်"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"ကြီးစဉ်ငယ်လိုက်"</string> <string name="drawer_open" msgid="8071673398187261741">"ပင်မဖိုင်တွဲများကို ပြပါ"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ဖိုင်ကို ဖွင့်၍မရပါ"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"မှတ်တမ်းဟောင်းထဲမှ ဖိုင်များကို ဖွင့်၍မရပါ"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"အချို့စာဖိုင်များကို ဖျက်၍မရပါ"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"သတ်မှတ်ချက်များကို ဖွင့်၍မရပါ"</string> <string name="share_via" msgid="8725082736005677161">"အောက်ပါနည်းလမ်းဖြင့် မျှဝေပါ"</string> <string name="copy_notification_title" msgid="52256435625098456">"ဖိုင်များကူးယူနေသည်"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ဖိုင်များကို ချုံ့နေသည်"</string> diff --git a/res/values-nb/inspector_strings.xml b/res/values-nb/inspector_strings.xml new file mode 100644 index 000000000..ed750d88b --- /dev/null +++ b/res/values-nb/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informasjon"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Kunne ikke laste inn filinformasjonen"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Feilsøkingsinfo (bare for utviklere)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Råmetadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Mediadetaljer"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Denne filtypen åpnes med"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Denne filen leveres av"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Ikke valgt"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Ukjent"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensjoner"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinater"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Høyde over havet"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Blender"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Lukkerhastighet"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Varighet"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Tatt"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Brennvidde"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Tilsvarende ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Strømtyper"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Råstørrelse (byte)"</string> +</resources> diff --git a/res/values-nb/mimes.xml b/res/values-nb/mimes.xml new file mode 100644 index 000000000..eb89ea29e --- /dev/null +++ b/res/values-nb/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g>-fil"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fil"</string> + <string name="image_file_type" msgid="3011633523704887793">"Bilde"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g>-bilde"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Lyd"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g>-lyd"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g>-video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g>-arkiv"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android-app"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Ren tekst"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-dokument"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF-dokument"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word-dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint-presentasjon"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-regneark"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google-dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google-regneark"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google-presentasjon"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google-tegning"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google-tabell"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google-skjema"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google-kart"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google-nettsted"</string> + <string name="directory_type" msgid="2702987727566226354">"Mappe"</string> +</resources> diff --git a/res/values-nb/strings.xml b/res/values-nb/strings.xml index df7507941..260d0f00d 100644 --- a/res/values-nb/strings.xml +++ b/res/values-nb/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Komprimer"</string> <string name="menu_extract" msgid="8171946945982532262">"Pakk ut til …"</string> <string name="menu_rename" msgid="1883113442688817554">"Gi nytt navn"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Egenskaper"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Hent inn informasjon"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Se i <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nytt vindu"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Klipp ut"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Flytt"</string> <string name="button_dismiss" msgid="7235249361023803349">"Avvis"</string> <string name="button_retry" msgid="4011461781916631389">"Prøv på nytt"</string> + <string name="button_clear" msgid="5412304437764369441">"Fjern"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Vis i leverandøren"</string> <string name="not_sorted" msgid="7813496644889115530">"Ikke sortert"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Navn"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Sammendrag"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Størrelse"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Endret"</string> - <string name="directory_children" msgid="8115290268549503262">"Antall barn"</string> + <string name="directory_items" msgid="6645621978998614003">"Antall elementer"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Stigende"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Synkende"</string> <string name="drawer_open" msgid="8071673398187261741">"Vis røtter"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Kan ikke åpne filen"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Kan ikke åpne filer i arkiver"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Kunne ikke slette enkelte dokumenter"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Kunne ikke laste inn egenskapene"</string> <string name="share_via" msgid="8725082736005677161">"Del via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopierer filer"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Komprimerer filer"</string> diff --git a/res/values-ne/inspector_strings.xml b/res/values-ne/inspector_strings.xml new file mode 100644 index 000000000..90d94132e --- /dev/null +++ b/res/values-ne/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"जानकारी"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"फाइलसम्बन्धी जानकारी लोड गर्न सकिएन"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"डिबगसम्बन्धी जानकारी (विकासकर्ताका लागि मात्र)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"अप्रशोधित मेटाडेटा: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"मिडियासम्बन्धी विवरणहरू"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"यस प्रकारको फाइल निम्न अनुप्रयोगमार्फत खुल्छ"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"यो फाइलको प्रदायक"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"चयन गरिएको छैन"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"अज्ञात"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"उचाइ तथा चौडाइ"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> एम. पि."</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"तस्बिर खिचेको स्थानका भौगोलिक स्थितिहरू"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"उचाइ"</string> + <string name="metadata_camera" msgid="2363009732801281319">"क्यामेरा"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"अपार्चर"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"सटरको गति"</string> + <string name="metadata_duration" msgid="3115494422055472715">"अवधि"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"तस्बिर खिचेको समय"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"फोकल लम्बाइ"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> मि. मि."</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO बराबर"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"स्ट्रिमका प्रकारहरू"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"अप्रशोधित आकार (बाइट)"</string> +</resources> diff --git a/res/values-ne/mimes.xml b/res/values-ne/mimes.xml new file mode 100644 index 000000000..efbb6f4d9 --- /dev/null +++ b/res/values-ne/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> फाइल"</string> + <string name="generic_file_type" msgid="1415477154743494280">"फाइल"</string> + <string name="image_file_type" msgid="3011633523704887793">"छवि"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> छवि"</string> + <string name="audio_file_type" msgid="3790525543519624632">"अडियो"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> अडियो"</string> + <string name="video_file_type" msgid="7290473366042482095">"भिडियो"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> भिडियो"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> अभिलेख"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android अनुप्रयोग"</string> + <string name="txt_file_type" msgid="4677767777860724696">"सामान्य पाठ"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML कागजात"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF कागजात"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word कागजात"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint प्रस्तुतीकरण"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel स्प्रेडसिट"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google कागजात"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google स्प्रिेडसिट"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google प्रस्तुतीकरण"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google रेखाचित्र"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google तालिका"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google फारम"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google नक्सा"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google साइट"</string> + <string name="directory_type" msgid="2702987727566226354">"फोल्डर"</string> +</resources> diff --git a/res/values-ne/strings.xml b/res/values-ne/strings.xml index 1903f51d8..25ca27766 100644 --- a/res/values-ne/strings.xml +++ b/res/values-ne/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"कम्प्रेस गर्नुहोस्"</string> <string name="menu_extract" msgid="8171946945982532262">"यसमा एकस्ट्र्याक्ट गर्नुहोस्…"</string> <string name="menu_rename" msgid="1883113442688817554">"पुनःनामाकरण गर्नुहोस्"</string> - <string name="menu_inspector" msgid="8633147986551632467">"विशेषताहरू"</string> + <string name="menu_inspector" msgid="8217713416277319588">"जानकारी प्राप्त गर्नुहोस्"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> मा हेर्नुहोस्"</string> <string name="menu_new_window" msgid="2947837751796109126">"नयाँ विन्डो"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"काट्नुहोस्"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"सार्नुहोस्"</string> <string name="button_dismiss" msgid="7235249361023803349">"खारेज गर्नुहोस्"</string> <string name="button_retry" msgid="4011461781916631389">"फेरि प्रयास गर्नुहोस्"</string> + <string name="button_clear" msgid="5412304437764369441">"खाली गर्नुहोस्"</string> + <string name="button_show_provider" msgid="6905880493806292753">"प्रदायकको सेवामा देखाउनुहोस्"</string> <string name="not_sorted" msgid="7813496644889115530">"क्रमबद्ध गरिएको छैन"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"नाम"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"सारांश"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"प्रकार"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"आकार"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"परिमार्जित"</string> - <string name="directory_children" msgid="8115290268549503262">"बालबालिकाहरूको सङ्ख्या"</string> + <string name="directory_items" msgid="6645621978998614003">"वस्तुहरूको संख्या"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"बढ्दो क्रम"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"घट्दो क्रम"</string> <string name="drawer_open" msgid="8071673398187261741">"मूल ठाउँहरू देखाउनुहोस्"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"फाइल खोल्न सकिँदैन"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"अभिलेखहरूमा भएका फाइलहरू खोल्न सकिँदैन"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"केही कागजातहरूलाई मेट्न सकिएन"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"विशेषताहरू लोड गर्न सकिएन"</string> <string name="share_via" msgid="8725082736005677161">"निम्न मार्फत साझेदारी गर्नुहोस्"</string> <string name="copy_notification_title" msgid="52256435625098456">"फाइलहरूका प्रतिलिपि बनाउँदै"</string> <string name="compress_notification_title" msgid="6830195148113751021">"फाइलहरू कम्प्रेस गर्दै"</string> diff --git a/res/values-nl/inspector_strings.xml b/res/values-nl/inspector_strings.xml new file mode 100644 index 000000000..58bb6bbc0 --- /dev/null +++ b/res/values-nl/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informatie"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Bestandsgegevens kunnen niet worden geladen"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Foutopsporingsinfo (alleen ontwikkelaars)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Onbewerkte metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Mediagegevens"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Dit type bestand wordt geopend met"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Dit bestand wordt geleverd door"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Niet geselecteerd"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Onbekend"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Afmetingen"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coördinaten"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Hoogte"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Camera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Diafragma"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Sluitersnelheid"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Duur"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Gemaakt op"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Focuslengte"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO-equivalent"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Streamtypen"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Onbewerkte grootte (bytes)"</string> +</resources> diff --git a/res/values-nl/mimes.xml b/res/values-nl/mimes.xml new file mode 100644 index 000000000..1f762becf --- /dev/null +++ b/res/values-nl/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g>-bestand"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Bestand"</string> + <string name="image_file_type" msgid="3011633523704887793">"Afbeelding"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g>-afbeelding"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g>-audio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g>-video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g>-archief"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android-app"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Platte tekst"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-document"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Pdf-document"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word-document"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint-presentatie"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-spreadsheet"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google-document"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google-spreadsheet"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google-presentatie"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google-tekening"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google-tabel"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google-formulier"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google-kaart"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google-site"</string> + <string name="directory_type" msgid="2702987727566226354">"Map"</string> +</resources> diff --git a/res/values-nl/strings.xml b/res/values-nl/strings.xml index 0124f8aaa..8abd7cd2f 100644 --- a/res/values-nl/strings.xml +++ b/res/values-nl/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Comprimeren"</string> <string name="menu_extract" msgid="8171946945982532262">"Uitpakken naar…"</string> <string name="menu_rename" msgid="1883113442688817554">"Naam wijzigen"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Eigenschappen"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Informatie bekijken"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Bekijken in <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nieuw venster"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Knippen"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Verplaatsen"</string> <string name="button_dismiss" msgid="7235249361023803349">"Sluiten"</string> <string name="button_retry" msgid="4011461781916631389">"Opnieuw proberen"</string> + <string name="button_clear" msgid="5412304437764369441">"Wissen"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Weergeven in provider"</string> <string name="not_sorted" msgid="7813496644889115530">"Niet gesorteerd"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Naam"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Overzicht"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Type"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Grootte"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Aangepast"</string> - <string name="directory_children" msgid="8115290268549503262">"Aantal kinderen"</string> + <string name="directory_items" msgid="6645621978998614003">"Aantal items"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Oplopend"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Aflopend"</string> <string name="drawer_open" msgid="8071673398187261741">"Roots weergeven"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Kan bestand niet openen"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Kan bestanden in archieven niet openen"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Kan bepaalde documenten niet verwijderen"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Eigenschappen kunnen niet worden geladen"</string> <string name="share_via" msgid="8725082736005677161">"Delen via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Bestanden kopiëren"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Bestanden comprimeren"</string> diff --git a/res/values-pa/inspector_strings.xml b/res/values-pa/inspector_strings.xml new file mode 100644 index 000000000..c546a0ba7 --- /dev/null +++ b/res/values-pa/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"ਜਾਣਕਾਰੀ"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ਫ਼ਾਈਲ ਜਾਣਕਾਰੀ ਲੋਡ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"ਡੀਬੱਗ ਜਾਣਕਾਰੀ (ਸਿਰਫ਼ ਵਿਕਾਸਕਾਰ)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw ਮੈਟਾਡੈਟਾ: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"ਮੀਡੀਆ ਦੇ ਵੇਰਵੇ"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"ਇਸ ਕਿਸਮ ਦੀ ਫ਼ਾਈਲ ਇਸ ਨਾਲ ਖੁੱਲ੍ਹਦੀ ਹੈ:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ਇਹ ਫ਼ਾਈਲ ਇਹਨਾਂ ਵੱਲੋਂ ਦਿੱਤੀ ਗਈ ਹੈ:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"ਚੁਣੀ ਨਹੀਂ ਗਈ"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"ਅਗਿਆਤ"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"ਮਾਪ"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> ਮੈਗਾ ਪਿਕਸਲ"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"ਲੰਬਕਾਰ ਅਤੇ ਵਿਥਕਾਰ"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ਉਚਾਈ"</string> + <string name="metadata_camera" msgid="2363009732801281319">"ਕੈਮਰਾ"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"ਕੈਮਰੇ ਦੀ ਮੋਰੀ"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"ਸ਼ਟਰ ਦੀ ਗਤੀ"</string> + <string name="metadata_duration" msgid="3115494422055472715">"ਮਿਆਦ"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"ਇਸ ਮਿਤੀ ਨੂੰ ਖਿੱਚੀ ਗਈ:"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ਫੋਕਲ ਲੰਬਾਈ"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>ਮਿ.ਮੀ."</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ਦੇ ਬਰਾਬਰ"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ਸਟ੍ਰੀਮ ਦੀਆਂ ਕਿਸਮਾਂ"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Raw ਆਕਾਰ (ਬਾਈਟ)"</string> +</resources> diff --git a/res/values-pa/mimes.xml b/res/values-pa/mimes.xml new file mode 100644 index 000000000..85343941b --- /dev/null +++ b/res/values-pa/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ਫ਼ਾਈਲ"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ਫ਼ਾਈਲ"</string> + <string name="image_file_type" msgid="3011633523704887793">"ਚਿੱਤਰ"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> ਚਿੱਤਰ"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ਔਡੀਓ"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ਔਡੀਓ"</string> + <string name="video_file_type" msgid="7290473366042482095">"ਵੀਡੀਓ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> ਵੀਡੀਓ"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> ਪੁਰਾਲੇਖ"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android ਐਪਲੀਕੇਸ਼ਨ"</string> + <string name="txt_file_type" msgid="4677767777860724696">"ਸਧਾਰਨ ਲਿਖਤ"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML ਦਸਤਾਵੇਜ਼"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF ਦਸਤਾਵੇਜ਼"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word ਦਸਤਾਵੇਜ਼"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint ਪੇਸ਼ਕਾਰੀ"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel ਸਪਰੈੱਡਸ਼ੀਟ"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google ਦਸਤਾਵੇਜ਼"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google ਸਪਰੈੱਡਸ਼ੀਟ"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google ਪੇਸ਼ਕਾਰੀ"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google ਚਿੱਤਰਕਾਰੀ"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google ਸਾਰਨੀ"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ਫ਼ਾਰਮ"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google ਨਕਸ਼ਾ"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google ਸਾਈਟ"</string> + <string name="directory_type" msgid="2702987727566226354">"ਫੋਲਡਰ"</string> +</resources> diff --git a/res/values-pa/strings.xml b/res/values-pa/strings.xml index abe79b397..82161e756 100644 --- a/res/values-pa/strings.xml +++ b/res/values-pa/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"ਆਕਾਰ ਛੋਟਾ ਕਰੋ"</string> <string name="menu_extract" msgid="8171946945982532262">"ਇਸ ਵਿੱਚ ਐਕਸਟ੍ਰੈਕਟ ਕਰੋ…"</string> <string name="menu_rename" msgid="1883113442688817554">"ਮੁੜ-ਨਾਮਕਰਨ ਕਰੋ"</string> - <string name="menu_inspector" msgid="8633147986551632467">"ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ"</string> + <string name="menu_inspector" msgid="8217713416277319588">"ਜਾਣਕਾਰੀ ਪ੍ਰਾਪਤ ਕਰੋ"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> ਵਿੱਚ ਵੇਖੋ"</string> <string name="menu_new_window" msgid="2947837751796109126">"ਨਵੀਂ ਵਿੰਡੋ"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"ਕੱਟੋ"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ਤਬਦੀਲ ਕਰੋ"</string> <string name="button_dismiss" msgid="7235249361023803349">"ਖਾਰਜ ਕਰੋ"</string> <string name="button_retry" msgid="4011461781916631389">"ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ"</string> + <string name="button_clear" msgid="5412304437764369441">"ਕਲੀਅਰ ਕਰੋ"</string> + <string name="button_show_provider" msgid="6905880493806292753">"ਪ੍ਰਦਾਨਕ ਸੇਵਾ ਵਿੱਚ ਦਿਖਾਓ"</string> <string name="not_sorted" msgid="7813496644889115530">"ਛਾਂਟੀ ਨਹੀਂ ਕੀਤੀ ਗਈ"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"ਨਾਮ"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"ਸਾਰਾਂਸ਼"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"ਕਿਸਮ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"ਆਕਾਰ"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"ਸੋਧਣ ਦਾ ਸਮਾਂ"</string> - <string name="directory_children" msgid="8115290268549503262">"ਬੱਚਿਆਂ ਦੀ ਗਿਣਤੀ"</string> + <string name="directory_items" msgid="6645621978998614003">"ਆਈਟਮਾਂ ਦੀ ਗਿਣਤੀ"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ਵਧਦਾ ਕ੍ਰਮ"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"ਘਟਦਾ ਕ੍ਰਮ"</string> <string name="drawer_open" msgid="8071673398187261741">"ਰੂਟਾਂ ਨੂੰ ਵਿਖਾਓ"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ਫ਼ਾਈਲ ਨੂੰ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"ਪੁਰਾਲੇਖਾਂ ਵਿੱਚ ਫ਼ਾਈਲਾਂ ਨੂੰ ਖੋਲ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"ਕੁਝ ਦਸਤਾਵੇਜ਼ਾਂ ਨੂੰ ਮਿਟਾਉਣ ਦੇ ਅਯੋਗ"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ ਨੂੰ ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ"</string> <string name="share_via" msgid="8725082736005677161">"ਇਸ ਰਾਹੀਂ ਸਾਂਝਾ ਕਰੋ"</string> <string name="copy_notification_title" msgid="52256435625098456">"ਫ਼ਾਈਲਾਂ ਕਾਪੀ ਕਰ ਰਿਹਾ ਹੈ"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ਆਕਾਰ ਛੋਟਾ ਕੀਤਾ ਜਾ ਰਿਹਾ"</string> diff --git a/res/values-pl/inspector_strings.xml b/res/values-pl/inspector_strings.xml new file mode 100644 index 000000000..2c92124d1 --- /dev/null +++ b/res/values-pl/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informacje"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Nie udało się załadować informacji o pliku"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informacje o debugowaniu (tylko programiści)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadane pliku RAW: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Informacje o pliku multimedialnym"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ten rodzaj pliku możesz otworzyć w:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Dostawca pliku:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nie wybrano"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Nieznana"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Wymiary"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Współrzędne"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Wysokość"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Aparat"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Przysłona"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Szybkość migawki"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Czas"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Data wykonania"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Ogniskowa"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Równoważnik ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Typy strumienia"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Rzeczywisty rozmiar pliku (bajty)"</string> +</resources> diff --git a/res/values-pl/mimes.xml b/res/values-pl/mimes.xml new file mode 100644 index 000000000..6e96f69d7 --- /dev/null +++ b/res/values-pl/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Plik <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Plik"</string> + <string name="image_file_type" msgid="3011633523704887793">"Zdjęcie"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Obraz <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Plik audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Plik audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Plik wideo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Plik wideo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Archiwum <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplikacja na Androida"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Zwykły tekst"</string> + <string name="html_file_type" msgid="2034229603117527970">"Dokument HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Dokument PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Dokument Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Prezentacja PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Arkusz kalkulacyjny Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Dokument Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Arkusz kalkulacyjny Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Prezentacja Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Rysunek Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabela Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formularz Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Witryna Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Folder"</string> +</resources> diff --git a/res/values-pl/strings.xml b/res/values-pl/strings.xml index 4949a69e8..295d2dd48 100644 --- a/res/values-pl/strings.xml +++ b/res/values-pl/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Skompresuj"</string> <string name="menu_extract" msgid="8171946945982532262">"Rozpakuj do…"</string> <string name="menu_rename" msgid="1883113442688817554">"Zmień nazwę"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Właściwości"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Zobacz informacje"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Zobacz w: <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nowe okno"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Wytnij"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Przenieś"</string> <string name="button_dismiss" msgid="7235249361023803349">"Odrzuć"</string> <string name="button_retry" msgid="4011461781916631389">"Spróbuj jeszcze raz"</string> + <string name="button_clear" msgid="5412304437764369441">"Zrezygnuj"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Pokaż w usłudze"</string> <string name="not_sorted" msgid="7813496644889115530">"Brak sortowania"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nazwa"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Podsumowanie"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Typ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Rozmiar"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Zmieniono"</string> - <string name="directory_children" msgid="8115290268549503262">"Liczba dzieci"</string> + <string name="directory_items" msgid="6645621978998614003">"Liczba elementów"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Rosnąco"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Malejąco"</string> <string name="drawer_open" msgid="8071673398187261741">"Pokaż elementy główne"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Nie można otworzyć pliku"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Nie można otworzyć plików w archiwum"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Nie można usunąć niektórych dokumentów"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Nie udało się załadować właściwości"</string> <string name="share_via" msgid="8725082736005677161">"Udostępnij przez"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopiowanie plików"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Kompresuję pliki"</string> diff --git a/res/values-pt-rBR/inspector_strings.xml b/res/values-pt-rBR/inspector_strings.xml new file mode 100644 index 000000000..4a11a86b1 --- /dev/null +++ b/res/values-pt-rBR/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informações"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Não foi possível carregar as informações do arquivo"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Info de depuração (apenas desenvolvimento)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadados brutos: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detalhes de mídia"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Este tipo de arquivo é aberto no app"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Este arquivo é fornecido por"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Não selecionado"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Desconhecido"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensões"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordenadas"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitude"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Câmera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Abertura"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Velocidade do obturador"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Duração"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Tirada em"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Distância focal:"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Equivalente de ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Tipos de stream"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Tamanho bruto (bytes)"</string> +</resources> diff --git a/res/values-pt-rBR/mimes.xml b/res/values-pt-rBR/mimes.xml new file mode 100644 index 000000000..07dd5e2f9 --- /dev/null +++ b/res/values-pt-rBR/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Arquivo <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Arquivo"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imagem"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imagem <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Áudio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Áudio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Vídeo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Vídeo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arquivo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplicativo Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Texto simples"</string> + <string name="html_file_type" msgid="2034229603117527970">"Documento HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Documento PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Documento do Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Apresentação PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Planilha do Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Documento do Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Planilha do Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Apresentação do Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Desenho do Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabela do Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulário do Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa do Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Site do Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Pasta"</string> +</resources> diff --git a/res/values-pt-rBR/strings.xml b/res/values-pt-rBR/strings.xml index 3ee2c03ab..e7ae0e36a 100644 --- a/res/values-pt-rBR/strings.xml +++ b/res/values-pt-rBR/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Compactar"</string> <string name="menu_extract" msgid="8171946945982532262">"Extrair para…"</string> <string name="menu_rename" msgid="1883113442688817554">"Renomear"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propriedades"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Ver informações"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Ver em <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nova janela"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Recortar"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Mover"</string> <string name="button_dismiss" msgid="7235249361023803349">"Dispensar"</string> <string name="button_retry" msgid="4011461781916631389">"Tentar novamente"</string> + <string name="button_clear" msgid="5412304437764369441">"Limpar"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Mostrar no provedor"</string> <string name="not_sorted" msgid="7813496644889115530">"Sem classificação"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nome"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Resumo"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipo"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Tamanho"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modificação"</string> - <string name="directory_children" msgid="8115290268549503262">"Número de filhos"</string> + <string name="directory_items" msgid="6645621978998614003">"Número de itens"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Crescente"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Decrescente"</string> <string name="drawer_open" msgid="8071673398187261741">"Mostrar raízes"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Não é possível abrir o arquivo"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Não é possível abrir itens arquivados"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Não foi possível excluir alguns documentos"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Não foi possível carregar as propriedades"</string> <string name="share_via" msgid="8725082736005677161">"Compartilhar via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copiando arquivos"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Compactando arquivos"</string> diff --git a/res/values-pt-rPT/inspector_strings.xml b/res/values-pt-rPT/inspector_strings.xml new file mode 100644 index 000000000..37775a83c --- /dev/null +++ b/res/values-pt-rPT/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informações"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Não foi possível carregar as informações do ficheiro"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informação de depuração (apenas programadores)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadados não processados: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detalhes de multimédia"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Este tipo de ficheiro abre com a aplicação"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Este ficheiro é fornecido por"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Não selecionada"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Desconhecida"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensões"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordenadas"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitude"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Câmara"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Abertura"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Velocidade do obturador"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Duração"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Tirada em"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Distância focal"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Equivalente de ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Tipos de transmissão em fluxo contínuo"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Tamanho não processado (bytes)"</string> +</resources> diff --git a/res/values-pt-rPT/mimes.xml b/res/values-pt-rPT/mimes.xml new file mode 100644 index 000000000..ec8d2fd99 --- /dev/null +++ b/res/values-pt-rPT/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Ficheiro <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Ficheiro"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imagem"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imagem <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Áudio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Áudio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Vídeo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Vídeo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arquivo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplicação Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Texto simples"</string> + <string name="html_file_type" msgid="2034229603117527970">"Documento HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Documento PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Documento do Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Apresentação PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Folha de cálculo Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Documento do Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Folha de cálculo do Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Apresentação do Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Desenho do Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabela do Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulário do Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa do Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Site do Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Pasta"</string> +</resources> diff --git a/res/values-pt-rPT/strings.xml b/res/values-pt-rPT/strings.xml index 4a248548b..4ac0f490a 100644 --- a/res/values-pt-rPT/strings.xml +++ b/res/values-pt-rPT/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Comprimir"</string> <string name="menu_extract" msgid="8171946945982532262">"Extrair para…"</string> <string name="menu_rename" msgid="1883113442688817554">"Mudar o nome"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propriedades"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Obter informações"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Ver no <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nova janela"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cortar"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Mover"</string> <string name="button_dismiss" msgid="7235249361023803349">"Ignorar"</string> <string name="button_retry" msgid="4011461781916631389">"Tentar novamente"</string> + <string name="button_clear" msgid="5412304437764369441">"Limpar"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Mostrar no fornecedor"</string> <string name="not_sorted" msgid="7813496644889115530">"Não ordenados"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nome"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Resumo"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipo"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Tamanho"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modificado"</string> - <string name="directory_children" msgid="8115290268549503262">"Número de crianças"</string> + <string name="directory_items" msgid="6645621978998614003">"Número de itens"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Ascendente"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Descendente"</string> <string name="drawer_open" msgid="8071673398187261741">"Mostrar raízes"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Não é possível abrir o ficheiro"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Não é possível abrir ficheiros nos arquivos"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Não é possível eliminar alguns documentos"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Não foi possível carregar as propriedades"</string> <string name="share_via" msgid="8725082736005677161">"Partilhar através de"</string> <string name="copy_notification_title" msgid="52256435625098456">"A copiar ficheiros"</string> <string name="compress_notification_title" msgid="6830195148113751021">"A comprimir ficheiros…"</string> @@ -91,24 +92,24 @@ <string name="delete_notification_title" msgid="2512757431856830792">"A eliminar ficheiros"</string> <string name="copy_remaining" msgid="5390517377265177727">"Faltam <xliff:g id="DURATION">%s</xliff:g>"</string> <plurals name="copy_begin" formatted="false" msgid="151184708996738192"> - <item quantity="one">Copying <xliff:g id="COUNT_1">%1$d</xliff:g> items.</item> - <item quantity="other">A copiar <xliff:g id="COUNT_1">%1$d</xliff:g> itens</item> + <item quantity="one">A copiar <xliff:g id="COUNT_0">%1$d</xliff:g> item…</item> + <item quantity="other">A copiar <xliff:g id="COUNT_1">%1$d</xliff:g> itens…</item> </plurals> <plurals name="compress_begin" formatted="false" msgid="3534158317098678895"> - <item quantity="one">Compressing <xliff:g id="COUNT_1">%1$d</xliff:g> files.</item> + <item quantity="one">A comprimir <xliff:g id="COUNT_0">%1$d</xliff:g> ficheiro…</item> <item quantity="other">A comprimir <xliff:g id="COUNT_1">%1$d</xliff:g> ficheiros…</item> </plurals> <plurals name="extract_begin" formatted="false" msgid="1006380679562903749"> - <item quantity="one">Extracting <xliff:g id="COUNT_1">%1$d</xliff:g> files.</item> + <item quantity="one">A extrair <xliff:g id="COUNT_0">%1$d</xliff:g> ficheiro…</item> <item quantity="other">A extrair <xliff:g id="COUNT_1">%1$d</xliff:g> ficheiros…</item> </plurals> <plurals name="move_begin" formatted="false" msgid="1464229874265756956"> - <item quantity="one">Moving <xliff:g id="COUNT_1">%1$d</xliff:g> items.</item> - <item quantity="other">A mover <xliff:g id="COUNT_1">%1$d</xliff:g> itens</item> + <item quantity="one">A mover <xliff:g id="COUNT_0">%1$d</xliff:g> item…</item> + <item quantity="other">A mover <xliff:g id="COUNT_1">%1$d</xliff:g> itens…</item> </plurals> <plurals name="deleting" formatted="false" msgid="1729138001178158901"> - <item quantity="one">Deleting <xliff:g id="COUNT_1">%1$d</xliff:g> items.</item> - <item quantity="other">A eliminar <xliff:g id="COUNT_1">%1$d</xliff:g> itens</item> + <item quantity="one">A eliminar <xliff:g id="COUNT_0">%1$d</xliff:g> item…</item> + <item quantity="other">A eliminar <xliff:g id="COUNT_1">%1$d</xliff:g> itens…</item> </plurals> <string name="undo" msgid="2902438994196400565">"Anular"</string> <string name="copy_preparing" msgid="5326063807006898223">"A preparar para copiar…"</string> @@ -118,50 +119,50 @@ <string name="delete_preparing" msgid="6513863752916028147">"A preparar para eliminar…"</string> <string name="delete_progress" msgid="2627631054702306423">"<xliff:g id="COUNT_0">%1$d</xliff:g>/<xliff:g id="TOTALCOUNT">%2$d</xliff:g>"</string> <plurals name="copy_error_notification_title" formatted="false" msgid="3188432450429390963"> - <item quantity="one">Couldn’t copy <xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one">Não foi possível copiar <xliff:g id="COUNT_0">%1$d</xliff:g> item</item> <item quantity="other">Não foi possível copiar <xliff:g id="COUNT_1">%1$d</xliff:g> itens</item> </plurals> <plurals name="compress_error_notification_title" formatted="false" msgid="3043630066678213644"> - <item quantity="one">Couldn’t compress <xliff:g id="COUNT_1">%1$d</xliff:g> files</item> + <item quantity="one">Não foi possível comprimir <xliff:g id="COUNT_0">%1$d</xliff:g> ficheiro</item> <item quantity="other">Não foi possível comprimir <xliff:g id="COUNT_1">%1$d</xliff:g> ficheiros</item> </plurals> <plurals name="move_error_notification_title" formatted="false" msgid="2185736082411854754"> - <item quantity="one">Couldn’t move <xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one">Não foi possível mover <xliff:g id="COUNT_0">%1$d</xliff:g> item</item> <item quantity="other">Não foi possível mover <xliff:g id="COUNT_1">%1$d</xliff:g> itens</item> </plurals> <plurals name="delete_error_notification_title" formatted="false" msgid="7568122018481625267"> - <item quantity="one">Couldn’t delete <xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one">Não foi possível eliminar <xliff:g id="COUNT_0">%1$d</xliff:g> item</item> <item quantity="other">Não foi possível eliminar <xliff:g id="COUNT_1">%1$d</xliff:g> itens</item> </plurals> <string name="notification_touch_for_details" msgid="2385563502445129570">"Tocar para ver detalhes"</string> <string name="close" msgid="905969391788869975">"Fechar"</string> <plurals name="copy_failure_alert_content" formatted="false" msgid="5570549471912990536"> - <item quantity="one">These files weren’t copied: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">Este ficheiro não foi copiado: <xliff:g id="LIST_0">%1$s</xliff:g></item> <item quantity="other">Estes ficheiros não foram copiados: <xliff:g id="LIST_1">%1$s</xliff:g></item> </plurals> <plurals name="compress_failure_alert_content" formatted="false" msgid="5760632881868842400"> - <item quantity="one">These files weren’t compressed: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">Este ficheiro não foi comprimido: <xliff:g id="LIST_0">%1$s</xliff:g></item> <item quantity="other">Estes ficheiros não foram comprimidos: <xliff:g id="LIST_1">%1$s</xliff:g></item> </plurals> <plurals name="extract_failure_alert_content" formatted="false" msgid="7572748127571720803"> - <item quantity="one">These files weren’t extracted: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">Este ficheiro não foi extraído: <xliff:g id="LIST_0">%1$s</xliff:g></item> <item quantity="other">Estes ficheiros não foram extraídos: <xliff:g id="LIST_1">%1$s</xliff:g></item> </plurals> <plurals name="move_failure_alert_content" formatted="false" msgid="2747390342670799196"> - <item quantity="one">These files weren’t moved: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">Este ficheiro não foi movido: <xliff:g id="LIST_0">%1$s</xliff:g></item> <item quantity="other">Estes ficheiros não foram movidos: <xliff:g id="LIST_1">%1$s</xliff:g></item> </plurals> <plurals name="delete_failure_alert_content" formatted="false" msgid="6122372614839711711"> - <item quantity="one">These files weren’t deleted: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">Este ficheiro não foi eliminado: <xliff:g id="LIST_0">%1$s</xliff:g></item> <item quantity="other">Estes ficheiros não foram eliminados: <xliff:g id="LIST_1">%1$s</xliff:g></item> </plurals> <plurals name="copy_converted_warning_content" formatted="false" msgid="7433742181712126588"> - <item quantity="one">These files were converted to another format: <xliff:g id="LIST_1">%1$s</xliff:g></item> + <item quantity="one">Este ficheiro foi convertido para outro formato: <xliff:g id="LIST_0">%1$s</xliff:g></item> <item quantity="other">Estes ficheiros foram convertidos para outro formato: <xliff:g id="LIST_1">%1$s</xliff:g></item> </plurals> <plurals name="clipboard_files_clipped" formatted="false" msgid="4847061634862926902"> - <item quantity="one">Copied <xliff:g id="COUNT_1">%1$d</xliff:g> items to clipboard.</item> - <item quantity="other">Foram copiados <xliff:g id="COUNT_1">%1$d</xliff:g> itens para a área de transferência</item> + <item quantity="one">Copiou <xliff:g id="COUNT_0">%1$d</xliff:g> item para a área de transferência.</item> + <item quantity="other">Copiou <xliff:g id="COUNT_1">%1$d</xliff:g> itens para a área de transferência.</item> </plurals> <string name="file_operation_rejected" msgid="4301554203329008794">"O ficheiro não permite a operação."</string> <string name="file_operation_error" msgid="2234357335716533795">"Falha na operação do ficheiro."</string> @@ -175,25 +176,25 @@ <string name="allow" msgid="1275746941353040309">"Permitir"</string> <string name="deny" msgid="5127201668078153379">"Recusar"</string> <plurals name="elements_selected" formatted="false" msgid="4448165978637163692"> - <item quantity="one"><xliff:g id="COUNT_1">%1$d</xliff:g> selected</item> + <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> selecionado</item> <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> selecionados</item> </plurals> <plurals name="elements_dragged" formatted="false" msgid="5932571296037626279"> - <item quantity="one"><xliff:g id="COUNT_1">%1$d</xliff:g> items</item> + <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> item</item> <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> itens</item> </plurals> <string name="delete_filename_confirmation_message" msgid="8338069763240613258">"Pretende eliminar \"<xliff:g id="NAME">%1$s</xliff:g>\"?"</string> <string name="delete_foldername_confirmation_message" msgid="9084085260877704140">"Pretende eliminar a pasta \"<xliff:g id="NAME">%1$s</xliff:g>\" e os respetivos conteúdos?"</string> <plurals name="delete_files_confirmation_message" formatted="false" msgid="4866664063250034142"> - <item quantity="one">Delete <xliff:g id="COUNT_1">%1$d</xliff:g> files?</item> + <item quantity="one">Pretende eliminar <xliff:g id="COUNT_0">%1$d</xliff:g> ficheiro?</item> <item quantity="other">Pretende eliminar <xliff:g id="COUNT_1">%1$d</xliff:g> ficheiros?</item> </plurals> <plurals name="delete_folders_confirmation_message" formatted="false" msgid="1028946402799686388"> - <item quantity="one">Delete <xliff:g id="COUNT_1">%1$d</xliff:g> folders and their contents?</item> + <item quantity="one">Pretende eliminar <xliff:g id="COUNT_0">%1$d</xliff:g> pasta e os respetivos conteúdos?</item> <item quantity="other">Pretende eliminar <xliff:g id="COUNT_1">%1$d</xliff:g> pastas e os respetivos conteúdos?</item> </plurals> <plurals name="delete_items_confirmation_message" formatted="false" msgid="7285090426511028179"> - <item quantity="one">Delete <xliff:g id="COUNT_1">%1$d</xliff:g> items?</item> + <item quantity="one">Pretende eliminar <xliff:g id="COUNT_0">%1$d</xliff:g> item?</item> <item quantity="other">Pretende eliminar <xliff:g id="COUNT_1">%1$d</xliff:g> itens?</item> </plurals> <string name="images_shortcut_label" msgid="2545168016070493574">"Imagens"</string> diff --git a/res/values-pt/inspector_strings.xml b/res/values-pt/inspector_strings.xml new file mode 100644 index 000000000..4a11a86b1 --- /dev/null +++ b/res/values-pt/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informações"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Não foi possível carregar as informações do arquivo"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Info de depuração (apenas desenvolvimento)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadados brutos: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detalhes de mídia"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Este tipo de arquivo é aberto no app"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Este arquivo é fornecido por"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Não selecionado"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Desconhecido"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensões"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordenadas"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitude"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Câmera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Abertura"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Velocidade do obturador"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Duração"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Tirada em"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Distância focal:"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Equivalente de ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Tipos de stream"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Tamanho bruto (bytes)"</string> +</resources> diff --git a/res/values-pt/mimes.xml b/res/values-pt/mimes.xml new file mode 100644 index 000000000..07dd5e2f9 --- /dev/null +++ b/res/values-pt/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Arquivo <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Arquivo"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imagem"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imagem <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Áudio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Áudio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Vídeo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Vídeo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arquivo <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplicativo Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Texto simples"</string> + <string name="html_file_type" msgid="2034229603117527970">"Documento HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Documento PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Documento do Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Apresentação PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Planilha do Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Documento do Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Planilha do Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Apresentação do Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Desenho do Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabela do Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulário do Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa do Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Site do Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Pasta"</string> +</resources> diff --git a/res/values-pt/strings.xml b/res/values-pt/strings.xml index 3ee2c03ab..e7ae0e36a 100644 --- a/res/values-pt/strings.xml +++ b/res/values-pt/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Compactar"</string> <string name="menu_extract" msgid="8171946945982532262">"Extrair para…"</string> <string name="menu_rename" msgid="1883113442688817554">"Renomear"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Propriedades"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Ver informações"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Ver em <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nova janela"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Recortar"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Mover"</string> <string name="button_dismiss" msgid="7235249361023803349">"Dispensar"</string> <string name="button_retry" msgid="4011461781916631389">"Tentar novamente"</string> + <string name="button_clear" msgid="5412304437764369441">"Limpar"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Mostrar no provedor"</string> <string name="not_sorted" msgid="7813496644889115530">"Sem classificação"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nome"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Resumo"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tipo"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Tamanho"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Modificação"</string> - <string name="directory_children" msgid="8115290268549503262">"Número de filhos"</string> + <string name="directory_items" msgid="6645621978998614003">"Número de itens"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Crescente"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Decrescente"</string> <string name="drawer_open" msgid="8071673398187261741">"Mostrar raízes"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Não é possível abrir o arquivo"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Não é possível abrir itens arquivados"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Não foi possível excluir alguns documentos"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Não foi possível carregar as propriedades"</string> <string name="share_via" msgid="8725082736005677161">"Compartilhar via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Copiando arquivos"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Compactando arquivos"</string> diff --git a/res/values-ro/inspector_strings.xml b/res/values-ro/inspector_strings.xml new file mode 100644 index 000000000..f2f603751 --- /dev/null +++ b/res/values-ro/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informații"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Informațiile despre fișier nu au putut fi încărcate"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informații remediere (numai pentru dezvoltatori)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadate brute: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detalii despre conținutul media"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Acest tip de fișier se deschide cu"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Acest fișier este furnizat de"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nu ați selectat"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Necunoscut"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Dimensiuni"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Coordonate"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitudine"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Camera foto"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Diafragmă"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Viteza de declanșare"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Durată"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Realizată pe"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Distanța focală"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Echivalent ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Tipuri de flux"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Dimensiune brută (octeți)"</string> +</resources> diff --git a/res/values-ro/mimes.xml b/res/values-ro/mimes.xml new file mode 100644 index 000000000..fdebbb6bd --- /dev/null +++ b/res/values-ro/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Fișier <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fișier"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imagine"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imagine <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Conținut audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Videoclip"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Fișier video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arhivă <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplicaţie Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Text simplu"</string> + <string name="html_file_type" msgid="2034229603117527970">"Document HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Document PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Document Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Prezentare PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Foaie de calcul Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Document Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Foaie de calcul Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Prezentare Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Desen Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabel Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formular Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Hartă Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Site Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Dosar"</string> +</resources> diff --git a/res/values-ro/strings.xml b/res/values-ro/strings.xml index 3ac2a5443..a6633e89a 100644 --- a/res/values-ro/strings.xml +++ b/res/values-ro/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Comprimați"</string> <string name="menu_extract" msgid="8171946945982532262">"Extrageți în…"</string> <string name="menu_rename" msgid="1883113442688817554">"Redenumiți"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Proprietăți"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Obțineți informații"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Afișați în <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Fereastră nouă"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Decupați"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Mutați"</string> <string name="button_dismiss" msgid="7235249361023803349">"Închideți"</string> <string name="button_retry" msgid="4011461781916631389">"Încercați din nou"</string> + <string name="button_clear" msgid="5412304437764369441">"Ștergeți"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Afișați în furnizor"</string> <string name="not_sorted" msgid="7813496644889115530">"Nesortate"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nume"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Rezumat"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tip"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Dimensiune"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Ultima modificare"</string> - <string name="directory_children" msgid="8115290268549503262">"Număr de copii"</string> + <string name="directory_items" msgid="6645621978998614003">"Numărul de articole"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"În ordine crescătoare"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"În ordine descrescătoare"</string> <string name="drawer_open" msgid="8071673398187261741">"Afișați directoarele rădăcină"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Fișierul nu poate fi deschis"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Nu se pot deschide fișierele în arhive"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Anumite documente nu au putut fi șterse"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Proprietățile nu au putut fi încărcate"</string> <string name="share_via" msgid="8725082736005677161">"Trimiteți prin"</string> <string name="copy_notification_title" msgid="52256435625098456">"Se copiază fișierele"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Se comprimă fișierele"</string> diff --git a/res/values-ru/inspector_strings.xml b/res/values-ru/inspector_strings.xml new file mode 100644 index 000000000..a3a2efa61 --- /dev/null +++ b/res/values-ru/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Информация"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Не удалось загрузить сведения о файле"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Сведения об отладке (только для разработчиков)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Исходные метаданные: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Медиаданные"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"В каком приложении открываются файлы этого типа"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Где находится файл"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Не выбрано"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Неизвестное приложение"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Размер"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> (<xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> Мпикс.)"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Координаты"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Высота"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Камера"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Диафрагма"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Выдержка"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Продолжительность"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Дата съемки"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Фокусное расстояние"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> мм"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Эквивалент ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Типы потоков"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Исходный размер (в байтах)"</string> +</resources> diff --git a/res/values-ru/mimes.xml b/res/values-ru/mimes.xml new file mode 100644 index 000000000..55e9d8ddb --- /dev/null +++ b/res/values-ru/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Файл <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Файл"</string> + <string name="image_file_type" msgid="3011633523704887793">"Изображение"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Изображение <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Аудиофайл"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Аудиофайл <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Видео"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Видео <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Архив <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Приложение Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Обычный текст"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-документ"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Документ PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Документ Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Презентация PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Таблица Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Документ Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Таблица Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Презентация Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Рисунок Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Таблица Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Форма Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Карта Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Сайт на платформе Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Папка"</string> +</resources> diff --git a/res/values-ru/strings.xml b/res/values-ru/strings.xml index c7762400f..4201c4396 100644 --- a/res/values-ru/strings.xml +++ b/res/values-ru/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Сжать"</string> <string name="menu_extract" msgid="8171946945982532262">"Извлечь"</string> <string name="menu_rename" msgid="1883113442688817554">"Переименовать"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Свойства"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Информация о файле"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Открыть в приложении \"<xliff:g id="SOURCE">%1$s</xliff:g>\""</string> <string name="menu_new_window" msgid="2947837751796109126">"Новое окно"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Вырезать"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Переместить"</string> <string name="button_dismiss" msgid="7235249361023803349">"Скрыть"</string> <string name="button_retry" msgid="4011461781916631389">"Повторить"</string> + <string name="button_clear" msgid="5412304437764369441">"Сбросить"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Открыть в приложении по умолчанию"</string> <string name="not_sorted" msgid="7813496644889115530">"Документы не отсортированы"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Имя"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Сведения"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Тип"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Размер"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Изменено"</string> - <string name="directory_children" msgid="8115290268549503262">"Количество дочерних элементов"</string> + <string name="directory_items" msgid="6645621978998614003">"Количество объектов"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"По возрастанию"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"По убыванию"</string> <string name="drawer_open" msgid="8071673398187261741">"Показать корневые папки"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Не удалось открыть файл"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Нельзя открывать файлы в архивах"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Не удалось удалить некоторые документы"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Не удалось загрузить свойства"</string> <string name="share_via" msgid="8725082736005677161">"Поделиться"</string> <string name="copy_notification_title" msgid="52256435625098456">"Копирование файлов"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Сжатие файлов"</string> diff --git a/res/values-si/inspector_strings.xml b/res/values-si/inspector_strings.xml new file mode 100644 index 000000000..94100330a --- /dev/null +++ b/res/values-si/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"තොරතුරු"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ගොනු තොරතුරු පූරණය කළ නොහැකි විය"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"දෝෂ නිරාකරණ තොරතුරු (සංවර්ධක පමණි)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"අමු පාරදත්ත: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"මාධ්ය විස්තර"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"මෙම ආකාරයේ ගොනුව මේ සමගින් විවෘත වේ"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"මෙම ගොනුව සපයනු ලබන්නේ"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"තෝරා නොමැත"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"නොදනී"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"මාන"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"ඛණ්ඩාංක"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"උන්නතාංශය"</string> + <string name="metadata_camera" msgid="2363009732801281319">"කැමරාව"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"විවරය"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"සංවාරක වේගය"</string> + <string name="metadata_duration" msgid="3115494422055472715">"කාල සීමාව"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"ගන්නා ලද්දේ"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"නාභි දුර"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO තුල්ය"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ප්රවාහ වර්ග"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"අමු තරම (බයිට්)"</string> +</resources> diff --git a/res/values-si/mimes.xml b/res/values-si/mimes.xml new file mode 100644 index 000000000..b88162415 --- /dev/null +++ b/res/values-si/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ගොනුව"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ගොනුව"</string> + <string name="image_file_type" msgid="3011633523704887793">"රූපය"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> රූපය"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ශ්රව්ය"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ශ්රව්ය"</string> + <string name="video_file_type" msgid="7290473366042482095">"වීඩියෝව"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> වීඩියෝව"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> සංරක්ෂණය"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android යෙදුම"</string> + <string name="txt_file_type" msgid="4677767777860724696">"සරල පෙළ"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML ලේඛනය"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF ලේඛනය"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word ලේඛනය"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint ඉදිරිපත් කිරීම"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel පැතුරුම්පත"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google ලේඛනය"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google පැතුරුම්පත"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google ඉදිරිපත් කිරීම"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google ඇඳීම"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google වගුව"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google පෝරමය"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google සිතියම්"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google අඩවිය"</string> + <string name="directory_type" msgid="2702987727566226354">"ෆෝල්ඩරය"</string> +</resources> diff --git a/res/values-si/strings.xml b/res/values-si/strings.xml index ead672e5b..30db6fda8 100644 --- a/res/values-si/strings.xml +++ b/res/values-si/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"සම්පීඩනය කරන්න"</string> <string name="menu_extract" msgid="8171946945982532262">"උපුටා ගන්න…"</string> <string name="menu_rename" msgid="1883113442688817554">"යළි නම් කරන්න"</string> - <string name="menu_inspector" msgid="8633147986551632467">"ගුණාංග"</string> + <string name="menu_inspector" msgid="8217713416277319588">"තොරතුරු ලබා ගන්න"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> තුළ බලන්න"</string> <string name="menu_new_window" msgid="2947837751796109126">"නව කවුළුව"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"කපන්න"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ගෙන යන්න"</string> <string name="button_dismiss" msgid="7235249361023803349">"අස් කරන්න"</string> <string name="button_retry" msgid="4011461781916631389">"නැවත උත්සාහ කරන්න"</string> + <string name="button_clear" msgid="5412304437764369441">"හිස් කරන්න"</string> + <string name="button_show_provider" msgid="6905880493806292753">"සැපයුම්කරු තුළ පෙන්වන්න"</string> <string name="not_sorted" msgid="7813496644889115530">"අනුපිළිවෙළට සකසා නැත"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"නම"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"සාරාංශය"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"වර්ගය"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"තරම"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"වෙනස් කළේ"</string> - <string name="directory_children" msgid="8115290268549503262">"ළමයින් ගණන"</string> + <string name="directory_items" msgid="6645621978998614003">"අයිතම ගණන:"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ආරෝහණ"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"අවරෝහණ"</string> <string name="drawer_open" msgid="8071673398187261741">"මුල් පෙන්වන්න"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ගොනුව විවෘත කළ නොහැකිය"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"සංරක්ෂිත තුළ ඇති ගොනු විවෘත කළ නොහැකිය"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"සමහර ලේඛන මැකීමට නොහැකිය"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"ගුණාංග පූරණය කිරීමට නොහැකි විය"</string> <string name="share_via" msgid="8725082736005677161">"බෙදාගන්නේ"</string> <string name="copy_notification_title" msgid="52256435625098456">"ගොනු පිටපත් කරමින්"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ගොනු සම්පීඩනය කරමින්"</string> diff --git a/res/values-sk/inspector_strings.xml b/res/values-sk/inspector_strings.xml new file mode 100644 index 000000000..2495525ff --- /dev/null +++ b/res/values-sk/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informácie"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Informácie o súbore sa nepodarilo načítať"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informácie o ladení (iba pre vývojárov)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Nespracované metadáta: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Podrobnosti o médiách"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Tento typ súboru sa otvára v aplikácii"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Poskytovateľ tohto súboru:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Nie je vybraná"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Neznáme"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Rozmery"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MPx"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Súradnice"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Nadmorská výška"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Fotoaparát"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Clona"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Rýchlosť uzávierky"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Trvanie"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Nasnímané"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Ohnisková vzdialenosť"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Ekvivalent ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Typy streamu"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Nespracovaná veľkosť (v bajtoch)"</string> +</resources> diff --git a/res/values-sk/mimes.xml b/res/values-sk/mimes.xml new file mode 100644 index 000000000..5f5da5ede --- /dev/null +++ b/res/values-sk/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Súbor <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Súbor"</string> + <string name="image_file_type" msgid="3011633523704887793">"Obrázok"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Obrázok <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Zvuk"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Zvuk <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Archív <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplikácia Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Obyčajný text"</string> + <string name="html_file_type" msgid="2034229603117527970">"Dokument HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Dokument PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Dokument Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Prezentácia PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Tabuľka Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Dokument Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Tabuľka Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Prezentácia Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Nákres Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabuľka Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formulár Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Web Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Priečinok"</string> +</resources> diff --git a/res/values-sk/strings.xml b/res/values-sk/strings.xml index e2ce01a84..7be8704aa 100644 --- a/res/values-sk/strings.xml +++ b/res/values-sk/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Komprimovať"</string> <string name="menu_extract" msgid="8171946945982532262">"Rozbaliť do…"</string> <string name="menu_rename" msgid="1883113442688817554">"Premenovať"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Vlastnosti"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Ďalšie informácie"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Zobraziť v službe <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nové okno"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Vystrihnúť"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Presunúť"</string> <string name="button_dismiss" msgid="7235249361023803349">"Odmietnuť"</string> <string name="button_retry" msgid="4011461781916631389">"Skúsiť znova"</string> + <string name="button_clear" msgid="5412304437764369441">"Vymazať"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Zobraziť u poskytovateľa"</string> <string name="not_sorted" msgid="7813496644889115530">"Nezoradené"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Názov"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Súhrn"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Typ"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Veľkosť"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Upravené"</string> - <string name="directory_children" msgid="8115290268549503262">"Počet detí"</string> + <string name="directory_items" msgid="6645621978998614003">"Počet položiek"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Vzostupne"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Zostupne"</string> <string name="drawer_open" msgid="8071673398187261741">"Zobraziť korene"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Súbor nie je možné otvoriť"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Súbory sa nedajú otvoriť v archívoch"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Niektoré dokumenty sa nepodarilo odstrániť"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Vlastníctva sa nepodarilo načítať"</string> <string name="share_via" msgid="8725082736005677161">"Zdieľať prostredníctvom"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopírovanie súborov"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Komprimujú sa súbory"</string> diff --git a/res/values-sl/inspector_strings.xml b/res/values-sl/inspector_strings.xml new file mode 100644 index 000000000..2eb6e1a13 --- /dev/null +++ b/res/values-sl/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Podatki"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Podatkov o datoteki ni bilo mogoče naložiti"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Podatki za odpravljanje napak (samo za razvijalce)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Neobdelani metapodatki: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Podrobnosti o predstavnosti"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Za odpiranje te vrste datoteke se uporablja"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"To datoteko je posredoval"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Ni izbrano"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Neznano"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Mere"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinate"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Višina"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Fotoaparat"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Zaslonka"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Hitrost zaslonke"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Trajanje"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Posneto"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Goriščna razdalja"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Ekvivalent ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Vrste toka"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Neobdelana velikost (bajti)"</string> +</resources> diff --git a/res/values-sl/mimes.xml b/res/values-sl/mimes.xml new file mode 100644 index 000000000..1428e277d --- /dev/null +++ b/res/values-sl/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Datoteka <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Datoteka"</string> + <string name="image_file_type" msgid="3011633523704887793">"Slika"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Slika <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Zvočna datoteka"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Zvočna datoteka <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arhiv <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplikacija za Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Navadno besedilo"</string> + <string name="html_file_type" msgid="2034229603117527970">"Dokument HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Dokument PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Wordov dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPointova predstavitev"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excelova preglednica"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Googlov dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Googlova preglednica"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Googlova predstavitev"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Googlova risba"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Googlova tabela"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Googlov obrazec"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Googlov zemljevid"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Googlovo spletno mesto"</string> + <string name="directory_type" msgid="2702987727566226354">"Mapa"</string> +</resources> diff --git a/res/values-sl/strings.xml b/res/values-sl/strings.xml index 0b43dbe4c..655b61268 100644 --- a/res/values-sl/strings.xml +++ b/res/values-sl/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Stisni"</string> <string name="menu_extract" msgid="8171946945982532262">"Razširi v …"</string> <string name="menu_rename" msgid="1883113442688817554">"Preimenuj"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Lastnosti"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Prikaži informacije"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Prikaži v aplikaciji <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Novo okno"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Izreži"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Premakni"</string> <string name="button_dismiss" msgid="7235249361023803349">"Opusti"</string> <string name="button_retry" msgid="4011461781916631389">"Poskusi znova"</string> + <string name="button_clear" msgid="5412304437764369441">"Izbriši"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Prikaži na izvorni lokaciji"</string> <string name="not_sorted" msgid="7813496644889115530">"Ni razvrščeno"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Ime"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Povzetek"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Vrsta"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Velikost"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Spremenjeno"</string> - <string name="directory_children" msgid="8115290268549503262">"Število otrok"</string> + <string name="directory_items" msgid="6645621978998614003">"Število elementov"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Naraščajoče"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Padajoče"</string> <string name="drawer_open" msgid="8071673398187261741">"Pokaži korene"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Datoteke ni mogoče odpreti"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Datotek ni mogoče odpreti v arhivih"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Nekaterih dokumentov ni mogoče izbrisati"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Lastnosti ni bilo mogoče naložiti"</string> <string name="share_via" msgid="8725082736005677161">"Deli z drugimi prek"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopiranje datotek"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Stiskanje datotek"</string> diff --git a/res/values-sq/inspector_strings.xml b/res/values-sq/inspector_strings.xml new file mode 100644 index 000000000..15e9613a5 --- /dev/null +++ b/res/values-sq/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Informacione"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Informacioni i skedarit nuk mund të ngarkohej"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Informacioni i korrigjimit (vetëm zhvilluesit)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Të dhënat meta të papërpunuara: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Detajet e medias"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ky lloj skedari hapet me"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Ky skedar ofrohet nga"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"I pazgjedhur"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"I panjohur"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Përmasat"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinatat"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Lartësia"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Hapja e diafragmës"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Shpejtësia e obturatorit"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Kohëzgjatja"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Shkrepur në"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Gjatësia fokale"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ekuivalente"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Llojet e transmetimit"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Madhësia e papërpunuar (bajte)"</string> +</resources> diff --git a/res/values-sq/mimes.xml b/res/values-sq/mimes.xml new file mode 100644 index 000000000..915eb1738 --- /dev/null +++ b/res/values-sq/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Skedar <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Skedar"</string> + <string name="image_file_type" msgid="3011633523704887793">"Imazh"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Imazh <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Audio <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Arkiv <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Aplikacion i Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Tekst i thjeshtë"</string> + <string name="html_file_type" msgid="2034229603117527970">"Dokument HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Dokument PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Dokument Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Prezantim PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Fletëllogaritëse Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Dokument i Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Fletëllogaritëse e Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Prezantim i Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Vizatim i Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Tabelë e Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Formular i Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Hartë e Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Sajt i Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Dosje"</string> +</resources> diff --git a/res/values-sq/strings.xml b/res/values-sq/strings.xml index f1f147895..12f6a0460 100644 --- a/res/values-sq/strings.xml +++ b/res/values-sq/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Ngjish"</string> <string name="menu_extract" msgid="8171946945982532262">"Nxirre te…"</string> <string name="menu_rename" msgid="1883113442688817554">"Riemërto"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Karakteristikat"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Merr informacion"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Shikoje në <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Dritare e re"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Prit"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Lëviz"</string> <string name="button_dismiss" msgid="7235249361023803349">"Hiqe"</string> <string name="button_retry" msgid="4011461781916631389">"Provo përsëri"</string> + <string name="button_clear" msgid="5412304437764369441">"Pastro"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Shfaq te ofruesi"</string> <string name="not_sorted" msgid="7813496644889115530">"Nuk janë të renditura"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Emri"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Përmbledhja"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Lloji"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Madhësia"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"U modifikua"</string> - <string name="directory_children" msgid="8115290268549503262">"Numri i fëmijëve"</string> + <string name="directory_items" msgid="6645621978998614003">"Numri i artikujve"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Në rritje"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Në zbritje"</string> <string name="drawer_open" msgid="8071673398187261741">"Trego rrënjët"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Skedari nuk mund të hapet"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Skedarët në arkiva nuk mund të hapen"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"E pamundur të fshihen disa dokumente"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Karakteristikat nuk mund të ngarkoheshin"</string> <string name="share_via" msgid="8725082736005677161">"Shpërnda nëpërmjet"</string> <string name="copy_notification_title" msgid="52256435625098456">"Po kopjon skedarët"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Skedarët po ngjishen"</string> diff --git a/res/values-sr/inspector_strings.xml b/res/values-sr/inspector_strings.xml new file mode 100644 index 000000000..edda3a317 --- /dev/null +++ b/res/values-sr/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Информације"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Учитавање података о датотеци није успело"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Подаци о отклањању грешака (само за програмере)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Метаподаци RAW датотеке: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Детаљи о медијима"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Ова врста датотеке се отвара помоћу:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Ову датотеку пружа"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Није изабрано"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Непознато"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Димензије"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g>×<xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> мегапиксела"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Координате"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Надморска висина"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Камера"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Отвор бленде"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Брзина затварача"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Трајање"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Снимљено"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Жижна даљина"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO еквивалент"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Типови стримова"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Величина RAW датотеке (у бајтовима)"</string> +</resources> diff --git a/res/values-sr/mimes.xml b/res/values-sr/mimes.xml new file mode 100644 index 000000000..f810e4ae9 --- /dev/null +++ b/res/values-sr/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> датотека"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Датотека"</string> + <string name="image_file_type" msgid="3011633523704887793">"Слика"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> слика"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Аудио"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> аудио"</string> + <string name="video_file_type" msgid="7290473366042482095">"Видео"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> видео"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> архива"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android апликација"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Обичан текст"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML документ"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF документ"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word документ"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint презентација"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel табела"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google документ"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google табела"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google презентација"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google цртеж"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google табела"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google упитник"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google мапа"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google сајт"</string> + <string name="directory_type" msgid="2702987727566226354">"Директоријум"</string> +</resources> diff --git a/res/values-sr/strings.xml b/res/values-sr/strings.xml index ded0fb6d9..7907c8d87 100644 --- a/res/values-sr/strings.xml +++ b/res/values-sr/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Компримуј"</string> <string name="menu_extract" msgid="8171946945982532262">"Издвој у…"</string> <string name="menu_rename" msgid="1883113442688817554">"Преименуј"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Својства"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Прикажи информације"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Прикажи у: <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Нови прозор"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Исеци"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Премести"</string> <string name="button_dismiss" msgid="7235249361023803349">"Одбаци"</string> <string name="button_retry" msgid="4011461781916631389">"Пробај поново"</string> + <string name="button_clear" msgid="5412304437764369441">"Обриши"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Прикажи у апликацији добављача"</string> <string name="not_sorted" msgid="7813496644889115530">"Нису сортирани"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Назив"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Резиме"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Тип"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Величина"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Измењено"</string> - <string name="directory_children" msgid="8115290268549503262">"Број деце"</string> + <string name="directory_items" msgid="6645621978998614003">"Број ставки"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Растуће"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Опадајуће"</string> <string name="drawer_open" msgid="8071673398187261741">"Прикажи основне директоријуме"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Отварање датотеке није успело"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Не можете да отварате датотеке у архивама"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Није могуће избрисати неке документе"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Учитавање својстава није успело"</string> <string name="share_via" msgid="8725082736005677161">"Дељење преко"</string> <string name="copy_notification_title" msgid="52256435625098456">"Копирамо датотеке"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Датотеке се компримују"</string> diff --git a/res/values-sv/inspector_strings.xml b/res/values-sv/inspector_strings.xml new file mode 100644 index 000000000..00eb6d77d --- /dev/null +++ b/res/values-sv/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Information"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Det gick inte att läsa in filinformationen"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Felsökningsinformation (endast utvecklare)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Rå metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Medieuppgifter"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Den här filtypen öppnas med"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Den här filen tillhandahålls av"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Ingen har valts"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Okänd"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Mått"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinater"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Höjd"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Bländare"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Slutarhastighet"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Varaktighet"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Taget den"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Brännvidd"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO-motsvarighet"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Flödestyper"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Råstorlek (byte)"</string> +</resources> diff --git a/res/values-sv/mimes.xml b/res/values-sv/mimes.xml new file mode 100644 index 000000000..a6b73ba27 --- /dev/null +++ b/res/values-sv/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g>-fil"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fil"</string> + <string name="image_file_type" msgid="3011633523704887793">"Bild"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g>-bild"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Ljud"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g>-ljud"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g>-video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g>-arkiv"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android-app"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Oformaterad text"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML-dokument"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF-dokument"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word-dokument"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint-presentation"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel-kalkylark"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google-dokument"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google-kalkylark"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google-presentation"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google-teckning"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google-tabell"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google-formulär"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google-karta"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google-webbplats"</string> + <string name="directory_type" msgid="2702987727566226354">"Mapp"</string> +</resources> diff --git a/res/values-sv/strings.xml b/res/values-sv/strings.xml index 107c2a4e8..86554a28a 100644 --- a/res/values-sv/strings.xml +++ b/res/values-sv/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Komprimera"</string> <string name="menu_extract" msgid="8171946945982532262">"Extrahera till …"</string> <string name="menu_rename" msgid="1883113442688817554">"Byt namn"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Egenskaper"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Hämta information"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Visa i <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Nytt fönster"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Klipp ut"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Flytta"</string> <string name="button_dismiss" msgid="7235249361023803349">"Ta bort"</string> <string name="button_retry" msgid="4011461781916631389">"Försök igen"</string> + <string name="button_clear" msgid="5412304437764369441">"Ta bort"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Visa hos leverantören"</string> <string name="not_sorted" msgid="7813496644889115530">"Inte sorterade"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Namn"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Översikt"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Filtyp"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Storlek"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Ändrades senast"</string> - <string name="directory_children" msgid="8115290268549503262">"Antal barn"</string> + <string name="directory_items" msgid="6645621978998614003">"Antal objekt"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Stigande"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Fallande"</string> <string name="drawer_open" msgid="8071673398187261741">"Visa rötter"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Det går inte att öppna filen"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Det går inte att öppna filer i arkiv"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Det gick inte att radera vissa dokument"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Det gick inte att läsa in egenskaper"</string> <string name="share_via" msgid="8725082736005677161">"Dela via"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kopierar filer"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Filerna komprimeras"</string> diff --git a/res/values-sw/inspector_strings.xml b/res/values-sw/inspector_strings.xml new file mode 100644 index 000000000..ea740da67 --- /dev/null +++ b/res/values-sw/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Maelezo"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Imeshindwa kupakia maelezo ya faili"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Maelezo ya utatuzi (usanidi pekee)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Metadata ghafi: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Maelezo ya midia"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Aina hii ya faili inafunguka kwa kutumia"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Faili hii imetoka kwenye"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Haijachaguliwa"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Haijulikani"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Vipimo"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"MP <xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Maeneo"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Mwinuko"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Kitundu cha kamera"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Kasi ya kilango cha kamera"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Muda"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Ilipigwa"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Urefu wa fokasi"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"mm <xliff:g id="LENGTH">%1$.2f </xliff:g>"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Inayolingana na ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Aina za mipasho"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Ukubwa wa faili ghafi (baiti)"</string> +</resources> diff --git a/res/values-sw/mimes.xml b/res/values-sw/mimes.xml new file mode 100644 index 000000000..e24a7f27a --- /dev/null +++ b/res/values-sw/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Faili ya <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Faili"</string> + <string name="image_file_type" msgid="3011633523704887793">"Picha"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Picha ya <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Sauti"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Faili ya sauti ya <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video ya <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Faili ya kumbukumbu ya <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Programu ya Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Maandishi pekee"</string> + <string name="html_file_type" msgid="2034229603117527970">"Hati ya HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Hati ya PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Hati ya Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Wasilisho la PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Lahajedwali la Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Hati ya Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Lahajedwali la Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Wasilisho la Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Mchoro wa Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Jedwali la Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Fomu ya Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Ramani ya Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Tovuti ya Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Folda"</string> +</resources> diff --git a/res/values-sw/strings.xml b/res/values-sw/strings.xml index 73ffd2719..1632e2fd2 100644 --- a/res/values-sw/strings.xml +++ b/res/values-sw/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Bana"</string> <string name="menu_extract" msgid="8171946945982532262">"Weka kwenye…"</string> <string name="menu_rename" msgid="1883113442688817554">"Badilisha jina"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Sifa"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Pata maelezo zaidi"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Angalia katika <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Dirisha jipya"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Kata"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Hamisha"</string> <string name="button_dismiss" msgid="7235249361023803349">"Ondoa"</string> <string name="button_retry" msgid="4011461781916631389">"Jaribu Tena"</string> + <string name="button_clear" msgid="5412304437764369441">"Futa"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Onyesha kwenye programu ya mtoa huduma"</string> <string name="not_sorted" msgid="7813496644889115530">"Hazijapangwa"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Jina"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Muhtasari"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Aina"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Ukubwa"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Ilibadilishwa"</string> - <string name="directory_children" msgid="8115290268549503262">"Idadi ya Watoto"</string> + <string name="directory_items" msgid="6645621978998614003">"Idadi ya vipengee"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Kupanga kwa kupanda"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Kupanga kwa kushuka"</string> <string name="drawer_open" msgid="8071673398187261741">"Onyesha nyenzo"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Haiwezi kufungua faili"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Haiwezi kufungua faili zilizo kwenye kumbukumbu"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Imeshindwa kufuta baadhi ya hati"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Imeshindwa kupakia vipengee vya faili"</string> <string name="share_via" msgid="8725082736005677161">"Shiriki kupitia"</string> <string name="copy_notification_title" msgid="52256435625098456">"Inanakili faili"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Inabana faili"</string> diff --git a/res/values-ta/inspector_strings.xml b/res/values-ta/inspector_strings.xml new file mode 100644 index 000000000..734fb27ca --- /dev/null +++ b/res/values-ta/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"தகவல்"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"கோப்புத் தகவலை ஏற்ற முடியவில்லை"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"பிழைத்திருத்தத் தகவல் (டெவெலப்பர்கள் மட்டும்)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"அசல் மீத்தரவு: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"மீடியா விவரங்கள்"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"இந்தக் கோப்பு வகையை, பின்வரும் பயன்பாடு திறக்கும்:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"இந்தக் கோப்பை வழங்குவது:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"தேர்ந்தெடுக்கவில்லை"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"தெரியாதது"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"பரிமாணங்கள்"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"ஆயத்தொலைவுகள்"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"உயரம்"</string> + <string name="metadata_camera" msgid="2363009732801281319">"கேமரா"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"அபெர்ச்சர்"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"ஷட்டர் வேகம்"</string> + <string name="metadata_duration" msgid="3115494422055472715">"கால அளவு"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"படமெடுத்தது:"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"குவியத்தூரம்"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>மிமீ"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO சமதிறன்"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ஸ்ட்ரீம் வகைகள்"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"அசல் அளவு (பைட்டுகள்)"</string> +</resources> diff --git a/res/values-ta/mimes.xml b/res/values-ta/mimes.xml new file mode 100644 index 000000000..04a8c3f40 --- /dev/null +++ b/res/values-ta/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> கோப்பு"</string> + <string name="generic_file_type" msgid="1415477154743494280">"கோப்பு"</string> + <string name="image_file_type" msgid="3011633523704887793">"படம்"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> படம்"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ஆடியோ"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ஆடியோ"</string> + <string name="video_file_type" msgid="7290473366042482095">"வீடியோ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> வீடியோ"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> காப்பகம்"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android பயன்பாடு"</string> + <string name="txt_file_type" msgid="4677767777860724696">"எளிய உரை"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML ஆவணம்"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF ஆவணம்"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word ஆவணம்"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint விளக்கக்காட்சி"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel விரிதாள்"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google ஆவணம்"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google விரிதாள்"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google விளக்கக்காட்சி"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google டிராயிங்"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google அட்டவணை"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google படிவம்"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google வரைபடம்"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google தளம்"</string> + <string name="directory_type" msgid="2702987727566226354">"கோப்புறை"</string> +</resources> diff --git a/res/values-ta/strings.xml b/res/values-ta/strings.xml index 1090358a6..455174135 100644 --- a/res/values-ta/strings.xml +++ b/res/values-ta/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"அளவைக் குறை"</string> <string name="menu_extract" msgid="8171946945982532262">"இங்கு பிரி…"</string> <string name="menu_rename" msgid="1883113442688817554">"மறுபெயரிடு"</string> - <string name="menu_inspector" msgid="8633147986551632467">"பண்புகள்"</string> + <string name="menu_inspector" msgid="8217713416277319588">"தகவலைப் பெறு"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> இல் காட்டு"</string> <string name="menu_new_window" msgid="2947837751796109126">"புதிய சாளரம்"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"வெட்டு"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"நகர்த்து"</string> <string name="button_dismiss" msgid="7235249361023803349">"நிராகரி"</string> <string name="button_retry" msgid="4011461781916631389">"மீண்டும் முயலவும்"</string> + <string name="button_clear" msgid="5412304437764369441">"அழி"</string> + <string name="button_show_provider" msgid="6905880493806292753">"வழங்குநரில் காட்டு"</string> <string name="not_sorted" msgid="7813496644889115530">"வரிசைப்படுத்தப்படவில்லை"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"பெயர்"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"சுருக்க விவரம்"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"வகை"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"அளவு"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"மாற்றியது"</string> - <string name="directory_children" msgid="8115290268549503262">"குழந்தைகளின் எண்ணிக்கை"</string> + <string name="directory_items" msgid="6645621978998614003">"உருப்படிகளின் எண்ணிக்கை"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ஏறுவரிசையில்"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"இறங்குவரிசையில்"</string> <string name="drawer_open" msgid="8071673398187261741">"சேமித்த இடத்தைக் காட்டு"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"கோப்பைத் திறக்க முடியாது"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"காப்பகங்களில் உள்ள கோப்புகளைத் திறக்க முடியாது"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"சில ஆவணங்களை நீக்க முடியவில்லை"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"பண்புகளை ஏற்ற முடியவில்லை"</string> <string name="share_via" msgid="8725082736005677161">"இதன் வழியாகப் பகிர்"</string> <string name="copy_notification_title" msgid="52256435625098456">"கோப்புகளை நகலெடுத்தல்"</string> <string name="compress_notification_title" msgid="6830195148113751021">"அளவைக் குறைக்கிறது"</string> diff --git a/res/values-te/inspector_strings.xml b/res/values-te/inspector_strings.xml new file mode 100644 index 000000000..1f45b6a2d --- /dev/null +++ b/res/values-te/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"సమాచారం"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ఫైల్ సమాచారాన్ని లోడ్ చేయడం సాధ్యపడలేదు"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"డీబగ్ సమాచారం (డెవలపర్ మాత్రమే)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"ప్రాసెస్ చేయని మెటాడేటా: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"మీడియా వివరాలు"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"ఈ రకమైన ఫైల్ దీనితో తెరవబడుతుంది"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ఇది ఈ ఫైల్ని అందించింది"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"ఎంచుకోబడలేదు"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"తెలియదు"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"కొలతలు"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"అక్షాంశాలు"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ఎత్తు"</string> + <string name="metadata_camera" msgid="2363009732801281319">"కెమెరా"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"ఎపర్చర్"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"షట్టర్ వేగం"</string> + <string name="metadata_duration" msgid="3115494422055472715">"వ్యవధి"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"ఫోటో ఈ తేదీన తీయబడింది"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ఫోకల్ పొడవు"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>మి.మీ"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO సమానమైనది"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ప్రసార రకాలు"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"ప్రాసెస్ చేయని పరిమాణం (బైట్లు)"</string> +</resources> diff --git a/res/values-te/mimes.xml b/res/values-te/mimes.xml new file mode 100644 index 000000000..bcbbda2fb --- /dev/null +++ b/res/values-te/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ఫైల్"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ఫైల్"</string> + <string name="image_file_type" msgid="3011633523704887793">"చిత్రం"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> చిత్రం"</string> + <string name="audio_file_type" msgid="3790525543519624632">"ఆడియో"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ఆడియో"</string> + <string name="video_file_type" msgid="7290473366042482095">"వీడియో"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> వీడియో"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> ఆర్కైవ్"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android అప్లికేషన్"</string> + <string name="txt_file_type" msgid="4677767777860724696">"సాదా వచనం"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML పత్రం"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF పత్రం"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word పత్రం"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint ప్రెజెంటేషన్"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel స్ప్రెడ్షీట్"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google పత్రం"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google స్ప్రెడ్షీట్"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google ప్రెజెంటేషన్"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google డ్రాయింగ్"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google పట్టిక"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ఫారమ్"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google మ్యాప్"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google సైట్"</string> + <string name="directory_type" msgid="2702987727566226354">"ఫోల్డర్"</string> +</resources> diff --git a/res/values-te/strings.xml b/res/values-te/strings.xml index bc286e273..9d246b370 100644 --- a/res/values-te/strings.xml +++ b/res/values-te/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"కుదించు"</string> <string name="menu_extract" msgid="8171946945982532262">"దీనిలోకి సంగ్రహించు…"</string> <string name="menu_rename" msgid="1883113442688817554">"పేరు మార్చు"</string> - <string name="menu_inspector" msgid="8633147986551632467">"లక్షణాలు"</string> + <string name="menu_inspector" msgid="8217713416277319588">"సమాచారాన్ని పొందండి"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g>లో వీక్షించు"</string> <string name="menu_new_window" msgid="2947837751796109126">"కొత్త విండో"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"కత్తిరించు"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"తరలించు"</string> <string name="button_dismiss" msgid="7235249361023803349">"తీసివేయి"</string> <string name="button_retry" msgid="4011461781916631389">"మళ్లీ ప్రయత్నించు"</string> + <string name="button_clear" msgid="5412304437764369441">"తీసివేయండి"</string> + <string name="button_show_provider" msgid="6905880493806292753">"ప్రదాతలో చూపించండి"</string> <string name="not_sorted" msgid="7813496644889115530">"క్రమబద్ధీకరించలేదు"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"పేరు"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"సారాంశం"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"రకం"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"పరిమాణం"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"సవరించిన సమయం"</string> - <string name="directory_children" msgid="8115290268549503262">"పిల్లల సంఖ్య"</string> + <string name="directory_items" msgid="6645621978998614003">"అంశాల సంఖ్య"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"ఆరోహణ"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"అవరోహణ"</string> <string name="drawer_open" msgid="8071673398187261741">"మూలాలను చూపు"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"ఫైల్ను తెరవడం సాధ్యపడదు"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"ఆర్కైవ్లలో ఉన్న ఫైల్లను తెరవడం సాధ్యం కాదు"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"కొన్ని పత్రాలను తొలగించడం సాధ్యపడలేదు"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"లక్షణాలను లోడ్ చేయలేకపోయింది"</string> <string name="share_via" msgid="8725082736005677161">"దీనితో భాగస్వామ్యం చేయండి"</string> <string name="copy_notification_title" msgid="52256435625098456">"ఫైల్లు కాపీ అవుతున్నాయి"</string> <string name="compress_notification_title" msgid="6830195148113751021">"ఫైల్లను కుదిస్తోంది"</string> diff --git a/res/values-th/inspector_strings.xml b/res/values-th/inspector_strings.xml new file mode 100644 index 000000000..0c2821dc9 --- /dev/null +++ b/res/values-th/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"ข้อมูล"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"ไม่สามารถโหลดข้อมูลไฟล์"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"ข้อมูลการแก้ไขข้อบกพร่อง (dev only)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"ข้อมูลเมตา Raw: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"รายละเอียดสื่อ"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"ไฟล์ประเภทนี้เปิดด้วย"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"ไฟล์นี้จัดหาโดย"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"ไม่ได้เลือก"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"ไม่ทราบ"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"ขนาด"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"พิกัด"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"ระดับความสูง"</string> + <string name="metadata_camera" msgid="2363009732801281319">"กล้อง"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"รูรับแสง"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"ความเร็วชัตเตอร์"</string> + <string name="metadata_duration" msgid="3115494422055472715">"ระยะเวลา"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"ถ่ายเมื่อ"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ความยาวโฟกัส"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> มม."</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO เทียบเท่า"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"ประเภทสตรีม"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"ขนาด Raw (ไบต์)"</string> +</resources> diff --git a/res/values-th/mimes.xml b/res/values-th/mimes.xml new file mode 100644 index 000000000..c29f40b47 --- /dev/null +++ b/res/values-th/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"ไฟล์ <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"ไฟล์"</string> + <string name="image_file_type" msgid="3011633523704887793">"รูปภาพ"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"ภาพ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"เสียง"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"ไฟล์เสียง <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"วิดีโอ"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"วิดีโอ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"ไฟล์ที่เก็บถาวร <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"แอปพลิเคชัน Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"ข้อความล้วน"</string> + <string name="html_file_type" msgid="2034229603117527970">"เอกสาร HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"เอกสาร PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"เอกสาร Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"งานนำเสนอ PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"สเปรดชีต Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google เอกสาร"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google สเปรดชีต"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google งานนำเสนอ"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google ภาพวาด"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google ตาราง"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google ฟอร์ม"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google Map"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google Site"</string> + <string name="directory_type" msgid="2702987727566226354">"โฟลเดอร์"</string> +</resources> diff --git a/res/values-th/strings.xml b/res/values-th/strings.xml index a3a85d3d3..0c814191a 100644 --- a/res/values-th/strings.xml +++ b/res/values-th/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"บีบอัด"</string> <string name="menu_extract" msgid="8171946945982532262">"แตกข้อมูลไปยัง…"</string> <string name="menu_rename" msgid="1883113442688817554">"เปลี่ยนชื่อ"</string> - <string name="menu_inspector" msgid="8633147986551632467">"คุณสมบัติ"</string> + <string name="menu_inspector" msgid="8217713416277319588">"รับข้อมูล"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"ดูใน <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"หน้าต่างใหม่"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"ตัด"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"ย้าย"</string> <string name="button_dismiss" msgid="7235249361023803349">"ปิด"</string> <string name="button_retry" msgid="4011461781916631389">"ลองใหม่"</string> + <string name="button_clear" msgid="5412304437764369441">"ล้าง"</string> + <string name="button_show_provider" msgid="6905880493806292753">"แสดงในแอปผู้ให้บริการ"</string> <string name="not_sorted" msgid="7813496644889115530">"ไม่ได้จัดเรียง"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"ชื่อ"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"สรุป"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"ประเภท"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"ขนาด"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"แก้ไข"</string> - <string name="directory_children" msgid="8115290268549503262">"จำนวนบุตรหลาน"</string> + <string name="directory_items" msgid="6645621978998614003">"จำนวนรายการ"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"จากน้อยไปมาก"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"จากมากไปน้อย"</string> <string name="drawer_open" msgid="8071673398187261741">"แสดงราก"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"เปิดไฟล์ไม่ได้"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"เปิดไฟล์ในที่เก็บถาวรไม่ได้"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"ไม่สามารถลบเอกสารบางรายการ"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"ไม่สามารถโหลดพร็อพเพอร์ตี้"</string> <string name="share_via" msgid="8725082736005677161">"แชร์ผ่าน"</string> <string name="copy_notification_title" msgid="52256435625098456">"กำลังคัดลอกไฟล์"</string> <string name="compress_notification_title" msgid="6830195148113751021">"กำลังบีบอัดไฟล์"</string> diff --git a/res/values-tl/inspector_strings.xml b/res/values-tl/inspector_strings.xml new file mode 100644 index 000000000..ee8d2152f --- /dev/null +++ b/res/values-tl/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Impormasyon"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Hindi ma-load ang impormasyon ng file"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Impormasyon ng debug (dev lang)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Raw na metadata: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Mga detalye ng media"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Nabubuksan ang ganitong uri ng file sa"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Ang file na ito ay ibinigay ng"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Hindi napili"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Hindi Alam"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Mga Dimensyon"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Mga Coordinate"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Altitude"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Camera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Aperture"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Bilis ng shutter"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Tagal"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Kinunan noong"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Focal length"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Katumbas sa ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Mga uri ng stream"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Raw na laki (mga byte)"</string> +</resources> diff --git a/res/values-tl/mimes.xml b/res/values-tl/mimes.xml new file mode 100644 index 000000000..ecc62d8fb --- /dev/null +++ b/res/values-tl/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> na file"</string> + <string name="generic_file_type" msgid="1415477154743494280">"File"</string> + <string name="image_file_type" msgid="3011633523704887793">"Larawan"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> na larawan"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> na audio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> na video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> na archive"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android application"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Plain text"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML na dokumento"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF na dokumento"</string> + <string name="word_file_type" msgid="2366349268129894972">"Dokumento sa Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint presentation"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Spreadsheet sa Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Dokumento sa Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Spreadsheet sa Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Presentation sa Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Drawing sa Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Talahanayan sa Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Form sa Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Mapa sa Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Site ng Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Folder"</string> +</resources> diff --git a/res/values-tl/strings.xml b/res/values-tl/strings.xml index 25daf25e4..ee73b85ee 100644 --- a/res/values-tl/strings.xml +++ b/res/values-tl/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"I-compress"</string> <string name="menu_extract" msgid="8171946945982532262">"I-extract sa…"</string> <string name="menu_rename" msgid="1883113442688817554">"Palitan ang pangalan"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Mga Property"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Kumuha ng impormasyon"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Tingnan sa <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Bagong window"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"I-cut"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Ilipat"</string> <string name="button_dismiss" msgid="7235249361023803349">"I-dismiss"</string> <string name="button_retry" msgid="4011461781916631389">"Subukang Muli"</string> + <string name="button_clear" msgid="5412304437764369441">"I-clear"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Ipakita sa provider"</string> <string name="not_sorted" msgid="7813496644889115530">"Hindi napagbukud-bukod"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Pangalan"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Buod"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Uri"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Laki"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Binago"</string> - <string name="directory_children" msgid="8115290268549503262">"Bilang ng Mga Bata"</string> + <string name="directory_items" msgid="6645621978998614003">"Bilang ng mga item"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Pataas"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Pababa"</string> <string name="drawer_open" msgid="8071673398187261741">"Ipakita ang mga root"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Hindi mabuksan ang file"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Hindi mabuksan ang mga file sa mga archive"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Hindi ma-delete ang ilang dokumento"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Hindi ma-load ang mga property"</string> <string name="share_via" msgid="8725082736005677161">"Ibahagi gamit ang"</string> <string name="copy_notification_title" msgid="52256435625098456">"Kinokopya ang mga file"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Kino-compress ang files"</string> diff --git a/res/values-tr/inspector_strings.xml b/res/values-tr/inspector_strings.xml new file mode 100644 index 000000000..7d5f5b151 --- /dev/null +++ b/res/values-tr/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Bilgi"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Dosya bilgisi yüklenemedi"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Hata ayıklama bilgileri (yalnızca geliştirici)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"İşlenmemiş meta veri: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Medya ayrıntıları"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Bu tür dosyalar şu uygulamayla açılır:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Bu dosyayı sağlayan:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Seçili değil"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Bilinmiyor"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Boyutlar"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinatlar"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Rakım"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Diyafram açıklığı"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Deklanşör hızı"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Süre"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Çekim zamanı:"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Odak uzaklığı"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO karşılığı"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Akış türleri"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"İşlenmemiş boyut (bayt)"</string> +</resources> diff --git a/res/values-tr/mimes.xml b/res/values-tr/mimes.xml new file mode 100644 index 000000000..c76e0f627 --- /dev/null +++ b/res/values-tr/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> dosyası"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Dosya"</string> + <string name="image_file_type" msgid="3011633523704887793">"Resim"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> resmi"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Ses"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> ses"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> videosu"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> arşivi"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android uygulaması"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Düz metin"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML dokümanı"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF dokümanı"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word dokümanı"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint sunusu"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel e-tablosu"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google dokümanı"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google e-tablosu"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google sunusu"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google çizimi"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google tablosu"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google formu"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google haritası"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google sitesi"</string> + <string name="directory_type" msgid="2702987727566226354">"Klasör"</string> +</resources> diff --git a/res/values-tr/strings.xml b/res/values-tr/strings.xml index 46d631e04..b0680c6c3 100644 --- a/res/values-tr/strings.xml +++ b/res/values-tr/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Sıkıştır"</string> <string name="menu_extract" msgid="8171946945982532262">"Şuraya çıkar:"</string> <string name="menu_rename" msgid="1883113442688817554">"Yeniden Adlandır"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Özellikler"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Bilgi al"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> içinde görüntüle"</string> <string name="menu_new_window" msgid="2947837751796109126">"Yeni pencere"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Kes"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Taşı"</string> <string name="button_dismiss" msgid="7235249361023803349">"Kapat"</string> <string name="button_retry" msgid="4011461781916631389">"Tekrar Dene"</string> + <string name="button_clear" msgid="5412304437764369441">"Temizle"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Sağlayıcıda göster"</string> <string name="not_sorted" msgid="7813496644889115530">"Sıralanmadı"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Ad"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Özet"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Tür"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Boyut"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Değiştirilme zamanı"</string> - <string name="directory_children" msgid="8115290268549503262">"Çocuk Sayısı"</string> + <string name="directory_items" msgid="6645621978998614003">"Ürün sayısı"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Artan"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Azalan"</string> <string name="drawer_open" msgid="8071673398187261741">"Kök dizinleri göster"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Dosya açılamıyor"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Arşivlerdeki dosyalar açılamaz"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Bazı dokümanlar silinemiyor"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Özellikler yüklenemedi"</string> <string name="share_via" msgid="8725082736005677161">"Şunu kullanarak paylaşın:"</string> <string name="copy_notification_title" msgid="52256435625098456">"Dosyalar kopyalanıyor"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Dosyalar sıkıştırılıyor"</string> diff --git a/res/values-uk/inspector_strings.xml b/res/values-uk/inspector_strings.xml new file mode 100644 index 000000000..14e9b6897 --- /dev/null +++ b/res/values-uk/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Інформація"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Не вдалося завантажити інформацію про файл"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Дані про налагодження (лише для розробників)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Метадані файлу RAW: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Деталі медіа-вмісту"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Цей тип файлу відкривається в додатку"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Цей файл надає"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Не вибрано"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Невідомо"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Розміри"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> Мпікс."</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Координати"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Висота"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Камера"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Апертура"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Швидкість затвора"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Тривалість"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Знято"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Фокусна відстань"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> мм"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Еквівалент ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"Швидкість ISO: <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Типи потоків"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Розмір файлу RAW (байти)"</string> +</resources> diff --git a/res/values-uk/mimes.xml b/res/values-uk/mimes.xml new file mode 100644 index 000000000..e41138b48 --- /dev/null +++ b/res/values-uk/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Файл <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Файл"</string> + <string name="image_file_type" msgid="3011633523704887793">"Зображення"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Зображення <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Аудіо"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Аудіо <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Відео"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Відео <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Архів <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Додаток Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Звичайний текст"</string> + <string name="html_file_type" msgid="2034229603117527970">"Документ HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Документ PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Документ Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Презентація PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Електронна таблиця Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Документ Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Таблиця Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Презентація Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Малюнок Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Таблиця Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Форма Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Карта Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Сайт Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Папка"</string> +</resources> diff --git a/res/values-uk/strings.xml b/res/values-uk/strings.xml index 1a7f83ee6..89742674d 100644 --- a/res/values-uk/strings.xml +++ b/res/values-uk/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Стиснути"</string> <string name="menu_extract" msgid="8171946945982532262">"Розпакувати…"</string> <string name="menu_rename" msgid="1883113442688817554">"Перейменувати"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Властивості"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Переглянути інформацію"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Переглянути в службі <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Нове вікно"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Вирізати"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Перемістити"</string> <string name="button_dismiss" msgid="7235249361023803349">"Відхилити"</string> <string name="button_retry" msgid="4011461781916631389">"Повторити"</string> + <string name="button_clear" msgid="5412304437764369441">"Очистити"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Показати в сервісі постачальника"</string> <string name="not_sorted" msgid="7813496644889115530">"Не сортовано"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Назва"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Короткий опис"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Тип"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Розмір"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Змінено"</string> - <string name="directory_children" msgid="8115290268549503262">"Кількість дітей"</string> + <string name="directory_items" msgid="6645621978998614003">"Кількість елементів"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"За зростанням"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"За спаданням"</string> <string name="drawer_open" msgid="8071673398187261741">"Показати кореневі каталоги"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Не вдалося відкрити файл"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Не вдалося відкрити файли в архівах"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Не вдалося видалити деякі документи"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Не вдалося завантажити параметри"</string> <string name="share_via" msgid="8725082736005677161">"Надіслати через"</string> <string name="copy_notification_title" msgid="52256435625098456">"Копіювання файлів"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Файли стискаються"</string> diff --git a/res/values-ur/inspector_strings.xml b/res/values-ur/inspector_strings.xml new file mode 100644 index 000000000..8897638b6 --- /dev/null +++ b/res/values-ur/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"معلومات"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"فائل کى معلومات لوڈ نہیں کی جا سکی"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"ڈیبگ کی معلومات (ڈیولپر فقط)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"خام میٹا ڈیٹا: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"میڈیا کی تفصیلات"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"اس قسم کی فائل اس کے ساتھ کُھلتی ہے"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"یہ فائل فراہم کی جاتی ہے"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"غیر منتخب کردہ"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"نامعلوم"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"ابعاد"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"کوآرڈینیٹس"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>، <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"اونچائی"</string> + <string name="metadata_camera" msgid="2363009732801281319">"کیمرا"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"اپرچر"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"شٹر کی رفتار"</string> + <string name="metadata_duration" msgid="3115494422055472715">"مدت"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"تصویر لے لی گئی"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"ماسکہ کی طوالت"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>ملی میٹر"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO کے مساوی"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"سلسلہ کی قسمیں"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"خام سائز (بائٹس)"</string> +</resources> diff --git a/res/values-ur/mimes.xml b/res/values-ur/mimes.xml new file mode 100644 index 000000000..045182a29 --- /dev/null +++ b/res/values-ur/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> فائل"</string> + <string name="generic_file_type" msgid="1415477154743494280">"فائل"</string> + <string name="image_file_type" msgid="3011633523704887793">"تصویر"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> تصویر"</string> + <string name="audio_file_type" msgid="3790525543519624632">"آڈیو"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> آڈیو"</string> + <string name="video_file_type" msgid="7290473366042482095">"ویڈیو"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> ویڈیو"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> آرکائيو"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android ایپلیکیشن"</string> + <string name="txt_file_type" msgid="4677767777860724696">"سادہ متن"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML دستاویز"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF دستاویز"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word دستاویز"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint پیشکش"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel اسپریڈ شیٹ"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google دستاویز"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google اسپریڈ شیٹ"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google پیشکش"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google ڈرائنگ"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google ٹیبل"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google فارم"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google نقشہ"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google سائٹ"</string> + <string name="directory_type" msgid="2702987727566226354">"فولڈر"</string> +</resources> diff --git a/res/values-ur/strings.xml b/res/values-ur/strings.xml index 068550db7..c59e9341d 100644 --- a/res/values-ur/strings.xml +++ b/res/values-ur/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"کمپریس کریں"</string> <string name="menu_extract" msgid="8171946945982532262">"اس میں کھولیں۔۔۔"</string> <string name="menu_rename" msgid="1883113442688817554">"نام تبدیل کریں"</string> - <string name="menu_inspector" msgid="8633147986551632467">"خصوصیات"</string> + <string name="menu_inspector" msgid="8217713416277319588">"معلومات حاصل کریں"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> میں دیکھیں"</string> <string name="menu_new_window" msgid="2947837751796109126">"نئی ونڈو"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"کٹ کریں"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"منتقل کریں"</string> <string name="button_dismiss" msgid="7235249361023803349">"کالعدم کریں"</string> <string name="button_retry" msgid="4011461781916631389">"دوبارہ کوشش کریں"</string> + <string name="button_clear" msgid="5412304437764369441">"صاف کریں"</string> + <string name="button_show_provider" msgid="6905880493806292753">"فراہم کنندہ میں دکھائیں"</string> <string name="not_sorted" msgid="7813496644889115530">"ترتیب میں نہیں ہیں"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"نام"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"خلاصہ"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"قسم"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"سائز"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"ترمیم ہوئی"</string> - <string name="directory_children" msgid="8115290268549503262">"بچوں کی تعداد"</string> + <string name="directory_items" msgid="6645621978998614003">"آئٹمز کی تعداد"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"صعودی"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"نزولی"</string> <string name="drawer_open" msgid="8071673398187261741">"روٹس دکھائیں"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"فائل نہیں کھل سکتی"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"فائلوں کو آرکائیوز میں کھولا نہیں جا سکتا"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"کچھ دستاویزات کو حذف کرنے سے قاصر"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"خصوصیات کو لوڈ نہیں کیا جا سکا"</string> <string name="share_via" msgid="8725082736005677161">"اشتراک کریں بذریعہ"</string> <string name="copy_notification_title" msgid="52256435625098456">"فائلیں کاپی ہو رہی ہیں"</string> <string name="compress_notification_title" msgid="6830195148113751021">"فائلز کمپریس ہو رہی ہیں"</string> diff --git a/res/values-uz/inspector_strings.xml b/res/values-uz/inspector_strings.xml new file mode 100644 index 000000000..c001f7b46 --- /dev/null +++ b/res/values-uz/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Ma’lumot"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Fayl haqida ma’lumotni yuklab bo‘lmadi"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Xatoliklarni tuzatish (faqat dasturchilar uchun)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"RAW fayli meta-axboroti: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Media tafsilotlari"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Bu turdagi fayl quyidagilar bilan ochiladi"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Bu fayl ta’minotchisi"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Tanlanmagan"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Noma’lum"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"O‘lchamlar"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> – <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Koordinatalari"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Dengiz sathidan balandligi"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Kamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Diafragma"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Zatvor tezligi"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Davomiyligi"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Yaratilgan sanasi"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Fokus masofasi"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO ekvivalenti"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Strim turlari"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"RAW fayl hajmi (bayt)"</string> +</resources> diff --git a/res/values-uz/mimes.xml b/res/values-uz/mimes.xml new file mode 100644 index 000000000..d9a434632 --- /dev/null +++ b/res/values-uz/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> fayl"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Fayl"</string> + <string name="image_file_type" msgid="3011633523704887793">"Rasm"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> rasm"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Audio"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> audio"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> video"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> arxiv"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android ilovasi"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Oddiy matn"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML hujjat"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF hujjat"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word hujjat"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint taqdimot"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel jadval"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google-hujjat"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google-jadval"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google-taqdimot"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google-chizma"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google-jadval"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google-shakl"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google-xarita"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google-sayt"</string> + <string name="directory_type" msgid="2702987727566226354">"Jild"</string> +</resources> diff --git a/res/values-uz/strings.xml b/res/values-uz/strings.xml index 9d84a8256..28e8b5b27 100644 --- a/res/values-uz/strings.xml +++ b/res/values-uz/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Arxivlash"</string> <string name="menu_extract" msgid="8171946945982532262">"Arxivdan chiqarish"</string> <string name="menu_rename" msgid="1883113442688817554">"Qayta nomlash"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Xususiyatlar"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Ma’lumot olish"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"<xliff:g id="SOURCE">%1$s</xliff:g> orqali ochish"</string> <string name="menu_new_window" msgid="2947837751796109126">"Yangi oyna"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Kesish"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Ko‘chirib o‘tkazish"</string> <string name="button_dismiss" msgid="7235249361023803349">"Yopish"</string> <string name="button_retry" msgid="4011461781916631389">"Qayta urinib ko‘rish"</string> + <string name="button_clear" msgid="5412304437764369441">"Tozalash"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Ta’minotchi orqali ko‘rsatish"</string> <string name="not_sorted" msgid="7813496644889115530">"Saralanmagan"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Nomi"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Qisqacha tavsif"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Turi"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Hajmi"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Tahrirlangan"</string> - <string name="directory_children" msgid="8115290268549503262">"Quyi elementlar soni"</string> + <string name="directory_items" msgid="6645621978998614003">"Elementlar soni"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"O‘sish bo‘yicha"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Kamayish bo‘yicha"</string> <string name="drawer_open" msgid="8071673398187261741">"Ko‘rsatish"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Faylni ochib bo‘lmadi"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Arxivdagi fayllarni ochib bo‘lmadi"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Ba’zi hujjatlarni o‘chirib bo‘lmadi"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Xususiyatlarni yuklab bo‘lmadi"</string> <string name="share_via" msgid="8725082736005677161">"Baham ko‘rish"</string> <string name="copy_notification_title" msgid="52256435625098456">"Fayllar nusxalanmoqda"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Fayllar arxivlanmoqda"</string> diff --git a/res/values-vi/inspector_strings.xml b/res/values-vi/inspector_strings.xml new file mode 100644 index 000000000..8aca54cfb --- /dev/null +++ b/res/values-vi/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Thông tin"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Không thể tải thông tin tệp"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Thông tin gỡ lỗi (chỉ dành cho nhà phát triển)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Siêu dữ liệu Raw: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Chi tiết về phương tiện"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Loại tệp này mở bằng"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Tệp này được cung cấp bởi"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Chưa chọn"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Không xác định"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Kích thước"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Tọa độ"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Độ cao"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Máy ảnh"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Khẩu độ"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Tốc độ chụp"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Thời lượng"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Chụp vào"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Tiêu cự"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO tương đương"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Loại luồng"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Kích thước tệp Raw (byte)"</string> +</resources> diff --git a/res/values-vi/mimes.xml b/res/values-vi/mimes.xml new file mode 100644 index 000000000..437211f38 --- /dev/null +++ b/res/values-vi/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"Tệp <xliff:g id="EXTENSION">%1$s</xliff:g>"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Tệp"</string> + <string name="image_file_type" msgid="3011633523704887793">"Hình ảnh"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"Hình ảnh <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Âm thanh"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"Âm thanh <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="video_file_type" msgid="7290473366042482095">"Video"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"Video <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="archive_file_type" msgid="1463432996680398798">"Lưu trữ <xliff:g id="FILETYPE">%1$s</xliff:g>"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Ứng dụng Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Văn bản thuần"</string> + <string name="html_file_type" msgid="2034229603117527970">"Tài liệu HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Tài liệu PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Tài liệu Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Bản trình bày PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Bảng tính Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Tài liệu Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Bảng tính Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Bản trình bày Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Bản vẽ Google"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Bảng Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Biểu mẫu Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Bản đồ Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Trang web Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Thư mục"</string> +</resources> diff --git a/res/values-vi/strings.xml b/res/values-vi/strings.xml index 4dd695dff..a54909edc 100644 --- a/res/values-vi/strings.xml +++ b/res/values-vi/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Nén"</string> <string name="menu_extract" msgid="8171946945982532262">"Trích xuất sang…"</string> <string name="menu_rename" msgid="1883113442688817554">"Đổi tên"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Thuộc tính"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Xem thông tin"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Xem trong <xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Cửa sổ mới"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Cắt"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Chuyển"</string> <string name="button_dismiss" msgid="7235249361023803349">"Loại bỏ"</string> <string name="button_retry" msgid="4011461781916631389">"Thử lại"</string> + <string name="button_clear" msgid="5412304437764369441">"Xóa"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Hiển thị trong nhà cung cấp"</string> <string name="not_sorted" msgid="7813496644889115530">"Chưa được sắp xếp"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Tên"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Tóm tắt"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Loại"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Kích thước"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Đã sửa đổi"</string> - <string name="directory_children" msgid="8115290268549503262">"Số trẻ em"</string> + <string name="directory_items" msgid="6645621978998614003">"Số mục"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Tăng dần"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Giảm dần"</string> <string name="drawer_open" msgid="8071673398187261741">"Hiển thị gốc"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Không thể mở tệp"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Không thể mở tệp trong lưu trữ"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Không thể xóa một số tài liệu"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Không thể tải các thuộc tính"</string> <string name="share_via" msgid="8725082736005677161">"Chia sẻ qua"</string> <string name="copy_notification_title" msgid="52256435625098456">"Đang sao chép tệp"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Nén tệp"</string> diff --git a/res/values-zh-rCN/inspector_strings.xml b/res/values-zh-rCN/inspector_strings.xml new file mode 100644 index 000000000..5e4424174 --- /dev/null +++ b/res/values-zh-rCN/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"信息"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"无法加载文件信息"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"调试信息(仅限开发者)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"原始元数据:<xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"媒体详情"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"使用以下应用打开这类文件:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"此文件的提供方:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"未选择"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"未知"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"尺寸"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> 百万像素"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"坐标"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>,<xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"海拔"</string> + <string name="metadata_camera" msgid="2363009732801281319">"相机"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"光圈"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"快门速度"</string> + <string name="metadata_duration" msgid="3115494422055472715">"时长"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"拍摄时间"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"焦距"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> 毫米"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO 等效感光度"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"流式传输类型"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"原始大小(字节)"</string> +</resources> diff --git a/res/values-zh-rCN/mimes.xml b/res/values-zh-rCN/mimes.xml new file mode 100644 index 000000000..eb3a6c133 --- /dev/null +++ b/res/values-zh-rCN/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> 文件"</string> + <string name="generic_file_type" msgid="1415477154743494280">"文件"</string> + <string name="image_file_type" msgid="3011633523704887793">"图片"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> 图片"</string> + <string name="audio_file_type" msgid="3790525543519624632">"音频"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> 音频"</string> + <string name="video_file_type" msgid="7290473366042482095">"视频"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> 视频"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> 归档文件"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android 应用"</string> + <string name="txt_file_type" msgid="4677767777860724696">"纯文本"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML 文档"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF 文档"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word 文档"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint 演示文稿"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel 电子表格"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google 文档"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google 电子表格"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google 演示文稿"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google 绘图"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google 表格"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google 表单"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google 地图"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google 网站"</string> + <string name="directory_type" msgid="2702987727566226354">"文件夹"</string> +</resources> diff --git a/res/values-zh-rCN/strings.xml b/res/values-zh-rCN/strings.xml index 1aec39214..e73ece973 100644 --- a/res/values-zh-rCN/strings.xml +++ b/res/values-zh-rCN/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"压缩"</string> <string name="menu_extract" msgid="8171946945982532262">"解压到…"</string> <string name="menu_rename" msgid="1883113442688817554">"重命名"</string> - <string name="menu_inspector" msgid="8633147986551632467">"属性"</string> + <string name="menu_inspector" msgid="8217713416277319588">"获取信息"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"在“<xliff:g id="SOURCE">%1$s</xliff:g>”中查看"</string> <string name="menu_new_window" msgid="2947837751796109126">"新建窗口"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"剪切"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"移动"</string> <string name="button_dismiss" msgid="7235249361023803349">"关闭"</string> <string name="button_retry" msgid="4011461781916631389">"重试"</string> + <string name="button_clear" msgid="5412304437764369441">"清除"</string> + <string name="button_show_provider" msgid="6905880493806292753">"在提供程序中显示"</string> <string name="not_sorted" msgid="7813496644889115530">"未排序"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"名称"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"摘要"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"类型"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"大小"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"上次修改时间"</string> - <string name="directory_children" msgid="8115290268549503262">"儿童人数"</string> + <string name="directory_items" msgid="6645621978998614003">"项数"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"升序"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"降序"</string> <string name="drawer_open" msgid="8071673398187261741">"显示根目录"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"无法打开文件"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"无法打开归档文件"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"无法删除部分文档"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"无法加载属性"</string> <string name="share_via" msgid="8725082736005677161">"分享方式"</string> <string name="copy_notification_title" msgid="52256435625098456">"正在复制文件"</string> <string name="compress_notification_title" msgid="6830195148113751021">"正在压缩文件"</string> diff --git a/res/values-zh-rHK/inspector_strings.xml b/res/values-zh-rHK/inspector_strings.xml new file mode 100644 index 000000000..be9abfcc9 --- /dev/null +++ b/res/values-zh-rHK/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"資訊"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"無法載入檔案資訊"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"偵錯資料 (只限開發人員)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"原始元數據:<xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"媒體詳情"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"使用以下應用程式開啟這種檔案:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"這個檔案的提供者:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"未選取"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"不明"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"尺寸"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> 百萬像素"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"座標"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>,<xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"高度"</string> + <string name="metadata_camera" msgid="2363009732801281319">"相機"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"光圈"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"快門速度"</string> + <string name="metadata_duration" msgid="3115494422055472715">"時間長度"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"拍攝時間"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"焦距"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> 毫米"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"ISO 等效感光度"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"串流類型"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"原始大小 (字節)"</string> +</resources> diff --git a/res/values-zh-rHK/mimes.xml b/res/values-zh-rHK/mimes.xml new file mode 100644 index 000000000..d250e18a2 --- /dev/null +++ b/res/values-zh-rHK/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> 檔案"</string> + <string name="generic_file_type" msgid="1415477154743494280">"檔案"</string> + <string name="image_file_type" msgid="3011633523704887793">"圖片"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> 圖片"</string> + <string name="audio_file_type" msgid="3790525543519624632">"音訊"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> 音訊"</string> + <string name="video_file_type" msgid="7290473366042482095">"影片"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> 影片"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> 封存檔案"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android 應用程式"</string> + <string name="txt_file_type" msgid="4677767777860724696">"純文字"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML 文件"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF 文件"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word 文件"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint 簡報"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel 試算表"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google 文件"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google 試算表"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google 簡報"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google 繪圖"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google 表格"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google 表格"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google 地圖"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google 網站"</string> + <string name="directory_type" msgid="2702987727566226354">"資料夾"</string> +</resources> diff --git a/res/values-zh-rHK/strings.xml b/res/values-zh-rHK/strings.xml index 399f1d0e8..c2bbb4fb9 100644 --- a/res/values-zh-rHK/strings.xml +++ b/res/values-zh-rHK/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"壓縮"</string> <string name="menu_extract" msgid="8171946945982532262">"壓縮至…"</string> <string name="menu_rename" msgid="1883113442688817554">"重新命名"</string> - <string name="menu_inspector" msgid="8633147986551632467">"屬性"</string> + <string name="menu_inspector" msgid="8217713416277319588">"獲取資訊"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"在「<xliff:g id="SOURCE">%1$s</xliff:g>」中查看"</string> <string name="menu_new_window" msgid="2947837751796109126">"新視窗"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"剪下"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"移動"</string> <string name="button_dismiss" msgid="7235249361023803349">"關閉"</string> <string name="button_retry" msgid="4011461781916631389">"再試一次"</string> + <string name="button_clear" msgid="5412304437764369441">"清除"</string> + <string name="button_show_provider" msgid="6905880493806292753">"在供應商的應用程式中顯示"</string> <string name="not_sorted" msgid="7813496644889115530">"尚未排序"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"名稱"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"摘要"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"類型"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"大小"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"上次修改時間"</string> - <string name="directory_children" msgid="8115290268549503262">"兒童人數"</string> + <string name="directory_items" msgid="6645621978998614003">"項目數量"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"遞增"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"遞減"</string> <string name="drawer_open" msgid="8071673398187261741">"顯示根目錄"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"無法開啟檔案"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"無法開啟封存中的檔案"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"無法刪除部分文件"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"無法載入屬性"</string> <string name="share_via" msgid="8725082736005677161">"透過以下應用程式分享:"</string> <string name="copy_notification_title" msgid="52256435625098456">"正在複製檔案"</string> <string name="compress_notification_title" msgid="6830195148113751021">"正在壓縮檔案"</string> diff --git a/res/values-zh-rTW/inspector_strings.xml b/res/values-zh-rTW/inspector_strings.xml new file mode 100644 index 000000000..ccdd6d303 --- /dev/null +++ b/res/values-zh-rTW/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"資訊"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"無法載入檔案資訊"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"偵錯資訊 (開發人員專用)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"原始中繼資料:<xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"媒體詳細資料"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"使用以下應用程式開啟這種檔案:"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"這個檔案的提供者:"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"未選取"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"不明"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"尺寸"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g> 百萬像素"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"座標"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>,<xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"高度"</string> + <string name="metadata_camera" msgid="2363009732801281319">"相機"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"光圈"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"快門速度"</string> + <string name="metadata_duration" msgid="3115494422055472715">"時間長度"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"拍攝時間"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"焦距"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g> 毫米"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"等效 ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"串流類型"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"原始大小 (位元組)"</string> +</resources> diff --git a/res/values-zh-rTW/mimes.xml b/res/values-zh-rTW/mimes.xml new file mode 100644 index 000000000..cc5cc2913 --- /dev/null +++ b/res/values-zh-rTW/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> 檔案"</string> + <string name="generic_file_type" msgid="1415477154743494280">"檔案"</string> + <string name="image_file_type" msgid="3011633523704887793">"圖片"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> 圖片"</string> + <string name="audio_file_type" msgid="3790525543519624632">"音訊"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> 音訊"</string> + <string name="video_file_type" msgid="7290473366042482095">"影片"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> 影片"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> 封存檔"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Android 應用程式"</string> + <string name="txt_file_type" msgid="4677767777860724696">"純文字"</string> + <string name="html_file_type" msgid="2034229603117527970">"HTML 文件"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"PDF 文件"</string> + <string name="word_file_type" msgid="2366349268129894972">"Word 文件"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"PowerPoint 簡報"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Excel 試算表"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Google 文件"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Google 試算表"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Google 簡報"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google 繪圖"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Google 表格"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Google 表單"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Google 地圖"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Google 網站"</string> + <string name="directory_type" msgid="2702987727566226354">"資料夾"</string> +</resources> diff --git a/res/values-zh-rTW/strings.xml b/res/values-zh-rTW/strings.xml index bc55dd6af..0cf1e1076 100644 --- a/res/values-zh-rTW/strings.xml +++ b/res/values-zh-rTW/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"壓縮"</string> <string name="menu_extract" msgid="8171946945982532262">"解壓縮到…"</string> <string name="menu_rename" msgid="1883113442688817554">"重新命名"</string> - <string name="menu_inspector" msgid="8633147986551632467">"屬性"</string> + <string name="menu_inspector" msgid="8217713416277319588">"取得資訊"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"在「<xliff:g id="SOURCE">%1$s</xliff:g>」中查看"</string> <string name="menu_new_window" msgid="2947837751796109126">"新視窗"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"剪下"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"移動"</string> <string name="button_dismiss" msgid="7235249361023803349">"關閉"</string> <string name="button_retry" msgid="4011461781916631389">"再試一次"</string> + <string name="button_clear" msgid="5412304437764369441">"清除"</string> + <string name="button_show_provider" msgid="6905880493806292753">"在供應商的應用程式中顯示"</string> <string name="not_sorted" msgid="7813496644889115530">"未排序"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"名稱"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"摘要"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"類型"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"大小"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"上次修改時間"</string> - <string name="directory_children" msgid="8115290268549503262">"兒童人數"</string> + <string name="directory_items" msgid="6645621978998614003">"項目數量"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"遞增"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"遞減"</string> <string name="drawer_open" msgid="8071673398187261741">"顯示根目錄"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"無法開啟檔案"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"無法開啟已封存的檔案"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"無法刪除部分文件"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"無法載入屬性"</string> <string name="share_via" msgid="8725082736005677161">"分享方式:"</string> <string name="copy_notification_title" msgid="52256435625098456">"複製檔案"</string> <string name="compress_notification_title" msgid="6830195148113751021">"正在壓縮檔案"</string> diff --git a/res/values-zu/inspector_strings.xml b/res/values-zu/inspector_strings.xml new file mode 100644 index 000000000..4decae681 --- /dev/null +++ b/res/values-zu/inspector_strings.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="inspector_title" msgid="1924760928091740238">"Ulwazi"</string> + <string name="inspector_load_error" msgid="7522190243413249291">"Ulwazi lwefayela alikwazanga ukulayishwa"</string> + <string name="inspector_debug_section" msgid="2576052661505700421">"Ulwazi lokususa iphutha (i-dev kuphela)"</string> + <string name="inspector_debug_metadata_section" msgid="5875140675600744846">"Imethadatha e-Raw: <xliff:g id="METADATATYPE">%1$s</xliff:g>"</string> + <string name="inspector_metadata_section" msgid="6077622515328240575">"Imininingwane yemidiya"</string> + <string name="handler_app_file_opens_with" msgid="5272329600389613550">"Lolu hlobo lwefayela luvuleka nge-"</string> + <string name="handler_app_belongs_to" msgid="5444507329303253553">"Leli fayela linikezelwe yi-"</string> + <string name="handler_app_not_selected" msgid="1294439257183908786">"Abangakhethiwe"</string> + <string name="handler_app_unknown" msgid="5911661530593229287">"Akwaziwa"</string> + <string name="metadata_dimensions" msgid="6112907724016659801">"Ubukhulu"</string> + <string name="metadata_dimensions_format" msgid="6138765871412005962">"<xliff:g id="WIDTH">%1$d</xliff:g> x <xliff:g id="HEIGHT">%2$d</xliff:g> - <xliff:g id="MEGAPIXELS">%3$,.1f</xliff:g>MP"</string> + <string name="metadata_coordinates" msgid="6897383227370702734">"Ukuxhumanisa"</string> + <string name="metadata_coordinates_format" msgid="1402724596764547761">"<xliff:g id="LATITUDE">%1$,.3f</xliff:g>, <xliff:g id="LONGITUDE">%2$,.3f</xliff:g>"</string> + <string name="metadata_altitude" msgid="8063792127436794294">"Ukuphakama"</string> + <string name="metadata_camera" msgid="2363009732801281319">"Ikhamera"</string> + <string name="metadata_camera_format" msgid="1494489751904311612">"<xliff:g id="MAKE">%1$s</xliff:g> <xliff:g id="MODEL">%2$s</xliff:g>"</string> + <string name="metadata_aperture" msgid="6538741952698935357">"Imbobo"</string> + <string name="metadata_shutter_speed" msgid="8204739885103326131">"Isivinini seshutha"</string> + <string name="metadata_duration" msgid="3115494422055472715">"Ubude besikhathi"</string> + <string name="metadata_date_time" msgid="1090351199248114406">"Ithathwe ngezi"</string> + <string name="metadata_focal_length" msgid="3440735161407699893">"Ubude befokhali"</string> + <string name="metadata_focal_format" msgid="8542211707962355623">"<xliff:g id="LENGTH">%1$.2f </xliff:g>mm"</string> + <string name="metadata_iso_speed_ratings" msgid="1699781252899759058">"Okulinganayo kwe-ISO"</string> + <string name="metadata_iso_format" msgid="4153285204012694861">"I-ISO <xliff:g id="ISO_SPEED">%1$d</xliff:g>"</string> + <!-- no translation found for metadata_artist (8972421485694988540) --> + <skip /> + <!-- no translation found for metadata_composer (4696926808308256056) --> + <skip /> + <!-- no translation found for metadata_album (1661699531214720236) --> + <skip /> + <!-- no translation found for metadata_address (1849921023707744640) --> + <skip /> + <string name="debug_stream_types" msgid="2088565280360139333">"Izinhlobo zokusakaza"</string> + <string name="debug_raw_size" msgid="7487139640175650185">"Usayizi we-Raw (amabhayithi)"</string> +</resources> diff --git a/res/values-zu/mimes.xml b/res/values-zu/mimes.xml new file mode 100644 index 000000000..b8bf096bf --- /dev/null +++ b/res/values-zu/mimes.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Copyright (C) 2017 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. + --> + +<resources xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <string name="generic_extention_file_type" msgid="5947398320635880291">"<xliff:g id="EXTENSION">%1$s</xliff:g> ifayela"</string> + <string name="generic_file_type" msgid="1415477154743494280">"Ifayela"</string> + <string name="image_file_type" msgid="3011633523704887793">"Isithombe"</string> + <string name="image_extension_file_type" msgid="992617216367594851">"<xliff:g id="FILETYPE">%1$s</xliff:g> isithombe"</string> + <string name="audio_file_type" msgid="3790525543519624632">"Umsindo"</string> + <string name="audio_extension_file_type" msgid="6334293531796491314">"<xliff:g id="FILETYPE">%1$s</xliff:g> umsindo"</string> + <string name="video_file_type" msgid="7290473366042482095">"Ividiyo"</string> + <string name="video_extension_file_type" msgid="6352763029831291433">"<xliff:g id="FILETYPE">%1$s</xliff:g> ividiyo"</string> + <string name="archive_file_type" msgid="1463432996680398798">"<xliff:g id="FILETYPE">%1$s</xliff:g> ingobo yomlando"</string> + <string name="apk_file_type" msgid="6004275470389462277">"Uhlelo lokusebenza lwe-Android"</string> + <string name="txt_file_type" msgid="4677767777860724696">"Umbhalo ongenalutho"</string> + <string name="html_file_type" msgid="2034229603117527970">"Idokhumenti ye-HTML"</string> + <string name="pdf_file_type" msgid="3382260303795039988">"Idokhumenti ye-PDF"</string> + <string name="word_file_type" msgid="2366349268129894972">"Idokhumenti ye-Word"</string> + <string name="ppt_file_type" msgid="2570841599899893925">"Iphrezentheshini ye-PowerPoint"</string> + <string name="excel_file_type" msgid="8363932635044575463">"Isipredishithi se-Excel"</string> + <string name="gdoc_file_type" msgid="242328101061228382">"Idokhumenti ye-Google"</string> + <string name="gsheet_file_type" msgid="8055591929133067952">"Isipredishithi se-Google"</string> + <string name="gslides_file_type" msgid="8359750985956690177">"Iphrezentheshini ye-Google"</string> + <string name="gdraw_file_type" msgid="655688091676820371">"Google imidwebo"</string> + <string name="gtable_file_type" msgid="7332773878374650335">"Ithebula ye-Google"</string> + <string name="gform_file_type" msgid="4803176103746107611">"Ifomu le-Google"</string> + <string name="gmap_file_type" msgid="6684180781808007016">"Imephu ye-Google"</string> + <string name="gsite_file_type" msgid="3742812051249149526">"Isayithi le-Google"</string> + <string name="directory_type" msgid="2702987727566226354">"Ifolda"</string> +</resources> diff --git a/res/values-zu/strings.xml b/res/values-zu/strings.xml index 1d80f8b06..673fdfc4f 100644 --- a/res/values-zu/strings.xml +++ b/res/values-zu/strings.xml @@ -41,7 +41,7 @@ <string name="menu_compress" msgid="37539111904724188">"Cindezela"</string> <string name="menu_extract" msgid="8171946945982532262">"Khiphela ku…"</string> <string name="menu_rename" msgid="1883113442688817554">"Qamba kabusha"</string> - <string name="menu_inspector" msgid="8633147986551632467">"Izici"</string> + <string name="menu_inspector" msgid="8217713416277319588">"Thola ulwazi"</string> <string name="menu_view_in_owner" msgid="7228948660557554770">"Buka ku-<xliff:g id="SOURCE">%1$s</xliff:g>"</string> <string name="menu_new_window" msgid="2947837751796109126">"Iwindi elisha"</string> <string name="menu_cut_to_clipboard" msgid="2878752142015026229">"Sika"</string> @@ -57,13 +57,15 @@ <string name="button_move" msgid="8596460499325291272">"Hambisa"</string> <string name="button_dismiss" msgid="7235249361023803349">"Cashisa"</string> <string name="button_retry" msgid="4011461781916631389">"Zama Futhi"</string> + <string name="button_clear" msgid="5412304437764369441">"Sula"</string> + <string name="button_show_provider" msgid="6905880493806292753">"Bonisa kumhlinzeki"</string> <string name="not_sorted" msgid="7813496644889115530">"Akuhlungiwe"</string> <string name="sort_dimension_name" msgid="6325591541414177579">"Igama"</string> <string name="sort_dimension_summary" msgid="7724534446881397860">"Isifinyezo"</string> <string name="sort_dimension_file_type" msgid="5779709622922085381">"Uhlobo"</string> <string name="sort_dimension_size" msgid="2190547351159472884">"Usayizi"</string> <string name="sort_dimension_date" msgid="4231005651895254033">"Kulungisiwe"</string> - <string name="directory_children" msgid="8115290268549503262">"Inombolo yezingane"</string> + <string name="directory_items" msgid="6645621978998614003">"Inombolo yezinto"</string> <string name="sort_direction_ascending" msgid="5882787683763248102">"Iyanyuka"</string> <string name="sort_direction_descending" msgid="1729187589765894076">"Iyehla"</string> <string name="drawer_open" msgid="8071673398187261741">"Bonisa izimpande"</string> @@ -82,7 +84,6 @@ <string name="toast_no_application" msgid="7555319548595113121">"Ayikwazanga ukuvula ifayela"</string> <string name="toast_view_in_archives_unsupported" msgid="1923221390170964845">"Ayikwazi ukuvula amafayela kuzingobo zomlando"</string> <string name="toast_failed_delete" msgid="3453846588205817591">"Ayikwazi ukususa amanye amadokhumenti"</string> - <string name="file_inspector_load_error" msgid="1226344446677541109">"Izakhiwo azikwazanga ukulayishwa"</string> <string name="share_via" msgid="8725082736005677161">"Abelana nge-"</string> <string name="copy_notification_title" msgid="52256435625098456">"Ikopisha amafayela"</string> <string name="compress_notification_title" msgid="6830195148113751021">"Icindezela amafayela"</string> diff --git a/res/values/colors.xml b/res/values/colors.xml index e7801b944..818e012e2 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -76,5 +76,8 @@ <color name="scroll_track">#fff0f0f0</color> <color name="inspector_value">#ff939393</color> + <color name="inspector_link">#6633b5e5</color> <color name="inspector_section_title">#ff939393</color> + <color name="inspector_section_divider">#E0E0E0</color> + <color name="inspector_title_background">#40000000</color> </resources> diff --git a/res/values/config.xml b/res/values/config.xml index 61e5aeddb..eed4f5fdc 100644 --- a/res/values/config.xml +++ b/res/values/config.xml @@ -48,7 +48,7 @@ <bool name="feature_remote_actions">true</bool> <bool name="feature_system_keyboard_navigation">true</bool> <bool name="feature_virtual_files_sharing">true</bool> - <bool name="feature_inspector">false</bool> + <bool name="feature_inspector">true</bool> <bool name="feature_debug_mode">false</bool> <!-- Indicates if internal storage is shown as default or not. --> diff --git a/res/values/inspector_strings.xml b/res/values/inspector_strings.xml new file mode 100644 index 000000000..d02ae0c51 --- /dev/null +++ b/res/values/inspector_strings.xml @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2017 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. +--> + +<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + <!-- File properties dialog title. This dialog show fine grained details about a file. --> + <string name="inspector_title">Info</string> + + <!-- File properties dialog error shown when information about a file could not be loaded--> + <string name="inspector_load_error">File info could not be loaded</string> + + <!-- Title of inspector's debug information section. The contents of this section + features detailed "internal" information useful primarily to developers. + This section is only visible to developers or people running debug builds. [CHAR LIMIT=48] --> + <string name="inspector_debug_section">Debug info (dev only)</string> + + <!-- Title of inspector's debug info metadata sub-section. [CHAR LIMIT=48] --> + <string name="inspector_debug_metadata_section">Raw metadata: <xliff:g id="metadataType" example="EXIF">%1$s</xliff:g></string> + + <!-- Title of inspector's media details info section. Shows information related to camera, dimensions, and authors. --> + <string name="inspector_metadata_section">Media details</string> + + <!-- File properties dialog section title. In this section we show information about the default handler application for this type of file.--> + <string name="handler_app_file_opens_with">This kind of file opens with</string> + <!-- File properties dialog section title. In this section we show information about the applicaiton that provides the file. + Examples of such applicaitons are: Box, Microsoft OneDrive, and Google Drive, etc)--> + <string name="handler_app_belongs_to">This file is supplied by</string> + + <!-- File properties dialog user message if a default app has not been selected--> + <string name="handler_app_not_selected">Not selected</string> + <!-- File properties dialog user message if the default app is unknown--> + <string name="handler_app_unknown">Unknown</string> + + <!-- The height and width of a photo. --> + <string name="metadata_dimensions">Dimensions</string> + <!-- The width and height of a photo, followed by a the "megapixel rating". + Cameras are frequently rated by "megapixels". In U.S. English the "megapixels" rating + of a camera is denoted by a number followed by "MP". E.g. 12.2MP or 8MP. --> + <string name="metadata_dimensions_format"><xliff:g id="width" example="1280">%1$d</xliff:g> x <xliff:g id="height" example="1024">%2$d</xliff:g> - <xliff:g id="megapixels" example="12.2">%3$,.1f</xliff:g>MP</string> + <!-- The location of where a photo was taken. --> + <string name="metadata_coordinates">Coordinates</string> + <!-- The location a photo was taken in the form of latitude/longitude coordinates. --> + <string name="metadata_coordinates_format"><xliff:g id="latitude" example="33.996">%1$,.3f</xliff:g>, <xliff:g id="longitude" example="-118.476">%2$,.3f</xliff:g></string> + <!-- The elevation a photo was taken. --> + <string name="metadata_altitude">Altitude</string> + <!-- The camera make and model. --> + <string name="metadata_camera">Camera</string> + <!-- The camera make and model. Where make is usually the company, and model is the individual camera model name. --> + <string name="metadata_camera_format"><xliff:g id="make" example="Sony">%1$s</xliff:g> <xliff:g id="model" example="Snazzy Snapper">%2$s</xliff:g></string> + <!-- The value of a photos aperture. Note that this is probably camera EXIF data.--> + <string name="metadata_aperture">Aperture</string> + <!-- The value of a photos shutter speed. Note that this is probably camera EXIF data.--> + <string name="metadata_shutter_speed">Shutter speed</string> + <!-- How long a video/audio file is.--> + <string name="metadata_duration">Duration</string> + <!-- When a photo was taken. Note that this is probably camera EXIF data.--> + <string name="metadata_date_time">Taken on</string> + <!-- Message presenting EXIF aperture information in the tradition "f/2.0" format familiar to users. This format is basically an industry standard that shouldn't be translated, so it is marked as not translatable. --> + <string name="metadata_aperture_format" translatable="false">f/<xliff:g id="aperture" example="2.0">%1$,.1f</xliff:g></string> + <!--The tag for the focal length of a camera. Note that this is probably camera EXIF data--> + <string name="metadata_focal_length">Focal length</string> + <!--The format for displaying the focal length of a camera. Note that this is probably camera EXIF data--> + <string name="metadata_focal_format"><xliff:g id="length" example="24">%1$.2f </xliff:g>mm</string> + <!--The tag for the ISO Speed of a camera. Note that this is probably camera EXIF data--> + <string name="metadata_iso_speed_ratings">ISO equivalent</string> + <!--The format for displaying ISO speed. Note that this is probably camera EXIF data--> + <string name="metadata_iso_format">ISO <xliff:g id="iso_speed" example="35">%1$d</xliff:g></string> + <!--The title of the audio file, Note this is probably MP3 ID3 tags.--> + <string name="metadata_artist">Artist</string> + <!--The composer for the audio file, Note this is probably MP3 ID3 tags--> + <string name="metadata_composer">Composer</string> + <!--The album the file is in, Note this is probably MP3 ID3 tags--> + <string name="metadata_album">Album</string> + <!-- The address nearest to where a photo was taken --> + <string name="metadata_address">Location</string> + + <!-- String label for developer/debug file details, specifying which stream types are available. --> + <string name="debug_stream_types">Stream types</string> + <!-- String label for developer/debug file details, specifying the size of the file in bytes. --> + <string name="debug_raw_size">Raw size (bytes)</string> + <!-- String label for developer/debug file details, specifying a file's uri/content address. --> + <string name="debug_content_uri" translatable="false">Uri</string> + <!-- String label for developer/debug file details, specifying document id. --> + <string name="debug_document_id" translatable="false">Document id</string> + <!-- String label for developer/debug file details, specifying mimetype. --> + <string name="debug_raw_mimetype" translatable="false">Raw mimetype</string> + <!-- String label for developer/debug file details, specifying that a file is an archive. --> + <string name="debug_is_archive" translatable="false">Is archive</string> + <!-- String label for developer/debug file details, specifying that a file is a container (like a folder or an archive). --> + <string name="debug_is_container" translatable="false">Is container</string> + <!-- String label for developer/debug file details, specifying that a file is partial (being downloaded). --> + <string name="debug_is_partial" translatable="false">Is partial</string> + <!-- String label for developer/debug file details, specifying that a file is virtual (has no byte representation). --> + <string name="debug_is_virtual" translatable="false">Is virtual</string> + <!-- String label for developer/debug file details, specifying that a file supports creating files within it. --> + <string name="debug_supports_create" translatable="false">Supports create</string> + <!-- String label for developer/debug file details, specifying that a file is deletable. --> + <string name="debug_supports_delete" translatable="false">Supports delete</string> + <!-- String label for developer/debug file details, specifying that a file has associated metadata. --> + <string name="debug_supports_metadata" translatable="false">Supports metadata</string> + <!-- String label for developer/debug file details, specifying that a file can be renamed. --> + <string name="debug_supports_rename" translatable="false">Supports rename</string> + <!-- String label for developer/debug file details, specifying that a file supports the "settings" feature. --> + <string name="debug_supports_settings" translatable="false">Supports settings</string> + <!-- String label for developer/debug file details, specifying that a file has a viewable thumbnail. --> + <string name="debug_supports_thumbnail" translatable="false">Supports thumbnail</string> + <!-- String label for developer/debug file details, specifying that a file supports the "weblink" feature. --> + <string name="debug_supports_weblink" translatable="false">Supports weblink</string> + <!-- String label for developer/debug file details, specifying that a file is writable. --> + <string name="debug_supports_write" translatable="false">Supports write</string> + +</resources> diff --git a/res/values/mimes.xml b/res/values/mimes.xml index 6823ed957..05597418c 100644 --- a/res/values/mimes.xml +++ b/res/values/mimes.xml @@ -16,54 +16,54 @@ --> <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <!-- Generic file type with an extention shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Generic file type with an extention shown in type column in list view. [CHAR LIMIT=30] --> <string name="generic_extention_file_type"><xliff:g id="extension" example="APE">%1$s</xliff:g> file</string> - <!-- Generic file type without an extention shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Generic file type without an extention shown in type column in list view. [CHAR LIMIT=30] --> <string name="generic_file_type">File</string> - <!-- Generic image file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Generic image file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="image_file_type">Image</string> - <!-- Image file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Image file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="image_extension_file_type"><xliff:g id="fileType" example="JPG">%1$s</xliff:g> image</string> - <!-- Generic audio file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Generic audio file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="audio_file_type">Audio</string> - <!-- Audio file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Audio file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="audio_extension_file_type"><xliff:g id="fileType" example="MP3">%1$s</xliff:g> audio</string> - <!-- Generic video file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Generic video file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="video_file_type">Video</string> - <!-- Video file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Video file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="video_extension_file_type"><xliff:g id="fileType" example="AVI">%1$s</xliff:g> video</string> - <!-- Archive file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Archive file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="archive_file_type"><xliff:g id="fileType" example="Zip">%1$s</xliff:g> archive</string> - <!-- Android application file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Android application file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="apk_file_type">Android application</string> - <!-- Plain text file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Plain text file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="txt_file_type">Plain text</string> - <!-- HTML file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- HTML file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="html_file_type">HTML document</string> - <!-- PDF file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- PDF file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="pdf_file_type">PDF document</string> - <!-- Word document file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Word document file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="word_file_type">Word document</string> - <!-- PowerPoint presentation file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- PowerPoint presentation file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="ppt_file_type">PowerPoint presentation</string> - <!-- Excel spreadsheet file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Excel spreadsheet file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="excel_file_type">Excel spreadsheet</string> - <!-- Google document file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Google document file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="gdoc_file_type">Google document</string> - <!-- Google spreadsheet file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Google spreadsheet file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="gsheet_file_type">Google spreadsheet</string> - <!-- Google presentation file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Google presentation file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="gslides_file_type">Google presentation</string> - <!-- Google drawing file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Google drawing file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="gdraw_file_type">Google drawing</string> - <!-- Google table file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Google table file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="gtable_file_type">Google table</string> - <!-- Google form file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Google form file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="gform_file_type">Google form</string> - <!-- Google map file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Google map file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="gmap_file_type">Google map</string> - <!-- Google site file type shown in type column in list view. [CHAR LIMIT=24] --> + <!-- Google site file type shown in type column in list view. [CHAR LIMIT=30] --> <string name="gsite_file_type">Google site</string> <!-- Generic directory type shown when viewing a folder in the properties view --> <string name="directory_type">Folder</string> -</resources>
\ No newline at end of file +</resources> diff --git a/res/values/strings.xml b/res/values/strings.xml index a5ecfaceb..49f648946 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -67,8 +67,8 @@ <string name="menu_extract">Extract to\u2026</string> <!-- Menu item that renames the selected document [CHAR LIMIT=28] --> <string name="menu_rename">Rename</string> - <!--Menu item that displays properties about the selected document [CHAR LIMIT=28] --> - <string name="menu_inspector">Get info</string> + <!-- Menu item that displays properties about the selected document [CHAR LIMIT=28] --> + <string name="menu_inspect">Get info</string> <!-- Menu item that renames the selected document [CHAR LIMIT=28] --> <string name="menu_view_in_owner">View in <xliff:g id="source" example="Google Drive">%1$s</xliff:g></string> @@ -103,6 +103,11 @@ <!-- Button label that hides the error bar [CHAR LIMIT=24] --> <string name="button_dismiss">Dismiss</string> <string name="button_retry">Try Again</string> + <!-- Button label that removes the default application to open a file. --> + <string name="button_clear">Clear</string> + <!-- Button label that show in the providers service. Many providers have their own app such + as google drive. Pressing this button would open in the file in the providers app. --> + <string name="button_show_provider">Show in provider</string> <!-- A string used to show user that currently documents are not sorted in any given order. [CHAR_LIMIT=30] --> <string name="not_sorted">Not sorted</string> @@ -120,26 +125,6 @@ <!--Table header for number of items in a folder.--> <string name="directory_items">Number of items</string> - <!--File properties dialog section title. In this section we show information about the default handler application for this type of file.--> - <string name="handler_app_file_opens_with">This kind of file opens with</string> - <!--File properties dialog section title. In this section we show information about a files provider. (e.g. system, drive, dropbox, etc)--> - <string name="handler_app_belongs_to">This file belongs to</string> - - <!--File properties dialog button description for clearing the default app. the name of the app - will be inserted programmatically inbetween these two strings--> - <string name="handler_app_button_info_1">Other apps can open this file type. Clear</string> - <string name="handler_app_button_info_2">as the default.</string> - - <!--File properties dialog button label to clear the default app--> - <string name="handler_app_clear">Clear</string> - <!--File properties dialog button label to show a document in a provider--> - <string name="handler_app_show_in">Show in provider</string> - - <!--File properties dialog user message if a default app has not been selected--> - <string name="handler_app_not_selected">Not selected</string> - <!--File properties dialog user message if the default app is unknown--> - <string name="handler_app_unknown">Unknown</string> - <!-- content description to describe ascending sorting used with upward arrow in table header. --> <string name="sort_direction_ascending">Ascending</string> <!-- content description to describe descending sorting used with downward arrow in table header. --> @@ -183,9 +168,6 @@ <!-- Toast shown when some of the selected documents failed to be deleted [CHAR LIMIT=48] --> <string name="toast_failed_delete">Unable to delete some documents</string> - <!-- Toast shown when a files document info fails to load--> - <string name="file_inspector_load_error">Properties could not be loaded</string> - <!-- Title of dialog when prompting user to select an app to share documents with [CHAR LIMIT=32] --> <string name="share_via">Share via</string> @@ -386,8 +368,4 @@ <!-- Button for continuing a file operation in background, eg. copying, moving or extracting. [CHAR LIMIT=48] --> <string name="continue_in_background">Continue in background</string> - - <!-- Title of inspector's debug info section. [CHAR LIMIT=48] --> - <string name="inspector_debug_section">Debug info (dev only)</string> - </resources> diff --git a/src/com/android/documentsui/AbstractActionHandler.java b/src/com/android/documentsui/AbstractActionHandler.java index 0faab6e71..c239c83b5 100644 --- a/src/com/android/documentsui/AbstractActionHandler.java +++ b/src/com/android/documentsui/AbstractActionHandler.java @@ -230,6 +230,7 @@ public abstract class AbstractActionHandler<T extends Activity & CommonAddons> throw new UnsupportedOperationException("Can't open document."); } + @Override public void showInspector(DocumentInfo doc) { throw new UnsupportedOperationException("Can't open properties."); } @@ -356,6 +357,13 @@ public abstract class AbstractActionHandler<T extends Activity & CommonAddons> + mState.stack.getRoot()); } + final DocumentInfo top = stack.peek(); + if (top.isArchive()) { + // Swap the zip file in original provider and the one provided by ArchiveProvider. + stack.pop(); + stack.push(mDocs.getArchiveDocument(top.derivedUri)); + } + mState.stack.reset(); // Update navigator to give horizontal breadcrumb a chance to update documents. It // doesn't update its content if the size of document stack doesn't change. diff --git a/src/com/android/documentsui/BaseActivity.java b/src/com/android/documentsui/BaseActivity.java index 290dd638d..19457fccd 100644 --- a/src/com/android/documentsui/BaseActivity.java +++ b/src/com/android/documentsui/BaseActivity.java @@ -425,12 +425,10 @@ public abstract class BaseActivity } mNavigator.update(); + // Causes talkback to announce the activity's new title - if (mState.stack.isRecents()) { - setTitle(mProviders.getRecentsRoot().title); - } else { - setTitle(mState.stack.getTitle()); - } + setTitle(mState.stack.getTitle()); + invalidateOptionsMenu(); } diff --git a/src/com/android/documentsui/LoadDocStackTask.java b/src/com/android/documentsui/LoadDocStackTask.java index 1ce4630c9..af106937c 100644 --- a/src/com/android/documentsui/LoadDocStackTask.java +++ b/src/com/android/documentsui/LoadDocStackTask.java @@ -60,7 +60,6 @@ public class LoadDocStackTask extends PairedTask<Activity, Uri, DocumentStack> { @Override public @Nullable DocumentStack run(Uri... uris) { - // assert(Features.OMC_RUNTIME); if (mDocs.isDocumentUri(uris[0])) { final Uri docUri; if (DocumentsContract.isTreeUri(uris[0])) { diff --git a/src/com/android/documentsui/MenuManager.java b/src/com/android/documentsui/MenuManager.java index a8c97671c..01e4619c0 100644 --- a/src/com/android/documentsui/MenuManager.java +++ b/src/com/android/documentsui/MenuManager.java @@ -62,8 +62,8 @@ public abstract class MenuManager { updateCopyTo(menu.findItem(R.id.action_menu_copy_to), selection); updateCompress(menu.findItem(R.id.action_menu_compress), selection); updateExtractTo(menu.findItem(R.id.action_menu_extract_to), selection); + updateInspect(menu.findItem(R.id.action_menu_inspect), selection); updateViewInOwner(menu.findItem(R.id.action_menu_view_in_owner), selection); - updateInspector(menu.findItem(R.id.action_menu_inspector), selection); Menus.disableHiddenItems(menu); } @@ -78,7 +78,7 @@ public abstract class MenuManager { menu.findItem(R.id.option_menu_list)); updateAdvanced(menu.findItem(R.id.option_menu_advanced)); updateDebug(menu.findItem(R.id.option_menu_debug)); - + updateInspect(menu.findItem(R.id.option_menu_inspect)); Menus.disableHiddenItems(menu); } @@ -115,7 +115,7 @@ public abstract class MenuManager { */ @VisibleForTesting public void updateContextMenuForFiles(Menu menu, SelectionDetails selectionDetails) { - assert(selectionDetails != null); + assert selectionDetails != null; MenuItem share = menu.findItem(R.id.dir_menu_share); MenuItem open = menu.findItem(R.id.dir_menu_open); @@ -144,7 +144,7 @@ public abstract class MenuManager { */ @VisibleForTesting public void updateContextMenuForDirs(Menu menu, SelectionDetails selectionDetails) { - assert(selectionDetails != null); + assert selectionDetails != null; MenuItem openInNewWindow = menu.findItem(R.id.dir_menu_open_in_new_window); MenuItem rename = menu.findItem(R.id.dir_menu_rename); @@ -164,11 +164,12 @@ public abstract class MenuManager { */ @VisibleForTesting public void updateContextMenu(Menu menu, SelectionDetails selectionDetails) { - assert(selectionDetails != null); + assert selectionDetails != null; MenuItem cut = menu.findItem(R.id.dir_menu_cut_to_clipboard); MenuItem copy = menu.findItem(R.id.dir_menu_copy_to_clipboard); MenuItem delete = menu.findItem(R.id.dir_menu_delete); + MenuItem inspect = menu.findItem(R.id.dir_menu_inspect); final boolean canCopy = selectionDetails.size() > 0 && !selectionDetails.containsPartialFiles(); @@ -176,6 +177,8 @@ public abstract class MenuManager { cut.setEnabled(canCopy && canDelete); copy.setEnabled(canCopy); delete.setEnabled(canDelete); + + inspect.setEnabled(selectionDetails.size() == 1); } /** @@ -188,10 +191,12 @@ public abstract class MenuManager { MenuItem paste = menu.findItem(R.id.dir_menu_paste_from_clipboard); MenuItem selectAll = menu.findItem(R.id.dir_menu_select_all); MenuItem createDir = menu.findItem(R.id.dir_menu_create_dir); + MenuItem inspect = menu.findItem(R.id.dir_menu_inspect); paste.setEnabled(mDirDetails.hasItemsToPaste() && mDirDetails.canCreateDoc()); updateSelectAll(selectAll); updateCreateDir(createDir); + updateInspect(inspect); } /** @@ -273,8 +278,19 @@ public abstract class MenuManager { rename.setVisible(false); } - protected void updateInspector(MenuItem properties, SelectionDetails selectionDetails) { - properties.setVisible(false); + /** + * This method is called for standard activity option menu as opposed + * to when there is a selection. + */ + protected void updateInspect(MenuItem inspector) { + inspector.setVisible(false); + } + + /** + * This method is called for action mode, when a selection exists. + */ + protected void updateInspect(MenuItem inspect, SelectionDetails selectionDetails) { + inspect.setVisible(false); } protected void updateViewInOwner(MenuItem view, SelectionDetails selectionDetails) { diff --git a/src/com/android/documentsui/archives/Archive.java b/src/com/android/documentsui/archives/Archive.java index e3c81e37b..14d703c32 100644 --- a/src/com/android/documentsui/archives/Archive.java +++ b/src/com/android/documentsui/archives/Archive.java @@ -26,6 +26,7 @@ import android.os.CancellationSignal; import android.os.ParcelFileDescriptor; import android.os.storage.StorageManager; import android.provider.DocumentsContract; +import android.provider.MetadataReader; import android.provider.DocumentsContract.Document; import android.support.annotation.Nullable; import android.system.ErrnoException; @@ -281,7 +282,10 @@ public abstract class Archive implements Closeable { final String mimeType = getMimeTypeForEntry(entry); row.add(Document.COLUMN_MIME_TYPE, mimeType); - final int flags = mimeType.startsWith("image/") ? Document.FLAG_SUPPORTS_THUMBNAIL : 0; + int flags = mimeType.startsWith("image/") ? Document.FLAG_SUPPORTS_THUMBNAIL : 0; + if (MetadataReader.isSupportedMimeType(mimeType)) { + flags |= Document.FLAG_SUPPORTS_METADATA; + } row.add(Document.COLUMN_FLAGS, flags); } diff --git a/src/com/android/documentsui/archives/ArchivesProvider.java b/src/com/android/documentsui/archives/ArchivesProvider.java index 8f0e3993e..508a1aa7d 100644 --- a/src/com/android/documentsui/archives/ArchivesProvider.java +++ b/src/com/android/documentsui/archives/ArchivesProvider.java @@ -17,38 +17,34 @@ package com.android.documentsui.archives; import android.content.ContentProviderClient; -import android.content.ContentResolver; -import android.content.Context; import android.content.res.AssetFileDescriptor; -import android.content.res.Configuration; -import android.database.ContentObserver; import android.database.Cursor; -import android.database.MatrixCursor.RowBuilder; import android.database.MatrixCursor; +import android.database.MatrixCursor.RowBuilder; import android.graphics.Point; import android.net.Uri; import android.os.Bundle; import android.os.CancellationSignal; import android.os.ParcelFileDescriptor; +import android.provider.DocumentsContract; import android.provider.DocumentsContract.Document; import android.provider.DocumentsContract.Root; -import android.provider.DocumentsContract; import android.provider.DocumentsProvider; +import android.provider.MetadataReader; import android.support.annotation.Nullable; import android.util.Log; import com.android.documentsui.R; import com.android.internal.annotations.GuardedBy; -import com.android.internal.util.Preconditions; -import java.io.Closeable; -import java.io.File; +import libcore.io.IoUtils; + import java.io.FileNotFoundException; import java.io.IOException; +import java.io.InputStream; import java.util.HashMap; import java.util.Map; import java.util.Objects; -import java.util.concurrent.locks.Lock; /** * Provides basic implementation for creating, extracting and accessing @@ -71,7 +67,7 @@ public class ArchivesProvider extends DocumentsProvider { }; @GuardedBy("mArchives") - private final Map<Key, Loader> mArchives = new HashMap<Key, Loader>(); + private final Map<Key, Loader> mArchives = new HashMap<>(); @Override public Bundle call(String method, String arg, Bundle extras) { @@ -153,6 +149,32 @@ public class ArchivesProvider extends DocumentsProvider { } @Override + public @Nullable Bundle getDocumentMetadata(String documentId) + throws FileNotFoundException { + + final Archive archive = getLoaderOrThrow(documentId).get(); + final String mimeType = archive.getDocumentType(documentId); + + if (!MetadataReader.isSupportedMimeType(mimeType)) { + return null; + } + + InputStream stream = null; + try { + stream = new ParcelFileDescriptor.AutoCloseInputStream( + openDocument(documentId, "r", null)); + final Bundle metadata = new Bundle(); + MetadataReader.getMetadata(metadata, stream, mimeType, null); + return metadata; + } catch (IOException e) { + Log.e(TAG, "An error occurred retrieving the metadata.", e); + return null; + } finally { + IoUtils.closeQuietly(stream); + } + } + + @Override public Cursor queryDocument(String documentId, @Nullable String[] projection) throws FileNotFoundException { final ArchiveId archiveId = ArchiveId.fromDocumentId(documentId); diff --git a/src/com/android/documentsui/base/DocumentInfo.java b/src/com/android/documentsui/base/DocumentInfo.java index 5d9a93c39..724bd3e10 100644 --- a/src/com/android/documentsui/base/DocumentInfo.java +++ b/src/com/android/documentsui/base/DocumentInfo.java @@ -223,6 +223,7 @@ public class DocumentInfo implements Durable, Parcelable { + ", isDeleteSupported=" + isDeleteSupported() + ", isCreateSupported=" + isCreateSupported() + ", isRenameSupported=" + isRenameSupported() + + ", isMetadataSupported=" + isMetadataSupported() + "} @ " + derivedUri; } @@ -255,6 +256,10 @@ public class DocumentInfo implements Durable, Parcelable { return (flags & Document.FLAG_SUPPORTS_RENAME) != 0; } + public boolean isMetadataSupported() { + return (flags & Document.FLAG_SUPPORTS_METADATA) != 0; + } + public boolean isThumbnailSupported() { return (flags & Document.FLAG_SUPPORTS_THUMBNAIL) != 0; } diff --git a/src/com/android/documentsui/base/DocumentStack.java b/src/com/android/documentsui/base/DocumentStack.java index 9b0605c7e..090bcb10c 100644 --- a/src/com/android/documentsui/base/DocumentStack.java +++ b/src/com/android/documentsui/base/DocumentStack.java @@ -17,6 +17,7 @@ package com.android.documentsui.base; import static com.android.documentsui.base.Shared.DEBUG; +import static com.android.internal.util.Preconditions.checkArgument; import android.content.ContentResolver; import android.database.Cursor; @@ -123,13 +124,10 @@ public class DocumentStack implements Durable, Parcelable { } public void push(DocumentInfo info) { - boolean alreadyInStack = mList.contains(info); - assert (!alreadyInStack); - if (!alreadyInStack) { - if (DEBUG) Log.d(TAG, "Adding doc to stack: " + info); - mList.addLast(info); - mStackTouched = true; - } + checkArgument(!mList.contains(info)); + if (DEBUG) Log.d(TAG, "Adding doc to stack: " + info); + mList.addLast(info); + mStackTouched = true; } public DocumentInfo pop() { diff --git a/src/com/android/documentsui/base/DummyLookup.java b/src/com/android/documentsui/base/DummyLookup.java new file mode 100644 index 000000000..11a637580 --- /dev/null +++ b/src/com/android/documentsui/base/DummyLookup.java @@ -0,0 +1,26 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.base; + +/** + * Lookup that always returns null. + */ +public final class DummyLookup<K, V> implements Lookup<K, V> { + @Override + public V lookup(K key) { + return null; + } +} diff --git a/src/com/android/documentsui/base/Features.java b/src/com/android/documentsui/base/Features.java index 7a9936fb6..7714353f1 100644 --- a/src/com/android/documentsui/base/Features.java +++ b/src/com/android/documentsui/base/Features.java @@ -106,6 +106,10 @@ public interface Features { return isEnabled(R.bool.feature_content_refresh); } + private boolean isFunPolicyEnabled() { + return !mUserMgr.hasUserRestriction(UserManager.DISALLOW_FUN); + } + private boolean isDebugPolicyEnabled() { return !mUserMgr.hasUserRestriction(UserManager.DISALLOW_DEBUGGING_FEATURES); } @@ -120,15 +124,12 @@ public interface Features { return isEnabled(R.bool.feature_folders_in_search_results); } - private boolean isFunPolicyEnabled() { - return !mUserMgr.hasUserRestriction(UserManager.DISALLOW_FUN); - } - @Override public boolean isGestureScaleEnabled() { return isEnabled(R.bool.feature_gesture_scale); } + @Override public boolean isInspectorEnabled() { return isEnabled(R.bool.feature_inspector); } diff --git a/src/com/android/documentsui/base/Lookup.java b/src/com/android/documentsui/base/Lookup.java index 7057bfc11..34253bb32 100644 --- a/src/com/android/documentsui/base/Lookup.java +++ b/src/com/android/documentsui/base/Lookup.java @@ -21,8 +21,11 @@ import javax.annotation.Nullable; /** * A {@link Function}-like interface for looking up information. + * + * @param K input type (the "key"). + * @param V output type (the "value"). */ @FunctionalInterface -public interface Lookup<T, R> { - @Nullable R lookup(T key); +public interface Lookup<K, V> { + @Nullable V lookup(K key); } diff --git a/src/com/android/documentsui/base/Shared.java b/src/com/android/documentsui/base/Shared.java index d0ee2de56..5d1cb904e 100644 --- a/src/com/android/documentsui/base/Shared.java +++ b/src/com/android/documentsui/base/Shared.java @@ -34,13 +34,12 @@ import android.text.TextUtils; import android.text.format.DateUtils; import android.text.format.Time; import android.util.Log; +import android.view.View; import android.view.WindowManager; import com.android.documentsui.R; import com.android.documentsui.ui.MessageBuilder; -import java.io.PrintWriter; -import java.io.StringWriter; import java.text.Collator; import java.util.ArrayList; import java.util.List; @@ -59,6 +58,12 @@ public final class Shared { public static final String ACTION_PICK_COPY_DESTINATION = "com.android.documentsui.PICK_COPY_DESTINATION"; + // These values track values declared in MediaDocumentsProvider. + public static final String METADATA_KEY_AUDIO = "android.media.metadata.audio"; + public static final String METADATA_KEY_VIDEO = "android.media.metadata.video"; + public static final String METADATA_VIDEO_LATITUDE = "android.media.metadata.video:latitude"; + public static final String METADATA_VIDEO_LONGITUTE = "android.media.metadata.video:longitude"; + /** * Extra boolean flag for {@link #ACTION_PICK_COPY_DESTINATION}, which * specifies if the destination directory needs to create new directory or not. @@ -261,12 +266,37 @@ public final class Shared { } } + /** + * This method exists solely to smooth over the fact that two different types of + * views cannot be bound to the same id in different layouts. "What's this crazy-pants + * stuff?", you say? Here's an example: + * + * The main DocumentsUI view (aka "Files app") when running on a phone has a drop-down + * "breadcrumb" (file path representation) in both landscape and portrait orientation. + * Larger format devices, like a tablet, use a horizontal "Dir1 > Dir2 > Dir3" format + * breadcrumb in landscape layouts, but the regular drop-down breadcrumb in portrait + * mode. + * + * Our initial inclination was to give each of those views the same ID (as they both + * implement the same "Breadcrumb" interface). But at runtime, when rotating a device + * from one orientation to the other, deeeeeeep within the UI toolkit a exception + * would happen, because one view instance (drop-down) was being inflated in place of + * another (horizontal). I'm writing this code comment significantly after the face, + * so I don't recall all of the details, but it had to do with View type-checking the + * Parcelable state in onRestore, or something like that. Either way, this isn't + * allowed (my patch to fix this was rejected). + * + * To work around this we have this cute little method that accepts multiple + * resource IDs, and along w/ type inference finds our view, no matter which + * id it is wearing, and returns it. + */ + @SuppressWarnings("TypeParameterUnusedInFormals") public static @Nullable <T> T findView(Activity activity, int... resources) { for (int id : resources) { @SuppressWarnings("unchecked") - T r = (T) activity.findViewById(id); - if (r != null) { - return r; + View view = activity.findViewById(id); + if (view != null) { + return (T) view; } } return null; diff --git a/src/com/android/documentsui/base/State.java b/src/com/android/documentsui/base/State.java index fbfd38572..13a28ef6e 100644 --- a/src/com/android/documentsui/base/State.java +++ b/src/com/android/documentsui/base/State.java @@ -20,7 +20,6 @@ import android.annotation.IntDef; import android.content.Intent; import android.os.Parcel; import android.os.Parcelable; -import android.provider.DocumentsContract; import android.util.SparseArray; import com.android.documentsui.services.FileOperationService; @@ -30,6 +29,7 @@ import com.android.documentsui.sorting.SortModel; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.util.ArrayList; +import java.util.Arrays; import java.util.HashMap; import java.util.List; @@ -139,7 +139,7 @@ public class State implements android.os.Parcelable { public String toString() { return "State{" + "action=" + action - + ", acceptMimes=" + acceptMimes + + ", acceptMimes=" + Arrays.toString(acceptMimes) + ", allowMultiple=" + allowMultiple + ", localOnly=" + localOnly + ", showDeviceStorageOption=" + showDeviceStorageOption diff --git a/src/com/android/documentsui/dirlist/DirectoryFragment.java b/src/com/android/documentsui/dirlist/DirectoryFragment.java index 9096f63f9..1989b2b81 100644 --- a/src/com/android/documentsui/dirlist/DirectoryFragment.java +++ b/src/com/android/documentsui/dirlist/DirectoryFragment.java @@ -201,7 +201,7 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On final View view = inflater.inflate(R.layout.fragment_directory, container, false); mProgressBar = view.findViewById(R.id.progressbar); - assert(mProgressBar != null); + assert mProgressBar != null; mRecView = (RecyclerView) view.findViewById(R.id.dir_list); mRecView.setRecyclerListener( @@ -452,7 +452,8 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On // at the same time. mInjector.menuManager.inflateContextMenuForContainer(menu, inflater); } else { - mInjector.menuManager.inflateContextMenuForDocs(menu, inflater, mSelectionMetadata); + mInjector.menuManager.inflateContextMenuForDocs( + menu, inflater, mSelectionMetadata); } } @@ -537,7 +538,8 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On * @param mode The new view mode. */ private void scaleLayout(float scale) { - assert(Build.IS_DEBUGGABLE); + assert Build.IS_DEBUGGABLE; + if (VERBOSE) Log.v( TAG, "Handling scale event: " + scale + ", existing scale: " + mLiveScale); @@ -669,11 +671,15 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On transferDocuments(selection, null, FileOperationService.OPERATION_MOVE); return true; - case R.id.action_menu_inspector: + case R.id.action_menu_inspect: + case R.id.dir_menu_inspect: mActionModeController.finishActionMode(); - assert(selection.size() == 1); - DocumentInfo doc = mModel.getDocuments(selection).get(0); - mActions.showInspector(doc); + assert selection.size() <= 1; + DocumentInfo doc = selection.isEmpty() + ? mActivity.getCurrentDirectory() + : mModel.getDocuments(selection).get(0); + + mActions.showInspector(doc); return true; case R.id.dir_menu_cut_to_clipboard: @@ -749,7 +755,7 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On private void showChooserForDoc(final Selection selected) { Metrics.logUserAction(getContext(), Metrics.USER_ACTION_OPEN); - assert(selected.size() == 1); + assert selected.size() == 1; DocumentInfo doc = DocumentInfo.fromDirectoryCursor(mModel.getItem(selected.iterator().next())); mActions.showChooserForDoc(doc); @@ -780,7 +786,7 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On throw new RuntimeException("Failed to create uri supplier.", e); } - final DocumentInfo parent = mState.stack.peek(); + final DocumentInfo parent = mActivity.getCurrentDirectory(); final FileOperation operation = new FileOperation.Builder() .withOpType(mode) .withSrcParent(parent == null ? null : parent.derivedUri) @@ -871,7 +877,7 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On // Batch renaming not supported // Rename option is only available in menu when 1 document selected - assert(selected.size() == 1); + assert selected.size() == 1; // Model must be accessed in UI thread, since underlying cursor is not threadsafe. List<DocumentInfo> docs = mModel.getDocuments(selected); @@ -937,7 +943,7 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On } if (v == mRecView) { - return mState.stack.peek(); + return mActivity.getCurrentDirectory(); } return null; @@ -987,7 +993,7 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On final int docFlags = getCursorInt(cursor, Document.COLUMN_FLAGS); return mInjector.config.canSelectType(docMimeType, docFlags, mState); } else { - final DocumentInfo parent = mState.stack.peek(); + final DocumentInfo parent = mActivity.getCurrentDirectory(); // Right now all selected items can be deselected. return true; } @@ -1056,7 +1062,7 @@ public class DirectoryFragment extends Fragment implements SwipeRefreshLayout.On cache.removeUri(mModel.getItemUri(ids[i])); } - final DocumentInfo doc = mState.stack.peek(); + final DocumentInfo doc = mActivity.getCurrentDirectory(); mActions.refreshDocument(doc, (boolean refreshSupported) -> { if (refreshSupported) { mRefreshLayout.setRefreshing(false); diff --git a/src/com/android/documentsui/dirlist/DocumentHolder.java b/src/com/android/documentsui/dirlist/DocumentHolder.java index d7f7ce56c..380b7b351 100644 --- a/src/com/android/documentsui/dirlist/DocumentHolder.java +++ b/src/com/android/documentsui/dirlist/DocumentHolder.java @@ -163,6 +163,7 @@ public abstract class DocumentHolder } } + @SuppressWarnings("TypeParameterUnusedInFormals") private static <V extends View> V inflateLayout(Context context, ViewGroup parent, int layout) { final LayoutInflater inflater = LayoutInflater.from(context); return (V) inflater.inflate(layout, parent, false); diff --git a/src/com/android/documentsui/dirlist/DragStartListener.java b/src/com/android/documentsui/dirlist/DragStartListener.java index 1651603ac..bf9e2bbd1 100644 --- a/src/com/android/documentsui/dirlist/DragStartListener.java +++ b/src/com/android/documentsui/dirlist/DragStartListener.java @@ -17,6 +17,7 @@ package com.android.documentsui.dirlist; import static com.android.documentsui.base.Shared.DEBUG; +import static com.android.internal.util.Preconditions.checkArgument; import android.net.Uri; import android.support.annotation.VisibleForTesting; @@ -98,7 +99,7 @@ interface DragStartListener { @Override public final boolean onMouseDragEvent(InputEvent event) { - assert(Events.isMouseDragEvent(event)); + checkArgument(Events.isMouseDragEvent(event)); return startDrag(mViewFinder.findView(event.getX(), event.getY()), event); } diff --git a/src/com/android/documentsui/dirlist/ListDocumentHolder.java b/src/com/android/documentsui/dirlist/ListDocumentHolder.java index 42be8f9c4..a45fad02c 100644 --- a/src/com/android/documentsui/dirlist/ListDocumentHolder.java +++ b/src/com/android/documentsui/dirlist/ListDocumentHolder.java @@ -177,7 +177,13 @@ final class ListDocumentHolder extends DocumentHolder { // Note, we don't show any details for any directory...ever. hasDetails = false; } else { - if (mDoc.summary != null) { + // Show summary if the file is partial. Otherwise, there tends + // to be a bunch of confusing junk in the summary field + // as populated by Downlaods (and others). So to make things + // simpler and clearer for the user in list view, we only + // show the summary if the file is partial > + // which we believe to mean actively downloading. + if (mDoc.isPartial() && mDoc.summary != null) { hasDetails = true; mSummary.setText(mDoc.summary); mSummary.setVisibility(View.VISIBLE); diff --git a/src/com/android/documentsui/files/ActionHandler.java b/src/com/android/documentsui/files/ActionHandler.java index 922f0c002..d64715527 100644 --- a/src/com/android/documentsui/files/ActionHandler.java +++ b/src/com/android/documentsui/files/ActionHandler.java @@ -25,7 +25,9 @@ import android.content.ContentProviderClient; import android.content.ContentResolver; import android.content.Intent; import android.net.Uri; +import android.os.Build; import android.provider.DocumentsContract; +import android.text.TextUtils; import android.util.Log; import android.view.DragEvent; @@ -678,11 +680,26 @@ public class ActionHandler<T extends Activity & Addons> extends AbstractActionHa public void showInspector(DocumentInfo doc) { Metrics.logUserAction(mActivity, Metrics.USER_ACTION_INSPECTOR); Intent intent = new Intent(mActivity, InspectorActivity.class); + intent.setData(doc.derivedUri); + + // permit the display of debug info about the file. intent.putExtra( Shared.EXTRA_SHOW_DEBUG, - mFeatures.isDebugSupportEnabled() - || DebugFlags.getDocumentDetailsEnabled()); - intent.setData(doc.derivedUri); + mFeatures.isDebugSupportEnabled() && + (Build.IS_DEBUGGABLE || DebugFlags.getDocumentDetailsEnabled())); + + // The "root document" (top level folder in a root) don't usually have a + // human friendly display name. That's because we've never shown the root + // folder's name to anyone. + // For that reason when the doc being inspected is the root folder, + // we override the displayName of the doc w/ the Root's name instead. + // The Root's name is shown to the user in the sidebar. + if (doc.isDirectory() && mState.stack.size() == 1 && mState.stack.get(0).equals(doc)) { + RootInfo root = mActivity.getCurrentRoot(); + // Recents root title isn't defined, but inspector is disabled for recents root folder. + assert !TextUtils.isEmpty(root.title); + intent.putExtra(Intent.EXTRA_TITLE, root.title); + } mActivity.startActivity(intent); } diff --git a/src/com/android/documentsui/files/FilesActivity.java b/src/com/android/documentsui/files/FilesActivity.java index 50ba2ffeb..8dc24a9be 100644 --- a/src/com/android/documentsui/files/FilesActivity.java +++ b/src/com/android/documentsui/files/FilesActivity.java @@ -352,6 +352,9 @@ public class FilesActivity extends BaseActivity implements ActionHandler.Addons case R.id.option_menu_select_all: mInjector.actions.selectAllFiles(); break; + case R.id.option_menu_inspect: + mInjector.actions.showInspector(getCurrentDirectory()); + break; default: return super.onOptionsItemSelected(item); } diff --git a/src/com/android/documentsui/files/MenuManager.java b/src/com/android/documentsui/files/MenuManager.java index 4754c6d27..4a17c3ddf 100644 --- a/src/com/android/documentsui/files/MenuManager.java +++ b/src/com/android/documentsui/files/MenuManager.java @@ -29,6 +29,7 @@ import android.view.MenuItem; import android.view.View; import com.android.documentsui.R; +import com.android.documentsui.MenuManager.SelectionDetails; import com.android.documentsui.base.DocumentInfo; import com.android.documentsui.base.Features; import com.android.documentsui.base.Lookup; @@ -38,7 +39,6 @@ import com.android.documentsui.queries.SearchViewManager; import com.android.documentsui.selection.SelectionManager; import java.util.List; -import java.util.function.Function; import java.util.function.IntFunction; public final class MenuManager extends com.android.documentsui.MenuManager { @@ -58,7 +58,9 @@ public final class MenuManager extends com.android.documentsui.MenuManager { SelectionManager selectionManager, Lookup<String, String> appNameLookup, Lookup<String, Uri> uriLookup) { + super(searchManager, displayState, dirDetails); + mFeatures = features; mContext = context; mSelectionManager = selectionManager; @@ -265,10 +267,16 @@ public final class MenuManager extends com.android.documentsui.MenuManager { } @Override - protected void updateInspector(MenuItem properties, SelectionDetails selectionDetails) { + protected void updateInspect(MenuItem inspect) { + inspect.setVisible(mFeatures.isInspectorEnabled()); + inspect.setEnabled(mFeatures.isInspectorEnabled() && !mState.stack.isRecents()); + } + + @Override + protected void updateInspect(MenuItem inspect, SelectionDetails selectionDetails) { boolean visible = mFeatures.isInspectorEnabled(); - properties.setVisible(visible); - properties.setEnabled(visible && selectionDetails.size() == 1); + inspect.setVisible(visible); + inspect.setEnabled(visible && selectionDetails.size() <= 1); } @Override diff --git a/src/com/android/documentsui/inspector/DateUtils.java b/src/com/android/documentsui/inspector/DateUtils.java new file mode 100644 index 000000000..c4138ed0e --- /dev/null +++ b/src/com/android/documentsui/inspector/DateUtils.java @@ -0,0 +1,36 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.inspector; + +import android.text.format.DateFormat; +import java.util.Locale; + +/** + * Helper methods for dealing with dates. + */ +final class DateUtils { + /** + * This small helper method combines two different DateFormat subclasses in order to format + * both the date and the time based on user locale. + * @param date Unix timestamp + * @return formatted String of date + */ + static String formatDate(long date) { + String format = DateFormat.getBestDateTimePattern(Locale.getDefault(), + "MMM dd, yyyy, hh:mm"); + return DateFormat.format(format, date).toString(); + } +} diff --git a/src/com/android/documentsui/inspector/DebugView.java b/src/com/android/documentsui/inspector/DebugView.java index 581e7542c..3cba98726 100644 --- a/src/com/android/documentsui/inspector/DebugView.java +++ b/src/com/android/documentsui/inspector/DebugView.java @@ -15,18 +15,38 @@ */ package com.android.documentsui.inspector; +import android.annotation.StringRes; import android.content.Context; +import android.content.res.Resources; +import android.os.AsyncTask; +import android.os.Bundle; +import android.provider.DocumentsContract; import android.util.AttributeSet; +import android.widget.TextView; import com.android.documentsui.R; import com.android.documentsui.base.DocumentInfo; +import com.android.documentsui.base.DummyLookup; +import com.android.documentsui.base.Lookup; +import com.android.documentsui.inspector.InspectorController.DebugDisplay; -import java.util.function.Consumer; +import java.text.NumberFormat; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.List; +import java.util.concurrent.Executor; /** - * Organizes and Displays the basic details about a file + * Organizes and Displays the debug information about a file. This view + * should only be made visible when build is debuggable and system policies + * allow debug "stuff". */ -public class DebugView extends TableView implements Consumer<DocumentInfo> { +public class DebugView extends TableView implements DebugDisplay { + + private final Context mContext; + private final Resources mRes; + private Lookup<String, Executor> mExecutors = new DummyLookup<>(); public DebugView(Context context) { this(context, null); @@ -38,29 +58,87 @@ public class DebugView extends TableView implements Consumer<DocumentInfo> { public DebugView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); + mContext = context; + mRes = context.getResources(); + } + + void init(Lookup<String, Executor> executors) { + assert executors != null; + setBackgroundColor(0xFFFFFFFF); // it's just debug. We do what we want! + mExecutors = executors; } @Override public void accept(DocumentInfo info) { - setTitle(this, R.string.inspector_debug_section); - - put("Content uri", info.derivedUri); - put("Document id", info.documentId); - put("Mimetype: ", info.mimeType); - put("Is archive", info.isArchive()); - put("Is container", info.isContainer()); - put("Is partial", info.isPartial()); - put("Is virtual", info.isVirtual()); - put("Supports create", info.isCreateSupported()); - put("Supports delete", info.isDeleteSupported()); - put("Supports rename", info.isRenameSupported()); - put("Supports settings", info.isSettingsSupported()); - put("Supports thumbnail", info.isThumbnailSupported()); - put("Supports weblink", info.isWeblinkSupported()); - put("Supports write", info.isWriteSupported()); + setTitle(R.string.inspector_debug_section, false); + + put(R.string.debug_content_uri, info.derivedUri.toString()); + put(R.string.debug_document_id, info.documentId); + put(R.string.debug_raw_mimetype, info.mimeType); + put(R.string.debug_stream_types, "-"); + put(R.string.debug_raw_size, NumberFormat.getInstance().format(info.size)); + put(R.string.debug_is_archive, info.isArchive()); + put(R.string.debug_is_container, info.isContainer()); + put(R.string.debug_is_partial, info.isPartial()); + put(R.string.debug_is_virtual, info.isVirtual()); + put(R.string.debug_supports_create, info.isCreateSupported()); + put(R.string.debug_supports_delete, info.isDeleteSupported()); + put(R.string.debug_supports_metadata, info.isMetadataSupported()); + put(R.string.debug_supports_rename, info.isRenameSupported()); + put(R.string.debug_supports_settings, info.isSettingsSupported()); + put(R.string.debug_supports_thumbnail, info.isThumbnailSupported()); + put(R.string.debug_supports_weblink, info.isWeblinkSupported()); + put(R.string.debug_supports_write, info.isWriteSupported()); + + // Load Document stream types of the file. For virtual files, this should be + // something other than the primary type of the file. + Executor executor = mExecutors.lookup(info.derivedUri.getAuthority()); + if (executor != null) { + new AsyncTask<Void, Void, String[]>() { + @Override + protected String[] doInBackground(Void... params) { + return mContext.getContentResolver().getStreamTypes(info.derivedUri, "*/*"); + } + + @Override + protected void onPostExecute(String[] streamTypes) { + put(R.string.debug_stream_types, + streamTypes != null ? Arrays.toString(streamTypes) : "[]"); + } + }.executeOnExecutor(executor, (Void[]) null); + } + } + + @Override + public void accept(Bundle metadata) { + if (metadata == null) { + return; + } + + String[] types = metadata.getStringArray(DocumentsContract.METADATA_TYPES); + if (types == null) { + return; + } + + for (String type : types) { + dumpMetadata(type, metadata.getBundle(type)); + } + } + + private void dumpMetadata(String type, Bundle bundle) { + String title = mContext.getResources().getString( + R.string.inspector_debug_metadata_section); + putTitle(String.format(title, type), true); + List<String> keys = new ArrayList<>(bundle.keySet()); + Collections.sort(keys); + for (String key : keys) { + put(key, String.valueOf(bundle.get(key))); + } } - private void put(String key, Object value) { - put(key, String.valueOf(value)); + private void put(@StringRes int key, boolean value) { + KeyValueRow row = put(mRes.getString(key), String.valueOf(value)); + TextView valueView = ((TextView) row.findViewById(R.id.table_row_value)); + valueView.setTextColor(value ? 0xFF006400 : 0xFF9A2020); } } diff --git a/src/com/android/documentsui/inspector/DetailsView.java b/src/com/android/documentsui/inspector/DetailsView.java index 5497068b0..75b3cac67 100644 --- a/src/com/android/documentsui/inspector/DetailsView.java +++ b/src/com/android/documentsui/inspector/DetailsView.java @@ -16,7 +16,6 @@ package com.android.documentsui.inspector; import android.content.Context; -import android.text.format.DateFormat; import android.text.format.Formatter; import android.util.AttributeSet; @@ -44,26 +43,33 @@ public class DetailsView extends TableView implements DetailsDisplay { } @Override - public void accept(DocumentInfo info) { + public void accept(DocumentInfo doc) { Lookup<String, String> fileTypeLookup = DocumentsApplication.getFileTypeLookup(getContext()); - put(R.string.sort_dimension_file_type, fileTypeLookup.lookup(info.mimeType)); + String mimeType = fileTypeLookup.lookup(doc.mimeType); + + put(R.string.sort_dimension_file_type, mimeType); // TODO: Each of these rows need to be removed if the condition is false and previously // set. - if (info.size > 0) { - put(R.string.sort_dimension_size, Formatter.formatFileSize(getContext(), info.size)); + if (doc.size >= 0 && !doc.isDirectory()) { + put(R.string.sort_dimension_size, Formatter.formatFileSize(getContext(), doc.size)); } - if (info.lastModified > 0) { - put(R.string.sort_dimension_date, - DateFormat.getDateFormat(getContext()).format(info.lastModified)); + if (doc.lastModified > 0) { + put(R.string.sort_dimension_date, DateUtils.formatDate(doc.lastModified)); } - if (info.summary != null) { - put(R.string.sort_dimension_summary, info.summary); + // We only show summary field when doc is partial (meaning an active download). + // The rest of the time "summary" tends to be less than useful. For example + // after a download is completed DownloadsProvider include the orig filename + // in the summary field. This is confusing to folks in-and-if-itself, but + // after the file is renamed, it creates even more confusion (since it still + // shows the original). For that reason, and others. We only display on partial files. + if (doc.isPartial() && doc.summary != null) { + put(R.string.sort_dimension_summary, doc.summary); } } diff --git a/src/com/android/documentsui/inspector/HeaderTextSelector.java b/src/com/android/documentsui/inspector/HeaderTextSelector.java new file mode 100644 index 000000000..5530fbe63 --- /dev/null +++ b/src/com/android/documentsui/inspector/HeaderTextSelector.java @@ -0,0 +1,89 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.inspector; + +import static com.android.internal.util.Preconditions.checkArgument; + +import android.text.Spannable; +import android.view.ActionMode; +import android.view.Menu; +import android.view.MenuItem; +import android.widget.TextView; + +/** + * Selects all or part of a textview. + */ + public final class HeaderTextSelector implements ActionMode.Callback { + + private final TextView mText; + private final Selector mSelector; + + public HeaderTextSelector(TextView text, Selector selector) { + checkArgument(text != null); + checkArgument(selector != null); + mText = text; + mSelector = selector; + } + + // An action mode is created when the user selects text. This method is called where + // we force it to select only the filename in the header. Meaning the name of the file would + // be selected but the extension would not. + @Override + public boolean onCreateActionMode(ActionMode actionMode, Menu menu) { + CharSequence value = mText.getText(); + if (value instanceof Spannable) { + mSelector.select((Spannable) value, 0, getLengthOfFilename(value)); + } + return true; + } + + @Override + public boolean onPrepareActionMode(ActionMode actionMode, Menu menu) { + return true; + } + + @Override + public boolean onActionItemClicked(ActionMode actionMode, MenuItem menuItem) { + return false; + } + + @Override + public void onDestroyActionMode(ActionMode actionMode) {} + + /** + * Gets the length of the inspector header for selection. + * + * Example: + * filename.txt returns the end index needed to select "filename". + * + * @return the index of the last character in the filename + */ + private static int getLengthOfFilename(CharSequence text) { + String title = text.toString(); + if (title != null) { + int index = title.indexOf('.'); + if (index > 0) { + return index; + } + } + + return text.length(); + } + + public interface Selector { + void select(Spannable text, int start, int stop); + } +} diff --git a/src/com/android/documentsui/inspector/HeaderView.java b/src/com/android/documentsui/inspector/HeaderView.java index 835af77a2..c411082ab 100644 --- a/src/com/android/documentsui/inspector/HeaderView.java +++ b/src/com/android/documentsui/inspector/HeaderView.java @@ -20,6 +20,8 @@ import android.content.Context; import android.graphics.Bitmap; import android.graphics.Point; import android.graphics.drawable.Drawable; +import android.text.Selection; +import android.text.Spannable; import android.util.AttributeSet; import android.view.LayoutInflater; import android.view.View; @@ -29,18 +31,20 @@ import android.widget.RelativeLayout; import android.widget.TextView; import com.android.documentsui.ProviderExecutor; +import com.android.documentsui.R; import com.android.documentsui.ThumbnailLoader; import com.android.documentsui.base.Display; import com.android.documentsui.base.DocumentInfo; -import com.android.documentsui.R; +import com.android.documentsui.inspector.InspectorController.HeaderDisplay; + import java.util.function.Consumer; +import javax.annotation.Nullable; + /** * Organizes and displays the title and thumbnail for a given document */ -public final class HeaderView extends RelativeLayout implements Consumer<DocumentInfo> { - - private static final String TAG = HeaderView.class.getCanonicalName(); +public final class HeaderView extends RelativeLayout implements HeaderDisplay { private final Context mContext; private final View mHeader; @@ -68,63 +72,55 @@ public final class HeaderView extends RelativeLayout implements Consumer<Documen int width = (int) Display.screenWidth((Activity)context); int height = mContext.getResources().getDimensionPixelSize(R.dimen.inspector_header_height); mImageDimensions = new Point(width, height); + addView(mHeader); } @Override - public void accept(DocumentInfo info) { - if (!hasHeader()) { - addView(mHeader); - } - - if (!hasHeaderImage()) { - if (info.isDirectory()) { - loadFileIcon(info); - } else { - loadHeaderImage(info); - } - } - mTitle.setText(info.displayName); + public void accept(DocumentInfo info, String displayName) { + loadHeaderImage(info); + mTitle.setText(displayName); + mTitle.setCustomSelectionActionModeCallback( + new HeaderTextSelector(mTitle, this::selectText)); } - private boolean hasHeader() { - for (int i = 0; i < getChildCount(); i++) { - if (getChildAt(i).equals(mHeader)) { - return true; - } - } - return false; - } - - private void loadFileIcon(DocumentInfo info) { - Drawable mimeIcon = mContext.getContentResolver() - .getTypeDrawable(info.mimeType); - mThumbnail.setScaleType(ScaleType.FIT_CENTER); - mThumbnail.setImageDrawable(mimeIcon); + private void selectText(Spannable text, int start, int stop) { + Selection.setSelection(text, start, stop); } - private void loadHeaderImage(DocumentInfo info) { - - Consumer<Bitmap> callback = new Consumer<Bitmap>() { - @Override - public void accept(Bitmap bitmap) { - if (bitmap != null) { - mThumbnail.setScaleType(ScaleType.CENTER_CROP); - mThumbnail.setImageBitmap(bitmap); - } else { - loadFileIcon(info); + private void loadHeaderImage(DocumentInfo doc) { + if (!doc.isThumbnailSupported()) { + showImage(doc, null); + } else { + Consumer<Bitmap> callback = new Consumer<Bitmap>() { + @Override + public void accept(Bitmap thumbnail) { + showImage(doc, thumbnail); } - mThumbnail.animate().alpha(1.0f).start(); - } - }; - - // load the thumbnail async. - final ThumbnailLoader task = new ThumbnailLoader(info.derivedUri, mThumbnail, - mImageDimensions, info.lastModified, callback, false); - task.executeOnExecutor(ProviderExecutor.forAuthority(info.derivedUri.getAuthority()), - info.derivedUri); + }; + // load the thumbnail async. + final ThumbnailLoader task = new ThumbnailLoader(doc.derivedUri, mThumbnail, + mImageDimensions, doc.lastModified, callback, false); + task.executeOnExecutor(ProviderExecutor.forAuthority(doc.derivedUri.getAuthority()), + doc.derivedUri); + } } - private boolean hasHeaderImage() { - return mThumbnail.getAlpha() == 1.0f; + /** + * Shows the supplied image, falling back to a mimetype icon if the image is null. + */ + private void showImage(DocumentInfo info, @Nullable Bitmap thumbnail) { + if (thumbnail != null) { + mThumbnail.resetPaddingToInitialValues(); + mThumbnail.setScaleType(ScaleType.CENTER_CROP); + mThumbnail.setImageBitmap(thumbnail); + } else { + mThumbnail.setPadding(0, 0, 0, mTitle.getHeight()); + + Drawable mimeIcon = + mContext.getContentResolver().getTypeDrawable(info.mimeType); + mThumbnail.setScaleType(ScaleType.FIT_CENTER); + mThumbnail.setImageDrawable(mimeIcon); + } + mThumbnail.animate().alpha(1.0f).start(); } }
\ No newline at end of file diff --git a/src/com/android/documentsui/inspector/InspectorActivity.java b/src/com/android/documentsui/inspector/InspectorActivity.java index 44af73580..d02c43bf1 100644 --- a/src/com/android/documentsui/inspector/InspectorActivity.java +++ b/src/com/android/documentsui/inspector/InspectorActivity.java @@ -33,7 +33,7 @@ public class InspectorActivity extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_ACTION_BAR); - setContentView(R.layout.document_inspector_activity); + setContentView(R.layout.inspector_activity); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setActionBar(toolbar); @@ -45,10 +45,7 @@ public class InspectorActivity extends Activity { if (mFragment == null) { Intent intent = getIntent(); - mFragment = InspectorFragment.newInstance(intent); - - fragmentManager.beginTransaction() .add(R.id.fragment_container, mFragment) .commit(); diff --git a/src/com/android/documentsui/inspector/InspectorController.java b/src/com/android/documentsui/inspector/InspectorController.java index 2b1c4b494..79612f957 100644 --- a/src/com/android/documentsui/inspector/InspectorController.java +++ b/src/com/android/documentsui/inspector/InspectorController.java @@ -15,59 +15,69 @@ */ package com.android.documentsui.inspector; -import static android.provider.DocumentsContract.Document.FLAG_SUPPORTS_SETTINGS; import static com.android.internal.util.Preconditions.checkArgument; +import android.annotation.StringRes; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; import android.graphics.drawable.Drawable; import android.net.Uri; +import android.os.Bundle; import android.provider.DocumentsContract; import android.support.annotation.Nullable; import android.support.annotation.VisibleForTesting; import android.view.View; import android.view.View.OnClickListener; + import com.android.documentsui.DocumentsApplication; import com.android.documentsui.ProviderExecutor; import com.android.documentsui.R; import com.android.documentsui.base.DocumentInfo; -import com.android.documentsui.base.Lookup; +import com.android.documentsui.base.Shared; import com.android.documentsui.inspector.actions.Action; import com.android.documentsui.inspector.actions.ClearDefaultAppAction; import com.android.documentsui.inspector.actions.ShowInProviderAction; import com.android.documentsui.roots.ProvidersAccess; import com.android.documentsui.ui.Snackbars; -import java.util.concurrent.Executor; + import java.util.function.Consumer; /** * A controller that coordinates retrieving document information and sending it to the view. */ public final class InspectorController { - private final Loader mLoader; - private final Consumer<DocumentInfo> mHeader; + private final DataSupplier mLoader; + private final HeaderDisplay mHeader; private final DetailsDisplay mDetails; + private final MediaDisplay mMedia; private final ActionDisplay mShowProvider; private final ActionDisplay mAppDefaults; - private final Consumer<DocumentInfo> mDebugView; - private final boolean mShowDebug; + private final DebugDisplay mDebugView; private final Context mContext; private final PackageManager mPackageManager; private final ProvidersAccess mProviders; - private final Runnable mShowSnackbar; - private final Lookup<String, Executor> mExecutors; + private final Runnable mErrorSnackbar; + private Bundle mArgs; /** * InspectorControllerTest relies on this controller. */ @VisibleForTesting - public InspectorController(Context context, Loader loader, PackageManager pm, - ProvidersAccess providers, boolean showDebug, Consumer<DocumentInfo> header, - DetailsDisplay details, ActionDisplay showProvider, ActionDisplay appDefaults, - Consumer<DocumentInfo> debugView, Lookup<String, Executor> executors, - Runnable showSnackbar) { + public InspectorController( + Context context, + DataSupplier loader, + PackageManager pm, + ProvidersAccess providers, + HeaderDisplay header, + DetailsDisplay details, + MediaDisplay media, + ActionDisplay showProvider, + ActionDisplay appDefaults, + DebugDisplay debugView, + Bundle args, + Runnable errorRunnable) { checkArgument(context != null); checkArgument(loader != null); @@ -75,46 +85,57 @@ public final class InspectorController { checkArgument(providers != null); checkArgument(header != null); checkArgument(details != null); + checkArgument(media != null); checkArgument(showProvider != null); checkArgument(appDefaults != null); checkArgument(debugView != null); - checkArgument(showSnackbar != null); - checkArgument(executors != null); + checkArgument(args != null); + checkArgument(errorRunnable != null); mContext = context; mLoader = loader; mPackageManager = pm; - mShowDebug = showDebug; mProviders = providers; mHeader = header; mDetails = details; + mMedia = media; mShowProvider = showProvider; mAppDefaults = appDefaults; + mArgs = args; mDebugView = debugView; - mExecutors = executors; - mShowSnackbar = showSnackbar; - } - public InspectorController(Activity activity, Loader loader, View layout, boolean showDebug) { + mErrorSnackbar = errorRunnable; + } + /** + * @param activity + * @param loader + * @param layout + * @param args Bundle of arguments passed to our host {@link InspectorFragment}. These + * can include extras that enable debug mode ({@link Shared#EXTRA_SHOW_DEBUG} + * and override the file title (@link {@link Intent#EXTRA_TITLE}). + */ + public InspectorController(Activity activity, DataSupplier loader, View layout, Bundle args) { this(activity, - loader, - activity.getPackageManager(), - DocumentsApplication.getProvidersCache (activity), - showDebug, - (HeaderView) layout.findViewById(R.id.inspector_header_view), - (DetailsView) layout.findViewById(R.id.inspector_details_view), - (ActionDisplay) layout.findViewById(R.id.inspector_show_in_provider_view), - (ActionDisplay) layout.findViewById(R.id.inspector_app_defaults_view), - (DebugView) layout.findViewById(R.id.inspector_debug_view), - ProviderExecutor::forAuthority, - () -> { - // using a runnable to support unit testing this feature. - Snackbars.showInspectorError(activity); - } + loader, + activity.getPackageManager(), + DocumentsApplication.getProvidersCache (activity), + (HeaderView) layout.findViewById(R.id.inspector_header_view), + (DetailsView) layout.findViewById(R.id.inspector_details_view), + (MediaView) layout.findViewById(R.id.inspector_media_view), + (ActionDisplay) layout.findViewById(R.id.inspector_show_in_provider_view), + (ActionDisplay) layout.findViewById(R.id.inspector_app_defaults_view), + (DebugView) layout.findViewById(R.id.inspector_debug_view), + args, + () -> { + // using a runnable to support unit testing this feature. + Snackbars.showInspectorError(activity); + } ); - if (showDebug) { - layout.findViewById(R.id.inspector_debug_view).setVisibility(View.VISIBLE); + + if (args.getBoolean(Shared.EXTRA_SHOW_DEBUG)) { + DebugView view = (DebugView) layout.findViewById(R.id.inspector_debug_view); + view.init(ProviderExecutor::forAuthority); } } @@ -129,13 +150,11 @@ public final class InspectorController { /** * Updates the view with documentInfo. */ - @Nullable - public void updateView(@Nullable DocumentInfo docInfo) { - + private void updateView(@Nullable DocumentInfo docInfo) { if (docInfo == null) { - mShowSnackbar.run(); + mErrorSnackbar.run(); } else { - mHeader.accept(docInfo); + mHeader.accept(docInfo, mArgs.getString(Intent.EXTRA_TITLE, docInfo.displayName)); mDetails.accept(docInfo); if (docInfo.isDirectory()) { @@ -147,28 +166,62 @@ public final class InspectorController { Action showProviderAction = new ShowInProviderAction(mContext, mPackageManager, docInfo, mProviders); mShowProvider.init( - showProviderAction, - (view) -> { - showInProvider(docInfo.derivedUri); - }); + showProviderAction, + (view) -> { + showInProvider(docInfo.derivedUri); + }); } Action defaultAction = - new ClearDefaultAppAction(mContext, mPackageManager, docInfo); + new ClearDefaultAppAction(mContext, mPackageManager, docInfo); mAppDefaults.setVisible(defaultAction.canPerformAction()); if (defaultAction.canPerformAction()) { mAppDefaults.init( - defaultAction, - (View) -> { - clearDefaultApp(defaultAction.getPackageName()); - }); + defaultAction, + (View) -> { + clearDefaultApp(defaultAction.getPackageName()); + }); } } - if (mShowDebug) { + if (docInfo.isMetadataSupported()) { + mLoader.getDocumentMetadata( + docInfo.derivedUri, + (Bundle bundle) -> { + onDocumentMetadataLoaded(docInfo, bundle); + }); + } + mMedia.setVisible(!mMedia.isEmpty()); + + if (mArgs.getBoolean(Shared.EXTRA_SHOW_DEBUG)) { mDebugView.accept(docInfo); } + mDebugView.setVisible(mArgs.getBoolean(Shared.EXTRA_SHOW_DEBUG) + && !mDebugView.isEmpty()); + } + } + + private void onDocumentMetadataLoaded(DocumentInfo doc, @Nullable Bundle metadata) { + if (metadata == null) { + return; + } + + Runnable geoClickListener = null; + if (MetadataUtils.hasGeoCoordinates(metadata)) { + float[] coords = MetadataUtils.getGeoCoordinates(metadata); + final Intent intent = createGeoIntent(coords[0], coords[1], doc.displayName); + if (hasHandler(intent)) { + geoClickListener = () -> { + startActivity(intent); + }; + } + } + + mMedia.accept(doc, metadata, geoClickListener); + + if (mArgs.getBoolean(Shared.EXTRA_SHOW_DEBUG)) { + mDebugView.accept(metadata); } } @@ -181,6 +234,31 @@ public final class InspectorController { mDetails.setChildrenCount(count); } + private void startActivity(Intent intent) { + assert hasHandler(intent); + mContext.startActivity(intent); + } + + /** + * checks that we can handle a geo-intent. + */ + private boolean hasHandler(Intent intent) { + return mPackageManager.resolveActivity(intent, 0) != null; + } + + /** + * Creates a geo-intent for opening a location in maps. + * + * @see https://developer.android.com/guide/components/intents-common.html#Maps + */ + private static Intent createGeoIntent( + float latitude, float longitude, @Nullable String label) { + label = Uri.encode(label == null ? "" : label); + String data = "geo:0,0?q=" + latitude + " " + longitude + "(" + label + ")"; + Uri uri = Uri.parse(data); + return new Intent(Intent.ACTION_VIEW, uri); + } + /** * Shows the selected document in it's content provider. * @@ -210,9 +288,10 @@ public final class InspectorController { } /** - * Interface for loading document metadata. + * Interface for loading all the various forms of document data. This primarily + * allows us to easily supply test data in tests. */ - public interface Loader { + public interface DataSupplier { /** * Starts the Asynchronous process of loading file data. @@ -235,12 +314,28 @@ public final class InspectorController { * Deletes all loader id's when android lifecycle ends. */ void reset(); + + /** + * @param uri + * @param callback + */ + void getDocumentMetadata(Uri uri, Consumer<Bundle> callback); + } + + /** + * This interface is for unit testing. + */ + public interface Display { + /** + * Makes the action visible. + */ + void setVisible(boolean visible); } /** * This interface is for unit testing. */ - public interface ActionDisplay { + public interface ActionDisplay extends Display { /** * Initializes the view based on the action. @@ -249,11 +344,6 @@ public final class InspectorController { */ void init(Action action, OnClickListener listener); - /** - * Makes the action visible. - */ - void setVisible(boolean visible); - void setActionHeader(String header); void setAppIcon(Drawable icon); @@ -266,10 +356,63 @@ public final class InspectorController { /** * Provides details about a file. */ + public interface HeaderDisplay { + void accept(DocumentInfo info, String displayName); + } + + /** + * Provides basic details about a file. + */ public interface DetailsDisplay { void accept(DocumentInfo info); void setChildrenCount(int count); } + + /** + * Provides details about a media file. + */ + public interface MediaDisplay extends Display { + void accept(DocumentInfo info, Bundle metadata, @Nullable Runnable geoClickListener); + + /** + * Returns true if there are now rows in the display. Does not consider the title. + */ + boolean isEmpty(); + } + + /** + * Provides details about a media file. + */ + public interface DebugDisplay extends Display { + void accept(DocumentInfo info); + void accept(Bundle metadata); + + /** + * Returns true if there are now rows in the display. Does not consider the title. + */ + boolean isEmpty(); + } + + /** + * Displays a table of image metadata. + */ + public interface TableDisplay extends Display { + + /** + * Adds a row in the table. + */ + void put(@StringRes int keyId, CharSequence value); + + /** + * Adds a row in the table and makes it clickable. + */ + void put(@StringRes int keyId, CharSequence value, OnClickListener callback); + + /** + * Returns true if there are now rows in the display. Does not consider the title. + */ + boolean isEmpty(); + } }
\ No newline at end of file diff --git a/src/com/android/documentsui/inspector/InspectorFragment.java b/src/com/android/documentsui/inspector/InspectorFragment.java index ef7c3b1f4..b2fd155e7 100644 --- a/src/com/android/documentsui/inspector/InspectorFragment.java +++ b/src/com/android/documentsui/inspector/InspectorFragment.java @@ -27,8 +27,7 @@ import android.view.ViewGroup; import android.widget.ScrollView; import com.android.documentsui.R; -import com.android.documentsui.base.Shared; -import com.android.documentsui.inspector.InspectorController.Loader; +import com.android.documentsui.inspector.InspectorController.DataSupplier; /** * Displays the Properties view in Files. @@ -47,12 +46,11 @@ public class InspectorFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { - final Loader loader = new DocumentLoader(getActivity(), getLoaderManager()); + final DataSupplier loader = new RuntimeDataSupplier(getActivity(), getLoaderManager()); - mView = (ScrollView) inflater.inflate(R.layout.document_inspector_fragment, + mView = (ScrollView) inflater.inflate(R.layout.inspector_fragment, container, false); - boolean showDebug = (boolean) getArguments().get(Shared.EXTRA_SHOW_DEBUG); - mController = new InspectorController(getActivity(), loader, mView, showDebug); + mController = new InspectorController(getActivity(), loader, mView, getArguments()); return mView; } @@ -70,16 +68,17 @@ public class InspectorFragment extends Fragment { } /** - * Creates a fragment and sets a Uri as an argument. + * Creates a fragment with the appropriate args. */ public static InspectorFragment newInstance(Intent intent) { - Uri uri = intent.getData(); - boolean showDebug = intent.getBooleanExtra(Shared.EXTRA_SHOW_DEBUG, false); + Bundle extras = intent.getExtras(); + extras = extras != null ? extras : Bundle.EMPTY; + Bundle args = extras.deepCopy(); + + Uri uri = intent.getData(); checkArgument(uri.getScheme().equals("content")); - Bundle args = new Bundle(); args.putParcelable(DOC_URI_ARG, uri); - args.putBoolean(Shared.EXTRA_SHOW_DEBUG, showDebug); InspectorFragment fragment = new InspectorFragment(); fragment.setArguments(args); diff --git a/src/com/android/documentsui/inspector/KeyValueRow.java b/src/com/android/documentsui/inspector/KeyValueRow.java index 45a6e0568..51714b3e9 100644 --- a/src/com/android/documentsui/inspector/KeyValueRow.java +++ b/src/com/android/documentsui/inspector/KeyValueRow.java @@ -15,12 +15,16 @@ */ package com.android.documentsui.inspector; -import static com.android.internal.util.Preconditions.checkNotNull; - import android.annotation.StringRes; import android.content.Context; +import android.content.res.ColorStateList; import android.content.res.Resources; +import android.graphics.Paint; +import android.support.annotation.Nullable; +import android.text.Selection; +import android.text.Spannable; import android.util.AttributeSet; +import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; @@ -32,6 +36,7 @@ import com.android.documentsui.R; public class KeyValueRow extends LinearLayout { private final Resources mRes; + private @Nullable ColorStateList mDefaultTextColor; public KeyValueRow(Context context) { this(context, null); @@ -51,7 +56,7 @@ public class KeyValueRow extends LinearLayout { * Sets the raw value of the key. Only localized values * should be passed. */ - public void setKey(String key) { + public void setKey(CharSequence key) { ((TextView) findViewById(R.id.table_row_key)).setText(key); } @@ -59,7 +64,37 @@ public class KeyValueRow extends LinearLayout { setKey(mRes.getString(id)); } - public void setValue(String value) { - ((TextView) findViewById(R.id.table_row_value)).setText(value); + public void setValue(CharSequence value) { + TextView text = ((TextView) findViewById(R.id.table_row_value)); + text.setText(value); + text.setOnLongClickListener((View view) -> { + + CharSequence textValue = text.getText(); + if (textValue instanceof Spannable) { + Spannable spn = (Spannable) textValue; + Selection.selectAll(spn); + } + // we still want the default selection arrows and menu after we specified to select + // all text in the TextView. + return false; + }); + } + + @Override + public void setOnClickListener(OnClickListener callback) { + TextView clickable = ((TextView) findViewById(R.id.table_row_value)); + mDefaultTextColor = clickable.getTextColors(); + clickable.setTextColor(R.color.inspector_link); + clickable.setPaintFlags(clickable.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG); + clickable.setOnClickListener(callback); + } + + public void removeOnClickListener() { + TextView reset = ((TextView) findViewById(R.id.table_row_value)); + if (mDefaultTextColor != null) { + reset.setTextColor(mDefaultTextColor); + } + reset.setPaintFlags(reset.getPaintFlags() & ~Paint.UNDERLINE_TEXT_FLAG); + reset.setOnClickListener(null); } -} +}
\ No newline at end of file diff --git a/src/com/android/documentsui/inspector/MediaView.java b/src/com/android/documentsui/inspector/MediaView.java new file mode 100644 index 000000000..b2ae7582b --- /dev/null +++ b/src/com/android/documentsui/inspector/MediaView.java @@ -0,0 +1,294 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.inspector; + +import android.content.Context; +import android.content.res.Resources; +import android.location.Address; +import android.location.Geocoder; +import android.media.ExifInterface; +import android.media.MediaMetadata; +import android.os.AsyncTask; +import android.os.Bundle; +import android.provider.DocumentsContract; +import android.support.annotation.VisibleForTesting; +import android.text.format.DateUtils; +import android.util.AttributeSet; + +import com.android.documentsui.R; +import com.android.documentsui.base.DocumentInfo; +import com.android.documentsui.base.Shared; +import com.android.documentsui.inspector.InspectorController.MediaDisplay; +import com.android.documentsui.inspector.InspectorController.TableDisplay; + +import java.io.IOException; +import java.util.function.Consumer; + +import javax.annotation.Nullable; + +/** + * Organizes and Displays the debug information about a file. This view + * should only be made visible when build is debuggable and system policies + * allow debug "stuff". + */ +public class MediaView extends TableView implements MediaDisplay { + + private final Resources mResources; + private final Context mContext; + + public MediaView(Context context) { + this(context, null); + } + + public MediaView(Context context, AttributeSet attrs) { + this(context, attrs, 0); + } + + public MediaView(Context context, AttributeSet attrs, int defStyleAttr) { + super(context, attrs, defStyleAttr); + mContext = context; + mResources = context.getResources(); + } + + @Override + public void accept(DocumentInfo doc, Bundle metadata, @Nullable Runnable geoClickListener) { + setTitle(R.string.inspector_metadata_section, true); + + Bundle exif = metadata.getBundle(DocumentsContract.METADATA_EXIF); + if (exif != null) { + showExifData(this, mResources, doc, exif, geoClickListener, this::getAddress); + } + + Bundle video = metadata.getBundle(Shared.METADATA_KEY_VIDEO); + if (video != null) { + showVideoData(this, mResources, doc, video, geoClickListener); + } + + Bundle audio = metadata.getBundle(Shared.METADATA_KEY_AUDIO); + if (audio != null) { + showAudioData(this, audio); + } + + setVisible(!isEmpty()); + } + + @VisibleForTesting + public static void showAudioData(TableDisplay table, Bundle tags) { + + if (tags.containsKey(MediaMetadata.METADATA_KEY_ARTIST)) { + table.put(R.string.metadata_artist, tags.getString(MediaMetadata.METADATA_KEY_ARTIST)); + } + + if (tags.containsKey(MediaMetadata.METADATA_KEY_COMPOSER)) { + table.put(R.string.metadata_composer, + tags.getString(MediaMetadata.METADATA_KEY_COMPOSER)); + } + + if (tags.containsKey(MediaMetadata.METADATA_KEY_ALBUM)) { + table.put(R.string.metadata_album, tags.getString(MediaMetadata.METADATA_KEY_ALBUM)); + } + + if (tags.containsKey(MediaMetadata.METADATA_KEY_DURATION)) { + int millis = tags.getInt(MediaMetadata.METADATA_KEY_DURATION); + table.put(R.string.metadata_duration, DateUtils.formatElapsedTime(millis / 1000)); + } + } + + @VisibleForTesting + public static void showVideoData( + TableDisplay table, + Resources resources, + DocumentInfo doc, + Bundle tags, + @Nullable Runnable geoClickListener) { + + addDimensionsRow(table, resources, tags); + + if (MetadataUtils.hasVideoCoordinates(tags)) { + float[] coords = MetadataUtils.getVideoCoords(tags); + showCoordiantes(table, resources, coords, geoClickListener); + } + + if (tags.containsKey(MediaMetadata.METADATA_KEY_DURATION)) { + int millis = tags.getInt(MediaMetadata.METADATA_KEY_DURATION); + table.put(R.string.metadata_duration, DateUtils.formatElapsedTime(millis / 1000)); + } + } + + @VisibleForTesting + public static void showExifData( + TableDisplay table, + Resources resources, + DocumentInfo doc, + Bundle tags, + @Nullable Runnable geoClickListener, + Consumer<float[]> geoAddressFetcher) { + + addDimensionsRow(table, resources, tags); + + if (tags.containsKey(ExifInterface.TAG_DATETIME)) { + String date = tags.getString(ExifInterface.TAG_DATETIME); + table.put(R.string.metadata_date_time, date); + } + + if (tags.containsKey(ExifInterface.TAG_GPS_ALTITUDE)) { + double altitude = tags.getDouble(ExifInterface.TAG_GPS_ALTITUDE); + table.put(R.string.metadata_altitude, String.valueOf(altitude)); + } + + if (tags.containsKey(ExifInterface.TAG_MAKE) || tags.containsKey(ExifInterface.TAG_MODEL)) { + String make = tags.getString(ExifInterface.TAG_MAKE); + String model = tags.getString(ExifInterface.TAG_MODEL); + make = make != null ? make : ""; + model = model != null ? model : ""; + table.put( + R.string.metadata_camera, + resources.getString(R.string.metadata_camera_format, make, model)); + } + + if (tags.containsKey(ExifInterface.TAG_APERTURE)) { + table.put(R.string.metadata_aperture, resources.getString( + R.string.metadata_aperture_format, tags.getDouble(ExifInterface.TAG_APERTURE))); + } + + if (tags.containsKey(ExifInterface.TAG_SHUTTER_SPEED_VALUE)) { + String shutterSpeed = String.valueOf( + formatShutterSpeed(tags.getDouble(ExifInterface.TAG_SHUTTER_SPEED_VALUE))); + table.put(R.string.metadata_shutter_speed, shutterSpeed); + } + + if (tags.containsKey(ExifInterface.TAG_FOCAL_LENGTH)) { + double length = tags.getDouble(ExifInterface.TAG_FOCAL_LENGTH); + table.put(R.string.metadata_focal_length, + String.format(resources.getString(R.string.metadata_focal_format), length)); + } + + if (tags.containsKey(ExifInterface.TAG_ISO_SPEED_RATINGS)) { + int iso = tags.getInt(ExifInterface.TAG_ISO_SPEED_RATINGS); + table.put(R.string.metadata_iso_speed_ratings, + String.format(resources.getString(R.string.metadata_iso_format), iso)); + } + + if (MetadataUtils.hasExifGpsFields(tags)) { + float[] coords = MetadataUtils.getExifGpsCoords(tags); + showCoordiantes(table, resources, coords, geoClickListener); + geoAddressFetcher.accept(coords); + } + } + + private static void showCoordiantes( + TableDisplay table, + Resources resources, + float[] coords, + @Nullable Runnable geoClickListener) { + + String value = resources.getString( + R.string.metadata_coordinates_format, coords[0], coords[1]); + if (geoClickListener != null) { + table.put( + R.string.metadata_coordinates, + value, + view -> { + geoClickListener.run(); + } + ); + } else { + table.put(R.string.metadata_coordinates, value); + } + } + + /** + * Attempts to retrieve an approximate address and displays the address if it can find one. + * @param coords the coordinates that gets an address. + */ + private void getAddress(float[] coords) { + new AsyncTask<Float, Void, Address>() { + @Override + protected Address doInBackground(Float... coords) { + assert (coords.length == 2); + Geocoder geocoder = new Geocoder(mContext); + try { + Address address = geocoder.getFromLocation(coords[0], // latitude + coords[1], // longitude + 1 // amount of results returned + ).get(0); + return address; + } catch (IOException e) { + return null; + } + } + @Override + protected void onPostExecute(@Nullable Address address) { + if (address != null) { + TableDisplay table = MediaView.this; + if (address.getMaxAddressLineIndex() >= 0) { + String formattedAddress; + StringBuilder addressBuilder = new StringBuilder(""); + addressBuilder.append(address.getAddressLine(0)); + for (int i = 1; i < address.getMaxAddressLineIndex(); i++) { + addressBuilder.append("\n"); + addressBuilder.append(address.getAddressLine(i)); + } + formattedAddress = addressBuilder.toString(); + table.put(R.string.metadata_address, formattedAddress); + } else if (address.getLocality() != null) { + table.put(R.string.metadata_address, address.getLocality()); + } else if (address.getSubAdminArea() != null) { + table.put(R.string.metadata_address, address.getSubAdminArea()); + } else if (address.getAdminArea() != null) { + table.put(R.string.metadata_address, address.getAdminArea()); + } else if (address.getCountryName() != null) { + table.put(R.string.metadata_address, address.getCountryName()); + } } + } + }.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, coords[0], coords[1]); + } + + /** + * @param speed a value n, where shutter speed equals 1/(2^n) + * @return a String containing either a fraction that displays 1 over a positive integer, or a + * double rounded to one decimal, depending on if 1/(2^n) is less than or greater than 1, + * respectively. + */ + private static String formatShutterSpeed(double speed) { + if (speed <= 0) { + double shutterSpeed = Math.pow(2, -1 * speed); + String formattedSpeed = String.valueOf(Math.round(shutterSpeed * 10.0) / 10.0); + return formattedSpeed; + } else { + int approximateSpeedDenom = (int) Math.pow(2, speed) + 1; + String formattedSpeed = "1/" + String.valueOf(approximateSpeedDenom); + return formattedSpeed; + } + } + + /** + * @param table + * @param resources + * @param tags + */ + private static void addDimensionsRow(TableDisplay table, Resources resources, Bundle tags) { + if (tags.containsKey(ExifInterface.TAG_IMAGE_WIDTH) + && tags.containsKey(ExifInterface.TAG_IMAGE_LENGTH)) { + int width = tags.getInt(ExifInterface.TAG_IMAGE_WIDTH); + int height = tags.getInt(ExifInterface.TAG_IMAGE_LENGTH); + float megaPixels = height * width / 1000000f; + table.put(R.string.metadata_dimensions, + resources.getString( + R.string.metadata_dimensions_format, width, height, megaPixels)); + } + } +} diff --git a/src/com/android/documentsui/inspector/MetadataLoader.java b/src/com/android/documentsui/inspector/MetadataLoader.java new file mode 100644 index 000000000..3de15baed --- /dev/null +++ b/src/com/android/documentsui/inspector/MetadataLoader.java @@ -0,0 +1,96 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.inspector; + +import android.content.AsyncTaskLoader; +import android.content.Context; +import android.net.Uri; +import android.os.Bundle; +import android.provider.DocumentsContract; +import android.support.annotation.Nullable; +import android.util.Log; + +import java.io.FileNotFoundException; + +/** + * Loads metadata from {@link DocumentsContract#getDocumentMetadata(android.content.ContentProviderClient, Uri, String[])} + */ +final class MetadataLoader extends AsyncTaskLoader<Bundle> { + + private static final String TAG = "MetadataLoader"; + + private final Context mContext; + private final Uri mUri; + + private @Nullable Bundle mMetadata; + + MetadataLoader(Context context, Uri uri) { + super(context); + mContext = context; + mUri = uri; + } + + @Override + public Bundle loadInBackground() { + try { + return DocumentsContract.getDocumentMetadata(mContext.getContentResolver(), mUri); + } catch (FileNotFoundException e) { + Log.e(TAG, "Failed to load metadata for doc: " + mUri, e); + } + + return null; + } + + @Override + protected void onStartLoading() { + if (mMetadata != null) { + deliverResult(mMetadata); + } + if (takeContentChanged() || mMetadata == null) { + forceLoad(); + } + } + + @Override + public void deliverResult(Bundle metadata) { + if (isReset()) { + return; + } + mMetadata = metadata; + if (isStarted()) { + super.deliverResult(metadata); + } + } + + /** + * Must be called from the UI thread + */ + @Override + protected void onStopLoading() { + // Attempt to cancel the current load task if possible. + cancelLoad(); + } + + @Override + protected void onReset() { + super.onReset(); + + // Ensure the loader is stopped + onStopLoading(); + + mMetadata = null; + } +} diff --git a/src/com/android/documentsui/inspector/MetadataUtils.java b/src/com/android/documentsui/inspector/MetadataUtils.java new file mode 100644 index 000000000..b5c1034b5 --- /dev/null +++ b/src/com/android/documentsui/inspector/MetadataUtils.java @@ -0,0 +1,91 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.inspector; + +import static com.android.internal.util.Preconditions.checkNotNull; + +import android.media.ExifInterface; +import android.os.Bundle; +import android.provider.DocumentsContract; + +import com.android.documentsui.base.Shared; + +import javax.annotation.Nullable; + +final class MetadataUtils { + + private MetadataUtils() {} + + static boolean hasGeoCoordinates(@Nullable Bundle metadata) { + if (metadata == null) { + return false; + } + return hasVideoCoordinates(metadata.getBundle(Shared.METADATA_KEY_VIDEO)) + || hasExifGpsFields(metadata.getBundle(DocumentsContract.METADATA_EXIF)); + } + + static boolean hasVideoCoordinates(@Nullable Bundle data) { + return data != null && (data.containsKey(Shared.METADATA_VIDEO_LATITUDE) + && data.containsKey(Shared.METADATA_VIDEO_LONGITUTE)); + } + + static boolean hasExifGpsFields(@Nullable Bundle exif) { + return exif != null && (exif.containsKey(ExifInterface.TAG_GPS_LATITUDE) + && exif.containsKey(ExifInterface.TAG_GPS_LONGITUDE) + && exif.containsKey(ExifInterface.TAG_GPS_LATITUDE_REF) + && exif.containsKey(ExifInterface.TAG_GPS_LONGITUDE_REF)); + } + + static float[] getGeoCoordinates(Bundle metadata) { + assert hasGeoCoordinates(metadata); + checkNotNull(metadata); + + Bundle bundle = metadata.getBundle(DocumentsContract.METADATA_EXIF); + if (hasExifGpsFields(bundle)) { + return getExifGpsCoords(bundle); + } + + bundle = metadata.getBundle(Shared.METADATA_KEY_VIDEO); + if (hasVideoCoordinates(bundle)) { + return getVideoCoords(bundle); + } + + // This should never happen, because callers should always check w/ hasGeoCoordinates first. + throw new IllegalArgumentException("Invalid metadata bundle: " + metadata); + } + + static float[] getExifGpsCoords(Bundle exif) { + assert hasExifGpsFields(exif); + + String lat = exif.getString(ExifInterface.TAG_GPS_LATITUDE); + String lon = exif.getString(ExifInterface.TAG_GPS_LONGITUDE); + String latRef = exif.getString(ExifInterface.TAG_GPS_LATITUDE_REF); + String lonRef = exif.getString(ExifInterface.TAG_GPS_LONGITUDE_REF); + + return new float[] { + ExifInterface.convertRationalLatLonToFloat(lat, latRef), + ExifInterface.convertRationalLatLonToFloat(lon, lonRef) + }; + } + + static float[] getVideoCoords(Bundle data) { + assert hasVideoCoordinates(data); + return new float[] { + data.getFloat(Shared.METADATA_VIDEO_LATITUDE), + data.getFloat(Shared.METADATA_VIDEO_LONGITUTE) + }; + } +} diff --git a/src/com/android/documentsui/inspector/DocumentLoader.java b/src/com/android/documentsui/inspector/RuntimeDataSupplier.java index 9c92b1cc2..bb8998bd1 100644 --- a/src/com/android/documentsui/inspector/DocumentLoader.java +++ b/src/com/android/documentsui/inspector/RuntimeDataSupplier.java @@ -27,32 +27,35 @@ import android.net.Uri; import android.os.Bundle; import android.os.Handler; import android.os.Looper; - import android.provider.DocumentsContract; import android.support.annotation.Nullable; + import com.android.documentsui.base.DocumentInfo; -import com.android.documentsui.inspector.InspectorController.Loader; +import com.android.documentsui.inspector.InspectorController.DataSupplier; + import java.util.ArrayList; import java.util.List; import java.util.function.Consumer; /** - * Asynchronously loads a document's metadata for the inspector. + * Asynchronously loads a document data for the inspector. + * + * <p>This loader is not a Loader! Its our own funky loader. */ -public class DocumentLoader implements Loader { +public class RuntimeDataSupplier implements DataSupplier { private final Context mContext; - private final LoaderManager mLoader; - private List<Integer> loaderIds; + private final LoaderManager mLoaderMgr; + private final List<Integer> loaderIds = new ArrayList<>(); private @Nullable Callbacks mDocCallbacks; private @Nullable Callbacks mDirCallbacks; + private @Nullable LoaderCallbacks<Bundle> mMetadataCallbacks; - public DocumentLoader(Context context, LoaderManager loader) { + public RuntimeDataSupplier(Context context, LoaderManager loaderMgr) { checkArgument(context != null); - checkArgument(loader != null); + checkArgument(loaderMgr != null); mContext = context; - mLoader = loader; - loaderIds = new ArrayList<>(); + mLoaderMgr = loaderMgr; } /** @@ -63,14 +66,10 @@ public class DocumentLoader implements Loader { //Check that we have correct Uri type and that the loader is not already created. checkArgument(uri.getScheme().equals("content")); - //get a new loader id. - int loadId = getNextLoaderId(); - checkArgument(mLoader.getLoader(loadId) == null); - loaderIds.add(loadId); - Consumer<Cursor> callback = new Consumer<Cursor>() { @Override public void accept(Cursor cursor) { + if (cursor == null || !cursor.moveToFirst()) { updateView.accept(null); } else { @@ -81,7 +80,7 @@ public class DocumentLoader implements Loader { }; mDocCallbacks = new Callbacks(mContext, uri, callback); - mLoader.restartLoader(loadId, null, mDocCallbacks); + mLoaderMgr.restartLoader(getNextLoaderId(), null, mDocCallbacks); } /** @@ -93,11 +92,6 @@ public class DocumentLoader implements Loader { Uri children = DocumentsContract.buildChildDocumentsUri( directory.authority, directory.documentId); - //get a new loader id. - int loadId = getNextLoaderId(); - checkArgument(mLoader.getLoader(loadId) == null); - loaderIds.add(loadId); - Consumer<Cursor> callback = new Consumer<Cursor>() { @Override public void accept(Cursor cursor) { @@ -108,19 +102,42 @@ public class DocumentLoader implements Loader { }; mDirCallbacks = new Callbacks(mContext, children, callback); - mLoader.restartLoader(loadId, null, mDirCallbacks); + mLoaderMgr.restartLoader(getNextLoaderId(), null, mDirCallbacks); + } + + @Override + public void getDocumentMetadata(Uri uri, Consumer<Bundle> callback) { + mMetadataCallbacks = new LoaderCallbacks<Bundle>() { + @Override + public android.content.Loader<Bundle> onCreateLoader(int id, Bundle unused) { + return new MetadataLoader(mContext, uri); + } + + @Override + public void onLoadFinished(android.content.Loader<Bundle> loader, Bundle data) { + callback.accept(data); + } + + @Override + public void onLoaderReset(android.content.Loader<Bundle> loader) { + } + }; + + // TODO: Listen for changes on content URI. + mLoaderMgr.restartLoader(getNextLoaderId(), null, mMetadataCallbacks); } @Override public void reset() { for (Integer id : loaderIds) { - mLoader.destroyLoader(id); + mLoaderMgr.destroyLoader(id); } loaderIds.clear(); if (mDocCallbacks != null && mDocCallbacks.getObserver() != null) { mContext.getContentResolver().unregisterContentObserver(mDocCallbacks.getObserver()); } + if (mDirCallbacks != null && mDirCallbacks.getObserver() != null) { mContext.getContentResolver().unregisterContentObserver(mDocCallbacks.getObserver()); } @@ -128,10 +145,11 @@ public class DocumentLoader implements Loader { private int getNextLoaderId() { int id = 0; - while(mLoader.getLoader(id) != null) { + while(mLoaderMgr.getLoader(id) != null) { id++; checkArgument(id <= Integer.MAX_VALUE); } + loaderIds.add(id); return id; } @@ -195,4 +213,4 @@ public class DocumentLoader implements Loader { mContentChangedCallback.run(); } } -}
\ No newline at end of file +} diff --git a/src/com/android/documentsui/inspector/TableView.java b/src/com/android/documentsui/inspector/TableView.java index 91c30d844..41a31658a 100644 --- a/src/com/android/documentsui/inspector/TableView.java +++ b/src/com/android/documentsui/inspector/TableView.java @@ -20,28 +20,27 @@ import android.content.Context; import android.content.res.Resources; import android.util.AttributeSet; import android.view.LayoutInflater; +import android.view.View; import android.view.ViewGroup; import android.widget.LinearLayout; import android.widget.TextView; import com.android.documentsui.R; +import com.android.documentsui.inspector.InspectorController.TableDisplay; import java.util.HashMap; import java.util.Map; -import javax.annotation.Nullable; - - /** * Organizes and Displays the basic details about a file */ -public class TableView extends LinearLayout { +public class TableView extends LinearLayout implements TableDisplay { private final LayoutInflater mInflater; - private final Map<String, KeyValueRow> mRows = new HashMap<>(); + private final Map<CharSequence, KeyValueRow> mRows = new HashMap<>(); private final Resources mRes; - private @Nullable TextView mTitle; + private Map<CharSequence, TextView> mTitles = new HashMap<>(); public TableView(Context context) { this(context, null); @@ -57,12 +56,24 @@ public class TableView extends LinearLayout { mRes = context.getResources(); } - protected void setTitle(ViewGroup parent, @StringRes int title) { - if (mTitle == null) { - mTitle = (TextView) mInflater.inflate(R.layout.inspector_section_title, null); - parent.addView(mTitle); + void setTitle(@StringRes int title, boolean showDivider) { + putTitle(mContext.getResources().getString(title), showDivider); + } + + // A naughty title method (that takes strings, not message ids), mostly for DebugView. + protected void putTitle(CharSequence title, boolean showDivider) { + TextView view = mTitles.get(title); + if (view == null) { + LinearLayout layout = + (LinearLayout) mInflater.inflate(R.layout.inspector_section_title, null); + if (!showDivider) { + layout.setDividerDrawable(null); + } + view = (TextView) layout.findViewById(R.id.inspector_header_title); + addView(layout); + mTitles.put(title, view); } - mTitle.setText(mContext.getResources().getString(title)); + view.setText(title); } protected KeyValueRow createKeyValueRow(ViewGroup parent) { @@ -72,23 +83,45 @@ public class TableView extends LinearLayout { } /** - * Puts or updates an value in the table view. + * Puts or updates a value in the table view. */ - protected void put(@StringRes int keyId, String value) { + @Override + public void put(@StringRes int keyId, CharSequence value) { put(mRes.getString(keyId), value); } + /** - * Puts or updates an value in the table view. + * Puts or updates a value in the table view. */ - protected void put(String key, String value) { - if(mRows.containsKey(key)) { - mRows.get(key).setValue(value); - } else { - KeyValueRow row = createKeyValueRow(this); + protected KeyValueRow put(CharSequence key, CharSequence value) { + KeyValueRow row = mRows.get(key); + + if (row == null) { + row = createKeyValueRow(this); row.setKey(key); - row.setValue(value); mRows.put(key, row); + } else { + row.removeOnClickListener(); } + + row.setValue(value); + return row; + } + + @Override + public void put(@StringRes int keyId, CharSequence value, OnClickListener callback) { + put(keyId, value); + mRows.get(mRes.getString(keyId)).setOnClickListener(callback); + } + + @Override + public boolean isEmpty() { + return mRows.isEmpty(); + } + + @Override + public void setVisible(boolean visible) { + setVisibility(visible ? View.VISIBLE : View.GONE); } } diff --git a/src/com/android/documentsui/inspector/actions/Action.java b/src/com/android/documentsui/inspector/actions/Action.java index 1b0b69379..d90d6dc34 100644 --- a/src/com/android/documentsui/inspector/actions/Action.java +++ b/src/com/android/documentsui/inspector/actions/Action.java @@ -17,6 +17,7 @@ package com.android.documentsui.inspector.actions; import android.annotation.Nullable; +import android.annotation.StringRes; import android.content.Context; import android.content.pm.ApplicationInfo; import android.content.pm.PackageManager; @@ -54,6 +55,8 @@ public abstract class Action { public abstract @Nullable String getPackageName(); + public abstract @StringRes int getButtonLabel(); + public @Nullable Drawable getAppIcon() { String packageName = getPackageName(); diff --git a/src/com/android/documentsui/inspector/actions/ActionView.java b/src/com/android/documentsui/inspector/actions/ActionView.java index 485e2b1b6..b519bccc2 100644 --- a/src/com/android/documentsui/inspector/actions/ActionView.java +++ b/src/com/android/documentsui/inspector/actions/ActionView.java @@ -15,6 +15,7 @@ */ package com.android.documentsui.inspector.actions; +import android.annotation.Nullable; import android.content.Context; import android.graphics.drawable.Drawable; import android.util.AttributeSet; @@ -34,6 +35,7 @@ import com.android.documentsui.inspector.InspectorController; */ public final class ActionView extends LinearLayout implements InspectorController.ActionDisplay { + private Context mContext; private final TextView mHeader; private final ImageView mAppIcon; private final TextView mAppName; @@ -55,12 +57,18 @@ public final class ActionView extends LinearLayout implements InspectorControlle View view = inflater.inflate(R.layout.inspector_action_view, null); addView(view); - mHeader = (TextView) findViewById(R.id.action_header); + mContext = context; + mHeader = getSectionTitle(); mAppIcon = (ImageView) findViewById(R.id.app_icon); mAppName = (TextView) findViewById(R.id.app_name); mActionButton = (ImageButton) findViewById(R.id.inspector_action_button); } + public TextView getSectionTitle() { + LinearLayout header = (LinearLayout) findViewById(R.id.action_header); + return (TextView) header.findViewById(R.id.inspector_header_title); + } + @Override public void init(Action action, OnClickListener listener) { mAction = action; @@ -68,6 +76,7 @@ public final class ActionView extends LinearLayout implements InspectorControlle setAppIcon(mAction.getAppIcon()); setAppName(mAction.getAppName()); + mActionButton.setContentDescription(mContext.getString(action.getButtonLabel())); mActionButton.setOnClickListener(listener); showAction(true); @@ -84,8 +93,14 @@ public final class ActionView extends LinearLayout implements InspectorControlle } @Override - public void setAppIcon(Drawable icon) { - mAppIcon.setImageDrawable(icon); + public void setAppIcon(@Nullable Drawable icon) { + + if (icon != null) { + mAppIcon.setVisibility(View.VISIBLE); + mAppIcon.setImageDrawable(icon); + } else { + mAppIcon.setVisibility(View.GONE); + } } @Override diff --git a/src/com/android/documentsui/inspector/actions/ClearDefaultAppAction.java b/src/com/android/documentsui/inspector/actions/ClearDefaultAppAction.java index 4f954bae5..f8f6aeb58 100644 --- a/src/com/android/documentsui/inspector/actions/ClearDefaultAppAction.java +++ b/src/com/android/documentsui/inspector/actions/ClearDefaultAppAction.java @@ -15,6 +15,7 @@ */ package com.android.documentsui.inspector.actions; +import android.annotation.StringRes; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; @@ -84,4 +85,8 @@ public final class ClearDefaultAppAction extends Action { return null; } } + + public @StringRes int getButtonLabel() { + return R.string.button_clear; + } }
\ No newline at end of file diff --git a/src/com/android/documentsui/inspector/actions/ShowInProviderAction.java b/src/com/android/documentsui/inspector/actions/ShowInProviderAction.java index aee649daf..0dc221a8c 100644 --- a/src/com/android/documentsui/inspector/actions/ShowInProviderAction.java +++ b/src/com/android/documentsui/inspector/actions/ShowInProviderAction.java @@ -20,6 +20,7 @@ import static android.provider.DocumentsContract.Document.FLAG_SUPPORTS_SETTINGS import android.content.Context; import android.content.pm.PackageManager; +import android.support.annotation.StringRes; import com.android.documentsui.R; import com.android.documentsui.base.DocumentInfo; import com.android.documentsui.roots.ProvidersAccess; @@ -67,4 +68,8 @@ public final class ShowInProviderAction extends Action { public String getPackageName() { return mProviders.getPackageName(mDoc.derivedUri.getAuthority()); } + + public @StringRes int getButtonLabel() { + return R.string.button_show_provider; + } }
\ No newline at end of file diff --git a/src/com/android/documentsui/roots/ProvidersCache.java b/src/com/android/documentsui/roots/ProvidersCache.java index 76178d0f8..8589f11bf 100644 --- a/src/com/android/documentsui/roots/ProvidersCache.java +++ b/src/com/android/documentsui/roots/ProvidersCache.java @@ -380,6 +380,7 @@ public class ProvidersCache implements ProvidersAccess { } } + @Override public RootInfo getDefaultRootBlocking(State state) { for (RootInfo root : ProvidersAccess.getMatchingRoots(getRootsBlocking(), state)) { if (root.isDownloads()) { diff --git a/src/com/android/documentsui/selection/BandController.java b/src/com/android/documentsui/selection/BandController.java index 399bb152b..a4f6171d1 100644 --- a/src/com/android/documentsui/selection/BandController.java +++ b/src/com/android/documentsui/selection/BandController.java @@ -37,7 +37,6 @@ import com.android.documentsui.DirectoryReloadLock; import com.android.documentsui.R; import com.android.documentsui.base.Events.InputEvent; import com.android.documentsui.dirlist.DocumentsAdapter; -import com.android.documentsui.dirlist.FocusHandler; import com.android.documentsui.ui.ViewAutoScroller; import com.android.documentsui.ui.ViewAutoScroller.ScrollActionDelegate; import com.android.documentsui.ui.ViewAutoScroller.ScrollDistanceDelegate; @@ -749,6 +748,11 @@ public class BandController extends OnScrollListener { } @Override + public int hashCode() { + return lowerLimit ^ upperLimit; + } + + @Override public boolean equals(Object other) { if (!(other instanceof GridModel.Limits)) { return false; @@ -871,6 +875,14 @@ public class BandController extends OnScrollListener { } @Override + public int hashCode() { + return mFirstKnownItem.lowerLimit + ^ mLastKnownItem.upperLimit + ^ limitsBeforeCoordinate.upperLimit + ^ limitsBeforeCoordinate.lowerLimit; + } + + @Override public boolean equals(Object other) { if (!(other instanceof GridModel.RelativeCoordinate)) { return false; @@ -900,6 +912,12 @@ public class BandController extends OnScrollListener { } @Override + public int hashCode() { + return xLocation.toComparisonValue() + ^ yLocation.toComparisonValue(); + } + + @Override public boolean equals(Object other) { if (!(other instanceof RelativePoint)) { return false; diff --git a/src/com/android/documentsui/services/FileOperation.java b/src/com/android/documentsui/services/FileOperation.java index 2ee12d56d..1f0e9b987 100644 --- a/src/com/android/documentsui/services/FileOperation.java +++ b/src/com/android/documentsui/services/FileOperation.java @@ -16,12 +16,13 @@ package com.android.documentsui.services; -import static com.android.documentsui.services.FileOperationService.OPERATION_COPY; import static com.android.documentsui.services.FileOperationService.OPERATION_COMPRESS; -import static com.android.documentsui.services.FileOperationService.OPERATION_EXTRACT; +import static com.android.documentsui.services.FileOperationService.OPERATION_COPY; import static com.android.documentsui.services.FileOperationService.OPERATION_DELETE; +import static com.android.documentsui.services.FileOperationService.OPERATION_EXTRACT; import static com.android.documentsui.services.FileOperationService.OPERATION_MOVE; import static com.android.documentsui.services.FileOperationService.OPERATION_UNKNOWN; +import static com.android.internal.util.Preconditions.checkArgument; import android.content.Context; import android.net.Uri; @@ -57,8 +58,8 @@ public abstract class FileOperation implements Parcelable { @VisibleForTesting FileOperation(@OpType int opType, UrisSupplier srcs, DocumentStack destination) { - assert(opType != OPERATION_UNKNOWN); - assert(srcs.getItemCount() > 0); + checkArgument(opType != OPERATION_UNKNOWN); + checkArgument(srcs.getItemCount() > 0); mOpType = opType; mSrcs = srcs; @@ -133,6 +134,7 @@ public abstract class FileOperation implements Parcelable { return builder.toString(); } + @Override CopyJob createJob(Context service, Job.Listener listener, String id, Features features) { return new CopyJob( service, listener, id, getDestination(), getSrc(), getMessenger(), features); @@ -173,6 +175,7 @@ public abstract class FileOperation implements Parcelable { return builder.toString(); } + @Override CopyJob createJob(Context service, Job.Listener listener, String id, Features features) { return new CompressJob(service, listener, id, getDestination(), getSrc(), getMessenger(), features); @@ -214,6 +217,7 @@ public abstract class FileOperation implements Parcelable { } // TODO: Replace CopyJob with ExtractJob. + @Override CopyJob createJob(Context service, Job.Listener listener, String id, Features features) { return new CopyJob( service, listener, id, getDestination(), getSrc(), getMessenger(), features); diff --git a/src/com/android/documentsui/ui/Snackbars.java b/src/com/android/documentsui/ui/Snackbars.java index 8fa84dcaf..933af971b 100644 --- a/src/com/android/documentsui/ui/Snackbars.java +++ b/src/com/android/documentsui/ui/Snackbars.java @@ -76,7 +76,7 @@ public final class Snackbars { //Document Inspector uses a different view from other files app activities. final View view = activity.findViewById(R.id.fragment_container); - Snackbar.make(view, R.string.file_inspector_load_error, Snackbar.LENGTH_INDEFINITE).show(); + Snackbar.make(view, R.string.inspector_load_error, Snackbar.LENGTH_INDEFINITE).show(); } public static final void showCustomTextWithImage(Activity activity, String text, int imageRes) { diff --git a/tests/common/com/android/documentsui/PagingProvider.java b/tests/common/com/android/documentsui/PagingProvider.java index ad5f32cac..a113bd13c 100644 --- a/tests/common/com/android/documentsui/PagingProvider.java +++ b/tests/common/com/android/documentsui/PagingProvider.java @@ -63,7 +63,7 @@ public class PagingProvider extends TestRootProvider { String parentDocumentId, String[] projection, Bundle queryArgs) throws FileNotFoundException { - // TODO: Content notification. + queryArgs = queryArgs != null ? queryArgs : Bundle.EMPTY; MatrixCursor c = createDocCursor(projection); Bundle extras = c.getExtras(); diff --git a/tests/common/com/android/documentsui/bots/InspectorBot.java b/tests/common/com/android/documentsui/bots/InspectorBot.java index 55f904464..448a7b746 100644 --- a/tests/common/com/android/documentsui/bots/InspectorBot.java +++ b/tests/common/com/android/documentsui/bots/InspectorBot.java @@ -15,19 +15,24 @@ */ package com.android.documentsui.bots; -import android.annotation.StringRes; +import static junit.framework.Assert.assertEquals; +import static junit.framework.Assert.assertTrue; + import android.app.Activity; import android.content.Context; import android.support.test.uiautomator.UiDevice; import android.support.test.uiautomator.UiSelector; +import android.view.View; import android.widget.LinearLayout; import android.widget.TextView; -import static junit.framework.Assert.assertEquals; -import static junit.framework.Assert.assertTrue; - -import com.android.documentsui.inspector.DetailsView; import com.android.documentsui.R; +import com.android.documentsui.inspector.DetailsView; +import com.android.documentsui.inspector.KeyValueRow; +import com.android.documentsui.inspector.TableView; + +import java.util.HashMap; +import java.util.Map; public class InspectorBot extends Bots.BaseBot { @@ -42,23 +47,45 @@ public class InspectorBot extends Bots.BaseBot { assertEquals(expected, text); } - public void assertRowPresent(@StringRes String key, String value, Activity activity) + public void assertRowPresent(String key, Activity activity) throws Exception { - assertTrue(isRowPresent(key, value, activity)); + assertTrue(isRowPresent(key, activity)); } - private boolean isRowPresent(@StringRes String key, String value, Activity activity) + public void assertRowEquals(String key, String value, Activity activity) throws Exception { - DetailsView detailsView = (DetailsView) activity.findViewById(R.id.inspector_details_view); - int children = detailsView.getChildCount(); + assertTrue(isRowEquals(key, value, activity)); + } + + private static Map<String, String> getTableRows(TableView table) + throws Exception { + Map<String, String> rows = new HashMap<>(); + int children = table.getChildCount(); for (int i = 0; i < children; i++) { - LinearLayout child = (LinearLayout) detailsView.getChildAt(i); - TextView title = (TextView) child.getChildAt(0); - if (title.getText().equals(key)) { - TextView info = (TextView) child.getChildAt(1); - return info.getText().equals(value); + View view = table.getChildAt(i); + if (view instanceof KeyValueRow) { + LinearLayout row = (LinearLayout) table.getChildAt(i); + TextView key = (TextView) row.getChildAt(0); + TextView value = (TextView) row.getChildAt(1); + rows.put( + String.valueOf(key.getText()), + String.valueOf(value.getText())); } } - return false; + return rows; + } + + private boolean isRowPresent(String key, Activity activity) + throws Exception { + DetailsView details = (DetailsView) activity.findViewById(R.id.inspector_details_view); + Map<String, String> rows = getTableRows(details); + return rows.containsKey(key); + } + + private boolean isRowEquals(String key, String value, Activity activity) + throws Exception { + DetailsView details = (DetailsView) activity.findViewById(R.id.inspector_details_view); + Map<String, String> rows = getTableRows(details); + return rows.containsKey(key) && value.equals(rows.get(key)); } } diff --git a/tests/common/com/android/documentsui/testing/IntentAsserts.java b/tests/common/com/android/documentsui/testing/IntentAsserts.java index 6fc1ae0f9..cbd6f3826 100644 --- a/tests/common/com/android/documentsui/testing/IntentAsserts.java +++ b/tests/common/com/android/documentsui/testing/IntentAsserts.java @@ -40,6 +40,14 @@ public final class IntentAsserts { assertEquals(expected, intent.getAction()); } + public static void assertTargetsComponent(Intent intent, Class<?> expected) { + assertEquals(expected.getName(), intent.getComponent().getClassName()); + } + + public static void assertHasExtra(Intent intent, String key) { + assertTrue(intent.getExtras().containsKey(key)); + } + public static Intent assertHasExtraIntent(Intent intent) { Intent extra = (Intent) intent.getExtra(EXTRA_INTENT); assertNotNull(extra); @@ -64,4 +72,8 @@ public final class IntentAsserts { Assert.assertEquals(size, list.size()); return list; } + + public static void assertHasData(Intent intent, Uri expected) { + assertEquals(expected, intent.getData()); + } } diff --git a/tests/common/com/android/documentsui/testing/TestEnv.java b/tests/common/com/android/documentsui/testing/TestEnv.java index 96ee0b7e1..8dcc2c123 100644 --- a/tests/common/com/android/documentsui/testing/TestEnv.java +++ b/tests/common/com/android/documentsui/testing/TestEnv.java @@ -15,6 +15,8 @@ */ package com.android.documentsui.testing; +import android.content.Context; +import android.net.Uri; import android.provider.DocumentsContract.Document; import android.support.test.InstrumentationRegistry; import android.test.mock.MockContentResolver; @@ -49,6 +51,7 @@ public class TestEnv { public static DocumentInfo FILE_JPG; public static DocumentInfo FILE_GIF; public static DocumentInfo FILE_PDF; + public static DocumentInfo FILE_MP4; public static DocumentInfo FILE_APK; public static DocumentInfo FILE_PARTIAL; public static DocumentInfo FILE_ARCHIVE; @@ -66,18 +69,16 @@ public class TestEnv { public final TestModel archiveModel; public final SelectionManager selectionMgr; public final TestSearchViewManager searchViewManager; - public final Injector injector; + public final Injector<?> injector; public final Features features; public final MockContentResolver contentResolver; public final Map<String, TestDocumentsProvider> mockProviders; - private TestEnv(String authority) { + private TestEnv(Context context, Features features, String authority) { + this.features = features; state.sortModel = SortModel.createModel(); mExecutor = new TestScheduledExecutorService(); - features = new Features.RuntimeFeatures( - InstrumentationRegistry.getInstrumentation().getTargetContext().getResources(), - null); model = new TestModel(authority, features); archiveModel = new TestModel(ArchivesProvider.AUTHORITY, features); selectionMgr = SelectionManagers.createTestInstance(); @@ -85,8 +86,8 @@ public class TestEnv { injector = new Injector( features, new TestActivityConfig(), - null, //ScopedPreferences are not required for tests - null, //a MessageBuilder is not required for tests + null, // ScopedPreferences are not currently required for tests + null, // MessageBuilder is not currently required for tests dialogs, new TestFileTypeLookup(), (roots) -> {}, // not sure why, but java gets angry when I declare roots type. @@ -111,12 +112,28 @@ public class TestEnv { } } + // Many terrible creational permutations == easy to user for test authors! + public static TestEnv create(Features features) { + return create(features, TestProvidersAccess.HOME.authority); + } + public static TestEnv create() { return create(TestProvidersAccess.HOME.authority); } + public static TestEnv create(Features features, String authority) { + Context context = InstrumentationRegistry.getInstrumentation().getTargetContext(); + return create(context, features, authority); + } + public static TestEnv create(String authority) { - TestEnv env = new TestEnv(authority); + Context context = InstrumentationRegistry.getInstrumentation().getTargetContext(); + Features features = new Features.RuntimeFeatures(context.getResources(), null); + return create(context, features, authority); + } + + private static TestEnv create(Context context, Features features, String authority) { + TestEnv env = new TestEnv(context, features, authority); env.reset(); return env; } @@ -136,6 +153,7 @@ public class TestEnv { FILE_JPG = model.createFile("jiffy.jpg"); FILE_GIF = model.createFile("glibby.gif"); FILE_PDF = model.createFile("busy.pdf"); + FILE_MP4 = model.createFile("cameravideo.mp4"); FILE_APK = model.createFile("becareful.apk"); FILE_PARTIAL = model.createFile( "UbuntuFlappyBird.iso", @@ -157,8 +175,11 @@ public class TestEnv { public void populateStack() { DocumentInfo rootDoc = model.getDocument("1"); - Assert.assertNotNull(rootDoc); - Assert.assertEquals(rootDoc.displayName, FOLDER_0.displayName); + + // These are test setup sanity checks, not test assertions. + assert rootDoc != null; + assert rootDoc.isDirectory(); + assert FOLDER_0.equals(rootDoc); state.stack.changeRoot(TestProvidersAccess.HOME); state.stack.push(rootDoc); @@ -177,4 +198,21 @@ public class TestEnv { ids.add(info.documentId); selectionMgr.setItemsSelected(ids, true); } + + // Easily copy docs, so we don't pollute static data across tests. + public static DocumentInfo clone(DocumentInfo a) { + DocumentInfo b = new DocumentInfo(); + b.authority = a.authority; + b.documentId = a.documentId; + b.mimeType = a.mimeType; + b.displayName = a.displayName; + b.lastModified = a.lastModified; + b.flags = a.flags; + b.summary = a.summary; + b.size = a.size; + b.icon = a.icon; + b.derivedUri = a.derivedUri; + + return b; + } } diff --git a/tests/common/com/android/documentsui/testing/TestMenu.java b/tests/common/com/android/documentsui/testing/TestMenu.java index 9df06d9b7..eb2d227d6 100644 --- a/tests/common/com/android/documentsui/testing/TestMenu.java +++ b/tests/common/com/android/documentsui/testing/TestMenu.java @@ -48,8 +48,9 @@ public abstract class TestMenu implements Menu { R.id.dir_menu_rename, R.id.dir_menu_delete, R.id.dir_menu_view_in_owner, - R.id.dir_menu_open_in_new_window, R.id.dir_menu_paste_into_folder, + R.id.dir_menu_inspect, + R.id.dir_menu_open_in_new_window, R.id.root_menu_eject_root, R.id.root_menu_open_in_new_window, R.id.root_menu_paste_into_folder, @@ -64,7 +65,7 @@ public abstract class TestMenu implements Menu { R.id.action_menu_move_to, R.id.action_menu_compress, R.id.action_menu_rename, - R.id.action_menu_inspector, + R.id.action_menu_inspect, R.id.action_menu_view_in_owner, R.id.option_menu_search, R.id.option_menu_debug, @@ -74,7 +75,8 @@ public abstract class TestMenu implements Menu { R.id.option_menu_create_dir, R.id.option_menu_select_all, R.id.option_menu_advanced, - R.id.option_menu_settings); + R.id.option_menu_settings, + R.id.option_menu_inspect); } diff --git a/tests/common/com/android/documentsui/testing/TestProvidersAccess.java b/tests/common/com/android/documentsui/testing/TestProvidersAccess.java index abe95d16c..248bb539d 100644 --- a/tests/common/com/android/documentsui/testing/TestProvidersAccess.java +++ b/tests/common/com/android/documentsui/testing/TestProvidersAccess.java @@ -16,6 +16,7 @@ package com.android.documentsui.testing; import android.provider.DocumentsContract.Root; + import com.android.documentsui.InspectorProvider; import com.android.documentsui.base.Providers; import com.android.documentsui.base.RootInfo; @@ -45,6 +46,7 @@ public class TestProvidersAccess implements ProvidersAccess { }}; DOWNLOADS.authority = Providers.AUTHORITY_DOWNLOADS; DOWNLOADS.rootId = Providers.ROOT_ID_DOWNLOADS; + DOWNLOADS.title = "Downloads"; DOWNLOADS.flags = Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_CREATE | Root.FLAG_SUPPORTS_IS_CHILD @@ -53,6 +55,7 @@ public class TestProvidersAccess implements ProvidersAccess { HOME = new RootInfo(); HOME.authority = Providers.AUTHORITY_STORAGE; HOME.rootId = Providers.ROOT_ID_HOME; + HOME.title = "Home"; HOME.flags = Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_CREATE | Root.FLAG_SUPPORTS_IS_CHILD @@ -61,10 +64,12 @@ public class TestProvidersAccess implements ProvidersAccess { HAMMY = new RootInfo(); HAMMY.authority = "yummies"; HAMMY.rootId = "hamsandwich"; + HAMMY.title = "Ham Sandwich"; PICKLES = new RootInfo(); PICKLES.authority = "yummies"; PICKLES.rootId = "pickles"; + PICKLES.title = "Pickles"; RECENTS = new RootInfo() {{ // Special root for recents @@ -72,10 +77,12 @@ public class TestProvidersAccess implements ProvidersAccess { flags = Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_IS_CHILD; availableBytes = -1; }}; + RECENTS.title = "Recents"; INSPECTOR = new RootInfo(); INSPECTOR.authority = InspectorProvider.AUTHORITY; INSPECTOR.rootId = InspectorProvider.ROOT_ID; + INSPECTOR.title = "Inspector"; INSPECTOR.flags = Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_CREATE; } diff --git a/tests/common/com/android/documentsui/testing/TestResources.java b/tests/common/com/android/documentsui/testing/TestResources.java index 907d9236a..0bd21de27 100644 --- a/tests/common/com/android/documentsui/testing/TestResources.java +++ b/tests/common/com/android/documentsui/testing/TestResources.java @@ -85,10 +85,12 @@ public abstract class TestResources extends Resources { return strings.get(id); } + @Override @NonNull public final String getString( @StringRes int id, Object... formatArgs) throws NotFoundException { - return getString(id); + final String raw = getString(id); + return String.format(raw, formatArgs); } @Override @@ -106,6 +108,7 @@ public abstract class TestResources extends Resources { return null; } + @Override public final CharSequence getText(@StringRes int resId) { return getString(resId); } diff --git a/tests/functional/com/android/documentsui/FilesActivityUiTest.java b/tests/functional/com/android/documentsui/FilesActivityUiTest.java index 87f3bac21..90b6dd31a 100644 --- a/tests/functional/com/android/documentsui/FilesActivityUiTest.java +++ b/tests/functional/com/android/documentsui/FilesActivityUiTest.java @@ -118,7 +118,7 @@ public class FilesActivityUiTest extends ActivityTest<FilesActivity> { Instrumentation.ActivityMonitor monitor = new Instrumentation.ActivityMonitor( InspectorActivity.class.getName(), null, false); bots.directory.selectDocument("file0.log"); - bots.main.clickActionItem("Properties"); + bots.main.clickActionItem("Get info"); monitor.waitForActivityWithTimeout(TIMEOUT); } diff --git a/tests/functional/com/android/documentsui/InspectorUiTest.java b/tests/functional/com/android/documentsui/InspectorUiTest.java index 724ba1d52..a228de2da 100644 --- a/tests/functional/com/android/documentsui/InspectorUiTest.java +++ b/tests/functional/com/android/documentsui/InspectorUiTest.java @@ -18,10 +18,12 @@ package com.android.documentsui; import android.content.Intent; import android.net.Uri; import android.provider.DocumentsContract; +import android.support.test.filters.LargeTest; import com.android.documentsui.bots.UiBot; import com.android.documentsui.inspector.InspectorActivity; +@LargeTest public class InspectorUiTest extends ActivityTest<InspectorActivity> { private static final String TEST_DOC_NAME = "test.txt"; @@ -56,11 +58,17 @@ public class InspectorUiTest extends ActivityTest<InspectorActivity> { bots.inspector.assertTitle("test.txt"); } - public void testDisplayFileType() throws Exception { + public void testFolderDetails() throws Exception { if (!features.isInspectorEnabled()) { return; } - bots.inspector.assertRowPresent(getActivity().getString(R.string.sort_dimension_file_type), - "vnd.android.document/directory", getActivity()); + bots.inspector.assertRowEquals( + getActivity().getString(R.string.sort_dimension_file_type), + "Folder", + getActivity()); + bots.inspector.assertRowEquals( + getActivity().getString(R.string.directory_items), + "4", + getActivity()); } } diff --git a/tests/res/raw/images.zip b/tests/res/raw/images.zip Binary files differnew file mode 100644 index 000000000..b3013e9ec --- /dev/null +++ b/tests/res/raw/images.zip diff --git a/tests/unit/com/android/documentsui/AbstractActionHandlerTest.java b/tests/unit/com/android/documentsui/AbstractActionHandlerTest.java index e094078f3..807c3fafd 100644 --- a/tests/unit/com/android/documentsui/AbstractActionHandlerTest.java +++ b/tests/unit/com/android/documentsui/AbstractActionHandlerTest.java @@ -17,7 +17,7 @@ package com.android.documentsui; import static junit.framework.Assert.assertTrue; - +import static junit.framework.Assert.fail; import static org.junit.Assert.assertEquals; import android.content.Intent; @@ -106,7 +106,8 @@ public class AbstractActionHandlerTest { } @Test - public void testOpensContainerDocuments_jumpToNewLocation() throws Exception { + public void testOpensContainerDocuments_OpenFolderInSearch_JumpsToNewLocation() + throws Exception { if (!mEnv.features.isLaunchToDocumentEnabled()) { return; } @@ -114,6 +115,7 @@ public class AbstractActionHandlerTest { mEnv.populateStack(); mEnv.searchViewManager.isSearching = true; + mEnv.docs.nextIsDocumentsUri = true; mEnv.docs.nextPath = new Path( TestProvidersAccess.HOME.rootId, Arrays.asList(TestEnv.FOLDER_1.documentId, TestEnv.FOLDER_2.documentId)); @@ -124,15 +126,18 @@ public class AbstractActionHandlerTest { mEnv.beforeAsserts(); assertEquals(mEnv.docs.nextPath.getPath().size(), mEnv.state.stack.size()); - assertEquals(TestEnv.FOLDER_2, mEnv.state.stack.peek()); + assertEquals(TestEnv.FOLDER_2, mEnv.state.stack.pop()); + assertEquals(TestEnv.FOLDER_1, mEnv.state.stack.pop()); } @Test - public void testOpensContainerDocuments_pushToRootDoc_NoFindPathSupport() throws Exception { + public void testOpensContainerDocuments_ClickFolderInSearch_PushToRootDoc_NoFindPathSupport() + throws Exception { mEnv.populateStack(); mEnv.searchViewManager.isSearching = true; + mEnv.docs.nextIsDocumentsUri = true; mEnv.docs.nextDocuments = Arrays.asList(TestEnv.FOLDER_1, TestEnv.FOLDER_2); mHandler.openContainerDocument(TestEnv.FOLDER_2); @@ -145,15 +150,42 @@ public class AbstractActionHandlerTest { } @Test - public void testOpensDocument_AssertionErrorIfAlreadyInStack() throws Exception { + public void testOpensContainerDocuments_ClickArchiveInSearch_opensArchiveInArchiveProvider() + throws Exception { + if (!mEnv.features.isLaunchToDocumentEnabled()) { + return; + } + + mEnv.populateStack(); + + mEnv.searchViewManager.isSearching = true; + mEnv.docs.nextIsDocumentsUri = true; + mEnv.docs.nextPath = new Path( + TestProvidersAccess.HOME.rootId, + Arrays.asList(TestEnv.FOLDER_1.documentId, TestEnv.FOLDER_2.documentId, + TestEnv.FILE_ARCHIVE.documentId)); + mEnv.docs.nextDocuments = Arrays.asList( + TestEnv.FOLDER_1, TestEnv.FOLDER_2, TestEnv.FILE_ARCHIVE); + mEnv.docs.nextDocument = TestEnv.FILE_IN_ARCHIVE; + + mHandler.openContainerDocument(TestEnv.FILE_ARCHIVE); + + mEnv.beforeAsserts(); + + assertEquals(mEnv.docs.nextPath.getPath().size(), mEnv.state.stack.size()); + assertEquals(TestEnv.FILE_IN_ARCHIVE, mEnv.state.stack.pop()); + assertEquals(TestEnv.FOLDER_2, mEnv.state.stack.pop()); + assertEquals(TestEnv.FOLDER_1, mEnv.state.stack.pop()); + } + + @Test + public void testOpensDocument_ExceptionIfAlreadyInStack() throws Exception { mEnv.populateStack(); - boolean threw = false; try { mEnv.state.stack.push(TestEnv.FOLDER_0); - } catch (AssertionError e) { - threw = true; + fail("Should have thrown IllegalArgumentException."); + } catch (IllegalArgumentException expected) { } - assertTrue(threw); } @Test diff --git a/tests/unit/com/android/documentsui/archives/ArchivesProviderTest.java b/tests/unit/com/android/documentsui/archives/ArchivesProviderTest.java index 7b2504ab1..cc40e56e8 100644 --- a/tests/unit/com/android/documentsui/archives/ArchivesProviderTest.java +++ b/tests/unit/com/android/documentsui/archives/ArchivesProviderTest.java @@ -28,11 +28,11 @@ import android.content.ContentResolver; import android.content.Context; import android.database.ContentObserver; import android.database.Cursor; +import android.media.ExifInterface; import android.net.Uri; import android.os.Bundle; import android.os.ParcelFileDescriptor; import android.os.RemoteException; -import android.os.SystemClock; import android.provider.DocumentsContract; import android.support.test.InstrumentationRegistry; import android.support.test.filters.MediumTest; @@ -264,4 +264,35 @@ public class ArchivesProviderTest { client.release(); } + + @Test + public void testGetDocumentMetadata() throws InterruptedException, RemoteException { + final Uri sourceUri = DocumentsContract.buildDocumentUri( + ResourcesProvider.AUTHORITY, "images.zip"); + final Uri archiveUri = ArchivesProvider.buildUriForArchive(sourceUri, + ParcelFileDescriptor.MODE_READ_ONLY); + + final ContentResolver resolver = mContext.getContentResolver(); + final ContentProviderClient client = + resolver.acquireUnstableContentProviderClient(archiveUri); + + ArchivesProvider.acquireArchive(client, archiveUri); + + Uri archivedImageUri = Uri.parse( + "content://com.android.documentsui.archives/document/content%3A%2F%2F" + + "com.android.documentsui.archives.resourcesprovider%2F" + + "document%2Fimages.zip%23268435456%23%2Ffreddy.jpg"); + + Bundle metadata = DocumentsContract.getDocumentMetadata(client, archivedImageUri); + assertNotNull(metadata); + Bundle exif = metadata.getBundle(DocumentsContract.METADATA_EXIF); + assertNotNull(exif); + + assertEquals(3036, exif.getInt(ExifInterface.TAG_IMAGE_WIDTH)); + assertEquals(4048, exif.getInt(ExifInterface.TAG_IMAGE_LENGTH)); + assertEquals("Pixel", exif.getString(ExifInterface.TAG_MODEL)); + + ArchivesProvider.releaseArchive(client, archiveUri); + client.release(); + } } diff --git a/tests/unit/com/android/documentsui/archives/ResourcesProvider.java b/tests/unit/com/android/documentsui/archives/ResourcesProvider.java index 988b4957e..b9ddb92b1 100644 --- a/tests/unit/com/android/documentsui/archives/ResourcesProvider.java +++ b/tests/unit/com/android/documentsui/archives/ResourcesProvider.java @@ -56,9 +56,10 @@ public class ResourcesProvider extends DocumentsProvider { private static final Map<String, Integer> RESOURCES = new HashMap<>(); static { RESOURCES.put("archive.zip", R.raw.archive); + RESOURCES.put("broken.zip", R.raw.broken); RESOURCES.put("empty_dirs.zip", R.raw.empty_dirs); + RESOURCES.put("images.zip", R.raw.images); RESOURCES.put("no_dirs.zip", R.raw.no_dirs); - RESOURCES.put("broken.zip", R.raw.broken); } private ExecutorService mExecutor = null; diff --git a/tests/unit/com/android/documentsui/dirlist/DragStartListenerTest.java b/tests/unit/com/android/documentsui/dirlist/DragStartListenerTest.java index 635e249d5..6cfdd9567 100644 --- a/tests/unit/com/android/documentsui/dirlist/DragStartListenerTest.java +++ b/tests/unit/com/android/documentsui/dirlist/DragStartListenerTest.java @@ -18,7 +18,7 @@ package com.android.documentsui.dirlist; import static junit.framework.Assert.assertFalse; import static junit.framework.Assert.assertTrue; -import static junit.framework.TestCase.fail; +import static junit.framework.Assert.fail; import android.provider.DocumentsContract; import android.support.test.filters.SmallTest; @@ -26,18 +26,17 @@ import android.support.test.runner.AndroidJUnit4; import android.view.MotionEvent; import android.view.View; -import com.android.documentsui.MenuManager; import com.android.documentsui.MenuManager.SelectionDetails; import com.android.documentsui.base.DocumentInfo; +import com.android.documentsui.base.Events.InputEvent; import com.android.documentsui.base.Providers; import com.android.documentsui.base.State; import com.android.documentsui.dirlist.DragStartListener.ActiveListener; -import com.android.documentsui.base.Events.InputEvent; -import com.android.documentsui.selection.SelectionManager; import com.android.documentsui.selection.Selection; +import com.android.documentsui.selection.SelectionManager; +import com.android.documentsui.testing.SelectionManagers; import com.android.documentsui.testing.TestDragAndDropManager; import com.android.documentsui.testing.TestEvent; -import com.android.documentsui.testing.SelectionManagers; import com.android.documentsui.testing.TestSelectionDetails; import com.android.documentsui.testing.Views; @@ -86,7 +85,7 @@ public class DragStartListenerTest { }, // docInfo Converter (Selection selection) -> { - return new ArrayList<DocumentInfo>(); + return new ArrayList<>(); }, mManager); @@ -123,7 +122,8 @@ public class DragStartListenerTest { @Test public void testThrows_OnNonPrimaryMove() { - assertThrows(mEvent.pressButton(MotionEvent.BUTTON_PRIMARY).build()); + mEvent.releaseButton(MotionEvent.BUTTON_PRIMARY); + assertThrows(mEvent.pressButton(MotionEvent.BUTTON_SECONDARY).build()); } @Test @@ -187,8 +187,8 @@ public class DragStartListenerTest { private void assertThrows(InputEvent e) { try { - assertFalse(mListener.onMouseDragEvent(e)); + mListener.onMouseDragEvent(e); fail(); - } catch (AssertionError expected) {} + } catch (IllegalArgumentException expected) {} } } diff --git a/tests/unit/com/android/documentsui/files/ActionHandlerTest.java b/tests/unit/com/android/documentsui/files/ActionHandlerTest.java index 9b35ee1e8..89bc2ee01 100644 --- a/tests/unit/com/android/documentsui/files/ActionHandlerTest.java +++ b/tests/unit/com/android/documentsui/files/ActionHandlerTest.java @@ -17,9 +17,12 @@ package com.android.documentsui.files; import static com.android.documentsui.testing.IntentAsserts.assertHasAction; +import static com.android.documentsui.testing.IntentAsserts.assertHasData; +import static com.android.documentsui.testing.IntentAsserts.assertHasExtra; import static com.android.documentsui.testing.IntentAsserts.assertHasExtraIntent; import static com.android.documentsui.testing.IntentAsserts.assertHasExtraList; import static com.android.documentsui.testing.IntentAsserts.assertHasExtraUri; +import static com.android.documentsui.testing.IntentAsserts.assertTargetsComponent; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; @@ -35,8 +38,8 @@ import android.net.Uri; import android.os.Parcelable; import android.provider.DocumentsContract; import android.provider.DocumentsContract.Path; -import android.support.test.filters.MediumTest; import android.support.test.InstrumentationRegistry; +import android.support.test.filters.MediumTest; import android.support.test.runner.AndroidJUnit4; import android.util.Pair; import android.view.DragEvent; @@ -49,6 +52,7 @@ import com.android.documentsui.base.DocumentInfo; import com.android.documentsui.base.DocumentStack; import com.android.documentsui.base.RootInfo; import com.android.documentsui.base.Shared; +import com.android.documentsui.inspector.InspectorActivity; import com.android.documentsui.testing.ClipDatas; import com.android.documentsui.testing.DocumentStackAsserts; import com.android.documentsui.testing.Roots; @@ -56,8 +60,10 @@ import com.android.documentsui.testing.TestActivityConfig; import com.android.documentsui.testing.TestDocumentClipper; import com.android.documentsui.testing.TestDragAndDropManager; import com.android.documentsui.testing.TestEnv; +import com.android.documentsui.testing.TestFeatures; import com.android.documentsui.testing.TestProvidersAccess; import com.android.documentsui.ui.TestDialogController; +import com.android.internal.util.Preconditions; import org.junit.Before; import org.junit.Test; @@ -76,11 +82,13 @@ public class ActionHandlerTest { private ActionHandler<TestActivity> mHandler; private TestDocumentClipper mClipper; private TestDragAndDropManager mDragAndDropManager; + private TestFeatures mFeatures; private boolean refreshAnswer = false; @Before public void setUp() { - mEnv = TestEnv.create(); + mFeatures = new TestFeatures(); + mEnv = TestEnv.create(mFeatures); mActivity = TestActivity.create(mEnv); mActionModeAddons = new TestActionModeAddons(); mDialogs = new TestDialogController(); @@ -534,6 +542,78 @@ public class ActionHandlerTest { mActivity.refreshCurrentRootAndDirectory.assertNotCalled(); } + @Test + public void testShowInspector() throws Exception { + mHandler.showInspector(TestEnv.FILE_GIF); + + mActivity.startActivity.assertCalled(); + Intent intent = mActivity.startActivity.getLastValue(); + assertTargetsComponent(intent, InspectorActivity.class); + assertHasData(intent, TestEnv.FILE_GIF.derivedUri); + + // should only send this under especial circumstances. See test below. + assertFalse(intent.getExtras().containsKey(Intent.EXTRA_TITLE)); + } + + @Test + public void testShowInspector_DebugDisabled() throws Exception { + mFeatures.debugSupport = false; + + mHandler.showInspector(TestEnv.FILE_GIF); + Intent intent = mActivity.startActivity.getLastValue(); + + assertHasExtra(intent, Shared.EXTRA_SHOW_DEBUG); + assertFalse(intent.getExtras().getBoolean(Shared.EXTRA_SHOW_DEBUG)); + } + + @Test + public void testShowInspector_DebugEnabled() throws Exception { + mFeatures.debugSupport = true; + + mHandler.showInspector(TestEnv.FILE_GIF); + Intent intent = mActivity.startActivity.getLastValue(); + + assertHasExtra(intent, Shared.EXTRA_SHOW_DEBUG); + assertTrue(intent.getExtras().getBoolean(Shared.EXTRA_SHOW_DEBUG)); + } + + @Test + public void testShowInspector_OverridesRootDocumentName() throws Exception { + mActivity.currentRoot = TestProvidersAccess.PICKLES; + mEnv.populateStack(); + + // Verify test setup is correct, but not an assert related to the logic of our test. + Preconditions.checkState(mEnv.state.stack.size() == 1); + Preconditions.checkNotNull(mEnv.state.stack.peek()); + + DocumentInfo rootDoc = mEnv.state.stack.peek(); + rootDoc.displayName = "poodles"; + + mHandler.showInspector(rootDoc); + Intent intent = mActivity.startActivity.getLastValue(); + assertEquals( + TestProvidersAccess.PICKLES.title, + intent.getExtras().getString(Intent.EXTRA_TITLE)); + } + + @Test + public void testShowInspector_OverridesRootDocumentNameX() throws Exception { + mActivity.currentRoot = TestProvidersAccess.PICKLES; + mEnv.populateStack(); + mEnv.state.stack.push(TestEnv.FOLDER_2); + + // Verify test setup is correct, but not an assert related to the logic of our test. + Preconditions.checkState(mEnv.state.stack.size() == 2); + Preconditions.checkNotNull(mEnv.state.stack.peek()); + + DocumentInfo rootDoc = mEnv.state.stack.peek(); + rootDoc.displayName = "poodles"; + + mHandler.showInspector(rootDoc); + Intent intent = mActivity.startActivity.getLastValue(); + assertFalse(intent.getExtras().containsKey(Intent.EXTRA_TITLE)); + } + private void assertRootPicked(Uri expectedUri) throws Exception { mEnv.beforeAsserts(); diff --git a/tests/unit/com/android/documentsui/files/MenuManagerTest.java b/tests/unit/com/android/documentsui/files/MenuManagerTest.java index 342021085..6180993e2 100644 --- a/tests/unit/com/android/documentsui/files/MenuManagerTest.java +++ b/tests/unit/com/android/documentsui/files/MenuManagerTest.java @@ -66,8 +66,9 @@ public final class MenuManagerTest { private TestMenuItem dirRename; private TestMenuItem dirDelete; private TestMenuItem dirViewInOwner; - private TestMenuItem dirOpenInNewWindow; private TestMenuItem dirPasteIntoFolder; + private TestMenuItem dirInspect; + private TestMenuItem dirOpenInNewWindow; /* Root List Context Menu items */ private TestMenuItem rootEjectRoot; @@ -99,6 +100,7 @@ public final class MenuManagerTest { private TestMenuItem optionSelectAll; private TestMenuItem optionAdvanced; private TestMenuItem optionSettings; + private TestMenuItem optionInspector; private TestFeatures features; private TestSelectionDetails selectionDetails; @@ -115,6 +117,8 @@ public final class MenuManagerTest { @Before public void setUp() { testMenu = TestMenu.create(); + + // The context menu on anything in DirectoryList (including no selection). dirShare = testMenu.findItem(R.id.dir_menu_share); dirOpen = testMenu.findItem(R.id.dir_menu_open); dirOpenWith = testMenu.findItem(R.id.dir_menu_open_with); @@ -126,14 +130,16 @@ public final class MenuManagerTest { dirRename = testMenu.findItem(R.id.dir_menu_rename); dirDelete = testMenu.findItem(R.id.dir_menu_delete); dirViewInOwner = testMenu.findItem(R.id.dir_menu_view_in_owner); - dirOpenInNewWindow = testMenu.findItem(R.id.dir_menu_open_in_new_window); dirPasteIntoFolder = testMenu.findItem(R.id.dir_menu_paste_into_folder); + dirInspect = testMenu.findItem(R.id.dir_menu_inspect); + dirOpenInNewWindow = testMenu.findItem(R.id.dir_menu_open_in_new_window); rootEjectRoot = testMenu.findItem(R.id.root_menu_eject_root); rootOpenInNewWindow = testMenu.findItem(R.id.root_menu_open_in_new_window); rootPasteIntoFolder = testMenu.findItem(R.id.root_menu_paste_into_folder); rootSettings = testMenu.findItem(R.id.root_menu_settings); + // Menu actions (including overflow) when action mode *is* active. actionModeOpen = testMenu.findItem(R.id.action_menu_open); actionModeOpenWith = testMenu.findItem(R.id.action_menu_open_with); actionModeShare = testMenu.findItem(R.id.action_menu_share); @@ -144,9 +150,10 @@ public final class MenuManagerTest { actionModeMoveTo = testMenu.findItem(R.id.action_menu_move_to); actionModeCompress = testMenu.findItem(R.id.action_menu_compress); actionModeRename = testMenu.findItem(R.id.action_menu_rename); - actionModeInspector = testMenu.findItem(R.id.action_menu_inspector); + actionModeInspector = testMenu.findItem(R.id.action_menu_inspect); actionModeViewInOwner = testMenu.findItem(R.id.action_menu_view_in_owner); + // Menu actions (including overflow) when action mode is not active. optionSearch = testMenu.findItem(R.id.option_menu_search); optionDebug = testMenu.findItem(R.id.option_menu_debug); optionGrid = testMenu.findItem(R.id.option_menu_grid); @@ -156,6 +163,7 @@ public final class MenuManagerTest { optionSelectAll = testMenu.findItem(R.id.option_menu_select_all); optionAdvanced = testMenu.findItem(R.id.option_menu_advanced); optionSettings = testMenu.findItem(R.id.option_menu_settings); + optionInspector = testMenu.findItem(R.id.option_menu_inspect); features = new TestFeatures(); @@ -271,6 +279,7 @@ public final class MenuManagerTest { @Test public void testActionsMenu_canViewInOwner() { + activity.resources.strings.put(R.string.menu_view_in_owner, "Insert name here! %s"); selectionDetails.canViewInOwner = true; mgr.updateActionMenu(testMenu, selectionDetails); @@ -351,6 +360,26 @@ public final class MenuManagerTest { } @Test + public void testActionMenu_InspectorEnabledForSingleSelection() { + features.inspector = true; + selectionDetails.size = 1; + mgr.updateActionMenu(testMenu, selectionDetails); + + actionModeInspector.assertVisible(); + actionModeInspector.assertEnabled(); + } + + @Test + public void testActionMenu_InspectorDisabledForMultiSelection() { + features.inspector = true; + selectionDetails.size = 2; + mgr.updateActionMenu(testMenu, selectionDetails); + + actionModeInspector.assertVisible(); + actionModeInspector.assertDisabled(); + } + + @Test public void testOptionMenu() { mgr.updateOptionMenu(testMenu); @@ -388,6 +417,27 @@ public final class MenuManagerTest { } @Test + public void testOptionMenu_InspectorAvailable() { + features.inspector = true; + mgr.updateOptionMenu(testMenu); + optionInspector.assertVisible(); + optionInspector.assertEnabled(); + } + + @Test + public void testOptionMenu_InspectorDisabledInRecentsFolder() { + features.inspector = true; + + // synthesize a fake recents root. Not setting an authority or id == recents. + RootInfo recents = new RootInfo(); + assert recents.isRecents(); + state.stack.changeRoot(recents); + mgr.updateOptionMenu(testMenu); + optionInspector.assertVisible(); + optionInspector.assertDisabled(); + } + + @Test public void testInflateContextMenu_Files() { TestMenuInflater inflater = new TestMenuInflater(); @@ -560,6 +610,13 @@ public final class MenuManagerTest { } @Test + public void testContextMenu_CanInspectContainer() { + mgr.updateContextMenuForContainer(testMenu); + dirInspect.assertVisible(); + dirInspect.assertEnabled(); + } + + @Test public void testContextMenu_OnWritableDirectory_NothingToPaste() { selectionDetails.canPasteInto = true; selectionDetails.size = 1; @@ -624,6 +681,14 @@ public final class MenuManagerTest { } @Test + public void testContextMenu_CanInspectSingleSelection() { + selectionDetails.size = 1; + mgr.updateContextMenuForFiles(testMenu, selectionDetails); + dirInspect.assertVisible(); + dirInspect.assertEnabled(); + } + + @Test public void testRootContextMenu() { testRootInfo.flags = Root.FLAG_SUPPORTS_CREATE; diff --git a/tests/unit/com/android/documentsui/inspector/DocumentLoaderTest.java b/tests/unit/com/android/documentsui/inspector/DocumentLoaderTest.java index 7c9bb028a..cd487b654 100644 --- a/tests/unit/com/android/documentsui/inspector/DocumentLoaderTest.java +++ b/tests/unit/com/android/documentsui/inspector/DocumentLoaderTest.java @@ -25,7 +25,7 @@ import android.support.test.InstrumentationRegistry; import com.android.documentsui.InspectorProvider; import android.test.suitebuilder.annotation.MediumTest; import com.android.documentsui.base.DocumentInfo; -import com.android.documentsui.inspector.InspectorController.Loader; +import com.android.documentsui.inspector.InspectorController.DataSupplier; import com.android.documentsui.testing.TestLoaderManager; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; @@ -46,7 +46,7 @@ public class DocumentLoaderTest extends TestCase { private Context mContext; private TestLoaderManager mLoaderManager; - private Loader mLoader; + private DataSupplier mLoader; private ContentResolver mResolver; @Before @@ -55,7 +55,7 @@ public class DocumentLoaderTest extends TestCase { mContext = InstrumentationRegistry.getTargetContext(); mResolver = mContext.getContentResolver(); mLoaderManager = new TestLoaderManager(); - mLoader = new DocumentLoader(mContext, mLoaderManager); + mLoader = new RuntimeDataSupplier(mContext, mLoaderManager); if (Looper.myLooper() == null) { Looper.prepare(); diff --git a/tests/unit/com/android/documentsui/inspector/HeaderTextSelectorTest.java b/tests/unit/com/android/documentsui/inspector/HeaderTextSelectorTest.java new file mode 100644 index 000000000..58b533bb7 --- /dev/null +++ b/tests/unit/com/android/documentsui/inspector/HeaderTextSelectorTest.java @@ -0,0 +1,136 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.inspector; + +import static junit.framework.Assert.assertEquals; +import static junit.framework.Assert.assertTrue; + +import android.content.Context; +import android.support.test.InstrumentationRegistry; +import android.support.test.runner.AndroidJUnit4; + +import android.test.suitebuilder.annotation.SmallTest; +import android.text.Spannable; +import android.text.SpannableString; +import android.widget.TextView; +import com.android.documentsui.inspector.HeaderTextSelector.Selector; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; + +@RunWith(AndroidJUnit4.class) +@SmallTest +public class HeaderTextSelectorTest { + + private Context mContext; + private TestTextView mTestTextView; + private TestSelector mTestSelector; + private HeaderTextSelector mSelector; + + @Before + public void setUp() throws Exception { + mContext = InstrumentationRegistry.getTargetContext(); + mTestTextView = new TestTextView(mContext); + mTestSelector = new TestSelector(); + mSelector = new HeaderTextSelector(mTestTextView, mTestSelector); + } + + @Test + public void testSimpleFileName() throws Exception { + CharSequence fileName = "filename"; + String extension = ".txt"; + String testSequence = fileName + extension; + + mTestTextView.setText(testSequence); + mSelector.onCreateActionMode(null, null); + mTestSelector.assertCalled(); + + CharSequence selectedSequence = + testSequence.subSequence(mTestSelector.mStart, mTestSelector.mStop); + assertEquals(selectedSequence, fileName); + } + + + @Test + public void testLotsOfPeriodsInFileName() throws Exception { + CharSequence fileName = "filename"; + String extension = ".jpg.zip.pdf.txt"; + String testSequence = fileName + extension; + + mTestTextView.setText(testSequence); + mSelector.onCreateActionMode(null, null); + mTestSelector.assertCalled(); + + CharSequence selectedSequence = + testSequence.subSequence(mTestSelector.mStart, mTestSelector.mStop); + assertEquals(selectedSequence, fileName); + } + + @Test + public void testNoPeriodsInFileName() throws Exception { + String testSequence = "filename"; + + mTestTextView.setText(testSequence); + mSelector.onCreateActionMode(null, null); + mTestSelector.assertCalled(); + + CharSequence selectedSequence = + testSequence.subSequence(mTestSelector.mStart, mTestSelector.mStop); + assertEquals(selectedSequence, testSequence); + } + + private static class TestTextView extends TextView { + + public TestTextView(Context context) { + super(context); + } + + private String textViewString; + + public void setText(String text) { + textViewString = text; + } + + @Override + public CharSequence getText() { + return new SpannableString(textViewString); + } + } + + private static class TestSelector implements Selector { + + private boolean mCalled; + private int mStart; + private int mStop; + + public TestSelector() { + mCalled = false; + mStart = -1; + mStop = -1; + } + + @Override + public void select(Spannable text, int start, int stop) { + mCalled = true; + mStart = start; + mStop = stop; + } + + public void assertCalled() { + assertTrue(mCalled); + } + } +}
\ No newline at end of file diff --git a/tests/unit/com/android/documentsui/inspector/InspectorControllerTest.java b/tests/unit/com/android/documentsui/inspector/InspectorControllerTest.java index 68520ef92..8f70477c6 100644 --- a/tests/unit/com/android/documentsui/inspector/InspectorControllerTest.java +++ b/tests/unit/com/android/documentsui/inspector/InspectorControllerTest.java @@ -15,102 +15,116 @@ */ package com.android.documentsui.inspector; -import static android.provider.DocumentsContract.Document.FLAG_SUPPORTS_SETTINGS; +import static junit.framework.Assert.fail; import static junit.framework.Assert.assertEquals; import static junit.framework.Assert.assertFalse; import static junit.framework.Assert.assertNotNull; import static junit.framework.Assert.assertTrue; import android.app.Activity; -import android.content.Context; import android.content.Intent; import android.graphics.drawable.Drawable; import android.net.Uri; +import android.os.Bundle; import android.os.Looper; import android.provider.DocumentsContract; import android.provider.DocumentsContract.Document; import android.support.annotation.Nullable; -import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import android.test.suitebuilder.annotation.SmallTest; import android.view.View.OnClickListener; + import com.android.documentsui.InspectorProvider; -import com.android.documentsui.ProviderExecutor; +import com.android.documentsui.R; +import com.android.documentsui.TestProviderActivity; import com.android.documentsui.base.DocumentInfo; +import com.android.documentsui.base.Shared; +import com.android.documentsui.inspector.InspectorController.ActionDisplay; +import com.android.documentsui.inspector.InspectorController.DataSupplier; +import com.android.documentsui.inspector.InspectorController.DebugDisplay; import com.android.documentsui.inspector.InspectorController.DetailsDisplay; -import com.android.documentsui.inspector.InspectorController.Loader; +import com.android.documentsui.inspector.InspectorController.HeaderDisplay; +import com.android.documentsui.inspector.InspectorController.MediaDisplay; import com.android.documentsui.inspector.actions.Action; -import com.android.documentsui.inspector.InspectorController.ActionDisplay; import com.android.documentsui.testing.TestConsumer; import com.android.documentsui.testing.TestEnv; import com.android.documentsui.testing.TestLoaderManager; import com.android.documentsui.testing.TestPackageManager; import com.android.documentsui.testing.TestPackageManager.TestResolveInfo; import com.android.documentsui.testing.TestProvidersAccess; -import java.util.ArrayList; + import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; +import java.util.ArrayList; +import java.util.function.Consumer; + @RunWith(AndroidJUnit4.class) @SmallTest public class InspectorControllerTest { private static final String OPEN_IN_PROVIDER_DOC = "OpenInProviderTest"; - private TestActivity mContext; + private TestActivity mActivity; private TestLoaderManager mLoaderManager; - private Loader mLoader; + private TestDataSupplier mDataSupplier; private TestPackageManager mPm; private InspectorController mController; private TestEnv mEnv; - private TestConsumer<DocumentInfo> mHeaderTestDouble; + private TestHeader mHeaderTestDouble; private TestDetails mDetailsTestDouble; + private TestMedia mMedia; private TestAction mShowInProvider; private TestAction mDefaultsTestDouble; - private TestConsumer<DocumentInfo> mDebugTestDouble; - private Boolean mShowSnackbarsCalled; + private TestDebug mDebugTestDouble; + private TestRunnable mErrCallback; + private Bundle mTestArgs; @Before public void setUp() throws Exception { - //Needed to create a non null loader for the InspectorController. - Context loader = InstrumentationRegistry.getTargetContext(); mEnv = TestEnv.create(); mPm = TestPackageManager.create(); mLoaderManager = new TestLoaderManager(); - mLoader = new DocumentLoader(loader, mLoaderManager); - mHeaderTestDouble = new TestConsumer<>(); + mDataSupplier = new TestDataSupplier(); + mHeaderTestDouble = new TestHeader(); mDetailsTestDouble = new TestDetails(); + mMedia = new TestMedia(); mShowInProvider = new TestAction(); mDefaultsTestDouble = new TestAction(); - mDebugTestDouble = new TestConsumer<>(); + mDebugTestDouble = new TestDebug(); + mErrCallback = new TestRunnable(); + mTestArgs = new Bundle(); - mShowSnackbarsCalled = false; + // Add some fake data. + mDataSupplier.mDoc = TestEnv.FILE_JPG; + mDataSupplier.mMetadata = new Bundle(); + TestMetadata.populateExifData(mDataSupplier.mMetadata); - //Crashes if not called before "new TestActivity". + // Crashes if not called before "new TestActivity". if (Looper.myLooper() == null) { Looper.prepare(); } - mContext = new TestActivity(); + mActivity = new TestActivity(); + recreateController(); + } + private void recreateController() { mController = new InspectorController( - mContext, - mLoader, + mActivity, + mDataSupplier, mPm, new TestProvidersAccess(), - false, mHeaderTestDouble, mDetailsTestDouble, + mMedia, mShowInProvider, mDefaultsTestDouble, mDebugTestDouble, - ProviderExecutor::forAuthority, - () -> { - mShowSnackbarsCalled = true; - } - ); + mTestArgs, + mErrCallback); } /** @@ -118,8 +132,9 @@ public class InspectorControllerTest { */ @Test public void testHideDebugByDefault() throws Exception { - mController.updateView(new DocumentInfo()); - mDebugTestDouble.assertNotCalled(); + mController.loadInfo(TestEnv.FILE_JPG.derivedUri); // actual URI doesn't matter :) + mDebugTestDouble.assertVisible(false); + mDebugTestDouble.assertEmpty(); } /** @@ -127,25 +142,22 @@ public class InspectorControllerTest { */ @Test public void testShowDebugUpdatesView() throws Exception { - mController = new InspectorController( - mContext, - mLoader, - mPm, - new TestProvidersAccess(), - true, - mHeaderTestDouble, - mDetailsTestDouble, - mShowInProvider, - mDefaultsTestDouble, - mDebugTestDouble, - ProviderExecutor::forAuthority, - () -> { - mShowSnackbarsCalled = true; - } - ); - - mController.updateView(new DocumentInfo()); - mDebugTestDouble.assertCalled(); + mTestArgs.putBoolean(Shared.EXTRA_SHOW_DEBUG, true); + recreateController(); + mController.loadInfo(TestEnv.FILE_JPG.derivedUri); // actual URI doesn't matter :) + mDebugTestDouble.assertVisible(true); + mDebugTestDouble.assertNotEmpty(); + } + + /** + * Tests Debug view should be updated when visible. + */ + @Test + public void testExtraTitleOverridesDisplayName() throws Exception { + mTestArgs.putString(Intent.EXTRA_TITLE, "hammy!"); + recreateController(); + mController.loadInfo(TestEnv.FILE_JPG.derivedUri); // actual URI doesn't matter :) + mHeaderTestDouble.assertTitle("hammy!"); } /** @@ -165,9 +177,9 @@ public class InspectorControllerTest { OPEN_IN_PROVIDER_DOC); mController.showInProvider(uri); - assertNotNull(mContext.started); - assertEquals("com.android.documentsui", mContext.started.getPackage()); - assertEquals(uri, mContext.started.getData()); + assertNotNull(mActivity.started); + assertEquals("com.android.documentsui", mActivity.started.getPackage()); + assertEquals(uri, mActivity.started.getData()); } /** * Test that valid input will update the view properly. The test uses a test double for header @@ -177,7 +189,7 @@ public class InspectorControllerTest { */ @Test public void testUpdateViewWithValidInput() throws Exception { - mController.updateView(new DocumentInfo()); + mController.loadInfo(TestEnv.FILE_JPG.derivedUri); // actual URI doesn't matter :) mHeaderTestDouble.assertCalled(); mDetailsTestDouble.assertCalled(); } @@ -193,9 +205,9 @@ public class InspectorControllerTest { DocumentInfo doc = new DocumentInfo(); doc.derivedUri = DocumentsContract.buildDocumentUri(InspectorProvider.AUTHORITY, OPEN_IN_PROVIDER_DOC); - doc.flags = doc.flags | Document.FLAG_SUPPORTS_SETTINGS; - mController.updateView(doc); + mDataSupplier.mDoc = doc; + mController.loadInfo(doc.derivedUri); // actual URI doesn't matter :) assertTrue(mShowInProvider.becameVisible); } @@ -206,11 +218,7 @@ public class InspectorControllerTest { */ @Test public void testShowInProvider_invisible() throws Exception { - DocumentInfo doc = new DocumentInfo(); - doc.derivedUri = - DocumentsContract.buildDocumentUri(InspectorProvider.AUTHORITY, OPEN_IN_PROVIDER_DOC); - - mController.updateView(doc); + mController.loadInfo(TestEnv.FILE_JPG.derivedUri); // actual URI doesn't matter :) assertFalse(mShowInProvider.becameVisible); } @@ -220,7 +228,6 @@ public class InspectorControllerTest { */ @Test public void testAppDefaults_visible() throws Exception { - mPm.queryIntentProvidersResults = new ArrayList<>(); mPm.queryIntentProvidersResults.add(new TestResolveInfo()); mPm.queryIntentProvidersResults.add(new TestResolveInfo()); @@ -228,7 +235,8 @@ public class InspectorControllerTest { doc.derivedUri = DocumentsContract.buildDocumentUri(InspectorProvider.AUTHORITY, OPEN_IN_PROVIDER_DOC); - mController.updateView(doc); + mDataSupplier.mDoc = doc; + mController.loadInfo(doc.derivedUri); // actual URI doesn't matter :) assertTrue(mDefaultsTestDouble.becameVisible); } @@ -244,7 +252,8 @@ public class InspectorControllerTest { doc.derivedUri = DocumentsContract.buildDocumentUri(InspectorProvider.AUTHORITY, OPEN_IN_PROVIDER_DOC); - mController.updateView(doc); + mDataSupplier.mDoc = doc; + mController.loadInfo(doc.derivedUri); // actual URI doesn't matter :) assertFalse(mDefaultsTestDouble.becameVisible); } @@ -255,13 +264,60 @@ public class InspectorControllerTest { * @throws Exception */ @Test - public void testUpdateViewWithNullValue() throws Exception { - mController.updateView(null); - assertTrue(mShowSnackbarsCalled); + public void testUpdateView_withNullValue() throws Exception { + mDataSupplier.mDoc = null; + mController.loadInfo(TestEnv.FILE_JPG.derivedUri); // actual URI doesn't matter :) + + mErrCallback.assertCalled(); mHeaderTestDouble.assertNotCalled(); mDetailsTestDouble.assertNotCalled(); } + @Test + public void testMetadata_GeoHandlerInstalled() { + DocumentInfo doc = TestEnv.clone(TestEnv.FILE_JPG); + doc.flags |= DocumentsContract.Document.FLAG_SUPPORTS_METADATA; + mDataSupplier.mDoc = doc; + mController.loadInfo(doc.derivedUri); // actual URI doesn't matter :) + mMedia.assertGeoCallbackInstalled(); + } + + @Test + public void testMetadata_notDisplayedWhenNotReturned() { + DocumentInfo doc = TestEnv.clone(TestEnv.FILE_JPG); + doc.flags |= DocumentsContract.Document.FLAG_SUPPORTS_METADATA; + mDataSupplier.mDoc = doc; + mDataSupplier.mMetadata = null; // sorry, no results sucka! + mController.loadInfo(doc.derivedUri); // actual URI doesn't matter :) + } + + @Test + public void testMetadata_notDisplayedDocWithoutSupportFlag() { + assert !TestEnv.FILE_JPG.isMetadataSupported(); + mDataSupplier.mDoc = TestEnv.FILE_JPG; // this is the default value. For "good measure". + mController.loadInfo(TestEnv.FILE_JPG.derivedUri); // actual URI doesn't matter :) + mMedia.assertVisible(false); + mMedia.assertEmpty(); + } + + @Test + public void testMetadata_GeoHandlerStartsAction() { + DocumentInfo doc = TestEnv.clone(TestEnv.FILE_JPG); + doc.flags |= DocumentsContract.Document.FLAG_SUPPORTS_METADATA; + mDataSupplier.mDoc = doc; + mController.loadInfo(doc.derivedUri); // actual URI doesn't matter :) + mMedia.mGeoClickCallback.run(); + Intent geoIntent = mActivity.started; + assertEquals(Intent.ACTION_VIEW, geoIntent.getAction()); + assertNotNull(geoIntent); + Uri uri = geoIntent.getData(); + assertEquals("geo", uri.getScheme()); + String strUri = uri.toSafeString(); + assertTrue(strUri.contains("33.")); + assertTrue(strUri.contains("-118.")); + assertTrue(strUri.contains(TestEnv.FILE_JPG.displayName)); + } + private static class TestActivity extends Activity { private @Nullable Intent started; @@ -311,6 +367,31 @@ public class InspectorControllerTest { } } + + private static class TestHeader implements HeaderDisplay { + + private boolean mCalled = false; + private @Nullable String mTitle; + + @Override + public void accept(DocumentInfo info, String displayName) { + mCalled = true; + mTitle = displayName; + } + + public void assertTitle(String expected) { + Assert.assertEquals(expected, mTitle); + } + + public void assertCalled() { + Assert.assertTrue(mCalled); + } + + public void assertNotCalled() { + Assert.assertFalse(mCalled); + } + } + private static class TestDetails implements DetailsDisplay { private boolean mCalled = false; @@ -332,4 +413,71 @@ public class InspectorControllerTest { Assert.assertFalse(mCalled); } } + + private static class TestMedia extends TestTable implements MediaDisplay { + + private @Nullable Runnable mGeoClickCallback; + + @Override + public void accept(DocumentInfo info, Bundle metadata, Runnable geoClickCallback) { + mGeoClickCallback = geoClickCallback; + } + + void assertGeoCallbackInstalled() { + assertNotNull(mGeoClickCallback); + } + } + + private static class TestDebug extends TestTable implements DebugDisplay { + + @Override + public void accept(DocumentInfo info) { + // We have to emulate some of the real DebugView behavior + // because the controller makes us visible if we're not-empty. + put(R.string.debug_content_uri, info.derivedUri.toString()); + } + + @Override + public void accept(Bundle metadata) { + } + } + + private static final class TestDataSupplier implements DataSupplier { + + private @Nullable DocumentInfo mDoc; + private @Nullable Bundle mMetadata; + + @Override + public void loadDocInfo(Uri uri, Consumer<DocumentInfo> callback) { + callback.accept(mDoc); + } + + @Override + public void getDocumentMetadata(Uri uri, Consumer<Bundle> callback) { + callback.accept(mMetadata); + } + + @Override + public void loadDirCount(DocumentInfo directory, Consumer<Integer> callback) { + throw new UnsupportedOperationException(); + } + + @Override + public void reset() { + throw new UnsupportedOperationException(); + } + } + + private static final class TestRunnable implements Runnable { + private boolean mCalled; + + @Override + public void run() { + mCalled = true; + } + + void assertCalled() { + assertTrue(mCalled); + } + } }
\ No newline at end of file diff --git a/tests/unit/com/android/documentsui/inspector/MediaViewTest.java b/tests/unit/com/android/documentsui/inspector/MediaViewTest.java new file mode 100644 index 000000000..7cf7b2130 --- /dev/null +++ b/tests/unit/com/android/documentsui/inspector/MediaViewTest.java @@ -0,0 +1,166 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.inspector; + +import android.media.ExifInterface; +import android.media.MediaMetadata; +import android.os.Bundle; +import android.provider.DocumentsContract; +import android.support.test.runner.AndroidJUnit4; +import android.test.suitebuilder.annotation.SmallTest; + +import com.android.documentsui.R; +import com.android.documentsui.base.Shared; +import com.android.documentsui.testing.TestEnv; +import com.android.documentsui.testing.TestResources; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; + +import java.util.function.Consumer; + +@RunWith(AndroidJUnit4.class) +@SmallTest +public class MediaViewTest { + + private TestResources mResources; + private TestTable mTable; + private Bundle mMetadata; + private Consumer<float[]> mGeo = (float[] coords) -> { + mTable.put(R.string.metadata_address, "1234 Street Street\n" + + "City, State, 56789"); + }; + + @Before + public void setUp() { + mResources = TestResources.create(); + // TODO: We should just be using the real underlying resources. + mResources.strings.put(R.string.metadata_dimensions_format, "%d x %d, %.1fMP"); + mResources.strings.put(R.string.metadata_aperture_format, "f/%.1f"); + mResources.strings.put(R.string.metadata_coordinates_format, "%.3f, %.3f"); + mResources.strings.put(R.string.metadata_camera_format, "%s %s"); + mTable = new TestTable(); + mMetadata = new Bundle(); + TestMetadata.populateExifData(mMetadata); + TestMetadata.populateVideoData(mMetadata); + TestMetadata.populateAudioData(mMetadata); + } + + /** + * Test that the updateMetadata method is printing metadata for selected items found in the + * bundle. + */ + @Test + public void testShowExifData() throws Exception { + mResources.strings.put(R.string.metadata_focal_format, "%.2f mm"); + mResources.strings.put(R.string.metadata_iso_format, "ISO %d"); + Bundle exif = mMetadata.getBundle(DocumentsContract.METADATA_EXIF); + MediaView.showExifData(mTable, mResources, TestEnv.FILE_JPG, exif, null, mGeo); + + mTable.assertHasRow(R.string.metadata_dimensions, "3840 x 2160, 8.3MP"); + mTable.assertHasRow(R.string.metadata_date_time, "Jan 01, 1970, 12:16 AM"); + mTable.assertHasRow(R.string.metadata_coordinates, "33.996, -118.475"); + mTable.assertHasRow(R.string.metadata_altitude, "1244.0"); + mTable.assertHasRow(R.string.metadata_camera, "Google Pixel"); + mTable.assertHasRow(R.string.metadata_shutter_speed, "1/100"); + mTable.assertHasRow(R.string.metadata_aperture, "f/2.0"); + mTable.assertHasRow(R.string.metadata_iso_speed_ratings, "ISO 120"); + mTable.assertHasRow(R.string.metadata_focal_length, "4.27 mm"); + mTable.assertHasRow(R.string.metadata_address, "1234 Street Street\n" + + "City, State, 56789"); + } + + /** + * Bundle only supplies half of the values for the pairs that print in printMetaData. No put + * method should be called as the correct conditions have not been met. + * @throws Exception + */ + @Test + public void testShowExifData_PartialGpsTags() throws Exception { + Bundle data = new Bundle(); + data.putDouble(ExifInterface.TAG_GPS_LATITUDE, 37.7749); + + mMetadata.putBundle(DocumentsContract.METADATA_EXIF, data); + MediaView.showExifData(mTable, mResources, TestEnv.FILE_JPG, mMetadata, null, mGeo); + mTable.assertEmpty(); + } + + /** + * Bundle only supplies half of the values for the pairs that print in printMetaData. No put + * method should be called as the correct conditions have not been met. + * @throws Exception + */ + @Test + public void testShowExifData_PartialDimensionTags() throws Exception { + Bundle data = new Bundle(); + data.putInt(ExifInterface.TAG_IMAGE_WIDTH, 3840); + + mMetadata.putBundle(DocumentsContract.METADATA_EXIF, data); + MediaView.showExifData(mTable, mResources, TestEnv.FILE_JPG, mMetadata, null, mGeo); + mTable.assertEmpty(); + } + + /** + * Test that the updateMetadata method is printing metadata for selected items found in the + * bundle. + */ + @Test + public void testShowVideoData() throws Exception { + Bundle data = mMetadata.getBundle(Shared.METADATA_KEY_VIDEO); + MediaView.showVideoData(mTable, mResources, TestEnv.FILE_MP4, data, null); + + mTable.assertHasRow(R.string.metadata_duration, "01:12"); + mTable.assertHasRow(R.string.metadata_dimensions, "1920 x 1080, 2.1MP"); + } + + @Test + public void testShowAudioData() throws Exception { + Bundle data = mMetadata.getBundle(Shared.METADATA_KEY_AUDIO); + MediaView.showAudioData(mTable, data); + + mTable.assertHasRow(R.string.metadata_duration, "01:12"); + mTable.assertHasRow(R.string.metadata_artist, "artist"); + mTable.assertHasRow(R.string.metadata_composer, "composer"); + mTable.assertHasRow(R.string.metadata_album, "album"); + } + + /** + * Test that the updateMetadata method is printing metadata for selected items found in the + * bundle. + */ + @Test + public void testShowVideoData_HourPlusDuration() throws Exception { + Bundle data = mMetadata.getBundle(Shared.METADATA_KEY_VIDEO); + data.putInt(MediaMetadata.METADATA_KEY_DURATION, 21660000); + MediaView.showVideoData(mTable, mResources, TestEnv.FILE_MP4, data, null); + + mTable.assertHasRow(R.string.metadata_duration, "6:01:00"); + } + + @Test + public void testGetAddress() throws Exception { + Consumer<float[]> badAddress = (float[] coords) -> { + }; + Bundle data = new Bundle(); + data.putInt(ExifInterface.TAG_IMAGE_WIDTH, 3840); + data.putInt(ExifInterface.TAG_IMAGE_LENGTH, 2160); + + mMetadata.getBundle(DocumentsContract.METADATA_EXIF); + MediaView.showExifData(mTable, mResources, TestEnv.FILE_JPG, mMetadata, null, badAddress); + mTable.assertNotInTable(R.string.metadata_address); + } +} diff --git a/tests/unit/com/android/documentsui/inspector/TestMetadata.java b/tests/unit/com/android/documentsui/inspector/TestMetadata.java new file mode 100644 index 000000000..a6801ad80 --- /dev/null +++ b/tests/unit/com/android/documentsui/inspector/TestMetadata.java @@ -0,0 +1,67 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.inspector; + +import android.media.ExifInterface; +import android.media.MediaMetadata; +import android.os.Bundle; +import android.provider.DocumentsContract; + +import com.android.documentsui.base.Shared; + +final class TestMetadata { + private TestMetadata() {} + + static void populateExifData(Bundle container) { + Bundle data = new Bundle(); + container.putBundle(DocumentsContract.METADATA_EXIF, data); + + data.putInt(ExifInterface.TAG_IMAGE_WIDTH, 3840); + data.putInt(ExifInterface.TAG_IMAGE_LENGTH, 2160); + data.putString(ExifInterface.TAG_DATETIME, "Jan 01, 1970, 12:16 AM"); + data.putString(ExifInterface.TAG_GPS_LATITUDE, "33/1,59/1,4530/100"); + data.putString(ExifInterface.TAG_GPS_LONGITUDE, "118/1,28/1,3124/100"); + data.putString(ExifInterface.TAG_GPS_LATITUDE_REF, "N"); + data.putString(ExifInterface.TAG_GPS_LONGITUDE_REF, "W"); + data.putDouble(ExifInterface.TAG_GPS_ALTITUDE, 1244); + data.putString(ExifInterface.TAG_MAKE, "Google"); + data.putString(ExifInterface.TAG_MODEL, "Pixel"); + data.putDouble(ExifInterface.TAG_SHUTTER_SPEED_VALUE, 6.643); + data.putDouble(ExifInterface.TAG_APERTURE, 2.0); + data.putInt(ExifInterface.TAG_ISO_SPEED_RATINGS, 120); + data.putDouble(ExifInterface.TAG_FOCAL_LENGTH, 4.27); + } + + static void populateVideoData(Bundle container) { + Bundle data = new Bundle(); + container.putBundle(Shared.METADATA_KEY_VIDEO, data); + + // By convention we reuse exif tags for dimensions. + data.putInt(ExifInterface.TAG_IMAGE_WIDTH, 1920); + data.putInt(ExifInterface.TAG_IMAGE_LENGTH, 1080); + data.putInt(MediaMetadata.METADATA_KEY_DURATION, 72000); + } + + static void populateAudioData(Bundle container) { + Bundle data = new Bundle(); + container.putBundle(Shared.METADATA_KEY_AUDIO, data); + + data.putInt(MediaMetadata.METADATA_KEY_DURATION, 72000); + data.putString(MediaMetadata.METADATA_KEY_ARTIST, "artist"); + data.putString(MediaMetadata.METADATA_KEY_COMPOSER, "composer"); + data.putString(MediaMetadata.METADATA_KEY_ALBUM, "album"); + } +} diff --git a/tests/unit/com/android/documentsui/inspector/TestTable.java b/tests/unit/com/android/documentsui/inspector/TestTable.java new file mode 100644 index 000000000..f1bd0b76b --- /dev/null +++ b/tests/unit/com/android/documentsui/inspector/TestTable.java @@ -0,0 +1,81 @@ +/* + * Copyright (C) 2017 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. + */ +package com.android.documentsui.inspector; + +import static junit.framework.Assert.assertEquals; +import static junit.framework.Assert.assertFalse; +import static junit.framework.Assert.assertNull; +import static junit.framework.Assert.assertTrue; + +import android.view.View.OnClickListener; + +import com.android.documentsui.inspector.InspectorController.TableDisplay; + +import java.util.HashMap; +import java.util.Map; + +/** + * Friendly testable table implementation. + */ +class TestTable implements TableDisplay { + + private Map<Integer, CharSequence> mRows; + private boolean mVisible; + + public TestTable() { + mRows = new HashMap<>(); + } + + public void assertHasRow(int keyId, CharSequence expected) { + assertEquals(expected, mRows.get(keyId)); + } + + public void assertNotInTable (int keyId) { + assertNull(mRows.get(keyId)); + } + + @Override + public void put(int keyId, CharSequence value) { + mRows.put(keyId, value); + } + + @Override + public void put(int keyId, CharSequence value, OnClickListener callback) { + mRows.put(keyId, value); + } + + @Override + public void setVisible(boolean visible) { + mVisible = visible; + } + + @Override + public boolean isEmpty() { + return mRows.isEmpty(); + } + + void assertEmpty() { + assertTrue(mRows.isEmpty()); + } + + void assertNotEmpty() { + assertFalse(mRows.isEmpty()); + } + + void assertVisible(boolean expected) { + assertEquals(expected, mVisible); + } +} diff --git a/tests/unit/com/android/documentsui/services/FileOperationServiceTest.java b/tests/unit/com/android/documentsui/services/FileOperationServiceTest.java index 7f75aa5c5..a210c0ee1 100644 --- a/tests/unit/com/android/documentsui/services/FileOperationServiceTest.java +++ b/tests/unit/com/android/documentsui/services/FileOperationServiceTest.java @@ -21,8 +21,8 @@ import static com.android.documentsui.services.FileOperationService.OPERATION_DE import static com.android.documentsui.services.FileOperations.createBaseIntent; import static com.android.documentsui.services.FileOperations.createJobId; import static com.google.android.collect.Lists.newArrayList; +import static org.junit.Assert.fail; -import android.app.Notification; import android.content.Context; import android.content.Intent; import android.net.Uri; @@ -131,8 +131,9 @@ public class FileOperationServiceTest extends ServiceTestCase<FileOperationServi public void testRunsCopyJobs_AfterExceptionInJobCreation() throws Exception { try { startService(createCopyIntent(new ArrayList<>(), BETA_DOC)); - } catch(AssertionError e) { - // Expected AssertionError + fail("Should have throw exception."); + } catch(IllegalArgumentException expected) { + // We're sending a naughty empty list that should result in an IllegalArgumentException. } startService(createCopyIntent(newArrayList(GAMMA_DOC), DELTA_DOC)); |