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