Skip to content

Commit

Permalink
Challenges localization
Browse files Browse the repository at this point in the history
  • Loading branch information
Karasiq committed Oct 26, 2020
1 parent b0c5d7f commit 7b3863c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class SCFrontend()(implicit val context: AppContext) {
NavigationTab(context.locale.foldersView, "folders", AppIcons.foldersView, renderFoldersPanel()),
NavigationTab(context.locale.regionsView, "regions", AppIcons.regionsView, renderRegionsPanel()),
NavigationTab(context.locale.logs, "logs", AppIcons.logs, LogPanel()),
NavigationTab("Challenges", "challengees", AppIcons.rename, ChallengePanel())
NavigationTab(context.locale.challenges, "challengees", AppIcons.rename, ChallengePanel())
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ trait AppLocale {
def foldersView: String
def regionsView: String
def logs: String
def challenges: String

def storage: String
def storages: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ private[locales] object English extends AppLocale {
val foldersView = "Folders"
val regionsView = "Regions"
val logs = "Logs"
val challenges = "Challenges"

val storage = "Storage"
val storages = "Storages"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ private[locales] object Russian extends AppLocale {
val foldersView = "Папки"
val regionsView = "Регионы"
val logs = "Журнал"
val challenges = "Капча"

val storage = "Хранилище"
val storages = "Хранилища"
Expand Down

0 comments on commit 7b3863c

Please sign in to comment.