Remove period from the list of valid characters.
Period is not allowed in Android strings.
This commit is contained in:
parent
fdb1e3489f
commit
9c0fc9b296
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ module Twine
|
|||
duplicate_keys = Set.new
|
||||
keys_without_tags = Set.new
|
||||
invalid_keys = Set.new
|
||||
valid_key_regex = /^[A-Za-z0-9_.]+$/
|
||||
valid_key_regex = /^[A-Za-z0-9_]+$/
|
||||
|
||||
@strings.sections.each do |section|
|
||||
section.rows.each do |row|
|
||||
|
|
Reference in a new issue