Changeset 615


Ignore:
Timestamp:
03/02/10 08:02:56 (14 years ago)
Author:
Nicholas Riley
Message:

Remove ellipsis from "All Alarms" menu item in the Dock as well.

File:
1 edited

Legend:

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

    r601 r615  
    223223    item = [dockMenu addItemWithTitle: NSLocalizedString(@"Set Alarm...", "Dock menu item") action: @selector(orderFrontSetAlarmPanel:) keyEquivalent: @""];
    224224    [item setTarget: self];
    225     item = [dockMenu addItemWithTitle: [NSString stringWithFormat: NSLocalizedString(@"All Alarms (%d)...", "Dock menu item (%d replaced by number of alarms)"), [alarms alarmCount]] action: @selector(orderFrontAlarmsPanel:) keyEquivalent: @""];
     225    item = [dockMenu addItemWithTitle: [NSString stringWithFormat: NSLocalizedString(@"All Alarms (%d)", "Dock menu item (%d replaced by number of alarms)"), [alarms alarmCount]] action: @selector(orderFrontAlarmsPanel:) keyEquivalent: @""];
    226226    [item setTarget: self];
    227227    return [dockMenu autorelease];
Note: See TracChangeset for help on using the changeset viewer.