]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Merge branch 'Applications/15.12'
authorFrank Reininghaus <frank78ac@googlemail.com>
Thu, 14 Jan 2016 19:41:32 +0000 (20:41 +0100)
committerFrank Reininghaus <frank78ac@googlemail.com>
Thu, 14 Jan 2016 19:41:32 +0000 (20:41 +0100)
16 files changed:
src/dolphinpart.desktop
src/kitemviews/kfileitemmodelrolesupdater.cpp
src/kitemviews/kfileitemmodelrolesupdater.h
src/kitemviews/kitemlistcontainer.cpp
src/kitemviews/private/kitemlistsmoothscroller.cpp
src/org.kde.dolphin.appdata.xml
src/org.kde.dolphin.desktop
src/panels/places/placesitemmodel.cpp
src/search/dolphinsearchbox.cpp
src/settings/general/previewssettingspage.cpp
src/settings/kcm/kcmdolphingeneral.desktop
src/settings/kcm/kcmdolphinnavigation.desktop
src/settings/kcm/kcmdolphinservices.desktop
src/settings/kcm/kcmdolphinviewmodes.desktop
src/views/dolphinviewactionhandler.cpp
src/views/versioncontrol/fileviewversioncontrolplugin.desktop

index 25d83443c97c9b423b9bccbb872ec316cb4f3b74..123c40464fbfc2b87529c662180f9c26aced096c 100644 (file)
@@ -1,10 +1,10 @@
 [Desktop Entry]
 Type=Service
 Name=Dolphin View
+Name[ast]=Vista de Dolphin
 Name[ca]=Vista del Dolphin
 Name[ca@valencia]=Vista del Dolphin
 Name[cs]=Pohled Dolphin
-Name[da]=Dolphin-visning
 Name[de]=Dolphin-Ansicht
 Name[el]=Dolphin View
 Name[en_GB]=Dolphin View
@@ -56,6 +56,7 @@ Actions=icons;details;compact;
 
 [Desktop Action icons]
 Name=Icons
+Name[ast]=Iconos
 Name[ca]=Icones
 Name[ca@valencia]=Icones
 Name[cs]=Ikony
@@ -105,7 +106,6 @@ Name=Compact
 Name[ca]=Compacta
 Name[ca@valencia]=Compacta
 Name[cs]=Kompaktní
-Name[da]=Kompakt
 Name[de]=Kompakt
 Name[el]=Σύμπτυξη
 Name[en_GB]=Compact
@@ -146,10 +146,10 @@ Exec=dolphin
 
 [Desktop Action details]
 Name=Details
+Name[ast]=Detalles
 Name[ca]=Detalls
 Name[ca@valencia]=Detalls
 Name[cs]=Podrobnosti
-Name[da]=Detaljer
 Name[de]=Details
 Name[el]=Λεπτομέρειες
 Name[en_GB]=Details
index d3d3745fc544adeef95591c6aca50a43f5c92f2e..9f89de8e72d4172de8b787fc2c8e82753a026321 100644 (file)
@@ -717,7 +717,13 @@ void KFileItemModelRolesUpdater::applyChangedBalooRoles(const QString& itemUrl)
         // the corresponding file has been deleted in the meantime.
         return;
     }
+    applyChangedBalooRolesForItem(item);
+#endif
+}
 
+void KFileItemModelRolesUpdater::applyChangedBalooRolesForItem(const KFileItem &item)
+{
+#ifdef HAVE_BALOO
     Baloo::File file(item.localPath());
     file.load();
 
@@ -745,7 +751,7 @@ void KFileItemModelRolesUpdater::applyChangedBalooRoles(const QString& itemUrl)
             this,    &KFileItemModelRolesUpdater::slotItemsChanged);
 #else
 #ifndef Q_CC_MSVC
-    Q_UNUSED(itemUrl);
+    Q_UNUSED(item);
 #endif
 #endif
 }
@@ -1089,7 +1095,7 @@ QHash<QByteArray, QVariant> KFileItemModelRolesUpdater::rolesData(const KFileIte
 #ifdef HAVE_BALOO
     if (m_balooFileMonitor) {
         m_balooFileMonitor->addFile(item.localPath());
-        applyChangedBalooRoles(item.localPath());
+        applyChangedBalooRolesForItem(item);
     }
 #endif
     return data;
index f3d40a6c54ea9f02d2833233a710a84af7d1d770..cd86fce1eeed3de3b26b6c7645c9524ac7db3fb5 100644 (file)
@@ -211,6 +211,7 @@ private slots:
     void resolveRecentlyChangedItems();
 
     void applyChangedBalooRoles(const QString& file);
+    void applyChangedBalooRolesForItem(const KFileItem& file);
 
     void slotDirectoryContentsCountReceived(const QString& path, int count);
 
index c9d521ce788fabab56ea6ca943a14174bee9bc14..94b49dbdeca96da4aac42f8dadb8f3535b0ff82d 100644 (file)
@@ -194,12 +194,12 @@ void KItemListContainer::wheelEvent(QWheelEvent* event)
         }
     } else {
         const int numDegrees = event->angleDelta().y() / 8;
-        const int numSteps = numDegrees / 15;
+        const int numSteps = qApp->wheelScrollLines() * numDegrees / 15;
         if (event->modifiers().testFlag(Qt::ShiftModifier)) {
             const int scrollingDirection = numSteps > 0 ? 1 : -1;
             smoothScroller->scrollTo(scrollBar->value() - scrollBar->pageStep() * scrollingDirection);
         } else {
-            smoothScroller->scrollTo(scrollBar->value() - numSteps * scrollBar->pageStep() / 4);
+            smoothScroller->scrollTo(scrollBar->value() - numSteps * scrollBar->pageStep() / 12);
         }
     }
 
