Ignore:
Timestamp:
02/26/03 07:12:36 (21 years ago)
Author:
Nicholas Riley
Message:

Localization, bug fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cocoa/Pester/Source/PSAlarmSetController.m

    r102 r103  
    259259        float textHeight;
    260260        if (![self _setAlerts]) {
    261             [alertView setStringValue: [NSString stringWithFormat: @"CouldnÕt process alert information.\n%@", status]];
     261            [alertView setStringValue: [NSString stringWithFormat: @"%@\n%@", NSLocalizedString(@"Couldn't process alert information.", "Message shown in collapsed alert area when alert information is invalid or inconsistent (prevents setting alarm)"), status]];
    262262        } else {
    263263            NSAttributedString *string = [[alarm alerts] prettyList];
    264264            if (string == nil) {
    265                 [alertView setStringValue: @"Do nothing. Click the button labeled ÒEditÓ to add an alert."];
     265                [alertView setStringValue: NSLocalizedString(@"Do nothing. Click the button labeled 'Edit' to add an alert.", "Message shown in collapsed alert edit area when no alerts have been specified")];
    266266            } else {
    267267                [alertView setAttributedStringValue: string];
Note: See TracChangeset for help on using the changeset viewer.