mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-06 04:49:04 -05:00
* Fixes for the issues that caused builds and unit tests to fail. * Added changelog entry.
17 lines
523 B
C++
17 lines
523 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace utils::language
|
|
{
|
|
auto getCorrectMinutesNumeralForm(std::uint32_t val) -> std::string;
|
|
auto getCorrectSecondsNumeralForm(std::uint32_t val) -> std::string;
|
|
|
|
auto getCorrectMinutesAccusativeForm(std::uint32_t val) -> std::string;
|
|
|
|
auto getCorrectMultiplicityForm(std::uint32_t val) -> std::string;
|
|
} // namespace utils::language
|