Lines Matching refs:keys
43 # This script reads a list of message keys from an input file and
44 # checks all Java source files for the usage of these keys.
49 # load message keys (or "msg.key=msg text" pairs)
50 keys = IO.readlines("msgs-with-no-ids.txt")
51 keys.collect! { |item|
52 # only interested in message keys (so remove msg text)
62 def build_regex(keys)
63 #puts keys
65 keys.each { |key|
72 #puts keys
74 regex = build_regex(keys)
77 keys_total = keys.size
132 keys_not_found = keys - keys_found
134 puts "#{keys_not_found.size} of provided #{keys_total} message keys were not found:\n" +