-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
src/main/java/org/meeuw/i18n/languages/DisplayNames_en.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.meeuw.i18n.languages; | ||
|
||
import java.util.stream.Stream; | ||
|
||
public class DisplayNames_en extends java.util.ListResourceBundle { | ||
@Override | ||
protected Object[][] getContents() { | ||
return Stream.concat( | ||
Stream.of(ISO_639_1_Code.values()), | ||
ISO_639_3_Code.stream()) | ||
.map(i -> new Object[] {i.code(), i.refName()}) | ||
.toArray(i -> new Object[i][2]); | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/main/resources/org/meeuw/i18n/languages/DisplayNames_nl.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
dse=Nederlandse Gebarentaal | ||
vgt=Vlaamse Gebarentaal | ||
ase=Amerikaanse Gebarentaal | ||
bfi=Britse Gebarentaal | ||
csl=Chinese Gebarentaal | ||
gsg=Duitse Gebarentaal | ||
tsm=Turkse Gebarentaal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters