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

Commit 2eb5c081 authored by Nishith  Khanna's avatar Nishith Khanna Committed by Mohammed Althaf T
Browse files

Replace lineage strings and logo with /e/

parent 85af0f2b
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
    Copyright (c) 2017, 2022 The LineageOS Project
    Copyright (c) 2018-2022 E FOUNDATION

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -15,14 +15,11 @@
    limitations under the License.
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="512dp"
    android:height="260dp"
    android:viewportWidth="512"
    android:viewportHeight="260">

    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="1024.0"
    android:viewportHeight="1024.0">
    <path
        android:fillColor="@color/lineage_accent"
        android:pathData="M416,128a39.92,39.92,0,0,0-31.11,14.87l-1.5-.6A294.79,294.79,0,0,0,336,128.14s0-.09,0-.14a80,80,0,1,0-160,0s0,.09,0,.13l-1.72
.38 a293.48,293.48,0,0,0-45.67,13.76l-1.5 .6
a40,40,0,1,0,7.39,14.28h0a277.33,277.33,0,0,1,43.1-13,80,80,0,0,0,156.73,0,277.3,277.3,0,0,1,43.11,13h0A40,40,0,1,0,416,128ZM96,192a24,24,0,1,1,24-24A24,24,0,0,1,96,192Zm160,0a64,64,0,1,1,64-64A64.07,64.07,0,0,1,256,192Zm160,0a24,24,0,1,1,24-24A24,24,0,0,1,416,192ZM288,128a32,32,0,1,1-32-32A32,32,0,0,1,288,128Z" />
        android:fillColor="#FFFFFF"
        android:pathData="M511.9,578.8c-65.6,0 -119,-53.4 -119,-119c0,-65.6 53.4,-119 119,-119s119,53.4 119,119c0,12.4 -10.1,22.5 -22.5,22.5h-96.5c-12.4,0 -22.5,-10.1 -22.5,-22.5c0,-12.4 10.1,-22.5 22.5,-22.5h70.5c-9.5,-29.8 -37.6,-51.5 -70.5,-51.5c-40.8,0 -74,33.2 -74,74c0,40.8 33.2,74 74,74c12.4,0 22.5,10.1 22.5,22.5C534.4,568.7 524.3,578.8 511.9,578.8z" />
</vector>
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:text="@string/update_recovery_setting"
                            android:text="@string/update_recovery_setting_e"
                            android:textStyle="bold"
                            style="@style/SudCheckBox.Multiline" />

+6 −0
Original line number Diff line number Diff line
@@ -124,4 +124,10 @@

    <string name="create_account">Create Account</string>
    <string name="sign_in">Sign in</string>

    <string name="setup_welcome_message_e">Welcome to \n/e/OS</string>

    <string name="update_recovery_title_e">Update Recovery</string>
    <string name="update_recovery_description_e">Updates Recovery on first boot subsequent to every update.</string>
    <string name="update_recovery_setting_e">Update Recovery alongside the OS</string>
</resources>
+2 −2
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ public class UpdateRecoveryActivity extends BaseSetupWizardActivity {
        super.onCreate(savedInstanceState);
        mSetupWizardApp = (SetupWizardApp) getApplication();
        getGlifLayout().setDescriptionText(getString(R.string.update_recovery_full_description,
                getString(R.string.update_recovery_description),
                getString(R.string.update_recovery_description_e),
                getString(R.string.update_recovery_warning)));

        if (!SetupWizardUtils.hasRecoveryUpdater(this)) {
@@ -96,7 +96,7 @@ public class UpdateRecoveryActivity extends BaseSetupWizardActivity {

    @Override
    protected int getTitleResId() {
        return R.string.update_recovery_title;
        return R.string.update_recovery_title_e;
    }

    @Override
+1 −2
Original line number Diff line number Diff line
@@ -50,8 +50,7 @@ public class WelcomeActivity extends BaseSetupWizardActivity {
        FooterButtonStyleUtils.applySecondaryButtonPartnerResource(this, emergButton, true);

        TextView welcomeTitle = findViewById(R.id.welcome_title);
        welcomeTitle.setText(getString(R.string.setup_welcome_message,
                getString(R.string.os_name)));
        welcomeTitle.setText(getString(R.string.setup_welcome_message_e));
    }

    @Override