-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault-icon-descriptions.js
2727 lines (2727 loc) · 64 KB
/
default-icon-descriptions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export default {
activeads: {
message: "Sheet with image and headline with highlighted checkmark",
id: "icon.title.active-ads",
comment: "Title for active ads icon"
},
ads: {
message: "Sheet with image and headline",
id: "icon.title.ads",
comment: "Title for ads icon"
},
aircon: {
message: "Small air cooler",
id: "icon.title.air-con",
comment: "Title for air con icon"
},
airplane: {
message: "Airplane",
id: "icon.title.airplane",
comment: "Title for airplane icon"
},
airplanehotel: {
message: "Flight and hotel",
id: "icon.title.airplane-hotel",
comment: "Title for airplane hotel icon"
},
alert: {
message: "Circle with exclamation point",
id: "icon.title.alert",
comment: "Title for alert icon"
},
allwheeldrive: {
message: "All-wheel drive",
id: "icon.title.all-wheel-drive",
comment: "Title for all wheel drive icon"
},
animalpaw: {
message: "Dog's paw",
id: "icon.title.animal-paw",
comment: "Title for animal paw icon"
},
archway: {
message: "Archway",
id: "icon.title.archway",
comment: "Title for archway icon"
},
arrowdown: {
message: "Downward-pointing arrow",
id: "icon.title.arrow-down",
comment: "Title for arrow down icon"
},
arrowleft: {
message: "Leftward-pointing arrow",
id: "icon.title.arrow-left",
comment: "Title for table arrow left icon"
},
arrowright: {
message: "Rightward-pointing arrow",
id: "icon.title.arrow-right",
comment: "Title for table arrow right icon"
},
arrowup: {
message: "Upward-pointing arrow",
id: "icon.title.arrow-up",
comment: "Title for arrow up icon"
},
attachment: {
message: "Paperclip",
id: "icon.title.attachment",
comment: "Title for attachment icon"
},
automatic: {
message: "Automatic transmission",
id: "icon.title.automatic",
comment: "Title for automatic icon"
},
autovexdark: {
message: "AutovexDark logo",
id: "icon.title.autovexdark",
comment: "Title for AutovexDark icon"
},
autovexlight: {
message: "AutovexLight logo",
id: "icon.title.autovexlight",
comment: "Title for AutovexLight icon"
},
awardmedal: {
message: "Award medal",
id: "icon.title.award-medal",
comment: "Title for award medal icon"
},
babyonesie: {
message: "Baby onesie",
id: "icon.title.baby-onesie",
comment: "Title for baby onesie icon"
},
backwheeldrive: {
message: "Rear-wheel drive",
id: "icon.title.back-wheel-drive",
comment: "Title for back wheel drive icon"
},
bag: {
message: "Handbag",
id: "icon.title.bag",
comment: "Title for bag icon"
},
bank: {
message: "A bank with three columns",
id: "icon.title.bank",
comment: "Title for bank icon"
},
bankidno: {
message: "BankID logo",
id: "icon.title.bank-id-no",
comment: "Title for Norwegian BankID icon"
},
batteryempty: {
message: "Empty battery",
id: "icon.title.battery-empty",
comment: "Title for battery empty icon"
},
batteryfull: {
message: "Full battery",
id: "icon.title.battery-full",
comment: "Title for battery full icon"
},
batteryhalffull: {
message: "Half-full battery",
id: "icon.title.battery-half-full",
comment: "Title for battery half full icon"
},
beach: {
message: "Beach umbrella",
id: "icon.title.beach",
comment: "Title for beach icon"
},
bell: {
message: "Bell",
id: "icon.title.bell",
comment: "Title for bell icon"
},
bellfilled: {
message: "Bell",
id: "icon.title.bell-filled",
comment: "Title for bell filled icon"
},
bin: {
message: "Trash can",
id: "icon.title.bin",
comment: "Title for bin icon"
},
block: {
message: "Person with highlighted no entry sign",
id: "icon.title.block",
comment: "Title for block icon"
},
boatlength: {
message: "Boat with arrows in both directions",
id: "icon.title.boat-length",
comment: "Title for boat length icon"
},
bolt: {
message: "Lightning bolt",
id: "icon.title.bolt",
comment: "Title for bolt icon"
},
bookmark: {
message: "Bookmark",
id: "icon.title.bookmark",
comment: "Title for bookmark icon"
},
browser: {
message: "Browser window with a t-shirt and a highlighted mouse pointer",
id: "icon.title.browser",
comment: "Title for browser icon"
},
browserverified: {
message: "Browser with highlighted shield in the bottom right corner",
id: "icon.title.browser-verified",
comment: "Title for browser verified icon"
},
building: {
message: "Apartment building",
id: "icon.title.building",
comment: "Title for building icon"
},
buildingplot: {
message: "Dotted square with a highlighted house",
id: "icon.title.building-plot",
comment: "Title for building plot icon"
},
bulb: {
message: "Lightbulb",
id: "icon.title.bulb",
comment: "Title for bulb icon"
},
bulldozer: {
message: "Bulldozer",
id: "icon.title.bulldozer",
comment: "Title for bulldozer icon"
},
burger: {
message: "Three horizontal lines",
id: "icon.title.burger",
comment: "Title for burger icon"
},
bus: {
message: "Bus",
id: "icon.title.bus",
comment: "Title for bus icon"
},
cabin: {
message: "Vacation cabin",
id: "icon.title.cabin",
comment: "Title for cabin icon"
},
cabinhut: {
message: "Cabin with garden",
id: "icon.title.cabin-hut",
comment: "Title for cabin hut icon"
},
calculator: {
message: "Calculator",
id: "icon.title.calculator",
comment: "Title for calculator icon"
},
calendar: {
message: "Calendar",
id: "icon.title.calendar",
comment: "Title for calendar icon"
},
calendarevent: {
message: "Calendar event",
id: "icon.title.calendar-event",
comment: "Title for calendar event icon"
},
camera: {
message: "Camera",
id: "icon.title.camera",
comment: "Title for camera icon"
},
camping: {
message: "Camper",
id: "icon.title.camping",
comment: "Title for camping icon"
},
cancel: {
message: "Circle with a diagonal line",
id: "icon.title.cancel",
comment: "Title for cancel icon"
},
car: {
message: "Car",
id: "icon.title.car",
comment: "Title for car icon"
},
carbody: {
message: "Car with highlighted body",
id: "icon.title.car-body",
comment: "Title for car body icon"
},
card: {
message: "Credit card",
id: "icon.title.card",
comment: "Title for card icon"
},
cardoor: {
message: "Car door",
id: "icon.title.car-door",
comment: "Title for car door icon"
},
carfront: {
message: "Car front view",
id: "icon.title.car-front",
comment: "Title for car front icon"
},
carinterior: {
message: "Car interior",
id: "icon.title.car-interior",
comment: "Title for car interior icon"
},
carkey: {
message: "Car key",
id: "icon.title.car-key",
comment: "Title for car key icon"
},
carpart: {
message: "Car part",
id: "icon.title.carpart",
comment: "Title for CarPart icon"
},
carrear: {
message: "Car rear view",
id: "icon.title.car-rear",
comment: "Title for car rear icon"
},
carrent: {
message: "Car and clock",
id: "icon.title.car-rent",
comment: "Title for car rent icon"
},
carservice: {
message: "Car and star",
id: "icon.title.car-service",
comment: "Title for car service icon"
},
carsubscription: {
message: "Car and checklist",
id: "icon.title.car-subscription",
comment: "Title for car subscription icon"
},
cart: {
message: "Shopping cart",
id: "icon.title.cart",
comment: "Title for cart icon"
},
cartrunk: {
message: "Car trunk",
id: "icon.title.car-trunk",
comment: "Title for car trunk icon"
},
cash: {
message: "Stack of cash",
id: "icon.title.cash",
comment: "Title for cash icon"
},
chainsaw: {
message: "Chainsaw",
id: "icon.title.chainsaw",
comment: "Title for chainsaw icon"
},
chair: {
message: "Chair",
id: "icon.title.chair",
comment: "Title for Chair icon"
},
charger: {
message: "Charging cable",
id: "icon.title.charger",
comment: "Title for charger icon"
},
chart: {
message: "Bar chart",
id: "icon.title.chart",
comment: "Title for chart icon"
},
charter: {
message: "Suitcase",
id: "icon.title.charter",
comment: "Title for charter icon"
},
chat: {
message: "Chat bubble",
id: "icon.title.chat",
comment: "Title for chat icon"
},
chatrequest: {
message: "Speech bubble next to a person",
id: "icon.title.chat-request",
comment: "Title for chat request icon"
},
chatsupport: {
message: "Speech bubbles with smiley faces",
id: "icon.title.chat-support",
comment: "Title for chat support icon"
},
check: {
message: "Checkmark",
id: "icon.title.check",
comment: "Title for check icon"
},
checklist: {
message: "Checklist",
id: "icon.title.checklist",
comment: "Title for checklist icon"
},
checkmark: {
message: "Checkmark",
id: "icon.title.checkmark",
comment: "Title for checkmark icon"
},
checkmarkcircle: {
message: "Checkmark in a circle",
id: "icon.title.checkmark-circle",
comment: "Title for checkmark circle icon"
},
checkmarksuccess: {
message: "Green checkmark",
id: "icon.title.checkmark-success",
comment: "Title for checkmark success icon"
},
checkshield: {
message: "Shield with checkmark",
id: "icon.title.check-shield",
comment: "Title for check shield icon"
},
chevrondoubleleft: {
message: "Double leftward arrow",
id: "icon.title.chevron-double-left",
comment: "Title for chevron-double-left icon"
},
chevrondoubleright: {
message: "Double rightward arrow",
id: "icon.title.chevron-double-right",
comment: "Title for chevron-double-right icon"
},
chevrondown: {
message: "Downward arrow",
id: "icon.title.chevron-down",
comment: "Title for chevron-down icon"
},
chevronleft: {
message: "Leftward arrow",
id: "icon.title.chevron-left",
comment: "Title for chevron-left icon"
},
chevronright: {
message: "Rightward arrow",
id: "icon.title.chevron-right",
comment: "Title for chevron-right icon"
},
chevronup: {
message: "Upward arrow",
id: "icon.title.chevron-up",
comment: "Title for chevron-up icon"
},
circleplus: {
message: "Circle with plus sign",
id: "icon.title.circle-plus",
comment: "Title for circle-plus icon"
},
circleplusfilled: {
message: "Plus sign inside a circle",
id: "icon.title.circle-plus-filled",
comment: "Title for circle plus filled icon"
},
circleuser: {
message: "Circle with user profile",
id: "icon.title.circle-user",
comment: "Title for circle-user icon"
},
circleuserfilled: {
message: "Person in a circle",
id: "icon.title.circle-user-filled",
comment: "Title for circle user filled icon"
},
clipboard: {
message: "Clipboard",
id: "icon.title.clipboard",
comment: "Title for clipboard icon"
},
clock: {
message: "Clock",
id: "icon.title.clock",
comment: "Title for clock icon"
},
clockalarm: {
message: "Clock with alarm bell",
id: "icon.title.clock-alarm",
comment: "Title for clock alarm icon"
},
close: {
message: "Cross",
id: "icon.title.close",
comment: "Title for close icon"
},
clothes: {
message: "Shirt and pants",
id: "icon.title.clothes",
comment: "Title for clothes icon"
},
cloud: {
message: "Cloud",
id: "icon.title.cloud",
comment: "Title for cloud icon"
},
clouddownload: {
message: "Cloud with arrow pointing down",
id: "icon.title.cloud-download",
comment: "Title for cloud download icon"
},
cloudupload: {
message: "Cloud with arrow pointing up",
id: "icon.title.cloud-upload",
comment: "Title for cloud upload icon"
},
cocktails: {
message: "Cocktail glasses",
id: "icon.title.cocktails",
comment: "Title for cocktails icon"
},
code: {
message: "Code brackets",
id: "icon.title.code",
comment: "Title for code icon"
},
cog: {
message: "Gear",
id: "icon.title.cog",
comment: "Title for cog icon"
},
colorpalette: {
message: "Color palette",
id: "icon.title.color-palette",
comment: "Title for color palette icon"
},
compass: {
message: "Compass",
id: "icon.title.compass",
comment: "Title for compass icon"
},
computer: {
message: "Desktop computer",
id: "icon.title.computer",
comment: "Title for computer icon"
},
computerlaptop: {
message: "Laptop computer",
id: "icon.title.computer-laptop",
comment: "Title for laptop computer icon"
},
computermonitor: {
message: "Computer monitor",
id: "icon.title.computer-monitor",
comment: "Title for computer monitor icon"
},
conference: {
message: "Conference table with chairs",
id: "icon.title.conference",
comment: "Title for conference icon"
},
connect: {
message: "Two circles connected by a line",
id: "icon.title.connect",
comment: "Title for connect icon"
},
construction: {
message: "Construction cones",
id: "icon.title.construction",
comment: "Title for construction icon"
},
conversation: {
message: "Two chat bubbles",
id: "icon.title.conversation",
comment: "Title for conversation icon"
},
cooking: {
message: "Chef's hat and utensils",
id: "icon.title.cooking",
comment: "Title for cooking icon"
},
cottageplot: {
message: "Dotted square with a highlighted house",
id: "icon.title.cottage-plot",
comment: "Title for cottage plot icon"
},
creditcard: {
message: "Credit card",
id: "icon.title.credit-card",
comment: "Title for credit card icon"
},
cross: {
message: "Red cross",
id: "icon.title.cross",
comment: "Title for cross icon"
},
crosscircle: {
message: "Red cross in a circle",
id: "icon.title.cross-circle",
comment: "Title for cross circle icon"
},
crown: {
message: "Crown",
id: "icon.title.crown",
comment: "Title for crown icon"
},
cup: {
message: "Trophy cup",
id: "icon.title.cup",
comment: "Title for cup icon"
},
cupcake: {
message: "Cupcake",
id: "icon.title.cupcake",
comment: "Title for cupcake icon"
},
cursor: {
message: "Mouse pointer over a circle",
id: "icon.title.cursor",
comment: "Title for cursor icon"
},
customer: {
message: "Customer",
id: "icon.title.customer",
comment: "Title for customer icon"
},
data: {
message: "Database",
id: "icon.title.data",
comment: "Title for data icon"
},
database: {
message: "Database",
id: "icon.title.database",
comment: "Title for database icon"
},
dating: {
message: "Two hearts",
id: "icon.title.dating",
comment: "Title for dating icon"
},
delivery: {
message: "Hand holding a small box",
id: "icon.title.delivery",
comment: "Title for delivery icon"
},
dental: {
message: "Tooth",
id: "icon.title.dental",
comment: "Title for dental icon"
},
diamond: {
message: "Diamond",
id: "icon.title.diamond",
comment: "Title for diamond icon"
},
dice: {
message: "Dice",
id: "icon.title.dice",
comment: "Title for dice icon"
},
dimensions: {
message: "Ruler and protractor",
id: "icon.title.dimensions",
comment: "Title for dimensions icon"
},
diner: {
message: "Knife and fork",
id: "icon.title.diner",
comment: "Title for diner icon"
},
directions: {
message: "Map with directions",
id: "icon.title.directions",
comment: "Title for directions icon"
},
discount: {
message: "Percentage sign",
id: "icon.title.discount",
comment: "Title for discount icon"
},
dislike: {
message: "Thumbs down",
id: "icon.title.dislike",
comment: "Title for dislike icon"
},
documents: {
message: "Stack of documents",
id: "icon.title.documents",
comment: "Title for documents icon"
},
dog: {
message: "Dog",
id: "icon.title.dog",
comment: "Title for dog icon"
},
dollarsign: {
message: "Dollar sign",
id: "icon.title.dollar-sign",
comment: "Title for dollar sign icon"
},
door: {
message: "Door",
id: "icon.title.door",
comment: "Title for door icon"
},
dots: {
message: "Three dots",
id: "icon.title.dots",
comment: "Title for dots icon"
},
dotsvertical: {
message: "Three vertical dots",
id: "icon.title.dots-vertical",
comment: "Title for dots vertical icon"
},
doublebed: {
message: "Double bed",
id: "icon.title.double-bed",
comment: "Title for double bed icon"
},
download: {
message: "Arrow pointing down",
id: "icon.title.download",
comment: "Title for download icon"
},
drawer: {
message: "Drawer",
id: "icon.title.drawer",
comment: "Title for drawer icon"
},
drink: {
message: "Cocktail glass",
id: "icon.title.drink",
comment: "Title for drink icon"
},
drone: {
message: "Drone",
id: "icon.title.drone",
comment: "Title for drone icon"
},
earring: {
message: "Earring",
id: "icon.title.earring",
comment: "Title for earring icon"
},
economy: {
message: "Banknote and two coins",
id: "icon.title.economy",
comment: "Title for economy icon"
},
edit: {
message: "Pencil",
id: "icon.title.edit",
comment: "Title for edit icon"
},
education: {
message: "Graduation cap",
id: "icon.title.education",
comment: "Title for education icon"
},
email: {
message: "Envelope with letter",
id: "icon.title.email",
comment: "Title for email icon"
},
emergency: {
message: "Emergency siren",
id: "icon.title.emergency",
comment: "Title for emergency icon"
},
employee: {
message: "Employee badge",
id: "icon.title.employee",
comment: "Title for employee icon"
},
energy: {
message: "Lightning bolt",
id: "icon.title.energy",
comment: "Title for energy icon"
},
engagement: {
message: "Engagement ring",
id: "icon.title.engagement",
comment: "Title for engagement icon"
},
engine: {
message: "Engine",
id: "icon.title.engine",
comment: "Title for engine icon"
},
enginebelt: {
message: "Fan belt",
id: "icon.title.engine-belt",
comment: "Title for engine belt icon"
},
entertainment: {
message: "Film reel",
id: "icon.title.entertainment",
comment: "Title for entertainment icon"
},
entry: {
message: "Keyhole",
id: "icon.title.entry",
comment: "Title for entry icon"
},
environment: {
message: "Tree and water",
id: "icon.title.environment",
comment: "Title for environment icon"
},
error: {
message: "Octagon with exclamation point",
id: "icon.title.error",
comment: "Title for error icon"
},
exchange: {
message: "Two arrows forming a circle",
id: "icon.title.exchange",
comment: "Title for exchange icon"
},
exercise: {
message: "Dumbbell",
id: "icon.title.exercise",
comment: "Title for exercise icon"
},
exit: {
message: "Exit door",
id: "icon.title.exit",
comment: "Title for exit icon"
},
expand: {
message: "Arrows pointing outwards",
id: "icon.title.expand",
comment: "Title for expand icon"
},
explore: {
message: "Magnifying glass",
id: "icon.title.explore",
comment: "Title for explore icon"
},
eyeoff: {
message: "Closed eye",
id: "icon.title.eye-off",
comment: "Title for eye-off icon"
},
eyeon: {
message: "Open eye",
id: "icon.title.eye-on",
comment: "Title for eye-on icon"
},
facebook: {
message: "Facebook logo",
id: "icon.title.facebook",
comment: "Title for Facebook icon"
},
factory: {
message: "Factory building",
id: "icon.title.factory",
comment: "Title for factory icon"
},
family: {
message: "Family of three",
id: "icon.title.family",
comment: "Title for family icon"
},
farm: {
message: "Barn with silo and birds",
id: "icon.title.farm",
comment: "Title for farm icon"
},
fastforward: {
message: "Two right-pointing arrows",
id: "icon.title.fast-forward",
comment: "Title for fast forward icon"
},
fastrewind: {
message: "Two left-pointing arrows",
id: "icon.title.fast-rewind",
comment: "Title for fast rewind icon"
},
feedback: {
message: "Speech bubbles",
id: "icon.title.feedback",
comment: "Title for feedback icon"
},
female: {
message: "Female gender symbol",
id: "icon.title.female",
comment: "Title for female icon"
},
fileadd: {
message: "File folder",
id: "icon.title.file-add",
comment: "Title for file add icon"
},
film: {
message: "Film reel",
id: "icon.title.film",
comment: "Title for film icon"
},
filter: {
message: "Funnel",
id: "icon.title.filter",
comment: "Title for filter icon"
},
finance: {
message: "Dollar sign and graph",
id: "icon.title.finance",
comment: "Title for finance icon"
},
find: {
message: "Magnifying glass",
id: "icon.title.find",
comment: "Title for find icon"
},
fire: {
message: "Fire flame",
id: "icon.title.fire",
comment: "Title for fire icon"
},
fireplace: {
message: "Fireplace",
id: "icon.title.fireplace",
comment: "Title for fireplace icon"
},
fishing: {
message: "Fishing hook",
id: "icon.title.fishing",
comment: "Title for fishing icon"
},
fitness: {
message: "Dumbbell",
id: "icon.title.fitness",
comment: "Title for fitness icon"
},
flag: {
message: "Flag",
id: "icon.title.flag",
comment: "Title for flag icon"
},
flight: {
message: "Airplane",
id: "icon.title.flight",
comment: "Title for flight icon"
},
flower: {
message: "Flower",
id: "icon.title.flower",
comment: "Title for flower icon"
},
folder: {
message: "File folder",
id: "icon.title.folder",
comment: "Title for folder icon"
},
food: {
message: "Plate with fork and knife",
id: "icon.title.food",
comment: "Title for food icon"
},
football: {
message: "Football",
id: "icon.title.football",
comment: "Title for football icon"
},
forms: {
message: "Clipboard with forms",
id: "icon.title.forms",
comment: "Title for forms icon"
},
forward: {
message: "Right-pointing arrow",
id: "icon.title.forward",
comment: "Title for forward icon"
},
frontwheeldrive: {
message: "Front-wheel drive",
id: "icon.title.front-wheel-drive",
comment: "Title for front-wheel drive icon"
},
furniture: {
message: "Sofa and table",
id: "icon.title.furniture",
comment: "Title for furniture icon"
},
gamepad: {
message: "Gamepad controller",
id: "icon.title.gamepad",
comment: "Title for gamepad icon"
},
gasdiesel: {
message: "Diesel pump",
id: "icon.title.gas-diesel",
comment: "Title for gas diesel icon"
},
gasfuel: {
message: "Gas pump",
id: "icon.title.gas-fuel",
comment: "Title for gas fuel icon"
},
gashybrid: {
message: "Circle with a plug and a drop",
id: "icon.title.gas-hybrid",
comment: "Title for gas hybrid icon"
},
gasstation: {
message: "Gas station",
id: "icon.title.gas-station",
comment: "Title for gas station icon"
},
geometricshapes: {
message: "Rectangle, ellipse, diamond and triangle shapes",
id: "icon.title.geometric-shapes",
comment: "Title for GeometricShapes icon"
},
gift: {
message: "Gift box",
id: "icon.title.gift",
comment: "Title for gift icon"
},
globe: {
message: "Globe",
id: "icon.title.globe",
comment: "Title for globe icon"
},
golf: {
message: "Golf club and ball",
id: "icon.title.golf",
comment: "Title for golf icon"