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

Commit 9e708dae authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

Move our modified strings to a different file

parent f8fd2815
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@
        android:name=".common.QKApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:label="@string/e_app_name"
        android:requestLegacyExternalStorage="true"
        android:supportsRtl="true"
        android:theme="@style/AppLaunchTheme">
@@ -204,7 +204,7 @@

        <service
            android:name=".common.util.QkChooserTargetService"
            android:label="@string/app_name"
            android:label="@string/e_app_name"
            android:permission="android.permission.BIND_CHOOSER_TARGET_SERVICE">
            <intent-filter>
                <action android:name="android.service.chooser.ChooserTargetService" />
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ abstract class QkThemedActivity : QkActivity() {
        // Set the color for the recent apps title
        val toolbarColor = resolveThemeColor(R.attr.colorPrimary)
        val icon = BitmapFactory.decodeResource(resources, R.mipmap.ic_launcher)
        val taskDesc = ActivityManager.TaskDescription(getString(R.string.app_name), icon, toolbarColor)
        val taskDesc = ActivityManager.TaskDescription(getString(R.string.e_app_name), icon, toolbarColor)
        setTaskDescription(taskDesc)
    }

+1 −1
Original line number Diff line number Diff line
@@ -212,7 +212,7 @@ class NotificationManagerImpl @Inject constructor(

            Preferences.NOTIFICATION_PREVIEWS_NONE -> {
                notification
                        .setContentTitle(context.getString(R.string.app_name))
                        .setContentTitle(context.getString(R.string.e_app_name))
                        .setContentText(context.resources.getQuantityString(
                                R.plurals.notification_new_messages, messages.size, messages.size))
            }
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ class BlockingDialog @Inject constructor(
            Preferences.BLOCKING_MANAGER_CB -> R.string.blocking_manager_call_blocker_title
            Preferences.BLOCKING_MANAGER_CC -> R.string.blocking_manager_call_control_title
            Preferences.BLOCKING_MANAGER_SIA -> R.string.blocking_manager_sia_title
            else -> R.string.blocking_manager_qksms_title
            else -> R.string.e_blocking_manager_qksms_title
        })

        val message = context.resources.getQuantityString(res, addresses.size, manager)
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ class BlockingPresenter @Inject constructor(
                        Preferences.BLOCKING_MANAGER_CB -> R.string.blocking_manager_call_blocker_title
                        Preferences.BLOCKING_MANAGER_CC -> R.string.blocking_manager_call_control_title
                        Preferences.BLOCKING_MANAGER_SIA -> R.string.blocking_manager_sia_title
                        else -> R.string.blocking_manager_qksms_title
                        else -> R.string.e_blocking_manager_qksms_title
                    }
                }
                .map(context::getString)
Loading