[Card] Restore displaced namespace doc in card_localization.h

This commit is contained in:
Lukas Brübach 2026-09-20 23:55:33 +02:00
parent ad8ebde2a1
commit 2191ce9c75

View file

@ -4,6 +4,16 @@
#include <QString> #include <QString>
#include <QStringList> #include <QStringList>
/**
* @brief The card languages card search should run against.
*/
enum class SearchLanguageMode
{
English, ///< Only search the English card names and texts.
Selected, ///< Search the selected card language (untranslated cards still match in English).
Both ///< Search both the English and the selected card language names and texts.
};
/** /**
* @namespace CardLocalization * @namespace CardLocalization
* @ingroup Cards * @ingroup Cards
@ -15,16 +25,6 @@
* imports the selected language's card data) and the client settings UI (which * imports the selected language's card data) and the client settings UI (which
* offers the language choice). * offers the language choice).
*/ */
/**
* @brief The card languages card search should run against.
*/
enum class SearchLanguageMode
{
English, ///< Only search the English card names and texts.
Selected, ///< Search the selected card language (untranslated cards still match in English).
Both ///< Search both the English and the selected card language names and texts.
};
namespace CardLocalization namespace CardLocalization
{ {
/** /**