]> cloud.milkyroute.net Git - dolphin.git/commitdiff
added settings module for 'Navigation', that can be used by Konqueror
authorPeter Penz <peter.penz19@gmail.com>
Mon, 19 Jan 2009 10:39:11 +0000 (10:39 +0000)
committerPeter Penz <peter.penz19@gmail.com>
Mon, 19 Jan 2009 10:39:11 +0000 (10:39 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=913405

src/CMakeLists.txt
src/kcm/kcmdolphinnavigation.cpp [new file with mode: 0644]
src/kcm/kcmdolphinnavigation.desktop [new file with mode: 0644]
src/kcm/kcmdolphinnavigation.h [new file with mode: 0644]
src/kcm/kcmdolphinviewmodes.cpp [moved from src/kcmdolphinviewmodes.cpp with 93% similarity]
src/kcm/kcmdolphinviewmodes.desktop [new file with mode: 0644]
src/kcm/kcmdolphinviewmodes.h [moved from src/kcmdolphinviewmodes.h with 96% similarity]
src/kcmdolphinviewmodes.desktop [deleted file]

index b08ffe46068fbfd54198ede132623ea09ac3c0f0..60ede3846946edcd05feeec1f4ff9f56ea66223a 100644 (file)
@@ -175,7 +175,7 @@ install(TARGETS dolphin ${INSTALL_TARGETS_DEFAULT_ARGS})
 ##########################################
 
 set(kcm_dolphinviewmodes_PART_SRCS
-    kcmdolphinviewmodes.cpp
+    kcm/kcmdolphinviewmodes.cpp
     settings/columnviewsettingspage.cpp
     settings/detailsviewsettingspage.cpp
     settings/dolphinfontrequester.cpp
@@ -183,8 +183,12 @@ set(kcm_dolphinviewmodes_PART_SRCS
     settings/iconsviewsettingspage.cpp
     settings/viewsettingspagebase.cpp
     pixmapviewer.cpp
-    zoomlevelinfo.cpp
-)
+    zoomlevelinfo.cpp)
+
+set(kcm_dolphinnavigation_PART_SRCS
+    kcm/kcmdolphinnavigation.cpp
+    settings/navigationsettingspage.cpp
+    settings/settingspagebase.cpp)
 
 kde4_add_kcfg_files(kcm_dolphinviewmodes_PART_SRCS
     settings/dolphin_columnmodesettings.kcfgc
@@ -193,18 +197,26 @@ kde4_add_kcfg_files(kcm_dolphinviewmodes_PART_SRCS
     settings/dolphin_iconsmodesettings.kcfgc
     settings/dolphin_generalsettings.kcfgc)
 
+kde4_add_kcfg_files(kcm_dolphinnavigation_PART_SRCS
+    settings/dolphin_generalsettings.kcfgc)
+
 kde4_add_plugin(kcm_dolphinviewmodes ${kcm_dolphinviewmodes_PART_SRCS})
+kde4_add_plugin(kcm_dolphinnavigation ${kcm_dolphinnavigation_PART_SRCS})
 
 target_link_libraries(kcm_dolphinviewmodes  ${KDE4_KDEUI_LIBS} ${KDE4_KFILE_LIBS} dolphinprivate)
+target_link_libraries(kcm_dolphinnavigation  ${KDE4_KDEUI_LIBS} ${KDE4_KFILE_LIBS} dolphinprivate)
 if (Nepomuk_FOUND)
   target_link_libraries(kcm_dolphinviewmodes ${NEPOMUK_LIBRARIES})
+  target_link_libraries(kcm_dolphinnavigation ${NEPOMUK_LIBRARIES})
 endif (Nepomuk_FOUND)
 
 install(TARGETS kcm_dolphinviewmodes DESTINATION ${PLUGIN_INSTALL_DIR} )
+install(TARGETS kcm_dolphinnavigation DESTINATION ${PLUGIN_INSTALL_DIR} )
 
 ########### install files ###############
 
 install( FILES  dolphin.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
 install( FILES  settings/dolphin_directoryviewpropertysettings.kcfg settings/dolphin_generalsettings.kcfg settings/dolphin_columnmodesettings.kcfg settings/dolphin_iconsmodesettings.kcfg settings/dolphin_detailsmodesettings.kcfg DESTINATION ${KCFG_INSTALL_DIR} )
 install( FILES  dolphinui.rc DESTINATION ${DATA_INSTALL_DIR}/dolphin )
-install( FILES kcmdolphinviewmodes.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
+install( FILES kcm/kcmdolphinviewmodes.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
+install( FILES kcm/kcmdolphinnavigation.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
diff --git a/src/kcm/kcmdolphinnavigation.cpp b/src/kcm/kcmdolphinnavigation.cpp
new file mode 100644 (file)
index 0000000..1cce6d9
--- /dev/null
@@ -0,0 +1,67 @@
+/***************************************************************************
+ *   Copyright (C) 2009 by Peter Penz <peter.penz@gmx.at>                  *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
+ ***************************************************************************/
+
+#include "kcmdolphinnavigation.h"
+
+#include "settings/navigationsettingspage.h"
+
+#include <ktabwidget.h>
+#include <kdialog.h>
+#include <klocale.h>
+#include <kpluginfactory.h>
+#include <kpluginloader.h>
+
+#include <QVBoxLayout>
+
+K_PLUGIN_FACTORY(KCMDolphinNavigationConfigFactory, registerPlugin<DolphinNavigationConfigModule>("dolphinnavigation");)
+K_EXPORT_PLUGIN(KCMDolphinNavigationConfigFactory("kcmdolphinnavigation"))
+
+DolphinNavigationConfigModule::DolphinNavigationConfigModule(QWidget* parent, const QVariantList& args) :
+    KCModule(KCMDolphinNavigationConfigFactory::componentData(), parent),
+    m_navigation(0)
+{
+    Q_UNUSED(args);
+
+    KGlobal::locale()->insertCatalog("dolphinnavigation");
+
+    setButtons(KCModule::Default | KCModule::Help);
+
+    QVBoxLayout* topLayout = new QVBoxLayout(this);
+    topLayout->setMargin(0);
+    topLayout->setSpacing(KDialog::spacingHint());
+
+    m_navigation = new NavigationSettingsPage(this);
+    topLayout->addWidget(m_navigation, 0, 0);
+}
+
+DolphinNavigationConfigModule::~DolphinNavigationConfigModule()
+{
+}
+
+void DolphinNavigationConfigModule::save()
+{
+    m_navigation->applySettings();
+}
+
+void DolphinNavigationConfigModule::defaults()
+{
+    m_navigation->applySettings();
+}
+
+#include "kcmdolphinnavigation.moc"
diff --git a/src/kcm/kcmdolphinnavigation.desktop b/src/kcm/kcmdolphinnavigation.desktop
new file mode 100644 (file)
index 0000000..c64cca1
--- /dev/null
@@ -0,0 +1,16 @@
+Name=Dolphin Navigation
+Comment=This service allows configuration of the Dolphin navigation.
+
+[Desktop Entry]
+Icon=input-mouse
+Type=Service
+X-KDE-ServiceTypes=KCModule
+Exec=kcmshell4 kcmdolphinnavigation
+
+X-KDE-Library=kcm_dolphinnavigation
+X-KDE-PluginKeyword=dolphinnavigation
+X-KDE-ParentApp=kcontrol
+
+Name=Navigation
+Comment=Configure file manager navigation
+X-KDE-Keywords=file manager
diff --git a/src/kcm/kcmdolphinnavigation.h b/src/kcm/kcmdolphinnavigation.h
new file mode 100644 (file)
index 0000000..71715bb
--- /dev/null
@@ -0,0 +1,45 @@
+/***************************************************************************
+ *   Copyright (C) 2009 by Peter Penz <peter.penz@gmx.at>                  *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
+ ***************************************************************************/
+
+#ifndef KCMDOLPHINNAVIGATION_H
+#define KCMDOLPHINNAVIGATION_H
+
+#include <kcmodule.h>
+
+class NavigationSettingsPage;
+
+/**
+ * @brief Allow to configure the Dolphin navigation.
+ */
+class DolphinNavigationConfigModule : public KCModule
+{
+    Q_OBJECT
+
+public:
+    DolphinNavigationConfigModule(QWidget* parent, const QVariantList& args);
+    virtual ~DolphinNavigationConfigModule();
+
+    virtual void save();
+    virtual void defaults();
+
+private:
+    NavigationSettingsPage* m_navigation;
+};
+
+#endif
similarity index 93%
rename from src/kcmdolphinviewmodes.cpp
rename to src/kcm/kcmdolphinviewmodes.cpp
index aee0340de235c2520c31e004aa5c6acaec267d0c..b410708bd1acdb495b31ec97a57b409d2f22152b 100644 (file)
 #include <QPushButton>
 #include <QVBoxLayout>
 
-K_PLUGIN_FACTORY(KCMDolphinConfigFactory, registerPlugin<DolphinViewModesConfigModule>("dolphinviewmodes");)
-K_EXPORT_PLUGIN(KCMDolphinConfigFactory("kcmdolphinviewmodes"))
+K_PLUGIN_FACTORY(KCMDolphinViewModesConfigFactory, registerPlugin<DolphinViewModesConfigModule>("dolphinviewmodes");)
+K_EXPORT_PLUGIN(KCMDolphinViewModesConfigFactory("kcmdolphinviewmodes"))
 
 DolphinViewModesConfigModule::DolphinViewModesConfigModule(QWidget* parent, const QVariantList& args) :
-    KCModule(KCMDolphinConfigFactory::componentData(), parent),
+    KCModule(KCMDolphinViewModesConfigFactory::componentData(), parent),
     m_pages()
 {
     Q_UNUSED(args);
diff --git a/src/kcm/kcmdolphinviewmodes.desktop b/src/kcm/kcmdolphinviewmodes.desktop
new file mode 100644 (file)
index 0000000..91f0eff
--- /dev/null
@@ -0,0 +1,16 @@
+Name=Dolphin View Modes
+Comment=This service allows configuration of the Dolphin view modes.
+
+[Desktop Entry]
+Icon=view-choose
+Type=Service
+X-KDE-ServiceTypes=KCModule
+Exec=kcmshell4 kcmdolphinviewmodes
+
+X-KDE-Library=kcm_dolphinviewmodes
+X-KDE-PluginKeyword=dolphinviewmodes
+X-KDE-ParentApp=kcontrol
+
+Name=View Modes
+Comment=Configure file manager view modes
+X-KDE-Keywords=file manager
similarity index 96%
rename from src/kcmdolphinviewmodes.h
rename to src/kcm/kcmdolphinviewmodes.h
index a04911f4879393974c1871571d48743ae4a41810..fb246d0af095387f5f091464cdd242f0e74974a9 100644 (file)
@@ -17,8 +17,8 @@
  *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
  ***************************************************************************/
 
-#ifndef KCMDOLPHIN_H
-#define KCMDOLPHIN_H
+#ifndef KCMDOLPHINVIEWMODES_H
+#define KCMDOLPHINVIEWMODES_H
 
 #include <kcmodule.h>
 
diff --git a/src/kcmdolphinviewmodes.desktop b/src/kcmdolphinviewmodes.desktop
deleted file mode 100644 (file)
index 46c0b2f..0000000
+++ /dev/null
@@ -1,237 +0,0 @@
-Name=Dolphin
-Name[ar]=دولفين
-Name[bn]=ডলফিন
-Name[fy]=Dolfyn
-Name[gu]=ડોલ્ફિન
-Name[hi]=डॉल्फ़िन
-Name[km]=ឌូហ្វីន
-Name[kn]=ಡಾಲ್ಫಿನ್
-Name[mk]=Делфин
-Name[ml]=ഡോള്‍ഫിന്‍
-Name[mr]=डॉल्फिन
-Name[ne]=डल्फिन
-Name[or]=ଡଲଫିନ
-Name[pa]=ਡਾਲਫਿਨ
-Name[sr]=Делфин
-Name[ta]=டால்பின்
-Name[te]=డాల్ఫిన్
-Name[x-test]=xxDolphinxx
-Comment=This service allows configuration of the Dolphin views.
-Comment[af]=Hierdie diens konfigureer die Dolphin aansigte
-Comment[ar]=هذه الخدمة تتيح التحكم بعروض الدولفين
-Comment[as]=এই সেৱাৰ দ্বাৰা Dolphin প্ৰদৰ্শন ব্যৱস্থা বিন্যাস কৰা যাব ।
-Comment[be@latin]=Hetaja słužba dazvalaje naładžvać vyhlad prahramy „Dolphin”.
-Comment[bg]=Това ви позволява да настроите показването в Dolphin.
-Comment[bn_IN]=এই পরিসেবা দ্বারা Dolphin প্রদর্শন ব্যবস্থা কনফিগার করা যাবে।
-Comment[ca]=Aquest servei permet la configuració de les vistes del Dolphin.
-Comment[cs]=Tato služba umožňuje nastavení pohledů Dolphinu.
-Comment[csb]=Na ùsłëżnota pòzwôlô na kònfigùracëjã wëzdrzatków Dolphina,
-Comment[da]=Denne tjeneste tillader indstilling af Dolphin-visningerne.
-Comment[de]=Mit diesem Dienst können Dolphin-Ansichten eingerichtet werden.
-Comment[el]=Αυτή η υπηρεσία επιτρέπει τη ρύθμιση των προβολών του Dolphin.
-Comment[eo]=Ĉi tiu servo permesas agordon de la Dolphin rigardoj.
-Comment[es]=Este servicio le permite configurar las vistas de Dolphin.
-Comment[et]=See teenus võimaldab seadistada Dolphini vaateid.
-Comment[eu]=Zerbitzu honen bitartez Dolphin ikuspegiak konfigura ditzakezu.
-Comment[fi]=Tämä palvelu sallii Dolphinin näkymien muokkauksen.
-Comment[fr]=Ce service permet de configurer les vues de Dolphin
-Comment[fy]=De tsjinst stiet it ynstellen fan de Dolfynwerjefte ta.
-Comment[ga]=Leis an tseirbhís seo is féidir na hamhairc Dolphin a chumrú.
-Comment[gl]=Este servizo permite configurar as vistas de Dolphin.
-Comment[gu]=આ સેવા ડોલ્ફિન દેખાવોનું રૂપરેખાંકન કરવા દેશે.
-Comment[he]=שירות זה מאפשר תצורה של תצוגות עבור Dolphin
-Comment[hi]=यह सेवा आपको डॉल्फ़िन दृश्य को कॉन्फ़िगर करने देता है.
-Comment[hsb]=Tutón serwis dowoli konfiguraciju napohladow Dolphina.
-Comment[hu]=Ez a szolgáltatás a Dolphin nézeteinek beállítását teszi lehetővé.
-Comment[is]=Þessi þjónusta leyfir stillingar á sýnum Dolphin.
-Comment[it]=Questo servizio permette di configurare le viste di Dolphin.
-Comment[ja]=このサービスで Dolphin のビューを設定できます。
-Comment[kk]=Бұл Dolphin көрінісін баптауға мүмкіндік беретін қызмет.
-Comment[km]=សេវា​នេះ​អនុញ្ញាត​ឲ្យ​កំណត់​រចនាសម្ព័ន្ធ​ទិដ្ឋភាព​ Dolphin ។
-Comment[kn]=ಈ ಸೇವೆಯು ಡಾಲ್ಫಿನ್ ನೋಟಗಳ ಸಂರಚನೆಗೆ ಅನುವುಮಾಡಿಕೊಡುತ್ತದೆ.
-Comment[ko]=이 서비스는 Dolphin의 보기를 설정합니다.
-Comment[ku]=Ev servîs destûrê dide veavakirina xuyakirina Dolphinê.
-Comment[lt]=Ši tarnyba leidžia konfigūruoti Dolphin peržiūros profilius.
-Comment[lv]=Šis serviss atļauj konfigurēt Dolphin skatus.
-Comment[mk]=Овој сервис овозможува конфигурација на прегледите на Делфин.
-Comment[ml]=ഡോള്‍ഫിന്‍ അവതരണരീതി ക്രമീകരിയ്ക്കാന്‍ ഈ സേവനം അനുവദിയ്ക്കുന്നു.
-Comment[mr]=ही सेवा तुम्हाला डॉल्फिन दृश्यचे संयोजन करण्यास मदत करते.
-Comment[nb]=Denne tjenesten tillater konfigurasjon av Dolphin visninger
-Comment[nds]=Mit dissen Deenst laat sik de Dolphin-Ansichten instellen.
-Comment[nl]=Met deze dienst kunt u Dolphin-weergaven instellen.
-Comment[nn]=Denne tenesta let seg setja opp Dolphin-visingar.
-Comment[or]=ଏହି ସର୍ଭିସ ଡଲଫିନ ଦୃଶ୍ୟଗୁଡ଼ିକର ସଂରଚନାକୁ ଅନୁମତି ଦେଇଥାଏ।
-Comment[pa]=ਇਹ ਸਰਵਿਸ ਡਾਲਫਿਨ ਝਲਕ ਦੀ ਸੰਰਚਨਾ ਵਾਸਤੇ ਹੈ।
-Comment[pl]=Ta usługa umożliwia konfigurację widoków Dolphina.
-Comment[pt]=Este serviço permite-lhe configurar as vistas do Dolphin.
-Comment[pt_BR]=Este serviço permite configurar as visualizações do Dolphin.
-Comment[ro]=Acest serviciu permite configurarea vizualizărilor Dolphin.
-Comment[ru]=Эта служба позволяет настраивать виды Dolphin
-Comment[sk]=Táto služba umožňuje konfiguráciu pohľadov v Dolphine.
-Comment[sl]=Ta storitev omogoča nastavitev Dolphinovih prikazov.
-Comment[sr]=Овај сервис омогућава подешавање Делфинових приказа.
-Comment[sr@latin]=Ovaj servis omogućava podešavanje Dolphinovih prikaza.
-Comment[sv]=Den här tjänsten låter dig anpassa vyer i Dolphin.
-Comment[ta]=டால்பின் காட்சிகளை வடிவமைக்க இச்சேவை உதவுகிறது.
-Comment[te]=డాల్ఫిన్ వీక్షణిల యొక్క ఆకృతీకరణను ఈ సేవ అనుమతిస్తుంది.
-Comment[tg]=Ин хидмат танзимоти намоиши Dolphin-ро иҷозат медиҳад.
-Comment[th]=บริการการตั้งค่ามุมมองของ Dolphin
-Comment[tr]=Bu servis Dolphin görünümlerini yapılandırmanızı sağlar.
-Comment[uk]=Ця служба дасть змогу налаштувати перегляди Dolphin.
-Comment[wa]=Ci siervice permet l' apontiaedje des vuwes di Dolhpin.
-Comment[x-test]=xxThis service allows configuration of the Dolphin views.xx
-Comment[zh_CN]=此服务允许您配置 Dolphin 视图。
-Comment[zh_TW]=此服務允許設定 Dolphin 的檢視。
-
-[Desktop Entry]
-Icon=view-choose
-Type=Service
-X-KDE-ServiceTypes=KCModule
-Exec=kcmshell4 kcmdolphin
-
-X-KDE-Library=kcm_dolphin
-X-KDE-PluginKeyword=dolphin
-X-KDE-ParentApp=kcontrol
-
-Name=Views
-Name[af]=Aansigte
-Name[ar]=العروض
-Name[as]=প্ৰদৰ্শন ব্যৱস্থা
-Name[be@latin]=Vyhlady
-Name[bg]=Преглед
-Name[bn]=ভিউ
-Name[bn_IN]=প্রদর্শন ব্যবস্থা
-Name[ca]=Vistes
-Name[cs]=Pohledy
-Name[csb]=Wëzdrzatczi
-Name[da]=Visninger
-Name[de]=Ansichten
-Name[el]=Προβολές
-Name[eo]=Rigardoj
-Name[es]=Vistas
-Name[et]=Vaated
-Name[eu]=Ikuspegiak
-Name[fi]=Näkymät
-Name[fr]=Vues
-Name[fy]=Werjeften
-Name[ga]=Amhairc
-Name[gl]=Vistas
-Name[gu]=દેખાવો
-Name[he]=תצוגות
-Name[hi]=दृश्य
-Name[hr]=Prikazi
-Name[hsb]=Napohlady
-Name[hu]=Nézetek
-Name[is]=Sjónarhorn
-Name[it]=Viste
-Name[ja]=ビュー
-Name[kk]=Көріністер
-Name[km]=មើល
-Name[kn]=ನೋಟಗಳು
-Name[ko]=보기
-Name[ku]=Bergeh
-Name[lt]=Profiliai
-Name[lv]=Skati
-Name[mk]=Прегледи
-Name[ml]=അവതരണരീതി
-Name[mr]=दृश्य
-Name[ms]=Paparan
-Name[nb]=Visninger
-Name[nds]=Ansichten
-Name[nl]=Weergaven
-Name[nn]=Visingar
-Name[or]=ଦୃଶ୍ୟଗୁଡ଼ିକ
-Name[pa]=ਝਲਕ
-Name[pl]=Widoki
-Name[pt]=Janelas
-Name[pt_BR]=Visualizações
-Name[ro]=Vizualizări
-Name[ru]=Представление папок
-Name[sk]=Pohľady
-Name[sl]=Prikazi
-Name[sr]=Прикази
-Name[sr@latin]=Prikazi
-Name[sv]=Vyer
-Name[ta]=காட்சிகள்
-Name[te]=వీక్షణలు
-Name[tg]=Намоиш
-Name[th]=มุมมอง
-Name[tr]=Görünümler
-Name[uk]=Перегляди
-Name[uz]=Koʻrinishlar
-Name[uz@cyrillic]=Кўринишлар
-Name[wa]=Vuwes
-Name[x-test]=xxViewsxx
-Name[zh_CN]=视图
-Name[zh_TW]=檢視
-Comment=Configure file manager settings
-Comment[af]=Konfigureer lêerbestuurder instellings
-Comment[ar]=اضبط إعدادات مدير الملفات
-Comment[as]=নথিপত্ৰ পৰিচালন ব্যৱস্থাৰ বৈশিষ্ট্য বিন্যাস কৰক
-Comment[be@latin]=Naładź kiraŭnika fajłaŭ
-Comment[bg]=Настройване на файловия мениджър
-Comment[bn]=ফাইল ম্যানেজার সেটিংস কনফিগার করুন
-Comment[bn_IN]=ফাইল পরিচালন ব্যবস্থার বৈশিষ্ট্য কনফিগার করুন
-Comment[ca]=Configura les opcions del gestor de fitxers
-Comment[cs]=Nastavení správce souborů
-Comment[csb]=Kònfigùracëjô nastôwù menadżera lopków
-Comment[da]=Opsætning af filhåndtering
-Comment[de]=Einstellungen zum Dateimanager vornehmen
-Comment[el]=Ρύθμιση επιλογών διαχείρισης αρχείων
-Comment[eo]=Agordi la dosieradministrilon
-Comment[es]=Configurar las preferencias gestor de archivos
-Comment[et]=Failihalduri seadistuste seadistamine
-Comment[eu]=Konfiguratu fitxategia arakatzailearen ezarpenak
-Comment[fi]=Muokkaa tiedostonhallinnan asetuksia
-Comment[fr]=Configuration du gestionnaire de fichiers
-Comment[fy]=Hjir kinne jo de triembehear ynstellings fêststelle
-Comment[ga]=Cumraigh socruithe bhainisteoir na gcomhad
-Comment[gl]=Configura as opcións do xestor de ficheiros
-Comment[gu]=ફાઇલ વ્યવસ્થાપક ગોઠવણીઓ રૂપરેખાંકિત કરો
-Comment[he]=הגדרות מנהל הקבצים
-Comment[hi]=फ़ाइल प्रबंधक विन्यास कॉन्फ़िगर करें
-Comment[hr]=Konfiguriranje postavki upravitelja datotekama
-Comment[hsb]=Nastajenja datajoweho managera připrawić
-Comment[hu]=A fájlkezelő beállításai
-Comment[is]=Stilla skráastjóra
-Comment[it]=Configura le impostazioni del gestore dei file
-Comment[ja]=ファイルマネージャの設定
-Comment[kk]=Файл менеджер параметрлерін баптау
-Comment[km]=កំណត់​រចនាសម្ព័ន្ធ​ការ​កំណត់​កម្មវិធី​គ្រប់គ្រង​ឯកសារ
-Comment[kn]=ವ್ಯವಸ್ಥಾಪಕದ ಸಂಯೋಜನೆಗಳನ್ನು ಸಂರಚಿಸು
-Comment[ko]=파일 관리자 설정
-Comment[ku]=Mîhengên gerînendeyê pelan ava bike
-Comment[lt]=Konfigūruokite failų tvarkyklės nustatymus
-Comment[lv]=Konfigurē failu pārvaldnieka iestatījumus
-Comment[mk]=Конфигурирајте ги поставувањата за менаџерот на датотеки
-Comment[ml]=ഫയല്‍ നടത്തിപ്പുകാരന്റെ സജ്ജീകരണങ്ങള്‍ ക്രമീകരിയ്ക്കുക
-Comment[mr]=फाइल व्यवस्थपाक संयक्षेत्रा संयोजीत करा
-Comment[nb]=Tilpass filbehandler oppsettet
-Comment[nds]=Den Dateipleger instellen
-Comment[nl]=Bestandsbeheerder instellen
-Comment[nn]=Set opp filhandsamar
-Comment[or]=ଫାଇଲ ପରିଚାଳକ ବିନ୍ୟାସକୁ ସଂରଚନା କରନ୍ତୁ
-Comment[pa]=ਫਾਇਲ ਮੈਨੇਜਰ ਸੈਟਿੰਗ ਸੰਰਚਨਾ
-Comment[pl]=Konfiguracja ustawień menadżera plików
-Comment[pt]=Configuração as opções do gestor de ficheiros
-Comment[pt_BR]=Configurar opções do gerenciador de arquivos
-Comment[ro]=Configurează gestionarul de fișiere
-Comment[ru]=Настройка параметров менеджера файлов
-Comment[sk]=Nastavenie správcu súborov
-Comment[sl]=Nastavitve upravitelja datotek
-Comment[sr]=Подешавање менаџера фајлова
-Comment[sr@latin]=Podešavanje menadžera fajlova
-Comment[sv]=Anpassa filhanteringsinställningar
-Comment[ta]=கோப்பு மேலாளர் அமைப்புகளை வடிவமை
-Comment[te]=దస్త్ర నిర్వాహకి అమర్పులను ఆకృతీకరించుము
-Comment[tg]=Танзимоти мудири файлҳо
-Comment[th]=ปรับแต่งการตั้งค่าเครื่องมือจัดการแฟ้ม
-Comment[tr]=Dosya yöneticisi ayarlarını yapılandır
-Comment[uk]=Налаштувати параметри менеджера файлів
-Comment[uz]=Fayl boshqaruvchining moslamalarini moslash
-Comment[uz@cyrillic]=Файл бошқарувчининг мосламаларини мослаш
-Comment[wa]=Apontyî les tchuzes do manaedjeu di fitchîs
-Comment[x-test]=xxConfigure file manager settingsxx
-Comment[zh_CN]=配置文件管理器设置
-Comment[zh_TW]=設定檔案管理員
-X-KDE-Keywords=file manager