aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Models
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
parent1b84f9bcf2d480431608d8fb08d0671bc945211d (diff)
h-source:added the other_names entry
Diffstat (limited to 'h-source/Application/Models')
-rw-r--r--h-source/Application/Models/AcquisitioncardsModel.php3
-rw-r--r--h-source/Application/Models/BluetoothModel.php3
-rw-r--r--h-source/Application/Models/FingerprintreadersModel.php3
-rw-r--r--h-source/Application/Models/PrintersModel.php3
-rw-r--r--h-source/Application/Models/ScannersModel.php3
-rw-r--r--h-source/Application/Models/SoundcardsModel.php3
-rw-r--r--h-source/Application/Models/ThreegcardsModel.php3
-rw-r--r--h-source/Application/Models/VideocardsModel.php3
-rw-r--r--h-source/Application/Models/WebcamsModel.php3
-rw-r--r--h-source/Application/Models/WifiModel.php3
10 files changed, 20 insertions, 10 deletions
diff --git a/h-source/Application/Models/AcquisitioncardsModel.php b/h-source/Application/Models/AcquisitioncardsModel.php
index 7114dd3..67d71eb 100644
--- a/h-source/Application/Models/AcquisitioncardsModel.php
+++ b/h-source/Application/Models/AcquisitioncardsModel.php
@@ -56,6 +56,7 @@ class AcquisitioncardsModel 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 AcquisitioncardsModel extends GenericModel
'description' => gtext('Description'),
);
- $this->fieldsWithBreaks = array(gtext('Description'));
+ $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device'));
parent::__construct();
}
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();
}
diff --git a/h-source/Application/Models/FingerprintreadersModel.php b/h-source/Application/Models/FingerprintreadersModel.php
index 83be7db..ea249a9 100644
--- a/h-source/Application/Models/FingerprintreadersModel.php
+++ b/h-source/Application/Models/FingerprintreadersModel.php
@@ -56,6 +56,7 @@ class FingerprintreadersModel 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 FingerprintreadersModel extends GenericModel
'description' => gtext('Description'),
);
- $this->fieldsWithBreaks = array(gtext('Description'));
+ $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device'));
parent::__construct();
}
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();
}
diff --git a/h-source/Application/Models/ScannersModel.php b/h-source/Application/Models/ScannersModel.php
index f30b505..72825b5 100644
--- a/h-source/Application/Models/ScannersModel.php
+++ b/h-source/Application/Models/ScannersModel.php
@@ -52,6 +52,7 @@ class ScannersModel 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"),
@@ -62,7 +63,7 @@ class ScannersModel extends GenericModel
'description' => gtext('Description'),
);
- $this->fieldsWithBreaks = array(gtext('Description'));
+ $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device'));
parent::__construct();
}
diff --git a/h-source/Application/Models/SoundcardsModel.php b/h-source/Application/Models/SoundcardsModel.php
index f872427..71c8125 100644
--- a/h-source/Application/Models/SoundcardsModel.php
+++ b/h-source/Application/Models/SoundcardsModel.php
@@ -56,6 +56,7 @@ class SoundcardsModel 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 SoundcardsModel extends GenericModel
'description' => gtext('Description'),
);
- $this->fieldsWithBreaks = array(gtext('Description'));
+ $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device'));
parent::__construct();
}
diff --git a/h-source/Application/Models/ThreegcardsModel.php b/h-source/Application/Models/ThreegcardsModel.php
index 3579e01..5b0a7e7 100644
--- a/h-source/Application/Models/ThreegcardsModel.php
+++ b/h-source/Application/Models/ThreegcardsModel.php
@@ -57,6 +57,7 @@ class ThreegcardsModel 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"),
@@ -67,7 +68,7 @@ class ThreegcardsModel extends GenericModel
'description' => gtext('Description'),
);
- $this->fieldsWithBreaks = array(gtext('Description'));
+ $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device'));
parent::__construct();
}
diff --git a/h-source/Application/Models/VideocardsModel.php b/h-source/Application/Models/VideocardsModel.php
index 637cf21..4cac5a7 100644
--- a/h-source/Application/Models/VideocardsModel.php
+++ b/h-source/Application/Models/VideocardsModel.php
@@ -52,6 +52,7 @@ class VideocardsModel 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"),
@@ -62,7 +63,7 @@ class VideocardsModel extends GenericModel
'description' => gtext('Description'),
);
- $this->fieldsWithBreaks = array(gtext('Description'));
+ $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device'));
parent::__construct();
}
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();
}
diff --git a/h-source/Application/Models/WifiModel.php b/h-source/Application/Models/WifiModel.php
index 61b4136..3d15aa2 100644
--- a/h-source/Application/Models/WifiModel.php
+++ b/h-source/Application/Models/WifiModel.php
@@ -56,6 +56,7 @@ class WifiModel 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 WifiModel extends GenericModel
'description' => gtext('Description'),
);
- $this->fieldsWithBreaks = array(gtext('Description'));
+ $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device'));
parent::__construct();
}