Changeset 12754 in webkit


Ignore:
Timestamp:
Feb 11, 2006 8:03:26 AM (18 years ago)
Author:
sullivan
Message:

Reviewed by John Sullivan.

  • English.lproj/Localizable.strings: Added new UI_STRING().
  • Misc/WebKitErrors.m: Added #define for description. (registerErrors): Added dictionary entry.
Location:
trunk/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r12727 r12754  
     12006-02-11  David Kilzer  <ddkilzer@kilzer.net>
     2
     3        Reviewed by John Sullivan.
     4
     5        - Fix http://bugzilla.opendarwin.org/show_bug.cgi?id=7171
     6        No description in WebKitErrors.m for WebKitErrorPlugInWillHandleLoad
     7
     8        * English.lproj/Localizable.strings: Added new UI_STRING().
     9        * Misc/WebKitErrors.m: Added #define for description.
     10        (registerErrors): Added dictionary entry.
     11
    1122006-02-09  Tim Omernick  <timo@apple.com>
    213
  • trunk/WebKit/English.lproj/Localizable.strings

    r12325 r12754  
    179179"Plug-in cancelled" = "Plug-in cancelled";
    180180
     181/* WebKitErrorPlugInWillHandleLoad description */
     182"Plug-in handled load" = "Plug-in handled load";
     183
    181184/* processing instruction node type name */
    182185"Processing Instruction" = "Processing Instruction";
  • trunk/WebKit/Misc/WebKitErrors.m

    r12070 r12754  
    5151#define WebKitErrorDescriptionJavaUnavailable UI_STRING("Java is unavailable", "WebKitErrorJavaUnavailable description")
    5252#define WebKitErrorDescriptionPlugInCancelledConnection UI_STRING("Plug-in cancelled", "WebKitErrorPlugInCancelledConnection description")
     53#define WebKitErrorDescriptionPlugInWillHandleLoad UI_STRING("Plug-in handled load", "WebKitErrorPlugInWillHandleLoad description")
    5354
    5455static pthread_once_t registerErrorsControl = PTHREAD_ONCE_INIT;
     
    152153        WebKitErrorDescriptionJavaUnavailable,          [NSNumber numberWithInt: WebKitErrorJavaUnavailable],
    153154        WebKitErrorDescriptionPlugInCancelledConnection,[NSNumber numberWithInt: WebKitErrorPlugInCancelledConnection],
     155        WebKitErrorDescriptionPlugInWillHandleLoad,     [NSNumber numberWithInt: WebKitErrorPlugInWillHandleLoad],
    154156        nil];
    155157
Note: See TracChangeset for help on using the changeset viewer.