index 2bd467aa53833ea3d4e436dde4c7cc7597a56b01..c89d3cf8f8d64d9e9f33d805b1b28764bd8ae573 100644 (file)
@@ -19,6 +19,7 @@
 
 #include "kitemlistsmoothscroller.h"
 
+#include <QApplication>
 #include <QEvent>
 #include <QPropertyAnimation>
 #include <QScrollBar>
@@ -200,8 +201,8 @@ void KItemListSmoothScroller::handleWheelEvent(QWheelEvent* event)
         numPixels = event->pixelDelta().y();
     } else {
         const int numDegrees = event->angleDelta().y() / 8;
-        const int numSteps = numDegrees / 15;
-        numPixels = numSteps * m_scrollBar->pageStep() / 4;
+        const int numSteps = qApp->wheelScrollLines() * numDegrees / 15;
+        numPixels = numSteps * m_scrollBar->pageStep() / 12;
     }
     int value = m_scrollBar->value();
     if (event->modifiers().testFlag(Qt::ShiftModifier)) {
index e7191741bcc690a3b418a6a094f350e3e41cf1bc..7d1afe626538797d3480ba7bef49aa947e2e68ff 100644 (file)
@@ -5,6 +5,7 @@
   <project_license>GPL-2.0+</project_license>
   <name>Dolphin</name>
   <name xml:lang="ar">دولفين</name>
+  <name xml:lang="ast">Dolphin</name>
   <name xml:lang="bs">Dolphin</name>
   <name xml:lang="ca">Dolphin</name>
   <name xml:lang="ca-valencia">Dolphin</name>
@@ -47,6 +48,7 @@
   <name xml:lang="zh-TW">Dolphin</name>
   <summary>File Manager</summary>
   <summary xml:lang="ar">مدير ملفات</summary>
+  <summary xml:lang="ast">Xestor de ficheros</summary>
   <summary xml:lang="bs">Upravitelj datoteka</summary>
   <summary xml:lang="ca">Gestor de fitxers</summary>
   <summary xml:lang="ca-valencia">Gestor de fitxers</summary>
@@ -64,7 +66,7 @@
   <summary xml:lang="ia">Gerente de File</summary>
   <summary xml:lang="it">Gestore file</summary>
   <summary xml:lang="ko">파일 관리자</summary>
-  <summary xml:lang="lt">Failų tvarkyklė</summary>
+  <summary xml:lang="lt">Failų tvarkytuvė</summary>
   <summary xml:lang="nb">Filbehandler</summary>
   <summary xml:lang="nds">Dateipleger</summary>
   <summary xml:lang="nl">Bestandsbeheerder</summary>
@@ -90,6 +92,7 @@
   <description>
     <p>Dolphin is a lightweight file manager. It has been designed with ease of use and simplicity in mind, while still allowing flexibility and customisation. This means that you can do your file management exactly the way you want to do it.</p>
     <p xml:lang="ar">دولفين هو مدير ملفات خفيف. صُمِّم دولفين مع أخذ سهولة الاستخدام والبساطة بعين الاعتبار، مع السماح بالمرونة والتخصيص. يعني هذا أنه يمكنك إدارة ملفاتك كما تريد تمامًا.</p>
+    <p xml:lang="ast">Dolphin ye un xestor de ficheros llixeru. Diseñóse cola facilidá d'usu y cenciellez na miente entrín entá permite la flexibilidá y personalización. Esto quier dicir que pues facer la to xestión de ficheros exautamente como tu quies facela.</p>
     <p xml:lang="bs">Dolphinje lagan file manager. On je bio dizajniran sa lakoćom korišćenja i jednostavnosti u vidu, još omogućavajući fleksibilnost i prilagođavanje. To znači da možete da radite svoje upravljanje datotekama onako kako želite da to uradi.</p>
     <p xml:lang="ca">El Dolphin és un gestor de fitxers lleuger. S'ha dissenyat pensant a facilitar el seu ús i que sigui simple, permetent la flexibilitat i la personalització. Això vol dir que podeu fer la gestió dels vostres fitxers de la manera exacta com ho vulgueu fer.</p>
     <p xml:lang="ca-valencia">El Dolphin és un gestor de fitxers lleuger. S'ha dissenyat pensant a facilitar el seu ús i que siga simple, permetent la flexibilitat i la personalització. Això vol dir que podeu fer la gestió dels vostres fitxers de la manera exacta com ho vulgueu fer.</p>
     <p xml:lang="zh-TW">Dolphin 是一套輕量級的檔案管理員。它設計的理念是易用與簡單,但仍然保持足夠的彈性。這表示您可以用您想要使用的方式來管理您的檔案。</p>
     <p>Features:</p>
     <p xml:lang="ar">المزايا:</p>
+    <p xml:lang="ast">Carauterístiques</p>
     <p xml:lang="bs">Svojstva:</p>
     <p xml:lang="ca">Característiques:</p>
     <p xml:lang="ca-valencia">Característiques:</p>
     <p xml:lang="zh-TW">功能:</p>
     <ul>
       <li>Navigation (or breadcrumb) bar for URLs, allowing you to quickly navigate through the hierarchy of files and folders.</li>
+      <li xml:lang="ast">Barra de navegación </li>
       <li xml:lang="bs">Navigacijska (ili mrvična) traka za URL, dopušta vam da se brzo krećete kroz hijerarhiju datoteka i direktorija.</li>
       <li xml:lang="ca">Barra de navegació (o fil d'Ariadna) pels URL, permetent una navegació ràpida per la jerarquia de fitxers i carpetes.</li>
       <li xml:lang="ca-valencia">Barra de navegació (o fil d'Ariadna) pels URL, permetent una navegació ràpida per la jerarquia de fitxers i carpetes.</li>
       <li xml:lang="zh-TW">網址導覽列讓您可以快速瀏覽檔案與資料夾。</li>
       <li>Supports several different kinds of view styles and properties and allows you to configure the view exactly how you want it.</li>
       <li xml:lang="ar">يدعم العديد من الأنواع المختلفة من الخصائص وأنماط العرض ويسمح لك بضبط العرض كما تريد تمامًا.</li>
+      <li xml:lang="ast">Sofitalla delles tribes de vista y propiedaes diferentes y permítete configurar la vista exautamente como tu quies.</li>
       <li xml:lang="bs">Dopušta vište vrsta stilova pogleda i svojstava i dopšta vam da konfigurišete pogled baš kako želite.</li>
       <li xml:lang="ca">Accepta diferents classes diverses d'estils de visualització i propietats i us permet configurar la visualització exactament com la vulgueu.</li>
       <li xml:lang="ca-valencia">Accepta diferents classes diverses d'estils de visualització i propietats i vos permet configurar la visualització exactament com la vulgueu.</li>
       <li xml:lang="zh-TW">網址導覽列讓您可以快速瀏覽檔案與資料夾。</li>
       <li>Split view, allowing you to easily copy or move files between locations.</li>
       <li xml:lang="ar">العرض المقسوم، يسمح لك بنسخ ونقل الملفات بين مكانين بسهولة.</li>
+      <li xml:lang="ast">Vista dixebrada, permítete copiar y mover ficheros d'un mou cenciellu ente allugamientos.</li>
       <li xml:lang="bs">Razdvaja pogled, dopuštajući lako kopiranje ili pomijeranje datoteka između lokacija</li>
       <li xml:lang="ca">Divisió de visualització, permetent copiar o moure fitxers fàcilment entre les ubicacions.</li>
       <li xml:lang="ca-valencia">Divisió de visualització, permetent copiar o moure fitxers fàcilment entre les ubicacions.</li>
       <li xml:lang="zh-TW">支援數個檢視模式,您也可以調整檢視模式的屬性。</li>
       <li>Additional information and shortcuts are available as dock-able panels, allowing you to move them around freely and display exactly what you want.</li>
       <li xml:lang="ar">تتوفر معلومات واختصارات إضافية كلوحات قابلة للرصف، مما يسمح لك بنقلها بحريّة وعرضها بالضبط كما تريد.</li>
+      <li xml:lang="ast">Tán disponibles atayos ya información adicional como paneles anclables, permitiéndote movelos pehí d'un mou llibre y amosar exautamente lo tu quies.</li>
       <li xml:lang="bs">Dodatne informacije i kratice su dostupne kao usidreni paneli, dopuštajući vam da se krećete slobodno i prikažete šta želite.</li>
       <li xml:lang="ca">Hi ha informació addicional i dreceres disponibles com a plafons que es poden acoblar, permetent moure'ls lliurement i mostrar exactament el què vulgueu.</li>
       <li xml:lang="ca-valencia">Hi ha informació addicional i dreceres disponibles com a plafons que es poden acoblar, permetent moure'ls lliurement i mostrar exactament el què vulgueu.</li>
       <li xml:lang="zh-TW">分割檢視讓您可以輕鬆複製或移動檔案。</li>
       <li>Multiple tab support</li>
       <li xml:lang="ar">دعم تعدّد الألسنة</li>
+      <li xml:lang="ast">Sofitu de múltiples llingüetes</li>
       <li xml:lang="bs">Podrška za više kartica</li>
       <li xml:lang="ca">Implementació de pestanyes múltiples</li>
       <li xml:lang="ca-valencia">Implementació de pestanyes múltiples</li>
       <li xml:lang="zh-TW">額外資訊與嵌入式面板捷徑讓您可以輕易顯示您常用的項目。</li>
       <li>Informational dialogues are displayed in an unobtrusive way.</li>
       <li xml:lang="ar">حواريات المعلومات تُعرَض بطريقة غير مُزعجة.</li>
+      <li xml:lang="ast">Los diálogos d'información amuésense d'un mou discretu.</li>
       <li xml:lang="bs">Informativni dijalozi su prikazani na nenametljiv način.</li>
       <li xml:lang="ca">Els diàlegs informatius es mostren d'una manera no molesta.</li>
       <li xml:lang="ca-valencia">Els diàlegs informatius es mostren d'una manera no molesta.</li>
       <li xml:lang="zh-TW">支援多分頁</li>
       <li>Undo/redo support</li>
       <li xml:lang="ar">دعم التراجع والإعادة</li>
+      <li xml:lang="ast">Sofitu de desfechura/refechura</li>
       <li xml:lang="bs">Podrška za poništavanje/ponavljanje akcija</li>
       <li xml:lang="ca">Implementació de desfer/refer</li>
       <li xml:lang="ca-valencia">Implementació de desfer/refer</li>
       <li xml:lang="zh-TW">以不唐突的方式顯示資訊對話框。</li>
       <li>Transparent network access through the KIO system.</li>
       <li xml:lang="ar">اتصال شبكيّ مباشر باستخدام نظام KIO.</li>
+      <li xml:lang="ast">Accesu tresparente a la rede pente'l sistema KIO.</li>
       <li xml:lang="bs">Transparentni mrežni pristup kroz KIO sistem.</li>
       <li xml:lang="ca">Accés transparent a la xarxa a través del sistema KIO.</li>
       <li xml:lang="ca-valencia">Accés transparent a la xarxa a través del sistema KIO.</li>
index e900add726f6d4d9d87d62c7febb1720b059da99..89234ad871f606c14663da89aa6789d788858a2c 100755 (executable)
@@ -1,9 +1,9 @@
 [Desktop Entry]
 Name=Dolphin
+Name[ast]=Dolphin
 Name[ca]=Dolphin
 Name[ca@valencia]=Dolphin
 Name[cs]=Dolphin
-Name[da]=Dolphin
 Name[de]=Dolphin
 Name[el]=Dolphin
 Name[en_GB]=Dolphin
@@ -46,10 +46,10 @@ Type=Application
 X-DocPath=dolphin/index.html
 Categories=Qt;KDE;System;FileTools;FileManager;
 GenericName=File Manager
+GenericName[ast]=Xestor de ficheros
 GenericName[ca]=Gestor de fitxers
 GenericName[ca@valencia]=Gestor de fitxers
 GenericName[cs]=Správce souborů
-GenericName[da]=Filhåndtering
 GenericName[de]=Dateiverwaltung
 GenericName[el]=Διαχειριστής αρχείων
 GenericName[en_GB]=File Manager
index 013b99731e97c75380cc580f192d64f13ac721ae..0d8ac6981def9a3a68d1d7fa6fde98cd885b160b 100644 (file)
@@ -1161,7 +1161,6 @@ QUrl PlacesItemModel::createSearchUrl(const QUrl& url)
 QUrl PlacesItemModel::searchUrlForType(const QString& type)
 {
     Baloo::Query query;
-    query.addType("File");
     query.addType(type);
 
     return query.toSearchUrl();
index 743d9113a9ae0f7820d1bed594462a208b2883c3..a925a97c9c663c198b7c129f9dac965b31d354ac 100644 (file)
@@ -478,7 +478,7 @@ void DolphinSearchBox::fromBalooSearchUrl(const QUrl& url)
     if (!customDir.isEmpty()) {
         setSearchPath(QUrl::fromLocalFile(customDir));
     } else {
-        setSearchPath(QDir::homePath());
+        setSearchPath(QUrl::fromLocalFile(QDir::homePath()));
     }
 
     setText(query.searchString());
index 37e05197ac29198890c89d9b6b1c190fe377da04..07cd73e33e9676f96c7f6d8d81f8eace297c94c8 100644 (file)
@@ -45,7 +45,6 @@
 
 // default settings
 namespace {
-    const bool UseThumbnails = true;
     const int MaxRemotePreviewSize = 0; // 0 MB
 }
 
index d63ed2519a9ad31f90901490957908fbc7fd08cf..3801aa3d83b2ec4957e969e8bba5d80916a70066 100644 (file)
@@ -1,13 +1,12 @@
 Name=Dolphin General
+Name[ast]=Xeneral de Dolphin
 Name[ca]=General del Dolphin
 Name[ca@valencia]=General del Dolphin
 Name[cs]=Obecný Dolphin
-Name[da]=Dolphin generelt
 Name[de]=Dolphin allgemein
 Name[el]=Dolphin Γενικά
 Name[en_GB]=Dolphin General
 Name[es]=Preferencias generales de Dolphin
-Name[et]=Dolphin üldiselt
 Name[fi]=Dolphin – yleiset
 Name[fr]=Dolphin général
 Name[gl]=Xerais de Dolphin
@@ -40,15 +39,14 @@ Name[x-test]=xxDolphin Generalxx
 Name[zh_CN]=Dolphin 常规
 Name[zh_TW]=Dolphin 一般
 Comment=This service allows configuration of general Dolphin settings.
+Comment[ast]=Esti serviciu permite la configuración de los axustes xenerales de Dolphin.
 Comment[ca]=Aquest servei permet la configuració de l'arranjament general del Dolphin.
 Comment[ca@valencia]=Este servei permet la configuració de l'arranjament general del Dolphin.
 Comment[cs]=Tato služba umožňuje obecné nastavení Dolphinu.
-Comment[da]=Denne tjeneste muliggør konfiguration af generelle Dolphin-indstillinger.
 Comment[de]=Mit diesem Dienst können allgemeine Einstellungen von Dolphin eingerichtet werden.
 Comment[el]=Η υπηρεσία αυτή επιτρέπει τη διαμόρφωση των γενικών ρυθμίσεων του Dolphin
 Comment[en_GB]=This service allows configuration of general Dolphin settings.
 Comment[es]=Este servicio permite configurar las preferencias generales de Dolphin.
-Comment[et]=See teenus võimaldab seadistada Dolphini üldisi seadistusi.
 Comment[fi]=Tällä palvelulla voi muokata Dolphinin yleisasetuksia.
 Comment[fr]=Ce service permet de configurer les paramètres généraux de Dolphin.
 Comment[gl]=Este servizo permite configurar opcións xerais de Dolphin.
@@ -58,7 +56,7 @@ Comment[id]=Layanan ini memungkinkan konfigurasi pengaturan umum Dolphin.
 Comment[it]=Questo servizio permette di configurare le impostazioni generali di Dolphin.
 Comment[ja]=Dolphin の全般的な設定を行います
 Comment[ko]=이 서비스는 일반 Dolphin 설정을 담당합니다.
-Comment[lt]=Ši tarnyba leidžia konfigūruoti Dolphin bendruosius nuostatas.
+Comment[lt]=Ši tarnyba leidžia konfigūruoti Dolphin bendrąsias nuostatas.
 Comment[nb]=Med denne tjenesten kan du sette opp generelle innstillinger for Dolphin.
 Comment[nl]=Met deze dienst kunt u algemene Dolphin-instellingen configureren.
 Comment[nn]=Denne tenesta lèt deg setja opp generelle innstillingar for Dolphin.
@@ -91,15 +89,14 @@ X-KDE-ParentApp=kcontrol
 X-DocPath=dolphin/index.html#preferences-dialog-general
 # ctxt: Random file browsing settings.
 Name=General
+Name[ast]=Xeneral
 Name[ca]=General
 Name[ca@valencia]=General
 Name[cs]=Obecné
-Name[da]=Generelt
 Name[de]=Allgemein
 Name[el]=Γενικά
 Name[en_GB]=General
 Name[es]=General
-Name[et]=Üldine
 Name[fi]=Yleiset
 Name[fr]=Général
 Name[gl]=Xerais
@@ -131,15 +128,14 @@ Name[x-test]=xxGeneralxx
 Name[zh_CN]=常规
 Name[zh_TW]=一般
 Comment=Configure general file manager settings
+Comment[ast]=Configura los axustes xenerales del xestor de ficheros
 Comment[ca]=Configura les opcions generals del gestor de fitxers
 Comment[ca@valencia]=Configura les opcions generals del gestor de fitxers
 Comment[cs]=Obecné nastavení správce souborů
-Comment[da]=Konfiguration af generelle indstillinger for filhåndtering
 Comment[de]=Allgemeine Einstellungen an der Dateiverwaltung vornehmen
 Comment[el]=Διαμόρφωση γενικών ρυθμίσεων διαχείρισης αρχείων
 Comment[en_GB]=Configure general file manager settings
 Comment[es]=Configurar las preferencias generales del gestor de archivos
-Comment[et]=Failihalduri üldine seadistamine
 Comment[fi]=Tiedostonhallinnan yleisasetukset
 Comment[fr]=Configuration des paramètres généraux du gestionnaire de fichiers
 Comment[gl]=Configurar opcións xerais de xestores de ficheiros.
@@ -170,15 +166,14 @@ Comment[x-test]=xxConfigure general file manager settingsxx
 Comment[zh_CN]=配置常规文件管理器设置
 Comment[zh_TW]=設定一般檔案管理員
 X-KDE-Keywords=file manager
+X-KDE-Keywords[ast]=xestor de ficheros
 X-KDE-Keywords[ca]=gestor de fitxers
 X-KDE-Keywords[ca@valencia]=gestor de fitxers
 X-KDE-Keywords[cs]=správce souborů
-X-KDE-Keywords[da]=filhåndtering
 X-KDE-Keywords[de]=Dateiverwaltung
 X-KDE-Keywords[el]=διαχειριστής αρχείων
 X-KDE-Keywords[en_GB]=file manager
 X-KDE-Keywords[es]=gestor de archivos
-X-KDE-Keywords[et]=failihaldur
 X-KDE-Keywords[fi]=tiedostonhallinta
 X-KDE-Keywords[fr]=gestionnaire de fichiers
 X-KDE-Keywords[gl]=xestor de ficheiros
index b2148b90226e43096efb265f7b2abbadae0aefae..4d20a1716390d9cd0a927b9f0307a80d8a44988b 100644 (file)
@@ -1,8 +1,8 @@
 Name=Dolphin Navigation
+Name[ast]=Navegación de Dolphin
 Name[ca]=Navegació del Dolphin
 Name[ca@valencia]=Navegació del Dolphin
 Name[cs]=Navigace Dolphinu
-Name[da]=Dolphin-navigation
 Name[de]=Dolphin-Navigation
 Name[el]=Dolphin Πλοήγηση
 Name[en_GB]=Dolphin Navigation
@@ -40,10 +40,10 @@ Name[x-test]=xxDolphin Navigationxx
 Name[zh_CN]=Dolphin 导航
 Name[zh_TW]=Dolphin 導覽
 Comment=This service allows configuration of the Dolphin navigation.
+Comment[ast]=Esti serviciu permite la configuración de la navegación de Dolphin.
 Comment[ca]=Aquest servei permet la configuració de la navegació del Dolphin.
 Comment[ca@valencia]=Este servei permet la configuració de la navegació del Dolphin.
 Comment[cs]=Tato služba umožňuje nastavení navigace v Dolphinu.
-Comment[da]=Denne tjeneste muliggør konfiguration af Dolphin-navigation.
 Comment[de]=Mit diesem Dienst kann die Navigation für Dolphin eingerichtet werden.
 Comment[el]=Η υπηρεσία αυτή επιτρέπει τη διαμόρφωση της πλοήγησης του Dolphin
 Comment[en_GB]=This service allows configuration of the Dolphin navigation.
@@ -90,10 +90,10 @@ X-KDE-PluginKeyword=dolphinnavigation
 X-KDE-ParentApp=kcontrol
 X-DocPath=dolphin/index.html#preferences-dialog-navigation
 Name=Navigation
+Name[ast]=Navegación
 Name[ca]=Navegació
 Name[ca@valencia]=Navegació
 Name[cs]=Navigace
-Name[da]=Navigation
 Name[de]=Navigation
 Name[el]=Πλοήγηση
 Name[en_GB]=Navigation
@@ -131,10 +131,10 @@ Name[x-test]=xxNavigationxx
 Name[zh_CN]=导航
 Name[zh_TW]=導覽
 Comment=Configure file manager navigation
+Comment[ast]=Configura la navegación del xestor de ficheros
 Comment[ca]=Configura la navegació del gestor de fitxers
 Comment[ca@valencia]=Configura la navegació del gestor de fitxers
 Comment[cs]=Nastavení navigace správce souborů
-Comment[da]=Indstil navigation i filhåndtering
 Comment[de]=Einstellungen zur Navigation mit der Dateiverwaltung
 Comment[el]=Διαμόρφωση πλοήγησης του διαχειριστή αρχείων
 Comment[en_GB]=Configure file manager navigation
@@ -171,10 +171,10 @@ Comment[x-test]=xxConfigure file manager navigationxx
 Comment[zh_CN]=配置文件管理器导航
 Comment[zh_TW]=設定檔案管理員導覽
 X-KDE-Keywords=file manager
+X-KDE-Keywords[ast]=xestor de ficheros
 X-KDE-Keywords[ca]=gestor de fitxers
 X-KDE-Keywords[ca@valencia]=gestor de fitxers
 X-KDE-Keywords[cs]=správce souborů
-X-KDE-Keywords[da]=filhåndtering
 X-KDE-Keywords[de]=Dateiverwaltung
 X-KDE-Keywords[el]=διαχειριστής αρχείων
 X-KDE-Keywords[en_GB]=file manager
index e82ee56e829e8cff1d98f618832f2d11deb4b580..9ec4130a6381b84a144f6af2507379c89eb7a8f4 100644 (file)
@@ -1,8 +1,8 @@
 Name=Dolphin Services
+Name[ast]=Servicios de Dolphin
 Name[ca]=Serveis del Dolphin
 Name[ca@valencia]=Serveis del Dolphin
 Name[cs]=Služby Dolphinu
-Name[da]=Dolphin-tjenester
 Name[de]=Dolphin-Dienste
 Name[el]=Dolphin Υπηρεσίες
 Name[en_GB]=Dolphin Services
@@ -50,10 +50,10 @@ X-KDE-PluginKeyword=dolphinservices
 X-KDE-ParentApp=kcontrol
 X-DocPath=dolphin/index.html#preferences-dialog-services
 Name=Services
+Name[ast]=Servicios
 Name[ca]=Serveis
 Name[ca@valencia]=Serveis
 Name[cs]=Služby
-Name[da]=Tjenester
 Name[de]=KDE-Dienste
 Name[el]=Υπηρεσίες
 Name[en_GB]=Services
@@ -90,10 +90,10 @@ Name[x-test]=xxServicesxx
 Name[zh_CN]=服务
 Name[zh_TW]=服務
 Comment=Configure file manager services
+Comment[ast]=Configura los servicios del xestor de ficheros
 Comment[ca]=Configura els serveis del gestor de fitxers
 Comment[ca@valencia]=Configura els serveis del gestor de fitxers
 Comment[cs]=Nastavení služeb správce souborů
-Comment[da]=Indstil filhåndteringstjenester
 Comment[de]=Dateiverwaltungs-Dienste einrichten
 Comment[el]=Διαμόρφωση υπηρεσιών του διαχειριστή αρχείων
 Comment[en_GB]=Configure file manager services
@@ -129,10 +129,10 @@ Comment[x-test]=xxConfigure file manager servicesxx
 Comment[zh_CN]=配置文件管理器服务
 Comment[zh_TW]=設定檔案管理員服務
 X-KDE-Keywords=file manager
+X-KDE-Keywords[ast]=xestor de ficheros
 X-KDE-Keywords[ca]=gestor de fitxers
 X-KDE-Keywords[ca@valencia]=gestor de fitxers
 X-KDE-Keywords[cs]=správce souborů
-X-KDE-Keywords[da]=filhåndtering
 X-KDE-Keywords[de]=Dateiverwaltung
 X-KDE-Keywords[el]=διαχειριστής αρχείων
 X-KDE-Keywords[en_GB]=file manager
index 89ddac2185cb79bd775f4d85d24cf19bd6121a1e..b472380f95c583d2dacf1cf95bbdbb78acba538b 100644 (file)
@@ -1,8 +1,8 @@
 Name=Dolphin View Modes
+Name[ast]=Moos de vista de Dolphin
 Name[ca]=Modes de vista del Dolphin
 Name[ca@valencia]=Modes de vista del Dolphin
 Name[cs]=Režimy pohledů Dolphinu
-Name[da]=Dolphins visningstilstande
 Name[de]=Dolphin-Ansichtsmodi
 Name[el]=Dolphin Λειτουργίες Προβολής
 Name[en_GB]=Dolphin View Modes
@@ -39,10 +39,10 @@ Name[x-test]=xxDolphin View Modesxx
 Name[zh_CN]=Dolphin 视图模式
 Name[zh_TW]=設定檔案管理員服務
 Comment=This service allows configuration of the Dolphin view modes.
+Comment[ast]=Esti serviciu permite la configuración de los moos de vista de Dolphin.
 Comment[ca]=Aquest servei permet la configuració dels modes de vista del Dolphin.
 Comment[ca@valencia]=Este servei permet la configuració dels modes de vista del Dolphin.
 Comment[cs]=Tato služba umožňuje nastavení režimů pohledu Dolphinu.
-Comment[da]=Denne tjeneste muliggør konfiguration af Dolphins visningstilstande.
 Comment[de]=Mit diesem Dienst können Dolphin-Ansichtsmodi eingerichtet werden.
 Comment[el]=Η υπηρεσία αυτή επιτρέπει τη διαμόρφωση των λειτουργιών προβολής του Dolphin
 Comment[en_GB]=This service allows configuration of the Dolphin view modes.
@@ -89,10 +89,10 @@ X-KDE-PluginKeyword=dolphinviewmodes
 X-KDE-ParentApp=kcontrol
 X-DocPath=dolphin/index.html#preferences-dialog-viewmodes
 Name=View Modes
+Name[ast]=Moos de vista
 Name[ca]=Modes de vista
 Name[ca@valencia]=Modes de vista
 Name[cs]=Režimy pohledu
-Name[da]=Visningstilstande
 Name[de]=Ansichts-Modi
 Name[el]=Λειτουργίες Προβολής
 Name[en_GB]=View Modes
@@ -130,10 +130,10 @@ Name[x-test]=xxView Modesxx
 Name[zh_CN]=视图模式
 Name[zh_TW]=檢視模式
 Comment=Configure file manager view modes
+Comment[ast]=Configura los moos de vista del xestor de ficheros
 Comment[ca]=Configura els modes de vista del gestor de fitxers
 Comment[ca@valencia]=Configura els modes de vista del gestor de fitxers
 Comment[cs]=Nastavení režimů pohledu správce souborů
-Comment[da]=Indstil filhåndteringens visningstilstande
 Comment[de]=Dateiverwaltungs-Ansichten einrichten
 Comment[el]=Διαμόρφωση των λειτουργιών προβολής του διαχειριστή αρχείων
 Comment[en_GB]=Configure file manager view modes
@@ -170,10 +170,10 @@ Comment[x-test]=xxConfigure file manager view modesxx
 Comment[zh_CN]=配置文件管理器视图模式
 Comment[zh_TW]=設定檔案管理員檢視模式
 X-KDE-Keywords=file manager
+X-KDE-Keywords[ast]=xestor de ficheros
 X-KDE-Keywords[ca]=gestor de fitxers
 X-KDE-Keywords[ca@valencia]=gestor de fitxers
 X-KDE-Keywords[cs]=správce souborů
-X-KDE-Keywords[da]=filhåndtering
 X-KDE-Keywords[de]=Dateiverwaltung
 X-KDE-Keywords[el]=διαχειριστής αρχείων
 X-KDE-Keywords[en_GB]=file manager
index ac538a6485972f6726423b06604f12a15839fb65..99214d61b5f785a527f6672df2b7d4e744a11a29 100644 (file)
@@ -209,7 +209,8 @@ void DolphinViewActionHandler::createActions()
     connect(showInGroups, &KToggleAction::triggered, this, &DolphinViewActionHandler::toggleGroupedSorting);
 
     KToggleAction* showHiddenFiles = m_actionCollection->add<KToggleAction>("show_hidden_files");
-    showHiddenFiles->setText(i18nc("@action:inmenu View", "Show Hidden Files"));
+    showHiddenFiles->setText(i18nc("@action:inmenu View", "Hidden Files"));
+    showHiddenFiles->setToolTip(i18nc("@info", "Visibility of hidden files and folders"));
     m_actionCollection->setDefaultShortcuts(showHiddenFiles, {Qt::ALT + Qt::Key_Period, Qt::Key_F8});
     connect(showHiddenFiles, &KToggleAction::triggered, this, &DolphinViewActionHandler::toggleShowHiddenFiles);
 
@@ -377,8 +378,8 @@ void DolphinViewActionHandler::updateViewActions()
     slotSortRoleChanged(m_currentView->sortRole());
     slotZoomLevelChanged(m_currentView->zoomLevel(), -1);
 
-    QAction* showHiddenFilesAction = m_actionCollection->action("show_hidden_files");
-    showHiddenFilesAction->setChecked(m_currentView->hiddenFilesShown());
+    // Updates the "show_hidden_files" action state and icon
+    slotHiddenFilesShownChanged(m_currentView->hiddenFilesShown());
 }
 
 void DolphinViewActionHandler::zoomIn()
@@ -479,6 +480,8 @@ void DolphinViewActionHandler::slotHiddenFilesShownChanged(bool shown)
 {
     QAction* showHiddenFilesAction = m_actionCollection->action("show_hidden_files");
     showHiddenFilesAction->setChecked(shown);
+
+    showHiddenFilesAction->setIcon(QIcon::fromTheme(shown ? "visibility" : "hint"));
 }
 
 void DolphinViewActionHandler::slotWriteStateChanged(bool isFolderWritable)
index aca976663430eb19547f3709327ec8836ee39275..5081891df53202e29aea3ab98b74cb66fea4fe7f 100644 (file)
@@ -2,10 +2,10 @@
 Type=ServiceType
 X-KDE-ServiceType=FileViewVersionControlPlugin
 Comment=Version Control Plugin for File Views
+Comment[ast]=Complementu de control de versiones pa vistes de ficheros
 Comment[ca]=Connector de control de versions per a les vistes de fitxers
 Comment[ca@valencia]=Connector de control de versions per a les vistes de fitxers
 Comment[cs]=Modul pro správu verzí pro pohledy na soubory
-Comment[da]=Versionsstyringsplugin til filvisninger
 Comment[de]=Versionskontroll-Modul für Dateiansichten
 Comment[el]=Πρόσθετο ελέγχου εκδόσεων για προβολές αρχείων
 Comment[en_GB]=Version Control Plugin for File Views