photoprism/pkg/txt/smallwords.go
Michael Mayer ad93f04003 Backend: Add "des" to smallwords.go
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-07-21 03:30:18 +02:00

25 lines
349 B
Go

package txt
var SmallWords = map[string]bool{
"a": true,
"an": true,
"as": true,
"at": true,
"by": true,
"in": true,
"of": true,
"on": true,
"or": true,
"up": true,
"to": true,
"and": true,
"but": true,
"for": true,
"nor": true,
"the": true,
"from": true,
"with": true,
"und": true,
"des": true,
}