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/NJRIntervalField.m

    r102 r103  
    100100        proposedValue = [[self formatter] minimum];
    101101        alertMessage = [NSString stringWithFormat:
    102             NSLocalizedString(@"Ò%@Ó is too small for the %@ field.",
     102            NSLocalizedString(@"%@ is too small for the %@ field.",
    103103                              @"Message text for alert posed by numeric field when too-small value entered"),
    104104            string, label];
     
    113113        proposedValue = [[self formatter] maximum];
    114114        alertMessage = [NSString stringWithFormat:
    115             NSLocalizedString(@"Ò%@Ó is too large for the %@ field.",
     115            NSLocalizedString(@"%@ is too large for the %@ field.",
    116116                              @"Message text for alert posed by numeric field when too-large value entered"),
    117117            string, label];
     
    125125                                           @"Presented when user typed illegal characters: no valid object")]) {
    126126        alertMessage = [NSString stringWithFormat:
    127             NSLocalizedString(@"Ò%@Ó is not a valid entry for the %@ field.",
     127            NSLocalizedString(@"%@ is not a valid entry for the %@ field.",
    128128                              @"Message text for alert posed by text field when invalid value entered"),
    129129            string, label];
Note: See TracChangeset for help on using the changeset viewer.