mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-10-30 22:36:46 +08:00 
			
		
		
		
	android: Add icons and descriptions to the first-level advanced settings page
Additionally adjusts padding to place the icons in-line with the back button in the top app bar and makes the text for normal settings appear in-line with the expanded top app bar title.
This commit is contained in:
		
							parent
							
								
									1a1393dad7
								
							
						
					
					
						commit
						6b888b0fa8
					
				| @ -3,10 +3,13 @@ | |||||||
| 
 | 
 | ||||||
| package org.yuzu.yuzu_emu.features.settings.model.view | package org.yuzu.yuzu_emu.features.settings.model.view | ||||||
| 
 | 
 | ||||||
|  | import androidx.annotation.DrawableRes | ||||||
|  | 
 | ||||||
| class RunnableSetting( | class RunnableSetting( | ||||||
|     titleId: Int, |     titleId: Int, | ||||||
|     descriptionId: Int, |     descriptionId: Int, | ||||||
|     val isRuntimeRunnable: Boolean, |     val isRuntimeRunnable: Boolean, | ||||||
|  |     @DrawableRes val iconId: Int = 0, | ||||||
|     val runnable: () -> Unit |     val runnable: () -> Unit | ||||||
| ) : SettingsItem(emptySetting, titleId, descriptionId) { | ) : SettingsItem(emptySetting, titleId, descriptionId) { | ||||||
|     override val type = TYPE_RUNNABLE |     override val type = TYPE_RUNNABLE | ||||||
|  | |||||||
| @ -3,11 +3,14 @@ | |||||||
| 
 | 
 | ||||||
| package org.yuzu.yuzu_emu.features.settings.model.view | package org.yuzu.yuzu_emu.features.settings.model.view | ||||||
| 
 | 
 | ||||||
|  | import androidx.annotation.DrawableRes | ||||||
|  | import androidx.annotation.StringRes | ||||||
| import org.yuzu.yuzu_emu.features.settings.model.Settings | import org.yuzu.yuzu_emu.features.settings.model.Settings | ||||||
| 
 | 
 | ||||||
| class SubmenuSetting( | class SubmenuSetting( | ||||||
|     titleId: Int, |     @StringRes titleId: Int, | ||||||
|     descriptionId: Int, |     @StringRes descriptionId: Int, | ||||||
|  |     @DrawableRes val iconId: Int, | ||||||
|     val menuKey: Settings.MenuTag |     val menuKey: Settings.MenuTag | ||||||
| ) : SettingsItem(emptySetting, titleId, descriptionId) { | ) : SettingsItem(emptySetting, titleId, descriptionId) { | ||||||
|     override val type = TYPE_SUBMENU |     override val type = TYPE_SUBMENU | ||||||
|  | |||||||
| @ -144,10 +144,9 @@ class SettingsFragment : Fragment() { | |||||||
|             val leftInsets = barInsets.left + cutoutInsets.left |             val leftInsets = barInsets.left + cutoutInsets.left | ||||||
|             val rightInsets = barInsets.right + cutoutInsets.right |             val rightInsets = barInsets.right + cutoutInsets.right | ||||||
| 
 | 
 | ||||||
|             val sideMargin = resources.getDimensionPixelSize(R.dimen.spacing_medlarge) |  | ||||||
|             val mlpSettingsList = binding.listSettings.layoutParams as MarginLayoutParams |             val mlpSettingsList = binding.listSettings.layoutParams as MarginLayoutParams | ||||||
|             mlpSettingsList.leftMargin = sideMargin + leftInsets |             mlpSettingsList.leftMargin = leftInsets | ||||||
|             mlpSettingsList.rightMargin = sideMargin + rightInsets |             mlpSettingsList.rightMargin = rightInsets | ||||||
|             binding.listSettings.layoutParams = mlpSettingsList |             binding.listSettings.layoutParams = mlpSettingsList | ||||||
|             binding.listSettings.updatePadding( |             binding.listSettings.updatePadding( | ||||||
|                 bottom = barInsets.bottom |                 bottom = barInsets.bottom | ||||||
|  | |||||||
| @ -3,7 +3,6 @@ | |||||||
| 
 | 
 | ||||||
| package org.yuzu.yuzu_emu.features.settings.ui | package org.yuzu.yuzu_emu.features.settings.ui | ||||||
| 
 | 
 | ||||||
| import android.content.Context |  | ||||||
| import android.content.SharedPreferences | import android.content.SharedPreferences | ||||||
| import android.os.Build | import android.os.Build | ||||||
| import android.widget.Toast | import android.widget.Toast | ||||||
| @ -32,8 +31,6 @@ class SettingsFragmentPresenter( | |||||||
|     private val preferences: SharedPreferences |     private val preferences: SharedPreferences | ||||||
|         get() = PreferenceManager.getDefaultSharedPreferences(YuzuApplication.appContext) |         get() = PreferenceManager.getDefaultSharedPreferences(YuzuApplication.appContext) | ||||||
| 
 | 
 | ||||||
|     private val context: Context get() = YuzuApplication.appContext |  | ||||||
| 
 |  | ||||||
|     // Extension for populating settings list based on paired settings |     // Extension for populating settings list based on paired settings | ||||||
|     fun ArrayList<SettingsItem>.add(key: String) { |     fun ArrayList<SettingsItem>.add(key: String) { | ||||||
|         val item = SettingsItem.settingsItems[key]!! |         val item = SettingsItem.settingsItems[key]!! | ||||||
| @ -74,14 +71,45 @@ class SettingsFragmentPresenter( | |||||||
| 
 | 
 | ||||||
|     private fun addConfigSettings(sl: ArrayList<SettingsItem>) { |     private fun addConfigSettings(sl: ArrayList<SettingsItem>) { | ||||||
|         sl.apply { |         sl.apply { | ||||||
|             add(SubmenuSetting(R.string.preferences_system, 0, Settings.MenuTag.SECTION_SYSTEM)) |  | ||||||
|             add(SubmenuSetting(R.string.preferences_graphics, 0, Settings.MenuTag.SECTION_RENDERER)) |  | ||||||
|             add(SubmenuSetting(R.string.preferences_audio, 0, Settings.MenuTag.SECTION_AUDIO)) |  | ||||||
|             add(SubmenuSetting(R.string.preferences_debug, 0, Settings.MenuTag.SECTION_DEBUG)) |  | ||||||
|             add( |             add( | ||||||
|                 RunnableSetting(R.string.reset_to_default, 0, false) { |                 SubmenuSetting( | ||||||
|                     settingsViewModel.setShouldShowResetSettingsDialog(true) |                     R.string.preferences_system, | ||||||
|                 } |                     R.string.preferences_system_description, | ||||||
|  |                     R.drawable.ic_system_settings, | ||||||
|  |                     Settings.MenuTag.SECTION_SYSTEM | ||||||
|  |                 ) | ||||||
|  |             ) | ||||||
|  |             add( | ||||||
|  |                 SubmenuSetting( | ||||||
|  |                     R.string.preferences_graphics, | ||||||
|  |                     R.string.preferences_graphics_description, | ||||||
|  |                     R.drawable.ic_graphics, | ||||||
|  |                     Settings.MenuTag.SECTION_RENDERER | ||||||
|  |                 ) | ||||||
|  |             ) | ||||||
|  |             add( | ||||||
|  |                 SubmenuSetting( | ||||||
|  |                     R.string.preferences_audio, | ||||||
|  |                     R.string.preferences_audio_description, | ||||||
|  |                     R.drawable.ic_audio, | ||||||
|  |                     Settings.MenuTag.SECTION_AUDIO | ||||||
|  |                 ) | ||||||
|  |             ) | ||||||
|  |             add( | ||||||
|  |                 SubmenuSetting( | ||||||
|  |                     R.string.preferences_debug, | ||||||
|  |                     R.string.preferences_debug_description, | ||||||
|  |                     R.drawable.ic_code, | ||||||
|  |                     Settings.MenuTag.SECTION_DEBUG | ||||||
|  |                 ) | ||||||
|  |             ) | ||||||
|  |             add( | ||||||
|  |                 RunnableSetting( | ||||||
|  |                     R.string.reset_to_default, | ||||||
|  |                     R.string.reset_to_default_description, | ||||||
|  |                     false, | ||||||
|  |                     R.drawable.ic_restore | ||||||
|  |                 ) { settingsViewModel.setShouldShowResetSettingsDialog(true) } | ||||||
|             ) |             ) | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  | |||||||
| @ -4,6 +4,7 @@ | |||||||
| package org.yuzu.yuzu_emu.features.settings.ui.viewholder | package org.yuzu.yuzu_emu.features.settings.ui.viewholder | ||||||
| 
 | 
 | ||||||
| import android.view.View | import android.view.View | ||||||
|  | import androidx.core.content.res.ResourcesCompat | ||||||
| import org.yuzu.yuzu_emu.NativeLibrary | import org.yuzu.yuzu_emu.NativeLibrary | ||||||
| import org.yuzu.yuzu_emu.databinding.ListItemSettingBinding | import org.yuzu.yuzu_emu.databinding.ListItemSettingBinding | ||||||
| import org.yuzu.yuzu_emu.features.settings.model.view.RunnableSetting | import org.yuzu.yuzu_emu.features.settings.model.view.RunnableSetting | ||||||
| @ -16,6 +17,19 @@ class RunnableViewHolder(val binding: ListItemSettingBinding, adapter: SettingsA | |||||||
| 
 | 
 | ||||||
|     override fun bind(item: SettingsItem) { |     override fun bind(item: SettingsItem) { | ||||||
|         setting = item as RunnableSetting |         setting = item as RunnableSetting | ||||||
|  |         if (item.iconId != 0) { | ||||||
|  |             binding.icon.visibility = View.VISIBLE | ||||||
|  |             binding.icon.setImageDrawable( | ||||||
|  |                 ResourcesCompat.getDrawable( | ||||||
|  |                     binding.icon.resources, | ||||||
|  |                     item.iconId, | ||||||
|  |                     binding.icon.context.theme | ||||||
|  |                 ) | ||||||
|  |             ) | ||||||
|  |         } else { | ||||||
|  |             binding.icon.visibility = View.GONE | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|         binding.textSettingName.setText(item.nameId) |         binding.textSettingName.setText(item.nameId) | ||||||
|         if (item.descriptionId != 0) { |         if (item.descriptionId != 0) { | ||||||
|             binding.textSettingDescription.setText(item.descriptionId) |             binding.textSettingDescription.setText(item.descriptionId) | ||||||
|  | |||||||
| @ -4,6 +4,7 @@ | |||||||
| package org.yuzu.yuzu_emu.features.settings.ui.viewholder | package org.yuzu.yuzu_emu.features.settings.ui.viewholder | ||||||
| 
 | 
 | ||||||
| import android.view.View | import android.view.View | ||||||
|  | import androidx.core.content.res.ResourcesCompat | ||||||
| import org.yuzu.yuzu_emu.databinding.ListItemSettingBinding | import org.yuzu.yuzu_emu.databinding.ListItemSettingBinding | ||||||
| import org.yuzu.yuzu_emu.features.settings.model.view.SettingsItem | import org.yuzu.yuzu_emu.features.settings.model.view.SettingsItem | ||||||
| import org.yuzu.yuzu_emu.features.settings.model.view.SubmenuSetting | import org.yuzu.yuzu_emu.features.settings.model.view.SubmenuSetting | ||||||
| @ -15,6 +16,19 @@ class SubmenuViewHolder(val binding: ListItemSettingBinding, adapter: SettingsAd | |||||||
| 
 | 
 | ||||||
|     override fun bind(item: SettingsItem) { |     override fun bind(item: SettingsItem) { | ||||||
|         this.item = item as SubmenuSetting |         this.item = item as SubmenuSetting | ||||||
|  |         if (item.iconId != 0) { | ||||||
|  |             binding.icon.visibility = View.VISIBLE | ||||||
|  |             binding.icon.setImageDrawable( | ||||||
|  |                 ResourcesCompat.getDrawable( | ||||||
|  |                     binding.icon.resources, | ||||||
|  |                     item.iconId, | ||||||
|  |                     binding.icon.context.theme | ||||||
|  |                 ) | ||||||
|  |             ) | ||||||
|  |         } else { | ||||||
|  |             binding.icon.visibility = View.GONE | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|         binding.textSettingName.setText(item.nameId) |         binding.textSettingName.setText(item.nameId) | ||||||
|         if (item.descriptionId != 0) { |         if (item.descriptionId != 0) { | ||||||
|             binding.textSettingDescription.setText(item.descriptionId) |             binding.textSettingDescription.setText(item.descriptionId) | ||||||
|  | |||||||
							
								
								
									
										9
									
								
								src/android/app/src/main/res/drawable/ic_audio.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								src/android/app/src/main/res/drawable/ic_audio.xml
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,9 @@ | |||||||
|  | <vector xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|  |     android:width="24dp" | ||||||
|  |     android:height="24dp" | ||||||
|  |     android:viewportHeight="24" | ||||||
|  |     android:viewportWidth="24"> | ||||||
|  |     <path | ||||||
|  |         android:fillColor="?attr/colorControlNormal" | ||||||
|  |         android:pathData="M3,9v6h4l5,5L12,4L7,9L3,9zM16.5,12c0,-1.77 -1.02,-3.29 -2.5,-4.03v8.05c1.48,-0.73 2.5,-2.25 2.5,-4.02zM14,3.23v2.06c2.89,0.86 5,3.54 5,6.71s-2.11,5.85 -5,6.71v2.06c4.01,-0.91 7,-4.49 7,-8.77s-2.99,-7.86 -7,-8.77z" /> | ||||||
|  | </vector> | ||||||
							
								
								
									
										9
									
								
								src/android/app/src/main/res/drawable/ic_code.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								src/android/app/src/main/res/drawable/ic_code.xml
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,9 @@ | |||||||
|  | <vector xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|  |     android:width="24dp" | ||||||
|  |     android:height="24dp" | ||||||
|  |     android:viewportWidth="960" | ||||||
|  |     android:viewportHeight="960"> | ||||||
|  |   <path | ||||||
|  |       android:fillColor="?attr/colorControlNormal" | ||||||
|  |       android:pathData="M320,720 L80,480l240,-240 57,57 -184,184 183,183 -56,56ZM640,720 L583,663 767,479 584,296 640,240 880,480 640,720Z"/> | ||||||
|  | </vector> | ||||||
							
								
								
									
										9
									
								
								src/android/app/src/main/res/drawable/ic_graphics.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								src/android/app/src/main/res/drawable/ic_graphics.xml
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,9 @@ | |||||||
|  | <vector xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|  |     android:width="24dp" | ||||||
|  |     android:height="24dp" | ||||||
|  |     android:viewportWidth="960" | ||||||
|  |     android:viewportHeight="960"> | ||||||
|  |   <path | ||||||
|  |       android:fillColor="?attr/colorControlNormal" | ||||||
|  |       android:pathData="M160,840q-33,0 -56.5,-23.5T80,760v-560q0,-33 23.5,-56.5T160,120h560q33,0 56.5,23.5T800,200v80h80v80h-80v80h80v80h-80v80h80v80h-80v80q0,33 -23.5,56.5T720,840L160,840ZM160,760h560v-560L160,200v560ZM240,680h200v-160L240,520v160ZM480,400h160v-120L480,280v120ZM240,480h200v-200L240,280v200ZM480,680h160v-240L480,440v240ZM160,200v560,-560Z"/> | ||||||
|  | </vector> | ||||||
| @ -0,0 +1,9 @@ | |||||||
|  | <vector xmlns:android="http://schemas.android.com/apk/res/android" | ||||||
|  |     android:width="24dp" | ||||||
|  |     android:height="24dp" | ||||||
|  |     android:viewportWidth="960" | ||||||
|  |     android:viewportHeight="960"> | ||||||
|  |   <path | ||||||
|  |       android:fillColor="?attr/colorControlNormal" | ||||||
|  |       android:pathData="M320,960q-17,0 -28.5,-11.5T280,920q0,-17 11.5,-28.5T320,880q17,0 28.5,11.5T360,920q0,17 -11.5,28.5T320,960ZM480,960q-17,0 -28.5,-11.5T440,920q0,-17 11.5,-28.5T480,880q17,0 28.5,11.5T520,920q0,17 -11.5,28.5T480,960ZM640,960q-17,0 -28.5,-11.5T600,920q0,-17 11.5,-28.5T640,880q17,0 28.5,11.5T680,920q0,17 -11.5,28.5T640,960ZM320,800q-33,0 -56.5,-23.5T240,720v-640q0,-33 23.5,-56.5T320,0h320q33,0 56.5,23.5T720,80v640q0,33 -23.5,56.5T640,800L320,800ZM320,720h320v-40L320,680v40ZM320,600h320v-400L320,200v400ZM320,120h320v-40L320,80v40ZM320,120v-40,40ZM320,720v-40,40Z"/> | ||||||
|  | </vector> | ||||||
| @ -10,41 +10,59 @@ | |||||||
|     android:focusable="true" |     android:focusable="true" | ||||||
|     android:gravity="center_vertical" |     android:gravity="center_vertical" | ||||||
|     android:minHeight="72dp" |     android:minHeight="72dp" | ||||||
|     android:padding="@dimen/spacing_large"> |     android:padding="16dp"> | ||||||
| 
 | 
 | ||||||
|     <LinearLayout |     <LinearLayout | ||||||
|         android:layout_width="match_parent" |         android:layout_width="match_parent" | ||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:orientation="vertical"> |         android:orientation="horizontal"> | ||||||
| 
 | 
 | ||||||
|         <com.google.android.material.textview.MaterialTextView |         <ImageView | ||||||
|             android:id="@+id/text_setting_name" |             android:id="@+id/icon" | ||||||
|             style="@style/TextAppearance.Material3.HeadlineMedium" |             android:layout_width="24dp" | ||||||
|  |             android:layout_height="24dp" | ||||||
|  |             android:layout_marginStart="8dp" | ||||||
|  |             android:layout_marginEnd="24dp" | ||||||
|  |             android:layout_gravity="center_vertical" | ||||||
|  |             android:visibility="gone" | ||||||
|  |             app:tint="?attr/colorOnSurface" /> | ||||||
|  | 
 | ||||||
|  |         <LinearLayout | ||||||
|             android:layout_width="match_parent" |             android:layout_width="match_parent" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:textAlignment="viewStart" |             android:orientation="vertical"> | ||||||
|             android:textSize="16sp" |  | ||||||
|             app:lineHeight="22dp" |  | ||||||
|             tools:text="Setting Name" /> |  | ||||||
| 
 | 
 | ||||||
|         <com.google.android.material.textview.MaterialTextView |             <com.google.android.material.textview.MaterialTextView | ||||||
|             android:id="@+id/text_setting_description" |                 android:id="@+id/text_setting_name" | ||||||
|             style="@style/TextAppearance.Material3.BodySmall" |                 style="@style/TextAppearance.Material3.HeadlineMedium" | ||||||
|             android:layout_width="match_parent" |                 android:layout_width="match_parent" | ||||||
|             android:layout_height="wrap_content" |                 android:layout_height="wrap_content" | ||||||
|             android:layout_marginTop="@dimen/spacing_small" |                 android:textAlignment="viewStart" | ||||||
|             android:textAlignment="viewStart" |                 android:textSize="17sp" | ||||||
|             tools:text="@string/app_disclaimer" /> |                 app:lineHeight="22dp" | ||||||
|  |                 tools:text="Setting Name" /> | ||||||
| 
 | 
 | ||||||
|         <com.google.android.material.textview.MaterialTextView |             <com.google.android.material.textview.MaterialTextView | ||||||
|             android:id="@+id/text_setting_value" |                 android:id="@+id/text_setting_description" | ||||||
|             style="@style/TextAppearance.Material3.LabelMedium" |                 style="@style/TextAppearance.Material3.BodySmall" | ||||||
|             android:layout_width="match_parent" |                 android:layout_width="match_parent" | ||||||
|             android:layout_height="wrap_content" |                 android:layout_height="wrap_content" | ||||||
|             android:layout_marginTop="@dimen/spacing_small" |                 android:layout_marginTop="@dimen/spacing_small" | ||||||
|             android:textAlignment="viewStart" |                 android:textAlignment="viewStart" | ||||||
|             android:textStyle="bold" |                 tools:text="@string/app_disclaimer" /> | ||||||
|             tools:text="1x" /> | 
 | ||||||
|  |             <com.google.android.material.textview.MaterialTextView | ||||||
|  |                 android:id="@+id/text_setting_value" | ||||||
|  |                 style="@style/TextAppearance.Material3.LabelMedium" | ||||||
|  |                 android:layout_width="match_parent" | ||||||
|  |                 android:layout_height="wrap_content" | ||||||
|  |                 android:layout_marginTop="@dimen/spacing_small" | ||||||
|  |                 android:textAlignment="viewStart" | ||||||
|  |                 android:textStyle="bold" | ||||||
|  |                 android:textSize="13sp" | ||||||
|  |                 tools:text="1x" /> | ||||||
|  | 
 | ||||||
|  |         </LinearLayout> | ||||||
| 
 | 
 | ||||||
|     </LinearLayout> |     </LinearLayout> | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -8,9 +8,7 @@ | |||||||
|     android:clickable="true" |     android:clickable="true" | ||||||
|     android:focusable="true" |     android:focusable="true" | ||||||
|     android:minHeight="72dp" |     android:minHeight="72dp" | ||||||
|     android:paddingVertical="@dimen/spacing_large" |     android:padding="16dp"> | ||||||
|     android:paddingStart="@dimen/spacing_large" |  | ||||||
|     android:paddingEnd="24dp"> |  | ||||||
| 
 | 
 | ||||||
|     <com.google.android.material.materialswitch.MaterialSwitch |     <com.google.android.material.materialswitch.MaterialSwitch | ||||||
|         android:id="@+id/switch_widget" |         android:id="@+id/switch_widget" | ||||||
| @ -24,7 +22,7 @@ | |||||||
|         android:layout_height="wrap_content" |         android:layout_height="wrap_content" | ||||||
|         android:layout_alignParentTop="true" |         android:layout_alignParentTop="true" | ||||||
|         android:layout_centerVertical="true" |         android:layout_centerVertical="true" | ||||||
|         android:layout_marginEnd="@dimen/spacing_large" |         android:layout_marginEnd="24dp" | ||||||
|         android:layout_toStartOf="@+id/switch_widget" |         android:layout_toStartOf="@+id/switch_widget" | ||||||
|         android:gravity="center_vertical" |         android:gravity="center_vertical" | ||||||
|         android:orientation="vertical"> |         android:orientation="vertical"> | ||||||
| @ -35,7 +33,7 @@ | |||||||
|             android:layout_width="wrap_content" |             android:layout_width="wrap_content" | ||||||
|             android:layout_height="wrap_content" |             android:layout_height="wrap_content" | ||||||
|             android:textAlignment="viewStart" |             android:textAlignment="viewStart" | ||||||
|             android:textSize="16sp" |             android:textSize="17sp" | ||||||
|             app:lineHeight="28dp" |             app:lineHeight="28dp" | ||||||
|             tools:text="@string/frame_limit_enable" /> |             tools:text="@string/frame_limit_enable" /> | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -240,6 +240,7 @@ | |||||||
|     <string name="shutting_down">Shutting down…</string> |     <string name="shutting_down">Shutting down…</string> | ||||||
|     <string name="reset_setting_confirmation">Do you want to reset this setting back to its default value?</string> |     <string name="reset_setting_confirmation">Do you want to reset this setting back to its default value?</string> | ||||||
|     <string name="reset_to_default">Reset to default</string> |     <string name="reset_to_default">Reset to default</string> | ||||||
|  |     <string name="reset_to_default_description">Resets all advanced settings</string> | ||||||
|     <string name="reset_all_settings">Reset all settings?</string> |     <string name="reset_all_settings">Reset all settings?</string> | ||||||
|     <string name="reset_all_settings_description">All advanced settings will be reset to their default configuration. This can not be undone.</string> |     <string name="reset_all_settings_description">All advanced settings will be reset to their default configuration. This can not be undone.</string> | ||||||
|     <string name="settings_reset">Settings reset</string> |     <string name="settings_reset">Settings reset</string> | ||||||
| @ -271,10 +272,14 @@ | |||||||
|     <string name="preferences_settings">Settings</string> |     <string name="preferences_settings">Settings</string> | ||||||
|     <string name="preferences_general">General</string> |     <string name="preferences_general">General</string> | ||||||
|     <string name="preferences_system">System</string> |     <string name="preferences_system">System</string> | ||||||
|  |     <string name="preferences_system_description">Docked mode, region, language</string> | ||||||
|     <string name="preferences_graphics">Graphics</string> |     <string name="preferences_graphics">Graphics</string> | ||||||
|  |     <string name="preferences_graphics_description">Accuracy level, resolution, shader cache</string> | ||||||
|     <string name="preferences_audio">Audio</string> |     <string name="preferences_audio">Audio</string> | ||||||
|  |     <string name="preferences_audio_description">Output engine, volume</string> | ||||||
|     <string name="preferences_theme">Theme and color</string> |     <string name="preferences_theme">Theme and color</string> | ||||||
|     <string name="preferences_debug">Debug</string> |     <string name="preferences_debug">Debug</string> | ||||||
|  |     <string name="preferences_debug_description">CPU/GPU debugging, graphics API, fastmem</string> | ||||||
| 
 | 
 | ||||||
|     <!-- ROM loading errors --> |     <!-- ROM loading errors --> | ||||||
|     <string name="loader_error_encrypted">Your ROM is encrypted</string> |     <string name="loader_error_encrypted">Your ROM is encrypted</string> | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user