summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2018-10-25 17:03:31 -0400
committerGravatar Lioncash2018-10-25 17:27:30 -0400
commit85285b09b0d3243858badb7c044507f3eb6fcb45 (patch)
treeca81e99806c894f35dbd8ceebaf439933ee76094
parentconfigure_system: Make GetAccountUsername() an internal function (diff)
downloadyuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar.gz
yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.tar.xz
yuzu-85285b09b0d3243858badb7c044507f3eb6fcb45.zip
configure_system: Make the file selector text translatable
This should be localizable, since it's user-facing text.
-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() {
328 const auto username = GetAccountUsername(*profile_manager, *uuid); 328 const auto username = GetAccountUsername(*profile_manager, *uuid);
329 329
330 const auto file = QFileDialog::getOpenFileName(this, tr("Select User Image"), QString(), 330 const auto file = QFileDialog::getOpenFileName(this, tr("Select User Image"), QString(),
331 "JPEG Images (*.jpg *.jpeg)"); 331 tr("JPEG Images (*.jpg *.jpeg)"));
332 332
333 if (file.isEmpty()) 333 if (file.isEmpty())
334 return; 334 return;