From 3c09e26352e9cb9643d1581eeb83a9455030bed8 Mon Sep 17 00:00:00 2001 From: tpart Date: Thu, 23 Jan 2025 13:26:09 +0100 Subject: Fix #245 (Newlines of new ini loader are not converted) --- client/translation_manager.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') diff --git a/client/translation_manager.gd b/client/translation_manager.gd index d45a153a..ea84b680 100644 --- a/client/translation_manager.gd +++ b/client/translation_manager.gd @@ -54,6 +54,6 @@ func get_ini_dict(file_name: String, locale_path: String) -> Dictionary: # Dicti for line in lines: var halves := line.split("=", true, 1) - dict[halves[0].strip_edges()] = halves[1].strip_edges() + dict[halves[0].strip_edges()] = halves[1].strip_edges().replace("%n", "\n") return dict -- cgit v1.2.3-70-g09d2