mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Add ring group rollover strategy.
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user