Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mumble/Translations.h')
-rw-r--r--src/mumble/Translations.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/mumble/Translations.h b/src/mumble/Translations.h
new file mode 100644
index 000000000..4e472e635
--- /dev/null
+++ b/src/mumble/Translations.h
@@ -0,0 +1,26 @@
+// Copyright 2021 The Mumble Developers. All rights reserved.
+// Use of this source code is governed by a BSD-style license
+// that can be found in the LICENSE file at the root of the
+// Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
+#ifndef MUMBLE_MUMBLE_TRANSLATIONS_H_
+#define MUMBLE_MUMBLE_TRANSLATIONS_H_
+
+#include <QStringList>
+
+class QApplication;
+class QLocale;
+
+namespace Mumble {
+namespace Translations {
+
+ QStringList getDefaultTranslationDirectories();
+
+ QStringList getTranslationDirectories(const QApplication &app, const QStringList &extraDirectories);
+
+ void installTranslators(const QLocale &locale, QApplication &app, const QStringList &extraDirectories);
+
+}; // namespace Translations
+}; // namespace Mumble
+
+#endif // MUMBLE_MUMBLE_TRANSLATIONS_H_