Просмотр исходного кода

configure_system: Make the file selector text translatable

This should be localizable, since it's user-facing text.
Lioncash 7 лет назад
Родитель
Сommit
85285b09b0
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/yuzu/configuration/configure_system.cpp

+ 1 - 1
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;