Skip to content

Commit

Permalink
Merge pull request DroidKaigi#997 from fumiyasac/feature/use_current_…
Browse files Browse the repository at this point in the history
…language_supported

[iOS] Fix supported language display according to user's locale settings.
  • Loading branch information
Ryoya Ito authored Aug 29, 2023
2 parents dac37c0 + 33bd383 commit b4d8b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app-ios/Modules/Sources/Session/SessionView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public struct SessionView: View {
InformationRow(
icon: Assets.Icons.language.swiftUIImage,
title: "対応言語",
content: viewModel.timetableItem.language.langOfSpeaker
content: viewModel.timetableItem.getSupportedLangString(isJapaneseLocale: (Locale.current.language.languageCode?.identifier == "ja"))
)
InformationRow(
icon: Assets.Icons.category.swiftUIImage,
Expand Down

0 comments on commit b4d8b4d

Please sign in to comment.