mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 13:44:37 +00:00
[#155 state:fixed] Added dg edition name in results window.
This commit is contained in:
parent
59eaf5305a
commit
417233a47f
@ -19,6 +19,7 @@ http://www.hardcoded.net/licenses/bsd_license
|
|||||||
[self window];
|
[self window];
|
||||||
_app = aParentApp;
|
_app = aParentApp;
|
||||||
_py = [_app py];
|
_py = [_app py];
|
||||||
|
[[self window] setTitle:[_py appName]];
|
||||||
_alwaysShowPopUp = NO;
|
_alwaysShowPopUp = NO;
|
||||||
[self fillPopUpMenu];
|
[self fillPopUpMenu];
|
||||||
_recentDirectories = [[HSRecentFiles alloc] initWithName:@"recentDirectories" menu:[addButtonPopUp menu]];
|
_recentDirectories = [[HSRecentFiles alloc] initWithName:@"recentDirectories" menu:[addButtonPopUp menu]];
|
||||||
|
@ -19,6 +19,7 @@ http://www.hardcoded.net/licenses/bsd_license
|
|||||||
self = [super initWithWindowNibName:@"ResultWindow"];
|
self = [super initWithWindowNibName:@"ResultWindow"];
|
||||||
app = aApp;
|
app = aApp;
|
||||||
py = [app py];
|
py = [app py];
|
||||||
|
[[self window] setTitle:fmt(@"%@ Results", [py appName])];
|
||||||
columnsMenu = [app columnsMenu];
|
columnsMenu = [app columnsMenu];
|
||||||
/* Put a cute iTunes-like bottom bar */
|
/* Put a cute iTunes-like bottom bar */
|
||||||
[[self window] setContentBorderThickness:28 forEdge:NSMinYEdge];
|
[[self window] setContentBorderThickness:28 forEdge:NSMinYEdge];
|
||||||
|
@ -13,7 +13,6 @@ http://www.hardcoded.net/licenses/bsd_license
|
|||||||
- (id)initWithParentApp:(id)aParentApp
|
- (id)initWithParentApp:(id)aParentApp
|
||||||
{
|
{
|
||||||
self = [super initWithParentApp:aParentApp];
|
self = [super initWithParentApp:aParentApp];
|
||||||
[[self window] setTitle:@"dupeGuru Music Edition"];
|
|
||||||
_alwaysShowPopUp = YES;
|
_alwaysShowPopUp = YES;
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,6 @@ http://www.hardcoded.net/licenses/bsd_license
|
|||||||
- (id)initWithParentApp:(id)aParentApp
|
- (id)initWithParentApp:(id)aParentApp
|
||||||
{
|
{
|
||||||
self = [super initWithParentApp:aParentApp];
|
self = [super initWithParentApp:aParentApp];
|
||||||
[[self window] setTitle:@"dupeGuru Picture Edition"];
|
|
||||||
_alwaysShowPopUp = YES;
|
_alwaysShowPopUp = YES;
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
@ -165,7 +165,7 @@ class ResultWindow(QMainWindow):
|
|||||||
self.actionActions.setMenu(actionMenu)
|
self.actionActions.setMenu(actionMenu)
|
||||||
|
|
||||||
def _setupUi(self):
|
def _setupUi(self):
|
||||||
self.setWindowTitle(tr("dupeGuru Results"))
|
self.setWindowTitle(tr("{} Results").format(self.app.NAME))
|
||||||
self.resize(630, 514)
|
self.resize(630, 514)
|
||||||
self.centralwidget = QWidget(self)
|
self.centralwidget = QWidget(self)
|
||||||
self.verticalLayout_2 = QVBoxLayout(self.centralwidget)
|
self.verticalLayout_2 = QVBoxLayout(self.centralwidget)
|
||||||
|
@ -388,8 +388,8 @@
|
|||||||
<translation>Réinitialiser</translation>
|
<translation>Réinitialiser</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>dupeGuru Results</source>
|
<source>{} Results</source>
|
||||||
<translation>dupeGuru (Résultats)</translation>
|
<translation>{} (Résultats)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Delete duplicates</source>
|
<source>Delete duplicates</source>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user