diff --git a/locale/it/config.suml b/locale/it/config.suml index 84da39576..98f94dd1d 100644 --- a/locale/it/config.suml +++ b/locale/it/config.suml @@ -79,12 +79,7 @@ pronouns: emoji: description: 'Pronomi con le emoji' history: '{https://lgbta.wikia.org/wiki/Emojiself_Pronouns=Emojiself} pronouns are intended for online communication and not supposed to be pronounced.' - morphemes: - pronoun_subject: '#' - pronoun_object: '#' - possessive_determiner: 'di''#' - possessive_pronoun: 'di''#' - reflexive: '#stesso' + morphemes: {} examples: ['💫', '💙'] mirror: route: 'specchio' diff --git a/locale/ko/config.suml b/locale/ko/config.suml index 8283dc601..36da0015a 100644 --- a/locale/ko/config.suml +++ b/locale/ko/config.suml @@ -29,11 +29,7 @@ pronouns: description: '이모티콘 자체 대명사' history: '{https://lgbta.wikia.org/wiki/Emojiself_Pronouns=이모티콘 자체 대명사}는 온라인 커뮤니케이션을 위한 것이며 발음해서는 안 됩니다.' morphemes: - pronoun_subject: '#' - pronoun_object: '#' - possessive_determiner: '#것' - possessive_pronoun: '#꺼' - reflexive: '#자기' + pronoun: '#' examples: ['💫', '💙'] others: '기타 대명사' diff --git a/locale/pl/config.suml b/locale/pl/config.suml index ae9fad776..3578a53d4 100644 --- a/locale/pl/config.suml +++ b/locale/pl/config.suml @@ -36,7 +36,6 @@ pronouns: pronoun_l: '#' pronoun_all: '' adjective_n: '#' - adjective_n_alt: '#' adjective_ll: '' adjective_middle: '' verb_end_inter: '#' diff --git a/locale/ro/config.suml b/locale/ro/config.suml index 7b6163568..b53e022dd 100644 --- a/locale/ro/config.suml +++ b/locale/ro/config.suml @@ -75,7 +75,7 @@ pronouns: morphemes: pronoun_n: '#' pronoun_dg: 'lui #' - strenghtening: 'însuși' + strengthening: 'însuși' first_article: 'L-am' second_article: '' examples: ['💫', '💙'] diff --git a/test/locales/config.test.ts b/test/locales/config.test.ts index 3adb37b8c..b17c5f0dc 100644 --- a/test/locales/config.test.ts +++ b/test/locales/config.test.ts @@ -14,4 +14,10 @@ describe.each(allLocales)('config for $code', async ({ code }) => { } expect(morphemes).toEqual(expect.arrayContaining(Object.keys(config.pronouns.null.morphemes))); }); + test('pronouns.null.emoji contain valid morphemes', () => { + if (!config.pronouns.emoji) { + return; + } + expect(morphemes).toEqual(expect.arrayContaining(Object.keys(config.pronouns.emoji.morphemes))); + }); });