Merge branch 'saas-dev' of github.com:sourcefabric/airtime into saas-dev

This commit is contained in:
Duncan Sommerville 2015-09-04 16:11:48 -04:00
commit 65ffe43589
93 changed files with 98875 additions and 106435 deletions

View file

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

View file

@ -168,8 +168,8 @@ $(document).ready(function() {
</script>
<div class="ui-widget prefpanel clearfix padded-strong billing-panel">
<H2><?=_("Account Plans")?></H2>
<H4><?=_("Upgrade today to get more listeners and storage space!")?></H4>
<H2><?=_pro("Account Plans")?></H2>
<H4><?=_pro("Upgrade today to get more listeners and storage space!")?></H4>
<div class="pricing-grid">
<table>
<tr>
@ -252,9 +252,9 @@ $(document).ready(function() {
</table>
</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
$currentProduct = Billing::getClientCurrentAirtimeProduct();
echo($currentProduct["name"]);
@ -262,7 +262,7 @@ echo($currentProduct["name"]);
?>
</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->getAction()?>" enctype="<?php echo $form->getEncType();?>">
@ -275,7 +275,7 @@ echo($currentProduct["name"]);
<?php echo $form->newproductbillingcycle ?>
</div>
<div id="billingcycle_disclaimer">
Save 15% on annual plans (Hobbyist plan excluded).
Save 15% on annual plans (Hobbyist plan excluded).
</div>
<div class="clearfix"></div>
<div id="subtotal_box">
@ -288,7 +288,7 @@ echo($currentProduct["name"]);
VAT will be added below if you are an EU resident without a valid VAT number.
</div>
<h3>Enter your payment details:</h3>
<h3><?=_pro("Please enter your payment details:");?></h3>
<?php if (isset($this->errorMessage)) {?>
<div class="errors"><?php echo $this->errorMessage ?></div>
<?php }?>

View file

@ -6,7 +6,7 @@
<div class="trial-box-calendar-gray"><?php echo _("days") ?></div>
</div>
<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>
<?php }?>

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Airtime 2.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-09-03 10:24-0400\n"
"POT-Creation-Date: 2015-09-04 11:17-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,6 +17,142 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -33,38 +169,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,139 @@
#: 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
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
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 ""
@ -14,38 +150,3 @@ msgid ""
"Thank you,\n"
"The %s Team"
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/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/billing/invoices.phtml:7
msgid "<b>Thank you!</b> Your plan has been updated and you will be invoiced during your next billing cycle."
msgstr ""
#: airtime_mvc/application/views/scripts/billing/invoices.phtml:11
msgid "Tip: To pay an invoice, click \"View Invoice\" and look for the \"Checkout\" button."
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/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 ""

View file

@ -0,0 +1,11 @@
Last updated: September 4, 2015
To update the Airtime translations:
- Make sure you run bootstrap_development_environment.sh as root once to set up this magic git merge driver for PO files.
- Run update_po_files.sh
- Commit the updated files.
- Push to GitHub.
- Transifex will then pick up the updated files in about 24 hours, and they'll be available for translation there.
- After translators have updated strings, they'll be automatically downloaded and committed to our git repo by
a script running here at Sourcefabric (contact Andrey).