Incorporating default tags in spanish #321

Merged
michaelmitnick merged 3 commits from master into master 2020-06-05 17:12:08 +02:00
2 changed files with 11 additions and 2 deletions
Showing only changes of commit a883c4f56c - Show all commits

6
dist/bundle.es.js vendored

File diff suppressed because one or more lines are too long

View file

@ -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',
@ -520,6 +520,9 @@ export const DEFAULT_KNOWN_TAGS = [
'2020protests', '2020protests',
'covidcuts', 'covidcuts',
'covid-19', 'covid-19',
];
const DEFAULT_SPANISH_KNOWN_TAGS = [
'español', 'español',
'tecnología', 'tecnología',
'criptomonedas', 'criptomonedas',
@ -538,3 +541,5 @@ export const DEFAULT_KNOWN_TAGS = [
'política', 'política',
'tutoriales', 'tutoriales',
]; ];
export const DEFAULT_KNOWN_TAGS = [...DEFAULT_ENGLISH_KNOWN_TAGS, ...DEFAULT_SPANISH_KNOWN_TAGS];