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

Commit 611536c9 authored by Hasib Prince's avatar Hasib Prince
Browse files

App Lounge: fixed text of install button in dialog

parent dd09b375
Loading
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -418,7 +418,6 @@ class ApplicationFragment : Fragment(R.layout.fragment_application) {
            text = when {
                mainActivityViewModel.checkUnsupportedApplication(fusedApp) ->
                    getString(R.string.not_available)
                appInfoFetchViewModel.isAppInBlockedList(fusedApp) -> getString(R.string.force_installation)
                fusedApp.isFree -> getString(R.string.install)
                else -> fusedApp.price
            }
@@ -461,7 +460,7 @@ class ApplicationFragment : Fragment(R.layout.fragment_application) {
            ApplicationDialogFragment(
                title = getString(R.string.this_app_may_not_work_properly),
                message = getString(R.string.may_not_work_warning_message),
                positiveButtonText = getString(R.string.ok),
                positiveButtonText = getString(R.string.install_anyway),
                positiveButtonAction = {
                    mainActivityViewModel.getApplication(fusedApp, it)
                }
+4 −3
Original line number Diff line number Diff line
@@ -106,8 +106,6 @@
    <string name="not_enough_storage">There is not enough space available to download this application!</string>
    <string name="app_not_found">Your application was not found.</string>
    <string name="show_more">Show more</string>
    <string name="this_app_may_not_work_properly">This app may not work properly!</string>
    <string name="may_not_work_warning_message">Forcing installation will allow you to download and install it, but it won\'t guarantee that it will work.&lt;br /&gt;&lt;br /&gt;Attempting to install unsupported apps may cause crashes or slow down the system.&lt;br /&gt;&lt;br /&gt;We\'re working on improving compatiblity with this application in a near future.</string>


    <!-- Updates Fragment -->
@@ -176,6 +174,9 @@
    <!--Unsupported app-->
    <string name="unsupported_app_title">Unsupported app!</string>
    <string name="unsupported_app_unreleased">The app %s is currently unsupported. This can be because the app is not yet widely released, or there is some other error.</string>
    <string name="force_installation">Force install</string>
    <string name="install_anyway">Install anyway</string>
    <string name="this_app_may_not_work_properly">This app may not work properly!</string>
    <string name="may_not_work_warning_message">Forcing installation will allow you to download and install it, but it won\'t guarantee that it will work.&lt;br /&gt;&lt;br /&gt;Attempting to install unsupported apps may cause crashes or slow down the system.&lt;br /&gt;&lt;br /&gt;We\'re working on improving compatiblity with this application in a near future.</string>


</resources>