6 """ |
6 """ |
7 Module implementing a class used to display the translations part of the project. |
7 Module implementing a class used to display the translations part of the project. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 import sys |
|
12 import shutil |
11 import shutil |
13 import fnmatch |
12 import fnmatch |
14 |
13 |
15 from PyQt4.QtCore import * |
14 from PyQt4.QtCore import * |
16 from PyQt4.QtGui import * |
15 from PyQt4.QtGui import * |
17 |
|
18 from E5Gui.E5Application import e5App |
|
19 |
16 |
20 from .ProjectBrowserModel import ProjectBrowserFileItem, \ |
17 from .ProjectBrowserModel import ProjectBrowserFileItem, \ |
21 ProjectBrowserSimpleDirectoryItem, ProjectBrowserDirectoryItem, \ |
18 ProjectBrowserSimpleDirectoryItem, ProjectBrowserDirectoryItem, \ |
22 ProjectBrowserTranslationType |
19 ProjectBrowserTranslationType |
23 from .ProjectBaseBrowser import ProjectBaseBrowser |
20 from .ProjectBaseBrowser import ProjectBaseBrowser |
24 |
21 |
25 from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog |
22 from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog |
26 import UI.PixmapCache |
|
27 |
23 |
28 import Preferences |
24 import Preferences |
29 import Utilities |
25 import Utilities |
30 |
26 |
31 class ProjectTranslationsBrowser(ProjectBaseBrowser): |
27 class ProjectTranslationsBrowser(ProjectBaseBrowser): |