Remove period from the list of valid characters.

Period is not allowed in Android strings.
This commit is contained in:
Sebastian Celis 2016-01-12 06:18:11 -06:00
parent fdb1e3489f
commit 9c0fc9b296

View file

@ -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|