aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Models/BluetoothModel.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-05-12 21:51:06 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-05-12 21:51:06 +0000
commit3c1f2dfdb82656dc47a1cb467d03e09e52792f24 (patch)
tree490a63fcaab8213346bb80657e61cde2245bf010 /h-source/Application/Models/BluetoothModel.php
parent1b84f9bcf2d480431608d8fb08d0671bc945211d (diff)
h-source:added the other_names entry
Diffstat (limited to 'h-source/Application/Models/BluetoothModel.php')
-rw-r--r--h-source/Application/Models/BluetoothModel.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/h-source/Application/Models/BluetoothModel.php b/h-source/Application/Models/BluetoothModel.php
index 39445bf..0b7f15d 100644
--- a/h-source/Application/Models/BluetoothModel.php
+++ b/h-source/Application/Models/BluetoothModel.php
@@ -56,6 +56,7 @@ class BluetoothModel 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 BluetoothModel extends GenericModel
'description' => gtext('Description'),
);
- $this->fieldsWithBreaks = array(gtext('Description'));
+ $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device'));
parent::__construct();
}