mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Fax Server: Multiple file upload, customize contact info line and footer in cover sheet, other minor tweaks.
This commit is contained in:
@@ -148,6 +148,21 @@
|
||||
$text['label-auto']['pt-pt'] = "Automático";
|
||||
$text['label-auto']['fr-fr'] = "Automatique";
|
||||
|
||||
$text['label-normal']['en-us'] = "Normal";
|
||||
$text['label-normal']['es-cl'] = "Normal";
|
||||
$text['label-normal']['pt-pt'] = "Normal";
|
||||
$text['label-normal']['fr-fr'] = "Normal";
|
||||
|
||||
$text['label-fine']['en-us'] = "Fine";
|
||||
$text['label-fine']['es-cl'] = "Fine";
|
||||
$text['label-fine']['pt-pt'] = "Belas";
|
||||
$text['label-fine']['fr-fr'] = "Fin";
|
||||
|
||||
$text['label-superfine']['en-us'] = "Superfine";
|
||||
$text['label-superfine']['es-cl'] = "Superfino";
|
||||
$text['label-superfine']['pt-pt'] = "Extrafino";
|
||||
$text['label-superfine']['fr-fr'] = "Superfin";
|
||||
|
||||
$text['button-add']['en-us'] = "Add";
|
||||
$text['button-add']['es-cl'] = "Agregar";
|
||||
$text['button-add']['pt-pt'] = "Adicionar";
|
||||
|
||||
@@ -446,6 +446,13 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
||||
echo " <option value='a4' ".(($row['default_setting_value'] == 'a4') ? 'selected' : null).">A4</option>";
|
||||
echo " </select>";
|
||||
}
|
||||
elseif ($category == "fax" && $subcategory == "resolution" && $name == "text" ) {
|
||||
echo " <select id='default_setting_value' name='default_setting_value' class='formfld' style=''>\n";
|
||||
echo " <option value='normal' ".(($row['default_setting_value'] == 'normal') ? 'selected' : null).">".$text['label-normal']."</option>";
|
||||
echo " <option value='fine' ".(($row['default_setting_value'] == 'fine') ? 'selected' : null).">".$text['label-fine']."</option>";
|
||||
echo " <option value='superfine' ".(($row['default_setting_value'] == 'superfine') ? 'selected' : null).">".$text['label-fine']."</option>";
|
||||
echo " </select>";
|
||||
}
|
||||
else {
|
||||
echo " <input class='formfld' type='text' name='default_setting_value' maxlength='255' value=\"".$row['default_setting_value']."\">\n";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user