aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/yuzu/configuration/shared_translation.cpp
diff options
context:
space:
mode:
authorlat9nq <[email protected]>2023-06-09 16:53:26 -0400
committerlat9nq <[email protected]>2023-07-21 10:56:07 -0400
commit4ff8255e4a985e69046e453a9bd38adf80346548 (patch)
tree9d665f43b79639047e11dfda63f4036885619204 /src/yuzu/configuration/shared_translation.cpp
parent4c4bc134a90a248435786b1dff4f514d1c9c4464 (diff)
downloadyuzu-android-4ff8255e4a985e69046e453a9bd38adf80346548.tar.gz
yuzu-android-4ff8255e4a985e69046e453a9bd38adf80346548.zip
shared_widget: Refactor helpers
Makes checkbox creation an option as opposed to a label.
Diffstat (limited to 'src/yuzu/configuration/shared_translation.cpp')
-rw-r--r--src/yuzu/configuration/shared_translation.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yuzu/configuration/shared_translation.cpp b/src/yuzu/configuration/shared_translation.cpp
index dc9f15cdd..6038e8c25 100644
--- a/src/yuzu/configuration/shared_translation.cpp
+++ b/src/yuzu/configuration/shared_translation.cpp
@@ -108,11 +108,11 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QWidget* parent) {
INSERT(Settings, speed_limit, "Limit Speed Percent", "");
// System
- INSERT(Settings, rng_seed_enabled, "RNG Seed", "");
- INSERT(Settings, rng_seed, "", "");
+ INSERT(Settings, rng_seed, "RNG Seed", "");
+ INSERT(Settings, rng_seed_enabled, "", "");
INSERT(Settings, device_name, "Device Name", "");
- INSERT(Settings, custom_rtc_enabled, "Custom RTC", "");
- INSERT(Settings, custom_rtc, "", "");
+ INSERT(Settings, custom_rtc, "Custom RTC", "");
+ INSERT(Settings, custom_rtc_enabled, "", "");
INSERT(Settings, language_index, "Language:", "");
INSERT(Settings, region_index, "Region:", "");
INSERT(Settings, time_zone_index, "Time Zone:", "");