Removed empty Enabled select value, minor language mods

This commit is contained in:
Nate Jones
2014-04-27 09:56:46 +00:00
parent a70f8b7bbb
commit 600ff16f18
2 changed files with 5 additions and 6 deletions

View File

@@ -147,14 +147,14 @@
$text['label-action-message']['pt-pt'] = "Escolha uma acção para chamadas com origem neste número.";
$text['label-action-message']['fr-fr'] = "Choisir une action pour les appels venant de ce numéro.";
$text['label-true']['en-us'] = "true";
$text['label-true']['es-cl'] = "verdadero";
$text['label-true']['pt-pt'] = "sim";
$text['label-true']['en-us'] = "True";
$text['label-true']['es-cl'] = "Verdadero";
$text['label-true']['pt-pt'] = "Sim";
$text['label-true']['fr-fr'] = "Oui";
$text['label-false']['en-us'] = "false";
$text['label-false']['en-us'] = "False";
$text['label-false']['es-cl'] = "falso";
$text['label-false']['pt-pt'] = "não";
$text['label-false']['pt-pt'] = "Não";
$text['label-false']['fr-fr'] = "Non";
$text['label-enable-message']['en-us'] = "Set to true to enable call blocking for this number.";

View File

@@ -284,7 +284,6 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo "</td>\n";
echo "<td class='vtable' align='left'>\n";
echo " <select class='formfld' name='call_block_enabled'>\n";
echo " <option value=''></option>\n";
echo " <option value='true' ".(($call_block_enabled == "true") ? "selected" : null).">".$text['label-true']."</option>\n";
echo " <option value='false' ".(($call_block_enabled == "false") ? "selected" : null).">".$text['label-false']."</option>\n";
echo " </select>\n";