feat: kubesphere 4.0 (#6115)

* feat: kubesphere 4.0

Signed-off-by: ci-bot <ci-bot@kubesphere.io>

* feat: kubesphere 4.0

Signed-off-by: ci-bot <ci-bot@kubesphere.io>

---------

Signed-off-by: ci-bot <ci-bot@kubesphere.io>
Co-authored-by: ks-ci-bot <ks-ci-bot@example.com>
Co-authored-by: joyceliu <joyceliu@yunify.com>
This commit is contained in:
KubeSphere CI Bot
2024-09-06 11:05:52 +08:00
committed by GitHub
parent b5015ec7b9
commit 447a51f08b
8557 changed files with 546695 additions and 1146174 deletions

View File

@@ -1,17 +1,24 @@
package flect
import "fmt"
var pluralRules = []rule{}
// AddPlural adds a rule that will replace the given suffix with the replacement suffix.
// The name is confusing. This function will be deprecated in the next release.
func AddPlural(suffix string, repl string) {
InsertPluralRule(suffix, repl)
}
// InsertPluralRule inserts a rule that will replace the given suffix with
// the repl(acement) at the begining of the list of the pluralize rules.
func InsertPluralRule(suffix, repl string) {
pluralMoot.Lock()
defer pluralMoot.Unlock()
pluralRules = append([]rule{{
suffix: suffix,
fn: func(s string) string {
s = s[:len(s)-len(suffix)]
return s + repl
},
fn: simpleRuleFunc(suffix, repl),
}}, pluralRules...)
pluralRules = append([]rule{{
@@ -20,136 +27,229 @@ func AddPlural(suffix string, repl string) {
}}, pluralRules...)
}
var singleToPlural = map[string]string{
"aircraft": "aircraft",
"alias": "aliases",
"alumna": "alumnae",
"alumnus": "alumni",
"analysis": "analyses",
"antenna": "antennas",
"antithesis": "antitheses",
"apex": "apexes",
"appendix": "appendices",
"axis": "axes",
"bacillus": "bacilli",
"bacterium": "bacteria",
"basis": "bases",
"beau": "beaus",
"bison": "bison",
"bureau": "bureaus",
"bus": "buses",
"campus": "campuses",
"caucus": "caucuses",
"child": "children",
"château": "châteaux",
"circus": "circuses",
"codex": "codices",
"concerto": "concertos",
"corpus": "corpora",
"crisis": "crises",
"criterion": "criteria",
"curriculum": "curriculums",
"datum": "data",
"deer": "deer",
"diagnosis": "diagnoses",
"die": "dice",
"dwarf": "dwarves",
"ellipsis": "ellipses",
"equipment": "equipment",
"erratum": "errata",
"fez": "fezzes",
"fish": "fish",
"focus": "foci",
"foo": "foos",
"foot": "feet",
"formula": "formulas",
"fungus": "fungi",
"genus": "genera",
"goose": "geese",
"graffito": "graffiti",
"grouse": "grouse",
"half": "halves",
"halo": "halos",
"hoof": "hooves",
"human": "humans",
"hypothesis": "hypotheses",
"index": "indices",
"information": "information",
"jeans": "jeans",
"larva": "larvae",
"libretto": "librettos",
"loaf": "loaves",
"locus": "loci",
"louse": "lice",
"matrix": "matrices",
"medium": "media",
"minutia": "minutiae",
"money": "money",
"moose": "moose",
"mouse": "mice",
"nebula": "nebulae",
"news": "news",
"nucleus": "nuclei",
"oasis": "oases",
"octopus": "octopi",
"offspring": "offspring",
"opus": "opera",
"ovum": "ova",
"ox": "oxen",
"parenthesis": "parentheses",
"person": "people",
"phenomenon": "phenomena",
"photo": "photos",
"phylum": "phyla",
"piano": "pianos",
"plus": "pluses",
"police": "police",
"prognosis": "prognoses",
"prometheus": "prometheuses",
"quiz": "quizzes",
"quota": "quotas",
"radius": "radiuses",
"referendum": "referendums",
"ress": "resses",
"rice": "rice",
"salmon": "salmon",
"sex": "sexes",
"series": "series",
"sheep": "sheep",
"shoe": "shoes",
"shrimp": "shrimp",
"species": "species",
"stimulus": "stimuli",
"stratum": "strata",
"swine": "swine",
"syllabus": "syllabi",
"symposium": "symposiums",
"synapse": "synapses",
"synopsis": "synopses",
"tableau": "tableaus",
"testis": "testes",
"thesis": "theses",
"thief": "thieves",
"tooth": "teeth",
"trout": "trout",
"tuna": "tuna",
"vedalia": "vedalias",
"vertebra": "vertebrae",
"vertix": "vertices",
"vita": "vitae",
"vortex": "vortices",
"wharf": "wharves",
"wife": "wives",
"woman": "women",
"wolf": "wolves",
"you": "you",
type word struct {
singular string
plural string
alternative string
unidirectional bool // plural to singular is not possible (or bad)
uncountable bool
exact bool
}
// dictionary is the main table for singularize and pluralize.
// All words in the dictionary will be added to singleToPlural, pluralToSingle
// and singlePluralAssertions by init() functions.
var dictionary = []word{
// identicals https://en.wikipedia.org/wiki/English_plurals#Nouns_with_identical_singular_and_plural
{singular: "aircraft", plural: "aircraft"},
{singular: "beef", plural: "beef", alternative: "beefs"},
{singular: "bison", plural: "bison"},
{singular: "blues", plural: "blues", unidirectional: true},
{singular: "chassis", plural: "chassis"},
{singular: "deer", plural: "deer"},
{singular: "fish", plural: "fish", alternative: "fishes"},
{singular: "moose", plural: "moose"},
{singular: "police", plural: "police"},
{singular: "salmon", plural: "salmon", alternative: "salmons"},
{singular: "series", plural: "series"},
{singular: "sheep", plural: "sheep"},
{singular: "shrimp", plural: "shrimp", alternative: "shrimps"},
{singular: "species", plural: "species"},
{singular: "swine", plural: "swine", alternative: "swines"},
{singular: "trout", plural: "trout", alternative: "trouts"},
{singular: "tuna", plural: "tuna", alternative: "tunas"},
{singular: "you", plural: "you"},
// -en https://en.wikipedia.org/wiki/English_plurals#Plurals_in_-(e)n
{singular: "child", plural: "children"},
{singular: "ox", plural: "oxen", exact: true},
// apophonic https://en.wikipedia.org/wiki/English_plurals#Apophonic_plurals
{singular: "foot", plural: "feet"},
{singular: "goose", plural: "geese"},
{singular: "man", plural: "men"},
{singular: "human", plural: "humans"}, // not humen
{singular: "louse", plural: "lice", exact: true},
{singular: "mouse", plural: "mice"},
{singular: "tooth", plural: "teeth"},
{singular: "woman", plural: "women"},
// misc https://en.wikipedia.org/wiki/English_plurals#Miscellaneous_irregular_plurals
{singular: "die", plural: "dice", exact: true},
{singular: "person", plural: "people"},
// Words from French that end in -u add an x; in addition to eau to eaux rule
{singular: "adieu", plural: "adieux", alternative: "adieus"},
{singular: "fabliau", plural: "fabliaux"},
{singular: "bureau", plural: "bureaus", alternative: "bureaux"}, // popular
// Words from Greek that end in -on change -on to -a; in addition to hedron rule
{singular: "criterion", plural: "criteria"},
{singular: "ganglion", plural: "ganglia", alternative: "ganglions"},
{singular: "lexicon", plural: "lexica", alternative: "lexicons"},
{singular: "mitochondrion", plural: "mitochondria", alternative: "mitochondrions"},
{singular: "noumenon", plural: "noumena"},
{singular: "phenomenon", plural: "phenomena"},
{singular: "taxon", plural: "taxa"},
// Words from Latin that end in -um change -um to -a; in addition to some rules
{singular: "media", plural: "media"}, // popular case: media -> media
{singular: "medium", plural: "media", alternative: "mediums", unidirectional: true},
{singular: "stadium", plural: "stadiums", alternative: "stadia"},
{singular: "aquarium", plural: "aquaria", alternative: "aquariums"},
{singular: "auditorium", plural: "auditoria", alternative: "auditoriums"},
{singular: "symposium", plural: "symposia", alternative: "symposiums"},
{singular: "curriculum", plural: "curriculums", alternative: "curricula"}, // ulum
{singular: "quota", plural: "quotas"},
// Words from Latin that end in -us change -us to -i or -era
{singular: "alumnus", plural: "alumni", alternative: "alumnuses"}, // -i
{singular: "bacillus", plural: "bacilli"},
{singular: "cactus", plural: "cacti", alternative: "cactuses"},
{singular: "coccus", plural: "cocci"},
{singular: "focus", plural: "foci", alternative: "focuses"},
{singular: "locus", plural: "loci", alternative: "locuses"},
{singular: "nucleus", plural: "nuclei", alternative: "nucleuses"},
{singular: "octopus", plural: "octupuses", alternative: "octopi"},
{singular: "radius", plural: "radii", alternative: "radiuses"},
{singular: "syllabus", plural: "syllabi"},
{singular: "corpus", plural: "corpora", alternative: "corpuses"}, // -ra
{singular: "genus", plural: "genera"},
// Words from Latin that end in -a change -a to -ae
{singular: "alumna", plural: "alumnae"},
{singular: "vertebra", plural: "vertebrae"},
{singular: "differentia", plural: "differentiae"}, // -tia
{singular: "minutia", plural: "minutiae"},
{singular: "vita", plural: "vitae"}, // -ita
{singular: "larva", plural: "larvae"}, // -va
{singular: "postcava", plural: "postcavae"},
{singular: "praecava", plural: "praecavae"},
{singular: "uva", plural: "uvae"},
// Words from Latin that end in -ex change -ex to -ices
{singular: "apex", plural: "apices", alternative: "apexes"},
{singular: "codex", plural: "codices", alternative: "codexes"},
{singular: "index", plural: "indices", alternative: "indexes"},
{singular: "latex", plural: "latices", alternative: "latexes"},
{singular: "vertex", plural: "vertices", alternative: "vertexes"},
{singular: "vortex", plural: "vortices", alternative: "vortexes"},
// Words from Latin that end in -ix change -ix to -ices (eg, matrix becomes matrices)
{singular: "appendix", plural: "appendices", alternative: "appendixes"},
{singular: "radix", plural: "radices", alternative: "radixes"},
{singular: "helix", plural: "helices", alternative: "helixes"},
// Words from Latin that end in -is change -is to -es
{singular: "axis", plural: "axes", exact: true},
{singular: "crisis", plural: "crises"},
{singular: "ellipsis", plural: "ellipses", unidirectional: true}, // ellipse
{singular: "genesis", plural: "geneses"},
{singular: "oasis", plural: "oases"},
{singular: "thesis", plural: "theses"},
{singular: "testis", plural: "testes"},
{singular: "base", plural: "bases"}, // popular case
{singular: "basis", plural: "bases", unidirectional: true},
{singular: "alias", plural: "aliases", exact: true}, // no alia, no aliasis
{singular: "vedalia", plural: "vedalias"}, // no vedalium, no vedaliases
// Words that end in -ch, -o, -s, -sh, -x, -z (can be conflict with the others)
{singular: "use", plural: "uses", exact: true}, // us vs use
{singular: "abuse", plural: "abuses"},
{singular: "cause", plural: "causes"},
{singular: "clause", plural: "clauses"},
{singular: "cruse", plural: "cruses"},
{singular: "excuse", plural: "excuses"},
{singular: "fuse", plural: "fuses"},
{singular: "house", plural: "houses"},
{singular: "misuse", plural: "misuses"},
{singular: "muse", plural: "muses"},
{singular: "pause", plural: "pauses"},
{singular: "ache", plural: "aches"},
{singular: "topaz", plural: "topazes"},
{singular: "buffalo", plural: "buffaloes", alternative: "buffalos"},
{singular: "potato", plural: "potatoes"},
{singular: "tomato", plural: "tomatoes"},
// uncountables
{singular: "equipment", uncountable: true},
{singular: "information", uncountable: true},
{singular: "jeans", uncountable: true},
{singular: "money", uncountable: true},
{singular: "news", uncountable: true},
{singular: "rice", uncountable: true},
// exceptions: -f to -ves, not -fe
{singular: "dwarf", plural: "dwarfs", alternative: "dwarves"},
{singular: "hoof", plural: "hoofs", alternative: "hooves"},
{singular: "thief", plural: "thieves"},
// exceptions: instead of -f(e) to -ves
{singular: "chive", plural: "chives"},
{singular: "hive", plural: "hives"},
{singular: "move", plural: "moves"},
// exceptions: instead of -y to -ies
{singular: "movie", plural: "movies"},
{singular: "cookie", plural: "cookies"},
// exceptions: instead of -um to -a
{singular: "pretorium", plural: "pretoriums"},
{singular: "agenda", plural: "agendas"}, // instead of plural of agendum
// exceptions: instead of -um to -a (chemical element names)
// Words from Latin that end in -a change -a to -ae
{singular: "formula", plural: "formulas", alternative: "formulae"}, // also -um/-a
// exceptions: instead of -o to -oes
{singular: "shoe", plural: "shoes"},
{singular: "toe", plural: "toes", exact: true},
{singular: "graffiti", plural: "graffiti"},
// abbreviations
{singular: "ID", plural: "IDs", exact: true},
}
// singleToPlural is the highest priority map for Pluralize().
// singularToPluralSuffixList is used to build pluralRules for suffixes and
// compound words.
var singleToPlural = map[string]string{}
// pluralToSingle is the highest priority map for Singularize().
// singularToPluralSuffixList is used to build singularRules for suffixes and
// compound words.
var pluralToSingle = map[string]string{}
// NOTE: This map should not be built as reverse map of singleToPlural since
// there are words that has the same plurals.
// build singleToPlural and pluralToSingle with dictionary
func init() {
for k, v := range singleToPlural {
pluralToSingle[v] = k
for _, wd := range dictionary {
if singleToPlural[wd.singular] != "" {
panic(fmt.Errorf("map singleToPlural already has an entry for %s", wd.singular))
}
if wd.uncountable && wd.plural == "" {
wd.plural = wd.singular
}
if wd.plural == "" {
panic(fmt.Errorf("plural for %s is not provided", wd.singular))
}
singleToPlural[wd.singular] = wd.plural
if !wd.unidirectional {
if pluralToSingle[wd.plural] != "" {
panic(fmt.Errorf("map pluralToSingle already has an entry for %s", wd.plural))
}
pluralToSingle[wd.plural] = wd.singular
if wd.alternative != "" {
if pluralToSingle[wd.alternative] != "" {
panic(fmt.Errorf("map pluralToSingle already has an entry for %s", wd.alternative))
}
pluralToSingle[wd.alternative] = wd.singular
}
}
}
}
@@ -158,129 +258,160 @@ type singularToPluralSuffix struct {
plural string
}
// singularToPluralSuffixList is a list of "bidirectional" suffix rules for
// the irregular plurals follow such rules.
//
// NOTE: IMPORTANT! The order of items in this list is the rule priority, not
// alphabet order. The first match will be used to inflect.
var singularToPluralSuffixList = []singularToPluralSuffix{
{"campus", "campuses"},
{"person", "people"},
{"phylum", "phyla"},
{"randum", "randa"},
{"actus", "acti"},
{"adium", "adia"},
{"basis", "basis"},
{"child", "children"},
{"chive", "chives"},
{"focus", "foci"},
{"genus", "genera"},
{"hello", "hellos"},
{"jeans", "jeans"},
{"louse", "lice"},
{"media", "media"},
{"mouse", "mice"},
{"movie", "movies"},
{"oasis", "oasis"},
{"atum", "ata"},
{"atus", "atuses"},
{"base", "bases"},
{"cess", "cesses"},
{"dium", "diums"},
{"eses", "esis"},
{"half", "halves"},
{"hive", "hives"},
{"iano", "ianos"},
{"irus", "iri"},
{"isis", "ises"},
{"leus", "li"},
{"mnus", "mni"},
{"move", "moves"},
{"news", "news"},
{"odex", "odice"},
{"oose", "eese"},
{"ouse", "ouses"},
{"ovum", "ova"},
{"shoe", "shoes"},
{"stis", "stes"},
{"tive", "tives"},
{"vice", "vices"},
{"wife", "wives"},
{"afe", "aves"},
{"bfe", "bves"},
{"box", "boxes"},
{"cfe", "cves"},
{"dfe", "dves"},
{"dge", "dges"},
{"efe", "eves"},
{"gfe", "gves"},
{"hfe", "hves"},
{"ife", "ives"},
{"itz", "itzes"},
{"ium", "ia"},
{"ize", "izes"},
{"jfe", "jves"},
{"kfe", "kves"},
{"man", "men"},
{"mfe", "mves"},
{"nfe", "nves"},
{"nna", "nnas"},
// https://en.wiktionary.org/wiki/Appendix:English_irregular_nouns#Rules
// Words that end in -f or -fe change -f or -fe to -ves
{"tive", "tives"}, // exception
{"eaf", "eaves"},
{"oaf", "oaves"},
{"oci", "ocus"},
{"ode", "odes"},
{"ofe", "oves"},
{"pfe", "pves"},
{"qfe", "qves"},
{"quy", "quies"},
{"afe", "aves"},
{"arf", "arves"},
{"rfe", "rves"},
{"sfe", "sves"},
{"tfe", "tves"},
{"tum", "ta"},
{"tus", "tuses"},
{"ufe", "uves"},
{"ula", "ulae"},
{"ula", "ulas"},
{"uli", "ulus"},
{"use", "uses"},
{"uss", "usses"},
{"vfe", "vves"},
{"wfe", "wves"},
{"xfe", "xves"},
{"yfe", "yves"},
{"you", "you"},
{"zfe", "zves"},
{"by", "bies"},
{"ch", "ches"},
{"cy", "cies"},
{"dy", "dies"},
{"ex", "ices"},
{"fy", "fies"},
{"gy", "gies"},
{"hy", "hies"},
{"io", "ios"},
{"jy", "jies"},
{"ky", "kies"},
{"lf", "lves"},
{"ly", "lies"},
{"my", "mies"},
{"ny", "nies"},
{"py", "pies"},
{"qy", "qies"},
{"rf", "rves"},
{"ry", "ries"},
{"lf", "lves"},
{"fe", "ves"}, // previously '[a-eg-km-z]fe' TODO: regex support
// Words that end in -y preceded by a consonant change -y to -ies
{"ay", "ays"},
{"ey", "eys"},
{"oy", "oys"},
{"quy", "quies"},
{"uy", "uys"},
{"y", "ies"}, // '[^aeiou]y'
// Words from French that end in -u add an x (eg, château becomes châteaux)
{"eau", "eaux"}, // it seems like 'eau' is the most popular form of this rule
// Words from Latin that end in -a change -a to -ae; before -on to -a and -um to -a
{"bula", "bulae"},
{"dula", "bulae"},
{"lula", "bulae"},
{"nula", "bulae"},
{"vula", "bulae"},
// Words from Greek that end in -on change -on to -a (eg, polyhedron becomes polyhedra)
// https://en.wiktionary.org/wiki/Category:English_irregular_plurals_ending_in_"-a"
{"hedron", "hedra"},
// Words from Latin that end in -um change -um to -a (eg, minimum becomes minima)
// https://en.wiktionary.org/wiki/Category:English_irregular_plurals_ending_in_"-a"
{"ium", "ia"}, // some exceptions especially chemical element names
{"seum", "seums"},
{"eum", "ea"},
{"oum", "oa"},
{"stracum", "straca"},
{"dum", "da"},
{"elum", "ela"},
{"ilum", "ila"},
{"olum", "ola"},
{"ulum", "ula"},
{"llum", "lla"},
{"ylum", "yla"},
{"imum", "ima"},
{"ernum", "erna"},
{"gnum", "gna"},
{"brum", "bra"},
{"crum", "cra"},
{"terum", "tera"},
{"serum", "sera"},
{"trum", "tra"},
{"antum", "anta"},
{"atum", "ata"},
{"entum", "enta"},
{"etum", "eta"},
{"itum", "ita"},
{"otum", "ota"},
{"utum", "uta"},
{"ctum", "cta"},
{"ovum", "ova"},
// Words from Latin that end in -us change -us to -i or -era
// not easy to make a simple rule. just add them all to the dictionary
// Words from Latin that end in -ex change -ex to -ices (eg, vortex becomes vortices)
// Words from Latin that end in -ix change -ix to -ices (eg, matrix becomes matrices)
// for example, -dix, -dex, and -dice will have the same plural form so
// making a simple rule is not possible for them
{"trix", "trices"}, // ignore a few words end in trice
// Words from Latin that end in -is change -is to -es (eg, thesis becomes theses)
// -sis and -se has the same plural -ses so making a rule is not easy too.
{"iasis", "iases"},
{"mesis", "meses"},
{"kinesis", "kineses"},
{"resis", "reses"},
{"gnosis", "gnoses"}, // e.g. diagnosis
{"opsis", "opses"}, // e.g. synopsis
{"ysis", "yses"}, // e.g. analysis
// Words that end in -ch, -o, -s, -sh, -x, -z
{"ouse", "ouses"},
{"lause", "lauses"},
{"us", "uses"}, // use/uses is in the dictionary
{"ch", "ches"},
{"io", "ios"},
{"sh", "shes"},
{"ss", "sses"},
{"sy", "sies"},
{"ty", "ties"},
{"ez", "ezzes"},
{"iz", "izzes"},
{"tz", "tzes"},
{"va", "vae"},
{"vy", "vies"},
{"wy", "wies"},
{"xy", "xies"},
{"zy", "zies"},
{"zz", "zzes"},
{"ano", "anos"},
{"lo", "los"},
{"to", "tos"},
{"oo", "oos"},
{"o", "oes"},
{"x", "xes"},
// for abbreviations
{"S", "Ses"},
// excluded rules: seems rare
// Words from Hebrew that add -im or -ot (eg, cherub becomes cherubim)
// - cherub (cherubs or cherubim), seraph (seraphs or seraphim)
// Words from Greek that end in -ma change -ma to -mata
// - The most of words end in -ma are in this category but it looks like
// just adding -s is more popular.
// Words from Latin that end in -nx change -nx to -nges
// - The most of words end in -nx are in this category but it looks like
// just adding -es is more popular. (sphinxes)
// excluded rules: don't care at least for now:
// Words that end in -ful that add an s after the -ful
// Words that end in -s or -ese denoting a national of a particular country
// Symbols or letters, which often add -'s
}
func init() {
for i := len(singularToPluralSuffixList) - 1; i >= 0; i-- {
AddPlural(singularToPluralSuffixList[i].singular, singularToPluralSuffixList[i].plural)
AddSingular(singularToPluralSuffixList[i].plural, singularToPluralSuffixList[i].singular)
InsertPluralRule(singularToPluralSuffixList[i].singular, singularToPluralSuffixList[i].plural)
InsertSingularRule(singularToPluralSuffixList[i].plural, singularToPluralSuffixList[i].singular)
}
// build pluralRule and singularRule with dictionary for compound words
for _, wd := range dictionary {
if wd.exact {
continue
}
if wd.uncountable && wd.plural == "" {
wd.plural = wd.singular
}
InsertPluralRule(wd.singular, wd.plural)
if !wd.unidirectional {
InsertSingularRule(wd.plural, wd.singular)
if wd.alternative != "" {
InsertSingularRule(wd.alternative, wd.singular)
}
}
}
}