Skip to content

Commit 22a050e

Browse files
authored
feat(locales.pl): add pl translation for gender and binary gender (#1162)
1 parent ca7cde5 commit 22a050e

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

src/locales/pl/name/binary_gender.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default ['Kobieta', 'Mężczyzna'];

src/locales/pl/name/gender.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
export default [
2+
'Genderqueer',
3+
'Hermafrodyta',
4+
'Inna',
5+
'Kobieta cis',
6+
'Kobieta cispłciowa',
7+
'Kobieta interpłciowa',
8+
'Kobieta trans',
9+
'Kobieta',
10+
'Meżczyzna trans',
11+
'Mężczyzna cis',
12+
'Mężczyzna cispłciowy',
13+
'Mężczyzna interpłciowy',
14+
'Mężczyzna',
15+
'Osoba agender',
16+
'Osoba bigender',
17+
'Osoba gender fluid',
18+
'Osoba interpłciowa',
19+
'Osoba niebinarna',
20+
'Osoba pangender',
21+
'Osoba polygender',
22+
'Osoba trans',
23+
'Transkobieta',
24+
'Transsekualista',
25+
'Transmężczyzna',
26+
];

src/locales/pl/name/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,21 @@
33
* Run 'pnpm run generate:locales' to update.
44
*/
55
import type { NameDefinitions } from '../../..';
6+
import binary_gender from './binary_gender';
67
import female_first_name from './female_first_name';
78
import first_name from './first_name';
9+
import gender from './gender';
810
import last_name from './last_name';
911
import male_first_name from './male_first_name';
1012
import name_ from './name';
1113
import prefix from './prefix';
1214
import title from './title';
1315

1416
const name: NameDefinitions = {
17+
binary_gender,
1518
female_first_name,
1619
first_name,
20+
gender,
1721
last_name,
1822
male_first_name,
1923
name: name_,

0 commit comments

Comments
 (0)