mas_i18n/
lib.rs

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