forked from zackha/SimpleEcommerceReactNativeApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProductList.js
154 lines (153 loc) · 3.03 KB
/
ProductList.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
const productApi = [
{
id: 1,
quantity: '800',
type: 'g',
defaultQty: '1',
defaultTyp: 'kg',
brand: '',
image: 'https://via.placeholder.com/1000',
tr: {
title: 'Salkım Somates',
currency: 'TRY',
symbol: '₺',
production: 'Belçika',
category: 'Sebze',
},
de: {
title: 'Strauchtomaten',
currency: 'EUR',
symbol: '€',
production: 'Belgien',
category: 'Gemüse',
},
en: {
title: 'Cluster Tomatoes',
currency: 'USD', // I'm assuming you want USD for English translations, please adjust if needed
symbol: '$',
production: 'Belgium',
category: 'Vegetable',
},
},
{
id: 2,
quantity: '2',
type: 'l',
defaultQty: '1',
defaultTyp: 'l',
brand: 'Coca Cola',
image: 'https://via.placeholder.com/1000',
tr: {
title: '2lt Coca Cola',
currency: 'TRY',
symbol: '₺',
production: '',
category: 'İçecek',
},
de: {
title: 'Coca Cola Zzgl. Pfand',
currency: 'EUR',
symbol: '€',
production: '',
category: 'Getränk',
},
en: {
title: '2lt Coca Cola',
currency: 'USD',
symbol: '$',
production: '',
category: 'Drink',
},
},
{
id: 3,
quantity: '1000',
type: 'g',
defaultQty: '1',
defaultTyp: 'kg',
brand: 'Golden Farm',
image: 'https://via.placeholder.com/1000',
tr: {
title: 'Yeşil Biber',
currency: 'TRY',
symbol: '₺',
production: 'Türkiye',
category: 'Sebze',
},
de: {
title: 'Grüne Paprika',
currency: 'EUR',
symbol: '€',
production: 'Türkei',
category: 'Gemüse',
},
en: {
title: 'Green Pepper',
currency: 'USD',
symbol: '$',
production: 'Turkey',
category: 'Vegetable',
},
},
{
id: 4,
quantity: '1',
type: 'l',
defaultQty: '1',
defaultTyp: 'l',
brand: 'Fanta',
image: 'https://via.placeholder.com/1000',
tr: {
title: 'Fanta Portakal',
currency: 'TRY',
symbol: '₺',
production: '',
category: 'İçecek',
},
de: {
title: 'Fanta Orange',
currency: 'EUR',
symbol: '€',
production: '',
category: 'Getränk',
},
en: {
title: 'Fanta Orange',
currency: 'USD',
symbol: '$',
production: '',
category: 'Drink',
},
},
{
id: 5,
quantity: '150',
type: 'g',
defaultQty: '1',
defaultTyp: 'kg',
brand: 'Deluxe Nuts',
image: 'https://via.placeholder.com/1000',
tr: {
title: 'Badem',
currency: 'TRY',
symbol: '₺',
production: 'Antep',
category: 'Kuruyemiş',
},
de: {
title: 'Mandeln',
currency: 'EUR',
symbol: '€',
production: 'Antep',
category: 'Nüsse',
},
en: {
title: 'Almonds',
currency: 'USD',
symbol: '$',
production: 'Antep',
category: 'Nuts',
},
},
];
export default productApi;