Merge branch 'saas-dev' into saas-showbuilder-fade-editor-restyling

This commit is contained in:
Albert Santoni 2015-09-04 11:21:00 -04:00
commit 1db1af3f2e
134 changed files with 119858 additions and 113185 deletions

View file

@ -329,150 +329,4 @@ class Billing
$result = Billing::makeRequest($credentials["url"], $query_string); $result = Billing::makeRequest($credentials["url"], $query_string);
} }
/**
* Returns an array of the current Airtime Pro plan IDs.
* This excludes any old, free, promotional, or custom plans.
*/
public static function getCurrentPaidProductIds()
{
$products = self::getProducts();
$productIds = array();
foreach ($products as $k => $p) {
array_push($productIds, $p["pid"]);
}
return $productIds;
}
/**
* Returns an array of the Awesome August 2015 Promotional plans
*/
public static function getAwesomeAugustPromoProducts()
{
$credentials = self::getAPICredentials();
$postfields = array();
$postfields["username"] = $credentials["username"];
$postfields["password"] = md5($credentials["password"]);
$postfields["action"] = "getproducts";
$postfields["responsetype"] = "json";
//gid is the Airtime product group id on whmcs
$postfields["gid"] = WHMCS_AIRTIME_GROUP_ID;
$query_string = "";
foreach ($postfields AS $k=>$v) $query_string .= "$k=".urlencode($v)."&";
$result = self::makeRequest($credentials["url"], $query_string);
$promoProducts = $result["products"]["product"];
foreach ($promoProducts as $k => $p) {
if (strpos($p["name"], "Awesome August 2015") === false) {
unset($promoProducts[$k]);
}
}
return $promoProducts;
}
/**
* Returns the eligible promo plan ID that corresponds to the regular paid plan.
*
* i.e. if the client wants to upgrade to the Plus plan this function returns the
* plan id of the Awesome August 2015 Plus plan.
*/
public static function getEligibleAwesomeAugustPromoPlanId($productName)
{
$promoPlans = self::getAwesomeAugustPromoProducts();
$promoPlanId = "";
foreach($promoPlans as $k => $p) {
if (strpos($p["name"], $productName) !== false) {
$promoPlanId = $p["pid"];
break;
}
}
return $promoPlanId;
}
public static function getProductName($productId)
{
$products = self::getProducts();
$productName = "";
foreach($products as $k => $p) {
if ($p["pid"] == $productId) {
$productName = $p["name"];
break;
}
}
return $productName;
}
public static function isClientEligibleForPromo($newProductId, $newProductBillingCycle)
{
// use this to check if client is upgrading from an old plan
$currentPaidPlanProductIds = self::getCurrentPaidProductIds();
$currentPlanProduct = self::getClientCurrentAirtimeProduct();
$currentPlanProductId = $currentPlanProduct["pid"];
$currentPlanBillingCycle = strtolower($currentPlanProduct["billingcycle"]);
if (self::isClientOnAwesomeAugustPromoPlan($currentPlanProductId)) {
$newEligiblePromoId = self::getEligibleAwesomeAugustPromoPlanId(
self::getProductName($newProductId)
);
if ($newProductBillingCycle == "annually" || $newEligiblePromoId > $currentPlanProductId) {
return true;
} else {
return false;
}
}
// if client is on trial plan, YES
if ($currentPlanProductId == AIRTIME_PRO_FREE_TRIAL_PLAN_ID) {
return true;
}
// if client is currently on monthly or annually or old/free plan AND (upgrading OR upgrading/downgrading to annual plan), YES
if ($currentPlanBillingCycle == "monthly" || $currentPlanBillingCycle == "free account"
|| $currentPlanBillingCycle == "annually") {
// is the client changing billing cycle to annual?
if ($newProductBillingCycle == "annually") {
return true;
}
// Is the client staying on monthly and upgrading?
// This won't hold true if the client is on an old/free plan because the
// old/free plan ids are higher than the current paid plan ids.
if ($newProductBillingCycle == "monthly" && $newProductId > $currentPlanProductId) {
return true;
}
// Is the client staying on monthly and upgrading from an old plan?
if ($newProductBillingCycle == "monthly" && !in_array($currentPlanProductId, $currentPaidPlanProductIds)
&& in_array($newProductId, $currentPaidPlanProductIds)) {
return true;
}
}
return false;
}
public static function isClientOnAwesomeAugustPromoPlan($currentPlanId)
{
$promoPlans = self::getAwesomeAugustPromoProducts();
foreach ($promoPlans as $k => $p) {
if ($p["pid"] == $currentPlanId) {
return true;
}
}
return false;
}
} }

View file

