mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Removed blank select box value from Delay and Timeout, and minor language adjustments.
This commit is contained in:
@@ -138,13 +138,13 @@
|
||||
$text['label-prompt']['pt-pt'] = "Perguntar para aceitar a chamada";
|
||||
$text['label-prompt']['fr-fr'] = "Annonce pour accepter l'appel";
|
||||
|
||||
$text['check-true']['en-us'] = "true";
|
||||
$text['ckeck-true']['es-cl'] = "verdadero";
|
||||
$text['check-true']['en-us'] = "True";
|
||||
$text['ckeck-true']['es-cl'] = "Verdadero";
|
||||
$text['ckeck-true']['pt-pt'] = "Sim";
|
||||
$text['ckeck-true']['fr-fr'] = "Oui";
|
||||
|
||||
$text['check-false']['en-us'] = "false";
|
||||
$text['ckeck-false']['es-cl'] = "falso";
|
||||
$text['check-false']['en-us'] = "False";
|
||||
$text['ckeck-false']['es-cl'] = "Falso";
|
||||
$text['ckeck-false']['pt-pt'] = "Não";
|
||||
$text['ckeck-false']['fr-fr'] = "Non";
|
||||
|
||||
@@ -166,7 +166,7 @@
|
||||
$text['confirm-update']['en-us'] = "Update Complete";
|
||||
$text['confirm-update']['es-cl'] = "Actualización Completa";
|
||||
$text['confirm-update']['pt-pt'] = "Actualização Efectuada";
|
||||
$text['confirm-update']['fr-fr'] = "Mis à jour";
|
||||
$text['confirm-update']['fr-fr'] = "Mis à jour";
|
||||
|
||||
$text['table-extension']['en-us'] = "Extension";
|
||||
$text['table-extension']['es-cl'] = "Extensión";
|
||||
|
||||
@@ -44,8 +44,6 @@ else {
|
||||
function destination_select($select_name, $select_value, $select_default) {
|
||||
if (strlen($select_value) == 0) { $select_value = $select_default; }
|
||||
echo " <select class='formfld' style='width: 55px;' name='$select_name'>\n";
|
||||
echo " <option value=''></option>\n";
|
||||
|
||||
$i = 0;
|
||||
while($i <= 100) {
|
||||
if ($select_value == $i) {
|
||||
@@ -659,18 +657,17 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
||||
echo "</td>\n";
|
||||
echo "<td class='vtable' align='left'>\n";
|
||||
echo "<select class='formfld' name='call_prompt'>\n";
|
||||
echo "<option value=''></option>\n";
|
||||
if ($call_prompt == "true") {
|
||||
echo "<option value='true' selected='selected'>true</option>\n";
|
||||
}
|
||||
else {
|
||||
echo "<option value='true'>true</option>\n";
|
||||
}
|
||||
if ($call_prompt == "false") {
|
||||
echo "<option value='false' selected='selected'>false</option>\n";
|
||||
echo "<option value='false' selected='selected'>".$text['check-false']."</option>\n";
|
||||
}
|
||||
else {
|
||||
echo "<option value='false'>false</option>\n";
|
||||
echo "<option value='false'>".$text['check-false']."</option>\n";
|
||||
}
|
||||
if ($call_prompt == "true") {
|
||||
echo "<option value='true' selected='selected'>".$text['check-true']."</option>\n";
|
||||
}
|
||||
else {
|
||||
echo "<option value='true'>".$text['check-true']."</option>\n";
|
||||
}
|
||||
echo "</select>\n";
|
||||
echo "<br />\n";
|
||||
|
||||
Reference in New Issue
Block a user