~andymatuschak/sparkle/main

« back to all changes in this revision

Viewing changes to SUUIBasedUpdateDriver.m

  • Committer: Andy Matuschak
  • Date: 2009-01-08 18:49:41 UTC
  • Revision ID: andy@andymatuschak.org-20090108184941-51zuxp5cs6m9yi0g
Finishing fixing #279454 (up to date -> up-to-date)

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
{
43
43
        if ([[updater delegate] respondsToSelector:@selector(updaterDidNotFindUpdate:)])
44
44
                [[updater delegate] updaterDidNotFindUpdate:updater];
45
 
        NSAlert *alert = [NSAlert alertWithMessageText:SULocalizedString(@"You're up to date!", nil) defaultButton:SULocalizedString(@"OK", nil) alternateButton:nil otherButton:nil informativeTextWithFormat:SULocalizedString(@"%@ %@ is currently the newest version available.", nil), [host name], [host displayVersion]];
 
45
        NSAlert *alert = [NSAlert alertWithMessageText:SULocalizedString(@"You're up-to-date!", nil) defaultButton:SULocalizedString(@"OK", nil) alternateButton:nil otherButton:nil informativeTextWithFormat:SULocalizedString(@"%@ %@ is currently the newest version available.", nil), [host name], [host displayVersion]];
46
46
        [self showModalAlert:alert];
47
47
        [self abortUpdate];
48
48
}