Incorporating default tags in spanish #321
2 changed files with 28 additions and 16 deletions
20
dist/bundle.es.js
vendored
20
dist/bundle.es.js
vendored
File diff suppressed because one or more lines are too long
|
@ -36,7 +36,7 @@ export const MATURE_TAGS = [
|
||||||
'hentai',
|
'hentai',
|
||||||
];
|
];
|
||||||
|
|
||||||
export const DEFAULT_KNOWN_TAGS = [
|
const DEFAULT_ENGLISH_KNOWN_TAGS = [
|
||||||
'free speech',
|
'free speech',
|
||||||
'censorship',
|
'censorship',
|
||||||
'gaming',
|
'gaming',
|
||||||
|
@ -521,3 +521,25 @@ export const DEFAULT_KNOWN_TAGS = [
|
||||||
'covidcuts',
|
'covidcuts',
|
||||||
'covid-19',
|
'covid-19',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const DEFAULT_SPANISH_KNOWN_TAGS = [
|
||||||
|
'español',
|
||||||
|
'tecnología',
|
||||||
|
'criptomonedas',
|
||||||
|
'economía',
|
||||||
|
'bitcoin',
|
||||||
|
'educación',
|
||||||
|
'videojuegos',
|
||||||
|
'música',
|
||||||
|
'noticias',
|
||||||
|
'ciencia',
|
||||||
|
'deportes',
|
||||||
|
'latinoamérica',
|
||||||
|
'latam',
|
||||||
(and call (and call `.unique()` on resultant merge)
|
|||||||
|
'conspiración',
|
||||||
|
'humor',
|
||||||
|
'política',
|
||||||
|
'tutoriales',
|
||||||
|
];
|
||||||
|
|
||||||
|
export const DEFAULT_KNOWN_TAGS = [...DEFAULT_ENGLISH_KNOWN_TAGS, ...DEFAULT_SPANISH_KNOWN_TAGS];
|
||||||
|
|
Loading…
Reference in a new issue
@seanyesmunt I told @michaelmitnick to do this but we should probably split the Spanish tags into a separate array for easier future refactoring/cleanup