From 44e94015dfb84836111448218f5b1a22417e53d0 Mon Sep 17 00:00:00 2001 From: Dwayne Bailey Date: Thu, 8 Aug 2024 14:05:15 +0100 Subject: [PATCH] Don't split sections with space --- lib/twine/formatters/apple_plural.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twine/formatters/apple_plural.rb b/lib/twine/formatters/apple_plural.rb index 7f2b98d..64aa069 100644 --- a/lib/twine/formatters/apple_plural.rb +++ b/lib/twine/formatters/apple_plural.rb @@ -18,7 +18,7 @@ module Twine end def format_footer(lang) - footer = "\n\n" + footer = "\n\n\n" end def format_file(lang) @@ -50,7 +50,7 @@ module Twine result += plural_hash.map{|quantity,value| "\t\t\t#{quantity}\n\t\t\t#{convert_placeholders_from_android_to_twine(value)}"}.join("\n") result += "\n" result += "\t\t\n" - result += "\t\n" + result += "\t" end def format_comment(definition, lang)