Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 046ca200 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 7553867 from 0893c9da to sc-release

Change-Id: I3dd9cf9f7d9d1cba0a641aa999ea23be55ebcb73
parents 318dc460 0893c9da
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -130,7 +130,7 @@
    </plurals>
    <plurals name="compress_begin" formatted="false" msgid="3534158317098678895">
      <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> கோப்புகளின் அளவைக் குறைக்கிறது.</item>
      <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> கோப்பின் அளவைக் குறைக்கிறது.</item>
      <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> ஃபைலின் அளவைக் குறைக்கிறது.</item>
    </plurals>
    <plurals name="extract_begin" formatted="false" msgid="1006380679562903749">
      <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> ஃபைல்களைப் பிரித்தெடுக்கிறது.</item>
@@ -157,7 +157,7 @@
    </plurals>
    <plurals name="compress_error_notification_title" formatted="false" msgid="3043630066678213644">
      <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> கோப்புகளின் அளவைக் குறைக்க முடியவில்லை</item>
      <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> கோப்பின் அளவைக் குறைக்க முடியவில்லை</item>
      <item quantity="one"><xliff:g id="COUNT_0">%1$d</xliff:g> ஃபைலின் அளவைக் குறைக்க முடியவில்லை</item>
    </plurals>
    <plurals name="move_error_notification_title" formatted="false" msgid="2185736082411854754">
      <item quantity="other"><xliff:g id="COUNT_1">%1$d</xliff:g> உருப்படிகளை நகர்த்த முடியவில்லை</item>
@@ -174,7 +174,7 @@
      <item quantity="one">இந்தக் கோப்பு நகலெடுக்கப்படவில்லை: <xliff:g id="LIST_0">%1$s</xliff:g></item>
    </plurals>
    <plurals name="compress_failure_alert_content" formatted="false" msgid="5760632881868842400">
      <item quantity="other">இந்தக் கோப்புகளின் அளவு குறைக்கப்படவில்லை: <xliff:g id="LIST_1">%1$s</xliff:g></item>
      <item quantity="other">இந்த ஃபைல்களின் அளவு குறைக்கப்படவில்லை: <xliff:g id="LIST_1">%1$s</xliff:g></item>
      <item quantity="one">இந்த ஃபைலின் அளவு குறைக்கப்படவில்லை: <xliff:g id="LIST_0">%1$s</xliff:g></item>
    </plurals>
    <plurals name="extract_failure_alert_content" formatted="false" msgid="7572748127571720803">
+19 −0
Original line number Diff line number Diff line
<!--
  ~ Copyright (C) 2021 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>
    <dimen name="action_bar_elevation">0dp</dimen>
    <dimen name="action_bar_margin">0dp</dimen>
</resources>
+1 −0
Original line number Diff line number Diff line
@@ -52,4 +52,5 @@

    <color name="list_divider_color">#1f000000</color>
    <color name="list_item_selected_background_color">?android:colorSecondary</color>
    <color name="color_surface_header">@color/app_background_color</color>
</resources>
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@
            <!-- START COLOR -->
            <item type="color" name="primary"/>
            <item type="color" name="list_item_selected_background_color"/>
            <item type="color" name="color_surface_header"/>
            <!-- END COLOR -->

            <!-- START DIMEN -->
+5 −0
Original line number Diff line number Diff line
@@ -167,6 +167,11 @@ public abstract class BaseActivity

        mNavigator = new NavigationViewManager(this, mDrawer, mState, this, breadcrumb,
                profileTabsContainer, DocumentsApplication.getUserIdManager(this));
        AppBarLayout appBarLayout = findViewById(R.id.app_bar);
        if (appBarLayout != null) {
            appBarLayout.addOnOffsetChangedListener(mNavigator);
        }

        SearchManagerListener searchListener = new SearchManagerListener() {
            /**
             * Called when search results changed. Refreshes the content of the directory. It
Loading