iso-639-data 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +34 -0
- data/LICENSE.txt +21 -0
- data/README.md +58 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/iso-639-data.gemspec +26 -0
- data/lib/2.yaml +4075 -0
- data/lib/3.yaml +62938 -0
- data/lib/iso-639-data.rb +40 -0
- data/lib/iso-639-data/version.rb +3 -0
- metadata +61 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: cc7c24fbefd9d4f136a21d37c7abd354d219b97372b6df26e11446dbc4f00360
|
4
|
+
data.tar.gz: 6bb2dcc1e05edbf877ca8bf25a1c93c40471be33b354a380e51b1fbe1d53f1cb
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ef1263fcb6e5a89ac8f78a547a28d02a0badd2fbb925f8b0a6909d6f3146eb30ec1f37736053a64ad71c6d6809b03278563beaf933a86857c2b4d4e42431d0e6
|
7
|
+
data.tar.gz: 500abd196ef065cc5a0b893c4ee2b0270b638baa58d6f5dc37e927d131c4411ad670ad235716e3a5603229473ef149044d3e0a1bad29cb1315f17a6a280d16e1
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at webdev778@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
iso-639-data (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.4.4)
|
10
|
+
rake (12.3.3)
|
11
|
+
rspec (3.10.0)
|
12
|
+
rspec-core (~> 3.10.0)
|
13
|
+
rspec-expectations (~> 3.10.0)
|
14
|
+
rspec-mocks (~> 3.10.0)
|
15
|
+
rspec-core (3.10.0)
|
16
|
+
rspec-support (~> 3.10.0)
|
17
|
+
rspec-expectations (3.10.0)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.10.0)
|
20
|
+
rspec-mocks (3.10.0)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.10.0)
|
23
|
+
rspec-support (3.10.0)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
iso-639-data!
|
30
|
+
rake (~> 12.0)
|
31
|
+
rspec (~> 3.0)
|
32
|
+
|
33
|
+
BUNDLED WITH
|
34
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 webdev778
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
# ISO 639 Data
|
2
|
+
|
3
|
+
A Ruby gem that provides the ISO 639-3, ISO 639-2 and ISO 639-1 data sets along with some
|
4
|
+
convenience methods for accessing different entries and entry fields. The data
|
5
|
+
comes from the
|
6
|
+
[ISO 639-X UTF-8 data set](https://github.com/metanorma/iso-639-codes).
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
gem 'iso-639-data'
|
14
|
+
```
|
15
|
+
|
16
|
+
And then execute:
|
17
|
+
|
18
|
+
$ bundle install
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
$ gem install iso-639-data
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
require 'iso-639-data'
|
29
|
+
```
|
30
|
+
|
31
|
+
To get list of codes of unified ISO 639-X
|
32
|
+
```ruby
|
33
|
+
ISO_639_DATA.codes
|
34
|
+
```
|
35
|
+
|
36
|
+
To check if a given alpha-3 code is valid
|
37
|
+
```ruby
|
38
|
+
ISO_639_DATA.validate?("kor") # => true
|
39
|
+
```
|
40
|
+
|
41
|
+
## Development
|
42
|
+
|
43
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
44
|
+
|
45
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
46
|
+
|
47
|
+
## Contributing
|
48
|
+
|
49
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/webdev778/iso-639-data. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/webdev778/iso-639-data/blob/master/CODE_OF_CONDUCT.md).
|
50
|
+
|
51
|
+
|
52
|
+
## License
|
53
|
+
|
54
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
55
|
+
|
56
|
+
## Code of Conduct
|
57
|
+
|
58
|
+
Everyone interacting in the Iso::639::Data project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/webdev778/iso-639-data/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "iso-639-data"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
require_relative 'lib/iso-639-data/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "iso-639-data"
|
5
|
+
spec.version = ISO_639_DATA::VERSION
|
6
|
+
spec.authors = ["webdev778"]
|
7
|
+
spec.email = ["webdev778@gmail.com"]
|
8
|
+
|
9
|
+
spec.summary = %q{ISO 639-X language code entries.}
|
10
|
+
spec.description = %q{ISO 639-X language code entries.}
|
11
|
+
spec.homepage = "https://github.com/webdev778/iso-639-data"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
+
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = "https://github.com/webdev778/iso-639-data"
|
17
|
+
|
18
|
+
# Specify which files should be added to the gem when it is released.
|
19
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
20
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
21
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
22
|
+
end
|
23
|
+
spec.bindir = "exe"
|
24
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
|
+
spec.require_paths = ["lib"]
|
26
|
+
end
|
data/lib/2.yaml
ADDED
@@ -0,0 +1,4075 @@
|
|
1
|
+
---
|
2
|
+
# Authoritative source: https://www.loc.gov/standards/iso639-2/php/code_list.php
|
3
|
+
|
4
|
+
aar:
|
5
|
+
iso_639_1: aa
|
6
|
+
terminology: TRUE
|
7
|
+
bibliography: TRUE
|
8
|
+
eng: Afar
|
9
|
+
fra: afar
|
10
|
+
deu: Danakil-Sprache
|
11
|
+
|
12
|
+
abk:
|
13
|
+
iso_639_1: ab
|
14
|
+
terminology: TRUE
|
15
|
+
bibliography: TRUE
|
16
|
+
eng: Abkhazian
|
17
|
+
fra: abkhaze
|
18
|
+
deu: Abchasisch
|
19
|
+
|
20
|
+
ace:
|
21
|
+
terminology: TRUE
|
22
|
+
bibliography: TRUE
|
23
|
+
eng: Achinese
|
24
|
+
fra: aceh
|
25
|
+
deu: Aceh-Sprache
|
26
|
+
|
27
|
+
ach:
|
28
|
+
terminology: TRUE
|
29
|
+
bibliography: TRUE
|
30
|
+
eng: Acoli
|
31
|
+
fra: acoli
|
32
|
+
deu: Acholi-Sprache
|
33
|
+
|
34
|
+
ada:
|
35
|
+
terminology: TRUE
|
36
|
+
bibliography: TRUE
|
37
|
+
eng: Adangme
|
38
|
+
fra: adangme
|
39
|
+
deu: Adangme-Sprache
|
40
|
+
|
41
|
+
ady:
|
42
|
+
terminology: TRUE
|
43
|
+
bibliography: TRUE
|
44
|
+
eng: Adyghe; Adygei
|
45
|
+
fra: adyghé
|
46
|
+
deu: Adygisch
|
47
|
+
|
48
|
+
afa:
|
49
|
+
terminology: TRUE
|
50
|
+
bibliography: TRUE
|
51
|
+
eng: Afro-Asiatic languages
|
52
|
+
fra: afro-asiatiques, langues
|
53
|
+
deu: Hamitosemitische Sprachen (Andere)
|
54
|
+
|
55
|
+
afh:
|
56
|
+
terminology: TRUE
|
57
|
+
bibliography: TRUE
|
58
|
+
eng: Afrihili
|
59
|
+
fra: afrihili
|
60
|
+
deu: Afrihili
|
61
|
+
|
62
|
+
afr:
|
63
|
+
iso_639_1: af
|
64
|
+
terminology: TRUE
|
65
|
+
bibliography: TRUE
|
66
|
+
eng: Afrikaans
|
67
|
+
fra: afrikaans
|
68
|
+
deu: Afrikaans
|
69
|
+
|
70
|
+
ain:
|
71
|
+
terminology: TRUE
|
72
|
+
bibliography: TRUE
|
73
|
+
eng: Ainu
|
74
|
+
fra: aïnou
|
75
|
+
deu: Ainu-Sprache
|
76
|
+
|
77
|
+
aka:
|
78
|
+
iso_639_1: ak
|
79
|
+
terminology: TRUE
|
80
|
+
bibliography: TRUE
|
81
|
+
eng: Akan
|
82
|
+
fra: akan
|
83
|
+
deu: Akan-Sprache
|
84
|
+
|
85
|
+
akk:
|
86
|
+
terminology: TRUE
|
87
|
+
bibliography: TRUE
|
88
|
+
eng: Akkadian
|
89
|
+
fra: akkadien
|
90
|
+
deu: Akkadisch
|
91
|
+
|
92
|
+
alb :
|
93
|
+
iso_639_1:
|
94
|
+
terminology: FALSE
|
95
|
+
bibliography: TRUE
|
96
|
+
eng: Albanian
|
97
|
+
fra: albanais
|
98
|
+
deu: Albanisch
|
99
|
+
|
100
|
+
sqi :
|
101
|
+
iso_639_1: sq
|
102
|
+
terminology: TRUE
|
103
|
+
bibliography: FALSE
|
104
|
+
eng: Albanian
|
105
|
+
fra: albanais
|
106
|
+
deu: Albanisch
|
107
|
+
|
108
|
+
ale:
|
109
|
+
terminology: TRUE
|
110
|
+
bibliography: TRUE
|
111
|
+
eng: Aleut
|
112
|
+
fra: aléoute
|
113
|
+
deu: Aleutisch
|
114
|
+
|
115
|
+
alg:
|
116
|
+
terminology: TRUE
|
117
|
+
bibliography: TRUE
|
118
|
+
eng: Algonquian languages
|
119
|
+
fra: algonquines, langues
|
120
|
+
deu: Algonkin-Sprachen (Andere)
|
121
|
+
|
122
|
+
alt:
|
123
|
+
terminology: TRUE
|
124
|
+
bibliography: TRUE
|
125
|
+
eng: Southern Altai
|
126
|
+
fra: altai du Sud
|
127
|
+
deu: Altaisch
|
128
|
+
|
129
|
+
amh:
|
130
|
+
iso_639_1: am
|
131
|
+
terminology: TRUE
|
132
|
+
bibliography: TRUE
|
133
|
+
eng: Amharic
|
134
|
+
fra: amharique
|
135
|
+
deu: Amharisch
|
136
|
+
|
137
|
+
ang:
|
138
|
+
terminology: TRUE
|
139
|
+
bibliography: TRUE
|
140
|
+
eng: English, Old (ca.450-1100)
|
141
|
+
fra: anglo-saxon (ca.450-1100)
|
142
|
+
deu: Altenglisch
|
143
|
+
|
144
|
+
anp:
|
145
|
+
terminology: TRUE
|
146
|
+
bibliography: TRUE
|
147
|
+
eng: Angika
|
148
|
+
fra: angika
|
149
|
+
deu: Anga-Sprache
|
150
|
+
|
151
|
+
apa:
|
152
|
+
terminology: TRUE
|
153
|
+
bibliography: TRUE
|
154
|
+
eng: Apache languages
|
155
|
+
fra: apaches, langues
|
156
|
+
deu: Apachen-Sprachen
|
157
|
+
|
158
|
+
ara:
|
159
|
+
iso_639_1: ar
|
160
|
+
terminology: TRUE
|
161
|
+
bibliography: TRUE
|
162
|
+
eng: Arabic
|
163
|
+
fra: arabe
|
164
|
+
deu: Arabisch
|
165
|
+
|
166
|
+
arc:
|
167
|
+
terminology: TRUE
|
168
|
+
bibliography: TRUE
|
169
|
+
eng: Official Aramaic (700-300 BCE); Imperial Aramaic (700-300 BCE)
|
170
|
+
fra: araméen d'empire (700-300 BCE)
|
171
|
+
deu: Aramäisch
|
172
|
+
|
173
|
+
arg:
|
174
|
+
iso_639_1: an
|
175
|
+
terminology: TRUE
|
176
|
+
bibliography: TRUE
|
177
|
+
eng: Aragonese
|
178
|
+
fra: aragonais
|
179
|
+
deu: Aragonesisch
|
180
|
+
|
181
|
+
arm :
|
182
|
+
iso_639_1:
|
183
|
+
terminology: FALSE
|
184
|
+
bibliography: TRUE
|
185
|
+
eng: Armenian
|
186
|
+
fra: arménien
|
187
|
+
deu: Armenisch
|
188
|
+
|
189
|
+
hye :
|
190
|
+
iso_639_1: hy
|
191
|
+
terminology: TRUE
|
192
|
+
bibliography: FALSE
|
193
|
+
eng: Armenian
|
194
|
+
fra: arménien
|
195
|
+
deu: Armenisch
|
196
|
+
|
197
|
+
arn:
|
198
|
+
terminology: TRUE
|
199
|
+
bibliography: TRUE
|
200
|
+
eng: Mapudungun; Mapuche
|
201
|
+
fra: mapudungun; mapuche; mapuce
|
202
|
+
deu: Arauka-Sprachen
|
203
|
+
|
204
|
+
arp:
|
205
|
+
terminology: TRUE
|
206
|
+
bibliography: TRUE
|
207
|
+
eng: Arapaho
|
208
|
+
fra: arapaho
|
209
|
+
deu: Arapaho-Sprache
|
210
|
+
|
211
|
+
art:
|
212
|
+
terminology: TRUE
|
213
|
+
bibliography: TRUE
|
214
|
+
eng: Artificial languages
|
215
|
+
fra: artificielles, langues
|
216
|
+
deu: Kunstsprachen (Andere)
|
217
|
+
|
218
|
+
arw:
|
219
|
+
terminology: TRUE
|
220
|
+
bibliography: TRUE
|
221
|
+
eng: Arawak
|
222
|
+
fra: arawak
|
223
|
+
deu: Arawak-Sprachen
|
224
|
+
|
225
|
+
asm:
|
226
|
+
iso_639_1: as
|
227
|
+
terminology: TRUE
|
228
|
+
bibliography: TRUE
|
229
|
+
eng: Assamese
|
230
|
+
fra: assamais
|
231
|
+
deu: Assamesisch
|
232
|
+
|
233
|
+
ast:
|
234
|
+
terminology: TRUE
|
235
|
+
bibliography: TRUE
|
236
|
+
eng: Asturian; Bable; Leonese; Asturleonese
|
237
|
+
fra: asturien; bable; léonais; asturoléonais
|
238
|
+
deu: Asturisch
|
239
|
+
|
240
|
+
ath:
|
241
|
+
terminology: TRUE
|
242
|
+
bibliography: TRUE
|
243
|
+
eng: Athapascan languages
|
244
|
+
fra: athapascanes, langues
|
245
|
+
deu: Athapaskische Sprachen (Andere)
|
246
|
+
|
247
|
+
aus:
|
248
|
+
terminology: TRUE
|
249
|
+
bibliography: TRUE
|
250
|
+
eng: Australian languages
|
251
|
+
fra: australiennes, langues
|
252
|
+
deu: Australische Sprachen
|
253
|
+
|
254
|
+
ava:
|
255
|
+
iso_639_1: av
|
256
|
+
terminology: TRUE
|
257
|
+
bibliography: TRUE
|
258
|
+
eng: Avaric
|
259
|
+
fra: avar
|
260
|
+
deu: Awarisch
|
261
|
+
|
262
|
+
ave:
|
263
|
+
iso_639_1: ae
|
264
|
+
terminology: TRUE
|
265
|
+
bibliography: TRUE
|
266
|
+
eng: Avestan
|
267
|
+
fra: avestique
|
268
|
+
deu: Avestisch
|
269
|
+
|
270
|
+
awa:
|
271
|
+
terminology: TRUE
|
272
|
+
bibliography: TRUE
|
273
|
+
eng: Awadhi
|
274
|
+
fra: awadhi
|
275
|
+
deu: Awadhi
|
276
|
+
|
277
|
+
aym:
|
278
|
+
iso_639_1: ay
|
279
|
+
terminology: TRUE
|
280
|
+
bibliography: TRUE
|
281
|
+
eng: Aymara
|
282
|
+
fra: aymara
|
283
|
+
deu: Aymará-Sprache
|
284
|
+
|
285
|
+
aze:
|
286
|
+
iso_639_1: az
|
287
|
+
terminology: TRUE
|
288
|
+
bibliography: TRUE
|
289
|
+
eng: Azerbaijani
|
290
|
+
fra: azéri
|
291
|
+
deu: Aserbeidschanisch
|
292
|
+
|
293
|
+
bad:
|
294
|
+
terminology: TRUE
|
295
|
+
bibliography: TRUE
|
296
|
+
eng: Banda languages
|
297
|
+
fra: banda, langues
|
298
|
+
deu: Banda-Sprachen (Ubangi-Sprachen)
|
299
|
+
|
300
|
+
bai:
|
301
|
+
terminology: TRUE
|
302
|
+
bibliography: TRUE
|
303
|
+
eng: Bamileke languages
|
304
|
+
fra: bamiléké, langues
|
305
|
+
deu: Bamileke-Sprachen
|
306
|
+
|
307
|
+
bak:
|
308
|
+
iso_639_1: ba
|
309
|
+
terminology: TRUE
|
310
|
+
bibliography: TRUE
|
311
|
+
eng: Bashkir
|
312
|
+
fra: bachkir
|
313
|
+
deu: Baschkirisch
|
314
|
+
|
315
|
+
bal:
|
316
|
+
terminology: TRUE
|
317
|
+
bibliography: TRUE
|
318
|
+
eng: Baluchi
|
319
|
+
fra: baloutchi
|
320
|
+
deu: Belutschisch
|
321
|
+
|
322
|
+
bam:
|
323
|
+
iso_639_1: bm
|
324
|
+
terminology: TRUE
|
325
|
+
bibliography: TRUE
|
326
|
+
eng: Bambara
|
327
|
+
fra: bambara
|
328
|
+
deu: Bambara-Sprache
|
329
|
+
|
330
|
+
ban:
|
331
|
+
terminology: TRUE
|
332
|
+
bibliography: TRUE
|
333
|
+
eng: Balinese
|
334
|
+
fra: balinais
|
335
|
+
deu: Balinesisch
|
336
|
+
|
337
|
+
baq :
|
338
|
+
iso_639_1:
|
339
|
+
terminology: FALSE
|
340
|
+
bibliography: TRUE
|
341
|
+
eng: Basque
|
342
|
+
fra: basque
|
343
|
+
deu: Baskisch
|
344
|
+
|
345
|
+
eus :
|
346
|
+
iso_639_1: eu
|
347
|
+
terminology: TRUE
|
348
|
+
bibliography: FALSE
|
349
|
+
eng: Basque
|
350
|
+
fra: basque
|
351
|
+
deu: Baskisch
|
352
|
+
|
353
|
+
bas:
|
354
|
+
terminology: TRUE
|
355
|
+
bibliography: TRUE
|
356
|
+
eng: Basa
|
357
|
+
fra: basa
|
358
|
+
deu: Basaa-Sprache
|
359
|
+
|
360
|
+
bat:
|
361
|
+
terminology: TRUE
|
362
|
+
bibliography: TRUE
|
363
|
+
eng: Baltic languages
|
364
|
+
fra: baltes, langues
|
365
|
+
deu: Baltische Sprachen (Andere)
|
366
|
+
|
367
|
+
bej:
|
368
|
+
terminology: TRUE
|
369
|
+
bibliography: TRUE
|
370
|
+
eng: Beja; Bedawiyet
|
371
|
+
fra: bedja
|
372
|
+
deu: Bedauye
|
373
|
+
|
374
|
+
bel:
|
375
|
+
iso_639_1: be
|
376
|
+
terminology: TRUE
|
377
|
+
bibliography: TRUE
|
378
|
+
eng: Belarusian
|
379
|
+
fra: biélorusse
|
380
|
+
deu: Weißrussisch
|
381
|
+
|
382
|
+
bem:
|
383
|
+
terminology: TRUE
|
384
|
+
bibliography: TRUE
|
385
|
+
eng: Bemba
|
386
|
+
fra: bemba
|
387
|
+
deu: Bemba-Sprache
|
388
|
+
|
389
|
+
ben:
|
390
|
+
iso_639_1: bn
|
391
|
+
terminology: TRUE
|
392
|
+
bibliography: TRUE
|
393
|
+
eng: Bengali
|
394
|
+
fra: bengali
|
395
|
+
deu: Bengali
|
396
|
+
|
397
|
+
ber:
|
398
|
+
terminology: TRUE
|
399
|
+
bibliography: TRUE
|
400
|
+
eng: Berber languages
|
401
|
+
fra: berbères, langues
|
402
|
+
deu: Berbersprachen (Andere)
|
403
|
+
|
404
|
+
bho:
|
405
|
+
terminology: TRUE
|
406
|
+
bibliography: TRUE
|
407
|
+
eng: Bhojpuri
|
408
|
+
fra: bhojpuri
|
409
|
+
deu: Bhojpuri
|
410
|
+
|
411
|
+
bih:
|
412
|
+
iso_639_1: bh
|
413
|
+
terminology: TRUE
|
414
|
+
bibliography: TRUE
|
415
|
+
eng: Bihari languages
|
416
|
+
fra: langues biharis
|
417
|
+
deu: Bihari (Andere)
|
418
|
+
|
419
|
+
bik:
|
420
|
+
terminology: TRUE
|
421
|
+
bibliography: TRUE
|
422
|
+
eng: Bikol
|
423
|
+
fra: bikol
|
424
|
+
deu: Bikol-Sprache
|
425
|
+
|
426
|
+
bin:
|
427
|
+
terminology: TRUE
|
428
|
+
bibliography: TRUE
|
429
|
+
eng: Bini; Edo
|
430
|
+
fra: bini; edo
|
431
|
+
deu: Edo-Sprache
|
432
|
+
|
433
|
+
bis:
|
434
|
+
iso_639_1: bi
|
435
|
+
terminology: TRUE
|
436
|
+
bibliography: TRUE
|
437
|
+
eng: Bislama
|
438
|
+
fra: bichlamar
|
439
|
+
deu: Beach-la-mar
|
440
|
+
|
441
|
+
bla:
|
442
|
+
terminology: TRUE
|
443
|
+
bibliography: TRUE
|
444
|
+
eng: Siksika
|
445
|
+
fra: blackfoot
|
446
|
+
deu: Blackfoot-Sprache
|
447
|
+
|
448
|
+
bnt:
|
449
|
+
terminology: TRUE
|
450
|
+
bibliography: TRUE
|
451
|
+
eng: Bantu languages
|
452
|
+
fra: bantou, langues
|
453
|
+
deu: Bantusprachen (Andere)
|
454
|
+
|
455
|
+
tib :
|
456
|
+
iso_639_1:
|
457
|
+
terminology: FALSE
|
458
|
+
bibliography: TRUE
|
459
|
+
eng: Tibetan
|
460
|
+
fra: tibétain
|
461
|
+
deu: Tibetisch
|
462
|
+
|
463
|
+
bod :
|
464
|
+
iso_639_1: bo
|
465
|
+
terminology: TRUE
|
466
|
+
bibliography: FALSE
|
467
|
+
eng: Tibetan
|
468
|
+
fra: tibétain
|
469
|
+
deu: Tibetisch
|
470
|
+
|
471
|
+
bos:
|
472
|
+
iso_639_1: bs
|
473
|
+
terminology: TRUE
|
474
|
+
bibliography: TRUE
|
475
|
+
eng: Bosnian
|
476
|
+
fra: bosniaque
|
477
|
+
deu: Bosnisch
|
478
|
+
|
479
|
+
bra:
|
480
|
+
terminology: TRUE
|
481
|
+
bibliography: TRUE
|
482
|
+
eng: Braj
|
483
|
+
fra: braj
|
484
|
+
deu: Braj-Bhakha
|
485
|
+
|
486
|
+
bre:
|
487
|
+
iso_639_1: br
|
488
|
+
terminology: TRUE
|
489
|
+
bibliography: TRUE
|
490
|
+
eng: Breton
|
491
|
+
fra: breton
|
492
|
+
deu: Bretonisch
|
493
|
+
|
494
|
+
btk:
|
495
|
+
terminology: TRUE
|
496
|
+
bibliography: TRUE
|
497
|
+
eng: Batak languages
|
498
|
+
fra: batak, langues
|
499
|
+
deu: Batak-Sprache
|
500
|
+
|
501
|
+
bua:
|
502
|
+
terminology: TRUE
|
503
|
+
bibliography: TRUE
|
504
|
+
eng: Buriat
|
505
|
+
fra: bouriate
|
506
|
+
deu: Burjatisch
|
507
|
+
|
508
|
+
bug:
|
509
|
+
terminology: TRUE
|
510
|
+
bibliography: TRUE
|
511
|
+
eng: Buginese
|
512
|
+
fra: bugi
|
513
|
+
deu: Bugi-Sprache
|
514
|
+
|
515
|
+
bul:
|
516
|
+
iso_639_1: bg
|
517
|
+
terminology: TRUE
|
518
|
+
bibliography: TRUE
|
519
|
+
eng: Bulgarian
|
520
|
+
fra: bulgare
|
521
|
+
deu: Bulgarisch
|
522
|
+
|
523
|
+
bur :
|
524
|
+
iso_639_1:
|
525
|
+
terminology: FALSE
|
526
|
+
bibliography: TRUE
|
527
|
+
eng: Burmese
|
528
|
+
fra: birman
|
529
|
+
deu: Birmanisch
|
530
|
+
|
531
|
+
mya :
|
532
|
+
iso_639_1: my
|
533
|
+
terminology: TRUE
|
534
|
+
bibliography: FALSE
|
535
|
+
eng: Burmese
|
536
|
+
fra: birman
|
537
|
+
deu: Birmanisch
|
538
|
+
|
539
|
+
byn:
|
540
|
+
terminology: TRUE
|
541
|
+
bibliography: TRUE
|
542
|
+
eng: Blin; Bilin
|
543
|
+
fra: blin; bilen
|
544
|
+
deu: Bilin-Sprache
|
545
|
+
|
546
|
+
cad:
|
547
|
+
terminology: TRUE
|
548
|
+
bibliography: TRUE
|
549
|
+
eng: Caddo
|
550
|
+
fra: caddo
|
551
|
+
deu: Caddo-Sprachen
|
552
|
+
|
553
|
+
cai:
|
554
|
+
terminology: TRUE
|
555
|
+
bibliography: TRUE
|
556
|
+
eng: Central American Indian languages
|
557
|
+
fra: amérindiennes de l'Amérique centrale, langues
|
558
|
+
deu: Indianersprachen, Zentralamerika (Andere)
|
559
|
+
|
560
|
+
car:
|
561
|
+
terminology: TRUE
|
562
|
+
bibliography: TRUE
|
563
|
+
eng: Galibi Carib
|
564
|
+
fra: karib; galibi; carib
|
565
|
+
deu: Karibische Sprachen
|
566
|
+
|
567
|
+
cat:
|
568
|
+
iso_639_1: ca
|
569
|
+
terminology: TRUE
|
570
|
+
bibliography: TRUE
|
571
|
+
eng: Catalan; Valencian
|
572
|
+
fra: catalan; valencien
|
573
|
+
deu: Katalanisch
|
574
|
+
|
575
|
+
cau:
|
576
|
+
terminology: TRUE
|
577
|
+
bibliography: TRUE
|
578
|
+
eng: Caucasian languages
|
579
|
+
fra: caucasiennes, langues
|
580
|
+
deu: Kaukasische Sprachen (Andere)
|
581
|
+
|
582
|
+
ceb:
|
583
|
+
terminology: TRUE
|
584
|
+
bibliography: TRUE
|
585
|
+
eng: Cebuano
|
586
|
+
fra: cebuano
|
587
|
+
deu: Cebuano
|
588
|
+
|
589
|
+
cel:
|
590
|
+
terminology: TRUE
|
591
|
+
bibliography: TRUE
|
592
|
+
eng: Celtic languages
|
593
|
+
fra: celtiques, langues; celtes, langues
|
594
|
+
deu: Keltische Sprachen (Andere)
|
595
|
+
|
596
|
+
cze :
|
597
|
+
iso_639_1:
|
598
|
+
terminology: FALSE
|
599
|
+
bibliography: TRUE
|
600
|
+
eng: Czech
|
601
|
+
fra: tchèque
|
602
|
+
deu: Tschechisch
|
603
|
+
|
604
|
+
ces :
|
605
|
+
iso_639_1: cs
|
606
|
+
terminology: TRUE
|
607
|
+
bibliography: FALSE
|
608
|
+
eng: Czech
|
609
|
+
fra: tchèque
|
610
|
+
deu: Tschechisch
|
611
|
+
|
612
|
+
cha:
|
613
|
+
iso_639_1: ch
|
614
|
+
terminology: TRUE
|
615
|
+
bibliography: TRUE
|
616
|
+
eng: Chamorro
|
617
|
+
fra: chamorro
|
618
|
+
deu: Chamorro-Sprache
|
619
|
+
|
620
|
+
chb:
|
621
|
+
terminology: TRUE
|
622
|
+
bibliography: TRUE
|
623
|
+
eng: Chibcha
|
624
|
+
fra: chibcha
|
625
|
+
deu: Chibcha-Sprachen
|
626
|
+
|
627
|
+
che:
|
628
|
+
iso_639_1: ce
|
629
|
+
terminology: TRUE
|
630
|
+
bibliography: TRUE
|
631
|
+
eng: Chechen
|
632
|
+
fra: tchétchène
|
633
|
+
deu: Tschetschenisch
|
634
|
+
|
635
|
+
chg:
|
636
|
+
terminology: TRUE
|
637
|
+
bibliography: TRUE
|
638
|
+
eng: Chagatai
|
639
|
+
fra: djaghataï
|
640
|
+
deu: Tschagataisch
|
641
|
+
|
642
|
+
chi :
|
643
|
+
iso_639_1:
|
644
|
+
terminology: FALSE
|
645
|
+
bibliography: TRUE
|
646
|
+
eng: Chinese
|
647
|
+
fra: chinois
|
648
|
+
deu: Chinesisch
|
649
|
+
|
650
|
+
zho :
|
651
|
+
iso_639_1: zh
|
652
|
+
terminology: TRUE
|
653
|
+
bibliography: FALSE
|
654
|
+
eng: Chinese
|
655
|
+
fra: chinois
|
656
|
+
deu: Chinesisch
|
657
|
+
|
658
|
+
chk:
|
659
|
+
terminology: TRUE
|
660
|
+
bibliography: TRUE
|
661
|
+
eng: Chuukese
|
662
|
+
fra: chuuk
|
663
|
+
deu: Trukesisch
|
664
|
+
|
665
|
+
chm:
|
666
|
+
terminology: TRUE
|
667
|
+
bibliography: TRUE
|
668
|
+
eng: Mari
|
669
|
+
fra: mari
|
670
|
+
deu: Tscheremissisch
|
671
|
+
|
672
|
+
chn:
|
673
|
+
terminology: TRUE
|
674
|
+
bibliography: TRUE
|
675
|
+
eng: Chinook jargon
|
676
|
+
fra: chinook, jargon
|
677
|
+
deu: Chinook-Jargon
|
678
|
+
|
679
|
+
cho:
|
680
|
+
terminology: TRUE
|
681
|
+
bibliography: TRUE
|
682
|
+
eng: Choctaw
|
683
|
+
fra: choctaw
|
684
|
+
deu: Choctaw-Sprache
|
685
|
+
|
686
|
+
chp:
|
687
|
+
terminology: TRUE
|
688
|
+
bibliography: TRUE
|
689
|
+
eng: Chipewyan; Dene Suline
|
690
|
+
fra: chipewyan
|
691
|
+
deu: Chipewyan-Sprache
|
692
|
+
|
693
|
+
chr:
|
694
|
+
terminology: TRUE
|
695
|
+
bibliography: TRUE
|
696
|
+
eng: Cherokee
|
697
|
+
fra: cherokee
|
698
|
+
deu: Cherokee-Sprache
|
699
|
+
|
700
|
+
chu:
|
701
|
+
iso_639_1: cu
|
702
|
+
terminology: TRUE
|
703
|
+
bibliography: TRUE
|
704
|
+
eng: Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic
|
705
|
+
fra: slavon d'église; vieux slave; slavon liturgique; vieux bulgare
|
706
|
+
deu: Kirchenslawisch
|
707
|
+
|
708
|
+
chv:
|
709
|
+
iso_639_1: cv
|
710
|
+
terminology: TRUE
|
711
|
+
bibliography: TRUE
|
712
|
+
eng: Chuvash
|
713
|
+
fra: tchouvache
|
714
|
+
deu: Tschuwaschisch
|
715
|
+
|
716
|
+
chy:
|
717
|
+
terminology: TRUE
|
718
|
+
bibliography: TRUE
|
719
|
+
eng: Cheyenne
|
720
|
+
fra: cheyenne
|
721
|
+
deu: Cheyenne-Sprache
|
722
|
+
|
723
|
+
cmc:
|
724
|
+
terminology: TRUE
|
725
|
+
bibliography: TRUE
|
726
|
+
eng: Chamic languages
|
727
|
+
fra: chames, langues
|
728
|
+
deu: Cham-Sprachen
|
729
|
+
|
730
|
+
cnr:
|
731
|
+
terminology: TRUE
|
732
|
+
bibliography: TRUE
|
733
|
+
eng: Montenegrin
|
734
|
+
fra: monténégrin
|
735
|
+
deu: Montenegrinisch
|
736
|
+
|
737
|
+
cop:
|
738
|
+
terminology: TRUE
|
739
|
+
bibliography: TRUE
|
740
|
+
eng: Coptic
|
741
|
+
fra: copte
|
742
|
+
deu: Koptisch
|
743
|
+
|
744
|
+
cor:
|
745
|
+
iso_639_1: kw
|
746
|
+
terminology: TRUE
|
747
|
+
bibliography: TRUE
|
748
|
+
eng: Cornish
|
749
|
+
fra: cornique
|
750
|
+
deu: Kornisch
|
751
|
+
|
752
|
+
cos:
|
753
|
+
iso_639_1: co
|
754
|
+
terminology: TRUE
|
755
|
+
bibliography: TRUE
|
756
|
+
eng: Corsican
|
757
|
+
fra: corse
|
758
|
+
deu: Korsisch
|
759
|
+
|
760
|
+
cpe:
|
761
|
+
terminology: TRUE
|
762
|
+
bibliography: TRUE
|
763
|
+
eng: Creoles and pidgins, English based
|
764
|
+
fra: créoles et pidgins basés sur l'anglais
|
765
|
+
deu: Kreolisch-Englisch (Andere)
|
766
|
+
|
767
|
+
cpf:
|
768
|
+
terminology: TRUE
|
769
|
+
bibliography: TRUE
|
770
|
+
eng: Creoles and pidgins, French-based
|
771
|
+
fra: créoles et pidgins basés sur le français
|
772
|
+
deu: Kreolisch-Französisch (Andere)
|
773
|
+
|
774
|
+
cpp:
|
775
|
+
terminology: TRUE
|
776
|
+
bibliography: TRUE
|
777
|
+
eng: Creoles and pidgins, Portuguese-based
|
778
|
+
fra: créoles et pidgins basés sur le portugais
|
779
|
+
deu: Kreolisch-Portugiesisch (Andere)
|
780
|
+
|
781
|
+
cre:
|
782
|
+
iso_639_1: cr
|
783
|
+
terminology: TRUE
|
784
|
+
bibliography: TRUE
|
785
|
+
eng: Cree
|
786
|
+
fra: cree
|
787
|
+
deu: Cree-Sprache
|
788
|
+
|
789
|
+
crh:
|
790
|
+
terminology: TRUE
|
791
|
+
bibliography: TRUE
|
792
|
+
eng: Crimean Tatar; Crimean Turkish
|
793
|
+
fra: tatar de Crimé
|
794
|
+
deu: Krimtatarisch
|
795
|
+
|
796
|
+
crp:
|
797
|
+
terminology: TRUE
|
798
|
+
bibliography: TRUE
|
799
|
+
eng: Creoles and pidgins
|
800
|
+
fra: créoles et pidgins
|
801
|
+
deu: Kreolische Sprachen; Pidginsprachen (Andere)
|
802
|
+
|
803
|
+
csb:
|
804
|
+
terminology: TRUE
|
805
|
+
bibliography: TRUE
|
806
|
+
eng: Kashubian
|
807
|
+
fra: kachoube
|
808
|
+
deu: Kaschubisch
|
809
|
+
|
810
|
+
cus:
|
811
|
+
terminology: TRUE
|
812
|
+
bibliography: TRUE
|
813
|
+
eng: Cushitic languages
|
814
|
+
fra: couchitiques, langues
|
815
|
+
deu: Kuschitische Sprachen (Andere)
|
816
|
+
|
817
|
+
wel :
|
818
|
+
iso_639_1:
|
819
|
+
terminology: FALSE
|
820
|
+
bibliography: TRUE
|
821
|
+
eng: Welsh
|
822
|
+
fra: gallois
|
823
|
+
deu: Kymrisch
|
824
|
+
|
825
|
+
cym :
|
826
|
+
iso_639_1: cy
|
827
|
+
terminology: TRUE
|
828
|
+
bibliography: FALSE
|
829
|
+
eng: Welsh
|
830
|
+
fra: gallois
|
831
|
+
deu: Kymrisch
|
832
|
+
|
833
|
+
cze :
|
834
|
+
iso_639_1:
|
835
|
+
terminology: FALSE
|
836
|
+
bibliography: TRUE
|
837
|
+
eng: Czech
|
838
|
+
fra: tchèque
|
839
|
+
deu: Tschechisch
|
840
|
+
|
841
|
+
ces :
|
842
|
+
iso_639_1: cs
|
843
|
+
terminology: TRUE
|
844
|
+
bibliography: FALSE
|
845
|
+
eng: Czech
|
846
|
+
fra: tchèque
|
847
|
+
deu: Tschechisch
|
848
|
+
|
849
|
+
dak:
|
850
|
+
terminology: TRUE
|
851
|
+
bibliography: TRUE
|
852
|
+
eng: Dakota
|
853
|
+
fra: dakota
|
854
|
+
deu: Dakota-Sprache
|
855
|
+
|
856
|
+
dan:
|
857
|
+
iso_639_1: da
|
858
|
+
terminology: TRUE
|
859
|
+
bibliography: TRUE
|
860
|
+
eng: Danish
|
861
|
+
fra: danois
|
862
|
+
deu: Dänisch
|
863
|
+
|
864
|
+
dar:
|
865
|
+
terminology: TRUE
|
866
|
+
bibliography: TRUE
|
867
|
+
eng: Dargwa
|
868
|
+
fra: dargwa
|
869
|
+
deu: Darginisch
|
870
|
+
|
871
|
+
day:
|
872
|
+
terminology: TRUE
|
873
|
+
bibliography: TRUE
|
874
|
+
eng: Land Dayak languages
|
875
|
+
fra: dayak, langues
|
876
|
+
deu: Dajakisch
|
877
|
+
|
878
|
+
del:
|
879
|
+
terminology: TRUE
|
880
|
+
bibliography: TRUE
|
881
|
+
eng: Delaware
|
882
|
+
fra: delaware
|
883
|
+
deu: Delaware-Sprache
|
884
|
+
|
885
|
+
den:
|
886
|
+
terminology: TRUE
|
887
|
+
bibliography: TRUE
|
888
|
+
eng: Slave (Athapascan)
|
889
|
+
fra: esclave (athapascan)
|
890
|
+
deu: Slave-Sprache
|
891
|
+
|
892
|
+
ger :
|
893
|
+
iso_639_1:
|
894
|
+
terminology: FALSE
|
895
|
+
bibliography: TRUE
|
896
|
+
eng: German
|
897
|
+
fra: allemand
|
898
|
+
deu: Deutsch
|
899
|
+
|
900
|
+
deu :
|
901
|
+
iso_639_1: de
|
902
|
+
terminology: TRUE
|
903
|
+
bibliography: FALSE
|
904
|
+
eng: German
|
905
|
+
fra: allemand
|
906
|
+
deu: Deutsch
|
907
|
+
|
908
|
+
dgr:
|
909
|
+
terminology: TRUE
|
910
|
+
bibliography: TRUE
|
911
|
+
eng: Dogrib
|
912
|
+
fra: dogrib
|
913
|
+
deu: Dogrib-Sprache
|
914
|
+
|
915
|
+
din:
|
916
|
+
terminology: TRUE
|
917
|
+
bibliography: TRUE
|
918
|
+
eng: Dinka
|
919
|
+
fra: dinka
|
920
|
+
deu: Dinka-Sprache
|
921
|
+
|
922
|
+
div:
|
923
|
+
iso_639_1: dv
|
924
|
+
terminology: TRUE
|
925
|
+
bibliography: TRUE
|
926
|
+
eng: Divehi; Dhivehi; Maldivian
|
927
|
+
fra: maldivien
|
928
|
+
deu: Maledivisch
|
929
|
+
|
930
|
+
doi:
|
931
|
+
terminology: TRUE
|
932
|
+
bibliography: TRUE
|
933
|
+
eng: Dogri
|
934
|
+
fra: dogri
|
935
|
+
deu: Dogri
|
936
|
+
|
937
|
+
dra:
|
938
|
+
terminology: TRUE
|
939
|
+
bibliography: TRUE
|
940
|
+
eng: Dravidian languages
|
941
|
+
fra: dravidiennes, langues
|
942
|
+
deu: Drawidische Sprachen (Andere)
|
943
|
+
|
944
|
+
dsb:
|
945
|
+
terminology: TRUE
|
946
|
+
bibliography: TRUE
|
947
|
+
eng: Lower Sorbian
|
948
|
+
fra: bas-sorabe
|
949
|
+
deu: Niedersorbisch
|
950
|
+
|
951
|
+
dua:
|
952
|
+
terminology: TRUE
|
953
|
+
bibliography: TRUE
|
954
|
+
eng: Duala
|
955
|
+
fra: douala
|
956
|
+
deu: Duala-Sprachen
|
957
|
+
|
958
|
+
dum:
|
959
|
+
terminology: TRUE
|
960
|
+
bibliography: TRUE
|
961
|
+
eng: Dutch, Middle (ca.1050-1350)
|
962
|
+
fra: néerlandais moyen (ca. 1050-1350)
|
963
|
+
deu: Mittelniederländisch
|
964
|
+
|
965
|
+
dut :
|
966
|
+
iso_639_1:
|
967
|
+
terminology: FALSE
|
968
|
+
bibliography: TRUE
|
969
|
+
eng: Dutch; Flemish
|
970
|
+
fra: néerlandais; flamand
|
971
|
+
deu: Niederländisch
|
972
|
+
|
973
|
+
nld :
|
974
|
+
iso_639_1: nl
|
975
|
+
terminology: TRUE
|
976
|
+
bibliography: FALSE
|
977
|
+
eng: Dutch; Flemish
|
978
|
+
fra: néerlandais; flamand
|
979
|
+
deu: Niederländisch
|
980
|
+
|
981
|
+
dyu:
|
982
|
+
terminology: TRUE
|
983
|
+
bibliography: TRUE
|
984
|
+
eng: Dyula
|
985
|
+
fra: dioula
|
986
|
+
deu: Dyula-Sprache
|
987
|
+
|
988
|
+
dzo:
|
989
|
+
iso_639_1: dz
|
990
|
+
terminology: TRUE
|
991
|
+
bibliography: TRUE
|
992
|
+
eng: Dzongkha
|
993
|
+
fra: dzongkha
|
994
|
+
deu: Dzongkha
|
995
|
+
|
996
|
+
efi:
|
997
|
+
terminology: TRUE
|
998
|
+
bibliography: TRUE
|
999
|
+
eng: Efik
|
1000
|
+
fra: efik
|
1001
|
+
deu: Efik
|
1002
|
+
|
1003
|
+
egy:
|
1004
|
+
terminology: TRUE
|
1005
|
+
bibliography: TRUE
|
1006
|
+
eng: Egyptian (Ancient)
|
1007
|
+
fra: égyptien
|
1008
|
+
deu: Ägyptisch
|
1009
|
+
|
1010
|
+
eka:
|
1011
|
+
terminology: TRUE
|
1012
|
+
bibliography: TRUE
|
1013
|
+
eng: Ekajuk
|
1014
|
+
fra: ekajuk
|
1015
|
+
deu: Ekajuk
|
1016
|
+
|
1017
|
+
gre :
|
1018
|
+
iso_639_1:
|
1019
|
+
terminology: FALSE
|
1020
|
+
bibliography: TRUE
|
1021
|
+
eng: Greek, Modern (1453-)
|
1022
|
+
fra: grec moderne (après 1453)
|
1023
|
+
deu: Neugriechisch
|
1024
|
+
|
1025
|
+
ell :
|
1026
|
+
iso_639_1: el
|
1027
|
+
terminology: TRUE
|
1028
|
+
bibliography: FALSE
|
1029
|
+
eng: Greek, Modern (1453-)
|
1030
|
+
fra: grec moderne (après 1453)
|
1031
|
+
deu: Neugriechisch
|
1032
|
+
|
1033
|
+
elx:
|
1034
|
+
terminology: TRUE
|
1035
|
+
bibliography: TRUE
|
1036
|
+
eng: Elamite
|
1037
|
+
fra: élamite
|
1038
|
+
deu: Elamisch
|
1039
|
+
|
1040
|
+
eng:
|
1041
|
+
iso_639_1: en
|
1042
|
+
terminology: TRUE
|
1043
|
+
bibliography: TRUE
|
1044
|
+
eng: English
|
1045
|
+
fra: anglais
|
1046
|
+
deu: Englisch
|
1047
|
+
|
1048
|
+
enm:
|
1049
|
+
terminology: TRUE
|
1050
|
+
bibliography: TRUE
|
1051
|
+
eng: English, Middle (1100-1500)
|
1052
|
+
fra: anglais moyen (1100-1500)
|
1053
|
+
deu: Mittelenglisch
|
1054
|
+
|
1055
|
+
epo:
|
1056
|
+
iso_639_1: eo
|
1057
|
+
terminology: TRUE
|
1058
|
+
bibliography: TRUE
|
1059
|
+
eng: Esperanto
|
1060
|
+
fra: espéranto
|
1061
|
+
deu: Esperanto
|
1062
|
+
|
1063
|
+
est:
|
1064
|
+
iso_639_1: et
|
1065
|
+
terminology: TRUE
|
1066
|
+
bibliography: TRUE
|
1067
|
+
eng: Estonian
|
1068
|
+
fra: estonien
|
1069
|
+
deu: Estnisch
|
1070
|
+
|
1071
|
+
baq :
|
1072
|
+
iso_639_1:
|
1073
|
+
terminology: FALSE
|
1074
|
+
bibliography: TRUE
|
1075
|
+
eng: Basque
|
1076
|
+
fra: basque
|
1077
|
+
deu: Baskisch
|
1078
|
+
|
1079
|
+
eus :
|
1080
|
+
iso_639_1: eu
|
1081
|
+
terminology: TRUE
|
1082
|
+
bibliography: FALSE
|
1083
|
+
eng: Basque
|
1084
|
+
fra: basque
|
1085
|
+
deu: Baskisch
|
1086
|
+
|
1087
|
+
ewe:
|
1088
|
+
iso_639_1: ee
|
1089
|
+
terminology: TRUE
|
1090
|
+
bibliography: TRUE
|
1091
|
+
eng: Ewe
|
1092
|
+
fra: éwé
|
1093
|
+
deu: Ewe-Sprache
|
1094
|
+
|
1095
|
+
ewo:
|
1096
|
+
terminology: TRUE
|
1097
|
+
bibliography: TRUE
|
1098
|
+
eng: Ewondo
|
1099
|
+
fra: éwondo
|
1100
|
+
deu: Ewondo
|
1101
|
+
|
1102
|
+
fan:
|
1103
|
+
terminology: TRUE
|
1104
|
+
bibliography: TRUE
|
1105
|
+
eng: Fang
|
1106
|
+
fra: fang
|
1107
|
+
deu: Pangwe-Sprache
|
1108
|
+
|
1109
|
+
fao:
|
1110
|
+
iso_639_1: fo
|
1111
|
+
terminology: TRUE
|
1112
|
+
bibliography: TRUE
|
1113
|
+
eng: Faroese
|
1114
|
+
fra: féroïen
|
1115
|
+
deu: Färöisch
|
1116
|
+
|
1117
|
+
per :
|
1118
|
+
iso_639_1:
|
1119
|
+
terminology: FALSE
|
1120
|
+
bibliography: TRUE
|
1121
|
+
eng: Persian
|
1122
|
+
fra: persan
|
1123
|
+
deu: Persisch
|
1124
|
+
|
1125
|
+
fas :
|
1126
|
+
iso_639_1: fa
|
1127
|
+
terminology: TRUE
|
1128
|
+
bibliography: FALSE
|
1129
|
+
eng: Persian
|
1130
|
+
fra: persan
|
1131
|
+
deu: Persisch
|
1132
|
+
|
1133
|
+
fat:
|
1134
|
+
terminology: TRUE
|
1135
|
+
bibliography: TRUE
|
1136
|
+
eng: Fanti
|
1137
|
+
fra: fanti
|
1138
|
+
deu: Fante-Sprache
|
1139
|
+
|
1140
|
+
fij:
|
1141
|
+
iso_639_1: fj
|
1142
|
+
terminology: TRUE
|
1143
|
+
bibliography: TRUE
|
1144
|
+
eng: Fijian
|
1145
|
+
fra: fidjien
|
1146
|
+
deu: Fidschi-Sprache
|
1147
|
+
|
1148
|
+
fil:
|
1149
|
+
terminology: TRUE
|
1150
|
+
bibliography: TRUE
|
1151
|
+
eng: Filipino; Pilipino
|
1152
|
+
fra: filipino; pilipino
|
1153
|
+
deu: Pilipino
|
1154
|
+
|
1155
|
+
fin:
|
1156
|
+
iso_639_1: fi
|
1157
|
+
terminology: TRUE
|
1158
|
+
bibliography: TRUE
|
1159
|
+
eng: Finnish
|
1160
|
+
fra: finnois
|
1161
|
+
deu: Finnisch
|
1162
|
+
|
1163
|
+
fiu:
|
1164
|
+
terminology: TRUE
|
1165
|
+
bibliography: TRUE
|
1166
|
+
eng: Finno-Ugrian languages
|
1167
|
+
fra: finno-ougriennes, langues
|
1168
|
+
deu: Finnougrische Sprachen (Andere)
|
1169
|
+
|
1170
|
+
fon:
|
1171
|
+
terminology: TRUE
|
1172
|
+
bibliography: TRUE
|
1173
|
+
eng: Fon
|
1174
|
+
fra: fon
|
1175
|
+
deu: Fon-Sprache
|
1176
|
+
|
1177
|
+
fre :
|
1178
|
+
iso_639_1:
|
1179
|
+
terminology: FALSE
|
1180
|
+
bibliography: TRUE
|
1181
|
+
eng: French
|
1182
|
+
fra: français
|
1183
|
+
deu: Französisch
|
1184
|
+
|
1185
|
+
fra :
|
1186
|
+
iso_639_1: fr
|
1187
|
+
terminology: TRUE
|
1188
|
+
bibliography: FALSE
|
1189
|
+
eng: French
|
1190
|
+
fra: français
|
1191
|
+
deu: Französisch
|
1192
|
+
|
1193
|
+
fre :
|
1194
|
+
iso_639_1:
|
1195
|
+
terminology: FALSE
|
1196
|
+
bibliography: TRUE
|
1197
|
+
eng: French
|
1198
|
+
fra: français
|
1199
|
+
deu: Französisch
|
1200
|
+
|
1201
|
+
fra :
|
1202
|
+
iso_639_1: fr
|
1203
|
+
terminology: TRUE
|
1204
|
+
bibliography: FALSE
|
1205
|
+
eng: French
|
1206
|
+
fra: français
|
1207
|
+
deu: Französisch
|
1208
|
+
|
1209
|
+
frm:
|
1210
|
+
terminology: TRUE
|
1211
|
+
bibliography: TRUE
|
1212
|
+
eng: French, Middle (ca.1400-1600)
|
1213
|
+
fra: français moyen (1400-1600)
|
1214
|
+
deu: Mittelfranzösisch
|
1215
|
+
|
1216
|
+
fro:
|
1217
|
+
terminology: TRUE
|
1218
|
+
bibliography: TRUE
|
1219
|
+
eng: French, Old (842-ca.1400)
|
1220
|
+
fra: français ancien (842-ca.1400)
|
1221
|
+
deu: Altfranzösisch
|
1222
|
+
|
1223
|
+
frr:
|
1224
|
+
terminology: TRUE
|
1225
|
+
bibliography: TRUE
|
1226
|
+
eng: Northern Frisian
|
1227
|
+
fra: frison septentrional
|
1228
|
+
deu: Nordfriesisch
|
1229
|
+
|
1230
|
+
frs:
|
1231
|
+
terminology: TRUE
|
1232
|
+
bibliography: TRUE
|
1233
|
+
eng: Eastern Frisian
|
1234
|
+
fra: frison oriental
|
1235
|
+
deu: Ostfriesisch
|
1236
|
+
|
1237
|
+
fry:
|
1238
|
+
iso_639_1: fy
|
1239
|
+
terminology: TRUE
|
1240
|
+
bibliography: TRUE
|
1241
|
+
eng: Western Frisian
|
1242
|
+
fra: frison occidental
|
1243
|
+
deu: Friesisch
|
1244
|
+
|
1245
|
+
ful:
|
1246
|
+
iso_639_1: ff
|
1247
|
+
terminology: TRUE
|
1248
|
+
bibliography: TRUE
|
1249
|
+
eng: Fulah
|
1250
|
+
fra: peul
|
1251
|
+
deu: Ful
|
1252
|
+
|
1253
|
+
fur:
|
1254
|
+
terminology: TRUE
|
1255
|
+
bibliography: TRUE
|
1256
|
+
eng: Friulian
|
1257
|
+
fra: frioulan
|
1258
|
+
deu: Friulisch
|
1259
|
+
|
1260
|
+
gaa:
|
1261
|
+
terminology: TRUE
|
1262
|
+
bibliography: TRUE
|
1263
|
+
eng: Ga
|
1264
|
+
fra: ga
|
1265
|
+
deu: Ga-Sprache
|
1266
|
+
|
1267
|
+
gay:
|
1268
|
+
terminology: TRUE
|
1269
|
+
bibliography: TRUE
|
1270
|
+
eng: Gayo
|
1271
|
+
fra: gayo
|
1272
|
+
deu: Gayo-Sprache
|
1273
|
+
|
1274
|
+
gba:
|
1275
|
+
terminology: TRUE
|
1276
|
+
bibliography: TRUE
|
1277
|
+
eng: Gbaya
|
1278
|
+
fra: gbaya
|
1279
|
+
deu: Gbaya-Sprache
|
1280
|
+
|
1281
|
+
gem:
|
1282
|
+
terminology: TRUE
|
1283
|
+
bibliography: TRUE
|
1284
|
+
eng: Germanic languages
|
1285
|
+
fra: germaniques, langues
|
1286
|
+
deu: Germanische Sprachen (Andere)
|
1287
|
+
|
1288
|
+
geo :
|
1289
|
+
iso_639_1:
|
1290
|
+
terminology: FALSE
|
1291
|
+
bibliography: TRUE
|
1292
|
+
eng: Georgian
|
1293
|
+
fra: géorgien
|
1294
|
+
deu: Georgisch
|
1295
|
+
|
1296
|
+
kat :
|
1297
|
+
iso_639_1: ka
|
1298
|
+
terminology: TRUE
|
1299
|
+
bibliography: FALSE
|
1300
|
+
eng: Georgian
|
1301
|
+
fra: géorgien
|
1302
|
+
deu: Georgisch
|
1303
|
+
|
1304
|
+
ger :
|
1305
|
+
iso_639_1:
|
1306
|
+
terminology: FALSE
|
1307
|
+
bibliography: TRUE
|
1308
|
+
eng: German
|
1309
|
+
fra: allemand
|
1310
|
+
deu: Deutsch
|
1311
|
+
|
1312
|
+
deu :
|
1313
|
+
iso_639_1: de
|
1314
|
+
terminology: TRUE
|
1315
|
+
bibliography: FALSE
|
1316
|
+
eng: German
|
1317
|
+
fra: allemand
|
1318
|
+
deu: Deutsch
|
1319
|
+
|
1320
|
+
gez:
|
1321
|
+
terminology: TRUE
|
1322
|
+
bibliography: TRUE
|
1323
|
+
eng: Geez
|
1324
|
+
fra: guèze
|
1325
|
+
deu: Altäthiopisch
|
1326
|
+
|
1327
|
+
gil:
|
1328
|
+
terminology: TRUE
|
1329
|
+
bibliography: TRUE
|
1330
|
+
eng: Gilbertese
|
1331
|
+
fra: kiribati
|
1332
|
+
deu: Gilbertesisch
|
1333
|
+
|
1334
|
+
gla:
|
1335
|
+
iso_639_1: gd
|
1336
|
+
terminology: TRUE
|
1337
|
+
bibliography: TRUE
|
1338
|
+
eng: Gaelic; Scottish Gaelic
|
1339
|
+
fra: gaélique; gaélique écossais
|
1340
|
+
deu: Gälisch-Schottisch
|
1341
|
+
|
1342
|
+
gle:
|
1343
|
+
iso_639_1: ga
|
1344
|
+
terminology: TRUE
|
1345
|
+
bibliography: TRUE
|
1346
|
+
eng: Irish
|
1347
|
+
fra: irlandais
|
1348
|
+
deu: Irisch
|
1349
|
+
|
1350
|
+
glg:
|
1351
|
+
iso_639_1: gl
|
1352
|
+
terminology: TRUE
|
1353
|
+
bibliography: TRUE
|
1354
|
+
eng: Galician
|
1355
|
+
fra: galicien
|
1356
|
+
deu: Galicisch
|
1357
|
+
|
1358
|
+
glv:
|
1359
|
+
iso_639_1: gv
|
1360
|
+
terminology: TRUE
|
1361
|
+
bibliography: TRUE
|
1362
|
+
eng: Manx
|
1363
|
+
fra: manx; mannois
|
1364
|
+
deu: Manx
|
1365
|
+
|
1366
|
+
gmh:
|
1367
|
+
terminology: TRUE
|
1368
|
+
bibliography: TRUE
|
1369
|
+
eng: German, Middle High (ca.1050-1500)
|
1370
|
+
fra: allemand, moyen haut (ca. 1050-1500)
|
1371
|
+
deu: Mittelhochdeutsch
|
1372
|
+
|
1373
|
+
goh:
|
1374
|
+
terminology: TRUE
|
1375
|
+
bibliography: TRUE
|
1376
|
+
eng: German, Old High (ca.750-1050)
|
1377
|
+
fra: allemand, vieux haut (ca. 750-1050)
|
1378
|
+
deu: Althochdeutsch
|
1379
|
+
|
1380
|
+
gon:
|
1381
|
+
terminology: TRUE
|
1382
|
+
bibliography: TRUE
|
1383
|
+
eng: Gondi
|
1384
|
+
fra: gond
|
1385
|
+
deu: Gondi-Sprache
|
1386
|
+
|
1387
|
+
gor:
|
1388
|
+
terminology: TRUE
|
1389
|
+
bibliography: TRUE
|
1390
|
+
eng: Gorontalo
|
1391
|
+
fra: gorontalo
|
1392
|
+
deu: Gorontalesisch
|
1393
|
+
|
1394
|
+
got:
|
1395
|
+
terminology: TRUE
|
1396
|
+
bibliography: TRUE
|
1397
|
+
eng: Gothic
|
1398
|
+
fra: gothique
|
1399
|
+
deu: Gotisch
|
1400
|
+
|
1401
|
+
grb:
|
1402
|
+
terminology: TRUE
|
1403
|
+
bibliography: TRUE
|
1404
|
+
eng: Grebo
|
1405
|
+
fra: grebo
|
1406
|
+
deu: Grebo-Sprache
|
1407
|
+
|
1408
|
+
grc:
|
1409
|
+
terminology: TRUE
|
1410
|
+
bibliography: TRUE
|
1411
|
+
eng: Greek, Ancient (to 1453)
|
1412
|
+
fra: grec ancien (jusqu'à 1453)
|
1413
|
+
deu: Griechisch
|
1414
|
+
|
1415
|
+
gre :
|
1416
|
+
iso_639_1:
|
1417
|
+
terminology: FALSE
|
1418
|
+
bibliography: TRUE
|
1419
|
+
eng: Greek, Modern (1453-)
|
1420
|
+
fra: grec moderne (après 1453)
|
1421
|
+
deu: Neugriechisch
|
1422
|
+
|
1423
|
+
ell :
|
1424
|
+
iso_639_1: el
|
1425
|
+
terminology: TRUE
|
1426
|
+
bibliography: FALSE
|
1427
|
+
eng: Greek, Modern (1453-)
|
1428
|
+
fra: grec moderne (après 1453)
|
1429
|
+
deu: Neugriechisch
|
1430
|
+
|
1431
|
+
grn:
|
1432
|
+
iso_639_1: gn
|
1433
|
+
terminology: TRUE
|
1434
|
+
bibliography: TRUE
|
1435
|
+
eng: Guarani
|
1436
|
+
fra: guarani
|
1437
|
+
deu: Guaraní-Sprache
|
1438
|
+
|
1439
|
+
gsw:
|
1440
|
+
terminology: TRUE
|
1441
|
+
bibliography: TRUE
|
1442
|
+
eng: Swiss German; Alemannic; Alsatian
|
1443
|
+
fra: suisse alémanique; alémanique; alsacien
|
1444
|
+
deu: Schweizerdeutsch
|
1445
|
+
|
1446
|
+
guj:
|
1447
|
+
iso_639_1: gu
|
1448
|
+
terminology: TRUE
|
1449
|
+
bibliography: TRUE
|
1450
|
+
eng: Gujarati
|
1451
|
+
fra: goudjrati
|
1452
|
+
deu: Gujarati-Sprache
|
1453
|
+
|
1454
|
+
gwi:
|
1455
|
+
terminology: TRUE
|
1456
|
+
bibliography: TRUE
|
1457
|
+
eng: Gwich'in
|
1458
|
+
fra: gwich'in
|
1459
|
+
deu: Kutchin-Sprache
|
1460
|
+
|
1461
|
+
hai:
|
1462
|
+
terminology: TRUE
|
1463
|
+
bibliography: TRUE
|
1464
|
+
eng: Haida
|
1465
|
+
fra: haida
|
1466
|
+
deu: Haida-Sprache
|
1467
|
+
|
1468
|
+
hat:
|
1469
|
+
iso_639_1: ht
|
1470
|
+
terminology: TRUE
|
1471
|
+
bibliography: TRUE
|
1472
|
+
eng: Haitian; Haitian Creole
|
1473
|
+
fra: haïtien; créole haïtien
|
1474
|
+
deu: Haïtien (Haiti-Kreolisch)
|
1475
|
+
|
1476
|
+
hau:
|
1477
|
+
iso_639_1: ha
|
1478
|
+
terminology: TRUE
|
1479
|
+
bibliography: TRUE
|
1480
|
+
eng: Hausa
|
1481
|
+
fra: haoussa
|
1482
|
+
deu: Haussa-Sprache
|
1483
|
+
|
1484
|
+
haw:
|
1485
|
+
terminology: TRUE
|
1486
|
+
bibliography: TRUE
|
1487
|
+
eng: Hawaiian
|
1488
|
+
fra: hawaïen
|
1489
|
+
deu: Hawaiisch
|
1490
|
+
|
1491
|
+
heb:
|
1492
|
+
iso_639_1: he
|
1493
|
+
terminology: TRUE
|
1494
|
+
bibliography: TRUE
|
1495
|
+
eng: Hebrew
|
1496
|
+
fra: hébreu
|
1497
|
+
deu: Hebräisch
|
1498
|
+
|
1499
|
+
her:
|
1500
|
+
iso_639_1: hz
|
1501
|
+
terminology: TRUE
|
1502
|
+
bibliography: TRUE
|
1503
|
+
eng: Herero
|
1504
|
+
fra: herero
|
1505
|
+
deu: Herero-Sprache
|
1506
|
+
|
1507
|
+
hil:
|
1508
|
+
terminology: TRUE
|
1509
|
+
bibliography: TRUE
|
1510
|
+
eng: Hiligaynon
|
1511
|
+
fra: hiligaynon
|
1512
|
+
deu: Hiligaynon-Sprache
|
1513
|
+
|
1514
|
+
him:
|
1515
|
+
terminology: TRUE
|
1516
|
+
bibliography: TRUE
|
1517
|
+
eng: Himachali languages; Western Pahari languages
|
1518
|
+
fra: langues himachalis; langues paharis occidentales
|
1519
|
+
deu: Himachali
|
1520
|
+
|
1521
|
+
hin:
|
1522
|
+
iso_639_1: hi
|
1523
|
+
terminology: TRUE
|
1524
|
+
bibliography: TRUE
|
1525
|
+
eng: Hindi
|
1526
|
+
fra: hindi
|
1527
|
+
deu: Hindi
|
1528
|
+
|
1529
|
+
hit:
|
1530
|
+
terminology: TRUE
|
1531
|
+
bibliography: TRUE
|
1532
|
+
eng: Hittite
|
1533
|
+
fra: hittite
|
1534
|
+
deu: Hethitisch
|
1535
|
+
|
1536
|
+
hmn:
|
1537
|
+
terminology: TRUE
|
1538
|
+
bibliography: TRUE
|
1539
|
+
eng: Hmong; Mong
|
1540
|
+
fra: hmong
|
1541
|
+
deu: Miao-Sprachen
|
1542
|
+
|
1543
|
+
hmo:
|
1544
|
+
iso_639_1: ho
|
1545
|
+
terminology: TRUE
|
1546
|
+
bibliography: TRUE
|
1547
|
+
eng: Hiri Motu
|
1548
|
+
fra: hiri motu
|
1549
|
+
deu: Hiri-Motu
|
1550
|
+
|
1551
|
+
hrv:
|
1552
|
+
iso_639_1: hr
|
1553
|
+
terminology: TRUE
|
1554
|
+
bibliography: TRUE
|
1555
|
+
eng: Croatian
|
1556
|
+
fra: croate
|
1557
|
+
deu: Kroatisch
|
1558
|
+
|
1559
|
+
hsb:
|
1560
|
+
terminology: TRUE
|
1561
|
+
bibliography: TRUE
|
1562
|
+
eng: Upper Sorbian
|
1563
|
+
fra: haut-sorabe
|
1564
|
+
deu: Obersorbisch
|
1565
|
+
|
1566
|
+
hun:
|
1567
|
+
iso_639_1: hu
|
1568
|
+
terminology: TRUE
|
1569
|
+
bibliography: TRUE
|
1570
|
+
eng: Hungarian
|
1571
|
+
fra: hongrois
|
1572
|
+
deu: Ungarisch
|
1573
|
+
|
1574
|
+
hup:
|
1575
|
+
terminology: TRUE
|
1576
|
+
bibliography: TRUE
|
1577
|
+
eng: Hupa
|
1578
|
+
fra: hupa
|
1579
|
+
deu: Hupa-Sprache
|
1580
|
+
|
1581
|
+
arm :
|
1582
|
+
iso_639_1:
|
1583
|
+
terminology: FALSE
|
1584
|
+
bibliography: TRUE
|
1585
|
+
eng: Armenian
|
1586
|
+
fra: arménien
|
1587
|
+
deu: Armenisch
|
1588
|
+
|
1589
|
+
hye :
|
1590
|
+
iso_639_1: hy
|
1591
|
+
terminology: TRUE
|
1592
|
+
bibliography: FALSE
|
1593
|
+
eng: Armenian
|
1594
|
+
fra: arménien
|
1595
|
+
deu: Armenisch
|
1596
|
+
|
1597
|
+
iba:
|
1598
|
+
terminology: TRUE
|
1599
|
+
bibliography: TRUE
|
1600
|
+
eng: Iban
|
1601
|
+
fra: iban
|
1602
|
+
deu: Iban-Sprache
|
1603
|
+
|
1604
|
+
ibo:
|
1605
|
+
iso_639_1: ig
|
1606
|
+
terminology: TRUE
|
1607
|
+
bibliography: TRUE
|
1608
|
+
eng: Igbo
|
1609
|
+
fra: igbo
|
1610
|
+
deu: Ibo-Sprache
|
1611
|
+
|
1612
|
+
ice :
|
1613
|
+
iso_639_1:
|
1614
|
+
terminology: FALSE
|
1615
|
+
bibliography: TRUE
|
1616
|
+
eng: Icelandic
|
1617
|
+
fra: islandais
|
1618
|
+
deu: Isländisch
|
1619
|
+
|
1620
|
+
isl :
|
1621
|
+
iso_639_1: is
|
1622
|
+
terminology: TRUE
|
1623
|
+
bibliography: FALSE
|
1624
|
+
eng: Icelandic
|
1625
|
+
fra: islandais
|
1626
|
+
deu: Isländisch
|
1627
|
+
|
1628
|
+
ido:
|
1629
|
+
iso_639_1: io
|
1630
|
+
terminology: TRUE
|
1631
|
+
bibliography: TRUE
|
1632
|
+
eng: Ido
|
1633
|
+
fra: ido
|
1634
|
+
deu: Ido
|
1635
|
+
|
1636
|
+
iii:
|
1637
|
+
iso_639_1: ii
|
1638
|
+
terminology: TRUE
|
1639
|
+
bibliography: TRUE
|
1640
|
+
eng: Sichuan Yi; Nuosu
|
1641
|
+
fra: yi de Sichuan
|
1642
|
+
deu: Lalo-Sprache
|
1643
|
+
|
1644
|
+
ijo:
|
1645
|
+
terminology: TRUE
|
1646
|
+
bibliography: TRUE
|
1647
|
+
eng: Ijo languages
|
1648
|
+
fra: ijo, langues
|
1649
|
+
deu: Ijo-Sprache
|
1650
|
+
|
1651
|
+
iku:
|
1652
|
+
iso_639_1: iu
|
1653
|
+
terminology: TRUE
|
1654
|
+
bibliography: TRUE
|
1655
|
+
eng: Inuktitut
|
1656
|
+
fra: inuktitut
|
1657
|
+
deu: Inuktitut
|
1658
|
+
|
1659
|
+
ile:
|
1660
|
+
iso_639_1: ie
|
1661
|
+
terminology: TRUE
|
1662
|
+
bibliography: TRUE
|
1663
|
+
eng: Interlingue; Occidental
|
1664
|
+
fra: interlingue
|
1665
|
+
deu: Interlingue
|
1666
|
+
|
1667
|
+
ilo:
|
1668
|
+
terminology: TRUE
|
1669
|
+
bibliography: TRUE
|
1670
|
+
eng: Iloko
|
1671
|
+
fra: ilocano
|
1672
|
+
deu: Ilokano-Sprache
|
1673
|
+
|
1674
|
+
ina:
|
1675
|
+
iso_639_1: ia
|
1676
|
+
terminology: TRUE
|
1677
|
+
bibliography: TRUE
|
1678
|
+
eng: Interlingua (International Auxiliary Language Association)
|
1679
|
+
fra: interlingua (langue auxiliaire internationale)
|
1680
|
+
deu: Interlingua
|
1681
|
+
|
1682
|
+
inc:
|
1683
|
+
terminology: TRUE
|
1684
|
+
bibliography: TRUE
|
1685
|
+
eng: Indic languages
|
1686
|
+
fra: indo-aryennes, langues
|
1687
|
+
deu: Indoarische Sprachen (Andere)
|
1688
|
+
|
1689
|
+
ind:
|
1690
|
+
iso_639_1: id
|
1691
|
+
terminology: TRUE
|
1692
|
+
bibliography: TRUE
|
1693
|
+
eng: Indonesian
|
1694
|
+
fra: indonésien
|
1695
|
+
deu: Bahasa Indonesia
|
1696
|
+
|
1697
|
+
ine:
|
1698
|
+
terminology: TRUE
|
1699
|
+
bibliography: TRUE
|
1700
|
+
eng: Indo-European languages
|
1701
|
+
fra: indo-européennes, langues
|
1702
|
+
deu: Indogermanische Sprachen (Andere)
|
1703
|
+
|
1704
|
+
inh:
|
1705
|
+
terminology: TRUE
|
1706
|
+
bibliography: TRUE
|
1707
|
+
eng: Ingush
|
1708
|
+
fra: ingouche
|
1709
|
+
deu: Inguschisch
|
1710
|
+
|
1711
|
+
ipk:
|
1712
|
+
iso_639_1: ik
|
1713
|
+
terminology: TRUE
|
1714
|
+
bibliography: TRUE
|
1715
|
+
eng: Inupiaq
|
1716
|
+
fra: inupiaq
|
1717
|
+
deu: Inupik
|
1718
|
+
|
1719
|
+
ira:
|
1720
|
+
terminology: TRUE
|
1721
|
+
bibliography: TRUE
|
1722
|
+
eng: Iranian languages
|
1723
|
+
fra: iraniennes, langues
|
1724
|
+
deu: Iranische Sprachen (Andere)
|
1725
|
+
|
1726
|
+
iro:
|
1727
|
+
terminology: TRUE
|
1728
|
+
bibliography: TRUE
|
1729
|
+
eng: Iroquoian languages
|
1730
|
+
fra: iroquoises, langues
|
1731
|
+
deu: Irokesische Sprachen
|
1732
|
+
|
1733
|
+
ice :
|
1734
|
+
iso_639_1:
|
1735
|
+
terminology: FALSE
|
1736
|
+
bibliography: TRUE
|
1737
|
+
eng: Icelandic
|
1738
|
+
fra: islandais
|
1739
|
+
deu: Isländisch
|
1740
|
+
|
1741
|
+
isl :
|
1742
|
+
iso_639_1: is
|
1743
|
+
terminology: TRUE
|
1744
|
+
bibliography: FALSE
|
1745
|
+
eng: Icelandic
|
1746
|
+
fra: islandais
|
1747
|
+
deu: Isländisch
|
1748
|
+
|
1749
|
+
ita:
|
1750
|
+
iso_639_1: it
|
1751
|
+
terminology: TRUE
|
1752
|
+
bibliography: TRUE
|
1753
|
+
eng: Italian
|
1754
|
+
fra: italien
|
1755
|
+
deu: Italienisch
|
1756
|
+
|
1757
|
+
jav:
|
1758
|
+
iso_639_1: jv
|
1759
|
+
terminology: TRUE
|
1760
|
+
bibliography: TRUE
|
1761
|
+
eng: Javanese
|
1762
|
+
fra: javanais
|
1763
|
+
deu: Javanisch
|
1764
|
+
|
1765
|
+
jbo:
|
1766
|
+
terminology: TRUE
|
1767
|
+
bibliography: TRUE
|
1768
|
+
eng: Lojban
|
1769
|
+
fra: lojban
|
1770
|
+
deu: Lojban
|
1771
|
+
|
1772
|
+
jpn:
|
1773
|
+
iso_639_1: ja
|
1774
|
+
terminology: TRUE
|
1775
|
+
bibliography: TRUE
|
1776
|
+
eng: Japanese
|
1777
|
+
fra: japonais
|
1778
|
+
deu: Japanisch
|
1779
|
+
|
1780
|
+
jpr:
|
1781
|
+
terminology: TRUE
|
1782
|
+
bibliography: TRUE
|
1783
|
+
eng: Judeo-Persian
|
1784
|
+
fra: judéo-persan
|
1785
|
+
deu: Jüdisch-Persisch
|
1786
|
+
|
1787
|
+
jrb:
|
1788
|
+
terminology: TRUE
|
1789
|
+
bibliography: TRUE
|
1790
|
+
eng: Judeo-Arabic
|
1791
|
+
fra: judéo-arabe
|
1792
|
+
deu: Jüdisch-Arabisch
|
1793
|
+
|
1794
|
+
kaa:
|
1795
|
+
terminology: TRUE
|
1796
|
+
bibliography: TRUE
|
1797
|
+
eng: Kara-Kalpak
|
1798
|
+
fra: karakalpak
|
1799
|
+
deu: Karakalpakisch
|
1800
|
+
|
1801
|
+
kab:
|
1802
|
+
terminology: TRUE
|
1803
|
+
bibliography: TRUE
|
1804
|
+
eng: Kabyle
|
1805
|
+
fra: kabyle
|
1806
|
+
deu: Kabylisch
|
1807
|
+
|
1808
|
+
kac:
|
1809
|
+
terminology: TRUE
|
1810
|
+
bibliography: TRUE
|
1811
|
+
eng: Kachin; Jingpho
|
1812
|
+
fra: kachin; jingpho
|
1813
|
+
deu: Kachin-Sprache
|
1814
|
+
|
1815
|
+
kal:
|
1816
|
+
iso_639_1: kl
|
1817
|
+
terminology: TRUE
|
1818
|
+
bibliography: TRUE
|
1819
|
+
eng: Kalaallisut; Greenlandic
|
1820
|
+
fra: groenlandais
|
1821
|
+
deu: Grönländisch
|
1822
|
+
|
1823
|
+
kam:
|
1824
|
+
terminology: TRUE
|
1825
|
+
bibliography: TRUE
|
1826
|
+
eng: Kamba
|
1827
|
+
fra: kamba
|
1828
|
+
deu: Kamba-Sprache
|
1829
|
+
|
1830
|
+
kan:
|
1831
|
+
iso_639_1: kn
|
1832
|
+
terminology: TRUE
|
1833
|
+
bibliography: TRUE
|
1834
|
+
eng: Kannada
|
1835
|
+
fra: kannada
|
1836
|
+
deu: Kannada
|
1837
|
+
|
1838
|
+
kar:
|
1839
|
+
terminology: TRUE
|
1840
|
+
bibliography: TRUE
|
1841
|
+
eng: Karen languages
|
1842
|
+
fra: karen, langues
|
1843
|
+
deu: Karenisch
|
1844
|
+
|
1845
|
+
kas:
|
1846
|
+
iso_639_1: ks
|
1847
|
+
terminology: TRUE
|
1848
|
+
bibliography: TRUE
|
1849
|
+
eng: Kashmiri
|
1850
|
+
fra: kashmiri
|
1851
|
+
deu: Kaschmiri
|
1852
|
+
|
1853
|
+
geo :
|
1854
|
+
iso_639_1:
|
1855
|
+
terminology: FALSE
|
1856
|
+
bibliography: TRUE
|
1857
|
+
eng: Georgian
|
1858
|
+
fra: géorgien
|
1859
|
+
deu: Georgisch
|
1860
|
+
|
1861
|
+
kat :
|
1862
|
+
iso_639_1: ka
|
1863
|
+
terminology: TRUE
|
1864
|
+
bibliography: FALSE
|
1865
|
+
eng: Georgian
|
1866
|
+
fra: géorgien
|
1867
|
+
deu: Georgisch
|
1868
|
+
|
1869
|
+
kau:
|
1870
|
+
iso_639_1: kr
|
1871
|
+
terminology: TRUE
|
1872
|
+
bibliography: TRUE
|
1873
|
+
eng: Kanuri
|
1874
|
+
fra: kanouri
|
1875
|
+
deu: Kanuri-Sprache
|
1876
|
+
|
1877
|
+
kaw:
|
1878
|
+
terminology: TRUE
|
1879
|
+
bibliography: TRUE
|
1880
|
+
eng: Kawi
|
1881
|
+
fra: kawi
|
1882
|
+
deu: Kawi
|
1883
|
+
|
1884
|
+
kaz:
|
1885
|
+
iso_639_1: kk
|
1886
|
+
terminology: TRUE
|
1887
|
+
bibliography: TRUE
|
1888
|
+
eng: Kazakh
|
1889
|
+
fra: kazakh
|
1890
|
+
deu: Kasachisch
|
1891
|
+
|
1892
|
+
kbd:
|
1893
|
+
terminology: TRUE
|
1894
|
+
bibliography: TRUE
|
1895
|
+
eng: Kabardian
|
1896
|
+
fra: kabardien
|
1897
|
+
deu: Kabardinisch
|
1898
|
+
|
1899
|
+
kha:
|
1900
|
+
terminology: TRUE
|
1901
|
+
bibliography: TRUE
|
1902
|
+
eng: Khasi
|
1903
|
+
fra: khasi
|
1904
|
+
deu: Khasi-Sprache
|
1905
|
+
|
1906
|
+
khi:
|
1907
|
+
terminology: TRUE
|
1908
|
+
bibliography: TRUE
|
1909
|
+
eng: Khoisan languages
|
1910
|
+
fra: khoïsan, langues
|
1911
|
+
deu: Khoisan-Sprachen (Andere)
|
1912
|
+
|
1913
|
+
khm:
|
1914
|
+
iso_639_1: km
|
1915
|
+
terminology: TRUE
|
1916
|
+
bibliography: TRUE
|
1917
|
+
eng: Central Khmer
|
1918
|
+
fra: khmer central
|
1919
|
+
deu: Kambodschanisch
|
1920
|
+
|
1921
|
+
kho:
|
1922
|
+
terminology: TRUE
|
1923
|
+
bibliography: TRUE
|
1924
|
+
eng: Khotanese; Sakan
|
1925
|
+
fra: khotanais; sakan
|
1926
|
+
deu: Sakisch
|
1927
|
+
|
1928
|
+
kik:
|
1929
|
+
iso_639_1: ki
|
1930
|
+
terminology: TRUE
|
1931
|
+
bibliography: TRUE
|
1932
|
+
eng: Kikuyu; Gikuyu
|
1933
|
+
fra: kikuyu
|
1934
|
+
deu: Kikuyu-Sprache
|
1935
|
+
|
1936
|
+
kin:
|
1937
|
+
iso_639_1: rw
|
1938
|
+
terminology: TRUE
|
1939
|
+
bibliography: TRUE
|
1940
|
+
eng: Kinyarwanda
|
1941
|
+
fra: rwanda
|
1942
|
+
deu: Rwanda-Sprache
|
1943
|
+
|
1944
|
+
kir:
|
1945
|
+
iso_639_1: ky
|
1946
|
+
terminology: TRUE
|
1947
|
+
bibliography: TRUE
|
1948
|
+
eng: Kirghiz; Kyrgyz
|
1949
|
+
fra: kirghiz
|
1950
|
+
deu: Kirgisisch
|
1951
|
+
|
1952
|
+
kmb:
|
1953
|
+
terminology: TRUE
|
1954
|
+
bibliography: TRUE
|
1955
|
+
eng: Kimbundu
|
1956
|
+
fra: kimbundu
|
1957
|
+
deu: Kimbundu-Sprache
|
1958
|
+
|
1959
|
+
kok:
|
1960
|
+
terminology: TRUE
|
1961
|
+
bibliography: TRUE
|
1962
|
+
eng: Konkani
|
1963
|
+
fra: konkani
|
1964
|
+
deu: Konkani
|
1965
|
+
|
1966
|
+
kom:
|
1967
|
+
iso_639_1: kv
|
1968
|
+
terminology: TRUE
|
1969
|
+
bibliography: TRUE
|
1970
|
+
eng: Komi
|
1971
|
+
fra: kom
|
1972
|
+
deu: Komi-Sprache
|
1973
|
+
|
1974
|
+
kon:
|
1975
|
+
iso_639_1: kg
|
1976
|
+
terminology: TRUE
|
1977
|
+
bibliography: TRUE
|
1978
|
+
eng: Kongo
|
1979
|
+
fra: kongo
|
1980
|
+
deu: Kongo-Sprache
|
1981
|
+
|
1982
|
+
kor:
|
1983
|
+
iso_639_1: ko
|
1984
|
+
terminology: TRUE
|
1985
|
+
bibliography: TRUE
|
1986
|
+
eng: Korean
|
1987
|
+
fra: coréen
|
1988
|
+
deu: Koreanisch
|
1989
|
+
|
1990
|
+
kos:
|
1991
|
+
terminology: TRUE
|
1992
|
+
bibliography: TRUE
|
1993
|
+
eng: Kosraean
|
1994
|
+
fra: kosrae
|
1995
|
+
deu: Kosraeanisch
|
1996
|
+
|
1997
|
+
kpe:
|
1998
|
+
terminology: TRUE
|
1999
|
+
bibliography: TRUE
|
2000
|
+
eng: Kpelle
|
2001
|
+
fra: kpellé
|
2002
|
+
deu: Kpelle-Sprache
|
2003
|
+
|
2004
|
+
krc:
|
2005
|
+
terminology: TRUE
|
2006
|
+
bibliography: TRUE
|
2007
|
+
eng: Karachay-Balkar
|
2008
|
+
fra: karatchai balkar
|
2009
|
+
deu: Karatschaiisch-Balkarisch
|
2010
|
+
|
2011
|
+
krl:
|
2012
|
+
terminology: TRUE
|
2013
|
+
bibliography: TRUE
|
2014
|
+
eng: Karelian
|
2015
|
+
fra: carélien
|
2016
|
+
deu: Karelisch
|
2017
|
+
|
2018
|
+
kro:
|
2019
|
+
terminology: TRUE
|
2020
|
+
bibliography: TRUE
|
2021
|
+
eng: Kru languages
|
2022
|
+
fra: krou, langues
|
2023
|
+
deu: Kru-Sprachen (Andere)
|
2024
|
+
|
2025
|
+
kru:
|
2026
|
+
terminology: TRUE
|
2027
|
+
bibliography: TRUE
|
2028
|
+
eng: Kurukh
|
2029
|
+
fra: kurukh
|
2030
|
+
deu: Oraon-Sprache
|
2031
|
+
|
2032
|
+
kua:
|
2033
|
+
iso_639_1: kj
|
2034
|
+
terminology: TRUE
|
2035
|
+
bibliography: TRUE
|
2036
|
+
eng: Kuanyama; Kwanyama
|
2037
|
+
fra: kuanyama; kwanyama
|
2038
|
+
deu: Kwanyama-Sprache
|
2039
|
+
|
2040
|
+
kum:
|
2041
|
+
terminology: TRUE
|
2042
|
+
bibliography: TRUE
|
2043
|
+
eng: Kumyk
|
2044
|
+
fra: koumyk
|
2045
|
+
deu: Kumükisch
|
2046
|
+
|
2047
|
+
kur:
|
2048
|
+
iso_639_1: ku
|
2049
|
+
terminology: TRUE
|
2050
|
+
bibliography: TRUE
|
2051
|
+
eng: Kurdish
|
2052
|
+
fra: kurde
|
2053
|
+
deu: Kurdisch
|
2054
|
+
|
2055
|
+
kut:
|
2056
|
+
terminology: TRUE
|
2057
|
+
bibliography: TRUE
|
2058
|
+
eng: Kutenai
|
2059
|
+
fra: kutenai
|
2060
|
+
deu: Kutenai-Sprache
|
2061
|
+
|
2062
|
+
lad:
|
2063
|
+
terminology: TRUE
|
2064
|
+
bibliography: TRUE
|
2065
|
+
eng: Ladino
|
2066
|
+
fra: judéo-espagnol
|
2067
|
+
deu: Judenspanisch
|
2068
|
+
|
2069
|
+
lah:
|
2070
|
+
terminology: TRUE
|
2071
|
+
bibliography: TRUE
|
2072
|
+
eng: Lahnda
|
2073
|
+
fra: lahnda
|
2074
|
+
deu: Lahnda
|
2075
|
+
|
2076
|
+
lam:
|
2077
|
+
terminology: TRUE
|
2078
|
+
bibliography: TRUE
|
2079
|
+
eng: Lamba
|
2080
|
+
fra: lamba
|
2081
|
+
deu: Lamba-Sprache (Bantusprache)
|
2082
|
+
|
2083
|
+
lao:
|
2084
|
+
iso_639_1: lo
|
2085
|
+
terminology: TRUE
|
2086
|
+
bibliography: TRUE
|
2087
|
+
eng: Lao
|
2088
|
+
fra: lao
|
2089
|
+
deu: Laotisch
|
2090
|
+
|
2091
|
+
lat:
|
2092
|
+
iso_639_1: la
|
2093
|
+
terminology: TRUE
|
2094
|
+
bibliography: TRUE
|
2095
|
+
eng: Latin
|
2096
|
+
fra: latin
|
2097
|
+
deu: Latein
|
2098
|
+
|
2099
|
+
lav:
|
2100
|
+
iso_639_1: lv
|
2101
|
+
terminology: TRUE
|
2102
|
+
bibliography: TRUE
|
2103
|
+
eng: Latvian
|
2104
|
+
fra: letton
|
2105
|
+
deu: Lettisch
|
2106
|
+
|
2107
|
+
lez:
|
2108
|
+
terminology: TRUE
|
2109
|
+
bibliography: TRUE
|
2110
|
+
eng: Lezghian
|
2111
|
+
fra: lezghien
|
2112
|
+
deu: Lesgisch
|
2113
|
+
|
2114
|
+
lim:
|
2115
|
+
iso_639_1: li
|
2116
|
+
terminology: TRUE
|
2117
|
+
bibliography: TRUE
|
2118
|
+
eng: Limburgan; Limburger; Limburgish
|
2119
|
+
fra: limbourgeois
|
2120
|
+
deu: Limburgisch
|
2121
|
+
|
2122
|
+
lin:
|
2123
|
+
iso_639_1: ln
|
2124
|
+
terminology: TRUE
|
2125
|
+
bibliography: TRUE
|
2126
|
+
eng: Lingala
|
2127
|
+
fra: lingala
|
2128
|
+
deu: Lingala
|
2129
|
+
|
2130
|
+
lit:
|
2131
|
+
iso_639_1: lt
|
2132
|
+
terminology: TRUE
|
2133
|
+
bibliography: TRUE
|
2134
|
+
eng: Lithuanian
|
2135
|
+
fra: lituanien
|
2136
|
+
deu: Litauisch
|
2137
|
+
|
2138
|
+
lol:
|
2139
|
+
terminology: TRUE
|
2140
|
+
bibliography: TRUE
|
2141
|
+
eng: Mongo
|
2142
|
+
fra: mongo
|
2143
|
+
deu: Mongo-Sprache
|
2144
|
+
|
2145
|
+
loz:
|
2146
|
+
terminology: TRUE
|
2147
|
+
bibliography: TRUE
|
2148
|
+
eng: Lozi
|
2149
|
+
fra: lozi
|
2150
|
+
deu: Rotse-Sprache
|
2151
|
+
|
2152
|
+
ltz:
|
2153
|
+
iso_639_1: lb
|
2154
|
+
terminology: TRUE
|
2155
|
+
bibliography: TRUE
|
2156
|
+
eng: Luxembourgish; Letzeburgesch
|
2157
|
+
fra: luxembourgeois
|
2158
|
+
deu: Luxemburgisch
|
2159
|
+
|
2160
|
+
lua:
|
2161
|
+
terminology: TRUE
|
2162
|
+
bibliography: TRUE
|
2163
|
+
eng: Luba-Lulua
|
2164
|
+
fra: luba-lulua
|
2165
|
+
deu: Lulua-Sprache
|
2166
|
+
|
2167
|
+
lub:
|
2168
|
+
iso_639_1: lu
|
2169
|
+
terminology: TRUE
|
2170
|
+
bibliography: TRUE
|
2171
|
+
eng: Luba-Katanga
|
2172
|
+
fra: luba-katanga
|
2173
|
+
deu: Luba-Katanga-Sprache
|
2174
|
+
|
2175
|
+
lug:
|
2176
|
+
iso_639_1: lg
|
2177
|
+
terminology: TRUE
|
2178
|
+
bibliography: TRUE
|
2179
|
+
eng: Ganda
|
2180
|
+
fra: ganda
|
2181
|
+
deu: Ganda-Sprache
|
2182
|
+
|
2183
|
+
lui:
|
2184
|
+
terminology: TRUE
|
2185
|
+
bibliography: TRUE
|
2186
|
+
eng: Luiseno
|
2187
|
+
fra: luiseno
|
2188
|
+
deu: Luiseño-Sprache
|
2189
|
+
|
2190
|
+
lun:
|
2191
|
+
terminology: TRUE
|
2192
|
+
bibliography: TRUE
|
2193
|
+
eng: Lunda
|
2194
|
+
fra: lunda
|
2195
|
+
deu: Lunda-Sprache
|
2196
|
+
|
2197
|
+
luo:
|
2198
|
+
terminology: TRUE
|
2199
|
+
bibliography: TRUE
|
2200
|
+
eng: Luo (Kenya and Tanzania)
|
2201
|
+
fra: luo (Kenya et Tanzanie)
|
2202
|
+
deu: Luo-Sprache
|
2203
|
+
|
2204
|
+
lus:
|
2205
|
+
terminology: TRUE
|
2206
|
+
bibliography: TRUE
|
2207
|
+
eng: Lushai
|
2208
|
+
fra: lushai
|
2209
|
+
deu: Lushai-Sprache
|
2210
|
+
|
2211
|
+
mac :
|
2212
|
+
iso_639_1:
|
2213
|
+
terminology: FALSE
|
2214
|
+
bibliography: TRUE
|
2215
|
+
eng: Macedonian
|
2216
|
+
fra: macédonien
|
2217
|
+
deu: Makedonisch
|
2218
|
+
|
2219
|
+
mkd :
|
2220
|
+
iso_639_1: mk
|
2221
|
+
terminology: TRUE
|
2222
|
+
bibliography: FALSE
|
2223
|
+
eng: Macedonian
|
2224
|
+
fra: macédonien
|
2225
|
+
deu: Makedonisch
|
2226
|
+
|
2227
|
+
mad:
|
2228
|
+
terminology: TRUE
|
2229
|
+
bibliography: TRUE
|
2230
|
+
eng: Madurese
|
2231
|
+
fra: madourais
|
2232
|
+
deu: Maduresisch
|
2233
|
+
|
2234
|
+
mag:
|
2235
|
+
terminology: TRUE
|
2236
|
+
bibliography: TRUE
|
2237
|
+
eng: Magahi
|
2238
|
+
fra: magahi
|
2239
|
+
deu: Khotta
|
2240
|
+
|
2241
|
+
mah:
|
2242
|
+
iso_639_1: mh
|
2243
|
+
terminology: TRUE
|
2244
|
+
bibliography: TRUE
|
2245
|
+
eng: Marshallese
|
2246
|
+
fra: marshall
|
2247
|
+
deu: Marschallesisch
|
2248
|
+
|
2249
|
+
mai:
|
2250
|
+
terminology: TRUE
|
2251
|
+
bibliography: TRUE
|
2252
|
+
eng: Maithili
|
2253
|
+
fra: maithili
|
2254
|
+
deu: Maithili
|
2255
|
+
|
2256
|
+
mak:
|
2257
|
+
terminology: TRUE
|
2258
|
+
bibliography: TRUE
|
2259
|
+
eng: Makasar
|
2260
|
+
fra: makassar
|
2261
|
+
deu: Makassarisch
|
2262
|
+
|
2263
|
+
mal:
|
2264
|
+
iso_639_1: ml
|
2265
|
+
terminology: TRUE
|
2266
|
+
bibliography: TRUE
|
2267
|
+
eng: Malayalam
|
2268
|
+
fra: malayalam
|
2269
|
+
deu: Malayalam
|
2270
|
+
|
2271
|
+
man:
|
2272
|
+
terminology: TRUE
|
2273
|
+
bibliography: TRUE
|
2274
|
+
eng: Mandingo
|
2275
|
+
fra: mandingue
|
2276
|
+
deu: Malinke-Sprache
|
2277
|
+
|
2278
|
+
mao :
|
2279
|
+
iso_639_1:
|
2280
|
+
terminology: FALSE
|
2281
|
+
bibliography: TRUE
|
2282
|
+
eng: Maori
|
2283
|
+
fra: maori
|
2284
|
+
deu: Maori-Sprache
|
2285
|
+
|
2286
|
+
mri :
|
2287
|
+
iso_639_1: mi
|
2288
|
+
terminology: TRUE
|
2289
|
+
bibliography: FALSE
|
2290
|
+
eng: Maori
|
2291
|
+
fra: maori
|
2292
|
+
deu: Maori-Sprache
|
2293
|
+
|
2294
|
+
map:
|
2295
|
+
terminology: TRUE
|
2296
|
+
bibliography: TRUE
|
2297
|
+
eng: Austronesian languages
|
2298
|
+
fra: austronésiennes, langues
|
2299
|
+
deu: Austronesische Sprachen (Andere)
|
2300
|
+
|
2301
|
+
mar:
|
2302
|
+
iso_639_1: mr
|
2303
|
+
terminology: TRUE
|
2304
|
+
bibliography: TRUE
|
2305
|
+
eng: Marathi
|
2306
|
+
fra: marathe
|
2307
|
+
deu: Marathi
|
2308
|
+
|
2309
|
+
mas:
|
2310
|
+
terminology: TRUE
|
2311
|
+
bibliography: TRUE
|
2312
|
+
eng: Masai
|
2313
|
+
fra: massaï
|
2314
|
+
deu: Massai-Sprache
|
2315
|
+
|
2316
|
+
may :
|
2317
|
+
iso_639_1:
|
2318
|
+
terminology: FALSE
|
2319
|
+
bibliography: TRUE
|
2320
|
+
eng: Malay
|
2321
|
+
fra: malais
|
2322
|
+
deu: Malaiisch
|
2323
|
+
|
2324
|
+
msa :
|
2325
|
+
iso_639_1: ms
|
2326
|
+
terminology: TRUE
|
2327
|
+
bibliography: FALSE
|
2328
|
+
eng: Malay
|
2329
|
+
fra: malais
|
2330
|
+
deu: Malaiisch
|
2331
|
+
|
2332
|
+
mdf:
|
2333
|
+
terminology: TRUE
|
2334
|
+
bibliography: TRUE
|
2335
|
+
eng: Moksha
|
2336
|
+
fra: moksa
|
2337
|
+
deu: Mokscha-Sprache
|
2338
|
+
|
2339
|
+
mdr:
|
2340
|
+
terminology: TRUE
|
2341
|
+
bibliography: TRUE
|
2342
|
+
eng: Mandar
|
2343
|
+
fra: mandar
|
2344
|
+
deu: Mandaresisch
|
2345
|
+
|
2346
|
+
men:
|
2347
|
+
terminology: TRUE
|
2348
|
+
bibliography: TRUE
|
2349
|
+
eng: Mende
|
2350
|
+
fra: mendé
|
2351
|
+
deu: Mende-Sprache
|
2352
|
+
|
2353
|
+
mga:
|
2354
|
+
terminology: TRUE
|
2355
|
+
bibliography: TRUE
|
2356
|
+
eng: Irish, Middle (900-1200)
|
2357
|
+
fra: irlandais moyen (900-1200)
|
2358
|
+
deu: Mittelirisch
|
2359
|
+
|
2360
|
+
mic:
|
2361
|
+
terminology: TRUE
|
2362
|
+
bibliography: TRUE
|
2363
|
+
eng: Mi'kmaq; Micmac
|
2364
|
+
fra: mi'kmaq; micmac
|
2365
|
+
deu: Micmac-Sprache
|
2366
|
+
|
2367
|
+
min:
|
2368
|
+
terminology: TRUE
|
2369
|
+
bibliography: TRUE
|
2370
|
+
eng: Minangkabau
|
2371
|
+
fra: minangkabau
|
2372
|
+
deu: Minangkabau-Sprache
|
2373
|
+
|
2374
|
+
mis:
|
2375
|
+
terminology: TRUE
|
2376
|
+
bibliography: TRUE
|
2377
|
+
eng: Uncoded languages
|
2378
|
+
fra: langues non codées
|
2379
|
+
deu: Einzelne andere Sprachen
|
2380
|
+
|
2381
|
+
mac :
|
2382
|
+
iso_639_1:
|
2383
|
+
terminology: FALSE
|
2384
|
+
bibliography: TRUE
|
2385
|
+
eng: Macedonian
|
2386
|
+
fra: macédonien
|
2387
|
+
deu: Makedonisch
|
2388
|
+
|
2389
|
+
mkd :
|
2390
|
+
iso_639_1: mk
|
2391
|
+
terminology: TRUE
|
2392
|
+
bibliography: FALSE
|
2393
|
+
eng: Macedonian
|
2394
|
+
fra: macédonien
|
2395
|
+
deu: Makedonisch
|
2396
|
+
|
2397
|
+
mkh:
|
2398
|
+
terminology: TRUE
|
2399
|
+
bibliography: TRUE
|
2400
|
+
eng: Mon-Khmer languages
|
2401
|
+
fra: môn-khmer, langues
|
2402
|
+
deu: Mon-Khmer-Sprachen (Andere)
|
2403
|
+
|
2404
|
+
mlg:
|
2405
|
+
iso_639_1: mg
|
2406
|
+
terminology: TRUE
|
2407
|
+
bibliography: TRUE
|
2408
|
+
eng: Malagasy
|
2409
|
+
fra: malgache
|
2410
|
+
deu: Malagassi-Sprache
|
2411
|
+
|
2412
|
+
mlt:
|
2413
|
+
iso_639_1: mt
|
2414
|
+
terminology: TRUE
|
2415
|
+
bibliography: TRUE
|
2416
|
+
eng: Maltese
|
2417
|
+
fra: maltais
|
2418
|
+
deu: Maltesisch
|
2419
|
+
|
2420
|
+
mnc:
|
2421
|
+
terminology: TRUE
|
2422
|
+
bibliography: TRUE
|
2423
|
+
eng: Manchu
|
2424
|
+
fra: mandchou
|
2425
|
+
deu: Mandschurisch
|
2426
|
+
|
2427
|
+
mni:
|
2428
|
+
terminology: TRUE
|
2429
|
+
bibliography: TRUE
|
2430
|
+
eng: Manipuri
|
2431
|
+
fra: manipuri
|
2432
|
+
deu: Meithei-Sprache
|
2433
|
+
|
2434
|
+
mno:
|
2435
|
+
terminology: TRUE
|
2436
|
+
bibliography: TRUE
|
2437
|
+
eng: Manobo languages
|
2438
|
+
fra: manobo, langues
|
2439
|
+
deu: Manobo-Sprachen
|
2440
|
+
|
2441
|
+
moh:
|
2442
|
+
terminology: TRUE
|
2443
|
+
bibliography: TRUE
|
2444
|
+
eng: Mohawk
|
2445
|
+
fra: mohawk
|
2446
|
+
deu: Mohawk-Sprache
|
2447
|
+
|
2448
|
+
mon:
|
2449
|
+
iso_639_1: mn
|
2450
|
+
terminology: TRUE
|
2451
|
+
bibliography: TRUE
|
2452
|
+
eng: Mongolian
|
2453
|
+
fra: mongol
|
2454
|
+
deu: Mongolisch
|
2455
|
+
|
2456
|
+
mos:
|
2457
|
+
terminology: TRUE
|
2458
|
+
bibliography: TRUE
|
2459
|
+
eng: Mossi
|
2460
|
+
fra: moré
|
2461
|
+
deu: Mossi-Sprache
|
2462
|
+
|
2463
|
+
mao :
|
2464
|
+
iso_639_1:
|
2465
|
+
terminology: FALSE
|
2466
|
+
bibliography: TRUE
|
2467
|
+
eng: Maori
|
2468
|
+
fra: maori
|
2469
|
+
deu: Maori-Sprache
|
2470
|
+
|
2471
|
+
mri :
|
2472
|
+
iso_639_1: mi
|
2473
|
+
terminology: TRUE
|
2474
|
+
bibliography: FALSE
|
2475
|
+
eng: Maori
|
2476
|
+
fra: maori
|
2477
|
+
deu: Maori-Sprache
|
2478
|
+
|
2479
|
+
may :
|
2480
|
+
iso_639_1:
|
2481
|
+
terminology: FALSE
|
2482
|
+
bibliography: TRUE
|
2483
|
+
eng: Malay
|
2484
|
+
fra: malais
|
2485
|
+
deu: Malaiisch
|
2486
|
+
|
2487
|
+
msa :
|
2488
|
+
iso_639_1: ms
|
2489
|
+
terminology: TRUE
|
2490
|
+
bibliography: FALSE
|
2491
|
+
eng: Malay
|
2492
|
+
fra: malais
|
2493
|
+
deu: Malaiisch
|
2494
|
+
|
2495
|
+
mul:
|
2496
|
+
terminology: TRUE
|
2497
|
+
bibliography: TRUE
|
2498
|
+
eng: Multiple languages
|
2499
|
+
fra: multilingue
|
2500
|
+
deu: Mehrere Sprachen
|
2501
|
+
|
2502
|
+
mun:
|
2503
|
+
terminology: TRUE
|
2504
|
+
bibliography: TRUE
|
2505
|
+
eng: Munda languages
|
2506
|
+
fra: mounda, langues
|
2507
|
+
deu: Mundasprachen (Andere)
|
2508
|
+
|
2509
|
+
mus:
|
2510
|
+
terminology: TRUE
|
2511
|
+
bibliography: TRUE
|
2512
|
+
eng: Creek
|
2513
|
+
fra: muskogee
|
2514
|
+
deu: Muskogisch
|
2515
|
+
|
2516
|
+
mwl:
|
2517
|
+
terminology: TRUE
|
2518
|
+
bibliography: TRUE
|
2519
|
+
eng: Mirandese
|
2520
|
+
fra: mirandais
|
2521
|
+
deu: Mirandesisch
|
2522
|
+
|
2523
|
+
mwr:
|
2524
|
+
terminology: TRUE
|
2525
|
+
bibliography: TRUE
|
2526
|
+
eng: Marwari
|
2527
|
+
fra: marvari
|
2528
|
+
deu: Marwari
|
2529
|
+
|
2530
|
+
bur :
|
2531
|
+
iso_639_1:
|
2532
|
+
terminology: FALSE
|
2533
|
+
bibliography: TRUE
|
2534
|
+
eng: Burmese
|
2535
|
+
fra: birman
|
2536
|
+
deu: Birmanisch
|
2537
|
+
|
2538
|
+
mya :
|
2539
|
+
iso_639_1: my
|
2540
|
+
terminology: TRUE
|
2541
|
+
bibliography: FALSE
|
2542
|
+
eng: Burmese
|
2543
|
+
fra: birman
|
2544
|
+
deu: Birmanisch
|
2545
|
+
|
2546
|
+
myn:
|
2547
|
+
terminology: TRUE
|
2548
|
+
bibliography: TRUE
|
2549
|
+
eng: Mayan languages
|
2550
|
+
fra: maya, langues
|
2551
|
+
deu: Maya-Sprachen
|
2552
|
+
|
2553
|
+
myv:
|
2554
|
+
terminology: TRUE
|
2555
|
+
bibliography: TRUE
|
2556
|
+
eng: Erzya
|
2557
|
+
fra: erza
|
2558
|
+
deu: Erza-Mordwinisch
|
2559
|
+
|
2560
|
+
nah:
|
2561
|
+
terminology: TRUE
|
2562
|
+
bibliography: TRUE
|
2563
|
+
eng: Nahuatl languages
|
2564
|
+
fra: nahuatl, langues
|
2565
|
+
deu: Nahuatl
|
2566
|
+
|
2567
|
+
nai:
|
2568
|
+
terminology: TRUE
|
2569
|
+
bibliography: TRUE
|
2570
|
+
eng: North American Indian languages
|
2571
|
+
fra: nord-amérindiennes, langues
|
2572
|
+
deu: Indianersprachen, Nordamerika (Andere)
|
2573
|
+
|
2574
|
+
nap:
|
2575
|
+
terminology: TRUE
|
2576
|
+
bibliography: TRUE
|
2577
|
+
eng: Neapolitan
|
2578
|
+
fra: napolitain
|
2579
|
+
deu: Neapel / Mundart
|
2580
|
+
|
2581
|
+
nau:
|
2582
|
+
iso_639_1: na
|
2583
|
+
terminology: TRUE
|
2584
|
+
bibliography: TRUE
|
2585
|
+
eng: Nauru
|
2586
|
+
fra: nauruan
|
2587
|
+
deu: Nauruanisch
|
2588
|
+
|
2589
|
+
nav:
|
2590
|
+
iso_639_1: nv
|
2591
|
+
terminology: TRUE
|
2592
|
+
bibliography: TRUE
|
2593
|
+
eng: Navajo; Navaho
|
2594
|
+
fra: navaho
|
2595
|
+
deu: Navajo-Sprache
|
2596
|
+
|
2597
|
+
nbl:
|
2598
|
+
iso_639_1: nr
|
2599
|
+
terminology: TRUE
|
2600
|
+
bibliography: TRUE
|
2601
|
+
eng: Ndebele, South; South Ndebele
|
2602
|
+
fra: ndébélé du Sud
|
2603
|
+
deu: Ndebele-Sprache (Transvaal)
|
2604
|
+
|
2605
|
+
nde:
|
2606
|
+
iso_639_1: nd
|
2607
|
+
terminology: TRUE
|
2608
|
+
bibliography: TRUE
|
2609
|
+
eng: Ndebele, North; North Ndebele
|
2610
|
+
fra: ndébélé du Nord
|
2611
|
+
deu: Ndebele-Sprache (Simbabwe)
|
2612
|
+
|
2613
|
+
ndo:
|
2614
|
+
iso_639_1: ng
|
2615
|
+
terminology: TRUE
|
2616
|
+
bibliography: TRUE
|
2617
|
+
eng: Ndonga
|
2618
|
+
fra: ndonga
|
2619
|
+
deu: Ndonga
|
2620
|
+
|
2621
|
+
nds:
|
2622
|
+
terminology: TRUE
|
2623
|
+
bibliography: TRUE
|
2624
|
+
eng: Low German; Low Saxon; German, Low; Saxon, Low
|
2625
|
+
fra: bas allemand; bas saxon; allemand, bas; saxon, bas
|
2626
|
+
deu: Niederdeutsch
|
2627
|
+
|
2628
|
+
nep:
|
2629
|
+
iso_639_1: ne
|
2630
|
+
terminology: TRUE
|
2631
|
+
bibliography: TRUE
|
2632
|
+
eng: Nepali
|
2633
|
+
fra: népalais
|
2634
|
+
deu: Nepali
|
2635
|
+
|
2636
|
+
new:
|
2637
|
+
terminology: TRUE
|
2638
|
+
bibliography: TRUE
|
2639
|
+
eng: Nepal Bhasa; Newari
|
2640
|
+
fra: nepal bhasa; newari
|
2641
|
+
deu: Newari
|
2642
|
+
|
2643
|
+
nia:
|
2644
|
+
terminology: TRUE
|
2645
|
+
bibliography: TRUE
|
2646
|
+
eng: Nias
|
2647
|
+
fra: nias
|
2648
|
+
deu: Nias-Sprache
|
2649
|
+
|
2650
|
+
nic:
|
2651
|
+
terminology: TRUE
|
2652
|
+
bibliography: TRUE
|
2653
|
+
eng: Niger-Kordofanian languages
|
2654
|
+
fra: nigéro-kordofaniennes, langues
|
2655
|
+
deu: Nigerkordofanische Sprachen (Andere)
|
2656
|
+
|
2657
|
+
niu:
|
2658
|
+
terminology: TRUE
|
2659
|
+
bibliography: TRUE
|
2660
|
+
eng: Niuean
|
2661
|
+
fra: niué
|
2662
|
+
deu: Niue-Sprache
|
2663
|
+
|
2664
|
+
dut :
|
2665
|
+
iso_639_1:
|
2666
|
+
terminology: FALSE
|
2667
|
+
bibliography: TRUE
|
2668
|
+
eng: Dutch; Flemish
|
2669
|
+
fra: néerlandais; flamand
|
2670
|
+
deu: Niederländisch
|
2671
|
+
|
2672
|
+
nld :
|
2673
|
+
iso_639_1: nl
|
2674
|
+
terminology: TRUE
|
2675
|
+
bibliography: FALSE
|
2676
|
+
eng: Dutch; Flemish
|
2677
|
+
fra: néerlandais; flamand
|
2678
|
+
deu: Niederländisch
|
2679
|
+
|
2680
|
+
nno:
|
2681
|
+
iso_639_1: nn
|
2682
|
+
terminology: TRUE
|
2683
|
+
bibliography: TRUE
|
2684
|
+
eng: Norwegian Nynorsk; Nynorsk, Norwegian
|
2685
|
+
fra: norvégien nynorsk; nynorsk, norvégien
|
2686
|
+
deu: Nynorsk
|
2687
|
+
|
2688
|
+
nob:
|
2689
|
+
iso_639_1: nb
|
2690
|
+
terminology: TRUE
|
2691
|
+
bibliography: TRUE
|
2692
|
+
eng: Bokmål, Norwegian; Norwegian Bokmål
|
2693
|
+
fra: norvégien bokmål
|
2694
|
+
deu: Bokmål
|
2695
|
+
|
2696
|
+
nog:
|
2697
|
+
terminology: TRUE
|
2698
|
+
bibliography: TRUE
|
2699
|
+
eng: Nogai
|
2700
|
+
fra: nogaï; nogay
|
2701
|
+
deu: Nogaisch
|
2702
|
+
|
2703
|
+
non:
|
2704
|
+
terminology: TRUE
|
2705
|
+
bibliography: TRUE
|
2706
|
+
eng: Norse, Old
|
2707
|
+
fra: norrois, vieux
|
2708
|
+
deu: Altnorwegisch
|
2709
|
+
|
2710
|
+
nor:
|
2711
|
+
iso_639_1: no
|
2712
|
+
terminology: TRUE
|
2713
|
+
bibliography: TRUE
|
2714
|
+
eng: Norwegian
|
2715
|
+
fra: norvégien
|
2716
|
+
deu: Norwegisch
|
2717
|
+
|
2718
|
+
nqo:
|
2719
|
+
terminology: TRUE
|
2720
|
+
bibliography: TRUE
|
2721
|
+
eng: N'Ko
|
2722
|
+
fra: n'ko
|
2723
|
+
deu: N'Ko
|
2724
|
+
|
2725
|
+
nso:
|
2726
|
+
terminology: TRUE
|
2727
|
+
bibliography: TRUE
|
2728
|
+
eng: Pedi; Sepedi; Northern Sotho
|
2729
|
+
fra: pedi; sepedi; sotho du Nord
|
2730
|
+
deu: Pedi-Sprache
|
2731
|
+
|
2732
|
+
nub:
|
2733
|
+
terminology: TRUE
|
2734
|
+
bibliography: TRUE
|
2735
|
+
eng: Nubian languages
|
2736
|
+
fra: nubiennes, langues
|
2737
|
+
deu: Nubische Sprachen
|
2738
|
+
|
2739
|
+
nwc:
|
2740
|
+
terminology: TRUE
|
2741
|
+
bibliography: TRUE
|
2742
|
+
eng: Classical Newari; Old Newari; Classical Nepal Bhasa
|
2743
|
+
fra: newari classique
|
2744
|
+
deu: Alt-Newari
|
2745
|
+
|
2746
|
+
nya:
|
2747
|
+
iso_639_1: ny
|
2748
|
+
terminology: TRUE
|
2749
|
+
bibliography: TRUE
|
2750
|
+
eng: Chichewa; Chewa; Nyanja
|
2751
|
+
fra: chichewa; chewa; nyanja
|
2752
|
+
deu: Nyanja-Sprache
|
2753
|
+
|
2754
|
+
nym:
|
2755
|
+
terminology: TRUE
|
2756
|
+
bibliography: TRUE
|
2757
|
+
eng: Nyamwezi
|
2758
|
+
fra: nyamwezi
|
2759
|
+
deu: Nyamwezi-Sprache
|
2760
|
+
|
2761
|
+
nyn:
|
2762
|
+
terminology: TRUE
|
2763
|
+
bibliography: TRUE
|
2764
|
+
eng: Nyankole
|
2765
|
+
fra: nyankolé
|
2766
|
+
deu: Nkole-Sprache
|
2767
|
+
|
2768
|
+
nyo:
|
2769
|
+
terminology: TRUE
|
2770
|
+
bibliography: TRUE
|
2771
|
+
eng: Nyoro
|
2772
|
+
fra: nyoro
|
2773
|
+
deu: Nyoro-Sprache
|
2774
|
+
|
2775
|
+
nzi:
|
2776
|
+
terminology: TRUE
|
2777
|
+
bibliography: TRUE
|
2778
|
+
eng: Nzima
|
2779
|
+
fra: nzema
|
2780
|
+
deu: Nzima-Sprache
|
2781
|
+
|
2782
|
+
oci:
|
2783
|
+
iso_639_1: oc
|
2784
|
+
terminology: TRUE
|
2785
|
+
bibliography: TRUE
|
2786
|
+
eng: Occitan (post 1500)
|
2787
|
+
fra: occitan (après 1500)
|
2788
|
+
deu: Okzitanisch
|
2789
|
+
|
2790
|
+
oji:
|
2791
|
+
iso_639_1: oj
|
2792
|
+
terminology: TRUE
|
2793
|
+
bibliography: TRUE
|
2794
|
+
eng: Ojibwa
|
2795
|
+
fra: ojibwa
|
2796
|
+
deu: Ojibwa-Sprache
|
2797
|
+
|
2798
|
+
ori:
|
2799
|
+
iso_639_1: or
|
2800
|
+
terminology: TRUE
|
2801
|
+
bibliography: TRUE
|
2802
|
+
eng: Oriya
|
2803
|
+
fra: oriya
|
2804
|
+
deu: Oriya-Sprache
|
2805
|
+
|
2806
|
+
orm:
|
2807
|
+
iso_639_1: om
|
2808
|
+
terminology: TRUE
|
2809
|
+
bibliography: TRUE
|
2810
|
+
eng: Oromo
|
2811
|
+
fra: galla
|
2812
|
+
deu: Galla-Sprache
|
2813
|
+
|
2814
|
+
osa:
|
2815
|
+
terminology: TRUE
|
2816
|
+
bibliography: TRUE
|
2817
|
+
eng: Osage
|
2818
|
+
fra: osage
|
2819
|
+
deu: Osage-Sprache
|
2820
|
+
|
2821
|
+
oss:
|
2822
|
+
iso_639_1: os
|
2823
|
+
terminology: TRUE
|
2824
|
+
bibliography: TRUE
|
2825
|
+
eng: Ossetian; Ossetic
|
2826
|
+
fra: ossète
|
2827
|
+
deu: Ossetisch
|
2828
|
+
|
2829
|
+
ota:
|
2830
|
+
terminology: TRUE
|
2831
|
+
bibliography: TRUE
|
2832
|
+
eng: Turkish, Ottoman (1500-1928)
|
2833
|
+
fra: turc ottoman (1500-1928)
|
2834
|
+
deu: Osmanisch
|
2835
|
+
|
2836
|
+
oto:
|
2837
|
+
terminology: TRUE
|
2838
|
+
bibliography: TRUE
|
2839
|
+
eng: Otomian languages
|
2840
|
+
fra: otomi, langues
|
2841
|
+
deu: Otomangue-Sprachen
|
2842
|
+
|
2843
|
+
paa:
|
2844
|
+
terminology: TRUE
|
2845
|
+
bibliography: TRUE
|
2846
|
+
eng: Papuan languages
|
2847
|
+
fra: papoues, langues
|
2848
|
+
deu: Papuasprachen (Andere)
|
2849
|
+
|
2850
|
+
pag:
|
2851
|
+
terminology: TRUE
|
2852
|
+
bibliography: TRUE
|
2853
|
+
eng: Pangasinan
|
2854
|
+
fra: pangasinan
|
2855
|
+
deu: Pangasinan-Sprache
|
2856
|
+
|
2857
|
+
pal:
|
2858
|
+
terminology: TRUE
|
2859
|
+
bibliography: TRUE
|
2860
|
+
eng: Pahlavi
|
2861
|
+
fra: pahlavi
|
2862
|
+
deu: Mittelpersisch
|
2863
|
+
|
2864
|
+
pam:
|
2865
|
+
terminology: TRUE
|
2866
|
+
bibliography: TRUE
|
2867
|
+
eng: Pampanga; Kapampangan
|
2868
|
+
fra: pampangan
|
2869
|
+
deu: Pampanggan-Sprache
|
2870
|
+
|
2871
|
+
pan:
|
2872
|
+
iso_639_1: pa
|
2873
|
+
terminology: TRUE
|
2874
|
+
bibliography: TRUE
|
2875
|
+
eng: Panjabi; Punjabi
|
2876
|
+
fra: pendjabi
|
2877
|
+
deu: Pandschabi-Sprache
|
2878
|
+
|
2879
|
+
pap:
|
2880
|
+
terminology: TRUE
|
2881
|
+
bibliography: TRUE
|
2882
|
+
eng: Papiamento
|
2883
|
+
fra: papiamento
|
2884
|
+
deu: Papiamento
|
2885
|
+
|
2886
|
+
pau:
|
2887
|
+
terminology: TRUE
|
2888
|
+
bibliography: TRUE
|
2889
|
+
eng: Palauan
|
2890
|
+
fra: palau
|
2891
|
+
deu: Palau-Sprache
|
2892
|
+
|
2893
|
+
peo:
|
2894
|
+
terminology: TRUE
|
2895
|
+
bibliography: TRUE
|
2896
|
+
eng: Persian, Old (ca.600-400 B.C.)
|
2897
|
+
fra: perse, vieux (ca. 600-400 av. J.-C.)
|
2898
|
+
deu: Altpersisch
|
2899
|
+
|
2900
|
+
per :
|
2901
|
+
iso_639_1:
|
2902
|
+
terminology: FALSE
|
2903
|
+
bibliography: TRUE
|
2904
|
+
eng: Persian
|
2905
|
+
fra: persan
|
2906
|
+
deu: Persisch
|
2907
|
+
|
2908
|
+
fas :
|
2909
|
+
iso_639_1: fa
|
2910
|
+
terminology: TRUE
|
2911
|
+
bibliography: FALSE
|
2912
|
+
eng: Persian
|
2913
|
+
fra: persan
|
2914
|
+
deu: Persisch
|
2915
|
+
|
2916
|
+
phi:
|
2917
|
+
terminology: TRUE
|
2918
|
+
bibliography: TRUE
|
2919
|
+
eng: Philippine languages
|
2920
|
+
fra: philippines, langues
|
2921
|
+
deu: Philippinisch-Austronesisch (Andere)
|
2922
|
+
|
2923
|
+
phn:
|
2924
|
+
terminology: TRUE
|
2925
|
+
bibliography: TRUE
|
2926
|
+
eng: Phoenician
|
2927
|
+
fra: phénicien
|
2928
|
+
deu: Phönikisch
|
2929
|
+
|
2930
|
+
pli:
|
2931
|
+
iso_639_1: pi
|
2932
|
+
terminology: TRUE
|
2933
|
+
bibliography: TRUE
|
2934
|
+
eng: Pali
|
2935
|
+
fra: pali
|
2936
|
+
deu: Pali
|
2937
|
+
|
2938
|
+
pol:
|
2939
|
+
iso_639_1: pl
|
2940
|
+
terminology: TRUE
|
2941
|
+
bibliography: TRUE
|
2942
|
+
eng: Polish
|
2943
|
+
fra: polonais
|
2944
|
+
deu: Polnisch
|
2945
|
+
|
2946
|
+
pon:
|
2947
|
+
terminology: TRUE
|
2948
|
+
bibliography: TRUE
|
2949
|
+
eng: Pohnpeian
|
2950
|
+
fra: pohnpei
|
2951
|
+
deu: Ponapeanisch
|
2952
|
+
|
2953
|
+
por:
|
2954
|
+
iso_639_1: pt
|
2955
|
+
terminology: TRUE
|
2956
|
+
bibliography: TRUE
|
2957
|
+
eng: Portuguese
|
2958
|
+
fra: portugais
|
2959
|
+
deu: Portugiesisch
|
2960
|
+
|
2961
|
+
pra:
|
2962
|
+
terminology: TRUE
|
2963
|
+
bibliography: TRUE
|
2964
|
+
eng: Prakrit languages
|
2965
|
+
fra: prâkrit, langues
|
2966
|
+
deu: Prakrit
|
2967
|
+
|
2968
|
+
pro:
|
2969
|
+
terminology: TRUE
|
2970
|
+
bibliography: TRUE
|
2971
|
+
eng: Provençal, Old (to 1500);Occitan, Old (to 1500)
|
2972
|
+
fra: provençal ancien (jusqu'à 1500); occitan ancien (jusqu'à 1500)
|
2973
|
+
deu: Altokzitanisch
|
2974
|
+
|
2975
|
+
pus:
|
2976
|
+
iso_639_1: ps
|
2977
|
+
terminology: TRUE
|
2978
|
+
bibliography: TRUE
|
2979
|
+
eng: Pushto; Pashto
|
2980
|
+
fra: pachto
|
2981
|
+
deu: Paschtu
|
2982
|
+
|
2983
|
+
qaa-qtz:
|
2984
|
+
terminology: TRUE
|
2985
|
+
bibliography: TRUE
|
2986
|
+
eng: Reserved for local use
|
2987
|
+
fra: réservée à l'usage local
|
2988
|
+
deu: Reserviert für lokale Verwendung
|
2989
|
+
|
2990
|
+
que:
|
2991
|
+
iso_639_1: qu
|
2992
|
+
terminology: TRUE
|
2993
|
+
bibliography: TRUE
|
2994
|
+
eng: Quechua
|
2995
|
+
fra: quechua
|
2996
|
+
deu: Quechua-Sprache
|
2997
|
+
|
2998
|
+
raj:
|
2999
|
+
terminology: TRUE
|
3000
|
+
bibliography: TRUE
|
3001
|
+
eng: Rajasthani
|
3002
|
+
fra: rajasthani
|
3003
|
+
deu: Rajasthani
|
3004
|
+
|
3005
|
+
rap:
|
3006
|
+
terminology: TRUE
|
3007
|
+
bibliography: TRUE
|
3008
|
+
eng: Rapanui
|
3009
|
+
fra: rapanui
|
3010
|
+
deu: Osterinsel-Sprache
|
3011
|
+
|
3012
|
+
rar:
|
3013
|
+
terminology: TRUE
|
3014
|
+
bibliography: TRUE
|
3015
|
+
eng: Rarotongan; Cook Islands Maori
|
3016
|
+
fra: rarotonga; maori des îles Cook
|
3017
|
+
deu: Rarotonganisch
|
3018
|
+
|
3019
|
+
roa:
|
3020
|
+
terminology: TRUE
|
3021
|
+
bibliography: TRUE
|
3022
|
+
eng: Romance languages
|
3023
|
+
fra: romanes, langues
|
3024
|
+
deu: Romanische Sprachen (Andere)
|
3025
|
+
|
3026
|
+
roh:
|
3027
|
+
iso_639_1: rm
|
3028
|
+
terminology: TRUE
|
3029
|
+
bibliography: TRUE
|
3030
|
+
eng: Romansh
|
3031
|
+
fra: romanche
|
3032
|
+
deu: Rätoromanisch
|
3033
|
+
|
3034
|
+
rom:
|
3035
|
+
terminology: TRUE
|
3036
|
+
bibliography: TRUE
|
3037
|
+
eng: Romany
|
3038
|
+
fra: tsigane
|
3039
|
+
deu: Romani (Sprache)
|
3040
|
+
|
3041
|
+
rum :
|
3042
|
+
iso_639_1:
|
3043
|
+
terminology: FALSE
|
3044
|
+
bibliography: TRUE
|
3045
|
+
eng: Romanian; Moldavian; Moldovan
|
3046
|
+
fra: roumain; moldave
|
3047
|
+
deu: Rumänisch
|
3048
|
+
|
3049
|
+
ron :
|
3050
|
+
iso_639_1: ro
|
3051
|
+
terminology: TRUE
|
3052
|
+
bibliography: FALSE
|
3053
|
+
eng: Romanian; Moldavian; Moldovan
|
3054
|
+
fra: roumain; moldave
|
3055
|
+
deu: Rumänisch
|
3056
|
+
|
3057
|
+
rum :
|
3058
|
+
iso_639_1:
|
3059
|
+
terminology: FALSE
|
3060
|
+
bibliography: TRUE
|
3061
|
+
eng: Romanian; Moldavian; Moldovan
|
3062
|
+
fra: roumain; moldave
|
3063
|
+
deu: Rumänisch
|
3064
|
+
|
3065
|
+
ron :
|
3066
|
+
iso_639_1: ro
|
3067
|
+
terminology: TRUE
|
3068
|
+
bibliography: FALSE
|
3069
|
+
eng: Romanian; Moldavian; Moldovan
|
3070
|
+
fra: roumain; moldave
|
3071
|
+
deu: Rumänisch
|
3072
|
+
|
3073
|
+
run:
|
3074
|
+
iso_639_1: rn
|
3075
|
+
terminology: TRUE
|
3076
|
+
bibliography: TRUE
|
3077
|
+
eng: Rundi
|
3078
|
+
fra: rundi
|
3079
|
+
deu: Rundi-Sprache
|
3080
|
+
|
3081
|
+
rup:
|
3082
|
+
terminology: TRUE
|
3083
|
+
bibliography: TRUE
|
3084
|
+
eng: Aromanian; Arumanian; Macedo-Romanian
|
3085
|
+
fra: aroumain; macédo-roumain
|
3086
|
+
deu: Aromunisch
|
3087
|
+
|
3088
|
+
rus:
|
3089
|
+
iso_639_1: ru
|
3090
|
+
terminology: TRUE
|
3091
|
+
bibliography: TRUE
|
3092
|
+
eng: Russian
|
3093
|
+
fra: russe
|
3094
|
+
deu: Russisch
|
3095
|
+
|
3096
|
+
sad:
|
3097
|
+
terminology: TRUE
|
3098
|
+
bibliography: TRUE
|
3099
|
+
eng: Sandawe
|
3100
|
+
fra: sandawe
|
3101
|
+
deu: Sandawe-Sprache
|
3102
|
+
|
3103
|
+
sag:
|
3104
|
+
iso_639_1: sg
|
3105
|
+
terminology: TRUE
|
3106
|
+
bibliography: TRUE
|
3107
|
+
eng: Sango
|
3108
|
+
fra: sango
|
3109
|
+
deu: Sango-Sprache
|
3110
|
+
|
3111
|
+
sah:
|
3112
|
+
terminology: TRUE
|
3113
|
+
bibliography: TRUE
|
3114
|
+
eng: Yakut
|
3115
|
+
fra: iakoute
|
3116
|
+
deu: Jakutisch
|
3117
|
+
|
3118
|
+
sai:
|
3119
|
+
terminology: TRUE
|
3120
|
+
bibliography: TRUE
|
3121
|
+
eng: South American Indian languages
|
3122
|
+
fra: sud-amérindiennes, langues
|
3123
|
+
deu: Indianersprachen, Südamerika (Andere)
|
3124
|
+
|
3125
|
+
sal:
|
3126
|
+
terminology: TRUE
|
3127
|
+
bibliography: TRUE
|
3128
|
+
eng: Salishan languages
|
3129
|
+
fra: salishennes, langues
|
3130
|
+
deu: Salish-Sprache
|
3131
|
+
|
3132
|
+
sam:
|
3133
|
+
terminology: TRUE
|
3134
|
+
bibliography: TRUE
|
3135
|
+
eng: Samaritan Aramaic
|
3136
|
+
fra: samaritain
|
3137
|
+
deu: Samaritanisch
|
3138
|
+
|
3139
|
+
san:
|
3140
|
+
iso_639_1: sa
|
3141
|
+
terminology: TRUE
|
3142
|
+
bibliography: TRUE
|
3143
|
+
eng: Sanskrit
|
3144
|
+
fra: sanskrit
|
3145
|
+
deu: Sanskrit
|
3146
|
+
|
3147
|
+
sas:
|
3148
|
+
terminology: TRUE
|
3149
|
+
bibliography: TRUE
|
3150
|
+
eng: Sasak
|
3151
|
+
fra: sasak
|
3152
|
+
deu: Sasak
|
3153
|
+
|
3154
|
+
sat:
|
3155
|
+
terminology: TRUE
|
3156
|
+
bibliography: TRUE
|
3157
|
+
eng: Santali
|
3158
|
+
fra: santal
|
3159
|
+
deu: Santali
|
3160
|
+
|
3161
|
+
scn:
|
3162
|
+
terminology: TRUE
|
3163
|
+
bibliography: TRUE
|
3164
|
+
eng: Sicilian
|
3165
|
+
fra: sicilien
|
3166
|
+
deu: Sizilianisch
|
3167
|
+
|
3168
|
+
sco:
|
3169
|
+
terminology: TRUE
|
3170
|
+
bibliography: TRUE
|
3171
|
+
eng: Scots
|
3172
|
+
fra: écossais
|
3173
|
+
deu: Schottisch
|
3174
|
+
|
3175
|
+
sel:
|
3176
|
+
terminology: TRUE
|
3177
|
+
bibliography: TRUE
|
3178
|
+
eng: Selkup
|
3179
|
+
fra: selkoupe
|
3180
|
+
deu: Selkupisch
|
3181
|
+
|
3182
|
+
sem:
|
3183
|
+
terminology: TRUE
|
3184
|
+
bibliography: TRUE
|
3185
|
+
eng: Semitic languages
|
3186
|
+
fra: sémitiques, langues
|
3187
|
+
deu: Semitische Sprachen (Andere)
|
3188
|
+
|
3189
|
+
sga:
|
3190
|
+
terminology: TRUE
|
3191
|
+
bibliography: TRUE
|
3192
|
+
eng: Irish, Old (to 900)
|
3193
|
+
fra: irlandais ancien (jusqu'à 900)
|
3194
|
+
deu: Altirisch
|
3195
|
+
|
3196
|
+
sgn:
|
3197
|
+
terminology: TRUE
|
3198
|
+
bibliography: TRUE
|
3199
|
+
eng: Sign Languages
|
3200
|
+
fra: langues des signes
|
3201
|
+
deu: Zeichensprachen
|
3202
|
+
|
3203
|
+
shn:
|
3204
|
+
terminology: TRUE
|
3205
|
+
bibliography: TRUE
|
3206
|
+
eng: Shan
|
3207
|
+
fra: chan
|
3208
|
+
deu: Schan-Sprache
|
3209
|
+
|
3210
|
+
sid:
|
3211
|
+
terminology: TRUE
|
3212
|
+
bibliography: TRUE
|
3213
|
+
eng: Sidamo
|
3214
|
+
fra: sidamo
|
3215
|
+
deu: Sidamo-Sprache
|
3216
|
+
|
3217
|
+
sin:
|
3218
|
+
iso_639_1: si
|
3219
|
+
terminology: TRUE
|
3220
|
+
bibliography: TRUE
|
3221
|
+
eng: Sinhala; Sinhalese
|
3222
|
+
fra: singhalais
|
3223
|
+
deu: Singhalesisch
|
3224
|
+
|
3225
|
+
sio:
|
3226
|
+
terminology: TRUE
|
3227
|
+
bibliography: TRUE
|
3228
|
+
eng: Siouan languages
|
3229
|
+
fra: sioux, langues
|
3230
|
+
deu: Sioux-Sprachen (Andere)
|
3231
|
+
|
3232
|
+
sit:
|
3233
|
+
terminology: TRUE
|
3234
|
+
bibliography: TRUE
|
3235
|
+
eng: Sino-Tibetan languages
|
3236
|
+
fra: sino-tibétaines, langues
|
3237
|
+
deu: Sinotibetische Sprachen (Andere)
|
3238
|
+
|
3239
|
+
sla:
|
3240
|
+
terminology: TRUE
|
3241
|
+
bibliography: TRUE
|
3242
|
+
eng: Slavic languages
|
3243
|
+
fra: slaves, langues
|
3244
|
+
deu: Slawische Sprachen (Andere)
|
3245
|
+
|
3246
|
+
slo :
|
3247
|
+
iso_639_1:
|
3248
|
+
terminology: FALSE
|
3249
|
+
bibliography: TRUE
|
3250
|
+
eng: Slovak
|
3251
|
+
fra: slovaque
|
3252
|
+
deu: Slowakisch
|
3253
|
+
|
3254
|
+
slk :
|
3255
|
+
iso_639_1: sk
|
3256
|
+
terminology: TRUE
|
3257
|
+
bibliography: FALSE
|
3258
|
+
eng: Slovak
|
3259
|
+
fra: slovaque
|
3260
|
+
deu: Slowakisch
|
3261
|
+
|
3262
|
+
slo :
|
3263
|
+
iso_639_1:
|
3264
|
+
terminology: FALSE
|
3265
|
+
bibliography: TRUE
|
3266
|
+
eng: Slovak
|
3267
|
+
fra: slovaque
|
3268
|
+
deu: Slowakisch
|
3269
|
+
|
3270
|
+
slk :
|
3271
|
+
iso_639_1: sk
|
3272
|
+
terminology: TRUE
|
3273
|
+
bibliography: FALSE
|
3274
|
+
eng: Slovak
|
3275
|
+
fra: slovaque
|
3276
|
+
deu: Slowakisch
|
3277
|
+
|
3278
|
+
slv:
|
3279
|
+
iso_639_1: sl
|
3280
|
+
terminology: TRUE
|
3281
|
+
bibliography: TRUE
|
3282
|
+
eng: Slovenian
|
3283
|
+
fra: slovène
|
3284
|
+
deu: Slowenisch
|
3285
|
+
|
3286
|
+
sma:
|
3287
|
+
terminology: TRUE
|
3288
|
+
bibliography: TRUE
|
3289
|
+
eng: Southern Sami
|
3290
|
+
fra: sami du Sud
|
3291
|
+
deu: Südsaamisch
|
3292
|
+
|
3293
|
+
sme:
|
3294
|
+
iso_639_1: se
|
3295
|
+
terminology: TRUE
|
3296
|
+
bibliography: TRUE
|
3297
|
+
eng: Northern Sami
|
3298
|
+
fra: sami du Nord
|
3299
|
+
deu: Nordsaamisch
|
3300
|
+
|
3301
|
+
smi:
|
3302
|
+
terminology: TRUE
|
3303
|
+
bibliography: TRUE
|
3304
|
+
eng: Sami languages
|
3305
|
+
fra: sames, langues
|
3306
|
+
deu: Saamisch
|
3307
|
+
|
3308
|
+
smj:
|
3309
|
+
terminology: TRUE
|
3310
|
+
bibliography: TRUE
|
3311
|
+
eng: Lule Sami
|
3312
|
+
fra: sami de Lule
|
3313
|
+
deu: Lulesaamisch
|
3314
|
+
|
3315
|
+
smn:
|
3316
|
+
terminology: TRUE
|
3317
|
+
bibliography: TRUE
|
3318
|
+
eng: Inari Sami
|
3319
|
+
fra: sami d'Inari
|
3320
|
+
deu: Inarisaamisch
|
3321
|
+
|
3322
|
+
smo:
|
3323
|
+
iso_639_1: sm
|
3324
|
+
terminology: TRUE
|
3325
|
+
bibliography: TRUE
|
3326
|
+
eng: Samoan
|
3327
|
+
fra: samoan
|
3328
|
+
deu: Samoanisch
|
3329
|
+
|
3330
|
+
sms:
|
3331
|
+
terminology: TRUE
|
3332
|
+
bibliography: TRUE
|
3333
|
+
eng: Skolt Sami
|
3334
|
+
fra: sami skolt
|
3335
|
+
deu: Skoltsaamisch
|
3336
|
+
|
3337
|
+
sna:
|
3338
|
+
iso_639_1: sn
|
3339
|
+
terminology: TRUE
|
3340
|
+
bibliography: TRUE
|
3341
|
+
eng: Shona
|
3342
|
+
fra: shona
|
3343
|
+
deu: Schona-Sprache
|
3344
|
+
|
3345
|
+
snd:
|
3346
|
+
iso_639_1: sd
|
3347
|
+
terminology: TRUE
|
3348
|
+
bibliography: TRUE
|
3349
|
+
eng: Sindhi
|
3350
|
+
fra: sindhi
|
3351
|
+
deu: Sindhi-Sprache
|
3352
|
+
|
3353
|
+
snk:
|
3354
|
+
terminology: TRUE
|
3355
|
+
bibliography: TRUE
|
3356
|
+
eng: Soninke
|
3357
|
+
fra: soninké
|
3358
|
+
deu: Soninke-Sprache
|
3359
|
+
|
3360
|
+
sog:
|
3361
|
+
terminology: TRUE
|
3362
|
+
bibliography: TRUE
|
3363
|
+
eng: Sogdian
|
3364
|
+
fra: sogdien
|
3365
|
+
deu: Sogdisch
|
3366
|
+
|
3367
|
+
som:
|
3368
|
+
iso_639_1: so
|
3369
|
+
terminology: TRUE
|
3370
|
+
bibliography: TRUE
|
3371
|
+
eng: Somali
|
3372
|
+
fra: somali
|
3373
|
+
deu: Somali
|
3374
|
+
|
3375
|
+
son:
|
3376
|
+
terminology: TRUE
|
3377
|
+
bibliography: TRUE
|
3378
|
+
eng: Songhai languages
|
3379
|
+
fra: songhai, langues
|
3380
|
+
deu: Songhai-Sprache
|
3381
|
+
|
3382
|
+
sot:
|
3383
|
+
iso_639_1: st
|
3384
|
+
terminology: TRUE
|
3385
|
+
bibliography: TRUE
|
3386
|
+
eng: Sotho, Southern
|
3387
|
+
fra: sotho du Sud
|
3388
|
+
deu: Süd-Sotho-Sprache
|
3389
|
+
|
3390
|
+
spa:
|
3391
|
+
iso_639_1: es
|
3392
|
+
terminology: TRUE
|
3393
|
+
bibliography: TRUE
|
3394
|
+
eng: Spanish; Castilian
|
3395
|
+
fra: espagnol; castillan
|
3396
|
+
deu: Spanisch
|
3397
|
+
|
3398
|
+
alb :
|
3399
|
+
iso_639_1:
|
3400
|
+
terminology: FALSE
|
3401
|
+
bibliography: TRUE
|
3402
|
+
eng: Albanian
|
3403
|
+
fra: albanais
|
3404
|
+
deu: Albanisch
|
3405
|
+
|
3406
|
+
sqi :
|
3407
|
+
iso_639_1: sq
|
3408
|
+
terminology: TRUE
|
3409
|
+
bibliography: FALSE
|
3410
|
+
eng: Albanian
|
3411
|
+
fra: albanais
|
3412
|
+
deu: Albanisch
|
3413
|
+
|
3414
|
+
srd:
|
3415
|
+
iso_639_1: sc
|
3416
|
+
terminology: TRUE
|
3417
|
+
bibliography: TRUE
|
3418
|
+
eng: Sardinian
|
3419
|
+
fra: sarde
|
3420
|
+
deu: Sardisch
|
3421
|
+
|
3422
|
+
srn:
|
3423
|
+
terminology: TRUE
|
3424
|
+
bibliography: TRUE
|
3425
|
+
eng: Sranan Tongo
|
3426
|
+
fra: sranan tongo
|
3427
|
+
deu: Sranantongo
|
3428
|
+
|
3429
|
+
srp:
|
3430
|
+
iso_639_1: sr
|
3431
|
+
terminology: TRUE
|
3432
|
+
bibliography: TRUE
|
3433
|
+
eng: Serbian
|
3434
|
+
fra: serbe
|
3435
|
+
deu: Serbisch
|
3436
|
+
|
3437
|
+
srr:
|
3438
|
+
terminology: TRUE
|
3439
|
+
bibliography: TRUE
|
3440
|
+
eng: Serer
|
3441
|
+
fra: sérère
|
3442
|
+
deu: Serer-Sprache
|
3443
|
+
|
3444
|
+
ssa:
|
3445
|
+
terminology: TRUE
|
3446
|
+
bibliography: TRUE
|
3447
|
+
eng: Nilo-Saharan languages
|
3448
|
+
fra: nilo-sahariennes, langues
|
3449
|
+
deu: Nilosaharanische Sprachen (Andere)
|
3450
|
+
|
3451
|
+
ssw:
|
3452
|
+
iso_639_1: ss
|
3453
|
+
terminology: TRUE
|
3454
|
+
bibliography: TRUE
|
3455
|
+
eng: Swati
|
3456
|
+
fra: swati
|
3457
|
+
deu: Swasi-Sprache
|
3458
|
+
|
3459
|
+
suk:
|
3460
|
+
terminology: TRUE
|
3461
|
+
bibliography: TRUE
|
3462
|
+
eng: Sukuma
|
3463
|
+
fra: sukuma
|
3464
|
+
deu: Sukuma-Sprache
|
3465
|
+
|
3466
|
+
sun:
|
3467
|
+
iso_639_1: su
|
3468
|
+
terminology: TRUE
|
3469
|
+
bibliography: TRUE
|
3470
|
+
eng: Sundanese
|
3471
|
+
fra: soundanais
|
3472
|
+
deu: Sundanesisch
|
3473
|
+
|
3474
|
+
sus:
|
3475
|
+
terminology: TRUE
|
3476
|
+
bibliography: TRUE
|
3477
|
+
eng: Susu
|
3478
|
+
fra: soussou
|
3479
|
+
deu: Susu
|
3480
|
+
|
3481
|
+
sux:
|
3482
|
+
terminology: TRUE
|
3483
|
+
bibliography: TRUE
|
3484
|
+
eng: Sumerian
|
3485
|
+
fra: sumérien
|
3486
|
+
deu: Sumerisch
|
3487
|
+
|
3488
|
+
swa:
|
3489
|
+
iso_639_1: sw
|
3490
|
+
terminology: TRUE
|
3491
|
+
bibliography: TRUE
|
3492
|
+
eng: Swahili
|
3493
|
+
fra: swahili
|
3494
|
+
deu: Swahili
|
3495
|
+
|
3496
|
+
swe:
|
3497
|
+
iso_639_1: sv
|
3498
|
+
terminology: TRUE
|
3499
|
+
bibliography: TRUE
|
3500
|
+
eng: Swedish
|
3501
|
+
fra: suédois
|
3502
|
+
deu: Schwedisch
|
3503
|
+
|
3504
|
+
syc:
|
3505
|
+
terminology: TRUE
|
3506
|
+
bibliography: TRUE
|
3507
|
+
eng: Classical Syriac
|
3508
|
+
fra: syriaque classique
|
3509
|
+
deu: Syrisch
|
3510
|
+
|
3511
|
+
syr:
|
3512
|
+
terminology: TRUE
|
3513
|
+
bibliography: TRUE
|
3514
|
+
eng: Syriac
|
3515
|
+
fra: syriaque
|
3516
|
+
deu: Neuostaramäisch
|
3517
|
+
|
3518
|
+
tah:
|
3519
|
+
iso_639_1: ty
|
3520
|
+
terminology: TRUE
|
3521
|
+
bibliography: TRUE
|
3522
|
+
eng: Tahitian
|
3523
|
+
fra: tahitien
|
3524
|
+
deu: Tahitisch
|
3525
|
+
|
3526
|
+
tai:
|
3527
|
+
terminology: TRUE
|
3528
|
+
bibliography: TRUE
|
3529
|
+
eng: Tai languages
|
3530
|
+
fra: tai, langues
|
3531
|
+
deu: Thaisprachen (Andere)
|
3532
|
+
|
3533
|
+
tam:
|
3534
|
+
iso_639_1: ta
|
3535
|
+
terminology: TRUE
|
3536
|
+
bibliography: TRUE
|
3537
|
+
eng: Tamil
|
3538
|
+
fra: tamoul
|
3539
|
+
deu: Tamil
|
3540
|
+
|
3541
|
+
tat:
|
3542
|
+
iso_639_1: tt
|
3543
|
+
terminology: TRUE
|
3544
|
+
bibliography: TRUE
|
3545
|
+
eng: Tatar
|
3546
|
+
fra: tatar
|
3547
|
+
deu: Tatarisch
|
3548
|
+
|
3549
|
+
tel:
|
3550
|
+
iso_639_1: te
|
3551
|
+
terminology: TRUE
|
3552
|
+
bibliography: TRUE
|
3553
|
+
eng: Telugu
|
3554
|
+
fra: télougou
|
3555
|
+
deu: Telugu-Sprache
|
3556
|
+
|
3557
|
+
tem:
|
3558
|
+
terminology: TRUE
|
3559
|
+
bibliography: TRUE
|
3560
|
+
eng: Timne
|
3561
|
+
fra: temne
|
3562
|
+
deu: Temne-Sprache
|
3563
|
+
|
3564
|
+
ter:
|
3565
|
+
terminology: TRUE
|
3566
|
+
bibliography: TRUE
|
3567
|
+
eng: Tereno
|
3568
|
+
fra: tereno
|
3569
|
+
deu: Tereno-Sprache
|
3570
|
+
|
3571
|
+
tet:
|
3572
|
+
terminology: TRUE
|
3573
|
+
bibliography: TRUE
|
3574
|
+
eng: Tetum
|
3575
|
+
fra: tetum
|
3576
|
+
deu: Tetum-Sprache
|
3577
|
+
|
3578
|
+
tgk:
|
3579
|
+
iso_639_1: tg
|
3580
|
+
terminology: TRUE
|
3581
|
+
bibliography: TRUE
|
3582
|
+
eng: Tajik
|
3583
|
+
fra: tadjik
|
3584
|
+
deu: Tadschikisch
|
3585
|
+
|
3586
|
+
tgl:
|
3587
|
+
iso_639_1: tl
|
3588
|
+
terminology: TRUE
|
3589
|
+
bibliography: TRUE
|
3590
|
+
eng: Tagalog
|
3591
|
+
fra: tagalog
|
3592
|
+
deu: Tagalog
|
3593
|
+
|
3594
|
+
tha:
|
3595
|
+
iso_639_1: th
|
3596
|
+
terminology: TRUE
|
3597
|
+
bibliography: TRUE
|
3598
|
+
eng: Thai
|
3599
|
+
fra: thaï
|
3600
|
+
deu: Thailändisch
|
3601
|
+
|
3602
|
+
tib :
|
3603
|
+
iso_639_1:
|
3604
|
+
terminology: FALSE
|
3605
|
+
bibliography: TRUE
|
3606
|
+
eng: Tibetan
|
3607
|
+
fra: tibétain
|
3608
|
+
deu: Tibetisch
|
3609
|
+
|
3610
|
+
bod :
|
3611
|
+
iso_639_1: bo
|
3612
|
+
terminology: TRUE
|
3613
|
+
bibliography: FALSE
|
3614
|
+
eng: Tibetan
|
3615
|
+
fra: tibétain
|
3616
|
+
deu: Tibetisch
|
3617
|
+
|
3618
|
+
tig:
|
3619
|
+
terminology: TRUE
|
3620
|
+
bibliography: TRUE
|
3621
|
+
eng: Tigre
|
3622
|
+
fra: tigré
|
3623
|
+
deu: Tigre-Sprache
|
3624
|
+
|
3625
|
+
tir:
|
3626
|
+
iso_639_1: ti
|
3627
|
+
terminology: TRUE
|
3628
|
+
bibliography: TRUE
|
3629
|
+
eng: Tigrinya
|
3630
|
+
fra: tigrigna
|
3631
|
+
deu: Tigrinja-Sprache
|
3632
|
+
|
3633
|
+
tiv:
|
3634
|
+
terminology: TRUE
|
3635
|
+
bibliography: TRUE
|
3636
|
+
eng: Tiv
|
3637
|
+
fra: tiv
|
3638
|
+
deu: Tiv-Sprache
|
3639
|
+
|
3640
|
+
tkl:
|
3641
|
+
terminology: TRUE
|
3642
|
+
bibliography: TRUE
|
3643
|
+
eng: Tokelau
|
3644
|
+
fra: tokelau
|
3645
|
+
deu: Tokelauanisch
|
3646
|
+
|
3647
|
+
tlh:
|
3648
|
+
terminology: TRUE
|
3649
|
+
bibliography: TRUE
|
3650
|
+
eng: Klingon; tlhIngan-Hol
|
3651
|
+
fra: klingon
|
3652
|
+
deu: Klingonisch
|
3653
|
+
|
3654
|
+
tli:
|
3655
|
+
terminology: TRUE
|
3656
|
+
bibliography: TRUE
|
3657
|
+
eng: Tlingit
|
3658
|
+
fra: tlingit
|
3659
|
+
deu: Tlingit-Sprache
|
3660
|
+
|
3661
|
+
tmh:
|
3662
|
+
terminology: TRUE
|
3663
|
+
bibliography: TRUE
|
3664
|
+
eng: Tamashek
|
3665
|
+
fra: tamacheq
|
3666
|
+
deu: Tamašeq
|
3667
|
+
|
3668
|
+
tog:
|
3669
|
+
terminology: TRUE
|
3670
|
+
bibliography: TRUE
|
3671
|
+
eng: Tonga (Nyasa)
|
3672
|
+
fra: tonga (Nyasa)
|
3673
|
+
deu: Tonga (Bantusprache, Sambia)
|
3674
|
+
|
3675
|
+
ton:
|
3676
|
+
iso_639_1: to
|
3677
|
+
terminology: TRUE
|
3678
|
+
bibliography: TRUE
|
3679
|
+
eng: Tonga (Tonga Islands)
|
3680
|
+
fra: tongan (Îles Tonga)
|
3681
|
+
deu: Tongaisch
|
3682
|
+
|
3683
|
+
tpi:
|
3684
|
+
terminology: TRUE
|
3685
|
+
bibliography: TRUE
|
3686
|
+
eng: Tok Pisin
|
3687
|
+
fra: tok pisin
|
3688
|
+
deu: Neumelanesisch
|
3689
|
+
|
3690
|
+
tsi:
|
3691
|
+
terminology: TRUE
|
3692
|
+
bibliography: TRUE
|
3693
|
+
eng: Tsimshian
|
3694
|
+
fra: tsimshian
|
3695
|
+
deu: Tsimshian-Sprache
|
3696
|
+
|
3697
|
+
tsn:
|
3698
|
+
iso_639_1: tn
|
3699
|
+
terminology: TRUE
|
3700
|
+
bibliography: TRUE
|
3701
|
+
eng: Tswana
|
3702
|
+
fra: tswana
|
3703
|
+
deu: Tswana-Sprache
|
3704
|
+
|
3705
|
+
tso:
|
3706
|
+
iso_639_1: ts
|
3707
|
+
terminology: TRUE
|
3708
|
+
bibliography: TRUE
|
3709
|
+
eng: Tsonga
|
3710
|
+
fra: tsonga
|
3711
|
+
deu: Tsonga-Sprache
|
3712
|
+
|
3713
|
+
tuk:
|
3714
|
+
iso_639_1: tk
|
3715
|
+
terminology: TRUE
|
3716
|
+
bibliography: TRUE
|
3717
|
+
eng: Turkmen
|
3718
|
+
fra: turkmène
|
3719
|
+
deu: Turkmenisch
|
3720
|
+
|
3721
|
+
tum:
|
3722
|
+
terminology: TRUE
|
3723
|
+
bibliography: TRUE
|
3724
|
+
eng: Tumbuka
|
3725
|
+
fra: tumbuka
|
3726
|
+
deu: Tumbuka-Sprache
|
3727
|
+
|
3728
|
+
tup:
|
3729
|
+
terminology: TRUE
|
3730
|
+
bibliography: TRUE
|
3731
|
+
eng: Tupi languages
|
3732
|
+
fra: tupi, langues
|
3733
|
+
deu: Tupi-Sprache
|
3734
|
+
|
3735
|
+
tur:
|
3736
|
+
iso_639_1: tr
|
3737
|
+
terminology: TRUE
|
3738
|
+
bibliography: TRUE
|
3739
|
+
eng: Turkish
|
3740
|
+
fra: turc
|
3741
|
+
deu: Türkisch
|
3742
|
+
|
3743
|
+
tut:
|
3744
|
+
terminology: TRUE
|
3745
|
+
bibliography: TRUE
|
3746
|
+
eng: Altaic languages
|
3747
|
+
fra: altaïques, langues
|
3748
|
+
deu: Altaische Sprachen (Andere)
|
3749
|
+
|
3750
|
+
tvl:
|
3751
|
+
terminology: TRUE
|
3752
|
+
bibliography: TRUE
|
3753
|
+
eng: Tuvalu
|
3754
|
+
fra: tuvalu
|
3755
|
+
deu: Elliceanisch
|
3756
|
+
|
3757
|
+
twi:
|
3758
|
+
iso_639_1: tw
|
3759
|
+
terminology: TRUE
|
3760
|
+
bibliography: TRUE
|
3761
|
+
eng: Twi
|
3762
|
+
fra: twi
|
3763
|
+
deu: Twi-Sprache
|
3764
|
+
|
3765
|
+
tyv:
|
3766
|
+
terminology: TRUE
|
3767
|
+
bibliography: TRUE
|
3768
|
+
eng: Tuvinian
|
3769
|
+
fra: touva
|
3770
|
+
deu: Tuwinisch
|
3771
|
+
|
3772
|
+
udm:
|
3773
|
+
terminology: TRUE
|
3774
|
+
bibliography: TRUE
|
3775
|
+
eng: Udmurt
|
3776
|
+
fra: oudmourte
|
3777
|
+
deu: Udmurtisch
|
3778
|
+
|
3779
|
+
uga:
|
3780
|
+
terminology: TRUE
|
3781
|
+
bibliography: TRUE
|
3782
|
+
eng: Ugaritic
|
3783
|
+
fra: ougaritique
|
3784
|
+
deu: Ugaritisch
|
3785
|
+
|
3786
|
+
uig:
|
3787
|
+
iso_639_1: ug
|
3788
|
+
terminology: TRUE
|
3789
|
+
bibliography: TRUE
|
3790
|
+
eng: Uighur; Uyghur
|
3791
|
+
fra: ouïgour
|
3792
|
+
deu: Uigurisch
|
3793
|
+
|
3794
|
+
ukr:
|
3795
|
+
iso_639_1: uk
|
3796
|
+
terminology: TRUE
|
3797
|
+
bibliography: TRUE
|
3798
|
+
eng: Ukrainian
|
3799
|
+
fra: ukrainien
|
3800
|
+
deu: Ukrainisch
|
3801
|
+
|
3802
|
+
umb:
|
3803
|
+
terminology: TRUE
|
3804
|
+
bibliography: TRUE
|
3805
|
+
eng: Umbundu
|
3806
|
+
fra: umbundu
|
3807
|
+
deu: Mbundu-Sprache
|
3808
|
+
|
3809
|
+
und:
|
3810
|
+
terminology: TRUE
|
3811
|
+
bibliography: TRUE
|
3812
|
+
eng: Undetermined
|
3813
|
+
fra: indéterminée
|
3814
|
+
deu: Nicht zu entscheiden
|
3815
|
+
|
3816
|
+
urd:
|
3817
|
+
iso_639_1: ur
|
3818
|
+
terminology: TRUE
|
3819
|
+
bibliography: TRUE
|
3820
|
+
eng: Urdu
|
3821
|
+
fra: ourdou
|
3822
|
+
deu: Urdu
|
3823
|
+
|
3824
|
+
uzb:
|
3825
|
+
iso_639_1: uz
|
3826
|
+
terminology: TRUE
|
3827
|
+
bibliography: TRUE
|
3828
|
+
eng: Uzbek
|
3829
|
+
fra: ouszbek
|
3830
|
+
deu: Usbekisch
|
3831
|
+
|
3832
|
+
vai:
|
3833
|
+
terminology: TRUE
|
3834
|
+
bibliography: TRUE
|
3835
|
+
eng: Vai
|
3836
|
+
fra: vaï
|
3837
|
+
deu: Vai-Sprache
|
3838
|
+
|
3839
|
+
ven:
|
3840
|
+
iso_639_1: ve
|
3841
|
+
terminology: TRUE
|
3842
|
+
bibliography: TRUE
|
3843
|
+
eng: Venda
|
3844
|
+
fra: venda
|
3845
|
+
deu: Venda-Sprache
|
3846
|
+
|
3847
|
+
vie:
|
3848
|
+
iso_639_1: vi
|
3849
|
+
terminology: TRUE
|
3850
|
+
bibliography: TRUE
|
3851
|
+
eng: Vietnamese
|
3852
|
+
fra: vietnamien
|
3853
|
+
deu: Vietnamesisch
|
3854
|
+
|
3855
|
+
vol:
|
3856
|
+
iso_639_1: vo
|
3857
|
+
terminology: TRUE
|
3858
|
+
bibliography: TRUE
|
3859
|
+
eng: Volapük
|
3860
|
+
fra: volapük
|
3861
|
+
deu: Volapük
|
3862
|
+
|
3863
|
+
vot:
|
3864
|
+
terminology: TRUE
|
3865
|
+
bibliography: TRUE
|
3866
|
+
eng: Votic
|
3867
|
+
fra: vote
|
3868
|
+
deu: Wotisch
|
3869
|
+
|
3870
|
+
wak:
|
3871
|
+
terminology: TRUE
|
3872
|
+
bibliography: TRUE
|
3873
|
+
eng: Wakashan languages
|
3874
|
+
fra: wakashanes, langues
|
3875
|
+
deu: Wakash-Sprachen
|
3876
|
+
|
3877
|
+
wal:
|
3878
|
+
terminology: TRUE
|
3879
|
+
bibliography: TRUE
|
3880
|
+
eng: Wolaitta; Wolaytta
|
3881
|
+
fra: wolaitta; wolaytta
|
3882
|
+
deu: Walamo-Sprache
|
3883
|
+
|
3884
|
+
war:
|
3885
|
+
terminology: TRUE
|
3886
|
+
bibliography: TRUE
|
3887
|
+
eng: Waray
|
3888
|
+
fra: waray
|
3889
|
+
deu: Waray
|
3890
|
+
|
3891
|
+
was:
|
3892
|
+
terminology: TRUE
|
3893
|
+
bibliography: TRUE
|
3894
|
+
eng: Washo
|
3895
|
+
fra: washo
|
3896
|
+
deu: Washo-Sprache
|
3897
|
+
|
3898
|
+
wel :
|
3899
|
+
iso_639_1:
|
3900
|
+
terminology: FALSE
|
3901
|
+
bibliography: TRUE
|
3902
|
+
eng: Welsh
|
3903
|
+
fra: gallois
|
3904
|
+
deu: Kymrisch
|
3905
|
+
|
3906
|
+
cym :
|
3907
|
+
iso_639_1: cy
|
3908
|
+
terminology: TRUE
|
3909
|
+
bibliography: FALSE
|
3910
|
+
eng: Welsh
|
3911
|
+
fra: gallois
|
3912
|
+
deu: Kymrisch
|
3913
|
+
|
3914
|
+
wen:
|
3915
|
+
terminology: TRUE
|
3916
|
+
bibliography: TRUE
|
3917
|
+
eng: Sorbian languages
|
3918
|
+
fra: sorabes, langues
|
3919
|
+
deu: Sorbisch (Andere)
|
3920
|
+
|
3921
|
+
wln:
|
3922
|
+
iso_639_1: wa
|
3923
|
+
terminology: TRUE
|
3924
|
+
bibliography: TRUE
|
3925
|
+
eng: Walloon
|
3926
|
+
fra: wallon
|
3927
|
+
deu: Wallonisch
|
3928
|
+
|
3929
|
+
wol:
|
3930
|
+
iso_639_1: wo
|
3931
|
+
terminology: TRUE
|
3932
|
+
bibliography: TRUE
|
3933
|
+
eng: Wolof
|
3934
|
+
fra: wolof
|
3935
|
+
deu: Wolof-Sprache
|
3936
|
+
|
3937
|
+
xal:
|
3938
|
+
terminology: TRUE
|
3939
|
+
bibliography: TRUE
|
3940
|
+
eng: Kalmyk; Oirat
|
3941
|
+
fra: kalmouk; oïrat
|
3942
|
+
deu: Kalmückisch
|
3943
|
+
|
3944
|
+
xho:
|
3945
|
+
iso_639_1: xh
|
3946
|
+
terminology: TRUE
|
3947
|
+
bibliography: TRUE
|
3948
|
+
eng: Xhosa
|
3949
|
+
fra: xhosa
|
3950
|
+
deu: Xhosa-Sprache
|
3951
|
+
|
3952
|
+
yao:
|
3953
|
+
terminology: TRUE
|
3954
|
+
bibliography: TRUE
|
3955
|
+
eng: Yao
|
3956
|
+
fra: yao
|
3957
|
+
deu: Yao-Sprache (Bantusprache)
|
3958
|
+
|
3959
|
+
yap:
|
3960
|
+
terminology: TRUE
|
3961
|
+
bibliography: TRUE
|
3962
|
+
eng: Yapese
|
3963
|
+
fra: yapois
|
3964
|
+
deu: Yapesisch
|
3965
|
+
|
3966
|
+
yid:
|
3967
|
+
iso_639_1: yi
|
3968
|
+
terminology: TRUE
|
3969
|
+
bibliography: TRUE
|
3970
|
+
eng: Yiddish
|
3971
|
+
fra: yiddish
|
3972
|
+
deu: Jiddisch
|
3973
|
+
|
3974
|
+
yor:
|
3975
|
+
iso_639_1: yo
|
3976
|
+
terminology: TRUE
|
3977
|
+
bibliography: TRUE
|
3978
|
+
eng: Yoruba
|
3979
|
+
fra: yoruba
|
3980
|
+
deu: Yoruba-Sprache
|
3981
|
+
|
3982
|
+
ypk:
|
3983
|
+
terminology: TRUE
|
3984
|
+
bibliography: TRUE
|
3985
|
+
eng: Yupik languages
|
3986
|
+
fra: yupik, langues
|
3987
|
+
deu: Ypik-Sprachen
|
3988
|
+
|
3989
|
+
zap:
|
3990
|
+
terminology: TRUE
|
3991
|
+
bibliography: TRUE
|
3992
|
+
eng: Zapotec
|
3993
|
+
fra: zapotèque
|
3994
|
+
deu: Zapotekisch
|
3995
|
+
|
3996
|
+
zbl:
|
3997
|
+
terminology: TRUE
|
3998
|
+
bibliography: TRUE
|
3999
|
+
eng: Blissymbols; Blissymbolics; Bliss
|
4000
|
+
fra: symboles Bliss; Bliss
|
4001
|
+
deu: Bliss-Symbol
|
4002
|
+
|
4003
|
+
zen:
|
4004
|
+
terminology: TRUE
|
4005
|
+
bibliography: TRUE
|
4006
|
+
eng: Zenaga
|
4007
|
+
fra: zenaga
|
4008
|
+
deu: Zenaga
|
4009
|
+
|
4010
|
+
zgh:
|
4011
|
+
terminology: TRUE
|
4012
|
+
bibliography: TRUE
|
4013
|
+
eng: Standard Moroccan Tamazight
|
4014
|
+
fra: amazighe standard marocain
|
4015
|
+
deu:
|
4016
|
+
|
4017
|
+
zha:
|
4018
|
+
iso_639_1: za
|
4019
|
+
terminology: TRUE
|
4020
|
+
bibliography: TRUE
|
4021
|
+
eng: Zhuang; Chuang
|
4022
|
+
fra: zhuang; chuang
|
4023
|
+
deu: Zhuang
|
4024
|
+
|
4025
|
+
chi :
|
4026
|
+
iso_639_1:
|
4027
|
+
terminology: FALSE
|
4028
|
+
bibliography: TRUE
|
4029
|
+
eng: Chinese
|
4030
|
+
fra: chinois
|
4031
|
+
deu: Chinesisch
|
4032
|
+
|
4033
|
+
zho :
|
4034
|
+
iso_639_1: zh
|
4035
|
+
terminology: TRUE
|
4036
|
+
bibliography: FALSE
|
4037
|
+
eng: Chinese
|
4038
|
+
fra: chinois
|
4039
|
+
deu: Chinesisch
|
4040
|
+
|
4041
|
+
znd:
|
4042
|
+
terminology: TRUE
|
4043
|
+
bibliography: TRUE
|
4044
|
+
eng: Zande languages
|
4045
|
+
fra: zandé, langues
|
4046
|
+
deu: Zande-Sprachen
|
4047
|
+
|
4048
|
+
zul:
|
4049
|
+
iso_639_1: zu
|
4050
|
+
terminology: TRUE
|
4051
|
+
bibliography: TRUE
|
4052
|
+
eng: Zulu
|
4053
|
+
fra: zoulou
|
4054
|
+
deu: Zulu-Sprache
|
4055
|
+
|
4056
|
+
zun:
|
4057
|
+
terminology: TRUE
|
4058
|
+
bibliography: TRUE
|
4059
|
+
eng: Zuni
|
4060
|
+
fra: zuni
|
4061
|
+
deu: Zuñi-Sprache
|
4062
|
+
|
4063
|
+
zxx:
|
4064
|
+
terminology: TRUE
|
4065
|
+
bibliography: TRUE
|
4066
|
+
eng: No linguistic content; Not applicable
|
4067
|
+
fra: pas de contenu linguistique; non applicable
|
4068
|
+
deu: Kein linguistischer Inhalt
|
4069
|
+
|
4070
|
+
zza:
|
4071
|
+
terminology: TRUE
|
4072
|
+
bibliography: TRUE
|
4073
|
+
eng: Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki
|
4074
|
+
fra: zaza; dimili; dimli; kirdki; kirmanjki; zazaki
|
4075
|
+
deu: Zazaki
|