Strip newlines from Weblate source

This commit is contained in:
djoate 2019-11-26 04:57:07 -05:00
parent 1c67783cd1
commit 4ab759a52b
No known key found for this signature in database
GPG Key ID: E8366E2E207EFB0E
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ module Weblate
def add_entry(weblate_id, source_text)
unless id_already_exists?(weblate_id) or source_text.nil? or source_text.empty?
new_entry = <<-YAML
#{weblate_id}: |
#{weblate_id}: |-
#{source_text}
YAML
@ -44,7 +44,7 @@ module Weblate
end
def id_already_exists?(weblate_id)
File.readlines(weblate_source_location).grep(/^#{weblate_id}: \|$/).any?
File.readlines(weblate_source_location).grep(/^#{weblate_id}: \|-$/).any?
end
def refresh