mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Added Widya Walesa into translators (Indonesian)
- fixed issue when restoring tabs with special urls not being properly percent encoded/decoded
This commit is contained in:
parent
a36b90250e
commit
c082abdab9
3
AUTHORS
3
AUTHORS
|
@ -16,7 +16,6 @@ Translators:
|
|||
Jonathan Hooverman <jonathan.hooverman@gmail.com> (German)
|
||||
Heimen Stoffels <vistausss@gmail.com> (Dutch)
|
||||
Peter Vacula <pvacula1989@gmail.com> (Slovak)
|
||||
Unink-Lio <unink4451@163.com> (Chinese)
|
||||
Federico Fabiani <federico.fabiani85@gmail.com> (Italian)
|
||||
Francesco Marinucci <framarinucci@gmail.com> (Italian)
|
||||
Jorge Sevilla <jsevi@ozu.es> (Spanish)
|
||||
|
@ -30,7 +29,9 @@ Oleg Brezhnev <oleg-423@yandex.ru> (Russian)
|
|||
Sérgio Marques <smarquespt@gmail.com> (Portuguese)
|
||||
Alexandre Carvalho <alexandre05@live.com> (Brazilian Portuguese)
|
||||
Mladen Pejaković <pejakm@gmail.com> (Serbian)
|
||||
Unink-Lio <unink4451@163.com> (Chinese)
|
||||
Wu Cheng-Hong <stu2731652@gmail.com> (Traditional Chinese)
|
||||
Widya Walesa <walecha99@gmail.com> (Indonesian)
|
||||
|
||||
Special thanks:
|
||||
|
||||
|
|
|
@ -220,7 +220,8 @@ QString QupZillaSchemeReply::aboutPage()
|
|||
authorString("Alexandre Carvalho", "alexandre05@live.com") + " (Brazilian Portuguese)<br/>" +
|
||||
authorString("Mladen Pejaković", "pejakm@gmail.com") + " (Serbian)<br/>" +
|
||||
authorString("Unink-Lio", "unink4451@163.com") + " (Chinese)<br/>" +
|
||||
authorString("Wu Cheng-Hong", "stu2731652@gmail.com") + " (Traditional Chinese)"
|
||||
authorString("Wu Cheng-Hong", "stu2731652@gmail.com") + " (Traditional Chinese)<br/>" +
|
||||
authorString("Widya Walesa", "walecha99@gmail.com") + " (Indonesian)"
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -84,6 +84,7 @@ void AboutDialog::showAuthors()
|
|||
"Jan Rajnoha<br/>"
|
||||
"Daniele Cocca")
|
||||
));
|
||||
|
||||
m_authorsHtml.append(tr("<p><b>Translators:</b><br/>%1</p>").arg(
|
||||
QString::fromUtf8("Heimen Stoffels<br/>"
|
||||
"Peter Vacula<br/>"
|
||||
|
@ -102,7 +103,8 @@ void AboutDialog::showAuthors()
|
|||
"Alexandre Carvalho<br/>"
|
||||
"Mladen Pejaković<br/>"
|
||||
"Unink-Lio<br/>"
|
||||
"Wu Cheng-Hong")
|
||||
"Wu Cheng-Hong<br/>"
|
||||
"Widya Walesa")
|
||||
));
|
||||
m_authorsHtml.append("</div>");
|
||||
}
|
||||
|
|
|
@ -372,22 +372,6 @@
|
|||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="16" column="1">
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Expanding</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="4" column="2">
|
||||
<widget class="QFrame" name="newTabFrame">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||
|
@ -468,6 +452,19 @@
|
|||
<item row="12" column="2">
|
||||
<widget class="QComboBox" name="languages"/>
|
||||
</item>
|
||||
<item row="10" column="1">
|
||||
<spacer name="verticalSpacer_6">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="stackedWidgetPage2">
|
||||
|
|
|
@ -596,7 +596,7 @@ void TabWidget::savePinnedTabs()
|
|||
continue;
|
||||
}
|
||||
|
||||
tabs.append(tab->url().toString());
|
||||
tabs.append(tab->url().toEncoded());
|
||||
if (tab->history()->count() != 0) {
|
||||
QByteArray tabHistory;
|
||||
QDataStream tabHistoryStream(&tabHistory, QIODevice::WriteOnly);
|
||||
|
@ -676,7 +676,7 @@ QByteArray TabWidget::saveState()
|
|||
continue;
|
||||
}
|
||||
|
||||
tabs.append(tab->url().toString());
|
||||
tabs.append(tab->url().toEncoded());
|
||||
if (tab->history()->count() != 0) {
|
||||
QByteArray tabHistory;
|
||||
QDataStream tabHistoryStream(&tabHistory, QIODevice::WriteOnly);
|
||||
|
|
|
@ -14,6 +14,7 @@ TRANSLATIONS += $$PWD/translations/cs_CZ.ts\
|
|||
$$PWD/translations/sr_BA.ts\
|
||||
$$PWD/translations/sr_RS.ts\
|
||||
$$PWD/translations/sv_SE.ts\
|
||||
$$PWD/translations/id_ID.ts\
|
||||
|
||||
isEmpty(QMAKE_LRELEASE) {
|
||||
win32|os2:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
|
||||
|
|
|
@ -917,7 +917,7 @@
|
|||
<message>
|
||||
<location filename="../src/other/browsinglibrary.cpp" line="152"/>
|
||||
<source>Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Database Size After: </b>%2</source>
|
||||
<translation>Database berhasil dioptimasi.<br/><b>Ukuran Database Sebelumnya:</b>%1<br/><b>Ukuran Database Sekarang:</b>%2</translation>
|
||||
<translation>Database berhasil dioptimasi.<br/><b>Ukuran Database Sebelumnya: </b>%1<br/><b>Ukuran Database Sekarang: </b>%2</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
|
Loading…
Reference in New Issue
Block a user