Home | History | Annotate | Download | only in Scripts

Lines Matching refs:STRINGS

33 #    2) It supports UTF-8 in key strings (and hence uses "" strings rather than @"" strings;
34 # @"" strings only reliably support ASCII since they are decoded based on the system encoding
36 # 3) It looks for strings that are not marked for localization, using both macro names that are
43 # The exceptions file has a list of strings in quotes, filenames, and filename/string pairs separated by :.
51 @ARGV >= 1 or die "Usage: extract-localizable-strings <exceptions file> [ directory... ]\nDid you mean to run update-webkit-localizable-strings instead?\n";
335 print "$file:$line:encountered the same key, \"$key\", twice, with different strings\n";
363 print "$localizedCount localizable strings\n" if $localizedCount;
365 print "$notLocalizedCount strings not marked for localization\n" if $notLocalizedCount;
380 # Write out the strings file in UTF-16 with a BOM.
385 open STRINGS, ">", "$fileToUpdate" or die;
386 print STRINGS $output;
387 close STRINGS;