HotUKDealsBridge.php 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397
  1. <?php
  2. require_once(__DIR__ . '/DealabsBridge.php');
  3. class HotUKDealsBridge extends PepperBridgeAbstract {
  4. const NAME = 'HotUKDeals bridge';
  5. const URI = 'https://www.hotukdeals.com/';
  6. const DESCRIPTION = 'Return the HotUKDeals search result using keywords';
  7. const MAINTAINER = 'sysadminstory';
  8. const PARAMETERS = array(
  9. 'Search by keyword(s))' => array (
  10. 'q' => array(
  11. 'name' => 'Keyword(s)',
  12. 'type' => 'text',
  13. 'required' => true
  14. ),
  15. 'hide_expired' => array(
  16. 'name' => 'Hide expired deals',
  17. 'type' => 'checkbox',
  18. 'required' => 'true'
  19. ),
  20. 'hide_local' => array(
  21. 'name' => 'Hide local deals',
  22. 'type' => 'checkbox',
  23. 'title' => 'Hide deals in physical store',
  24. 'required' => 'true'
  25. ),
  26. 'priceFrom' => array(
  27. 'name' => 'Minimal Price',
  28. 'type' => 'text',
  29. 'title' => 'Minmal Price in Pounds',
  30. 'required' => 'false',
  31. 'defaultValue' => ''
  32. ),
  33. 'priceTo' => array(
  34. 'name' => 'Maximum Price',
  35. 'type' => 'text',
  36. 'title' => 'Maximum Price in Pounds',
  37. 'required' => 'false',
  38. 'defaultValue' => ''
  39. ),
  40. ),
  41. 'Deals per group' => array(
  42. 'group' => array(
  43. 'name' => 'Group',
  44. 'type' => 'list',
  45. 'required' => 'true',
  46. 'title' => 'Group whose deals must be displayed',
  47. 'values' => array(
  48. '2DS' => '2ds',
  49. '3D Bluray' => '3d-bluray',
  50. '3D Glasses' => '3d-glasses',
  51. '3D Printer' => '3d-printer',
  52. '3DS' => '3ds',
  53. '3DS Games' => '3ds-games',
  54. '3D TV' => '3d-tv',
  55. '4G' => '4g',
  56. '4k Bluray' => '4k-bluray',
  57. '4k Monitor' => '4k-monitor',
  58. '4K TV' => '4k-tv',
  59. '7up' => '7up',
  60. '144Hz Monitor' => '144hz',
  61. 'AA Batteries' => 'aa',
  62. 'Acer' => 'acer',
  63. 'Actifry' => 'actifry',
  64. 'Action Camera' => 'action-camera',
  65. 'Add On Item' => 'add-on-item',
  66. 'Adidas' => 'adidas',
  67. 'Adobe' => 'adobe',
  68. 'Aftershave' => 'aftershave',
  69. 'Air Bed' => 'air-bed',
  70. 'Air Conditioner' => 'air-con',
  71. 'Air Fryer' => 'air-fryer',
  72. 'Airport Parking' => 'airport-parking',
  73. 'AKG' => 'akg',
  74. 'Alarm' => 'alarm',
  75. 'Alcatel' => 'alcatel',
  76. 'Alcohol' => 'alcohol',
  77. 'Alienware' => 'alienware',
  78. 'Alton Towers' => 'alton-towers',
  79. 'Amazon Echo' => 'amazon-echo',
  80. 'Amazon Fire Stick' => 'amazon-fire-stick',
  81. 'Amazon Fire Tv' => 'fire-tv',
  82. 'Amazon Pantry' => 'amazon-pantry',
  83. 'Amazon Prime' => 'amazon-prime',
  84. 'Amazon Warehouse' => 'amazon-warehouse',
  85. 'AMD' => 'amd',
  86. 'Amex' => 'amex',
  87. 'Amiibo' => 'amiibo',
  88. 'Amsterdam' => 'amsterdam',
  89. 'Android' => 'android',
  90. 'Android Tablet' => 'android-tablet',
  91. 'Android TV' => 'android-tv',
  92. 'Anker' => 'anker',
  93. 'Apple' => 'apple',
  94. 'Apple TV' => 'apple-tv',
  95. 'Apple Watch' => 'apple-watch',
  96. 'Armani' => 'armani',
  97. 'Asics' => 'asics',
  98. 'ASUS' => 'asus',
  99. 'Audi' => 'audi',
  100. 'Baby' => 'baby',
  101. 'Baby & Kids' => 'kids',
  102. 'Baby Monitor' => 'baby-monitor',
  103. 'Baby Swing' => 'baby-swing',
  104. 'Backpack' => 'backpack',
  105. 'Bag' => 'bag',
  106. 'Bank' => 'bank',
  107. 'Barbour' => 'barbour',
  108. 'Barcelona' => 'barcelona',
  109. 'Bathroom' => 'bathroom',
  110. 'Batman' => 'batman',
  111. 'Battery' => 'battery',
  112. 'Battlefield' => 'battlefield',
  113. 'Battlefield 1' => 'battlefield-1',
  114. 'BBQ' => 'bbq',
  115. 'Bean To Cup' => 'bean-to-cup',
  116. 'Beard Trimmer' => 'beard-trimmer',
  117. 'Bed' => 'bed',
  118. 'Bedding' => 'bedding',
  119. 'Bed Frame' => 'bed-frame',
  120. 'Beer' => 'beer',
  121. 'Beko' => 'beko',
  122. 'Belfast' => 'belfast',
  123. 'Bench' => 'bench',
  124. 'Berghaus' => 'berghaus',
  125. 'Bike' => 'bike',
  126. 'Bin' => 'bin',
  127. 'Bioshock' => 'bioshock',
  128. 'Black Ops 3' => 'black-ops-3',
  129. 'Blackpool' => 'blackpool',
  130. 'Blender' => 'blender',
  131. 'Blinds' => 'blinds',
  132. 'Bloodborne' => 'bloodborne',
  133. 'Blu-Ray' => 'blu-ray',
  134. 'Bluetooth Headphones' => 'bluetooth-headphones',
  135. 'Bluetooth Speaker' => 'bluetooth-speaker',
  136. 'BMW' => 'bmw',
  137. 'Board Game' => 'board-game',
  138. 'Boiler' => 'boiler',
  139. 'Bosch' => 'bosch',
  140. 'Bose' => 'bose',
  141. 'Bourbon' => 'bourbon',
  142. 'Boxers' => 'boxers',
  143. 'Bra' => 'bra',
  144. 'Braun' => 'braun',
  145. 'Breakdown' => 'breakdown',
  146. 'Brewdog' => 'brewdog',
  147. 'Brita' => 'brita',
  148. 'Broadband' => 'broadband',
  149. 'BT' => 'bt',
  150. 'Bt Sport' => 'bt-sport',
  151. 'Buggy' => 'buggy',
  152. 'Call Of Duty' => 'call-of-duty',
  153. 'Camera' => 'camera',
  154. 'Camera Lens' => 'lens',
  155. 'Camping' => 'camping',
  156. 'Candle' => 'candle',
  157. 'Canon' => 'canon',
  158. 'Canvas' => 'canvas',
  159. 'Car' => 'car',
  160. 'Caravan' => 'caravan',
  161. 'Car Battery' => 'car-battery',
  162. 'Car Hire' => 'car-hire',
  163. 'Car Insurance' => 'car-insurance',
  164. 'Car Lease' => 'car-lease',
  165. 'Car Mats' => 'car-mats',
  166. 'Carpet' => 'carpet',
  167. 'Carpet Cleaner' => 'carpet-cleaner',
  168. 'Car Seat' => 'car-seat',
  169. 'Car Stereo' => 'car-stereo',
  170. 'Casio' => 'casio',
  171. 'Caterpillar Boots' => 'caterpillar',
  172. 'Cat Food' => 'cat-food',
  173. 'CCTV' => 'cctv',
  174. 'Chainsaw' => 'chainsaw',
  175. 'Chair' => 'chair',
  176. 'Champagne' => 'champagne',
  177. 'Charger' => 'charger',
  178. 'Chessington' => 'chessington',
  179. 'Chest Freezer' => 'chest-freezer',
  180. 'Chocolate' => 'chocolate',
  181. 'Chromebook' => 'chromebook',
  182. 'Chromecast' => 'chromecast',
  183. 'Cider' => 'cider',
  184. 'Cinema' => 'cinema',
  185. 'Cineworld' => 'cineworld',
  186. 'Circular Saw' => 'circular-saw',
  187. 'Circulon' => 'circulon',
  188. 'Citizen' => 'citizen',
  189. 'Clarins' => 'clarins',
  190. 'Clarks' => 'clarks',
  191. 'Clinique' => 'clinique',
  192. 'Clothes' => 'clothes',
  193. 'Coat' => 'coat',
  194. 'Coffee' => 'coffee',
  195. 'Coffee Machine' => 'coffee-machine',
  196. 'Coke' => 'coke',
  197. 'Compost' => 'compost',
  198. 'Computers' => 'computers',
  199. 'Converse' => 'converse',
  200. 'Cooker' => 'cooker',
  201. 'Cordless Phone' => 'cordless-phone',
  202. 'Corsair' => 'corsair',
  203. 'Cot' => 'cot',
  204. 'CPU' => 'cpu',
  205. 'Crash Bandicoot' => 'crash-bandicoot',
  206. 'Credit Card' => 'credit-card',
  207. 'Cricket' => 'cricket',
  208. 'Crisps' => 'crisps',
  209. 'Crocs' => 'crocs',
  210. 'Cruise' => 'cruise',
  211. 'Cuprinol' => 'cuprinol',
  212. 'Cutlery' => 'cutlery',
  213. 'Dab Radio' => 'dab-radio',
  214. 'Dark Souls' => 'dark-souls',
  215. 'Dark Souls 3' => 'dark-souls-3',
  216. 'Dash Cam' => 'dash-cam',
  217. 'Days Out' => 'days-out',
  218. 'DDR3' => 'ddr3',
  219. 'DDR4' => 'ddr4',
  220. 'Deezer' => 'deezer',
  221. 'Dehumidifier' => 'dehumidifier',
  222. 'Dell' => 'dell',
  223. 'Delonghi' => 'delonghi',
  224. 'Denon' => 'denon',
  225. 'Desk' => 'desk',
  226. 'Desktop' => 'desktop',
  227. 'Destiny' => 'destiny',
  228. 'Destiny 2' => 'destiny-2',
  229. 'Deus Ex' => 'deus-ex',
  230. 'Dewalt' => 'dewalt',
  231. 'Digital Camera' => 'digital-camera',
  232. 'Dining Table' => 'dining-table',
  233. 'Dinner Set' => 'dinner-set',
  234. 'Dirt 4' => 'dirt-4',
  235. 'Dishonored 2' => 'dishonored-2',
  236. 'Dishwasher' => 'dishwasher',
  237. 'Disney' => 'disney',
  238. 'Disney Infinity' => 'disney-infinity',
  239. 'Disneyland' => 'disneyland',
  240. 'DIY' => 'diy',
  241. 'Doctor Who' => 'doctor-who',
  242. 'Dog' => 'dog',
  243. 'Dog Bed' => 'dog-bed',
  244. 'Dolce Gusto' => 'dolce-gusto',
  245. 'DOOM' => 'doom',
  246. 'Dremel' => 'dremel',
  247. 'Dress' => 'dress',
  248. 'Drill' => 'drill',
  249. 'Drone' => 'drone',
  250. 'Dryer' => 'dryer',
  251. 'DSLR Camera' => 'dslr',
  252. 'Dubai' => 'dubai',
  253. 'Dulux' => 'dulux',
  254. 'Durex' => 'durex',
  255. 'Duvet' => 'duvet',
  256. 'DVD' => 'dvd',
  257. 'DVD Player' => 'dvd-player',
  258. 'Dying Light' => 'dying-light',
  259. 'Dyson' => 'dyson',
  260. 'Dyson V6' => 'dyson-v6',
  261. 'Dyson V8' => 'dyson-v8',
  262. 'E-Cig' => 'e-cig',
  263. 'EA' => 'ea',
  264. 'EA Access' => 'ea-access',
  265. 'Earphones' => 'earphones',
  266. 'Earrings' => 'earrings',
  267. 'Eastpak' => 'eastpak',
  268. 'eBook' => 'ebook',
  269. 'Eco-Drive' => 'eco-drive',
  270. 'Ecobubble' => 'ecobubble',
  271. 'Edifice' => 'edifice',
  272. 'Edinburgh' => 'edinburgh',
  273. 'EE' => 'ee',
  274. 'Egg' => 'egg',
  275. 'Egypt' => 'egypt',
  276. 'Elder Scrolls' => 'elder-scrolls',
  277. 'Electric Bike' => 'electric-bike',
  278. 'Electric Cooker' => 'electric-cooker',
  279. 'Electric Fires' => 'electric-fire',
  280. 'Electric Shower' => 'electric-shower',
  281. 'Electric Toothbrush' => 'electric-toothbrush',
  282. 'Electronics' => 'electronics',
  283. 'Elemis' => 'elemis',
  284. 'Elephone' => 'elephone',
  285. 'Elgato' => 'elgato',
  286. 'Elite Dangerous' => 'elite-dangerous',
  287. 'Emirates' => 'emirates',
  288. 'Eneloop' => 'eneloop',
  289. 'Energy' => 'energy',
  290. 'Engine Oil' => 'engine-oil',
  291. 'Entertainment' => 'entertainment',
  292. 'Epilator' => 'epilator',
  293. 'Epson' => 'epson',
  294. 'eReader' => 'ereader',
  295. 'Espresso' => 'espresso',
  296. 'Estee Lauder' => 'estee-lauder',
  297. 'Ethernet' => 'ethernet',
  298. 'Eurostar' => 'eurostar',
  299. 'Eurotunnel' => 'eurotunnel',
  300. 'EVGA' => 'evga',
  301. 'Extension Lead' => 'extension-lead',
  302. 'External Hard Drive' => 'external-hard-drive',
  303. 'Fairy' => 'fairy',
  304. 'Fallout' => 'fallout',
  305. 'Fallout 4' => 'fallout-4',
  306. 'Fan' => 'fan',
  307. 'Fancy Dress' => 'fancy-dress',
  308. 'Far Cry' => 'far-cry',
  309. 'Far Cry 4' => 'far-cry-4',
  310. 'Far Cry Primal' => 'far-cry-primal',
  311. 'Fashion' => 'fashion',
  312. 'Fathers Day' => 'fathers-day',
  313. 'Felix' => 'felix',
  314. 'Fence' => 'fence',
  315. 'Fender Guitars' => 'fender',
  316. 'Ferrero Rocher' => 'ferrero-rocher',
  317. 'Ferry' => 'ferry',
  318. 'Festival' => 'festival',
  319. 'Fiat' => 'fiat',
  320. 'FIFA' => 'fifa',
  321. 'FIFA 17' => 'fifa-17',
  322. 'FIFA 18' => 'fifa-18',
  323. 'Figures' => 'figures',
  324. 'Final Fantasy' => 'final-fantasy',
  325. 'Finance & Utilities' => 'personal-finance',
  326. 'Finish' => 'finish',
  327. 'Finlux' => 'finlux',
  328. 'Fire Emblem' => 'fire-emblem',
  329. 'Fire Pit' => 'fire-pit',
  330. 'Fireplace' => 'fireplace',
  331. 'Fish' => 'fish',
  332. 'Fisher Price' => 'fisher-price',
  333. 'Fishing' => 'fishing',
  334. 'Fiskars' => 'fiskars',
  335. 'Fitbit' => 'fitbit',
  336. 'Fitbit Alta' => 'fitbit-alta',
  337. 'Fitbit Blaze' => 'fitbit-blaze',
  338. 'Fitbit Charge 2' => 'fitbit-charge-2',
  339. 'Fitness Tracker' => 'fitness-tracker',
  340. 'Flamingo Land' => 'flamingo-land',
  341. 'Flask' => 'flask',
  342. 'Fleece' => 'fleece',
  343. 'Flight' => 'flight',
  344. 'Flip Flops' => 'flip-flops',
  345. 'Floodlight' => 'floodlight',
  346. 'Flooring' => 'flooring',
  347. 'Florida' => 'florida',
  348. 'Flowers' => 'flowers',
  349. 'Flybe' => 'flybe',
  350. 'Flymo' => 'flymo',
  351. 'Food' => 'food',
  352. 'Food Mixer' => 'food-mixer',
  353. 'Food Processor' => 'food-processor',
  354. 'Football' => 'football',
  355. 'Football Boots' => 'football-boots',
  356. 'Football Manager' => 'football-manager',
  357. 'Football Shirt' => 'football-shirt',
  358. 'Ford' => 'ford',
  359. 'For Honor' => 'for-honor',
  360. 'Formula 1' => 'f1',
  361. 'Forza' => 'forza',
  362. 'Forza Horizon' => 'forza-horizon',
  363. 'Forza Horizon 3' => 'forza-horizon-3',
  364. 'Fossil' => 'fossil',
  365. 'Fosters' => 'fosters',
  366. 'Foundation' => 'foundation',
  367. 'France' => 'france',
  368. 'Fred Perry' => 'fred-perry',
  369. 'Freebies' => 'freebies',
  370. 'Freesat' => 'freesat',
  371. 'Freeview' => 'freeview',
  372. 'Freezer' => 'freezer',
  373. 'Fridge' => 'fridge',
  374. 'Fridge Freezer' => 'fridge-freezer',
  375. 'Frozen' => 'frozen',
  376. 'Fruit' => 'fruit',
  377. 'Fryer' => 'fryer',
  378. 'Frying Pan' => 'frying-pan',
  379. 'Fujifilm' => 'fuji',
  380. 'Funko Pop' => 'funko-pop',
  381. 'Furby' => 'furby',
  382. 'Furniture' => 'furniture',
  383. 'Fusion' => 'fusion',
  384. 'G-Shock' => 'g-shock',
  385. 'G-Sync Monitor' => 'g-sync',
  386. 'Game Of Thrones' => 'game-of-thrones',
  387. 'Gaming' => 'gaming',
  388. 'Gaming Chair' => 'gaming-chair',
  389. 'Gaming Controller' => 'controller',
  390. 'Gaming Headset' => 'gaming-headset',
  391. 'Gaming Keyboard' => 'gaming-keyboard',
  392. 'Gaming Laptop' => 'gaming-laptop',
  393. 'Gaming Monitor' => 'gaming-monitor',
  394. 'Gaming PC' => 'gaming-pc',
  395. 'Garage' => 'garage',
  396. 'Garden' => 'garden',
  397. 'Garden Furniture' => 'garden-furniture',
  398. 'Garmin' => 'garmin',
  399. 'Gas' => 'gas',
  400. 'Gas Cooker' => 'gas-cooker',
  401. 'Gatwick' => 'gatwick',
  402. 'Gazebo' => 'gazebo',
  403. 'Gazelle' => 'gazelle',
  404. 'GBK' => 'gbk',
  405. 'Gears Of War' => 'gears-of-war',
  406. 'Gears Of War 4' => 'gears-of-war-4',
  407. 'GeForce' => 'geforce',
  408. 'George Foreman' => 'george-foreman',
  409. 'Geox' => 'geox',
  410. 'GHD' => 'ghd',
  411. 'Ghostbusters' => 'ghostbusters',
  412. 'Ghost Recon' => 'ghost-recon',
  413. 'Gibson Guitars' => 'gibson',
  414. 'Giffgaff' => 'giffgaff',
  415. 'Gift Card' => 'gift-card',
  416. 'Gifts' => 'gifts',
  417. 'Gift Set' => 'gift-set',
  418. 'Gilet' => 'gilet',
  419. 'Gillette' => 'gillette',
  420. 'Gimbal' => 'gimbal',
  421. 'Gin' => 'gin',
  422. 'Glasgow' => 'glasgow',
  423. 'Glasses' => 'glasses',
  424. 'Gloves' => 'gloves',
  425. 'Glue Gun' => 'glue-gun',
  426. 'Gluten Free' => 'gluten-free',
  427. 'Goggles' => 'goggles',
  428. 'Go Kart' => 'go-kart',
  429. 'Golf' => 'golf',
  430. 'Golf Balls' => 'golf-balls',
  431. 'Golf Clubs' => 'golf-clubs',
  432. 'Goodfellas' => 'goodfellas',
  433. 'Google' => 'google',
  434. 'Google Home' => 'google-home',
  435. 'Google Pixel' => 'google-pixel',
  436. 'Go Outdoors' => 'go-outdoors',
  437. 'GoPro' => 'gopro',
  438. 'Graco' => 'graco',
  439. 'Grand National' => 'grand-national',
  440. 'Graphics Card' => 'graphics-card',
  441. 'Gravity Rush' => 'gravity-rush',
  442. 'Graze' => 'graze',
  443. 'Greece' => 'greece',
  444. 'Greenhouse' => 'greenhouse',
  445. 'Greggs' => 'greggs',
  446. 'Grey Goose' => 'grey-goose',
  447. 'Grill' => 'grill',
  448. 'Grinder' => 'grinder',
  449. 'Grobag' => 'grobag',
  450. 'Groceries' => 'groceries',
  451. 'GTA' => 'gta',
  452. 'GTA V' => 'gta-v',
  453. 'Gtx 970' => 'gtx-970',
  454. 'GTX 1060' => 'gtx-1060',
  455. 'GTX 1070' => 'gtx-1070',
  456. 'GTX 1080' => 'gtx-1080',
  457. 'Guardians Of The Galaxy' => 'guardians-of-the-galaxy',
  458. 'Gucci' => 'gucci',
  459. 'Guinness' => 'guinness',
  460. 'Guitar' => 'guitar',
  461. 'Guitar Hero' => 'guitar-hero',
  462. 'Gullivers' => 'gullivers',
  463. 'Gym' => 'gym',
  464. 'Gym Membership' => 'gym-membership',
  465. 'H1z1' => 'h1z1',
  466. 'Habitat' => 'habitat',
  467. 'Hair' => 'hair',
  468. 'Hair Clipper' => 'hair-clipper',
  469. 'Hair Dryer' => 'hair-dryer',
  470. 'Hair Dye' => 'hair-dye',
  471. 'Halifax' => 'halifax',
  472. 'Halo' => 'halo',
  473. 'Halo 5' => 'halo-5',
  474. 'Hammer' => 'hammer',
  475. 'Hammock' => 'hammock',
  476. 'Hamper' => 'hamper',
  477. 'Handbag' => 'handbag',
  478. 'Hand Mixer' => 'hand-mixer',
  479. 'Happyland' => 'happyland',
  480. 'Hard Drive' => 'hard-drive',
  481. 'Haribo' => 'haribo',
  482. 'Harman Kardon' => 'harman-kardon',
  483. 'Harmony' => 'harmony',
  484. 'Harry Potter' => 'harry-potter',
  485. 'Hat' => 'hat',
  486. 'Hatchimals' => 'hatchimals',
  487. 'Hayfever' => 'hayfever',
  488. 'Hdr Tv' => 'hdr-tv',
  489. 'HD TV' => 'hd-tv',
  490. 'Headboard' => 'headboard',
  491. 'Headphones' => 'headphones',
  492. 'Headset' => 'headset',
  493. 'Health & Beauty' => 'beauty',
  494. 'Heater' => 'heater',
  495. 'Hedge Trimmer' => 'hedge-trimmer',
  496. 'Heineken' => 'heineken',
  497. 'Heinz' => 'heinz',
  498. 'Helmet' => 'helmet',
  499. 'Hermes' => 'hermes',
  500. 'Highchair' => 'highchair',
  501. 'Hiking' => 'hiking',
  502. 'Hilton' => 'hilton',
  503. 'Hisense' => 'hisense',
  504. 'Hitachi' => 'hitachi',
  505. 'Hitman' => 'hitman',
  506. 'Hive' => 'hive',
  507. 'Hob' => 'hob',
  508. 'Holiday Inn' => 'holiday-inn',
  509. 'Holidays & Leisure' => 'holiday',
  510. 'Home & Garden' => 'home',
  511. 'Home Cinema' => 'home-cinema',
  512. 'Homedics' => 'homedics',
  513. 'Homefront' => 'homefront',
  514. 'Homeplug' => 'homeplug',
  515. 'Home Security' => 'home-security',
  516. 'Honey' => 'honey',
  517. 'Honeywell' => 'honeywell',
  518. 'Hong Kong' => 'hong-kong',
  519. 'Honor' => 'honor',
  520. 'Honor 6x' => 'honor-6x',
  521. 'Hoodie' => 'hoodie',
  522. 'Hoover' => 'hoover',
  523. 'Horizon Zero Dawn' => 'horizon-zero-dawn',
  524. 'Hornby' => 'hornby',
  525. 'Hose' => 'hose',
  526. 'Hotel' => 'hotel',
  527. 'Hotpoint' => 'hotpoint',
  528. 'Hot Tub' => 'hot-tub',
  529. 'Hot Wheels' => 'hot-wheels',
  530. 'Hozelock' => 'hozelock',
  531. 'HP' => 'hp',
  532. 'HP Envy' => 'hp-envy',
  533. 'HP Laptop' => 'hp-laptop',
  534. 'H Samuel' => 'h-samuel',
  535. 'HTC' => 'htc',
  536. 'HTC 10' => 'htc-10',
  537. 'HTC Vive' => 'htc-vive',
  538. 'Huawei' => 'huawei',
  539. 'Huawei P9' => 'huawei-p9',
  540. 'Huggies' => 'huggies',
  541. 'Hugo Boss' => 'hugo-boss',
  542. 'Humax' => 'humax',
  543. 'Humidifier' => 'humidifier',
  544. 'Hunter' => 'hunter',
  545. 'Hydro 5' => 'hydro-5',
  546. 'Hyperx' => 'hyperx',
  547. 'Hyundai' => 'hyundai',
  548. 'Iams Pet Food' => 'iams',
  549. 'Ibiza' => 'ibiza',
  550. 'Icandy' => 'icandy',
  551. 'Ice Cream' => 'ice-cream',
  552. 'Ice Cream Maker' => 'ice-cream-maker',
  553. 'Imaginext' => 'imaginext',
  554. 'Impact Driver' => 'impact-driver',
  555. 'Indesit' => 'indesit',
  556. 'India' => 'india',
  557. 'Inflatable' => 'inflatable',
  558. 'Injustice' => 'injustice',
  559. 'Ink' => 'ink',
  560. 'Inner Tube' => 'inner-tube',
  561. 'Instant Ink' => 'instant-ink',
  562. 'Insulation' => 'insulation',
  563. 'Insurance' => 'insurance',
  564. 'Intel' => 'intel',
  565. 'Intel Atom' => 'atom',
  566. 'Intel i3' => 'i3',
  567. 'Intel i5' => 'i5',
  568. 'Intel i7' => 'i7',
  569. 'Internal Hard Drive' => 'internal-hard-drive',
  570. 'Internet' => 'internet',
  571. 'In The Night Garden' => 'in-the-night-garden',
  572. 'iOS' => 'ios',
  573. 'iPad' => 'ipad',
  574. 'iPad Air' => 'ipad-air',
  575. 'iPad Case' => 'ipad-case',
  576. 'iPad Mini' => 'ipad-mini',
  577. 'iPad Pro' => 'ipad-pro',
  578. 'Ip Camera' => 'ip-camera',
  579. 'iPhone' => 'iphone',
  580. 'iPhone 5S' => 'iphone-5s',
  581. 'iPhone 6' => 'iphone-6',
  582. 'iPhone 6 Plus' => 'iphone-6-plus',
  583. 'iPhone 6s' => 'iphone-6s',
  584. 'iPhone 6s Plus' => 'iphone-6s-plus',
  585. 'iPhone 7' => 'iphone-7',
  586. 'iPhone 7 Plus' => 'iphone-7-plus',
  587. 'iPhone Case' => 'iphone-case',
  588. 'Iphone SE' => 'iphone-se',
  589. 'iPod' => 'ipod',
  590. 'iPod Nano' => 'ipod-nano',
  591. 'iPod Touch' => 'ipod-touch',
  592. 'Ireland' => 'ireland',
  593. 'Irn Bru' => 'irn-bru',
  594. 'Iron' => 'iron',
  595. 'Ironing Board' => 'ironing-board',
  596. 'Isle Of Wight' => 'isle-of-wight',
  597. 'Isofix' => 'isofix',
  598. 'Issey Miyake' => 'issey-miyake',
  599. 'Italy' => 'italy',
  600. 'iTunes' => 'itunes',
  601. 'ITV' => 'itv',
  602. 'Jabra' => 'jabra',
  603. 'Jack Daniels' => 'jack-daniels',
  604. 'Jacket' => 'jacket',
  605. 'Jack Wills' => 'jack-wills',
  606. 'Jack Wolfskin' => 'jack-wolfskin',
  607. 'Jaguar' => 'jaguar',
  608. 'Jamaica' => 'jamaica',
  609. 'Jameson' => 'jameson',
  610. 'Japan' => 'japan',
  611. 'Jawbone' => 'jawbone',
  612. 'Jaybird' => 'jaybird',
  613. 'JBL' => 'jbl',
  614. 'Jeans' => 'jeans',
  615. 'Jewellery' => 'jewellery',
  616. 'Jigsaw' => 'jigsaw',
  617. 'Jim Beam' => 'jim-beam',
  618. 'Jimmy Choo' => 'jimmy-choo',
  619. 'Joop' => 'joop',
  620. 'Jordan' => 'jordan',
  621. 'Joseph Joseph' => 'joseph-joseph',
  622. 'Joules' => 'joules',
  623. 'Juice' => 'juice',
  624. 'Juicer' => 'juicer',
  625. 'Jumper' => 'jumper',
  626. 'Jumperoo' => 'jumperoo',
  627. 'Jura' => 'jura',
  628. 'Just Cause 3' => 'just-cause-3',
  629. 'Just Dance' => 'just-dance',
  630. 'JVC' => 'jvc',
  631. 'Karcher' => 'karcher',
  632. 'Kaspersky' => 'kaspersky',
  633. 'Kayak' => 'kayak',
  634. 'Keg' => 'keg',
  635. 'Kenwood' => 'kenwood',
  636. 'Kenwood kMix' => 'kmix',
  637. 'Keter' => 'keter',
  638. 'Kettle' => 'kettle',
  639. 'Kettlebell' => 'kettlebell',
  640. 'Keyboard' => 'keyboard',
  641. 'Kia' => 'kia',
  642. 'Kickers' => 'kickers',
  643. 'Kids Bike' => 'kids-bike',
  644. 'Kinder' => 'kinder',
  645. 'Kindle' => 'kindle',
  646. 'Kindle Fire' => 'kindle-fire',
  647. 'Kindle Paperwhite' => 'kindle-paperwhite',
  648. 'Kinect' => 'kinect',
  649. 'Kingdom Hearts' => 'kingdom-hearts',
  650. 'King Size' => 'king-size',
  651. 'Kirby' => 'kirby',
  652. 'Kitchen' => 'kitchen',
  653. 'KitchenAid' => 'kitchenaid',
  654. 'Kitchen Roll' => 'kitchen-roll',
  655. 'Kitsound' => 'kitsound',
  656. 'Knickers' => 'knickers',
  657. 'Knife' => 'knife',
  658. 'Kobo' => 'kobo',
  659. 'Kodi' => 'kodi',
  660. 'Kopparberg' => 'kopparberg',
  661. 'Kraken' => 'kraken',
  662. 'Krakow' => 'krakow',
  663. 'Krispy Kreme' => 'krispy-kreme',
  664. 'Kurt Geiger' => 'kurt-geiger',
  665. 'Lacoste' => 'lacoste',
  666. 'Ladder' => 'ladder',
  667. 'Lamb' => 'lamb',
  668. 'Laminate' => 'laminate',
  669. 'Lamp' => 'lamp',
  670. 'Lancome' => 'lancome',
  671. 'Laptop' => 'laptop',
  672. 'Laser Printer' => 'laser-printer',
  673. 'Laura Ashley' => 'laura-ashley',
  674. 'Lavazza' => 'lavazza',
  675. 'Lavender' => 'lavender',
  676. 'Lawnmower' => 'lawnmower',
  677. 'Lay-Z-Spa' => 'lay-z-spa',
  678. 'Le Creuset' => 'le-creuset',
  679. 'LED Bulbs' => 'led-bulbs',
  680. 'LED TV' => 'led-tv',
  681. 'Leeds' => 'leeds',
  682. 'Lego' => 'lego',
  683. 'Lego City' => 'lego-city',
  684. 'Lego Dimensions' => 'lego-dimensions',
  685. 'Lego Friends' => 'lego-friends',
  686. 'Legoland' => 'legoland',
  687. 'Lego Star Wars' => 'lego-star-wars',
  688. 'Lego Technic' => 'lego-technic',
  689. 'Leicester' => 'leicester',
  690. 'Lenovo' => 'lenovo',
  691. 'Lenovo Tablet' => 'lenovo-tablet',
  692. 'Lenovo Yoga' => 'lenovo-yoga',
  693. 'Levi' => 'levi',
  694. 'LG' => 'lg',
  695. 'LG G5' => 'lg-g5',
  696. 'LG G6' => 'lg-g6',
  697. 'LG TV' => 'lg-tv',
  698. 'Light' => 'light',
  699. 'Lighting' => 'lighting',
  700. 'Lightning Cable' => 'lightning-cable',
  701. 'Lindor' => 'lindor',
  702. 'Lindt' => 'lindt',
  703. 'Lingerie' => 'lingerie',
  704. 'Linx' => 'linx',
  705. 'Little Tikes' => 'little-tikes',
  706. 'Liverpool' => 'liverpool',
  707. 'Logitech' => 'logitech',
  708. 'London' => 'london',
  709. 'London Eye' => 'london-eye',
  710. 'London Zoo' => 'london-zoo',
  711. 'Lottery' => 'lottery',
  712. 'Lounger' => 'lounger',
  713. 'Lurpak' => 'lurpak',
  714. 'Lynx' => 'lynx',
  715. 'MacBook' => 'macbook',
  716. 'MacBook Air' => 'macbook-air',
  717. 'MacBook Pro' => 'macbook-pro',
  718. 'Mac Mini' => 'mac-mini',
  719. 'Mad Max' => 'mad-max',
  720. 'Mafia 3' => 'mafia-3',
  721. 'Magazine' => 'magazine',
  722. 'Magimix' => 'magimix',
  723. 'Majorca' => 'majorca',
  724. 'Make Up' => 'make-up',
  725. 'Makita' => 'makita',
  726. 'Maldives' => 'maldives',
  727. 'Manchester' => 'manchester',
  728. 'Manfrotto' => 'manfrotto',
  729. 'Marc Jacobs' => 'marc-jacobs',
  730. 'Mario' => 'mario',
  731. 'Mario Kart' => 'mario-kart',
  732. 'Mario Kart 8' => 'mario-kart-8',
  733. 'Mario Kart 8 Deluxe' => 'mario-kart-8-deluxe',
  734. 'Marvel' => 'marvel',
  735. 'Mascara' => 'mascara',
  736. 'Massage' => 'massage',
  737. 'Mass Effect' => 'mass-effect',
  738. 'Mass Effect Andromeda' => 'mass-effect-andromeda',
  739. 'Maternity' => 'maternity',
  740. 'Mattress' => 'mattress',
  741. 'Mattress Topper' => 'mattress-topper',
  742. 'Mavic' => 'mavic',
  743. 'Maxi Cosi' => 'maxi-cosi',
  744. 'Meat' => 'meat',
  745. 'Mechanical Keyboard' => 'mechanical-keyboard',
  746. 'Medion' => 'medion',
  747. 'Memory Foam' => 'memory-foam',
  748. 'Mens Boots' => 'mens-boots',
  749. 'Mens Fashion' => 'mens-clothing',
  750. 'Mens Shoes' => 'mens-shoes',
  751. 'Mercedes' => 'mercedes',
  752. 'Merlin' => 'merlin',
  753. 'Merrell' => 'merrell',
  754. 'Mexico' => 'mexico',
  755. 'Michael Kors' => 'michael-kors',
  756. 'Microphone' => 'microphone',
  757. 'Micro SD' => 'micro-sd',
  758. 'Microserver' => 'microserver',
  759. 'Microsoft' => 'microsoft',
  760. 'Microsoft Office' => 'microsoft-office',
  761. 'Microwave' => 'microwave',
  762. 'Miele' => 'miele',
  763. 'Milwaukee' => 'milwaukee',
  764. 'Minecraft' => 'minecraft',
  765. 'Mini' => 'mini',
  766. 'Mini Fridge' => 'mini-fridge',
  767. 'Mini PC' => 'mini-pc',
  768. 'Mirror' => 'mirror',
  769. 'Mitre Saw' => 'mitre-saw',
  770. 'Mobile Broadband' => 'mobile-broadband',
  771. 'Mobile Contract' => 'mobile-contract',
  772. 'Mobile Phone' => 'mobile-phone',
  773. 'Mobiles' => 'mobiles',
  774. 'Molton Brown' => 'molton-brown',
  775. 'Monitor' => 'monitor',
  776. 'Monopoly' => 'monopoly',
  777. 'Monsoon' => 'monsoon',
  778. 'Mop' => 'mop',
  779. 'Morocco' => 'morocco',
  780. 'Mortgage' => 'mortgage',
  781. 'Moses Basket' => 'moses-basket',
  782. 'Mot' => 'mot',
  783. 'Motherboard' => 'motherboard',
  784. 'Moto 360' => 'moto-360',
  785. 'Moto G' => 'moto-g',
  786. 'Moto G4' => 'moto-g4',
  787. 'Moto G5' => 'moto-g5',
  788. 'Motorcycle' => 'motorcycle',
  789. 'Motorola' => 'motorola',
  790. 'Moto Z' => 'moto-z',
  791. 'Mountain Bike' => 'mountain-bike',
  792. 'Mouse' => 'mouse',
  793. 'Mouse Mat' => 'mouse-mat',
  794. 'Movie' => 'movie',
  795. 'MP3 Player' => 'mp3-player',
  796. 'MSI' => 'msi',
  797. 'Mug' => 'mug',
  798. 'Multitool' => 'multitool',
  799. 'Music' => 'music',
  800. 'My Little Pony' => 'my-little-pony',
  801. 'Nandos' => 'nandos',
  802. 'NAS' => 'nas',
  803. 'National Express' => 'national-express',
  804. 'National Trust' => 'national-trust',
  805. 'Necklace' => 'necklace',
  806. 'Nectar' => 'nectar',
  807. 'Neff' => 'neff',
  808. 'Nerf' => 'nerf',
  809. 'Nescafe' => 'nescafe',
  810. 'Nespresso' => 'nespresso',
  811. 'Nest' => 'nest',
  812. 'Netflix' => 'netflix',
  813. 'Netgear' => 'netgear',
  814. 'Netgear Arlo' => 'arlo',
  815. 'New Balance' => 'new-balance',
  816. 'Newcastle' => 'newcastle',
  817. 'New Look' => 'new-look',
  818. 'New York' => 'new-york',
  819. 'Nextbase' => 'nextbase',
  820. 'Nexus' => 'nexus',
  821. 'NFL' => 'nfl',
  822. 'Nier' => 'nier',
  823. 'Nike' => 'nike',
  824. 'Nike Air Max' => 'nike-air-max',
  825. 'Nikon' => 'nikon',
  826. 'Nilfisk' => 'nilfisk',
  827. 'Ninja' => 'ninja',
  828. 'Nintendo' => 'nintendo',
  829. 'Nintendo DS' => 'nintendo-ds',
  830. 'Nintendo eShop' => 'eshop',
  831. 'Nintendo Switch' => 'nintendo-switch',
  832. 'Nioh' => 'nioh',
  833. 'Nissan' => 'nissan',
  834. 'Nivea' => 'nivea',
  835. 'Nokia' => 'nokia',
  836. 'North Face' => 'north-face',
  837. 'Norton' => 'norton',
  838. 'Note 4' => 'note-4',
  839. 'Now TV' => 'now-tv',
  840. 'Nursery' => 'nursery',
  841. 'Nus' => 'nus',
  842. 'Nutella' => 'nutella',
  843. 'Nutribullet' => 'nutribullet',
  844. 'Nutri Ninja' => 'nutri-ninja',
  845. 'NVIDIA' => 'nvidia',
  846. 'O2' => 'o2',
  847. 'O2 Refresh' => 'o2-refresh',
  848. 'Oak' => 'oak',
  849. 'Oakley' => 'oakley',
  850. 'Oculus' => 'oculus',
  851. 'Odeon' => 'odeon',
  852. 'Office' => 'office',
  853. 'Office Chair' => 'office-chair',
  854. 'OLED TV' => 'oled',
  855. 'Olympus' => 'olympus',
  856. 'Oneplus' => 'oneplus',
  857. 'Onkyo' => 'onkyo',
  858. 'Oral-B' => 'oral-b',
  859. 'Origin' => 'origin',
  860. 'Orlando' => 'orlando',
  861. 'Osprey' => 'osprey',
  862. 'Ottoman' => 'ottoman',
  863. 'Outdoor' => 'outdoor',
  864. 'Oven' => 'oven',
  865. 'Overwatch' => 'overwatch',
  866. 'Paddling Pool' => 'paddling-pool',
  867. 'Paint' => 'paint',
  868. 'Pampers' => 'pampers',
  869. 'Pan' => 'pan',
  870. 'Panasonic' => 'panasonic',
  871. 'Panasonic Lumix' => 'lumix',
  872. 'Pandora' => 'pandora',
  873. 'Papa Johns' => 'papa-johns',
  874. 'Parasol' => 'parasol',
  875. 'Parcel' => 'parcel',
  876. 'Paris' => 'paris',
  877. 'Parking' => 'parking',
  878. 'Paw Patrol' => 'paw-patrol',
  879. 'PAYG' => 'payg',
  880. 'Paypal' => 'paypal',
  881. 'PC' => 'pc',
  882. 'PC Case' => 'pc-case',
  883. 'PC Game' => 'pc-game',
  884. 'Pebble' => 'pebble',
  885. 'Peppa Pig' => 'peppa-pig',
  886. 'Pepsi' => 'pepsi',
  887. 'Perfume' => 'perfume',
  888. 'Persona' => 'persona',
  889. 'Persona 5' => 'persona-5',
  890. 'Petrol' => 'petrol',
  891. 'Philips' => 'philips',
  892. 'Philips Hue' => 'philips-hue',
  893. 'Phones' => 'phone',
  894. 'Photo' => 'photo',
  895. 'Piano' => 'piano',
  896. 'Pillow' => 'pillow',
  897. 'Pizza' => 'pizza',
  898. 'Plant' => 'plant',
  899. 'Playhouse' => 'playhouse',
  900. 'Playmobil' => 'playmobil',
  901. 'Playstation' => 'playstation',
  902. 'Playstation Plus' => 'playstation-plus',
  903. 'Playstation VR' => 'playstation-vr',
  904. 'Pokemon' => 'pokemon',
  905. 'Pool' => 'pool',
  906. 'Power Bank' => 'power-bank',
  907. 'Powerline' => 'powerline',
  908. 'Power Rangers' => 'power-rangers',
  909. 'Pram' => 'pram',
  910. 'Pressure Cooker' => 'pressure-cooker',
  911. 'Pressure Washer' => 'pressure-washer',
  912. 'Printer' => 'printer',
  913. 'Projector' => 'projector',
  914. 'Protein' => 'protein',
  915. 'PS3' => 'ps3',
  916. 'PS4' => 'ps4',
  917. 'PS4 Controller' => 'ps4-controller',
  918. 'PS4 Games' => 'ps4-games',
  919. 'PS4 Headset' => 'ps4-headset',
  920. 'PS4 Pro' => 'ps4-pro',
  921. 'PS4 Slim' => 'ps4-slim',
  922. 'PSN' => 'psn',
  923. 'PSU' => 'psu',
  924. 'PS Vita' => 'ps-vita',
  925. 'Puma' => 'puma',
  926. 'Pushchair' => 'pushchair',
  927. 'Qnap' => 'qnap',
  928. 'Quorn' => 'quorn',
  929. 'Rab' => 'rab',
  930. 'Radiator' => 'radiator',
  931. 'Radio' => 'radio',
  932. 'Radley' => 'radley',
  933. 'Railcard' => 'railcard',
  934. 'Ralph Lauren' => 'ralph-lauren',
  935. 'RAM' => 'ram',
  936. 'Raspberry Pi' => 'raspberry-pi',
  937. 'Rattan Garden Furniture' => 'rattan',
  938. 'Ray Ban' => 'ray-ban',
  939. 'Razer' => 'razer',
  940. 'Razor' => 'razor',
  941. 'Reebok' => 'reebok',
  942. 'Resident Evil' => 'resident-evil',
  943. 'Resident Evil 7' => 'resident-evil-7',
  944. 'Rice' => 'rice',
  945. 'Ring' => 'ring',
  946. 'Road Bike' => 'road-bike',
  947. 'Rocket League' => 'rocket-league',
  948. 'Rogue One' => 'rogue-one',
  949. 'Roku' => 'roku',
  950. 'Rolex' => 'rolex',
  951. 'Roof Box' => 'roof-box',
  952. 'Roses' => 'roses',
  953. 'Rotary' => 'rotary',
  954. 'Router' => 'router',
  955. 'Rug' => 'rug',
  956. 'Rum' => 'rum',
  957. 'Running' => 'running',
  958. 'RX 480' => 'rx-480',
  959. 'Ryanair' => 'ryanair',
  960. 'Ryobi' => 'ryobi',
  961. 'Sale' => 'sale',
  962. 'Salmon' => 'salmon',
  963. 'Salomon' => 'salomon',
  964. 'Samsonite' => 'samsonite',
  965. 'Samsung' => 'samsung',
  966. 'Samsung Galaxy' => 'samsung-galaxy',
  967. 'Samsung Galaxy S7' => 'samsung-galaxy-s7',
  968. 'Samsung Galaxy S7 Edge' => 'samsung-galaxy-s7-edge',
  969. 'Samsung Galaxy S8' => 'samsung-galaxy-s8',
  970. 'Samsung Galaxy S8 Plus' => 'samsung-s8-plus',
  971. 'Samsung Gear' => 'samsung-gear',
  972. 'Samsung TV' => 'samsung-tv',
  973. 'Sandals' => 'sandals',
  974. 'Sander' => 'sander',
  975. 'SanDisk' => 'sandisk',
  976. 'Sat Nav' => 'sat-nav',
  977. 'Saw' => 'saw',
  978. 'Scalextric' => 'scalextric',
  979. 'Scooter' => 'scooter',
  980. 'Screenwash' => 'screenwash',
  981. 'Screwdriver' => 'screwdriver',
  982. 'SD Card' => 'sd-card',
  983. 'SDXC' => 'sdxc',
  984. 'Seagate' => 'seagate',
  985. 'Seat' => 'seat',
  986. 'Security Camera' => 'security-camera',
  987. 'Seeds' => 'seeds',
  988. 'Seiko' => 'seiko',
  989. 'Sennheiser' => 'sennheiser',
  990. 'Server' => 'server',
  991. 'Sewing Machine' => 'sewing-machine',
  992. 'Shadow Of Mordor' => 'shadow-of-mordor',
  993. 'Shark' => 'shark',
  994. 'Sharpie' => 'sharpie',
  995. 'Shaver' => 'shaver',
  996. 'Shed' => 'shed',
  997. 'Shelves' => 'shelves',
  998. 'Shirt' => 'shirt',
  999. 'Shoes' => 'shoe',
  1000. 'Shopkins' => 'shopkins',
  1001. 'Shorts' => 'shorts',
  1002. 'Shower' => 'shower',
  1003. 'Shredder' => 'shredder',
  1004. 'Sideboard' => 'sideboard',
  1005. 'Sim' => 'sim',
  1006. 'Sim Free' => 'sim-free',
  1007. 'Sim Only' => 'sim-only',
  1008. 'Sink' => 'sink',
  1009. 'Skechers' => 'skechers',
  1010. 'Ski' => 'ski',
  1011. 'Skoda' => 'skoda',
  1012. 'Sky' => 'sky',
  1013. 'Skylanders' => 'skylanders',
  1014. 'Skyrim' => 'skyrim',
  1015. 'Sleeping Bag' => 'sleeping-bag',
  1016. 'Slide' => 'slide',
  1017. 'Slimming World' => 'slimming-world',
  1018. 'Slippers' => 'slippers',
  1019. 'Slow Cooker' => 'slow-cooker',
  1020. 'SLR Camera' => 'slr',
  1021. 'Smart' => 'smart',
  1022. 'Smartphone' => 'smartphone',
  1023. 'Smartthings' => 'smartthings',
  1024. 'Smart TV' => 'smart-tv',
  1025. 'Smartwatch' => 'smartwatch',
  1026. 'Snapfish' => 'snapfish',
  1027. 'Socket Set' => 'socket-set',
  1028. 'Socks' => 'socks',
  1029. 'Sofa' => 'sofa',
  1030. 'Software & Apps' => 'software-apps',
  1031. 'Sonicare' => 'sonicare',
  1032. 'Sonos' => 'sonos',
  1033. 'Sony' => 'sony',
  1034. 'Sony TV' => 'sony-tv',
  1035. 'Soundbar' => 'soundbar',
  1036. 'Soup Maker' => 'soup-maker',
  1037. 'Spa' => 'spa',
  1038. 'Spain' => 'spain',
  1039. 'Speakers' => 'speakers',
  1040. 'Spinner' => 'spinner',
  1041. 'Spirits' => 'spirits',
  1042. 'Splatoon' => 'splatoon',
  1043. 'Sports & Fitness' => 'sports-fitness',
  1044. 'SSD' => 'ssd',
  1045. 'Starbucks' => 'starbucks',
  1046. 'Star Trek' => 'star-trek',
  1047. 'Star Wars' => 'star-wars',
  1048. 'Steak' => 'steak',
  1049. 'Steam' => 'steam',
  1050. 'Steamer' => 'steamer',
  1051. 'Steam Iron' => 'steam-iron',
  1052. 'Steam Link' => 'steam-link',
  1053. 'Steam Mop' => 'steam-mop',
  1054. 'Storage' => 'storage',
  1055. 'Storage Box' => 'storage-box',
  1056. 'Strimmer' => 'strimmer',
  1057. 'Student' => 'student',
  1058. 'Suit' => 'suit',
  1059. 'Suitcase' => 'suitcase',
  1060. 'Sun Cream' => 'sun-cream',
  1061. 'Sunglasses' => 'sunglasses',
  1062. 'Superdry' => 'superdry',
  1063. 'Surface' => 'surface',
  1064. 'Surface Book' => 'surface-book',
  1065. 'Sweets' => 'sweets',
  1066. 'Swing' => 'swing',
  1067. 'Synology' => 'synology',
  1068. 'T-Shirt' => 't-shirt',
  1069. 'Table' => 'table',
  1070. 'Tablet' => 'tablet',
  1071. 'Table Tennis' => 'table-tennis',
  1072. 'Tado' => 'tado',
  1073. 'Tag Heuer' => 'tag-heuer',
  1074. 'Takeaway' => 'takeaway',
  1075. 'Talkmobile' => 'talkmobile',
  1076. 'Tap' => 'tap',
  1077. 'Tassimo' => 'tassimo',
  1078. 'Tastecard' => 'tastecard',
  1079. 'Tea' => 'tea',
  1080. 'Ted Baker' => 'ted-baker',
  1081. 'Tefal' => 'tefal',
  1082. 'Tekken' => 'tekken',
  1083. 'Tekken 7' => 'tekken-7',
  1084. 'Telegraph' => 'telegraph',
  1085. 'Telescope' => 'telescope',
  1086. 'Tenerife' => 'tenerife',
  1087. 'Tennis' => 'tennis',
  1088. 'Tent' => 'tent',
  1089. 'Tesco Clothing' => 'tesco-clothing',
  1090. 'Tesla' => 'tesla',
  1091. 'Thailand' => 'thailand',
  1092. 'Theatre' => 'theatre',
  1093. 'The Body Shop' => 'body-shop',
  1094. 'The Last Guardian' => 'the-last-guardian',
  1095. 'The Last Of Us' => 'the-last-of-us',
  1096. 'Theme Park' => 'theme-park',
  1097. 'Thermometer' => 'thermometer',
  1098. 'Thermos' => 'thermos',
  1099. 'Thermostat' => 'thermostat',
  1100. 'The Sun' => 'the-sun',
  1101. 'The Witcher 3' => 'the-witcher-3',
  1102. 'Thinkpad' => 'thinkpad',
  1103. 'Thomas Sabo' => 'thomas-sabo',
  1104. 'Thorntons' => 'thorntons',
  1105. 'Thorpe Park' => 'thorpe-park',
  1106. 'Throw' => 'throw',
  1107. 'Thrustmaster' => 'thrustmaster',
  1108. 'Thule' => 'thule',
  1109. 'Tights' => 'tights',
  1110. 'Tile' => 'tile',
  1111. 'Timberland' => 'timberland',
  1112. 'Tissot' => 'tissot',
  1113. 'Titanfall' => 'titanfall',
  1114. 'Titanfall 2' => 'titanfall-2',
  1115. 'Toaster' => 'toaster',
  1116. 'Toddler Bed' => 'toddler-bed',
  1117. 'Toilet' => 'toilet',
  1118. 'Toilet Roll' => 'toilet-roll',
  1119. 'Toilet Seat' => 'toilet-seat',
  1120. 'Tomb Raider' => 'tomb-raider',
  1121. 'Tom Clancy' => 'tom-clancy',
  1122. 'Tom Ford' => 'tom-ford',
  1123. 'Tommee Tippee' => 'tommee-tippee',
  1124. 'Toms' => 'toms',
  1125. 'TomTom' => 'tomtom',
  1126. 'Tool' => 'tool',
  1127. 'Toothbrush' => 'toothbrush',
  1128. 'Toothpaste' => 'toothpaste',
  1129. 'Toot Toot' => 'toot-toot',
  1130. 'Torch' => 'torch',
  1131. 'Torque Wrench' => 'torque-wrench',
  1132. 'Toshiba' => 'toshiba',
  1133. 'Towel' => 'towel',
  1134. 'Toyota' => 'toyota',
  1135. 'Toys' => 'toy',
  1136. 'Toy Story' => 'toy-story',
  1137. 'Tp Link' => 'tp-link',
  1138. 'Tracksuit' => 'tracksuit',
  1139. 'Train' => 'train',
  1140. 'Trainers' => 'trainers',
  1141. 'Trampoline' => 'trampoline',
  1142. 'Transcend' => 'transcend',
  1143. 'Transformers' => 'transformers',
  1144. 'Travel' => 'travel',
  1145. 'Travel Insurance' => 'travel-insurance',
  1146. 'Travelodge' => 'travelodge',
  1147. 'Travel System' => 'travel-system',
  1148. 'Treadmill' => 'treadmill',
  1149. 'Trespass' => 'trespass',
  1150. 'Trike' => 'trike',
  1151. 'Tripod' => 'tripod',
  1152. 'Tripp' => 'tripp',
  1153. 'Trolley' => 'trolley',
  1154. 'Trousers' => 'trousers',
  1155. 'Trunki' => 'trunki',
  1156. 'Tumble Dryer' => 'tumble-dryer',
  1157. 'Tuna' => 'tuna',
  1158. 'Turbo Trainer' => 'turbo-trainer',
  1159. 'Turkey' => 'turkey',
  1160. 'Turntable' => 'turntable',
  1161. 'Turtle Beach' => 'turtle-beach',
  1162. 'TV' => 'tv',
  1163. 'TV Stand' => 'tv-stand',
  1164. 'Tyres' => 'tyres',
  1165. 'Ubisoft' => 'ubisoft',
  1166. 'Ue Boom' => 'ue-boom',
  1167. 'UFC' => 'ufc',
  1168. 'UGG' => 'ugg',
  1169. 'Ulefone' => 'ulefone',
  1170. 'Ultimate Ears UE Boom 2' => 'ue-boom-2',
  1171. 'Ultimate Outdoors' => 'ultimate-outdoors',
  1172. 'Ultrabook' => 'ultrabook',
  1173. 'Ultrawide Monitor' => 'ultrawide',
  1174. 'Umbrella' => 'umbrella',
  1175. 'Umi' => 'umi',
  1176. 'Uncharted' => 'uncharted',
  1177. 'Uncharted 4' => 'uncharted-4',
  1178. 'Under Armour' => 'under-armour',
  1179. 'Underwear' => 'underwear',
  1180. 'Unicorn' => 'unicorn',
  1181. 'Unidays' => 'unidays',
  1182. 'Urban Decay' => 'urban-decay',
  1183. 'Usa' => 'usa',
  1184. 'USB Hub' => 'usb-hub',
  1185. 'USB Memory Stick' => 'flash-drive',
  1186. 'Usn' => 'usn',
  1187. 'Vacuum Cleaners' => 'vacuum-cleaners',
  1188. 'Vango' => 'vango',
  1189. 'Vanish' => 'vanish',
  1190. 'Vans' => 'vans',
  1191. 'Vape' => 'vape',
  1192. 'Vauxhall' => 'vauxhall',
  1193. 'Vax' => 'vax',
  1194. 'Velvet' => 'velvet',
  1195. 'Venice' => 'venice',
  1196. 'Versace' => 'versace',
  1197. 'Vibrator' => 'vibrator',
  1198. 'Victorinox' => 'victorinox',
  1199. 'Vileda' => 'vileda',
  1200. 'Vinyl' => 'vinyl',
  1201. 'Virgin' => 'virgin',
  1202. 'Vitamix' => 'vitamix',
  1203. 'Vodafone' => 'vodafone',
  1204. 'Vodka' => 'vodka',
  1205. 'Volvo' => 'volvo',
  1206. 'VPN' => 'vpn',
  1207. 'VR' => 'vr',
  1208. 'VTech' => 'vtech',
  1209. 'Vue' => 'vue',
  1210. 'VW' => 'vw',
  1211. 'Wacom' => 'wacom',
  1212. 'Waffle Maker' => 'waffle-maker',
  1213. 'Wahl' => 'wahl',
  1214. 'Walkers' => 'walkers',
  1215. 'Walking Boots' => 'walking-boots',
  1216. 'Walking Dead' => 'walking-dead',
  1217. 'Wallet' => 'wallet',
  1218. 'Wallpaper' => 'wallpaper',
  1219. 'Walsall' => 'walsall',
  1220. 'Wardrobe' => 'wardrobe',
  1221. 'Warhammer' => 'warhammer',
  1222. 'Washer Dryer' => 'washer-dryer',
  1223. 'Washing Machine' => 'washing-machine',
  1224. 'Watch' => 'watch',
  1225. 'Watch Dogs' => 'watch-dogs',
  1226. 'Watch Dogs 2' => 'watch-dogs-2',
  1227. 'Water Bottle' => 'water-bottle',
  1228. 'Water Butt' => 'water-butt',
  1229. 'Water Filter' => 'water-filter',
  1230. 'Wayfair' => 'wayfair',
  1231. 'Webcam' => 'webcam',
  1232. 'Weber' => 'weber',
  1233. 'Wedding' => 'wedding',
  1234. 'Weed' => 'weed',
  1235. 'Weekend Break' => 'weekend-break',
  1236. 'Weetabix' => 'weetabix',
  1237. 'Weight Watchers' => 'weight-watchers',
  1238. 'Wellies' => 'wellies',
  1239. 'Wenger' => 'wenger',
  1240. 'Western Digital' => 'western-digital',
  1241. 'Wetsuit' => 'wetsuit',
  1242. 'Wheelbarrow' => 'wheelbarrow',
  1243. 'Whey' => 'whey',
  1244. 'Whiskas' => 'whiskas',
  1245. 'Whisky' => 'whisky',
  1246. 'Wifi Camera' => 'wifi-camera',
  1247. 'Wifi Extender' => 'wifi-extender',
  1248. 'Wii' => 'wii',
  1249. 'Wii U' => 'wii-u',
  1250. 'Wii U Pro Controller' => 'wii-u-pro-controller',
  1251. 'Wileyfox' => 'wileyfox',
  1252. 'Wilkinson Sword' => 'wilkinson-sword',
  1253. 'Wimbledon' => 'wimbledon',
  1254. 'Windows' => 'windows',
  1255. 'Windows 10' => 'windows-10',
  1256. 'Wine' => 'wine',
  1257. 'Wipes' => 'wipes',
  1258. 'Wireless Headphones' => 'wireless-headphones',
  1259. 'Wireless Keyboard' => 'wireless-keyboard',
  1260. 'Witcher' => 'witcher',
  1261. 'Wok' => 'wok',
  1262. 'Wolfenstein' => 'wolfenstein',
  1263. 'Women Fashion' => 'womens-clothes',
  1264. 'Workbench' => 'workbench',
  1265. 'World Of Warcraft' => 'world-of-warcraft',
  1266. 'Worx' => 'worx',
  1267. 'Wuaki' => 'wuaki',
  1268. 'WWE' => 'wwe',
  1269. 'Xbox' => 'xbox',
  1270. 'Xbox 360' => 'xbox-360',
  1271. 'Xbox 360 Game' => 'xbox-360-game',
  1272. 'Xbox Controller' => 'xbox-controller',
  1273. 'Xbox Gift Card' => 'xbox-gift-card',
  1274. 'Xbox Headset' => 'xbox-headset',
  1275. 'Xbox Live' => 'xbox-live',
  1276. 'Xbox One' => 'xbox-one',
  1277. 'Xbox One Controller' => 'xbox-one-controller',
  1278. 'Xbox One Elite Controller' => 'xbox-one-elite-controller',
  1279. 'Xbox One Games' => 'xbox-one-games',
  1280. 'Xbox One S' => 'xbox-one-s',
  1281. 'Xbox One X' => 'xbox-one-x',
  1282. 'Xbox Wireless Adapter' => 'xbox-wireless-adapter',
  1283. 'Xcom' => 'xcom',
  1284. 'XCOM 2' => 'xcom-2',
  1285. 'XFX' => 'xfx',
  1286. 'Xiaomi' => 'xiaomi',
  1287. 'Xiaomi Redmi' => 'redmi',
  1288. 'Xperia' => 'xperia',
  1289. 'Xperia Z3' => 'xperia-z3',
  1290. 'Xperia Z5' => 'xperia-z5',
  1291. 'XPS' => 'xps',
  1292. 'Yakuza' => 'yakuza',
  1293. 'Yale' => 'yale',
  1294. 'Yamaha' => 'yamaha',
  1295. 'Yankee Candle' => 'yankee-candle',
  1296. 'Yoga' => 'yoga',
  1297. 'York' => 'york',
  1298. 'Yorkshire' => 'yorkshire',
  1299. 'Yoshi' => 'yoshi',
  1300. 'Youview' => 'youview',
  1301. 'Yves Saint Laurent' => 'yves-saint-laurent',
  1302. 'Zante' => 'zante',
  1303. 'Zanussi' => 'zanussi',
  1304. 'Zelda' => 'zelda',
  1305. 'Zelda Breath Of The Wild' => 'zelda-breath-of-the-wild',
  1306. 'Zenbook' => 'zenbook',
  1307. 'Zippo' => 'zippo',
  1308. 'Zizzi' => 'zizzi',
  1309. 'Zoo' => 'zoo',
  1310. 'Zoostorm' => 'zoostorm',
  1311. 'ZOTAC' => 'zotac',
  1312. 'ZTE' => 'zte',
  1313. 'ZyXEL' => 'zyxel',
  1314. )
  1315. ),
  1316. 'order' => array(
  1317. 'name' => 'Order by',
  1318. 'type' => 'list',
  1319. 'required' => 'true',
  1320. 'title' => 'Sort order of deals',
  1321. 'values' => array(
  1322. 'From the most to the least hot deal' => '-hot',
  1323. 'From the most recent deal to the oldest' => '',
  1324. 'From the most commented deal to the least commented deal' => '-discussed'
  1325. )
  1326. )
  1327. )
  1328. );
  1329. public $lang = array(
  1330. 'bridge-uri' => SELF::URI,
  1331. 'bridge-name' => SELF::NAME,
  1332. 'context-keyword' => 'Search by keyword(s))',
  1333. 'context-group' => 'Deals per group',
  1334. 'uri-group' => '/tag/',
  1335. 'request-error' => 'Could not request HotUKDeals',
  1336. 'no-results' => 'Ooops, looks like we could',
  1337. 'relative-date-indicator' => array(
  1338. 'ago',
  1339. ),
  1340. 'price' => 'Price',
  1341. 'shipping' => 'Shipping',
  1342. 'origin' => 'Origin',
  1343. 'discount' => 'Discount',
  1344. 'title-keyword' => 'Search',
  1345. 'title-group' => 'Group',
  1346. 'local-months' => array(
  1347. 'Jan',
  1348. 'Feb',
  1349. 'Mar',
  1350. 'Apr',
  1351. 'May',
  1352. 'Jun',
  1353. 'Jul',
  1354. 'Aug',
  1355. 'Sep',
  1356. 'Occ',
  1357. 'Nov',
  1358. 'Dec',
  1359. 'st',
  1360. 'nd',
  1361. 'rd',
  1362. 'th'
  1363. ),
  1364. 'local-time-relative' => array(
  1365. 'Found ',
  1366. 'm',
  1367. 'h,',
  1368. 'day',
  1369. 'days',
  1370. 'month',
  1371. 'year',
  1372. 'and '
  1373. ),
  1374. 'date-prefixes' => array(
  1375. 'Found ',
  1376. 'Refreshed ',
  1377. 'Made hot '
  1378. ),
  1379. 'relative-date-alt-prefixes' => array(
  1380. 'Made hot ',
  1381. 'Refreshed ',
  1382. 'Last updated '
  1383. ),
  1384. 'relative-date-ignore-suffix' => array(
  1385. '/by.*$/'
  1386. ),
  1387. 'localdeal' => array(
  1388. 'Local',
  1389. 'Expires'
  1390. )
  1391. );
  1392. }