Skip to content

Commit

Permalink
Merge pull request #19 from joaomanaia/new-languages
Browse files Browse the repository at this point in the history
Added spanish and french languages
  • Loading branch information
joaomanaia committed Dec 29, 2022
2 parents dd98079 + 42e6858 commit cf438f9
Show file tree
Hide file tree
Showing 13 changed files with 17,977 additions and 13 deletions.
21 changes: 17 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Do you like to challenge your knowledge? So NewQuiz is the ideal game for you.

## Multi choice quiz:
## Multi choice quiz

- Several categories to choose from.
- Several questions to play.
Expand All @@ -14,12 +14,25 @@ Do you like to challenge your knowledge? So NewQuiz is the ideal game for you.
<img src="pictures/multichoice2.png" alt="Multi choice quiz" width="200"/>
</div>

### Flag Quiz
## Flag Quiz

Guess the country with the image of the flag. With 4 answers to choose.
## Wordle quiz:

Guess the word with several tries. You have daily words you have one new word per day and at most 6 tries or infinite words you have random words and infinite tries.
## Logo Quiz

Guess the logo with the image, with 4 answers to choose.

## Wordle quiz

Guess the word with several tries. You have daily words you have one new word per day and at most 6 tries or infinite words you have random words and infinite tries.

Spanish and French words are from [Words](https://github.com/lorenbrichter/Words).

## Maze

Have you ever thought of having all the game modes in one quiz? Then play the maze and you'll have a completely randomized game with all NewQuiz game modes.

<img src="pictures/maze.png" alt="Wordle game photo 1" width="200"/>

## Material you

Expand Down
3 changes: 0 additions & 3 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
<resources>
<string name="app_name" translatable="false">NewQuiz</string>
<string name="title_translation_dynamic_feature">Translation Feature</string>
<string name="title_online_services">Online Services</string>
<string name="title_dynamicfeature">Module Title</string>
</resources>
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,16 @@ val infiniteWordleSupportedLang = listOf(
languageId = R.string.portuguese,
rawListId = R.raw.wordle_list_pt
),
SettingsWordleLang(
key = "es",
languageId = R.string.spanish,
rawListId = R.raw.wordle_list_es
),
SettingsWordleLang(
key = "fr",
languageId = R.string.french,
rawListId = R.raw.wordle_list_fr
)
)

private fun getInfiniteWordleDefaultLang(): String {
Expand Down
Loading

0 comments on commit cf438f9

Please sign in to comment.