summaryrefslogtreecommitdiffstats
path: root/lilo-config/kde
diff options
context:
space:
mode:
Diffstat (limited to 'lilo-config/kde')
-rw-r--r--lilo-config/kde/Details.cpp134
-rw-r--r--lilo-config/kde/Details.h61
-rw-r--r--lilo-config/kde/InputBox.cpp43
-rw-r--r--lilo-config/kde/InputBox.h50
-rw-r--r--lilo-config/kde/Makefile.am13
-rw-r--r--lilo-config/kde/kcontrol.cpp87
-rw-r--r--lilo-config/kde/kcontrol.h54
-rw-r--r--lilo-config/kde/lilo.desktop212
8 files changed, 654 insertions, 0 deletions
diff --git a/lilo-config/kde/Details.cpp b/lilo-config/kde/Details.cpp
new file mode 100644
index 0000000..4e19b14
--- /dev/null
+++ b/lilo-config/kde/Details.cpp
@@ -0,0 +1,134 @@
+/* Details.cpp
+**
+** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
+**
+*/
+
+/*
+** 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 in a file called COPYING; if not, write to
+** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+** MA 02110-1301, USA.
+*/
+
+/*
+** Bug reports and questions can be sent to kde-devel@kde.org
+*/
+#include "Details.moc"
+
+#include <qlayout.h>
+#include <qhbox.h>
+#include <qvbox.h>
+#include <qwhatsthis.h>
+#include <qlabel.h>
+#include <ui.h>
+
+Details::Details(liloimage *lilo, QWidget *parent, const char *name, WFlags /* f */)
+ : KDialogBase(parent, name, true, QString::null, Ok|Cancel, Ok, true)
+{
+ l=lilo;
+
+ QVBox *page = makeVBoxMainWidget();
+
+ QHBox *vgab=new QHBox(page);
+ QLabel *vlbl=new QLabel(_("&Graphics mode on text console:"), vgab);
+ vga=new QComboBox(false, vgab);
+ vlbl->setBuddy(vga);
+ QWhatsThis::add(vgab, _("You can select the graphics mode for this kernel here.<br>If you intend to use a VGA graphics mode, you must compile the kernel with support for framebuffer devices. The <i>ask</i> setting brings up a prompt at boot time."));
+ vga->insertItem(_("default"));
+ vga->insertItem(_("ask"));
+ vga->insertItem(_("text 80x25 (0)"));
+ vga->insertItem(_("text 80x50 (1)"));
+ vga->insertItem(_("text 80x43 (2)"));
+ vga->insertItem(_("text 80x28 (3)"));
+ vga->insertItem(_("text 80x30 (4)"));
+ vga->insertItem(_("text 80x34 (5)"));
+ vga->insertItem(_("text 80x60 (6)"));
+ vga->insertItem(_("text 40x25 (7)"));
+ vga->insertItem(_("VGA 640x480, 256 colors (769)"));
+ vga->insertItem(_("VGA 640x480, 32767 colors (784)"));
+ vga->insertItem(_("VGA 640x480, 65536 colors (785)"));
+ vga->insertItem(_("VGA 640x480, 16.7M colors (786)"));
+ vga->insertItem(_("VGA 800x600, 256 colors (771)"));
+ vga->insertItem(_("VGA 800x600, 32767 colors (787)"));
+ vga->insertItem(_("VGA 800x600, 65536 colors (788)"));
+ vga->insertItem(_("VGA 800x600, 16.7M colors (789)"));
+ vga->insertItem(_("VGA 1024x768, 256 colors (773)"));
+ vga->insertItem(_("VGA 1024x768, 32767 colors (790)"));
+ vga->insertItem(_("VGA 1024x768, 65536 colors (791)"));
+ vga->insertItem(_("VGA 1024x768, 16.7M colors (792)"));
+ vga->insertItem(_("VGA 1280x1024, 256 colors (775)"));
+ vga->insertItem(_("VGA 1280x1024, 32767 colors (793)"));
+ vga->insertItem(_("VGA 1280x1024, 65536 colors (794)"));
+ vga->insertItem(_("VGA 1280x1024, 16.7M colors (795)"));
+
+ readonly=new QCheckBox(_("Mount root filesystem &read-only"), page);
+ QWhatsThis::add(readonly, _("Mount the root filesystem for this kernel read-only. Since the init scripts normally take care of remounting the root filesystem in read-write mode after running some checks, this should always be turned on.<br>Don't turn this off unless you know what you're doing."));
+
+ unsafe=new QCheckBox(_("Do not check &partition table"), page);
+ QWhatsThis::add(unsafe, _("This turns off some sanity checks while writing the configuration. This should not be used under \"normal\" circumstances, but it can be useful, for example, by providing the capability of booting from a floppy disk, without having a floppy in the drive every time you run lilo.<br>This sets the <i>unsafe</i> keyword in lilo.conf."));
+
+ QHBox *opts=new QHBox(page);
+ lock=new QCheckBox(_("&Record boot command lines for defaults"), opts);
+ QWhatsThis::add(lock, "<qt>" + _("Checking this box enables automatic recording of boot command lines as the default for the following bootups. This way, lilo \"locks\" on a choice until it is manually overridden.<br>This sets the <b>lock</b> option in lilo.conf"));
+ restricted=new QCheckBox(_("R&estrict parameters"), opts);
+ connect(restricted, SIGNAL(clicked()), SLOT(check_pw()));
+ QWhatsThis::add(restricted, _("If this box is checked, a password (entered below) is required only if any parameters are changed (i.e. the user can boot <i>linux</i>, but not <i>linux single</i> or <i>linux init=/bin/sh</i>).\nThis sets the <b>restricted</b> option in lilo.conf."));
+
+ QHBox *pw=new QHBox(page);
+ use_password=new QCheckBox(_("Require &password:"), pw);
+ connect(use_password, SIGNAL(clicked()), SLOT(check_pw()));
+ password=new QLineEdit(pw);
+ password->setMaxLength(15);
+ password->setEchoMode(QLineEdit::Password);
+ QWhatsThis::add(pw, _("Enter the password required for bootup (if any) here. If <i>restricted</i> above is checked, the password is required for additional parameters only.<br><b>WARNING:</b> The password is stored in clear text in /etc/lilo.conf. You'll want to make sure nobody untrusted can read this file. Also, you probably don't want to use your normal/root password here."));
+
+ if(l) {
+ QString mode=l->get("vga", "").cstr();
+ if(mode.isEmpty())
+ vga->setCurrentItem(0);
+ else if(mode=="ask")
+ vga->setCurrentItem(1);
+ else
+ for(int i=0; i<vga->count(); i++) {
+ if(vga->text(i).contains("(" + mode + ")")) {
+ vga->setCurrentItem(i);
+ break;
+ }
+ }
+ readonly->setChecked(!l->grep("[ \t]*read-only[ \t]*").empty());
+ unsafe->setChecked(!l->grep("[ \t]*unsafe[ \t]*").empty());
+ lock->setChecked(!l->grep("[ \t]*lock[ \t]*").empty());
+ restricted->setChecked(!l->grep("[ \t]*restricted[ \t]*").empty());
+ password->setText(l->get("password").cstr());
+ }
+
+ check_pw();
+}
+
+void Details::check_pw()
+{
+ password->setEnabled(restricted->isChecked() || use_password->isChecked());
+}
+
+QString Details::vgaMode() const
+{
+ QString s=vga->currentText();
+ if(s=="default")
+ return "";
+ else if(s!="ask") {
+ s=s.mid(s.find('(')+1);
+ s=s.left(s.length()-1);
+ }
+ return s;
+}
diff --git a/lilo-config/kde/Details.h b/lilo-config/kde/Details.h
new file mode 100644
index 0000000..e752f0b
--- /dev/null
+++ b/lilo-config/kde/Details.h
@@ -0,0 +1,61 @@
+/* Details.h
+**
+** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
+**
+*/
+
+/*
+** 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 in a file called COPYING; if not, write to
+** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+** MA 02110-1301, USA.
+*/
+
+/*
+** Bug reports and questions can be sent to kde-devel@kde.org
+*/
+
+#ifndef _DETAILS_H_
+#define _DETAILS_H_ 1
+
+#include <lilo.h>
+#include <kdialogbase.h>
+#include <qcheckbox.h>
+#include <qcombobox.h>
+#include <qlineedit.h>
+
+class Details:public KDialogBase
+{
+ Q_OBJECT
+public:
+ Details(liloimage *lilo, QWidget *parent=0, const char *name=0, WFlags f=0);
+ bool isReadOnly() const { return readonly->isChecked(); };
+ QString vgaMode() const;
+ bool isUnsafe() const { return unsafe->isChecked(); };
+ bool isLocked() const { return lock->isChecked(); };
+ bool isRestricted() const { return restricted->isChecked(); };
+ bool usePassword() const { return use_password->isChecked(); };
+ QString Password() const { return password->text(); };
+private slots:
+ void check_pw();
+private:
+ liloimage *l;
+ QCheckBox *readonly;
+ QComboBox *vga;
+ QCheckBox *unsafe;
+ QCheckBox *lock;
+ QCheckBox *restricted;
+ QCheckBox *use_password;
+ QLineEdit *password;
+};
+#endif
diff --git a/lilo-config/kde/InputBox.cpp b/lilo-config/kde/InputBox.cpp
new file mode 100644
index 0000000..a338c20
--- /dev/null
+++ b/lilo-config/kde/InputBox.cpp
@@ -0,0 +1,43 @@
+/* InputBox.cpp
+**
+** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
+**
+** Contributions by M. Laurent and W. Bastian.
+**
+*/
+
+/*
+** 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 in a file called COPYING; if not, write to
+** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+** MA 02110-1301, USA.
+*/
+
+/*
+** Bug reports and questions can be sent to kde-devel@kde.org
+*/
+#include "InputBox.moc"
+#include <qvbox.h>
+#include <qwhatsthis.h>
+#include <ui.h>
+
+InputBox::InputBox(entries e, QWidget *parent, const char *name, bool hasCancel, WFlags f)
+ : KDialogBase(parent, name, true, QString::null, hasCancel ? Ok | Cancel : Ok, Ok, true )
+{
+ QVBox *page = makeVBoxMainWidget();
+ for(entries::iterator it=e.begin(); it!=e.end(); it++) {
+ EditWidget *ed=new EditWidget((*it).label, (*it).dflt, (*it).isFile, page);
+ QWhatsThis::add(ed, (*it).help);
+ edit.insert(edit.end(), ed);
+ }
+}
diff --git a/lilo-config/kde/InputBox.h b/lilo-config/kde/InputBox.h
new file mode 100644
index 0000000..d263161
--- /dev/null
+++ b/lilo-config/kde/InputBox.h
@@ -0,0 +1,50 @@
+/* InputBox.h
+**
+** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
+**
+** Contributions by M. Laurent and W. Bastian.
+**
+*/
+
+/*
+** 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 in a file called COPYING; if not, write to
+** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+** MA 02110-1301, USA.
+*/
+
+/*
+** Bug reports and questions can be sent to kde-devel@kde.org
+*/
+#ifndef _INPUTBOX_H_
+#define _INPUTBOX_H_ 1
+
+#include <kdialogbase.h>
+
+#include <qlabel.h>
+#include <qlineedit.h>
+
+#include "EditWidget.h"
+#include <list>
+class InputBox:public KDialogBase
+{
+ Q_OBJECT
+public:
+ typedef struct { QString label; QString dflt; bool isFile; QString help; } entry;
+ typedef std::list<entry> entries;
+ InputBox(entries e, QWidget *parent=0, const char *name=0, bool hasCancel=true, WFlags f=0);
+ QStringList const text() const { QStringList s; for(std::list<EditWidget*>::const_iterator it=edit.begin(); it!=edit.end(); it++) s << (*it)->text(); return s; };
+private:
+ std::list<EditWidget*> edit;
+};
+#endif
diff --git a/lilo-config/kde/Makefile.am b/lilo-config/kde/Makefile.am
new file mode 100644
index 0000000..08c52b8
--- /dev/null
+++ b/lilo-config/kde/Makefile.am
@@ -0,0 +1,13 @@
+INCLUDES= -I$(srcdir)/../common -I$(srcdir)/../kde-qt-common $(all_includes)
+
+kde_module_LTLIBRARIES = kcm_lilo.la
+
+kcm_lilo_la_SOURCES = kcontrol.cpp Details.cpp InputBox.cpp
+kcm_lilo_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
+kcm_lilo_la_LIBADD = ../kde-qt-common/libwidgets.la $(LIB_KIO)
+kcm_lilo_la_METASOURCES = AUTO
+AM_CXXFLAGS = -DUSE_KDE
+
+noinst_HEADERS = Details.h InputBox.h
+
+xdg_apps_DATA = lilo.desktop
diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp
new file mode 100644
index 0000000..2db98af
--- /dev/null
+++ b/lilo-config/kde/kcontrol.cpp
@@ -0,0 +1,87 @@
+/* kcontrol.cpp
+**
+** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
+**
+** Contributions by M. Laurent and W. Bastian.
+**
+*/
+
+/*
+** 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 in a file called COPYING; if not, write to
+** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+** MA 02110-1301, USA.
+*/
+
+/*
+** Bug reports and questions can be sent to kde-devel@kde.org
+*/
+#include "kcontrol.moc"
+#include <mainwidget.h>
+#include <ui.h>
+#include <kglobal.h>
+#include <klocale.h>
+#include <qlayout.h>
+#include <kaboutdata.h>
+#include <unistd.h>
+
+KControl::KControl(QWidget *parent, const char *name)
+ : KCModule(parent, name)
+{
+ QVBoxLayout *layout=new QVBoxLayout(this);
+ m=new MainWidget(this, name);
+ layout->addWidget(m);
+ connect(m, SIGNAL(configChanged()), SLOT(configChanged()));
+ if (getuid() != 0) {
+ m->makeReadOnly();
+ }
+ KAboutData *about = new KAboutData(I18N_NOOP("kcmlilo"), I18N_NOOP("LILO Configuration"),
+ 0, 0, KAboutData::License_GPL,
+ I18N_NOOP("(c) 2000, Bernhard Rosenkraenzer"));
+ about->addAuthor("Bernhard \"Bero\" Rosenkraenzer", 0, "bero@redhat.com");
+ setAboutData(about);
+}
+
+void KControl::load()
+{
+ m->load();
+}
+
+void KControl::save()
+{
+ m->save();
+}
+
+void KControl::defaults()
+{
+ m->defaults();
+}
+
+void KControl::reset()
+{
+ m->reset();
+}
+
+void KControl::configChanged() // SLOT
+{
+ emit changed(true);
+}
+
+extern "C"
+{
+ KDE_EXPORT KCModule *create_lilo(QWidget *parent, const char *name)
+ {
+ return new KControl(parent, "kcmlilo");
+ }
+}
+
diff --git a/lilo-config/kde/kcontrol.h b/lilo-config/kde/kcontrol.h
new file mode 100644
index 0000000..d06d834
--- /dev/null
+++ b/lilo-config/kde/kcontrol.h
@@ -0,0 +1,54 @@
+/* kcontrol.h
+**
+** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
+**
+** Contributions by M. Laurent and W. Bastian.
+**
+*/
+
+/*
+** 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 in a file called COPYING; if not, write to
+** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+** MA 02110-1301, USA.
+*/
+
+#ifndef _KCONTROL_H_
+#define _KCONTROL_H_
+
+/*
+** Bug reports and questions can be sent to kde-devel@kde.org
+*/
+#include <qwidget.h>
+#include <qevent.h>
+#include <kcmodule.h>
+#include "mainwidget.h"
+
+class KAboutData;
+
+class KControl: public KCModule {
+ Q_OBJECT
+public:
+ KControl(QWidget *parent, const char *name);
+ void load();
+ void save();
+ void defaults();
+ void reset();
+public slots:
+ void configChanged();
+private:
+ MainWidget *m;
+};
+
+#endif
+
diff --git a/lilo-config/kde/lilo.desktop b/lilo-config/kde/lilo.desktop
new file mode 100644
index 0000000..cd1c7ba
--- /dev/null
+++ b/lilo-config/kde/lilo.desktop
@@ -0,0 +1,212 @@
+[Desktop Entry]
+Exec=kcmshell lilo
+Icon=hdd_unmount
+Type=Application
+
+X-KDE-ModuleType=Library
+X-KDE-Library=lilo
+X-KDE-RootOnly=true
+X-KDE-HasReadOnlyMode=false
+
+Name=Boot Manager (LILO)
+Name[af]=Boot Bestuurder (Lilo)
+Name[ar]=مدير إنطلاق النظام (LILO)
+Name[az]=Açılış İdarəçisi (LILO)
+Name[be]=Кіраўнік загрузкі LILO
+Name[bg]=Стартиране
+Name[bn]=বুট ম্যানেজার (LILO)
+Name[br]=C'Harger loc'hañ (LILO)
+Name[ca]=Gestor d'arrencada (LILO)
+Name[cs]=Správce spuštění (LILO)
+Name[cy]=Rheolydd Cychwyn (LILO)
+Name[da]=Boothåndtering (LILO)
+Name[de]=Bootmanager (Lilo)
+Name[el]=Διαχειριστής Εκκίνησης (LILO)
+Name[eo]=Linukslanĉilo (LILO)
+Name[es]=Administrador de arranque (LILO)
+Name[et]=Alglaadur (LILO)
+Name[eu]=Letra-tipoen kudeatzailea
+Name[fa]=مدیر راه‌اندازی (LILO)
+Name[fi]=Käynnistyksenhallinta (LILO)
+Name[fo]=Sjálvbyrjarahandfarari (LILO)
+Name[fr]=Gestionnaire de démarrage (LILO)
+Name[ga]=Bainisteoir Tosaithe (LILO)
+Name[gl]=Xestor de Arranque (LILO)
+Name[he]=מנהל האתחול (LILO)
+Name[hi]=बूट प्रबंधक (लिलो)
+Name[hr]=Upravljanje pokretanjem (LILO)
+Name[hu]=Rendszerindító (LILO)
+Name[id]=Manajer Boot (LILO)
+Name[is]=Ræsistjóri (LILO)
+Name[it]=Gestore di avvio (LILO)
+Name[ja]=ブートマネージャ (LILO)
+Name[ka]=ჩატვირთვის მმართველი (LILO)
+Name[kk]=Жүктеуіш (LILO)
+Name[km]=កម្មវិធី​គ្រប់គ្រង​ការ​ចាប់ផ្ដើម​ឡើង​វិញ (LILO)
+Name[ko]=부트 관리자 (LILO)
+Name[lt]=Užkrovos tvarkyklė (LILO)
+Name[lv]=Sāknēšanas Menedžeris (LILO)
+Name[mn]=Бүүт Менежер (Лило)
+Name[ms]=Pengurus Boot (LILO)
+Name[nb]=Oppstartsbehandler (LILO)
+Name[nds]=Systeemstart-Pleger (LILO)
+Name[ne]=बुट प्रबन्धक (एलआईएलओ)
+Name[nl]=Opstartbeheerder (LILO)
+Name[nn]=Oppstartshandsamar (LILO)
+Name[pa]=ਬੂਟ ਪਰਬੰਧਕ (LILO)
+Name[pl]=Uruchamianie systemu (LILO)
+Name[pt]=Gestor de Arranque (LILO)
+Name[pt_BR]=Gerenciador de Inicialização (LILO)
+Name[ro]=Manager de boot-are (LILO)
+Name[ru]=Загрузчик LILO
+Name[se]=Vuolggahangieđahalli (LILO)
+Name[sk]=Správca bootovania (LILO)
+Name[sl]=Upravljalnik zagona (LILO)
+Name[sr]=Бут менаџер (LILO)
+Name[sr@Latn]=But menadžer (LILO)
+Name[sv]=Starthanterare (Lilo)
+Name[ta]=ஆரம்ப இயக்க மேலாளர்(LILO)
+Name[tg]=Роҳбари Пурборкардан (LILO)
+Name[th]=จัดการการบูต (LILO)
+Name[tr]=Açılış Yöneticisi (LILO)
+Name[uk]=Менеджер завантаження (LILO)
+Name[ven]=Muranga phanda wa Butu (LILO)
+Name[vi]=Bộ quản lý khởi động (LILO)
+Name[wa]=Apontiaedje del enondrece (LILO)
+Name[xh]=Umphathi wesiNgxobo (LILO)
+Name[zh_CN]=启动管理器(LILO)
+Name[zh_HK]=開機管理員(LILO)
+Name[zh_TW]=開機啟動管理程式(LILO)
+Name[zu]=Umphathi Wesingxobo (LILO)
+Comment=Configure LILO (the Linux boot manager)
+Comment[af]=Konfigureer Lilo (die Linux boot bestuurder)
+Comment[ar]=إعدادات LILO (مدير إنطلاق نظام لينكس)
+Comment[az]=LILO Qurğuları (Linuks açılış idarəçisi)
+Comment[be]=Наставіць LILO (кіраўнік загрузкі Linux)
+Comment[bg]=Графично настройване на първоначалното зареждането на Линукс
+Comment[bn]=LILO (লিনাক্স বুট ম্যানেজার) কনফিগার করে
+Comment[br]=Kefluniañ LILO (ar c'harger loc'hañ evit Linux)
+Comment[bs]=Podesi LILO (Linux boot manager)
+Comment[ca]=Aquí podreu configurar el LILO (el gestor d'arrencada de Linux)
+Comment[cs]=Zde je možné nastavit LILO (LInux LOader)
+Comment[cy]=Ffurfweddu LILO (rheolydd cychwyn Linux)
+Comment[da]=Indstil LILO (Linux-boothåndtering)
+Comment[de]=Hier können Sie Lilo (den Bootmanager von Linux) einrichten
+Comment[el]=Ρύθμιση LILO (Ο διαχειριστής εκκίνησης του Linux)
+Comment[eo]=Agordu LILOn (la Linukslanĉilon)
+Comment[es]=Configurar LILO (el administrador de arranque de Linux)
+Comment[et]=Linuxi alglaaduri LILO seadistamine
+Comment[eu]=LILO konfiguratu (Linuxen abikoko kudeatzailea)
+Comment[fa]=پیکربندی LILO (مدیر راه‌اندازی لینوکس)
+Comment[fi]=Aseta LILO:a (Linuxin käynnistysmanageri)
+Comment[fr]=Configuration de LILO (le gestionnaire de démarrage de Linux)
+Comment[ga]=Cumraigh LILO (bainisteoir tosaithe Linux)
+Comment[gl]=Configurar LILO (O xestor de arranque de linux)
+Comment[he]=שינוי הגדרות LILO (מנהל האתחול של לינוקס)
+Comment[hi]=लिलो कॉन्फ़िगर करें (लिनक्स बूट प्रबंधक)
+Comment[hr]=Konfigurirajte LILO (Linux upravitelj pokretanja sustava)
+Comment[hu]=a LILO beállításai
+Comment[is]=Stilla LILO (Linux ræsistjórann)
+Comment[it]=Configura LILO (il gestore dell'avvio di Linux)
+Comment[ja]=LILO (Linux ブートマネージャ) の設定
+Comment[ka]=LILO-ს კონფიგურაცია (ლინუქსის ჩატვირთვის მმართველი)
+Comment[kk]=LILO (Linux жүктеуішін) баптауы
+Comment[km]=កំណត់​រចនា​សម្ព័ន្ធ LILO (កម្មវិធី​គ្រប់គ្រង​ការ​ចាប់ផ្ដើម​ឡើង​វិញ​លីនុច)
+Comment[ko]=LILO(리눅스 부트 관리자) 설정
+Comment[lt]=Konfigūruoti LILO (Linux užkrovos tvarkyklę)
+Comment[mk]=Конфигурирајте го LILO (менаџерот за подигање на Линукс)
+Comment[mn]=Лило (Линүкс эхлүүлэгч менежер) Тохируулах
+Comment[ms]=Selaraskan LILO (pengurus boot Linux)
+Comment[mt]=Ikkonfigura l-LILO (Linux Loader)
+Comment[nb]=Her kan du sette opp LILO (Linux oppstartssystem)
+Comment[nds]=LILO (Systeemstart-Pleger vun Linux) instellen
+Comment[ne]=एलआईएलओ कन्फिगर गर्नुहोस् (लिनक्स बुट प्रबन्धक)
+Comment[nl]=Lilo (Linux Opstartmanager) instellen
+Comment[nn]=LILO-oppsett (Linux-oppstartssystemet)
+Comment[pa]=LILO ਸੰਰਚਨਾ(ਲੀਨਕਸ ਬੂਟ ਪਰਬੰਧਕ)
+Comment[pl]=Konfiguracja LILO (menedżera rozruchu systemu w Linuksie)
+Comment[pt]=Configuração do LILO (o gestor de arranque do Linux)
+Comment[pt_BR]=Configura o LILO (o gerenciador de boot do Linux)
+Comment[ro]=Configurează managerul de boot-are LILO
+Comment[ru]=Утилита настройки LILO (менеджера загрузки Linux)
+Comment[se]=Heivet LILO (Linux-vuolggahanvuogádaga)
+Comment[sk]=Nastavenie LILO (správca bootovania pre Linux)
+Comment[sl]=Nastavitve LILO (zagonski upravljalnik za Linux)
+Comment[sr]=Подесите LILO (Линукс бут менаџер)
+Comment[sr@Latn]=Podesite LILO (Linuks but menadžer)
+Comment[sv]=Anpassa Lilo (starthanterare för Linux)
+Comment[ta]=வடிவமை LILO(லினக்ஸ் இயக்க மேலாளர்)
+Comment[tg]=Танзимоти LILO (Роҳбари Пурборкунии Линукс)
+Comment[th]=ปรับแต่ง LILO (เครื่องมือจัดการการบูตของลินุกซ์)
+Comment[tr]=LILO'yu Yapılandır
+Comment[uk]=Налаштувати LILO (менеджер завантаження Linux)
+Comment[ven]=Dzudzanyani LILO (mulanguli wa boot ya Linux)
+Comment[vi]=Cấu hình LILO (bộ quản lý khởi động Linux)
+Comment[wa]=Chal vos ploz apontyî LILO (l' enondrece Linux)
+Comment[xh]=Qwalalsela LILO (umphathi we boot ye Linux)
+Comment[zh_CN]=配置 LILO (Linux 启动管理程序)
+Comment[zh_HK]=設定 LILO (Linux 的開機管理員)
+Comment[zh_TW]=你可在此設定 LILO (Linux 的開機管理程式)
+
+Keywords=lilo,boot,bootup,boot manager,linux,Other OS,MBR,startup,start
+Keywords[ar]=lilo,boot,bootup,مسيير الإقلاع,لينكس,أنظمة التشغيل الأخرى,MBR,بدء التشغيل,إبدء
+Keywords[az]=lilo,açılış,başlanğıc,açılış idarəçisi,linuks,digər əməliyyat sistemləri, MBR
+Keywords[bg]=зареждане, стартиране, сектор, запис, Линукс, ядро, мениджър, lilo, boot, bootup, boot manager, linux, Other OS, MBR, startup, start
+Keywords[bn]= lilo,boot,bootup,boot manager,linux,Other OS,MBR,startup,start
+Keywords[ca]=lilo,arrencada,gestor d'arrencada,linux,d'altres SO,MBR
+Keywords[cs]=Lilo,Boot,Bootup,Boot manager,Linux,Jiný OS,MBR,Startup,Start,Spuštění
+Keywords[cy]=lilo,cychwyn, rheolydd cychwyn, linux, CG Arall, MBR, dechrau
+Keywords[da]=lilo,boot,bootup,boothåndtering,linux,Andet OS,MBR,opstart,start
+Keywords[de]=Lilo,Booten,Linux,MBR,Start,Systemstart,Bootmanager,andere OS
+Keywords[el]=lilo,εκκίνηση,διαδικασία εκκίνησης,διαχειριστής εκκίνησης,linux,Άλλο ΛΣ,MBRδιαδικασία εκκίνησης,εκκίνηση
+Keywords[eo]=lilo,lanĉo,lanĉadministrilo,Linukso,alia operaciumo,MBR,rulo
+Keywords[es]=lilo,arranque,administrador de arranque,linux,Otro SO,MBR,inicio
+Keywords[et]=lilo,boot,bootup,alglaadimine,linux,teine OS,MBR,käivitamine,start
+Keywords[fa]=lilo، راه‌اندازی، راه‌اندازی، مدیر راه‌اندازی، لینوکس، سیستم عامل دیگر، MBR، راه‌اندازی، آغاز
+Keywords[fi]=lilo,boot,bootup,käynnistyksenhallinta,linux,MBR,käynnistys,käynnistä
+Keywords[fo]=lilo,sjálvbyrja,byrja,handfarari,Linux,annað stýrikervi,MBR
+Keywords[fr]=lilo, boot, démarrage, gestionnaire de démarrage, linux, autre OS, MBR
+Keywords[ga]=lilo,tosaigh,tosú,bainisteoir tosaithe,linux,CO eile,MBR,tosú,tús
+Keywords[he]=הפעלה,התחלה,MBR,אתחול,מנהל אתחול,לינוקס,מערכות הפעלה אחרות,רשומת אתחול ראשית,lilo
+Keywords[hi]=लिलो, बूट, बूटअप,बूट प्रबंधक, लिनक्स, अन्य ओएस, एमबीआर, प्रारंभ में, प्रारंभ, शुरू
+Keywords[hr]=lilo,boot,bootup,boot manager,linux,Other OS,MBR,startup,start,pokretanje,početak,počinjanje,ostali OS,upravitelj pokretanjem
+Keywords[hu]=lilo,boot,rendszerindítás,rendszerindítás-kezelő,Linux,más operációs rendszerek,MBR,indulás,start
+Keywords[id]=lilo,boot,bootup,manajer boot,linux,OS Lainnya,MBR,startup,start
+Keywords[is]=lilo,boot,bootup,boot manager,linux,Other OS,MBR,startup,start,ræsa
+Keywords[it]=lilo,boot,boot manager,linux,altri sistemi operativi,MBR,avvio,gestore avvio
+Keywords[ja]=lilo,ブート,ブートマネージャ,linux,他のOS,MBR,起動,開始
+Keywords[ka]=lilo,ჩატვირთვა,ჩატვირთვის მმართველი,linux,სხვა ოს,MBR,შესრულება,დაწყება
+Keywords[km]=lilo,ចាប់ផ្ដើម​ឡើង​វិញ,bootup,កម្មវិធី​គ្រប់គ្រង​ការ​ចាប់ផ្ដើម​ឡើង​វិញ,លីនុច,OS ផ្សេង​ទៀត,MBR,ចាប់ផ្ដើម​ឡើង​វិញ,ចាប់ផ្ដើម
+Keywords[ko]=lilo,부팅,부트로더,리눅스,MBR,시작
+Keywords[lt]=lilo,boot,bootup,boot manager,linux,Other OS,MBR,startup,start,užkrova,krovimasis,kitos OS
+Keywords[lv]=lilo,sāknēt,sāknēšana,sāknēšanas menedžeris,linux,Citas OS,MBR,startēšana,startēt
+Keywords[mk]=lilo,boot,bootup,boot manager,linux,Other OS,MBR,startup,start,подигање,менаџер,линукс,старт
+Keywords[mn]=лило,бүүт,бүүт хийх,бүүт менежер,линүкс,Өөр ҮС,МБР,эхлүүлэх,эхлэл
+Keywords[ms]=lilo,boot,bootup,pengurus boot,linux,OS lain,MBR,startup,mula
+Keywords[nb]=lilo,boot,oppstart,linux,andre operativsystem,MBR,start
+Keywords[nds]=lilo,Systeemstart,boot,hoochfohren,boot manager,Systeemstart-Pleger,linux,Anner BS,MBR,starten,start
+Keywords[ne]=लिलो, बुट, बुटअप, बुट प्रबन्धक, लिनक्स, अन्य ओएस, एमबीआर, सुरुआत, सुरु
+Keywords[nl]=lilo,boot,bootup,boot manager,beheerder,linux,mbr,startup,start, ander besturingssysteem,opstarten,Windows,OS\2,BeOS
+Keywords[nn]=lilo,boot,oppstart,linux,andre operativsystem,MBR,start
+Keywords[pa]=ਲੀਲੋ, ਬੂਟ, ਬੂਟਅੱਪ, ਬੂਟ ਪਰਬੰਧਕ,ਲੀਨਕਸ, ਹੋਰ OS,MBR,ਸ਼ੁਰੂਆਤੀ, ਸ਼ੁਰੂ
+Keywords[pl]=lilo,boot,menedżer,uruchamianie systemu,linux,linuks,inne systemy,MBR,start
+Keywords[pt]=lilo,arranque,gestor de arranque,linux,outro SO,MBR,iniciar,início
+Keywords[pt_BR]=lilo,boot,bootup,gerenciador de boot,linux,outro SO,MBR,inicialização,iniciar
+Keywords[ro]=lilo,boot,boot-are,bootare,manager de boot-are,linux,alte S.O.,MBR,pornire,start
+Keywords[ru]=lilo,boot,bootup,boot manager,linux,Other OS,MBR,загрузка,start
+Keywords[se]=lilo,boot,vuolggaheapmi,linux,eará operatiivavuogádagat,MBR,álggaheapmi
+Keywords[sk]=lilo,boot,bootup,správca bootu,linux,Iný OS,MBR,startup,štart
+Keywords[sl]=lilo,boot,bootup,boot manager,linux,drugi OS,MBR,zagon
+Keywords[sv]=lilo,boot,bootning,bootväljare,linux,Annat OS,MBR,uppstart,start
+Keywords[ta]= லிலோ,துவக்கம்,மேலே துவக்கு,துவக்க மேலாளர்,லினக்ஸ்,மற்ற OS,MBR,துவக்கம்,துவக்கு
+Keywords[th]=lilo,บูต,bootup,เครื่องมือจัดการการบูต,ลินุกซ์,ระบบปฏิบัตการอื่น ๆ,MBR,การเริ่มระบบ,เริ่ม
+Keywords[tr]=lilo,açılış,başlangıç,açılış yöneticisi,linux,diğer işletim sistemleri
+Keywords[uk]=lilo,boot,завантаження,менеджер завантаження,linux,інші ОС,MBR,запуск
+Keywords[ven]=lilo,boot,bootup,boot manager,linux,Other Os,MBR,Mathomoni,Thoma
+Keywords[vi]=lilo,boot,khởi động,bootup,mở máy,quản lý khởi động,boot manager,linux,Other OS,hệ điều hành,HĐH,MBR,khởi chạy,startup,start
+Keywords[wa]=LILO,boot,bootup,linux,Ôtes SO,MBR,startup,start,enondrece,enondaedje
+Keywords[xh]=lilo,isingxobo,faka isingxobo, uphathi wesingxobo,linux,Ezinye OS,MBR,faka isiqalo,qala
+Keywords[zh_CN]=lilo,boot,bootup,boot manager,linux,Other OS,MBR,startup,start,启动,启动管理器,其它操作系统
+Keywords[zu]=lilo,isingxobo,faka isingxobo umphathi wesingxobo,linux,Ezinye OS,MBR,faka isiqalo,qala
+
+Categories=Qt;KDE;Settings;X-KDE-settings-system;