Title: [154547] trunk/Tools
Revision
154547
Author
[email protected]
Date
2013-08-24 09:39:53 -0700 (Sat, 24 Aug 2013)

Log Message

Don't treat NSLocalizedDescriptionKey and NSLocalizedRecoverySuggestionErrorKey as NSLocalized macros
https://bugs.webkit.org/show_bug.cgi?id=120249

Reviewed by Andreas Kling.

* Scripts/extract-localizable-strings:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (154546 => 154547)


--- trunk/Tools/ChangeLog	2013-08-24 16:33:15 UTC (rev 154546)
+++ trunk/Tools/ChangeLog	2013-08-24 16:39:53 UTC (rev 154547)
@@ -1,3 +1,12 @@
+2013-08-24  Anders Carlsson  <[email protected]>
+
+        Don't treat NSLocalizedDescriptionKey and NSLocalizedRecoverySuggestionErrorKey as NSLocalized macros
+        https://bugs.webkit.org/show_bug.cgi?id=120249
+
+        Reviewed by Andreas Kling.
+
+        * Scripts/extract-localizable-strings:
+
 2013-08-24  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Expose WebKitFrame in WebKit2GTK+ web extensions API

Modified: trunk/Tools/Scripts/extract-localizable-strings (154546 => 154547)


--- trunk/Tools/Scripts/extract-localizable-strings	2013-08-24 16:33:15 UTC (rev 154546)
+++ trunk/Tools/Scripts/extract-localizable-strings	2013-08-24 16:39:53 UTC (rev 154547)
@@ -212,7 +212,7 @@
             
             $previousToken = $token;
 
-            if ($token =~ /^NSLocalized/ && $token !~ /NSLocalizedDescriptionKey/ && $token !~ /NSLocalizedStringFromTableInBundle/ && $token !~ /NSLocalizedFileSizeDescription/) {
+            if ($token =~ /^NSLocalized/ && $token !~ /NSLocalizedDescriptionKey/ && $token !~ /NSLocalizedStringFromTableInBundle/ && $token !~ /NSLocalizedFileSizeDescription/ && $token !~ /NSLocalizedDescriptionKey/ && $token !~ /NSLocalizedRecoverySuggestionErrorKey/) {
                 print "$file:$.: found a use of an NSLocalized macro ($token); not supported\n";
                 $nestingLevel = 0 if !defined $nestingLevel;
                 $sawError = 1;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to