@ -18,7 +18,7 @@ class Application_Common_Timezone
'UTC' => DateTimeZone::UTC 'UTC' => DateTimeZone::UTC
); );
$tzlist = array(); $tzlist = array(NULL => "Use station default");
foreach ($regions as $name => $mask) { foreach ($regions as $name => $mask) {
$ids = DateTimeZone::listIdentifiers($mask); $ids = DateTimeZone::listIdentifiers($mask);

View file

@ -55,7 +55,7 @@ class Application_Common_UsabilityHints
return _("Upload some tracks below to add them to your library!"); return _("Upload some tracks below to add them to your library!");
} else { } else {
return sprintf(_("It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."), return sprintf(_("It looks like you haven't uploaded any audio files yet. %sUpload a file now%s."),
"<a href=\"/Plupload\">", "<a href=\"/plupload\">",
"</a>"); "</a>");
} }
} else if (!self::isFutureOrCurrentShowScheduled()) { } else if (!self::isFutureOrCurrentShowScheduled()) {
@ -63,7 +63,7 @@ class Application_Common_UsabilityHints
return _("Click the 'New Show' button and fill out the required fields."); return _("Click the 'New Show' button and fill out the required fields.");
} else { } else {
return sprintf(_("It looks like you don't have any shows scheduled. %sCreate a show now%s."), return sprintf(_("It looks like you don't have any shows scheduled. %sCreate a show now%s."),
"<a href=\"/Schedule\">", "<a href=\"/schedule\">",
"</a>"); "</a>");
} }
} else if (self::isCurrentShowEmpty()) { } else if (self::isCurrentShowEmpty()) {
@ -73,23 +73,23 @@ class Application_Common_UsabilityHints
return _("To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'."); return _("To start broadcasting, cancel the current linked show by clicking on it and selecting 'Cancel Show'.");
} else { } else {
return sprintf(_("Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show. return sprintf(_("Linked shows need to be filled with tracks before it starts. To start broadcasting cancel the current linked show and schedule an unlinked show.
%sCreate an unlinked show now%s."), "<a href=\"/Schedule\">", "</a>"); %sCreate an unlinked show now%s."), "<a href=\"/schedule\">", "</a>");
} }
} else { } else {
if ($userIsOnCalendarPage) { if ($userIsOnCalendarPage) {
return _("To start broadcasting, click on the current show and select 'Schedule Show'"); return _("To start broadcasting, click on the current show and select 'Schedule Tracks'");
} else { } else {
return sprintf(_("It looks like the current show needs more tracks. %sAdd tracks to your show now%s."), return sprintf(_("It looks like the current show needs more tracks. %sAdd tracks to your show now%s."),
"<a href=\"/Schedule\">", "<a href=\"/schedule\">",
"</a>"); "</a>");
} }
} }
} else if (!self::getCurrentShow() && self::isNextShowEmpty()) { } else if (!self::getCurrentShow() && self::isNextShowEmpty()) {
if ($userIsOnCalendarPage) { if ($userIsOnCalendarPage) {
return _("Click on the show starting next and select 'Schedule Show'"); return _("Click on the show starting next and select 'Schedule Tracks'");
} else { } else {
return sprintf(_("It looks like the next show is empty. %sAdd tracks to your show now%s."), return sprintf(_("It looks like the next show is empty. %sAdd tracks to your show now%s."),
"<a href=\"/Schedule\">", "<a href=\"/schedule\">",
"</a>"); "</a>");
} }
} else { } else {

View file

@ -10,7 +10,6 @@ class BillingController extends Zend_Controller_Action {
//Two of the actions in this controller return JSON because they're used for AJAX: //Two of the actions in this controller return JSON because they're used for AJAX:
$ajaxContext = $this->_helper->getHelper('AjaxContext'); $ajaxContext = $this->_helper->getHelper('AjaxContext');
$ajaxContext->addActionContext('vat-validator', 'json') $ajaxContext->addActionContext('vat-validator', 'json')
->addActionContext('promo-eligibility-check', 'json')
->addActionContext('is-country-in-eu', 'json') ->addActionContext('is-country-in-eu', 'json')
->initContext(); ->initContext();
} }
@ -20,33 +19,6 @@ class BillingController extends Zend_Controller_Action {
$this->_redirect('billing/upgrade'); $this->_redirect('billing/upgrade');
} }
public function promoEligibilityCheckAction()
{
$this->view->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);
$request = $this->getRequest();
if (!$request->isPost()) {
throw new Exception("Must POST data to promoEligibilityCheckAction.");
}
$data = $request->getPost();
$current_namespace = new Zend_Session_Namespace('csrf_namespace');
$observed_csrf_token = $this->_getParam('csrf_token');
$expected_csrf_token = $current_namespace->authtoken;
if($observed_csrf_token == $expected_csrf_token) {
$eligible = Billing::isClientEligibleForPromo(
$data["newproductid"], $data["newproductbillingcycle"]);
//Set the return JSON value
$this->_helper->json(array("result"=>$eligible));
} else {
$this->getResponse()->setHttpResponseCode(403);
$this->_helper->json(array("result"=>false, "error"=>"CSRF token did not match."));
}
}
public function upgradeAction() public function upgradeAction()
{ {
@ -66,14 +38,6 @@ class BillingController extends Zend_Controller_Action {
if ($form->isValid($formData)) { if ($form->isValid($formData)) {
// Check if client is eligible for promo and update the new product id if so
$eligibleForPromo = Billing::isClientEligibleForPromo(
$formData["newproductid"], $formData["newproductbillingcycle"]);
if ($eligibleForPromo) {
$newProductName = Billing::getProductName($formData["newproductid"]);
$formData["newproductid"] = Billing::getEligibleAwesomeAugustPromoPlanId($newProductName);
}
$credentials = Billing::getAPICredentials(); $credentials = Billing::getAPICredentials();
//Check if VAT should be applied or not to this invoice. //Check if VAT should be applied or not to this invoice.

View file

@ -24,95 +24,6 @@ class LibraryController extends Zend_Controller_Action
public function indexAction() public function indexAction()
{ {
$this->_redirect("showbuilder"); $this->_redirect("showbuilder");
// $CC_CONFIG = Config::getConfig();
//
// $request = $this->getRequest();
// $baseUrl = Application_Common_OsPath::getBaseDir();
//
// $this->view->headScript()->appendFile($baseUrl.'js/blockui/jquery.blockUI.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/contextmenu/jquery.contextMenu.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/datatables/js/jquery.dataTables.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/dataTables.pluginAPI.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/dataTables.fnSetFilteringDelay.js?'.$CC_CONFIG['airtime_version'],'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/dataTables.ColVis.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/dataTables.colReorder.min.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/dataTables.FixedColumns.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/datatables/plugin/dataTables.columnFilter.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
//
// $this->view->headScript()->appendFile($baseUrl.'js/airtime/buttons/buttons.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/airtime/utilities/utilities.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/airtime/library/library.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/airtime/library/events/library_playlistbuilder.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
//
// $this->view->headLink()->appendStylesheet($baseUrl.'css/media_library.css?'.$CC_CONFIG['airtime_version']);
// $this->view->headLink()->appendStylesheet($baseUrl.'css/jquery.contextMenu.css?'.$CC_CONFIG['airtime_version']);
// $this->view->headLink()->appendStylesheet($baseUrl.'css/datatables/css/ColVis.css?'.$CC_CONFIG['airtime_version']);
// $this->view->headLink()->appendStylesheet($baseUrl.'css/datatables/css/dataTables.colReorder.min.css?'.$CC_CONFIG['airtime_version']);
// $this->view->headLink()->appendStylesheet($baseUrl.'css/waveform.css?'.$CC_CONFIG['airtime_version']);
//
// $this->view->headScript()->appendFile($baseUrl.'js/airtime/library/spl.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/airtime/playlist/smart_blockbuilder.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
//
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/observer/observer.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/config.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/curves.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/fades.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/local_storage.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/controls.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/playout.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/track_render.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/track.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/time_scale.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
// $this->view->headScript()->appendFile($baseUrl.'js/waveformplaylist/playlist.js?'.$CC_CONFIG['airtime_version'], 'text/javascript');
//
// //arbitrary attributes need to be allowed to set an id for the templates.
// $this->view->headScript()->setAllowArbitraryAttributes(true);
// //$this->view->headScript()->appendScript(file_get_contents(APPLICATION_PATH.'/../public/js/waveformplaylist/templates/bottombar.tpl'),
// // 'text/template', array('id' => 'tpl_playlist_cues', 'noescape' => true));
//
// $this->view->headLink()->appendStylesheet($baseUrl.'css/playlist_builder.css?'.$CC_CONFIG['airtime_version']);
//
// try {
//
// $obj_sess = new Zend_Session_Namespace(UI_PLAYLISTCONTROLLER_OBJ_SESSNAME);
// if (isset($obj_sess->id)) {
// $objInfo = Application_Model_Library::getObjInfo($obj_sess->type);
// $obj = new $objInfo['className']($obj_sess->id);
// $userInfo = Zend_Auth::getInstance()->getStorage()->read();
// $user = new Application_Model_User($userInfo->id);
// $isAdminOrPM = $user->isUserType(array(UTYPE_SUPERADMIN, UTYPE_ADMIN, UTYPE_PROGRAM_MANAGER));
//
// if ($isAdminOrPM || $obj->getCreatorId() == $userInfo->id) {
// $this->view->obj = $obj;
// if ($obj_sess->type == "block") {
// $form = new Application_Form_SmartBlockCriteria();
// $form->startForm($obj_sess->id);
// $this->view->form = $form;
// }
// }
//
// $formatter = new LengthFormatter($obj->getLength());
// $this->view->length = $formatter->format();
// $this->view->type = $obj_sess->type;
// }
//
// //get user settings and determine if we need to hide
// // or show the playlist editor
// $showPlaylist = false;
// $data = Application_Model_Preference::getLibraryScreenSettings();
// if (!is_null($data)) {
// if ($data["playlist"] == "true") {
// $showPlaylist = true;
// }
// }
// $this->view->showPlaylist = $showPlaylist;
// } catch (PlaylistNotFoundException $e) {
// $this->playlistNotFound($obj_sess->type);
// } catch (Exception $e) {
// $this->playlistNotFound($obj_sess->type);
// Logging::info($e->getMessage());
// //$this->playlistUnknownError($e);
// }
} }
protected function playlistNotFound($p_type) protected function playlistNotFound($p_type)

View file

@ -51,8 +51,14 @@ class LocaleController extends Zend_Controller_Action
//library/events/library_showbuilder.js //library/events/library_showbuilder.js
//already in library/events/library_playlistbuilder.js //already in library/events/library_playlistbuilder.js
"Please select a cursor position on timeline." => _("Please select a cursor position on timeline."), "Please select a cursor position on timeline." => _("Please select a cursor position on timeline."),
"You haven't added any " => _("You haven't added any "), "You haven't added any tracks" => _("You haven't added any tracks"),
"Learn about " => _("Learn about "), "You haven't added any playlists" => _("You haven't added any playlists"),
"You haven't added any smart blocks" => _("You haven't added any smart blocks"),
"You haven't added any webstreams" => _("You haven't added any webstreams"),
"Learn about tracks" => _("Learn about tracks"),
"Learn about playlists" => _("Learn about playlists"),
"Learn about smart blocks" => _("Learn about smart blocks"),
"Learn about webstreams" => _("Learn about webstreams"),
"Click 'New' to create one." => _("Click 'New' to create one."), "Click 'New' to create one." => _("Click 'New' to create one."),
//"Adding 1 Item" => _("Adding 1 Item"), //"Adding 1 Item" => _("Adding 1 Item"),
//"Adding %s Items" => _("Adding %s Items"), //"Adding %s Items" => _("Adding %s Items"),
@ -267,6 +273,9 @@ class LocaleController extends Zend_Controller_Action
"Start" => _("Start"), "Start" => _("Start"),
"End" => _("End"), "End" => _("End"),
"Duration" => _("Duration"), "Duration" => _("Duration"),
"Filtering out " => _("Filtering out "),
" of " => _(" of "),
" records" => _(" records"),
//already in library/library.js //already in library/library.js
//"Title" => _("Title"), //"Title" => _("Title"),
//"Creator" => _("Creator"), //"Creator" => _("Creator"),

View file

@ -30,6 +30,7 @@ class PlaylistController extends Zend_Controller_Action
->addActionContext('get-block-info', 'json') ->addActionContext('get-block-info', 'json')
->addActionContext('shuffle', 'json') ->addActionContext('shuffle', 'json')
->addActionContext('empty-content', 'json') ->addActionContext('empty-content', 'json')
->addActionContext('change-playlist', 'json')
->initContext(); ->initContext();
//This controller writes to the session all over the place, so we're going to reopen it for writing here. //This controller writes to the session all over the place, so we're going to reopen it for writing here.
@ -201,6 +202,16 @@ class PlaylistController extends Zend_Controller_Action
$this->createFullResponse($obj); $this->createFullResponse($obj);
} }
public function changePlaylistAction() {
$this->view->layout()->disableLayout(); // Don't inject the standard Now Playing header.
$this->_helper->viewRenderer->setNoRender(true); // Don't use (phtml) templates
$id = $this->_getParam('id', null);
$type = $this->_getParam('type');
Application_Model_Library::changePlaylist($id, $type);
}
public function editAction() public function editAction()
{ {
$id = $this->_getParam('id', null); $id = $this->_getParam('id', null);
@ -241,7 +252,7 @@ class PlaylistController extends Zend_Controller_Action
Logging::info("Currently active {$type} {$obj_sess->id}"); Logging::info("Currently active {$type} {$obj_sess->id}");
if (in_array($obj_sess->id, $ids)) { if (in_array($obj_sess->id, $ids)) {
Logging::info("Deleting currently active {$type}"); Logging::info("Deleting currently active {$type}");
Application_Model_Library::changePlaylist(null, $type); // Application_Model_Library::changePlaylist(null, $type);
} else { } else {
Logging::info("Not deleting currently active {$type}"); Logging::info("Not deleting currently active {$type}");
$obj = new $objInfo['className']($obj_sess->id); $obj = new $objInfo['className']($obj_sess->id);
@ -595,10 +606,7 @@ class PlaylistController extends Zend_Controller_Action
$this->view->obj = $bl; $this->view->obj = $bl;
$this->view->id = $bl->getId(); $this->view->id = $bl->getId();
$this->view->form = $form; $this->view->form = $form;
$viewPath = 'playlist/smart-block.phtml'; $this->createFullResponse($bl, false, true);
$result['html'] = $this->view->render($viewPath);
$result['result'] = 1;
$this->_helper->json->sendJson($result);
} }
} catch (BlockNotFoundException $e) { } catch (BlockNotFoundException $e) {
$this->playlistNotFound('block', true); $this->playlistNotFound('block', true);

View file

@ -26,6 +26,7 @@ class PluploadController extends Zend_Controller_Action
$this->view->headLink()->appendStylesheet($baseUrl.'css/plupload.queue.css?'.$CC_CONFIG['airtime_version']); $this->view->headLink()->appendStylesheet($baseUrl.'css/plupload.queue.css?'.$CC_CONFIG['airtime_version']);
$this->view->headLink()->appendStylesheet($baseUrl.'css/addmedia.css?'.$CC_CONFIG['airtime_version']); $this->view->headLink()->appendStylesheet($baseUrl.'css/addmedia.css?'.$CC_CONFIG['airtime_version']);
$this->view->headLink()->appendStylesheet($baseUrl.'css/dashboard.css?'.$CC_CONFIG['airtime_version']);
$this->view->quotaLimitReached = false; $this->view->quotaLimitReached = false;
if (Application_Model_Systemstatus::isDiskOverQuota()) { if (Application_Model_Systemstatus::isDiskOverQuota()) {

View file

@ -82,7 +82,7 @@ class Zend_Controller_Plugin_Acl extends Zend_Controller_Plugin_Abstract
* @param string $module * @param string $module
* @return void * @return void
**/ **/
public function setErrorPage($action, $controller = 'error', $module = null) public function setErrorPage($action, $controller = 'error', $module = 'default')
{ {
$this->_errorPage = array('module' => $module, $this->_errorPage = array('module' => $module,
'controller' => $controller, 'controller' => $controller,
@ -204,7 +204,8 @@ class Zend_Controller_Plugin_Acl extends Zend_Controller_Plugin_Abstract
$resourceName, $resourceName,
$request->getActionName())) { $request->getActionName())) {
/** Redirect to access denied page */ /** Redirect to access denied page */
$this->denyAccess(); $this->setErrorPage('error403');
$this->denyAccess(); /* This results in a 404! */
} }
} }
} }

View file

@ -14,7 +14,7 @@ class Application_Form_BillingClient extends Zend_Form
$emailValidator = Application_Form_Helper_ValidationTypes::overrideEmailAddressValidator(); $emailValidator = Application_Form_Helper_ValidationTypes::overrideEmailAddressValidator();
$firstname = new Zend_Form_Element_Text('firstname'); $firstname = new Zend_Form_Element_Text('firstname');
$firstname->setLabel(_('First Name:')) $firstname->setLabel(_pro('First Name:'))
->setValue($client["firstname"]) ->setValue($client["firstname"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -23,7 +23,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($firstname); $this->addElement($firstname);
$lastname = new Zend_Form_Element_Text('lastname'); $lastname = new Zend_Form_Element_Text('lastname');
$lastname->setLabel(_('Last Name:')) $lastname->setLabel(_pro('Last Name:'))
->setValue($client["lastname"]) ->setValue($client["lastname"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -32,7 +32,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($lastname); $this->addElement($lastname);
$companyname = new Zend_Form_Element_Text('companyname'); $companyname = new Zend_Form_Element_Text('companyname');
$companyname->setLabel(_('Company Name:')) $companyname->setLabel(_pro('Company Name:'))
->setValue($client["companyname"]) ->setValue($client["companyname"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(false) ->setRequired(false)
@ -41,7 +41,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($companyname); $this->addElement($companyname);
$email = new Zend_Form_Element_Text('email'); $email = new Zend_Form_Element_Text('email');
$email->setLabel(_('Email Address:')) $email->setLabel(_pro('Email Address:'))
->setValue($client["email"]) ->setValue($client["email"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -51,7 +51,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($email); $this->addElement($email);
$address1 = new Zend_Form_Element_Text('address1'); $address1 = new Zend_Form_Element_Text('address1');
$address1->setLabel(_('Address 1:')) $address1->setLabel(_pro('Address 1:'))
->setValue($client["address1"]) ->setValue($client["address1"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -60,14 +60,14 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($address1); $this->addElement($address1);
$address2 = new Zend_Form_Element_Text('address2'); $address2 = new Zend_Form_Element_Text('address2');
$address2->setLabel(_('Address 2:')) $address2->setLabel(_pro('Address 2:'))
->setValue($client["address2"]) ->setValue($client["address2"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->addFilter('StringTrim'); ->addFilter('StringTrim');
$this->addElement($address2); $this->addElement($address2);
$city = new Zend_Form_Element_Text('city'); $city = new Zend_Form_Element_Text('city');
$city->setLabel(_('City:')) $city->setLabel(_pro('City:'))
->setValue($client["city"]) ->setValue($client["city"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -77,7 +77,7 @@ class Application_Form_BillingClient extends Zend_Form
//TODO: get list from whmcs? //TODO: get list from whmcs?
$state = new Zend_Form_Element_Text('state'); $state = new Zend_Form_Element_Text('state');
$state->setLabel(_('State/Region:')) $state->setLabel(_pro('State/Region:'))
->setValue($client["state"]) ->setValue($client["state"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -86,7 +86,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($state); $this->addElement($state);
$postcode = new Zend_Form_Element_Text('postcode'); $postcode = new Zend_Form_Element_Text('postcode');
$postcode->setLabel(_('Zip Code / Postal Code:')) $postcode->setLabel(_pro('Zip Code / Postal Code:'))
->setValue($client["postcode"]) ->setValue($client["postcode"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -99,7 +99,7 @@ class Application_Form_BillingClient extends Zend_Form
asort($countries, SORT_LOCALE_STRING); asort($countries, SORT_LOCALE_STRING);
$country = new Zend_Form_Element_Select('country'); $country = new Zend_Form_Element_Select('country');
$country->setLabel(_('Country:')) $country->setLabel(_pro('Country:'))
->setValue($client["country"]) ->setValue($client["country"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setMultiOptions($countries) ->setMultiOptions($countries)
@ -109,7 +109,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($country); $this->addElement($country);
$phonenumber = new Zend_Form_Element_Text('phonenumber'); $phonenumber = new Zend_Form_Element_Text('phonenumber');
$phonenumber->setLabel(_('Phone Number:')) $phonenumber->setLabel(_pro('Phone Number:'))
->setValue($client["phonenumber"]) ->setValue($client["phonenumber"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -118,7 +118,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($phonenumber); $this->addElement($phonenumber);
$securityqid = new Zend_Form_Element_Select('securityqid'); $securityqid = new Zend_Form_Element_Select('securityqid');
$securityqid->setLabel(_('Please choose a security question:')) $securityqid->setLabel(_pro('Please choose a security question:'))
->setValue($client["securityqid"]) ->setValue($client["securityqid"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -132,7 +132,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($securityqid); $this->addElement($securityqid);
$securityqans = new Zend_Form_Element_Text('securityqans'); $securityqans = new Zend_Form_Element_Text('securityqans');
$securityqans->setLabel(_('Please enter an answer:')) $securityqans->setLabel(_pro('Please enter an answer:'))
->setValue($client["securityqans"]) ->setValue($client["securityqans"])
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
->setRequired(true) ->setRequired(true)
@ -149,7 +149,7 @@ class Application_Form_BillingClient extends Zend_Form
} }
$vat = new Zend_Form_Element_Text("7"); $vat = new Zend_Form_Element_Text("7");
$vat->setLabel(_('VAT/Tax ID (EU only)')) $vat->setLabel(_pro('VAT/Tax ID (EU only)'))
->setBelongsTo('customfields') ->setBelongsTo('customfields')
->setValue($vatvalue) ->setValue($vatvalue)
->setAttrib('class', 'input_text') ->setAttrib('class', 'input_text')
@ -159,7 +159,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($vat); $this->addElement($vat);
$subscribe = new Zend_Form_Element_Checkbox('71'); $subscribe = new Zend_Form_Element_Checkbox('71');
$subscribe->setLabel(_('Subscribe to Sourcefabric newsletter')) $subscribe->setLabel(_pro('Subscribe to Sourcefabric newsletter'))
->setValue($subscribevalue) ->setValue($subscribevalue)
->setBelongsTo('customfields') ->setBelongsTo('customfields')
->setAttrib('class', 'billing-details-checkbox') ->setAttrib('class', 'billing-details-checkbox')
@ -169,7 +169,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($subscribe); $this->addElement($subscribe);
$password = new Zend_Form_Element_Password('password2'); $password = new Zend_Form_Element_Password('password2');
$password->setLabel(_('Password:')); $password->setLabel(_pro('Password:'));
$password->setAttrib('class', 'input_text'); $password->setAttrib('class', 'input_text');
$password->setValue("xxxxxx"); $password->setValue("xxxxxx");
$password->setRequired(true); $password->setRequired(true);
@ -178,7 +178,7 @@ class Application_Form_BillingClient extends Zend_Form
$this->addElement($password); $this->addElement($password);
$passwordVerify = new Zend_Form_Element_Password('password2verify'); $passwordVerify = new Zend_Form_Element_Password('password2verify');
$passwordVerify->setLabel(_('Verify Password:')); $passwordVerify->setLabel(_pro('Verify Password:'));
$passwordVerify->setAttrib('class', 'input_text'); $passwordVerify->setAttrib('class', 'input_text');
$passwordVerify->setValue("xxxxxx"); $passwordVerify->setValue("xxxxxx");
$passwordVerify->setRequired(true); $passwordVerify->setRequired(true);
@ -190,7 +190,7 @@ class Application_Form_BillingClient extends Zend_Form
$submit = new Zend_Form_Element_Submit("submit"); $submit = new Zend_Form_Element_Submit("submit");
$submit->setIgnore(true) $submit->setIgnore(true)
->setLabel(_("Save")); ->setLabel(_pro("Save"));
$this->addElement($submit); $this->addElement($submit);
} }
} }

View file

@ -122,10 +122,13 @@ class Application_Form_EditUser extends Zend_Form
$locale->setDecorators(array('ViewHelper')); $locale->setDecorators(array('ViewHelper'));
$this->addElement($locale); $this->addElement($locale);
$stationTz = Application_Model_Preference::GetTimezone($currentUserId);
$userTz = Application_Model_Preference::GetUserTimezone($currentUserId);
$timezone = new Zend_Form_Element_Select("cu_timezone"); $timezone = new Zend_Form_Element_Select("cu_timezone");
$timezone->setLabel(_("Interface Timezone:")); $timezone->setLabel(_("Interface Timezone:"));
$timezone->setMultiOptions(Application_Common_Timezone::getTimezones()); $timezone->setMultiOptions(Application_Common_Timezone::getTimezones());
$timezone->setValue(Application_Model_Preference::GetUserTimezone($currentUserId)); $timezone->setValue($userTz == $stationTz ? null : $userTz);
$timezone->setDecorators(array('ViewHelper')); $timezone->setDecorators(array('ViewHelper'));
$this->addElement($timezone); $this->addElement($timezone);

View file

@ -1,4 +1,4 @@
<?php <?php
require_once 'customfilters/ImageSize.php'; require_once 'customfilters/ImageSize.php';

View file

@ -37,19 +37,17 @@ class Application_Form_Login extends Zend_Form
)); ));
// Add username element // Add username element
$this->addElement('text', 'username', array( $username = new Zend_Form_Element_Text("username");
'label' => _('Username:'), $username->setLabel(_('Username:'))
->setAttribs(array(
'autofocus' => 'true',
'class' => 'input_text', 'class' => 'input_text',
'required' => true, 'required' => 'true'))
'value' => (isset($CC_CONFIG['demo']) && $CC_CONFIG['demo'] == 1)?'admin':'', ->setValue((isset($CC_CONFIG['demo']) && $CC_CONFIG['demo'] == 1)?'admin':'')
'filters' => array('StringTrim'), ->addFilter('StringTrim')
'validators' => array( ->setDecorators(array('ViewHelper'))
'NotEmpty', ->setValidators(array('NotEmpty'));
), $this->addElement($username);
'decorators' => array(
'ViewHelper'
)
));
// Add password element // Add password element
$this->addElement('password', 'password', array( $this->addElement('password', 'password', array(

View file

@ -370,6 +370,10 @@ class Application_Form_SmartBlockCriteria extends Zend_Form_SubForm
// add elelments that needs to be added // add elelments that needs to be added
// set multioption for modifier according to criteria_field // set multioption for modifier according to criteria_field
$modRowMap = array(); $modRowMap = array();
if (!isset($data['criteria'])) {
return $data;
}
foreach ($data['criteria'] as $critKey=>$d) { foreach ($data['criteria'] as $critKey=>$d) {
$count = 1; $count = 1;
foreach ($d as $modKey=>$modInfo) { foreach ($d as $modKey=>$modInfo) {

View file

@ -67,7 +67,9 @@ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
</li> </li>
</ul> </ul>
<a href="/Plupload"> <a href="/Plupload">
<button id="add_media_btn" class="btn btn-small dashboard-btn">Upload</button> <button id="add_media_btn" class="btn btn-small dashboard-btn btn-new">
<span><?php echo _("Upload") ?></span>
</button>
</a> </a>
</div> </div>
<div class="media_type_selector top-link" data-selection-id="1"> <div class="media_type_selector top-link" data-selection-id="1">

View file

@ -1517,6 +1517,7 @@ SQL;
$i++; $i++;
} }
} }
}
// check if file exists // check if file exists
$qry->add("file_exists", "true", Criteria::EQUAL); $qry->add("file_exists", "true", Criteria::EQUAL);
@ -1537,7 +1538,6 @@ SQL;
Logging::warning("Unimplemented sortTracks type in ".__FILE__); Logging::warning("Unimplemented sortTracks type in ".__FILE__);
} }
}
// construct limit restriction // construct limit restriction
$limits = array(); $limits = array();

View file

@ -69,8 +69,7 @@ class Application_Model_Datatables
if (isset($data['advSearch']) && $data['advSearch'] === 'true') { if (isset($data['advSearch']) && $data['advSearch'] === 'true') {
$librarySetting = $librarySetting = Application_Model_Preference::getCurrentLibraryTableColumnMap();
Application_Model_Preference::getCurrentLibraryTableColumnMap();
//$displayColumns[] = 'owner'; //$displayColumns[] = 'owner';
// map that maps original column position to db name // map that maps original column position to db name

View file

@ -28,7 +28,9 @@ class Application_Model_Preference
{ {
$cache = new Cache(); $cache = new Cache();
$con = Propel::getConnection(CcPrefPeer::DATABASE_NAME); $con = Propel::getConnection(CcPrefPeer::DATABASE_NAME);
$con->beginTransaction();
//We are using row-level locking in Postgres via "FOR UPDATE" instead of a transaction here
//because sometimes this function needs to be called while a transaction is already started.
try { try {
/* Comment this out while we reevaluate it in favor of a unique constraint /* Comment this out while we reevaluate it in favor of a unique constraint
@ -40,7 +42,7 @@ class Application_Model_Preference
} }
//Check if key already exists //Check if key already exists
$sql = "SELECT COUNT(*) FROM cc_pref" $sql = "SELECT valstr FROM cc_pref"
." WHERE keystr = :key"; ." WHERE keystr = :key";
$paramMap = array(); $paramMap = array();
@ -52,9 +54,11 @@ class Application_Model_Preference
$paramMap[':id'] = $userId; $paramMap[':id'] = $userId;
} }
$sql .= " FOR UPDATE";
$result = Application_Common_Database::prepareAndExecute($sql, $result = Application_Common_Database::prepareAndExecute($sql,
$paramMap, $paramMap,
Application_Common_Database::COLUMN, Application_Common_Database::ROW_COUNT,
PDO::FETCH_ASSOC, PDO::FETCH_ASSOC,
$con); $con);
@ -99,13 +103,11 @@ class Application_Model_Preference
Application_Common_Database::prepareAndExecute($sql, Application_Common_Database::prepareAndExecute($sql,
$paramMap, $paramMap,
'execute', Application_Common_Database::EXECUTE,
PDO::FETCH_ASSOC, PDO::FETCH_ASSOC,
$con); $con);
$con->commit();
} catch (Exception $e) { } catch (Exception $e) {
$con->rollback();
header('HTTP/1.0 503 Service Unavailable'); header('HTTP/1.0 503 Service Unavailable');
Logging::info("Database error: ".$e->getMessage()); Logging::info("Database error: ".$e->getMessage());
exit; exit;
@ -477,10 +479,6 @@ class Application_Model_Preference
public static function SetUserTimezone($timezone = null) public static function SetUserTimezone($timezone = null)
{ {
// When a new user is created they will get the default timezone
// setting which the admin sets on preferences page
if (is_null($timezone))
$timezone = self::GetDefaultTimezone();
self::setValue("user_timezone", $timezone, true); self::setValue("user_timezone", $timezone, true);
} }
@ -520,10 +518,10 @@ class Application_Model_Preference
public static function GetUserLocale() public static function GetUserLocale()
{ {
$locale = self::getValue("user_locale", true); $locale = self::getValue("user_locale", true);
if (!$locale) { // empty() checks for null and empty strings - more robust than !val
if (empty($locale)) {
return self::GetDefaultLocale(); return self::GetDefaultLocale();
} } else {
else {
return $locale; return $locale;
} }
} }

View file

@ -847,6 +847,10 @@ SQL;
*/ */
public static function createAndFillShowInstancesPastPopulatedUntilDate($needScheduleUntil) public static function createAndFillShowInstancesPastPopulatedUntilDate($needScheduleUntil)
{ {
$con = Propel::getConnection(CcPrefPeer::DATABASE_NAME);
try {
$con->beginTransaction();
//UTC DateTime object //UTC DateTime object
$showsPopUntil = Application_Model_Preference::GetShowsPopulatedUntil(); $showsPopUntil = Application_Model_Preference::GetShowsPopulatedUntil();
//if application is requesting shows past our previous populated until date, generate shows up until this point. //if application is requesting shows past our previous populated until date, generate shows up until this point.
@ -855,6 +859,12 @@ SQL;
$ccShow = $service_show->delegateInstanceCreation(null, $needScheduleUntil, true); $ccShow = $service_show->delegateInstanceCreation(null, $needScheduleUntil, true);
Application_Model_Preference::SetShowsPopulatedUntil($needScheduleUntil); Application_Model_Preference::SetShowsPopulatedUntil($needScheduleUntil);
} }
$con->commit();
} catch (Exception $e) {
$con->rollBack();
throw $e;
}
} }
/** /**

View file

@ -78,7 +78,7 @@ class Application_Service_CalendarService
$menu["schedule"] = array( $menu["schedule"] = array(
// "name"=> _("Add / Remove Content"), // "name"=> _("Add / Remove Content"),
"name" => _("Schedule Show"), "name" => _("Schedule Tracks"),
"icon" => "add-remove-content", "icon" => "add-remove-content",
"url" => $baseUrl."showbuilder/builder-dialog/"); "url" => $baseUrl."showbuilder/builder-dialog/");
} }
@ -142,7 +142,8 @@ class Application_Service_CalendarService
if ($isRepeating) { if ($isRepeating) {
if ($populateInstance) { if ($populateInstance) {
$menu["edit"] = array( $menu["edit"] = array(
"name" => _("Edit This Instance"), // "name" => _("Edit This Instance"),
"name" => _("Edit Instance"),
"icon" => "edit", "icon" => "edit",
"url" => $baseUrl . "Schedule/populate-repeating-show-instance-form" "url" => $baseUrl . "Schedule/populate-repeating-show-instance-form"
); );
@ -160,7 +161,8 @@ class Application_Service_CalendarService
); );
$menu["edit"]["items"]["instance"] = array( $menu["edit"]["items"]["instance"] = array(
"name" => _("Edit This Instance"), // "name" => _("Edit This Instance"),
"name" => _("Edit Instance"),
"icon" => "edit", "icon" => "edit",
"url" => $baseUrl . "Schedule/populate-repeating-show-instance-form" "url" => $baseUrl . "Schedule/populate-repeating-show-instance-form"
); );
@ -188,12 +190,14 @@ class Application_Service_CalendarService
"items" => array()); "items" => array());
$menu["del"]["items"]["single"] = array( $menu["del"]["items"]["single"] = array(
"name"=> _("Delete This Instance"), // "name"=> _("Delete This Instance"),
"name"=> _("Delete Instance"),
"icon" => "delete", "icon" => "delete",
"url" => $baseUrl."schedule/delete-show-instance"); "url" => $baseUrl."schedule/delete-show-instance");
$menu["del"]["items"]["following"] = array( $menu["del"]["items"]["following"] = array(
"name"=> _("Delete This Instance and All Following"), // "name"=> _("Delete This Instance and All Following"),
"name"=> _("Delete Instance and All Following"),
"icon" => "delete", "icon" => "delete",
"url" => $baseUrl."schedule/delete-show"); "url" => $baseUrl."schedule/delete-show");
} elseif ($populateInstance) { } elseif ($populateInstance) {

View file

@ -120,30 +120,6 @@ function configureByCountry(countryCode)
}); });
} }
function promoEligibilityCheck()
{
var newproductid = $("input[type='radio'][name='newproductid']:checked").val();
// newproductid can be undefined if the client is currently on an old plan
// and they just change the billing cycle value without selecting a new plan type.
// In this case, let's not check if they are eligible for the promo because
// they won't be able to upgrade without selecting a new plan first.
if (newproductid === undefined) {
return;
}
var newproductbillingcycle = $("input[type='radio'][name='newproductbillingcycle']:checked").val();
$.post("/billing/promo-eligibility-check", {"newproductid": newproductid,
"newproductbillingcycle": newproductbillingcycle, "csrf_token": $("#csrf").attr('value')})
.success(function(data) {
if (data.result == true) {
$("#promo-plan-eligible").show();
} else if ($("#promo-plan-eligible").is(":visible")) {
$("#promo-plan-eligible").hide();
}
});
}
$(document).ready(function() { $(document).ready(function() {
configureByCountry($("#country").val()); configureByCountry($("#country").val());
@ -152,11 +128,9 @@ $(document).ready(function() {
$("input[name='newproductid']").change(function() { $("input[name='newproductid']").change(function() {
validatePlan(); validatePlan();
recalculateTotals(); recalculateTotals();
promoEligibilityCheck();
}); });
$("input[name='newproductbillingcycle']").change(function() { $("input[name='newproductbillingcycle']").change(function() {
recalculateTotals(); recalculateTotals();
promoEligibilityCheck();
}); });
$("#country").change(function() { $("#country").change(function() {
@ -194,19 +168,15 @@ $(document).ready(function() {
</script> </script>
<div class="ui-widget prefpanel clearfix padded-strong billing-panel"> <div class="ui-widget prefpanel clearfix padded-strong billing-panel">
<H2><?=_("Account Plans")?></H2> <H2><?=_pro("Account Plans")?></H2>
<H4><?=_("Upgrade today to get more listeners and storage space!")?></H4> <H4><?=_pro("Upgrade today to get more listeners and storage space!")?></H4>
<div>
<a href="https://www.airtime.pro/pricing#promo-details" target="_blank">
<img width="400px" height="133px" class="promo-banner" /></a>
</div>
<div class="pricing-grid"> <div class="pricing-grid">
<table> <table>
<tr> <tr>
<th>Awesome Hobbyist</th> <th>Hobbyist</th>
<th>Awesome Starter</th> <th>Starter</th>
<th>Awesome Plus</th> <th>Plus</th>
<th>Awesome Premium</th> <th>Premium</th>
</tr> </tr>
<tr> <tr>
<td>1 Stream <td>1 Stream
@ -228,40 +198,25 @@ $(document).ready(function() {
<td class="last-column">64kbps, 128kbps, and 196kbps Stream Quality <td class="last-column">64kbps, 128kbps, and 196kbps Stream Quality
</td> </td>
</tr> </tr>
<tr class="august-promo"> <tr>
<td> <td>5 Listeners
<span>5 Listeners</span><br>
<div>10 Listeners</div>
</td> </td>
<td> <td>40 Listeners per stream
<span>40 Listeners per stream</span><br>
<div>80 Listeners per stream</div>
</td> </td>
<td> <td>100 Listeners per stream
<span>100 Listeners per stream</span><br>
<div>200 Listeners per stream</div>
</td> </td>
<td class="last-column"> <td class="last-column">500 Listeners per stream
<span>500 Listeners per stream</span><br>
<div>1000 Listeners per stream</div>
</td> </td>
</tr> </tr>
<tr class="august-promo"> <tr>
<td> <td>2GB Storage
<span>2GB Storage</span><br>
<div>4GB Storage</div>
</td> </td>
<td> <td>5GB Storage
<span>5GB Storage</span><br>
<div>10GB Storage</div>
</td> </td>
<td> <td>30GB Storage
<span>30GB Storage</span><br>
<div>60GB Storage</div>
</td> </td>
<td class="last-column"> <td class="last-column">
<span>150GB Storage</span><br> 150GB Storage
<div>300GB Storage</div>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -297,9 +252,9 @@ $(document).ready(function() {
</table> </table>
</div> </div>
<!-- <!--
<p> <a target="_blank" href="https://www.airtime.pro/pricing"><?=_("View Plans")?></a> (Opens in a new window)</p> <p> <a target="_blank" href="https://www.airtime.pro/pricing"><?=_pro("View Plans")?></a> (Opens in a new window)</p>
--> -->
<p id="current_plan"><span>Your Current Plan:</span> <p id="current_plan"><span><?php echo(_pro('Your Current Plan:')); ?></span>
<?php <?php
$currentProduct = Billing::getClientCurrentAirtimeProduct(); $currentProduct = Billing::getClientCurrentAirtimeProduct();
echo($currentProduct["name"]); echo($currentProduct["name"]);
@ -307,7 +262,7 @@ echo($currentProduct["name"]);
?> ?>
</p> </p>
<h3>Choose a plan:</h3> <h3>echo(_pro('Choose a plan: ')); ?></h3>
<form id="<?php echo $form->getId(); ?>" method="<?php echo $form->getMethod() ?>" action="<?php echo <form id="<?php echo $form->getId(); ?>" method="<?php echo $form->getMethod() ?>" action="<?php echo
$form->getAction()?>" enctype="<?php echo $form->getEncType();?>"> $form->getAction()?>" enctype="<?php echo $form->getEncType();?>">
@ -323,10 +278,6 @@ echo($currentProduct["name"]);
Save 15% on annual plans (Hobbyist plan excluded). Save 15% on annual plans (Hobbyist plan excluded).
</div> </div>
<div class="clearfix"></div> <div class="clearfix"></div>
<div id="promo-plan-eligible" style="display:none;">
Congratulations, you are eligible for an Awesome Promotional Plan!
</div>
<div class="clearfix"></div>
<div id="subtotal_box"> <div id="subtotal_box">
<b>Subtotal:</b><br> <b>Subtotal:</b><br>
<span class="subtotal"></span><br> <span class="subtotal"></span><br>
@ -337,7 +288,7 @@ echo($currentProduct["name"]);
VAT will be added below if you are an EU resident without a valid VAT number. VAT will be added below if you are an EU resident without a valid VAT number.
</div> </div>
<h3>Enter your payment details:</h3> <h3><?=_pro("Please enter your payment details:");?></h3>
<?php if (isset($this->errorMessage)) {?> <?php if (isset($this->errorMessage)) {?>
<div class="errors"><?php echo $this->errorMessage ?></div> <div class="errors"><?php echo $this->errorMessage ?></div>
<?php }?> <?php }?>

View file

@ -4,7 +4,7 @@
<?php echo $this->element->getElement('sb_date_end'); ?> <?php echo $this->element->getElement('sb_date_end'); ?>
<?php echo $this->element->getElement('sb_time_end'); ?> <?php echo $this->element->getElement('sb_time_end'); ?>
<a id="sb_submit" class="btn btn-small" href="#" title="Display shows in the specified date and time range"> <a id="sb_submit" class="btn btn-small" href="#" title="Display shows in the specified date and time range">
<i class="icon-white icon-search"></i><?php echo " "._("Find Shows") ?> <i class="icon-white icon-search"></i><span><?php echo _("Find Shows") ?></span>
</a> </a>
<?php echo $this->element->getElement('sb_show_filter') ?> <?php echo $this->element->getElement('sb_show_filter') ?>

View file

@ -89,9 +89,9 @@
} }
$nextDisabled = $this->element->getElement("sp_criteria_field_".$nextIndex)->getAttrib('disabled') == 'disabled'?true:false; $nextDisabled = $this->element->getElement("sp_criteria_field_".$nextIndex)->getAttrib('disabled') == 'disabled'?true:false;
?> ?>
<div <?php if (($i > 0) && $disabled) { <div <?php if (/*($i > 0) && */ $disabled) {
echo 'style=display:none'; echo 'style=display:none';
} ?>> } ?> >
<?php echo $this->element->getElement("sp_criteria_field_".$i."_".$j) ?> <?php echo $this->element->getElement("sp_criteria_field_".$i."_".$j) ?>
<?php echo $this->element->getElement("sp_criteria_modifier_".$i."_".$j) ?> <?php echo $this->element->getElement("sp_criteria_modifier_".$i."_".$j) ?>
<?php echo $this->element->getElement("sp_criteria_value_".$i."_".$j) ?> <?php echo $this->element->getElement("sp_criteria_value_".$i."_".$j) ?>

View file

@ -6,7 +6,7 @@
<div class="trial-box-calendar-gray"><?php echo _("days") ?></div> <div class="trial-box-calendar-gray"><?php echo _("days") ?></div>
</div> </div>
<div class="trial-box-button"> <div class="trial-box-button">
<a title="<?php echo sprintf(_("Purchase an %s Pro plan!"), PRODUCT_NAME)?>" href="/billing/upgrade"><?php echo _("My Account") ?></a> <a title="<?php echo sprintf(_pro("Purchase an %s plan!"), SAAS_PRODUCT_BRANDING_NAME)?>" href="/billing/upgrade"><?php echo _pro("My Account") ?></a>
</div> </div>
</div> </div>
<?php }?> <?php }?>

View file

@ -18,7 +18,7 @@
<div id="plupload_files"></div> <div id="plupload_files"></div>
</form> </form>
--> -->
<div id="upload_form" class="lib-content ui-widget ui-widget-content block-shadow padded wide-panel <?php if ($this->quotaLimitReached) { ?> hidden <?php } ?>"> <div id="upload_form" class="lib-content ui-widget ui-widget-content block-shadow padded content-pane wide-panel<?php if ($this->quotaLimitReached) { ?> hidden <?php } ?>">
<?php <?php
$partitions = Application_Model_Systemstatus::GetDiskInfo(); $partitions = Application_Model_Systemstatus::GetDiskInfo();
$status = new StdClass; $status = new StdClass;
@ -58,7 +58,7 @@
<table></table> <table></table>
</div> </div>
<div id="recent_uploads_wrapper" class="lib-content ui-widget ui-widget-content block-shadow wide-panel"> <div id="recent_uploads_wrapper" class="lib-content ui-widget ui-widget-content block-shadow content-pane wide-panel">
<div id="recent_uploads" class="outer-datatable-wrapper padded"> <div id="recent_uploads" class="outer-datatable-wrapper padded">
<div id="recent_uploads_filter"> <div id="recent_uploads_filter">
<form> <form>
@ -68,10 +68,8 @@
</form> </form>
</div> </div>
<H2><?php echo _("Recent Uploads")?></H2> <H2><?php echo _("Recent Uploads")?></H2>
<div class="dataTables_scrolling">
<table id="recent_uploads_table" class="datatable lib-content ui-widget ui-widget-content block-shadow" <table id="recent_uploads_table" class="datatable lib-content ui-widget ui-widget-content block-shadow"
cellpadding="0" cellspacing="0"></table> cellpadding="0" cellspacing="0"></table>
</div> </div>
</div>
<div style="clear: both;"></div> <div style="clear: both;"></div>
</div> </div>

View file

@ -7,6 +7,7 @@
<div class="panel-header"> <div class="panel-header">
<div id="advanced-options" class="btn-group"> <div id="advanced-options" class="btn-group">
<button class="btn btn-small dropdown-toggle" data-toggle="dropdown"> <button class="btn btn-small dropdown-toggle" data-toggle="dropdown">
<span id="filter_message"></span>
<span class="caret"></span> <span class="caret"></span>
</button> </button>
<div id="advanced_search" class="advanced_search form-horizontal dropdown-menu"></div> <div id="advanced_search" class="advanced_search form-horizontal dropdown-menu"></div>

View file

@ -353,7 +353,9 @@ INSERT INTO cc_locale (locale_code, locale_lang) VALUES ('zh_CN', '简体中文'
-- added in 2.5.2 -- added in 2.5.2
INSERT INTO cc_pref (keystr, valstr) VALUES ('timezone', 'UTC'); INSERT INTO cc_pref (keystr, valstr) VALUES ('timezone', 'UTC');
INSERT INTO cc_pref (subjid, keystr, valstr) VALUES (1, 'user_timezone', 'UTC'); -- We don't want to set the user timezone by default - it should instead use the station timezone
-- until the user changes it manually.
-- INSERT INTO cc_pref (subjid, keystr, valstr) VALUES (1, 'user_timezone', 'UTC');
INSERT INTO cc_pref (keystr, valstr) VALUES ('import_timestamp', '0'); INSERT INTO cc_pref (keystr, valstr) VALUES ('import_timestamp', '0');

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,152 @@
#: airtime_mvc/application/controllers/LoginController.php:170
#, php-format
msgid "That username or email address could not be found. If you are the station owner, you should <a href=\"%s\">reset your here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/plupload/index.phtml:9
#, php-format
msgid "Disk quota exceeded. You cannot upload files until you %s upgrade your storage"
msgstr ""
#: airtime_mvc/application/views/scripts/form/password-restore.phtml:4
#, php-format
msgid "If you are the primary owner of this station, <a href=\"%s\">please reset your password here</a>."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:16
msgid "Thank you!"
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:17
msgid "Your station has been upgraded successfully."
msgstr ""
#: airtime_mvc/application/views/scripts/thank-you/index.phtml:18
msgid "Return to Airtime"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
#, php-format
msgid "Purchase an %s plan!"
msgstr ""
#: airtime_mvc/application/views/scripts/partialviews/trialBox.phtml:9
msgid "My Account"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:171
msgid "Account Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:172
msgid "Upgrade today to get more listeners and storage space!"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:255
msgid "View Plans"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:257
msgid "Your Current Plan:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/upgrade.phtml:291
msgid "Please enter your payment details:"
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:7 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle." msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr "" msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11 #: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\"<br> and look for the \"Checkout\" button." msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:17
msgid "First Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:26
msgid "Last Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:35
msgid "Company Name:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:44
msgid "Email Address:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:54
msgid "Address 1:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:63
msgid "Address 2:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:70
msgid "City:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:80
msgid "State/Region:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:89
msgid "Zip Code / Postal Code:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:102
msgid "Country:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:112
msgid "Phone Number:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:121
msgid "Please choose a security question:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:135
msgid "Please enter an answer:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:152
msgid "VAT/Tax ID (EU only)"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:162
msgid "Subscribe to Sourcefabric newsletter"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:172
msgid "Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:181
msgid "Verify Password:"
msgstr ""
#: airtime_mvc/application/forms/BillingClient.php:193
msgid "Save"
msgstr ""
#: airtime_mvc/application/models/Auth.php:35
#, php-format
msgid ""
"\n"
"\n"
"If you have any problems, please contact our support team: %s"
msgstr ""
#: airtime_mvc/application/models/Auth.php:36
#, php-format
msgid ""
"\n"
"\n"
"Thank you,\n"
"The %s Team"
msgstr "" msgstr ""

Some files were not shown because too many files have changed in this diff Show more