Skip to content

Commit

Permalink
Add language code for email
Browse files Browse the repository at this point in the history
  • Loading branch information
tevincent committed Oct 17, 2024
1 parent dc634d8 commit 4f73117
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
*/
package com.infomaniak.multiplatform_swisstransfer.common.models

enum class EmailLanguage(val value: String) {
ENGLISH("english"),
FRENCH("french"),
GERMAN("german"),
ITALIAN("italian"),
SPANISH("spanish"),
enum class EmailLanguage(val value: String, val code: String) {
ENGLISH("english", "en_GB"),
FRENCH("french", "fr_FR"),
GERMAN("german", "de_DE"),
ITALIAN("italian", "it_IT"),
SPANISH("spanish", "es_ES"),
}

0 comments on commit 4f73117

Please sign in to comment.