From d72ff0172661c0e10308d7000c4fef57cdb94d90 Mon Sep 17 00:00:00 2001
From: lat9nq <22451773+lat9nq@users.noreply.github.com>
Date: Mon, 8 May 2023 10:05:37 -0400
Subject: [PATCH] shared_translations: Re flow strings

---
 src/yuzu/configuration/shared_translation.cpp | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/yuzu/configuration/shared_translation.cpp b/src/yuzu/configuration/shared_translation.cpp
index c20a3ebd91..5a2071781c 100644
--- a/src/yuzu/configuration/shared_translation.cpp
+++ b/src/yuzu/configuration/shared_translation.cpp
@@ -62,12 +62,12 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QWidget* parent) {
     INSERT(use_asynchronous_gpu_emulation, "Use asynchronous GPU emulation", "");
     INSERT(nvdec_emulation, "NVDEC emulation:", "");
     INSERT(accelerate_astc, "ASTC Decoding Method:", "");
-    INSERT(
-        vsync_mode, "VSync Mode:",
-        "FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh "
-        "rate. FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down. "
-        "Mailbox can have lower latency than FIFO and does not tear but may drop frames. Immediate "
-        "(no synchronization) just presents whatever is available and can exhibit tearing.");
+    INSERT(vsync_mode, "VSync Mode:",
+           "FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen "
+           "refresh rate.\nFIFO Relaxed is similar to FIFO but allows tearing as it recovers from "
+           "a slow down.\nMailbox can have lower latency than FIFO and does not tear but may drop "
+           "frames.\nImmediate (no synchronization) just presents whatever is available and can "
+           "exhibit tearing.");
     INSERT(bg_red, "", "");
     INSERT(bg_green, "", "");
     INSERT(bg_blue, "", "");