From 1aeee66812ed91885f1233e1607f3272059a49b1 Mon Sep 17 00:00:00 2001 From: Dwayne Bailey Date: Wed, 7 Aug 2024 16:17:56 +0100 Subject: [PATCH] Consistent space indents for Android strings Indent with 4 spaces and fix the broken plural \t\s*2 indentation --- lib/twine/formatters/android.rb | 16 ++++++++++------ test/fixtures/formatter_android.xml | 16 ++++++++-------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/lib/twine/formatters/android.rb b/lib/twine/formatters/android.rb index eabef60..bbcf5c7 100644 --- a/lib/twine/formatters/android.rb +++ b/lib/twine/formatters/android.rb @@ -108,21 +108,25 @@ module Twine end def format_section_header(section) - "\t" + "#{space(4)}" end def format_comment(definition, lang) - "\t\n" if definition.comment + "#{space(4)}\n" if definition.comment end def key_value_pattern - "\t%{value}" + "#{space(4)}%{value}" end def format_plural_keys(key, plural_hash) - result = "\t\n" - result += plural_hash.map{|quantity,value| "\t#{' ' * 2}#{escape_value(value)}"}.join("\n") - result += "\n\t" + result = "#{space(4)}\n" + result += plural_hash.map{|quantity,value| "#{space(8)}#{escape_value(value)}"}.join("\n") + result += "\n#{space(4)}" + end + + def space(level) + ' ' * level end def gsub_unless(text, pattern, replacement) diff --git a/test/fixtures/formatter_android.xml b/test/fixtures/formatter_android.xml index fe7d15f..7fcb655 100644 --- a/test/fixtures/formatter_android.xml +++ b/test/fixtures/formatter_android.xml @@ -1,12 +1,12 @@ - - - value1-english - value2-english + + + value1-english + value2-english - - value3-english - - value4-english + + value3-english + + value4-english