CC-3125: Small capitalization errors on SoundCloud text labels

Fixed
This commit is contained in:
Yuchen Wang 2011-11-28 16:20:34 -05:00
parent 3047ca8238
commit 329c735ea4
2 changed files with 4 additions and 4 deletions

View file

@ -217,11 +217,11 @@ class ScheduleController extends Zend_Controller_Action
if(is_null($show->getSoundCloudFileId())){
$menu[] = array('action' => array('type' => 'fn',
'callback' => "window['uploadToSoundCloud']($id)"),
'title' => 'Upload to Soundcloud');
'title' => 'Upload to SoundCloud');
}else{
$menu[] = array('action' => array('type' => 'fn',
'callback' => "window['uploadToSoundCloud']($id)"),
'title' => 'Re-upload to Soundcloud');
'title' => 'Re-upload to SoundCloud');
}
}