From 329c735ea417a842a5ddeaef6c9ea402909406f1 Mon Sep 17 00:00:00 2001 From: Yuchen Wang Date: Mon, 28 Nov 2011 16:20:34 -0500 Subject: [PATCH] CC-3125: Small capitalization errors on SoundCloud text labels Fixed --- airtime_mvc/application/controllers/LibraryController.php | 4 ++-- airtime_mvc/application/controllers/ScheduleController.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/airtime_mvc/application/controllers/LibraryController.php b/airtime_mvc/application/controllers/LibraryController.php index 2dad3da53..99fa19b7a 100644 --- a/airtime_mvc/application/controllers/LibraryController.php +++ b/airtime_mvc/application/controllers/LibraryController.php @@ -92,9 +92,9 @@ class LibraryController extends Zend_Controller_Action 'title' => 'Download'); if (Application_Model_Preference::GetUploadToSoundcloudOption()) { - $text = "Upload to Soundcloud"; + $text = "Upload to SoundCloud"; if(!is_null($file->getSoundCloudId())){ - $text = "Re-upload to Soundcloud"; + $text = "Re-upload to SoundCloud"; } $menu[] = array('action' => array('type' => 'ajax', 'url' => '/Library/upload-file-soundcloud/id/#id#', 'callback'=>"window['addProgressIcon']('$file_id')"),'title' => $text); diff --git a/airtime_mvc/application/controllers/ScheduleController.php b/airtime_mvc/application/controllers/ScheduleController.php index 1e3d2b896..b22cb5659 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -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'); } }