3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-14 11:15:54 +00:00
2022-04-02 18:24:21 +05:00

31 lines
735 B
C++

/*
SPDX-FileCopyrightText: 2014 Martin Klapetek <mklapetek@kde.org>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#pragma once
#include <QHash>
#include <QLocale>
#include <QObject>
class TimezonesI18n : public QObject
{
Q_OBJECT
public:
explicit TimezonesI18n(QObject *parent = nullptr);
Q_INVOKABLE QString i18nCity(const QString &city);
Q_INVOKABLE QString i18nContinents(const QString &continent);
Q_INVOKABLE QString i18nCountry(QLocale::Country country);
private:
void init();
QHash<QString, QString> m_i18nCities;
QHash<QString, QString> m_i18nContinents;
QHash<QLocale::Country, QString> m_i18nCountries;
bool m_isInitialized;
};