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

Commit 91252b8f authored by Daichi Hirono's avatar Daichi Hirono
Browse files

Change the title of DocumentsUI from "Files" to "Downloads".

BUG=27683277

Change-Id: I429cae8804b8f318f58039fc63d081c2a864fad0
parent 68e52fe6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@
            android:name=".LauncherActivity"
            android:theme="@android:style/Theme.NoDisplay"
            android:icon="@drawable/ic_files_app"
            android:label="@string/files_label">
            android:label="@string/downloads_label">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
@@ -56,7 +56,7 @@
            android:name=".FilesActivity"
            android:theme="@style/DocumentsTheme"
            android:icon="@drawable/ic_files_app"
            android:label="@string/files_label"
            android:label="@string/downloads_label"
            android:documentLaunchMode="intoExisting">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
+2 −2
Original line number Diff line number Diff line
@@ -203,8 +203,8 @@ public class DocumentsActivity extends BaseActivity {
                       mState.action == ACTION_PICK_COPY_DESTINATION) {
                title = getResources().getString(R.string.title_save);
            } else {
                // If all else fails, just call it "Files".
                title = getResources().getString(R.string.files_label);
                // If all else fails, just call it "Downloads".
                title = getResources().getString(R.string.downloads_label);
            }
        }

+1 −1
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ public class FilesActivity extends BaseActivity {

    @Override
    public String getDrawerTitle() {
        return getResources().getString(R.string.files_label);
        return getResources().getString(R.string.downloads_label);
    }

    @Override