1
0
Fork 0
mirror of synced 2024-06-28 19:21:05 +12:00

Update rare/components/tabs/games/game_info/move_game.py

Co-authored-by: multisn8 <contact@multisamplednight.com>
This commit is contained in:
Stelios Tsampas 2023-02-20 11:31:03 +02:00 committed by GitHub
parent cda4668486
commit e748468078
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ class MoveGamePopUp(QWidget):
self.path_edit = PathEdit("", QFileDialog.Directory, edit_func=self.path_edit_callback)
self.path_edit.extend_reasons({
MovePathEditReasons.DST_MISSING: self.tr("You need to provide a directory."),
MovePathEditReasons.DST_MISSING: self.tr("You need to provide the destination directory."),
MovePathEditReasons.NO_WRITE_PERM: self.tr("No write permission on destination."),
MovePathEditReasons.SAME_DIR: self.tr("Same directory or subdirectory selected."),
MovePathEditReasons.DST_IN_SRC: self.tr("Destination is inside source directory"),