summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-25 17:03:31 -0400
committerLioncash <mathew1800@gmail.com>2018-10-25 17:27:30 -0400
commit85285b09b0d3243858badb7c044507f3eb6fcb45 (patch)
treeca81e99806c894f35dbd8ceebaf439933ee76094 /src
parent5172354e29fed02cbceee8d55564d32ca361d58f (diff)
configure_system: Make the file selector text translatable
This should be localizable, since it's user-facing text.
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/configuration/configure_system.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp
index a9bd5465d..20ffb0a9a 100644
--- a/src/yuzu/configuration/configure_system.cpp
+++ b/src/yuzu/configuration/configure_system.cpp
@@ -328,7 +328,7 @@ void ConfigureSystem::SetUserImage() {
const auto username = GetAccountUsername(*profile_manager, *uuid);
const auto file = QFileDialog::getOpenFileName(this, tr("Select User Image"), QString(),
- "JPEG Images (*.jpg *.jpeg)");
+ tr("JPEG Images (*.jpg *.jpeg)"));
if (file.isEmpty())
return;