Skip to main content

mas_i18n/
lib.rs

1// Copyright 2025, 2026 Element Creations Ltd.
2// Copyright 2024, 2025 New Vector Ltd.
3// Copyright 2023, 2024 The Matrix.org Foundation C.I.C.
4//
5// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
6// Please see LICENSE files in the repository root for full details.
7
8pub mod sprintf;
9pub mod translations;
10mod translator;
11
12pub use icu_datetime;
13pub use icu_locale_core::{ParseError, locale};
14pub use icu_provider::{DataError, DataLocale};
15
16pub use self::{
17    sprintf::{Argument, ArgumentList, Message},
18    translator::{LoadError, Translator},
19};