You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
735 B
30 lines
735 B
/* |
|
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; |
|
};
|
|
|