Fixed #82.
This commit is contained in:
parent
d67d0b53c6
commit
a8e8a1bf93
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="cs_CZ">
|
||||
<TS version="2.0" language="cs_CZ">
|
||||
<context>
|
||||
<name>Application</name>
|
||||
<message>
|
||||
@ -1808,6 +1808,10 @@ You have to restart manually.</source>
|
||||
|
||||
Musíte restartovat manuálně.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do you want to restart now?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>FormUpdate</name>
|
||||
|
@ -1780,6 +1780,10 @@ Authors of this application are NOT responsible for lost data.</source>
|
||||
You have to restart manually.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do you want to restart now?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>FormUpdate</name>
|
||||
|
@ -1778,6 +1778,10 @@ Authors of this application are NOT responsible for lost data.</source>
|
||||
You have to restart manually.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do you want to restart now?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>FormUpdate</name>
|
||||
|
@ -1796,6 +1796,10 @@ Les auteurs de cette application NE sont PAS responsable de la perte de données
|
||||
You have to restart manually.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do you want to restart now?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>FormUpdate</name>
|
||||
|
@ -1780,6 +1780,10 @@ Authors of this application are NOT responsible for lost data.</source>
|
||||
You have to restart manually.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do you want to restart now?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>FormUpdate</name>
|
||||
|
@ -1800,6 +1800,10 @@ You have to restart manually.</source>
|
||||
|
||||
Je moet handmatig herstarten.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do you want to restart now?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>FormUpdate</name>
|
||||
|
@ -1805,6 +1805,10 @@ You have to restart manually.</source>
|
||||
|
||||
Du måste starta om manuellt.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Do you want to restart now?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>FormUpdate</name>
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
Fixed:
|
||||
<ul>
|
||||
<li>Fixed #76, #75.</li>
|
||||
<li>Fixed #76, #75, #82.</li>
|
||||
</ul>
|
||||
|
||||
Added:
|
||||
|
@ -136,10 +136,7 @@ void FormImportExport::selectImportFile() {
|
||||
// Add more filters here.
|
||||
filter += filter_opml20;
|
||||
|
||||
QString selected_file = QFileDialog::getOpenFileName(this, tr("Select file for feeds import"),
|
||||
QDir::homePath(), filter, &selected_filter);
|
||||
|
||||
|
||||
QString selected_file = QFileDialog::getOpenFileName(this, tr("Select file for feeds import"), QDir::homePath(), filter, &selected_filter);
|
||||
|
||||
if (!selected_file.isEmpty()) {
|
||||
if (selected_filter == filter_opml20) {
|
||||
|
@ -52,7 +52,7 @@ MessagesView::~MessagesView() {
|
||||
void MessagesView::createConnections() {
|
||||
// Make sure that source message is opened
|
||||
// in new tab on double click.
|
||||
connect(this, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(openSelectedSourceMessagesInternally()));
|
||||
connect(this, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(openSelectedSourceArticlesExternally()));
|
||||
|
||||
// Adjust columns when layout gets changed.
|
||||
connect(header(), SIGNAL(geometriesChanged()), this, SLOT(adjustColumns()));
|
||||
|
Loading…
x
Reference in New Issue
Block a user