git.ithinksw.org
/
MenuTunes.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added localized strings to everything, I think. Hope I didn't miss anything.
[MenuTunes.git]
/
StatusWindowController.m
diff --git
a/StatusWindowController.m
b/StatusWindowController.m
index
5533c5f
..
633c31c
100755
(executable)
--- a/
StatusWindowController.m
+++ b/
StatusWindowController.m
@@
-155,7
+155,7
@@
static StatusWindowController *sharedController;
text = [text stringByAppendingString:[@"\n" stringByAppendingString:track]];
}
if (playCount > -1) {
text = [text stringByAppendingString:[@"\n" stringByAppendingString:track]];
}
if (playCount > -1) {
- text = [text stringByAppendingString:[NSString stringWithFormat:@"\n
Play Count: %i"
, playCount]];
+ text = [text stringByAppendingString:[NSString stringWithFormat:@"\n
%@: %i", NSLocalizedString(@"playCount", @"Play Count")
, playCount]];
}
if ( rating > -1 ) {
}
if ( rating > -1 ) {
@@
-218,7
+218,7
@@
static StatusWindowController *sharedController;
{
[_window setImage:[NSImage imageNamed:@"Shuffle"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
{
[_window setImage:[NSImage imageNamed:@"Shuffle"]];
[_window setSizing:(ITTransientStatusWindowSizing)[df integerForKey:@"statusWindowSizing"]];
- [_window buildTextWindowWithString:( shuffle ?
@"Shuffle On" : @"Shuffle Off"
)];
+ [_window buildTextWindowWithString:( shuffle ?
NSLocalizedString(@"shuffleOn", @"Shuffle On") : NSLocalizedString(@"shuffleOff", @"Shuffle Off")
)];
[_window appear:self];
}
[_window appear:self];
}
@@
-227,11
+227,11
@@
static StatusWindowController *sharedController;
NSString *string = nil;
if ( mode == StatusWindowRepeatNone ) {
NSString *string = nil;
if ( mode == StatusWindowRepeatNone ) {
- string =
@"Repeat Off"
;
+ string =
NSLocalizedString(@"repeatOff", @"Repeat Off")
;
} else if ( mode == StatusWindowRepeatGroup ) {
} else if ( mode == StatusWindowRepeatGroup ) {
- string =
@"Repeat Playlist"
;
+ string =
NSLocalizedString(@"repeatPlaylist", @"Repeat Playlist")
;
} else if ( mode == StatusWindowRepeatTrack ) {
} else if ( mode == StatusWindowRepeatTrack ) {
- string =
@"Repeat One Track"
;
+ string =
NSLocalizedString(@"repeatOneTrack", @"Repeat One Track");
;
}
[_window setImage:[NSImage imageNamed:@"Repeat"]];
}
[_window setImage:[NSImage imageNamed:@"Repeat"]];