8000 GitHub - mykeels/igbo-flashcards: Simple app for learning the Igbo language
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mykeels/igbo-flashcards

Repository files navigation

Igbo Flashcards

This codebase is a simple flashcard app for learning Igbo. It's built with React, Vite, and Tailwind CSS.

Word list

The words are inspired by the Swadesh list, and our word->translation list is maintained in this Google Sheet.

Audio

The audio is generated using this script, which uses

  • the macos say command to generate the audio for english words.
  • this spitch.app api to generate the audio for igbo words and phrases.
  • the ffmpeg command to convert the audio to mp3.

Note

There is a bit of noise at the end of the audio files that sometimes sounds like "gbu". It's not deliberate, and I am discussing with the folks at spitch.app to see if they can fix it.

Giving feedback

Feedback on words, examples and translations at https://mykeels.github.io/igbo-flashcards

Did you find an incorrect translation, perhaps? Or a missing example?

Please let me know.

Using the template

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default tseslint.config({
  languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
  },
})
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked
  • Optionally add ...tseslint.configs.stylisticTypeChecked
  • Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'

export default tseslint.config({
  // Set the react version
  settings: { react: { version: '18.3' } },
  plugins: {
    // Add the react plugin
    react,
  },
  rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs['jsx-runtime'].rules,
  },
})

About

Simple app for learning the Igbo language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0