-
-
Notifications
You must be signed in to change notification settings - Fork 263
/
languages.go
81 lines (65 loc) · 2.87 KB
/
languages.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package gofakeit
// Language will return a random language
func Language() string { return language(GlobalFaker) }
// Language will return a random language
func (f *Faker) Language() string { return language(f) }
func language(f *Faker) string { return getRandValue(f, []string{"language", "long"}) }
// LanguageAbbreviation will return a random language abbreviation
func LanguageAbbreviation() string { return languageAbbreviation(GlobalFaker) }
// LanguageAbbreviation will return a random language abbreviation
func (f *Faker) LanguageAbbreviation() string { return languageAbbreviation(f) }
func languageAbbreviation(f *Faker) string { return getRandValue(f, []string{"language", "short"}) }
// LanguageBCP will return a random language BCP (Best Current Practices)
func LanguageBCP() string { return languageBCP(GlobalFaker) }
// LanguageBCP will return a random language BCP (Best Current Practices)
func (f *Faker) LanguageBCP() string { return languageBCP(f) }
func languageBCP(f *Faker) string { return getRandValue(f, []string{"language", "bcp"}) }
// ProgrammingLanguage will return a random programming language
func ProgrammingLanguage() string { return programmingLanguage(GlobalFaker) }
// ProgrammingLanguage will return a random programming language
func (f *Faker) ProgrammingLanguage() string { return programmingLanguage(f) }
func programmingLanguage(f *Faker) string {
return getRandValue(f, []string{"language", "programming"})
}
func addLanguagesLookup() {
AddFuncLookup("language", Info{
Display: "Language",
Category: "language",
Description: "System of communication using symbols, words, and grammar to convey meaning between individuals",
Example: "Kazakh",
Output: "string",
Generate: func(f *Faker, m *MapParams, info *Info) (any, error) {
return language(f), nil
},
})
AddFuncLookup("languageabbreviation", Info{
Display: "Language Abbreviation",
Category: "language",
Description: "Shortened form of a language's name",
Example: "kk",
Output: "string",
Generate: func(f *Faker, m *MapParams, info *Info) (any, error) {
return languageAbbreviation(f), nil
},
})
AddFuncLookup("languagebcp", Info{
Display: "Language BCP",
Category: "language",
Description: "Set of guidelines and standards for identifying and representing languages in computing and internet protocols",
Example: "en-US",
Output: "string",
Generate: func(f *Faker, m *MapParams, info *Info) (any, error) {
return languageBCP(f), nil
},
})
AddFuncLookup("programminglanguage", Info{
Display: "Programming Language",
Category: "language",
Description: "Formal system of instructions used to create software and perform computational tasks",
Example: "Go",
Output: "string",
Generate: func(f *Faker, m *MapParams, info *Info) (any, error) {
return programmingLanguage(f), nil
},
})
}