diff options
| author | 2018-12-26 20:39:30 -0500 | |
|---|---|---|
| committer | 2018-12-26 20:39:30 -0500 | |
| commit | 17fa0ffff9af466e0cec7bd620c84a73aa3ff98f (patch) | |
| tree | 8d9e537b9dc71e96429463818b67b8da63cb2f87 /src | |
| parent | Merge pull request #1947 from lioncash/init (diff) | |
| parent | configure_per_general: Mark UI strings as translatable in the constructor (diff) | |
| download | yuzu-17fa0ffff9af466e0cec7bd620c84a73aa3ff98f.tar.gz yuzu-17fa0ffff9af466e0cec7bd620c84a73aa3ff98f.tar.xz yuzu-17fa0ffff9af466e0cec7bd620c84a73aa3ff98f.zip | |
Merge pull request #1948 from lioncash/translatable
configure_per_general: Mark UI strings as translatable in the constructor
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/configuration/configure_per_general.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_per_general.cpp b/src/yuzu/configuration/configure_per_general.cpp index 80109b434..5ca493b6d 100644 --- a/src/yuzu/configuration/configure_per_general.cpp +++ b/src/yuzu/configuration/configure_per_general.cpp | |||
| @@ -47,8 +47,8 @@ ConfigurePerGameGeneral::ConfigurePerGameGeneral(QWidget* parent, u64 title_id) | |||
| 47 | tree_view->setContextMenuPolicy(Qt::NoContextMenu); | 47 | tree_view->setContextMenuPolicy(Qt::NoContextMenu); |
| 48 | 48 | ||
| 49 | item_model->insertColumns(0, 2); | 49 | item_model->insertColumns(0, 2); |
| 50 | item_model->setHeaderData(0, Qt::Horizontal, "Patch Name"); | 50 | item_model->setHeaderData(0, Qt::Horizontal, tr("Patch Name")); |
| 51 | item_model->setHeaderData(1, Qt::Horizontal, "Version"); | 51 | item_model->setHeaderData(1, Qt::Horizontal, tr("Version")); |
| 52 | 52 | ||
| 53 | // We must register all custom types with the Qt Automoc system so that we are able to use it | 53 | // We must register all custom types with the Qt Automoc system so that we are able to use it |
| 54 | // with signals/slots. In this case, QList falls under the umbrells of custom types. | 54 | // with signals/slots. In this case, QList falls under the umbrells of custom types. |