Add ring group rollover strategy.

This commit is contained in:
Mark Crane 2014-02-25 04:55:50 +00:00
parent eeed105dff
commit e939f7f3f2
2 changed files with 14 additions and 1 deletions

View File

@ -81,8 +81,10 @@
$text['description-enter-context']['fr-fr'] = "";
$text['description-enter-context']['pt-pt'] = "Introduza um contexto.";
//HERE ALONE
$text['description-extension']['en-us'] = "Enter the extension number.";
$text['description-extension']['es-cl'] = "Introduzca el número de extensión.";
$text['description-extension']['pt-pt'] = "Digite o número do ramal.";
$text['description-extension']['fr-fr'] = "Entrez le numéro de poste.";
$text['description-name']['en-us'] = "Enter a name.";
$text['description-name']['es-cl'] = "Ingrese un nombre.";
@ -322,6 +324,11 @@
$text['option-enterprise']['fr-fr'] = "Entreprise";
$text['option-enterprise']['pt-pt'] = "Empresa";
$text['option-rollover']['en-us'] = "Rollover";
$text['option-rollover']['es-cl'] = "Rollover";
$text['option-rollover']['pt-pt'] = "Rollover";
$text['option-rollover']['fr-fr'] = "capotage";
$text['option-false']['en-us'] = "False";
$text['option-false']['es-cl'] = "Falso";
$text['option-false']['fr-fr'] = "Non";

View File

@ -479,6 +479,12 @@ else {
else {
echo " <option value='enterprise'>".$text['option-enterprise']."</option>\n";
}
if ($ring_group_strategy == "rollover") {
echo " <option value='rollover' selected='selected'>".$text['option-rollover']."</option>\n";
}
else {
echo " <option value='rollover'>".$text['option-rollover']."</option>\n";
}
echo " </select>\n";
echo "<br />\n";
echo $text['description-strategy']."\n";