Changeset 5965
- Timestamp:
- May 29, 2008, 12:56:58 AM (14 years ago)
- Location:
- trunk/macosx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r5960 r5965 3278 3278 ButtonToolbarItem * item = [self standardToolbarButtonWithIdentifier: ident]; 3279 3279 3280 [item setLabel: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> label")];3280 [item setLabel: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> label")]; 3281 3281 [item setPaletteLabel: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> palette label")]; 3282 3282 [item setToolTip: NSLocalizedString(@"Quick Look", "QuickLook toolbar item -> tooltip")]; -
trunk/macosx/English.lproj/Localizable.strings
r5964 r5965 79 79 "%d transfers" = "%d transfers"; 80 80 81 /* stats -> bytes */ 81 /* stats -> bytes 82 Inspector -> selected torrents */ 82 83 "%llu bytes" = "%llu bytes"; 83 84 84 85 /* stats window -> times opened */ 85 86 "%llu times" = "%llu times"; 86 87 /* Inspector -> selected torrents */88 "%u bytes" = "%u bytes";89 87 90 88 /* time string */ … … 261 259 "Create a Torrent File" = "Create a Torrent File"; 262 260 261 /* Create toolbar item -> tooltip */ 262 "Create torrent file" = "Create torrent file"; 263 263 264 /* Create torrent -> select file 264 265 Create toolbar item -> palette label */ 265 266 "Create Torrent File" = "Create Torrent File"; 266 267 /* Create toolbar item -> tooltip */268 "Create torrent file" = "Create torrent file";269 267 270 268 /* Create torrent -> failed -> title */ … … 426 424 Action menu -> upload/download limit */ 427 425 "Limit (%d KB/s)" = "Limit (%d KB/s)"; 426 427 /* Inspector -> selected torrents */ 428 "llu bytes" = "llu bytes"; 428 429 429 430 /* Save log alert panel -> title */ … … 599 600 "Purple" = "Purple"; 600 601 601 /* QuickLook toolbar item -> tooltip 602 QuickLook toolbar item -> palette label */ 602 /* QuickLook toolbar item -> label 603 QuickLook toolbar item -> palette label 604 QuickLook toolbar item -> tooltip */ 603 605 "Quick Look" = "Quick Look"; 604 605 /* QuickLook toolbar item -> label */606 "QuickLook" = "QuickLook";607 606 608 607 /* Transmission already running alert -> button -
trunk/macosx/InfoWindowController.m
r5920 r5965 231 231 [NSString stringWithFormat: NSLocalizedString(@"%@ total", "Inspector -> selected torrents"), 232 232 [NSString stringForFileSize: size]]]]; 233 [fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@" %u bytes", "Inspector -> selected torrents"),233 [fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"llu bytes", "Inspector -> selected torrents"), 234 234 size]]; 235 235 } … … 375 375 } 376 376 [fBasicInfoField setStringValue: basicString]; 377 [fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"% u bytes", "Inspector -> selected torrents"),377 [fBasicInfoField setToolTip: [NSString stringWithFormat: NSLocalizedString(@"%llu bytes", "Inspector -> selected torrents"), 378 378 [torrent size]]]; 379 379
Note: See TracChangeset
for help on using the changeset viewer.