mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
www/falkon: update to 3.1.0
- the KDEWALLET option has been renamed to KDEINTEGRATION.
This commit is contained in:
parent
745b7a993c
commit
30e30c0843
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=497203
@ -1,32 +1,33 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= falkon
|
||||
DISTVERSION= 3.0.1
|
||||
PORTREVISION= 2
|
||||
DISTVERSION= 3.1.0
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= KDE/stable/falkon/${DISTVERSION}/
|
||||
MASTER_SITES= KDE/stable/falkon/${DISTVERSION:R}/
|
||||
|
||||
MAINTAINER= kde@FreeBSD.org
|
||||
COMMENT= Web browser based on WebKit engine and Qt Framework
|
||||
COMMENT= Web browser based on Webengine and Qt Framework
|
||||
|
||||
LICENSE= GPLv3
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
USES= cmake desktop-file-utils kde:5 qt:5 ssl tar:xz
|
||||
USE_KDE= ecm_build i18n
|
||||
USE_QT= core dbus declarative gui location network printsupport \
|
||||
USE_QT= concurrent core dbus declarative gui location network printsupport \
|
||||
sql webchannel webengine widgets x11extras \
|
||||
buildtools_build qmake_build
|
||||
USE_XORG= xcb
|
||||
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
OPTIONS_DEFINE= GNOMEKEYRING KWALLET
|
||||
OPTIONS_DEFAULT= KWALLET
|
||||
CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PySide2
|
||||
|
||||
OPTIONS_DEFINE= GNOMEKEYRING KDEINTEGRATION
|
||||
OPTIONS_DEFAULT= KDEINTEGRATION
|
||||
OPTIONS_SUB= YES
|
||||
|
||||
KWALLET_USE= KDE=wallet
|
||||
KWALLET_CMAKE_OFF= -DCMAKE_DISABLE_FIND_PACKAGE_KF5Wallet=ON
|
||||
KDEINTEGRATION_CMAKE_BOOL= ENABLE_KDE_FRAMEWORKS_INTEGRATION_PLUGIN
|
||||
KDEINTEGRATION_USE= KDE=completion,config,coreaddons,crash,jobwidgets,kio,purpose,service,wallet,widgetsaddons
|
||||
|
||||
GNOMEKEYRING_CMAKE_BOOL= BUILD_KEYRING
|
||||
GNOMEKEYRING_USE= GNOME=glib20
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1550423437
|
||||
SHA256 (falkon-3.0.1.tar.xz) = 7b6ed54986543dd5462602943fb824df12f15d2061996310c4c4b891433f1a83
|
||||
SIZE (falkon-3.0.1.tar.xz) = 2219444
|
||||
TIMESTAMP = 1553887482
|
||||
SHA256 (falkon-3.1.0.tar.xz) = ce743cd80c0e2d525a784e29c9b487f73480119b0567f9ce8ef1f44cca527587
|
||||
SIZE (falkon-3.1.0.tar.xz) = 2292692
|
||||
|
@ -1,39 +0,0 @@
|
||||
From 5371d289f89c306a237c13300bd1af5fb2fb7365 Mon Sep 17 00:00:00 2001
|
||||
From: "Tobias C. Berner" <tcberner@FreeBSD.org>
|
||||
Date: Sat, 19 May 2018 13:59:24 +0200
|
||||
Subject: [PATCH] Use IMPORTED_TARGET for GnomeKeyring.
|
||||
|
||||
Otherwise we would need to append also GNOME_KEYRING_LIBRARY_DIRS to
|
||||
link_directories.
|
||||
---
|
||||
CMakeLists.txt | 2 +-
|
||||
src/plugins/GnomeKeyringPasswords/CMakeLists.txt | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git CMakeLists.txt CMakeLists.txt
|
||||
index ca7c9b0e..cb35545d 100644
|
||||
--- CMakeLists.txt
|
||||
+++ CMakeLists.txt
|
||||
@@ -98,7 +98,7 @@ find_package(PkgConfig)
|
||||
if (PKG_CONFIG_FOUND)
|
||||
option(BUILD_KEYRING "Gnome keyring password plugin" ON)
|
||||
if (BUILD_KEYRING)
|
||||
- pkg_check_modules(GNOME_KEYRING gnome-keyring-1)
|
||||
+ pkg_check_modules(GNOME_KEYRING IMPORTED_TARGET gnome-keyring-1 )
|
||||
endif()
|
||||
endif()
|
||||
|
||||
diff --git src/plugins/GnomeKeyringPasswords/CMakeLists.txt src/plugins/GnomeKeyringPasswords/CMakeLists.txt
|
||||
index 6dd837c2..bc27ee23 100644
|
||||
--- src/plugins/GnomeKeyringPasswords/CMakeLists.txt
|
||||
+++ src/plugins/GnomeKeyringPasswords/CMakeLists.txt
|
||||
@@ -14,5 +14,5 @@ qt5_add_resources(RSCS ${GnomeKeyringPasswords_RSCS})
|
||||
|
||||
add_library(GnomeKeyringPasswords MODULE ${GnomeKeyringPasswords_SRCS} ${RSCS})
|
||||
install(TARGETS GnomeKeyringPasswords DESTINATION ${FALKON_INSTALL_PLUGINDIR})
|
||||
-target_link_libraries(GnomeKeyringPasswords ${GNOME_KEYRING_LIBRARIES} FalkonPrivate)
|
||||
+target_link_libraries(GnomeKeyringPasswords PkgConfig::GNOME_KEYRING FalkonPrivate)
|
||||
|
||||
--
|
||||
2.17.0
|
||||
|
@ -1,18 +0,0 @@
|
||||
As long as we ship QtWebEngine 5.9 with a newer rest-of-Qt,
|
||||
basing checks on the Qt version for deciding what QtWebEngine
|
||||
features to use is going to break.
|
||||
|
||||
Hit the code with a hammer. When QtWebEngine 5.12 lands, remove this patch.
|
||||
|
||||
--- src/lib/webengine/webview.cpp.orig 2018-05-08 14:18:50 UTC
|
||||
+++ src/lib/webengine/webview.cpp
|
||||
@@ -495,7 +495,8 @@ void WebView::copyLinkToClipboard()
|
||||
|
||||
void WebView::savePageAs()
|
||||
{
|
||||
-#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
|
||||
+#if 0
|
||||
+// #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
|
||||
page()->runJavaScript(QSL("document.contentType"), WebPage::SafeJsWorld, [this](const QVariant &res) {
|
||||
const QSet<QString> webPageTypes = {
|
||||
QSL("text/html"),
|
@ -1,17 +1,20 @@
|
||||
bin/falkon
|
||||
lib/libFalkonPrivate.so.3
|
||||
lib/libFalkonPrivate.so.3.0.1
|
||||
lib/libFalkonPrivate.so.3.1.0
|
||||
%%QT_PLUGINDIR%%/falkon/AutoScroll.so
|
||||
%%QT_PLUGINDIR%%/falkon/FlashCookieManager.so
|
||||
%%GNOMEKEYRING%%%%QT_PLUGINDIR%%/falkon/GnomeKeyringPasswords.so
|
||||
%%QT_PLUGINDIR%%/falkon/GreaseMonkey.so
|
||||
%%QT_PLUGINDIR%%/falkon/ImageFinder.so
|
||||
%%KWALLET%%%%QT_PLUGINDIR%%/falkon/KWalletPasswords.so
|
||||
%%KDEINTEGRATION%%%%QT_PLUGINDIR%%/falkon/KDEFrameworksIntegration.so
|
||||
%%QT_PLUGINDIR%%/falkon/MouseGestures.so
|
||||
%%QT_PLUGINDIR%%/falkon/PIM.so
|
||||
%%QT_PLUGINDIR%%/falkon/StatusBarIcons.so
|
||||
%%QT_PLUGINDIR%%/falkon/TabManager.so
|
||||
%%QT_PLUGINDIR%%/falkon/VerticalTabs.so
|
||||
%%QT_PLUGINDIR%%/falkon/qml/helloqml/extensions.svg
|
||||
%%QT_PLUGINDIR%%/falkon/qml/helloqml/helloqml.qml
|
||||
%%QT_PLUGINDIR%%/falkon/qml/helloqml/metadata.desktop
|
||||
%%QT_PLUGINDIR%%/falkon/qml/helloqml/script.js
|
||||
share/applications/org.kde.falkon.desktop
|
||||
share/bash-completion/completions/falkon
|
||||
%%DATADIR%%/themes/chrome/images/gotoaddress.png
|
||||
@ -144,24 +147,31 @@ share/icons/hicolor/48x48/apps/falkon.png
|
||||
share/icons/hicolor/64x64/apps/falkon.png
|
||||
share/icons/hicolor/scalable/apps/falkon.svg
|
||||
share/locale/ar/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/ar/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/ar/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
share/locale/ar/LC_MESSAGES/falkon_verticaltabs_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/ca/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/ca/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/ca/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/ca/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/ca/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -171,11 +181,13 @@ share/locale/ca@valencia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/ca@valencia/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -185,9 +197,13 @@ share/locale/cs/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/cs/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/cs/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/cs/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/cs/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/cs/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/cs/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/cs/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/cs/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/cs/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/cs/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/cs/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/cs/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/cs/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -197,9 +213,11 @@ share/locale/da/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/da/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/da/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/da/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/da/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/da/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/da/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/da/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/da/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/da/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/da/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/da/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -209,11 +227,13 @@ share/locale/de/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/de/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/de/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/de/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/de/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/de/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -222,22 +242,26 @@ share/locale/el/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/el/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
share/locale/en/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/en_GB/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -247,11 +271,13 @@ share/locale/es/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/es/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/es/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/es/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/es/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/es/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -260,6 +286,7 @@ share/locale/eu/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/eu/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/eu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/eu/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/eu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/eu/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/eu/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/eu/LC_MESSAGES/falkon_qt.qm
|
||||
@ -269,6 +296,7 @@ share/locale/eu/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
share/locale/fa/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/fa/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/fa/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/fa/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/fa/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/fa/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/fa/LC_MESSAGES/falkon_qt.qm
|
||||
@ -279,9 +307,14 @@ share/locale/fi/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/fi/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/fi/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/fi/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/fi/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/fi/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -291,11 +324,13 @@ share/locale/fr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/fr/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/fr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/fr/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/fr/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/fr/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -305,11 +340,13 @@ share/locale/gl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/gl/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/gl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/gl/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/gl/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/gl/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -317,6 +354,7 @@ share/locale/gl/LC_MESSAGES/falkon_verticaltabs_qt.qm
|
||||
share/locale/hu/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/hu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/hu/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/hu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/hu/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/hu/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/hu/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -325,11 +363,13 @@ share/locale/id/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/id/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/id/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/id/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/id/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/id/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -338,6 +378,7 @@ share/locale/is/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/is/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/is/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/is/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/is/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/is/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/is/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/is/LC_MESSAGES/falkon_qt.qm
|
||||
@ -349,11 +390,13 @@ share/locale/it/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/it/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/it/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/it/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/it/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/it/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -362,9 +405,14 @@ share/locale/ja/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/ja/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/ja/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/ja/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/ja/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/ja/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -377,6 +425,7 @@ share/locale/lv/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/lv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/lv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/lv/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/lv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/lv/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/lv/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/lv/LC_MESSAGES/falkon_qt.qm
|
||||
@ -387,6 +436,7 @@ share/locale/nb/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/nb/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/nb/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/nb/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/nb/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/nb/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/nb/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/nb/LC_MESSAGES/falkon_qt.qm
|
||||
@ -398,25 +448,44 @@ share/locale/nl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/nl/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/nl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/nl/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/nl/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
share/locale/nl/LC_MESSAGES/falkon_verticaltabs_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/nn/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/nn/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/nn/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
share/locale/nn/LC_MESSAGES/falkon_verticaltabs_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/pl/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/pl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/pl/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/pl/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/pl/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -426,11 +495,13 @@ share/locale/pt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/pt/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/pt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/pt/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/pt/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/pt/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -440,9 +511,13 @@ share/locale/pt_BR/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/pt_BR/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -451,6 +526,7 @@ share/locale/ro/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/ro/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/ro/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/ro/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/ro/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/ro/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/ro/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/ro/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -458,6 +534,7 @@ share/locale/ru/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/ru/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/ru/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/ru/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/ru/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/ru/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/ru/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/ru/LC_MESSAGES/falkon_qt.qm
|
||||
@ -469,11 +546,13 @@ share/locale/sk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/sk/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/sk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/sk/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/sk/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/sk/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -482,6 +561,7 @@ share/locale/sr/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/sr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/sr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/sr/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/sr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/sr/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/sr/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/sr/LC_MESSAGES/falkon_qt.qm
|
||||
@ -492,6 +572,7 @@ share/locale/sr@ijekavian/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/sr@ijekavian/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/sr@ijekavian/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/sr@ijekavian/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/sr@ijekavian/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/sr@ijekavian/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/sr@ijekavian/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/sr@ijekavian/LC_MESSAGES/falkon_qt.qm
|
||||
@ -502,6 +583,7 @@ share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_qt.qm
|
||||
@ -512,6 +594,7 @@ share/locale/sr@latin/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/sr@latin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/sr@latin/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/sr@latin/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/sr@latin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/sr@latin/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/sr@latin/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/sr@latin/LC_MESSAGES/falkon_qt.qm
|
||||
@ -523,11 +606,13 @@ share/locale/sv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/sv/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/sv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/sv/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/sv/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/sv/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -536,6 +621,7 @@ share/locale/tr/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/tr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/tr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/tr/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/tr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/tr/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/tr/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/tr/LC_MESSAGES/falkon_qt.qm
|
||||
@ -547,11 +633,13 @@ share/locale/uk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/uk/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/uk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/uk/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/uk/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/uk/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -561,11 +649,13 @@ share/locale/zh_CN/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_imagefinder_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_kwalletpasswords_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/zh_CN/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
@ -574,6 +664,7 @@ share/locale/zh_HK/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/zh_HK/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/zh_HK/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/zh_HK/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/zh_HK/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/zh_HK/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/zh_HK/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/zh_HK/LC_MESSAGES/falkon_qt.qm
|
||||
@ -584,11 +675,17 @@ share/locale/zh_TW/LC_MESSAGES/falkon_autoscroll_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_flashcookiemanager_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_greasemonkey_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_hellopython.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_helloqml.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_middleclickloader.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_mousegestures_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_pim_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_runaction.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_statusbaricons_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_tabmanager_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_testplugin_qt.qm
|
||||
share/locale/zh_TW/LC_MESSAGES/falkon_verticaltabs_qt.qm
|
||||
share/metainfo/org.kde.falkon.appdata.xml
|
||||
share/pixmaps/falkon.png
|
||||
|
Loading…
Reference in New Issue
Block a user