23 lines
615 B
Swift
23 lines
615 B
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/**
|
|
Provides the locale logic for Riot app based on mx languages.
|
|
*/
|
|
class LocaleProvider: LocaleProviderType {
|
|
static var locale: Locale? {
|
|
if let localeIdentifier = Bundle.mxk_language() {
|
|
return Locale(identifier: localeIdentifier)
|
|
} else if let fallbackLocaleIdentifier = Bundle.mxk_fallbackLanguage() {
|
|
return Locale(identifier: fallbackLocaleIdentifier)
|
|
}
|
|
return nil
|
|
}
|
|
}
|