Remove residual support for multiple image package types

We only really support the 'plain' type.  Remove all the conditions on
image type and remove 'plain' from all target and file names.
This commit is contained in:
Ben Hutchings 2016-01-26 23:34:34 +00:00
parent 87a5fb1450
commit 65d6c09bbd
43 changed files with 186 additions and 189 deletions

View File

@ -245,7 +245,6 @@ class Gencontrol(Base):
) )
flavour_makeflags_image = ( flavour_makeflags_image = (
('type', 'TYPE', False),
('install-stem', 'IMAGE_INSTALL_STEM', True), ('install-stem', 'IMAGE_INSTALL_STEM', True),
) )
@ -344,7 +343,7 @@ class Gencontrol(Base):
packages_dummy = [] packages_dummy = []
packages_own = [] packages_own = []
image = self.templates["control.image.type-%s" % config_entry_image['type']] image = self.templates["control.image"]
config_entry_xen = self.config.merge('xen', arch, featureset, flavour) config_entry_xen = self.config.merge('xen', arch, featureset, flavour)
if config_entry_xen: if config_entry_xen:
@ -458,18 +457,17 @@ class Gencontrol(Base):
with codecs.open(target, 'a' if append else 'w', with codecs.open(target, 'a' if append else 'w',
'utf-8') as f: 'utf-8') as f:
f.write(self.substitute(self.templates[template], vars)) f.write(self.substitute(self.templates[template], vars))
if config_entry_image['type'] == 'plain': substitute_file('headers.postinst',
substitute_file('headers.plain.postinst', 'debian/linux-headers-%s%s.postinst' %
'debian/linux-headers-%s%s.postinst' % (vars['abiname'], vars['localversion']))
(vars['abiname'], vars['localversion'])) for name in ['postinst', 'postrm', 'preinst', 'prerm', 'templates']:
for name in ['postinst', 'postrm', 'preinst', 'prerm', 'templates']: substitute_file('image.%s' % name,
substitute_file('image.plain.%s' % name, 'debian/linux-image-%s%s.%s' %
'debian/linux-image-%s%s.%s' % (vars['abiname'], vars['localversion'], name))
(vars['abiname'], vars['localversion'], name)) for path in glob.glob('debian/templates/po/*.po'):
for path in glob.glob('debian/templates/po/*.po'): substitute_file('po/' + os.path.basename(path),
substitute_file('po/' + os.path.basename(path), 'debian/po/' + os.path.basename(path),
'debian/po/' + os.path.basename(path), append=True)
append=True)
if build_debug: if build_debug:
substitute_file('image-dbg.lintian-override', substitute_file('image-dbg.lintian-override',
'debian/linux-image-%s%s-dbg.lintian-overrides' % 'debian/linux-image-%s%s-dbg.lintian-overrides' %

View File

@ -42,7 +42,6 @@ part-long-xen: This kernel also runs on a Xen hypervisor.
[image] [image]
initramfs-generators: initramfs-tools initramfs-fallback initramfs-generators: initramfs-tools initramfs-fallback
type: plain
[relations] [relations]
# compilers # compilers

42
debian/rules.real vendored
View File

@ -58,7 +58,7 @@ ifneq ($(DO_LIBC),False)
binary-arch-arch: install-libc-dev_$(ARCH) binary-arch-arch: install-libc-dev_$(ARCH)
endif endif
binary-arch-featureset: install-headers_$(ARCH)_$(FEATURESET) binary-arch-featureset: install-headers_$(ARCH)_$(FEATURESET)
binary-arch-flavour: install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE) binary-arch-flavour: install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
ifeq ($(DEBUG),True) ifeq ($(DEBUG),True)
binary-arch-flavour: install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR) binary-arch-flavour: install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
endif endif
@ -74,7 +74,7 @@ endif
binary-indep: install-source binary-indep: install-source
binary-indep: install-support binary-indep: install-support
build-arch: $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE) build-arch: $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
setup-flavour: $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR) setup-flavour: $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
@ -164,10 +164,10 @@ endif
+yes "" | $(MAKE_CLEAN) -C '$(SOURCE_DIR)' O='$(CURDIR)/$(DIR)' oldconfig >/dev/null +yes "" | $(MAKE_CLEAN) -C '$(SOURCE_DIR)' O='$(CURDIR)/$(DIR)' oldconfig >/dev/null
@$(stamp) @$(stamp)
$(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE): DIR=$(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR=$(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
$(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE): $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR) $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
$(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain: $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR):
+$(MAKE_CLEAN) -C '$(DIR)' $(BUILD_TARGET) +$(MAKE_CLEAN) -C '$(DIR)' $(BUILD_TARGET)
debian/bin/buildcheck.py $(DIR) $(ARCH) $(FEATURESET) $(FLAVOUR) debian/bin/buildcheck.py $(DIR) $(ARCH) $(FEATURESET) $(FLAVOUR)
@$(stamp) @$(stamp)
@ -276,7 +276,7 @@ install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): SOURCE_DIR = $(BUILD_DIR)/buil
install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): REF_DIR = $(BUILD_DIR)/source_$(FEATURESET) install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): REF_DIR = $(BUILD_DIR)/source_$(FEATURESET)
install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_DIR = debian/$(PACKAGE_NAME) install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_DIR = debian/$(PACKAGE_NAME)
install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR = $(PACKAGE_DIR)/$(BASE_DIR) install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR = $(PACKAGE_DIR)/$(BASE_DIR)
install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE) install-headers_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_prep dh_prep
@ -350,22 +350,22 @@ install-support:
dh_link $(PACKAGE_ROOT) /usr/src/$(PACKAGE_NAME) dh_link $(PACKAGE_ROOT) /usr/src/$(PACKAGE_NAME)
+$(MAKE_SELF) install-base +$(MAKE_SELF) install-base
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE): REAL_VERSION = $(ABINAME)$(LOCALVERSION) install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): REAL_VERSION = $(ABINAME)$(LOCALVERSION)
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE): PACKAGE_NAME = linux-image-$(REAL_VERSION) install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_NAME = linux-image-$(REAL_VERSION)
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE): PACKAGE_DIR = debian/$(PACKAGE_NAME) install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_DIR = debian/$(PACKAGE_NAME)
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE): INSTALL_DIR = $(PACKAGE_DIR)/boot install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): INSTALL_DIR = $(PACKAGE_DIR)/boot
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE): DIR = $(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR = $(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE): DH_OPTIONS = -p$(PACKAGE_NAME) install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DH_OPTIONS = -p$(PACKAGE_NAME)
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE): $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE) install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain: install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR):
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_prep dh_prep
dh_installdirs 'boot' dh_installdirs 'boot'
install -m644 '$(DIR)/$(IMAGE_FILE)' $(INSTALL_DIR)/$(IMAGE_INSTALL_STEM)-$(REAL_VERSION) install -m644 '$(DIR)/$(IMAGE_FILE)' $(INSTALL_DIR)/$(IMAGE_INSTALL_STEM)-$(REAL_VERSION)
+$(MAKE_SELF) \ +$(MAKE_SELF) \
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_dt \ install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_dt \
DIR='$(DIR)' PACKAGE_DIR='$(PACKAGE_DIR)' REAL_VERSION='$(REAL_VERSION)' DIR='$(DIR)' PACKAGE_DIR='$(PACKAGE_DIR)' REAL_VERSION='$(REAL_VERSION)'
+$(MAKE_CLEAN) -C $(DIR) modules_install DEPMOD='$(CURDIR)/debian/bin/no-depmod' INSTALL_MOD_PATH='$(CURDIR)'/$(PACKAGE_DIR) INSTALL_MOD_STRIP=1 +$(MAKE_CLEAN) -C $(DIR) modules_install DEPMOD='$(CURDIR)/debian/bin/no-depmod' INSTALL_MOD_PATH='$(CURDIR)'/$(PACKAGE_DIR) INSTALL_MOD_STRIP=1
ifeq ($(DEBUG),True) ifeq ($(DEBUG),True)
@ -381,15 +381,15 @@ endif
rm $(PACKAGE_DIR)/lib/firmware -rf rm $(PACKAGE_DIR)/lib/firmware -rf
dh_installdebconf dh_installdebconf
+$(MAKE_SELF) \ +$(MAKE_SELF) \
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_bug \ install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_bug \
PACKAGE_DIR='$(PACKAGE_DIR)' PACKAGE_NAME='$(PACKAGE_NAME)' REAL_VERSION='$(REAL_VERSION)' PACKAGE_DIR='$(PACKAGE_DIR)' PACKAGE_NAME='$(PACKAGE_NAME)' REAL_VERSION='$(REAL_VERSION)'
+$(MAKE_SELF) install-base GENCONTROL_ARGS='-Vkernel:Recommends='"$$( \ +$(MAKE_SELF) install-base GENCONTROL_ARGS='-Vkernel:Recommends='"$$( \
if grep -q '^CONFIG_SMP=y' $(DIR)/.config; then \ if grep -q '^CONFIG_SMP=y' $(DIR)/.config; then \
printf irqbalance,; \ printf irqbalance,; \
fi)" fi)"
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_dt: DT_INSTALL_DIR = $(PACKAGE_DIR)/usr/lib/linux-image-$(REAL_VERSION) install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_dt: DT_INSTALL_DIR = $(PACKAGE_DIR)/usr/lib/linux-image-$(REAL_VERSION)
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_dt: install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_dt:
ifneq ($(filter arm64 armel armhf,$(ARCH)),) ifneq ($(filter arm64 armel armhf,$(ARCH)),)
+$(MAKE_CLEAN) -C $(DIR) dtbs +$(MAKE_CLEAN) -C $(DIR) dtbs
+$(MAKE_CLEAN) -C $(DIR) dtbs_install INSTALL_DTBS_PATH=$(CURDIR)/$(DT_INSTALL_DIR) +$(MAKE_CLEAN) -C $(DIR) dtbs_install INSTALL_DTBS_PATH=$(CURDIR)/$(DT_INSTALL_DIR)
@ -401,9 +401,9 @@ ifneq ($(filter powerpc powerpcspe ppc64,$(ARCH)),)
WRAPPER_BINDIR='$(CURDIR)/$(DT_INSTALL_DIR)' WRAPPER_BINDIR='$(CURDIR)/$(DT_INSTALL_DIR)'
endif endif
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_bug: install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_bug:
dh_installdirs usr/share/bug/$(PACKAGE_NAME) dh_installdirs usr/share/bug/$(PACKAGE_NAME)
dh_install debian/templates/image.plain.bug/* usr/share/bug/$(PACKAGE_NAME) dh_install debian/templates/image.bug/* usr/share/bug/$(PACKAGE_NAME)
chmod 755 $(PACKAGE_DIR)/usr/share/bug/$(PACKAGE_NAME)/script chmod 755 $(PACKAGE_DIR)/usr/share/bug/$(PACKAGE_NAME)/script
printf "RELEASE='$(REAL_VERSION)'\nDISTRIBUTOR='$(DISTRIBUTOR)'\nSOURCEVERSION='$(SOURCEVERSION)'\n" > $(PACKAGE_DIR)/usr/share/bug/$(PACKAGE_NAME)/info printf "RELEASE='$(REAL_VERSION)'\nDISTRIBUTOR='$(DISTRIBUTOR)'\nSOURCEVERSION='$(SOURCEVERSION)'\n" > $(PACKAGE_DIR)/usr/share/bug/$(PACKAGE_NAME)/info
@ -413,7 +413,7 @@ install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): PACKAGE_DIR = debian/$(PACKA
install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DEBUG_DIR = $(PACKAGE_DIR)/usr/lib/debug install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DEBUG_DIR = $(PACKAGE_DIR)/usr/lib/debug
install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR = $(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR) install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DIR = $(BUILD_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DH_OPTIONS = -p$(PACKAGE_NAME) install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): DH_OPTIONS = -p$(PACKAGE_NAME)
install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_$(TYPE) install-image-dbg_$(ARCH)_$(FEATURESET)_$(FLAVOUR): $(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_prep dh_prep

View File

@ -1 +1 @@
[type: gettext/rfc822deb] image.plain.templates.in [type: gettext/rfc822deb] image.templates.in

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux-2.6 2.6.32-24\n" "Project-Id-Version: linux-2.6 2.6.32-24\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2013-08-15 13:20+0200\n" "PO-Revision-Date: 2013-08-15 13:20+0200\n"
"Last-Translator: Jordi Mallach <jordi@debian.org>\n" "Last-Translator: Jordi Mallach <jordi@debian.org>\n"
"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
@ -18,13 +18,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Voleu avortar la supressió del nucli?" msgstr "Voleu avortar la supressió del nucli?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -34,7 +34,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -48,7 +48,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -58,13 +58,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -75,7 +75,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux 3.14.12-2\n" "Project-Id-Version: linux 3.14.12-2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-17 11:02+0200\n" "PO-Revision-Date: 2014-07-17 11:02+0200\n"
"Last-Translator: Michal Simunek <michal.simunek@gmail.com>\n" "Last-Translator: Michal Simunek <michal.simunek@gmail.com>\n"
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
@ -18,13 +18,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Přerušit odstraňování jádra?" msgstr "Přerušit odstraňování jádra?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -33,7 +33,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -46,7 +46,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -56,13 +56,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "Pro nahrávání initramfs musí být aktualizováno nastavení zavaděče" msgstr "Pro nahrávání initramfs musí být aktualizováno nastavení zavaděče"
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -78,7 +78,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux\n" "Project-Id-Version: linux\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-20 05:26+0100\n" "PO-Revision-Date: 2014-07-20 05:26+0100\n"
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n" "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
"Language-Team: Danish <debian-l10n-danish@lists.debian.org> \n" "Language-Team: Danish <debian-l10n-danish@lists.debian.org> \n"
@ -18,13 +18,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Afbryd kernefjernelse?" msgstr "Afbryd kernefjernelse?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -34,7 +34,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -47,7 +47,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -57,7 +57,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
"Konfigurationen for opstartsindlæseren skal opdateres for at indlæse " "Konfigurationen for opstartsindlæseren skal opdateres for at indlæse "
@ -65,7 +65,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -81,7 +81,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux 3.14\n" "Project-Id-Version: linux 3.14\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-25 23:06+0200\n" "PO-Revision-Date: 2014-07-25 23:06+0200\n"
"Last-Translator: Holger Wansing <hwansing@mailbox.org>\n" "Last-Translator: Holger Wansing <hwansing@mailbox.org>\n"
"Language-Team: debian-l10n-german@lists.debian.org\n" "Language-Team: debian-l10n-german@lists.debian.org\n"
@ -19,13 +19,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Entfernen des Kernels abbrechen?" msgstr "Entfernen des Kernels abbrechen?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -35,7 +35,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -49,7 +49,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -60,14 +60,14 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
"Bootloader-Konfiguration muss aktualisiert werden, um initramfs zu laden" "Bootloader-Konfiguration muss aktualisiert werden, um initramfs zu laden"
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -84,7 +84,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -31,7 +31,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux-2.6 2.6.32+5\n" "Project-Id-Version: linux-2.6 2.6.32+5\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-24 17:59-0300\n" "PO-Revision-Date: 2014-07-24 17:59-0300\n"
"Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n" "Last-Translator: Matías Bellone <matiasbellone+debian@gmail.com>\n"
"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n" "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
@ -43,13 +43,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "¿Desea cancelar la eliminación del núcleo?" msgstr "¿Desea cancelar la eliminación del núcleo?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -59,7 +59,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -73,7 +73,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -83,7 +83,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
"Se debe actualizar la configuración del gestor de arranque para cargar " "Se debe actualizar la configuración del gestor de arranque para cargar "
@ -91,7 +91,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -107,7 +107,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux 2.6.32-11\n" "Project-Id-Version: linux 2.6.32-11\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2013-08-15 13:20+0200\n" "PO-Revision-Date: 2013-08-15 13:20+0200\n"
"Last-Translator: mihkel <turakas gmail com>\n" "Last-Translator: mihkel <turakas gmail com>\n"
"Language-Team: Estonian <et@li.org>\n" "Language-Team: Estonian <et@li.org>\n"
@ -22,13 +22,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Katkesta tuuma eemaldamine?" msgstr "Katkesta tuuma eemaldamine?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -38,7 +38,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -52,7 +52,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -62,13 +62,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -79,7 +79,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux 3.14.13-2\n" "Project-Id-Version: linux 3.14.13-2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-27 13:57+0200\n" "PO-Revision-Date: 2014-07-27 13:57+0200\n"
"Last-Translator: David Prévot <david@tilapin.org>\n" "Last-Translator: David Prévot <david@tilapin.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@ -20,13 +20,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Abandonner la suppression du noyau ?" msgstr "Abandonner la suppression du noyau ?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -36,7 +36,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -50,7 +50,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -60,7 +60,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
"La configuration du chargeur de démarrage doit être mise à jour pour charger " "La configuration du chargeur de démarrage doit être mise à jour pour charger "
@ -68,7 +68,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -85,7 +85,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux-2.6 2.6.32-27\n" "Project-Id-Version: linux-2.6 2.6.32-27\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2013-08-15 13:21+0200\n" "PO-Revision-Date: 2013-08-15 13:21+0200\n"
"Last-Translator: Luca Bruno <lucab@debian.org>\n" "Last-Translator: Luca Bruno <lucab@debian.org>\n"
"Language-Team: Italian <tp@lists.linux.it>\n" "Language-Team: Italian <tp@lists.linux.it>\n"
@ -18,13 +18,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Interrompere la rimozione del kernel?" msgstr "Interrompere la rimozione del kernel?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -34,7 +34,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -48,7 +48,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -58,13 +58,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -75,7 +75,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux\n" "Project-Id-Version: linux\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-08-03 17:18+0200\n" "PO-Revision-Date: 2014-08-03 17:18+0200\n"
"Last-Translator: Victory <victory.deb@gmail.com>\n" "Last-Translator: Victory <victory.deb@gmail.com>\n"
"Language-Team: Japanese <debian-japanese@lists.debian.org>\n" "Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
@ -20,13 +20,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "カーネルの削除を中止しますか?" msgstr "カーネルの削除を中止しますか?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -36,7 +36,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -50,7 +50,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -60,13 +60,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "initramfs をロードするためにはブートローダ設定を更新する必要があります" msgstr "initramfs をロードするためにはブートローダ設定を更新する必要があります"
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -82,7 +82,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux\n" "Project-Id-Version: linux\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2012-02-04 12:27+0100\n" "PO-Revision-Date: 2012-02-04 12:27+0100\n"
"Last-Translator: willem kuyn <willemkuyn@gmail.com>\n" "Last-Translator: willem kuyn <willemkuyn@gmail.com>\n"
"Language-Team: Debian-Dutch <debian-l10n-dutch@lists.debian.org>\n" "Language-Team: Debian-Dutch <debian-l10n-dutch@lists.debian.org>\n"
@ -18,13 +18,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Het verwijderen van de kernel afbreken?" msgstr "Het verwijderen van de kernel afbreken?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -34,7 +34,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -48,7 +48,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -59,13 +59,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -76,7 +76,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-17 13:34+0200\n" "PO-Revision-Date: 2014-07-17 13:34+0200\n"
"Last-Translator: Łukasz Dulny <bartekchom@poczta.onet.pl>\n" "Last-Translator: Łukasz Dulny <bartekchom@poczta.onet.pl>\n"
"Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n" "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
@ -22,13 +22,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Przerwać usuwanie jądra?" msgstr "Przerwać usuwanie jądra?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -38,7 +38,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -52,7 +52,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -62,7 +62,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
"Konfiguracja programu rozruchowego musi być zaktualizowana, aby wczytać " "Konfiguracja programu rozruchowego musi być zaktualizowana, aby wczytać "
@ -70,7 +70,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -86,7 +86,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux 3.14.12-2\n" "Project-Id-Version: linux 3.14.12-2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-17 19:45+0100\n" "PO-Revision-Date: 2014-07-17 19:45+0100\n"
"Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n" "Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n"
@ -20,13 +20,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Abortar a remoção do kernel?" msgstr "Abortar a remoção do kernel?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -36,7 +36,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -50,7 +50,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -60,7 +60,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
"A configuração do gestor de arranque (boot loader) tem de ser actualizada " "A configuração do gestor de arranque (boot loader) tem de ser actualizada "
@ -68,7 +68,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -84,7 +84,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux 3.10.3-1\n" "Project-Id-Version: linux 3.10.3-1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2013-08-17 14:29+0200\n" "PO-Revision-Date: 2013-08-17 14:29+0200\n"
"Last-Translator: Fernando Ike de Oliveira (fike) <fike@midstorm.org>\n" "Last-Translator: Fernando Ike de Oliveira (fike) <fike@midstorm.org>\n"
"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
@ -22,13 +22,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Cancelar remoção do kernel?" msgstr "Cancelar remoção do kernel?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -38,7 +38,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -52,7 +52,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -62,13 +62,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -79,7 +79,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux 3.14.12-2\n" "Project-Id-Version: linux 3.14.12-2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-17 19:28+0400\n" "PO-Revision-Date: 2014-07-17 19:28+0400\n"
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
@ -21,13 +21,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Прервать удаление ядра?" msgstr "Прервать удаление ядра?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -35,7 +35,7 @@ msgstr "Вы пытаетесь удалить запущенную версию
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -49,7 +49,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -59,14 +59,14 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
"Для загрузки initramfs требуется обновление настроек системного загрузчика" "Для загрузки initramfs требуется обновление настроек системного загрузчика"
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -82,7 +82,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux 3.14.12-2\n" "Project-Id-Version: linux 3.14.12-2\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-18 12:28+0200\n" "PO-Revision-Date: 2014-07-18 12:28+0200\n"
"Last-Translator: Slavko <linux@slavino.sk>\n" "Last-Translator: Slavko <linux@slavino.sk>\n"
"Language-Team: slovenčina <linux@slavino.sk>\n" "Language-Team: slovenčina <linux@slavino.sk>\n"
@ -25,13 +25,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Prerušiť odstraňovanie jadra?" msgstr "Prerušiť odstraňovanie jadra?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -41,7 +41,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -54,7 +54,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -64,14 +64,14 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
"Je potrebné aktualizovať nastavenie zavádzača tak, aby načítal initramfs" "Je potrebné aktualizovať nastavenie zavádzača tak, aby načítal initramfs"
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -87,7 +87,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux\n" "Project-Id-Version: linux\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-18 11:09+0100\n" "PO-Revision-Date: 2014-07-18 11:09+0100\n"
"Last-Translator: Martin Bagge / brother <brother@bsnet.se>\n" "Last-Translator: Martin Bagge / brother <brother@bsnet.se>\n"
"Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n" "Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
@ -19,13 +19,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Avbryt radering av kärnan?" msgstr "Avbryt radering av kärnan?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -35,7 +35,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -49,7 +49,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -59,13 +59,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "Uppstartshanteraren behöver uppdateras för att läsa in initramfs" msgstr "Uppstartshanteraren behöver uppdateras för att läsa in initramfs"
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -81,7 +81,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,13 +19,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "" msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -33,7 +33,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -43,7 +43,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -51,13 +51,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -68,7 +68,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux-2.6 3.2.4-1\n" "Project-Id-Version: linux-2.6 3.2.4-1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2014-07-19 00:28+0200\n" "PO-Revision-Date: 2014-07-19 00:28+0200\n"
"Last-Translator: Mert Dirik <mertdirik@gmail.com>\n" "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n"
"Language-Team: Debian L10n Turkish <debian-l10n-turkish@lists.debian.org>\n" "Language-Team: Debian L10n Turkish <debian-l10n-turkish@lists.debian.org>\n"
@ -19,13 +19,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Çekirdeği kaldırma işlemi iptal edilsin mi?" msgstr "Çekirdeği kaldırma işlemi iptal edilsin mi?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -35,7 +35,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -49,7 +49,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -59,13 +59,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "initramfs'i yüklemek için açılış önyükleyicisi güncellenmeli" msgstr "initramfs'i yüklemek için açılış önyükleyicisi güncellenmeli"
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -82,7 +82,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: linux-2.6 2.6.32-26\n" "Project-Id-Version: linux-2.6 2.6.32-26\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-26 23:13+0000\n" "POT-Creation-Date: 2016-01-26 23:32+0000\n"
"PO-Revision-Date: 2013-08-15 13:21+0200\n" "PO-Revision-Date: 2013-08-15 13:21+0200\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n" "Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
@ -19,13 +19,13 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "Abort kernel removal?" msgid "Abort kernel removal?"
msgstr "Hủy bỏ tiến trình gỡ bỏ hạt nhân ?" msgstr "Hủy bỏ tiến trình gỡ bỏ hạt nhân ?"
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"You are running a kernel (version ${running}) and attempting to remove the " "You are running a kernel (version ${running}) and attempting to remove the "
"same version." "same version."
@ -35,7 +35,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"This can make the system unbootable as it will remove /boot/vmlinuz-" "This can make the system unbootable as it will remove /boot/vmlinuz-"
"${running} and all modules under the directory /lib/modules/${running}. This " "${running} and all modules under the directory /lib/modules/${running}. This "
@ -48,7 +48,7 @@ msgstr ""
#. Type: boolean #. Type: boolean
#. Description #. Description
#: ../image.plain.templates.in:2001 #: ../image.templates.in:2001
msgid "" msgid ""
"It is highly recommended to abort the kernel removal unless you are prepared " "It is highly recommended to abort the kernel removal unless you are prepared "
"to fix the system after removal." "to fix the system after removal."
@ -58,13 +58,13 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "Boot loader configuration must be updated to load initramfs" msgid "Boot loader configuration must be updated to load initramfs"
msgstr "" msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"This kernel package will build an \"initramfs\" file (/boot/initrd.img-" "This kernel package will build an \"initramfs\" file (/boot/initrd.img-"
"@abiname@@localversion@) for the system's boot loader to use in addition to " "@abiname@@localversion@) for the system's boot loader to use in addition to "
@ -75,7 +75,7 @@ msgstr ""
#. Type: note #. Type: note
#. Description #. Description
#: ../image.plain.templates.in:3001 #: ../image.templates.in:3001
msgid "" msgid ""
"The currently running kernel was booted without an initramfs. You should " "The currently running kernel was booted without an initramfs. You should "
"reconfigure the boot loader to load the initramfs for Linux version " "reconfigure the boot loader to load the initramfs for Linux version "