Skip to content
/ Otis Public

Otis is a language learning app I've built for myself that currently focuses on Latin.

Notifications You must be signed in to change notification settings

Sageder/Otis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Otis

Otis is a learning app I've built for myself that currently focuses on Latin, but will be customizable in the future. Among the features are not only flash cards and other vocabulary learning modes, but also explanations of various grammatical constructs used in Latin, as well as the grammar forms themselves. These can also be trained in another learning mode.

Only Latin - German according to the Austrian curriculum (10th - 11th grade) is currently supported.

Setup

To use Otis, you need a Mac with Xcode installed. Follow these steps to get started:

  1. Clone this repository to your local machine.
  2. Open the project in Xcode.
  3. Run the project on your Mac.
  4. Start studying!

Features

  • Mac & iPad & iPhone support
  • Different study modes
    • Flash cards
    • Multiple choice
    • Answer
  • Grammar forms
  • Grammar structures
  • Latin
    • about 800 Latin words with German translations
    • all major grammar forms (e.g. A-Declination, etc.)
    • some key grammar structures
  • Dark mode
  • Expandability (See 👇)

Add a custom language

Additionally, if you want to learn another language you can easily add it:

  1. Go to the folder Model/Data/Courses/ in Xcode
  2. Add a folder YOUR_COURSE
  3. Add these files with this code:
  • YOUR_COURSE_Vocabulary.swift:
func YOUR_COURSE_Vocabulary () -> [VocabularyModel] {
  return [
    // ‼️ Don't delete Random & Saved ‼️
    VocabularyModel(title: "Random", vocabulary: []),
    VocabularyModel(title: "Saved", vocabulary: []),
    // Add new model here
  ]
}
  • YOUR_COURSE_GammarRules.swift:
func YOUR_COURSE_GrammarRules () -> [GrammarRuleModel] {
  return [
    // Add new rules here
  ]
}
  • YOUR_COURSE_GammarForms.swift:
func YOUR_COURSE_GrammarForms () -> [GrammarFormModel] {
  return [
    // Add new forms here
  ]
}

Screenshots

Otis on iPhone

Otis - Mac

Otis - Flash Cards

Otis - Multiple Choice

Otis - Grammar Rules

About

Otis is a language learning app I've built for myself that currently focuses on Latin.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages