Last active
June 18, 2025 14:57
-
-
Save blackspike/363b3376467dbccdd5779699a10f591f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Greek alphabet consonant and vowel pairs for the pairs game | |
export const greekAlphabetPairs = [ | |
// Consonant pairs | |
{ | |
pair: 'μπ', | |
type: 'consonant', | |
equivalent: 'b', | |
example: { | |
greek: 'μπανάνα', | |
english: 'banana' | |
} | |
}, | |
{ | |
pair: 'ντ', | |
type: 'consonant', | |
equivalent: 'd', | |
example: { | |
greek: 'ντομάτα', | |
english: 'tomato' | |
} | |
}, | |
{ | |
pair: 'γκ', | |
type: 'consonant', | |
equivalent: 'g', | |
example: { | |
greek: 'γκολ', | |
english: 'goal' | |
} | |
}, | |
{ | |
pair: 'γγ', | |
type: 'consonant', | |
equivalent: 'ng', | |
example: { | |
greek: 'άγγελος', | |
english: 'angel' | |
} | |
}, | |
{ | |
pair: 'τσ', | |
type: 'consonant', | |
equivalent: 'ts', | |
example: { | |
greek: 'τσάι', | |
english: 'tea' | |
} | |
}, | |
{ | |
pair: 'τζ', | |
type: 'consonant', | |
equivalent: 'dz', | |
example: { | |
greek: 'τζάμι', | |
english: 'windowpane' | |
} | |
}, | |
// Vowel pairs | |
{ | |
pair: 'αι', | |
type: 'vowel', | |
equivalent: 'e', | |
example: { | |
greek: 'και', | |
english: 'and' | |
} | |
}, | |
{ | |
pair: 'ει', | |
type: 'vowel', | |
equivalent: 'i', | |
example: { | |
greek: 'είναι', | |
english: 'is' | |
} | |
}, | |
{ | |
pair: 'οι', | |
type: 'vowel', | |
equivalent: 'i', | |
example: { | |
greek: 'οικογένεια', | |
english: 'family' | |
} | |
}, | |
{ | |
pair: 'υι', | |
type: 'vowel', | |
equivalent: 'i', | |
example: { | |
greek: 'υιός', | |
english: 'son' | |
} | |
}, | |
{ | |
pair: 'ου', | |
type: 'vowel', | |
equivalent: 'ou', | |
example: { | |
greek: 'ούτε', | |
english: 'neither' | |
} | |
} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment