diff options
Diffstat (limited to 'h-source/Application/Models/PrintersModel.php')
-rw-r--r-- | h-source/Application/Models/PrintersModel.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/h-source/Application/Models/PrintersModel.php b/h-source/Application/Models/PrintersModel.php index f69d543..b5b2f49 100644 --- a/h-source/Application/Models/PrintersModel.php +++ b/h-source/Application/Models/PrintersModel.php @@ -52,6 +52,7 @@ class PrintersModel extends GenericModel $this->diffFields = array( 'vendor' => gtext("vendor"), 'model' => gtext('model name'), + 'other_names' => gtext('possible other names of the device'), 'subtype' => gtext('subtype')." (laser, inkjet, ..)", 'pci_id' => gtext("VendorID:ProductID code of the device"), 'comm_year' => gtext('year of commercialization'), @@ -63,7 +64,7 @@ class PrintersModel extends GenericModel 'description' => gtext('Description'), ); - $this->fieldsWithBreaks = array(gtext('Description')); + $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device')); parent::__construct(); } |