chore(FileExplorer): added localization to path label
All checks were successful
Check Translations / check-translations (push) Successful in 14s
Code and build check / Check code (push) Successful in 1m32s
Code and build check / Build with uv (push) Successful in 54s

Signed-off-by: Boris Yumankulov <boria138@altlinux.org>
This commit is contained in:
2025-06-28 09:07:32 +05:00
parent f5b1da3548
commit bcfa3cdb89
10 changed files with 41 additions and 158 deletions

View File

@ -322,7 +322,7 @@ class FileExplorer(QDialog):
self.file_list.addItem(item)
self.path_label.setText(f"Path: {self.current_path}")
self.path_label.setText(_("Path: ") + self.current_path)
self.file_list.setCurrentRow(0)
except PermissionError: