We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 785a38a commit 5de8874Copy full SHA for 5de8874
1 file changed
src/locales/ja/person/first_name.ts
@@ -1,23 +1,8 @@
1
-export default [
2
- '大翔',
3
- '蓮',
4
- '颯太',
5
- '樹',
6
- '大和',
7
- '陽翔',
8
- '陸斗',
9
- '太一',
10
- '海翔',
11
- '蒼空',
12
- '翼',
13
- '陽菜',
14
- '結愛',
15
- '結衣',
16
- '杏',
17
- '莉子',
18
- '美羽',
19
- '結菜',
20
- '心愛',
21
- '愛菜',
22
- '美咲',
23
-];
+// We don't have a generic first name list for this locale
+// So simply concatenate male and female lists and remove any duplicates
+// This avoids falling back to fallback locale
+import { mergeArrays } from './../../../internal/merge';
+import female_first_name from './female_first_name';
+import male_first_name from './male_first_name';
+
+export default mergeArrays(female_first_name, male_first_name);
0 commit comments