mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add category IDs
This commit is contained in:
parent
a0297d3613
commit
14b1d47dc9
1 changed files with 25 additions and 0 deletions
|
|
@ -10,62 +10,85 @@ export const categoryTemplate = {
|
||||||
|
|
||||||
export const categories = {
|
export const categories = {
|
||||||
|
|
||||||
|
'no-category': {
|
||||||
|
id: 0
|
||||||
|
},
|
||||||
|
|
||||||
// App lists
|
// App lists
|
||||||
'developer-tools': {
|
'developer-tools': {
|
||||||
|
id: 1,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Developer Tools',
|
label: 'Developer Tools',
|
||||||
pluralLabel: 'Developer Tools',
|
pluralLabel: 'Developer Tools',
|
||||||
slug: 'developer-tools',
|
slug: 'developer-tools',
|
||||||
},
|
},
|
||||||
|
|
||||||
'productivity-tools': {
|
'productivity-tools': {
|
||||||
|
id: 2,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Productivity Tools',
|
label: 'Productivity Tools',
|
||||||
pluralLabel: 'Productivity Tools',
|
pluralLabel: 'Productivity Tools',
|
||||||
slug: 'productivity-tools',
|
slug: 'productivity-tools',
|
||||||
},
|
},
|
||||||
|
|
||||||
'video-and-motion-tools': {
|
'video-and-motion-tools': {
|
||||||
|
id: 3,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Video and Motion Tools',
|
label: 'Video and Motion Tools',
|
||||||
pluralLabel: 'Video and Motion Tools',
|
pluralLabel: 'Video and Motion Tools',
|
||||||
slug: 'video-and-motion-tools',
|
slug: 'video-and-motion-tools',
|
||||||
},
|
},
|
||||||
|
|
||||||
'social-and-communication': {
|
'social-and-communication': {
|
||||||
|
id: 4,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Social and Communication',
|
label: 'Social and Communication',
|
||||||
pluralLabel: 'Social and Communication Apps',
|
pluralLabel: 'Social and Communication Apps',
|
||||||
slug: 'social-and-communication',
|
slug: 'social-and-communication',
|
||||||
},
|
},
|
||||||
|
|
||||||
'entertainment-and-media-apps': {
|
'entertainment-and-media-apps': {
|
||||||
|
id: 5,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Entertainment and Media Apps',
|
label: 'Entertainment and Media Apps',
|
||||||
pluralLabel: 'Entertainment and Media Apps',
|
pluralLabel: 'Entertainment and Media Apps',
|
||||||
slug: 'entertainment-and-media-apps',
|
slug: 'entertainment-and-media-apps',
|
||||||
},
|
},
|
||||||
|
|
||||||
'music-and-audio-tools': {
|
'music-and-audio-tools': {
|
||||||
|
id: 6,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Music and Audio Tools',
|
label: 'Music and Audio Tools',
|
||||||
pluralLabel: 'Music and Audio Tools',
|
pluralLabel: 'Music and Audio Tools',
|
||||||
slug: 'music-and-audio-tools',
|
slug: 'music-and-audio-tools',
|
||||||
},
|
},
|
||||||
|
|
||||||
'photo-and-graphic-tools': {
|
'photo-and-graphic-tools': {
|
||||||
|
id: 7,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Photo and Graphic Tools',
|
label: 'Photo and Graphic Tools',
|
||||||
pluralLabel: 'Photo and Graphic Tools',
|
pluralLabel: 'Photo and Graphic Tools',
|
||||||
slug: 'photo-and-graphic-tools',
|
slug: 'photo-and-graphic-tools',
|
||||||
},
|
},
|
||||||
|
|
||||||
'science-and-research-software': {
|
'science-and-research-software': {
|
||||||
|
id: 8,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Science and Research Software',
|
label: 'Science and Research Software',
|
||||||
pluralLabel: 'Science and Research Software',
|
pluralLabel: 'Science and Research Software',
|
||||||
slug: 'science-and-research-software',
|
slug: 'science-and-research-software',
|
||||||
},
|
},
|
||||||
|
|
||||||
'3d-and-architecture': {
|
'3d-and-architecture': {
|
||||||
|
id: 9,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: '3D and Architecture',
|
label: '3D and Architecture',
|
||||||
pluralLabel: '3D and Architecture Applications',
|
pluralLabel: '3D and Architecture Applications',
|
||||||
slug: '3d-and-architecture',
|
slug: '3d-and-architecture',
|
||||||
},
|
},
|
||||||
|
|
||||||
'vpns-security-and-privacy': {
|
'vpns-security-and-privacy': {
|
||||||
|
id: 10,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'VPNs, Security, and Privacy',
|
label: 'VPNs, Security, and Privacy',
|
||||||
pluralLabel: 'VPN, Security, and Privacy Applications',
|
pluralLabel: 'VPN, Security, and Privacy Applications',
|
||||||
|
|
@ -74,6 +97,7 @@ export const categories = {
|
||||||
|
|
||||||
// Special Lists
|
// Special Lists
|
||||||
'games': {
|
'games': {
|
||||||
|
id: 100,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Games',
|
label: 'Games',
|
||||||
pluralLabel: 'Games',
|
pluralLabel: 'Games',
|
||||||
|
|
@ -87,6 +111,7 @@ export const categories = {
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
'homebrew': {
|
'homebrew': {
|
||||||
|
id: 101,
|
||||||
...categoryTemplate,
|
...categoryTemplate,
|
||||||
label: 'Homebrew',
|
label: 'Homebrew',
|
||||||
pluralLabel: 'Homebrew Formulae',
|
pluralLabel: 'Homebrew Formulae',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue