summaryrefslogtreecommitdiff
path: root/languages
diff options
context:
space:
mode:
Diffstat (limited to 'languages')
-rw-r--r--languages/default.nix2
-rw-r--r--languages/german.nix12
-rw-r--r--languages/japanese.nix12
3 files changed, 26 insertions, 0 deletions
diff --git a/languages/default.nix b/languages/default.nix
index 8d3c767..7554f29 100644
--- a/languages/default.nix
+++ b/languages/default.nix
@@ -2,4 +2,6 @@
builtins.map (path: make path { }) [
./french.nix
./english.nix
+ ./german.nix
+ ./japanese.nix
]
diff --git a/languages/german.nix b/languages/german.nix
new file mode 100644
index 0000000..d5b64c4
--- /dev/null
+++ b/languages/german.nix
@@ -0,0 +1,12 @@
+{ ... }:
+{
+ name = "German";
+ proficiency = "basic";
+ icon = {
+ codepoints = [
+ "1F1E9"
+ "1F1EA"
+ ];
+ shortcode = "flag-germany";
+ };
+}
diff --git a/languages/japanese.nix b/languages/japanese.nix
new file mode 100644
index 0000000..a1aea61
--- /dev/null
+++ b/languages/japanese.nix
@@ -0,0 +1,12 @@
+{ ... }:
+{
+ name = "Japanese";
+ proficiency = "basic";
+ icon = {
+ codepoints = [
+ "1F1EF"
+ "1F1F5"
+ ];
+ shortcode = "flag-japan";
+ };
+}