-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(store): support for azerty (#557)
- Loading branch information
1 parent
062201f
commit 58416e1
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import {Store} from './store'; | ||
|
||
export const Azerty: Store = { | ||
labels: { | ||
inStock: { | ||
container: '.orderdelay', | ||
text: ['Volgende werkdag in huis', '1 werkdag', '2-3 werkdagen'] | ||
}, | ||
outOfStock: { | ||
container: '.orderdelay', | ||
text: ['Onbekend', 'meer dan 10 werkdagen', 'Pre-order'] | ||
} | ||
}, | ||
links: [ | ||
{ | ||
brand: 'test:brand', | ||
model: 'test:model', | ||
series: 'test:series', | ||
url: 'https://azerty.nl/product/gigabyte/3756757/geforce-rtx-2060-oc-6g-grafische-kaart-geforce-rtx-2060' | ||
}, | ||
{ | ||
brand: 'gigabyte', | ||
model: 'aorus xtreme', | ||
series: '3080', | ||
url: 'https://azerty.nl/product/gigabyte/4349658/aorus-geforce-rtx-3080-xtreme-10g-grafische-kaart-gf-rtx-3080' | ||
}, | ||
{ | ||
brand: 'msi', | ||
model: 'ventus 3x oc', | ||
series: '3080', | ||
url: 'https://azerty.nl/product/msi/4346262/geforce-rtx-3080-ventus-3x-10g-oc-grafische-kaart-rtx-3080' | ||
}, | ||
{ | ||
brand: 'asus', | ||
model: 'tuf gaming', | ||
series: '3080', | ||
url: 'https://azerty.nl/product/asus/4346679/tuf-gaming-geforce-rtx-3080-grafische-kaart-gf-rtx-3080' | ||
}, | ||
{ | ||
brand: 'msi', | ||
model: 'gaming x trio', | ||
series: '3080', | ||
url: 'https://azerty.nl/product/msi/4346263/geforce-rtx-3080-gaming-x-trio-10g-grafische-kaart-rtx-3080' | ||
}, | ||
{ | ||
brand: 'asus', | ||
model: 'tuf oc gaming', | ||
series: '3080', | ||
url: 'https://azerty.nl/product/asus/4348176/tuf-gaming-geforce-rtx-3080-oc-grafische-kaart-gf-rtx-3080' | ||
}, | ||
{ | ||
brand: 'asus', | ||
model: 'rog strix oc gaming', | ||
series: '3080', | ||
url: 'https://azerty.nl/product/asus/4348174/rog-strix-geforce-rtx-3080-oc-grafische-kaart-gf-rtx-3080' | ||
}, | ||
{ | ||
brand: 'zotac', | ||
model: 'trinity', | ||
series: '3080', | ||
url: 'https://azerty.nl/product/zotac/4352301/gaming-geforce-rtx-3080-trinity-oc-grafische-kaart-gf-rtx-3080' | ||
}, | ||
{ | ||
brand: 'gigabyte', | ||
model: 'aorus master', | ||
series: '3080', | ||
url: 'https://azerty.nl/product/gigabyte/4349651/aorus-geforce-rtx-3080-master-10g-grafische-kaart-gf-rtx-3080' | ||
}, | ||
{ | ||
brand: 'pny', | ||
model: 'xlr8 rgb', | ||
series: '3080', | ||
url: 'https://azerty.nl/product/pny/4342269/geforce-rtx-3080-xlr8-gaming-revel-epic-x-rgb-triple-fan-gaming-edition-grafische-kaart-gf-rtx-3080' | ||
} | ||
], | ||
name: 'azerty' | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters