Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9186 from JosJuice/rtl-pot
DolphinQt: Move QT_LAYOUT_DIRECTION string to qt-strings.pot
  • Loading branch information
lioncash committed Oct 23, 2020
2 parents 64f7a44 + 7841fb7 commit c42b80a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
10 changes: 9 additions & 1 deletion Languages/po/qt-strings.pot
@@ -1,8 +1,16 @@
# This file contains strings which are defined in Qt's source code
# and may be shown in applications which use Qt. Extracted from Qt 5.15.1.
# and may be accessed in applications which use Qt. Extracted from Qt 5.15.1.
msgid ""
msgstr ""

#: qtbase/src/gui/kernel/qguiapplication.cpp:234
msgctxt ""
"Translate this string to the string 'LTR' in left-to-right languages or to "
"'RTL' in right-to-left languages (such as Hebrew and Arabic) to get proper "
"widget layout."
msgid "QT_LAYOUT_DIRECTION"
msgstr ""

#: qtbase/src/gui/kernel/qplatformtheme.cpp:708
msgid "OK"
msgstr ""
Expand Down
11 changes: 0 additions & 11 deletions Source/Core/DolphinQt/Translation.cpp
Expand Up @@ -302,17 +302,6 @@ static bool TryInstallTranslator(const QString& exact_language_code)

void Translation::Initialize()
{
// Let the translation select the GUI directionality. This is intentionally excluded
// from compilation, since all that matters is that xgettext sees it. We could use
// QT_TRANSLATE_NOOP3 instead of tr, but that doesn't compile correctly when put
// on a line of its own, so we would need to exclude it from compilation anyway.
#if 0
QGuiApplication::tr(
"QT_LAYOUT_DIRECTION",
"Translate this string to the string 'LTR' in left-to-right languages or to 'RTL' in "
"right-to-left languages (such as Hebrew and Arabic) to get proper widget layout.");
#endif

// Hook up Dolphin internal translation
Common::RegisterStringTranslator(
[](const char* text) { return QObject::tr(text).toStdString(); });
Expand Down

0 comments on commit c42b80a

Please sign in to comment.