diff options
| author | aristote <quentin.aristote@irif.fr> | 2025-12-28 20:35:43 +0100 |
|---|---|---|
| committer | aristote <quentin.aristote@irif.fr> | 2025-12-28 21:06:23 +0100 |
| commit | a1f128e7367ac22f63d32b0a6e6924338917f0d3 (patch) | |
| tree | 9fe91bbb483b43c6133c349d4409d598678b8957 /languages | |
| parent | 74f60a223eb34775ebe74e1b8251b2ee0b8a0797 (diff) | |
languages: re-add japanese and german
Diffstat (limited to 'languages')
| -rw-r--r-- | languages/default.nix | 2 | ||||
| -rw-r--r-- | languages/german.nix | 12 | ||||
| -rw-r--r-- | languages/japanese.nix | 12 |
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"; + }; +} |
