diff options
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r-- | macosx/Controller.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 6a8bd095e..d478cde11 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -524,7 +524,7 @@ static int FormatSettings[3][4] = [fStatusField setStringValue: _( @"Done." )]; [fRipIndicator setIndeterminate: NO]; [fRipIndicator setDoubleValue: 0.0]; - [fRipButton setTitle: _( @"Rip" )]; + [fRipButton setTitle: _( @"Start" )]; /* Restore dock icon */ [self UpdateDockIcon: -1.0]; @@ -532,7 +532,7 @@ static int FormatSettings[3][4] = [fPauseButton setEnabled: NO]; [fPauseButton setTitle: _( @"Pause" )]; [fRipButton setEnabled: YES]; - [fRipButton setTitle: _( @"Rip" )]; + [fRipButton setTitle: _( @"Start" )]; /* FIXME */ hb_job_t * job; @@ -882,7 +882,7 @@ static int FormatSettings[3][4] = bool e = ( [fQueueCheck state] == NSOnState ); [fQueueAddButton setHidden: !e]; [fQueueShowButton setHidden: !e]; - [fRipButton setTitle: e ? @"Start" : @"Rip"]; + [fRipButton setTitle: e ? @"Start" : @"Start"]; } - (IBAction) AddToQueue: (id) sender |