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

Commit 68083933 authored by jruesga's avatar jruesga
Browse files

Fix transparent inverted color

parent f2b04da7
Loading
Loading
Loading
Loading
−60 B (539 B)
Loading image diff...
−113 B (507 B)
Loading image diff...
−71 B (719 B)
Loading image diff...
+9 −10
Original line number Original line Diff line number Diff line
@@ -113,7 +113,7 @@
  <string name="msgs_operation_failure">The operation failed.</string>
  <string name="msgs_operation_failure">The operation failed.</string>
  <!-- A console couldn\'t be allocated -->
  <!-- A console couldn\'t be allocated -->
  <string name="msgs_console_alloc_failure">A console couldn\'t be allocated.</string>
  <string name="msgs_console_alloc_failure">A console couldn\'t be allocated.</string>
  <!-- An operation can't be cancelled -->
  <!-- An operation cann't be cancelled -->
  <string name="msgs_operation_can_not_be_cancelled">The operation can\'t be cancelled.</string>
  <string name="msgs_operation_can_not_be_cancelled">The operation can\'t be cancelled.</string>
  <!-- The operation requieres mount the filesystem prior to execute the command -->
  <!-- The operation requieres mount the filesystem prior to execute the command -->
  <string name="msgs_read_only_filesystem">The filesystem is read-only. Try to mount the
  <string name="msgs_read_only_filesystem">The filesystem is read-only. Try to mount the
@@ -650,15 +650,14 @@
    properties dialog.</string>
    properties dialog.</string>
    <!-- Preferences * General * Advanced settings category -->
    <!-- Preferences * General * Advanced settings category -->
  <string name="pref_general_advanced_settings_category">Advanced settings</string>
  <string name="pref_general_advanced_settings_category">Advanced settings</string>
  <!-- Preferences * General * Allow console selection title -->
  <!-- Preferences * General * Advanced mode -->
  <string name="pref_allow_console_selection">Allow console selection</string>
  <string name="pref_advanced_mode">Advanced mode</string>
  <!-- Preferences * General * Allow console selection summary on -->
  <!-- Preferences * General * Advanced mode summary on -->
  <string name="pref_allow_console_selection_on">Allow select the type of console to
  <string name="pref_advanced_mode_on">Advanced mode is enabled. You are running in a privileged
    use on the app when navigate. This enable the \'Select console\' menu and adds some advices
    environment. You are under your own risk.</string>
    when the app need to use a privileged action.</string>
  <!-- Preferences * General * Advanced mode summary off -->
  <!-- Preferences * General * Allow console selection summary off -->
  <string name="pref_advanced_mode_off">Advanced mode is disabled. You are running in a
  <string name="pref_allow_console_selection_off">Use only a privileged console. This requires
    secure environment.</string>
    that the app have \'su\' privilege to run.</string>
  <!-- Preferences * Search * Results category -->
  <!-- Preferences * Search * Results category -->
  <string name="pref_search_results_category">Results</string>
  <string name="pref_search_results_category">Results</string>
  <!-- Preferences * Search * Show relevance widget -->
  <!-- Preferences * Search * Show relevance widget -->
+6 −6
Original line number Original line Diff line number Diff line
@@ -65,14 +65,14 @@
      android:key="general_advanced_settings"
      android:key="general_advanced_settings"
      android:title="@string/pref_general_advanced_settings_category">
      android:title="@string/pref_general_advanced_settings_category">


      <!-- Allow console selection -->
      <!-- Advanced mode -->
      <CheckBoxPreference
      <CheckBoxPreference
        android:key="cm_explorer_allow_console_selection"
        android:key="cm_explorer_advanced_mode"
        android:title="@string/pref_allow_console_selection"
        android:title="@string/pref_advanced_mode"
        android:summaryOn="@string/pref_allow_console_selection_on"
        android:summaryOn="@string/pref_advanced_mode_on"
        android:summaryOff="@string/pref_allow_console_selection_off"
        android:summaryOff="@string/pref_advanced_mode_off"
        android:persistent="true"
        android:persistent="true"
        android:defaultValue="true" />
        android:defaultValue="false" />


    </PreferenceCategory>
    </PreferenceCategory>
</PreferenceScreen>
</PreferenceScreen>
 No newline at end of file
Loading