2017-06-08 10:28:36 +00:00
|
|
|
package data
|
2017-05-04 13:03:54 +00:00
|
|
|
|
2017-06-08 07:27:27 +00:00
|
|
|
// CODE GENERATED AUTOMATICALLY WITH gopkg.in/src-d/enry.v1/internal/code-generator
|
2017-05-04 13:03:54 +00:00
|
|
|
// THIS FILE SHOULD NOT BE EDITED BY HAND
|
|
|
|
// Extracted from github/linguist commit: {{ getCommit }}
|
|
|
|
|
2017-06-08 10:28:36 +00:00
|
|
|
// LanguagesByAlias keeps alias for different languages and use the name of the languages as an alias too.
|
2017-05-29 08:05:16 +00:00
|
|
|
// All the keys (alias or not) are written in lower case and the whitespaces has been replaced by underscores.
|
2017-06-08 10:28:36 +00:00
|
|
|
var LanguagesByAlias = map[string]string{
|
2017-05-04 13:03:54 +00:00
|
|
|
{{range $alias, $language := . -}}
|
|
|
|
"{{ $alias }}": {{ printf "%q" $language -}},
|
|
|
|
{{end -}}
|
|
|
|
}
|