diff options
author | Daniel Baumann <daniel@debian.org> | 2011-07-19 10:51:20 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-07-19 10:51:20 +0200 |
commit | ef2752faab0697cc44036d89a5b4f6e08e3081f3 (patch) | |
tree | fde0ec3d6beaed1fd83f94d2ccf5bbd2ef4aecb2 | |
parent | b22984f698834f1b76af599075e145aab75bdf9a (diff) | |
download | vyos-live-build-ef2752faab0697cc44036d89a5b4f6e08e3081f3.tar.gz vyos-live-build-ef2752faab0697cc44036d89a5b4f6e08e3081f3.zip |
Adding kubuntu mode in order to have different defadefault hooks enabled for ubuntu and kubuntu (needed for #630088).
307 files changed, 535 insertions, 495 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index ffef6c367..77966369e 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -14,7 +14,7 @@ Set_defaults () LB_BASE="${LB_BASE:-/usr/share/live/build}" - # Setting mode (currently: debian, emdebian, progress, and ubuntu) + # Setting mode (currently: debian, emdebian, progress, ubuntu and kubuntu) LB_MODE="${LB_MODE:-debian}" # Setting distribution name @@ -24,7 +24,7 @@ Set_defaults () LB_DERIVATIVE="true" ;; - ubuntu) + ubuntu|kubuntu) LB_DISTRIBUTION="${LB_DISTRIBUTION:-karmic}" LB_DERIVATIVE="false" ;; @@ -140,7 +140,7 @@ Set_defaults () case "${LB_INITRAMFS}" in auto) case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) LB_INITRAMFS="casper" ;; @@ -159,7 +159,7 @@ Set_defaults () # Setting initsystem case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) case "${LB_INITRAMFS}" in live-boot) LB_INITSYSTEM="${LB_INITSYSTEM:-upstart}" @@ -320,7 +320,7 @@ Set_defaults () LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://archive.progress-linux.org/progress/}" ;; - ubuntu) + ubuntu|kubuntu) case "${LB_ARCHITECTURES}" in amd64|i386) LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://archive.ubuntu.com/ubuntu/}" @@ -355,7 +355,7 @@ Set_defaults () LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT}}" ;; - ubuntu) + ubuntu|kubuntu) case "${LB_ARCHITECTURES}" in amd64|i386) LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://security.ubuntu.com/ubuntu/}" @@ -382,7 +382,7 @@ Set_defaults () LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-none}" ;; - ubuntu) + ubuntu|kubuntu) case "${LB_ARCHITECTURES}" in amd64|i386) LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-http://archive.ubuntu.com/ubuntu/}" @@ -436,7 +436,7 @@ Set_defaults () LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_PARENT_MIRROR_BINARY}}" ;; - ubuntu) + ubuntu|kubuntu) case "${LB_ARCHITECTURES}" in amd64|i386) LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://archive.ubuntu.com/ubuntu/}" @@ -468,7 +468,7 @@ Set_defaults () LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_MIRROR_CHROOT}}" ;; - ubuntu) + ubuntu|kubuntu) case "${LB_ARCHITECTURES}" in amd64|i386) LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://security.ubuntu.com/ubuntu/}" @@ -495,7 +495,7 @@ Set_defaults () LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE:-none}" ;; - ubuntu) + ubuntu|kubuntu) case "${LB_ARCHITECTURES}" in amd64|i386) LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-http://archive.ubuntu.com/ubuntu/}" @@ -549,7 +549,7 @@ Set_defaults () LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS:-main}" ;; - ubuntu) + ubuntu|kubuntu) LB_PARENT_ARCHIVE_AREAS="${LB_PARENT_ARCHIVE_AREAS:-main restricted}" LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS:-${LB_PARENT_ARCHIVE_AREAS}}" ;; @@ -581,7 +581,7 @@ Set_defaults () # Setting keyring packages case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-ubuntu-keyring}" ;; @@ -603,7 +603,7 @@ Set_defaults () amd64) case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}" ;; @@ -627,7 +627,7 @@ Set_defaults () esac ;; - ubuntu) + ubuntu|kubuntu) LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}" ;; @@ -673,7 +673,7 @@ Set_defaults () exit 1 ;; - ubuntu) + ubuntu|kubuntu) case "${LIST}" in stripped|minimal) LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-powerpc}" @@ -701,7 +701,7 @@ Set_defaults () s390) case "${LB_MODE}" in - progress|ubuntu) + progress|ubuntu|kubuntu) Echo_error "Architecture ${LB_ARCHITECTURES} not supported in the ${LB_MODE} mode." exit 1 ;; @@ -733,7 +733,7 @@ Set_defaults () # Set linux packages case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) LB_LINUX_PACKAGES="${LB_LINUX_PACKAGES:-linux}" ;; @@ -892,12 +892,20 @@ Set_defaults () ;; usb*) - if [ "${LB_MODE}" = "ubuntu" ] || [ "${LB_DEBIAN_INSTALLER}" = "live" ] - then - _LB_BOOTAPPEND_PRESEED="file=/cdrom/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}" - else - _LB_BOOTAPPEND_PRESEED="file=/hd-media/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}" - fi + case "${LB_MODE}" in + ubuntu|kubuntu) + if [ "${LB_DEBIAN_INSTALLER}" = "live" ] + then + _LB_BOOTAPPEND_PRESEED="file=/cdrom/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}" + else + _LB_BOOTAPPEND_PRESEED="file=/hd-media/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}" + fi + ;; + + *) + _LB_BOOTAPPEND_PRESEED="file=/hd-media/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}" + ;; + esac ;; net) @@ -944,6 +952,10 @@ Set_defaults () ubuntu) LB_ISO_APPLICATION="${LB_ISO_APPLICATION:-Ubuntu Live}" ;; + + kubuntu) + LB_ISO_APPLICATION="${LB_ISO_APPLICATION:-Kubuntu Live}" + ;; esac # Set iso preparer @@ -977,6 +989,10 @@ Set_defaults () ubuntu) LB_ISO_VOLUME="${LB_ISO_VOLUME:-Ubuntu ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)}" ;; + + kubuntu) + LB_ISO_VOLUME="${LB_ISO_VOLUME:-Ubuntu ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)}" + ;; esac # Setting memtest option @@ -984,7 +1000,7 @@ Set_defaults () # Setting win32-loader option case "${LB_MODE}" in - progress|ubuntu) + progress|ubuntu|kubuntu) ;; @@ -1046,6 +1062,10 @@ Set_defaults () LB_USERNAME="${LB_USERNAME:-ubuntu}" ;; + kubuntu) + LB_USERNAME="${LB_USERNAME:-ubuntu}" + ;; + *) LB_USERNAME="${LB_USERNAME:-user}" ;; diff --git a/manpages/de/lb.de.1 b/manpages/de/lb.de.1 index fa7f4ff01..ad009618f 100644 --- a/manpages/de/lb.de.1 +++ b/manpages/de/lb.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb\fP \- wrapper for live\-build programs diff --git a/manpages/de/lb_binary.de.1 b/manpages/de/lb_binary.de.1 index 8fc250951..da4da3db1 100644 --- a/manpages/de/lb_binary.de.1 +++ b/manpages/de/lb_binary.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_checksums.de.1 b/manpages/de/lb_binary_checksums.de.1 index d9a7de76e..18a3c65ba 100644 --- a/manpages/de/lb_binary_checksums.de.1 +++ b/manpages/de/lb_binary_checksums.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_checksums\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_chroot.de.1 b/manpages/de/lb_binary_chroot.de.1 index 5306c27b2..03168b64b 100644 --- a/manpages/de/lb_binary_chroot.de.1 +++ b/manpages/de/lb_binary_chroot.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_chroot\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_debian-installer.de.1 b/manpages/de/lb_binary_debian-installer.de.1 index 915493de3..47d5f7aca 100644 --- a/manpages/de/lb_binary_debian-installer.de.1 +++ b/manpages/de/lb_binary_debian-installer.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_debian\-installer\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_disk.de.1 b/manpages/de/lb_binary_disk.de.1 index fd2e19a1c..498eb98b8 100644 --- a/manpages/de/lb_binary_disk.de.1 +++ b/manpages/de/lb_binary_disk.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_disk\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_grub.de.1 b/manpages/de/lb_binary_grub.de.1 index 095c7a8d2..190c3d22c 100644 --- a/manpages/de/lb_binary_grub.de.1 +++ b/manpages/de/lb_binary_grub.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_grub\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_grub2.de.1 b/manpages/de/lb_binary_grub2.de.1 index e9252504b..2620791e6 100644 --- a/manpages/de/lb_binary_grub2.de.1 +++ b/manpages/de/lb_binary_grub2.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_grub2\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_includes.de.1 b/manpages/de/lb_binary_includes.de.1 index 85a3ec7e8..1a5a5694f 100644 --- a/manpages/de/lb_binary_includes.de.1 +++ b/manpages/de/lb_binary_includes.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_includes\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_iso.de.1 b/manpages/de/lb_binary_iso.de.1 index 16ec7cf92..0bcba976c 100644 --- a/manpages/de/lb_binary_iso.de.1 +++ b/manpages/de/lb_binary_iso.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_iso\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_linux-image.de.1 b/manpages/de/lb_binary_linux-image.de.1 index 98206dec8..8a0318fe4 100644 --- a/manpages/de/lb_binary_linux-image.de.1 +++ b/manpages/de/lb_binary_linux-image.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_linux\-image\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_local-hooks.de.1 b/manpages/de/lb_binary_local-hooks.de.1 index deeaebcb3..88824db47 100644 --- a/manpages/de/lb_binary_local-hooks.de.1 +++ b/manpages/de/lb_binary_local-hooks.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_local\-hooks\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_local-includes.de.1 b/manpages/de/lb_binary_local-includes.de.1 index 041a036ed..070423978 100644 --- a/manpages/de/lb_binary_local-includes.de.1 +++ b/manpages/de/lb_binary_local-includes.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_local\-includes\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_local-packagelists.de.1 b/manpages/de/lb_binary_local-packagelists.de.1 index 94a5ca068..1cc4f13f4 100644 --- a/manpages/de/lb_binary_local-packagelists.de.1 +++ b/manpages/de/lb_binary_local-packagelists.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_local\-packagelists\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_manifest.de.1 b/manpages/de/lb_binary_manifest.de.1 index 9df9e1c5b..076454135 100644 --- a/manpages/de/lb_binary_manifest.de.1 +++ b/manpages/de/lb_binary_manifest.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_manifest\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_memtest.de.1 b/manpages/de/lb_binary_memtest.de.1 index 221591d64..7bdacf0a2 100644 --- a/manpages/de/lb_binary_memtest.de.1 +++ b/manpages/de/lb_binary_memtest.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_memtest\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_net.de.1 b/manpages/de/lb_binary_net.de.1 index d844c31d8..ecec93be0 100644 --- a/manpages/de/lb_binary_net.de.1 +++ b/manpages/de/lb_binary_net.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_net\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_rootfs.de.1 b/manpages/de/lb_binary_rootfs.de.1 index 0aa7a3b94..d3f688b36 100644 --- a/manpages/de/lb_binary_rootfs.de.1 +++ b/manpages/de/lb_binary_rootfs.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_rootfs\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_silo.de.1 b/manpages/de/lb_binary_silo.de.1 index b32c6fd77..548047aa0 100644 --- a/manpages/de/lb_binary_silo.de.1 +++ b/manpages/de/lb_binary_silo.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_silo\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_syslinux.de.1 b/manpages/de/lb_binary_syslinux.de.1 index 50480940e..6035c0d43 100644 --- a/manpages/de/lb_binary_syslinux.de.1 +++ b/manpages/de/lb_binary_syslinux.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_syslinux\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_tar.de.1 b/manpages/de/lb_binary_tar.de.1 index c4cda603a..eae07b2a0 100644 --- a/manpages/de/lb_binary_tar.de.1 +++ b/manpages/de/lb_binary_tar.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_tar\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_usb.de.1 b/manpages/de/lb_binary_usb.de.1 index d8a4e5309..341291f90 100644 --- a/manpages/de/lb_binary_usb.de.1 +++ b/manpages/de/lb_binary_usb.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_usb\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_virtual-hdd.de.1 b/manpages/de/lb_binary_virtual-hdd.de.1 index ba5b39b45..d05fa92ca 100644 --- a/manpages/de/lb_binary_virtual-hdd.de.1 +++ b/manpages/de/lb_binary_virtual-hdd.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_virtual\-hdd\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_win32-loader.de.1 b/manpages/de/lb_binary_win32-loader.de.1 index c7ca020d5..c33cba2f7 100644 --- a/manpages/de/lb_binary_win32-loader.de.1 +++ b/manpages/de/lb_binary_win32-loader.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_win32\-loader\fP \- Complete the binary stage diff --git a/manpages/de/lb_binary_yaboot.de.1 b/manpages/de/lb_binary_yaboot.de.1 index d000fe2d5..34c5192a8 100644 --- a/manpages/de/lb_binary_yaboot.de.1 +++ b/manpages/de/lb_binary_yaboot.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_yaboot\fP \- Complete the binary stage diff --git a/manpages/de/lb_bootstrap.de.1 b/manpages/de/lb_bootstrap.de.1 index 106663dc5..263f8a387 100644 --- a/manpages/de/lb_bootstrap.de.1 +++ b/manpages/de/lb_bootstrap.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap\fP \- Complete the bootstrap stage diff --git a/manpages/de/lb_bootstrap_cache.de.1 b/manpages/de/lb_bootstrap_cache.de.1 index d90ebc9b3..c64c8f117 100644 --- a/manpages/de/lb_bootstrap_cache.de.1 +++ b/manpages/de/lb_bootstrap_cache.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap_cache\fP \- Complete the bootstrap stage diff --git a/manpages/de/lb_bootstrap_cdebootstrap.de.1 b/manpages/de/lb_bootstrap_cdebootstrap.de.1 index 104b7d9a0..d99936d99 100644 --- a/manpages/de/lb_bootstrap_cdebootstrap.de.1 +++ b/manpages/de/lb_bootstrap_cdebootstrap.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap_cdebootstrap\fP \- Complete the bootstrap stage diff --git a/manpages/de/lb_bootstrap_copy.de.1 b/manpages/de/lb_bootstrap_copy.de.1 index 7d03a947e..9fa7f2886 100644 --- a/manpages/de/lb_bootstrap_copy.de.1 +++ b/manpages/de/lb_bootstrap_copy.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap_copy\fP \- Complete the bootstrap stage diff --git a/manpages/de/lb_bootstrap_debootstrap.de.1 b/manpages/de/lb_bootstrap_debootstrap.de.1 index 1875983f8..3e8827b9d 100644 --- a/manpages/de/lb_bootstrap_debootstrap.de.1 +++ b/manpages/de/lb_bootstrap_debootstrap.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap_debootstrap\fP \- Complete the bootstrap stage diff --git a/manpages/de/lb_build.de.1 b/manpages/de/lb_build.de.1 index 2ad381779..de877cbd4 100644 --- a/manpages/de/lb_build.de.1 +++ b/manpages/de/lb_build.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages diff --git a/manpages/de/lb_chroot.de.1 b/manpages/de/lb_chroot.de.1 index d2b7c8870..c7e8c76ac 100644 --- a/manpages/de/lb_chroot.de.1 +++ b/manpages/de/lb_chroot.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_apt.de.1 b/manpages/de/lb_chroot_apt.de.1 index 388e75c89..150ad2113 100644 --- a/manpages/de/lb_chroot_apt.de.1 +++ b/manpages/de/lb_chroot_apt.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_apt\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_archives.de.1 b/manpages/de/lb_chroot_archives.de.1 index 8c21f447f..80f633229 100644 --- a/manpages/de/lb_chroot_archives.de.1 +++ b/manpages/de/lb_chroot_archives.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_archives\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_cache.de.1 b/manpages/de/lb_chroot_cache.de.1 index 288326948..295736d5f 100644 --- a/manpages/de/lb_chroot_cache.de.1 +++ b/manpages/de/lb_chroot_cache.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_cache\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_debianchroot.de.1 b/manpages/de/lb_chroot_debianchroot.de.1 index 80da08323..4ff63dd52 100644 --- a/manpages/de/lb_chroot_debianchroot.de.1 +++ b/manpages/de/lb_chroot_debianchroot.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_debianchroot\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_devpts.de.1 b/manpages/de/lb_chroot_devpts.de.1 index c59f76f7b..b40ad045f 100644 --- a/manpages/de/lb_chroot_devpts.de.1 +++ b/manpages/de/lb_chroot_devpts.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_devpts\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_dpkg.de.1 b/manpages/de/lb_chroot_dpkg.de.1 index d3f40f8f5..090c1202c 100644 --- a/manpages/de/lb_chroot_dpkg.de.1 +++ b/manpages/de/lb_chroot_dpkg.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_dpkg\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_hacks.de.1 b/manpages/de/lb_chroot_hacks.de.1 index 09e61cc1d..a020606b3 100644 --- a/manpages/de/lb_chroot_hacks.de.1 +++ b/manpages/de/lb_chroot_hacks.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_hacks\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_hostname.de.1 b/manpages/de/lb_chroot_hostname.de.1 index 11cd22fe1..09825a5ba 100644 --- a/manpages/de/lb_chroot_hostname.de.1 +++ b/manpages/de/lb_chroot_hostname.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_hostname\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_hosts.de.1 b/manpages/de/lb_chroot_hosts.de.1 index 3e622024f..922daf7eb 100644 --- a/manpages/de/lb_chroot_hosts.de.1 +++ b/manpages/de/lb_chroot_hosts.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_hosts\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_install-packages.de.1 b/manpages/de/lb_chroot_install-packages.de.1 index 4bec49953..6ef75a524 100644 --- a/manpages/de/lb_chroot_install-packages.de.1 +++ b/manpages/de/lb_chroot_install-packages.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_install\-packages\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_interactive.de.1 b/manpages/de/lb_chroot_interactive.de.1 index 31239fd57..d694d6e5f 100644 --- a/manpages/de/lb_chroot_interactive.de.1 +++ b/manpages/de/lb_chroot_interactive.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_interactive\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_linux-image.de.1 b/manpages/de/lb_chroot_linux-image.de.1 index 6aadf5ca9..8867ecfd9 100644 --- a/manpages/de/lb_chroot_linux-image.de.1 +++ b/manpages/de/lb_chroot_linux-image.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_linux\-image\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_local-hooks.de.1 b/manpages/de/lb_chroot_local-hooks.de.1 index b4f06fac8..e1e12ec4e 100644 --- a/manpages/de/lb_chroot_local-hooks.de.1 +++ b/manpages/de/lb_chroot_local-hooks.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-hooks\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_local-includes.de.1 b/manpages/de/lb_chroot_local-includes.de.1 index 6a99e355c..d663e5f5b 100644 --- a/manpages/de/lb_chroot_local-includes.de.1 +++ b/manpages/de/lb_chroot_local-includes.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-includes\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_local-packagelists.de.1 b/manpages/de/lb_chroot_local-packagelists.de.1 index 46509c35a..91013c5e3 100644 --- a/manpages/de/lb_chroot_local-packagelists.de.1 +++ b/manpages/de/lb_chroot_local-packagelists.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-packagelists\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_local-patches.de.1 b/manpages/de/lb_chroot_local-patches.de.1 index a9249b1ff..e577cb36d 100644 --- a/manpages/de/lb_chroot_local-patches.de.1 +++ b/manpages/de/lb_chroot_local-patches.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-patches\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_local-preseed.de.1 b/manpages/de/lb_chroot_local-preseed.de.1 index ad1ccce26..dbc90df86 100644 --- a/manpages/de/lb_chroot_local-preseed.de.1 +++ b/manpages/de/lb_chroot_local-preseed.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-preseed\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_packagelists.de.1 b/manpages/de/lb_chroot_packagelists.de.1 index 2f893fb34..75937e4b8 100644 --- a/manpages/de/lb_chroot_packagelists.de.1 +++ b/manpages/de/lb_chroot_packagelists.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_packagelists\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_packages.de.1 b/manpages/de/lb_chroot_packages.de.1 index 9d55ff4e3..65e1e2754 100644 --- a/manpages/de/lb_chroot_packages.de.1 +++ b/manpages/de/lb_chroot_packages.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_packages\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_preseed.de.1 b/manpages/de/lb_chroot_preseed.de.1 index 2fc726871..62d2aad62 100644 --- a/manpages/de/lb_chroot_preseed.de.1 +++ b/manpages/de/lb_chroot_preseed.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_preseed\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_proc.de.1 b/manpages/de/lb_chroot_proc.de.1 index e85c10013..3c277b396 100644 --- a/manpages/de/lb_chroot_proc.de.1 +++ b/manpages/de/lb_chroot_proc.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_proc\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_resolv.de.1 b/manpages/de/lb_chroot_resolv.de.1 index b3f1dac5e..3e55973cd 100644 --- a/manpages/de/lb_chroot_resolv.de.1 +++ b/manpages/de/lb_chroot_resolv.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_resolv\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_selinuxfs.de.1 b/manpages/de/lb_chroot_selinuxfs.de.1 index 571c71deb..aab03e564 100644 --- a/manpages/de/lb_chroot_selinuxfs.de.1 +++ b/manpages/de/lb_chroot_selinuxfs.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_selinuxfs\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_sysfs.de.1 b/manpages/de/lb_chroot_sysfs.de.1 index 01bb775c3..a42e2cdaf 100644 --- a/manpages/de/lb_chroot_sysfs.de.1 +++ b/manpages/de/lb_chroot_sysfs.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_sysfs\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_sysv-rc.de.1 b/manpages/de/lb_chroot_sysv-rc.de.1 index 855a0e472..a1a2aec16 100644 --- a/manpages/de/lb_chroot_sysv-rc.de.1 +++ b/manpages/de/lb_chroot_sysv-rc.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_sysv\-rc\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_task-lists.de.1 b/manpages/de/lb_chroot_task-lists.de.1 index 97e309f3b..c03314768 100644 --- a/manpages/de/lb_chroot_task-lists.de.1 +++ b/manpages/de/lb_chroot_task-lists.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_task\-lists\fP \- Complete the chroot stage diff --git a/manpages/de/lb_chroot_upstart.de.1 b/manpages/de/lb_chroot_upstart.de.1 index 351eb489c..6440be6d0 100644 --- a/manpages/de/lb_chroot_upstart.de.1 +++ b/manpages/de/lb_chroot_upstart.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_upstart\fP \- Complete the chroot stage diff --git a/manpages/de/lb_clean.de.1 b/manpages/de/lb_clean.de.1 index 51bb9a89d..1c4bb23e2 100644 --- a/manpages/de/lb_clean.de.1 +++ b/manpages/de/lb_clean.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb clean\fP \- Clean build directory diff --git a/manpages/de/lb_config.de.1 b/manpages/de/lb_config.de.1 index ff2e792fc..e3e9a0340 100644 --- a/manpages/de/lb_config.de.1 +++ b/manpages/de/lb_config.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb config\fP \- Create config directory @@ -182,7 +182,7 @@ .br [\fB\-\-mirror\-debian\-installer\fP \fIURL\fP] .br - [\fB\-\-mode\fP debian|emdebian|progress|ubuntu] + [\fB\-\-mode\fP debian|emdebian|progress|ubuntu|kubuntu] .br [\fB\-\-net\-root\-filesystem\fP nfs|cfs] .br diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1 index ff8b70027..62ae4fc2e 100644 --- a/manpages/de/lb_local.de.1 +++ b/manpages/de/lb_local.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb local\fP \- wrapper for local live\-build programs diff --git a/manpages/de/lb_source.de.1 b/manpages/de/lb_source.de.1 index 3a12a5482..f304eb9aa 100644 --- a/manpages/de/lb_source.de.1 +++ b/manpages/de/lb_source.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source\fP \- Complete the source stage diff --git a/manpages/de/lb_source_checksums.de.1 b/manpages/de/lb_source_checksums.de.1 index a9759e827..d18fabce2 100644 --- a/manpages/de/lb_source_checksums.de.1 +++ b/manpages/de/lb_source_checksums.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_checksums\fP \- Complete the source stage diff --git a/manpages/de/lb_source_debian-live.de.1 b/manpages/de/lb_source_debian-live.de.1 index f92a5bf08..1a56f8856 100644 --- a/manpages/de/lb_source_debian-live.de.1 +++ b/manpages/de/lb_source_debian-live.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_debian\-live\fP \- Complete the source stage diff --git a/manpages/de/lb_source_debian.de.1 b/manpages/de/lb_source_debian.de.1 index 776a2f576..103ec8e16 100644 --- a/manpages/de/lb_source_debian.de.1 +++ b/manpages/de/lb_source_debian.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_debian\fP \- Complete the source stage diff --git a/manpages/de/lb_source_disk.de.1 b/manpages/de/lb_source_disk.de.1 index 016140adf..4782f0c78 100644 --- a/manpages/de/lb_source_disk.de.1 +++ b/manpages/de/lb_source_disk.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_disk\fP \- Complete the source stage diff --git a/manpages/de/lb_source_iso.de.1 b/manpages/de/lb_source_iso.de.1 index 0326abf51..cf3607d24 100644 --- a/manpages/de/lb_source_iso.de.1 +++ b/manpages/de/lb_source_iso.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_iso\fP \- Complete the source stage diff --git a/manpages/de/lb_source_net.de.1 b/manpages/de/lb_source_net.de.1 index ece174bad..116248780 100644 --- a/manpages/de/lb_source_net.de.1 +++ b/manpages/de/lb_source_net.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_net\fP \- Complete the source stage diff --git a/manpages/de/lb_source_tar.de.1 b/manpages/de/lb_source_tar.de.1 index 65fb12386..74f55c37f 100644 --- a/manpages/de/lb_source_tar.de.1 +++ b/manpages/de/lb_source_tar.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_tar\fP \- Complete the source stage diff --git a/manpages/de/lb_source_usb.de.1 b/manpages/de/lb_source_usb.de.1 index 51aa45951..d7a6ef90d 100644 --- a/manpages/de/lb_source_usb.de.1 +++ b/manpages/de/lb_source_usb.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_usb\fP \- Complete the source stage diff --git a/manpages/de/lb_source_virtual-hdd.de.1 b/manpages/de/lb_source_virtual-hdd.de.1 index 8d9951011..d681dcc15 100644 --- a/manpages/de/lb_source_virtual-hdd.de.1 +++ b/manpages/de/lb_source_virtual-hdd.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_virtual\-hdd\fP \- Complete the source stage diff --git a/manpages/de/lb_testroot.de.1 b/manpages/de/lb_testroot.de.1 index 6d7f59567..666562e3b 100644 --- a/manpages/de/lb_testroot.de.1 +++ b/manpages/de/lb_testroot.de.1 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb testroot\fP \- Ensure that a system is built as root diff --git a/manpages/de/live-build.de.7 b/manpages/de/live-build.de.7 index 3d81a3fd6..3080c9cb4 100644 --- a/manpages/de/live-build.de.7 +++ b/manpages/de/live-build.de.7 @@ -3,7 +3,7 @@ .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* -.TH LIVE\-BUILD 7 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 7 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlive\-build\fP \- the Debian Live tool suite diff --git a/manpages/en/lb.1 b/manpages/en/lb.1 index fc93d4c8a..f8d2c786c 100644 --- a/manpages/en/lb.1 +++ b/manpages/en/lb.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb\fR \- wrapper for live\-build programs diff --git a/manpages/en/lb_binary.1 b/manpages/en/lb_binary.1 index 0b94ef864..4c909a6c8 100644 --- a/manpages/en/lb_binary.1 +++ b/manpages/en/lb_binary.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_checksums.1 b/manpages/en/lb_binary_checksums.1 index f3e0edaae..a3b0b53fe 100644 --- a/manpages/en/lb_binary_checksums.1 +++ b/manpages/en/lb_binary_checksums.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_checksums\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_chroot.1 b/manpages/en/lb_binary_chroot.1 index 546b8a9b2..dd7a93ecf 100644 --- a/manpages/en/lb_binary_chroot.1 +++ b/manpages/en/lb_binary_chroot.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_chroot\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_debian-installer.1 b/manpages/en/lb_binary_debian-installer.1 index 218bb37d7..5503ae4d3 100644 --- a/manpages/en/lb_binary_debian-installer.1 +++ b/manpages/en/lb_binary_debian-installer.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_debian\-installer\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_disk.1 b/manpages/en/lb_binary_disk.1 index c694e174e..77aaa915f 100644 --- a/manpages/en/lb_binary_disk.1 +++ b/manpages/en/lb_binary_disk.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_disk\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_grub.1 b/manpages/en/lb_binary_grub.1 index aa5a833f8..edbb2732e 100644 --- a/manpages/en/lb_binary_grub.1 +++ b/manpages/en/lb_binary_grub.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_grub\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_grub2.1 b/manpages/en/lb_binary_grub2.1 index 46ed9fd59..f8201b41d 100644 --- a/manpages/en/lb_binary_grub2.1 +++ b/manpages/en/lb_binary_grub2.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_grub2\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_includes.1 b/manpages/en/lb_binary_includes.1 index 22a7257e1..854530e8d 100644 --- a/manpages/en/lb_binary_includes.1 +++ b/manpages/en/lb_binary_includes.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_includes\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_iso.1 b/manpages/en/lb_binary_iso.1 index b295f70b6..e20d5cd44 100644 --- a/manpages/en/lb_binary_iso.1 +++ b/manpages/en/lb_binary_iso.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_iso\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_linux-image.1 b/manpages/en/lb_binary_linux-image.1 index bd26fd2aa..4b65c01f0 100644 --- a/manpages/en/lb_binary_linux-image.1 +++ b/manpages/en/lb_binary_linux-image.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_linux\-image\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_local-hooks.1 b/manpages/en/lb_binary_local-hooks.1 index da62c056e..b77166dd7 100644 --- a/manpages/en/lb_binary_local-hooks.1 +++ b/manpages/en/lb_binary_local-hooks.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_local\-hooks\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_local-includes.1 b/manpages/en/lb_binary_local-includes.1 index 96256c23c..f0776994c 100644 --- a/manpages/en/lb_binary_local-includes.1 +++ b/manpages/en/lb_binary_local-includes.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_local\-includes\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_local-packagelists.1 b/manpages/en/lb_binary_local-packagelists.1 index 3a307f116..780085cb8 100644 --- a/manpages/en/lb_binary_local-packagelists.1 +++ b/manpages/en/lb_binary_local-packagelists.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_local-packagelists\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_manifest.1 b/manpages/en/lb_binary_manifest.1 index ae8be775d..069435ce1 100644 --- a/manpages/en/lb_binary_manifest.1 +++ b/manpages/en/lb_binary_manifest.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_manifest\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_memtest.1 b/manpages/en/lb_binary_memtest.1 index 257a20ee8..f0dab742c 100644 --- a/manpages/en/lb_binary_memtest.1 +++ b/manpages/en/lb_binary_memtest.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_memtest\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_net.1 b/manpages/en/lb_binary_net.1 index a983330c8..9969b6001 100644 --- a/manpages/en/lb_binary_net.1 +++ b/manpages/en/lb_binary_net.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_net\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_rootfs.1 b/manpages/en/lb_binary_rootfs.1 index 8a2ef7910..3f604657d 100644 --- a/manpages/en/lb_binary_rootfs.1 +++ b/manpages/en/lb_binary_rootfs.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_rootfs\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_silo.1 b/manpages/en/lb_binary_silo.1 index b72e04c07..b4a01c009 100644 --- a/manpages/en/lb_binary_silo.1 +++ b/manpages/en/lb_binary_silo.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_silo\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_syslinux.1 b/manpages/en/lb_binary_syslinux.1 index c5839297d..3282d0ad8 100644 --- a/manpages/en/lb_binary_syslinux.1 +++ b/manpages/en/lb_binary_syslinux.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_syslinux\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_tar.1 b/manpages/en/lb_binary_tar.1 index 44f81b06d..7d87140e8 100644 --- a/manpages/en/lb_binary_tar.1 +++ b/manpages/en/lb_binary_tar.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_tar\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_usb.1 b/manpages/en/lb_binary_usb.1 index a6cc801b9..e643608e9 100644 --- a/manpages/en/lb_binary_usb.1 +++ b/manpages/en/lb_binary_usb.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_usb\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_virtual-hdd.1 b/manpages/en/lb_binary_virtual-hdd.1 index d1ff93fb2..460616a0d 100644 --- a/manpages/en/lb_binary_virtual-hdd.1 +++ b/manpages/en/lb_binary_virtual-hdd.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_virtual\-hdd\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_win32-loader.1 b/manpages/en/lb_binary_win32-loader.1 index b0e9665ad..9fb33b752 100644 --- a/manpages/en/lb_binary_win32-loader.1 +++ b/manpages/en/lb_binary_win32-loader.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_win32\-loader\fR \- Complete the binary stage diff --git a/manpages/en/lb_binary_yaboot.1 b/manpages/en/lb_binary_yaboot.1 index df2a93495..078d7d001 100644 --- a/manpages/en/lb_binary_yaboot.1 +++ b/manpages/en/lb_binary_yaboot.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb binary_yaboot\fR \- Complete the binary stage diff --git a/manpages/en/lb_bootstrap.1 b/manpages/en/lb_bootstrap.1 index d3e15bf97..c1a1eaa50 100644 --- a/manpages/en/lb_bootstrap.1 +++ b/manpages/en/lb_bootstrap.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap\fR \- Complete the bootstrap stage diff --git a/manpages/en/lb_bootstrap_cache.1 b/manpages/en/lb_bootstrap_cache.1 index 2b3b6e7ee..2b61578cd 100644 --- a/manpages/en/lb_bootstrap_cache.1 +++ b/manpages/en/lb_bootstrap_cache.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap_cache\fR \- Complete the bootstrap stage diff --git a/manpages/en/lb_bootstrap_cdebootstrap.1 b/manpages/en/lb_bootstrap_cdebootstrap.1 index d2cb340bc..5f2fd3c26 100644 --- a/manpages/en/lb_bootstrap_cdebootstrap.1 +++ b/manpages/en/lb_bootstrap_cdebootstrap.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap_cdebootstrap\fR \- Complete the bootstrap stage diff --git a/manpages/en/lb_bootstrap_copy.1 b/manpages/en/lb_bootstrap_copy.1 index af98f5992..f8cdba14f 100644 --- a/manpages/en/lb_bootstrap_copy.1 +++ b/manpages/en/lb_bootstrap_copy.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap_copy\fR \- Complete the bootstrap stage diff --git a/manpages/en/lb_bootstrap_debootstrap.1 b/manpages/en/lb_bootstrap_debootstrap.1 index 28da43fa7..fad3fc594 100644 --- a/manpages/en/lb_bootstrap_debootstrap.1 +++ b/manpages/en/lb_bootstrap_debootstrap.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb bootstrap_debootstrap\fR \- Complete the bootstrap stage diff --git a/manpages/en/lb_build.1 b/manpages/en/lb_build.1 index 37f7a460c..a728b6ccb 100644 --- a/manpages/en/lb_build.1 +++ b/manpages/en/lb_build.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages diff --git a/manpages/en/lb_chroot.1 b/manpages/en/lb_chroot.1 index 304d3c499..bc029dd36 100644 --- a/manpages/en/lb_chroot.1 +++ b/manpages/en/lb_chroot.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_apt.1 b/manpages/en/lb_chroot_apt.1 index ca55d24d7..88729de09 100644 --- a/manpages/en/lb_chroot_apt.1 +++ b/manpages/en/lb_chroot_apt.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_apt\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_archives.1 b/manpages/en/lb_chroot_archives.1 index 33e888a2d..ffda1ef1d 100644 --- a/manpages/en/lb_chroot_archives.1 +++ b/manpages/en/lb_chroot_archives.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_archives\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_cache.1 b/manpages/en/lb_chroot_cache.1 index bd9bb0140..f9edfbd3a 100644 --- a/manpages/en/lb_chroot_cache.1 +++ b/manpages/en/lb_chroot_cache.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_cache\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_debianchroot.1 b/manpages/en/lb_chroot_debianchroot.1 index 9877f60d3..a71067537 100644 --- a/manpages/en/lb_chroot_debianchroot.1 +++ b/manpages/en/lb_chroot_debianchroot.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_debianchroot\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_devpts.1 b/manpages/en/lb_chroot_devpts.1 index 7655633a0..7624cff8c 100644 --- a/manpages/en/lb_chroot_devpts.1 +++ b/manpages/en/lb_chroot_devpts.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_devpts\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_dpkg.1 b/manpages/en/lb_chroot_dpkg.1 index cc78563b2..62a71995d 100644 --- a/manpages/en/lb_chroot_dpkg.1 +++ b/manpages/en/lb_chroot_dpkg.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_dpkg\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_hacks.1 b/manpages/en/lb_chroot_hacks.1 index f2cf1b6d9..9c31c9cc5 100644 --- a/manpages/en/lb_chroot_hacks.1 +++ b/manpages/en/lb_chroot_hacks.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_hacks\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_hostname.1 b/manpages/en/lb_chroot_hostname.1 index 843b42146..6bca9f3e2 100644 --- a/manpages/en/lb_chroot_hostname.1 +++ b/manpages/en/lb_chroot_hostname.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_hostname\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_hosts.1 b/manpages/en/lb_chroot_hosts.1 index d245fafea..1b0f617c9 100644 --- a/manpages/en/lb_chroot_hosts.1 +++ b/manpages/en/lb_chroot_hosts.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_hosts\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_install-packages.1 b/manpages/en/lb_chroot_install-packages.1 index 249d2b8ab..5347dffb9 100644 --- a/manpages/en/lb_chroot_install-packages.1 +++ b/manpages/en/lb_chroot_install-packages.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_install\-packages\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_interactive.1 b/manpages/en/lb_chroot_interactive.1 index 4db54acde..f837e80a8 100644 --- a/manpages/en/lb_chroot_interactive.1 +++ b/manpages/en/lb_chroot_interactive.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_interactive\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_linux-image.1 b/manpages/en/lb_chroot_linux-image.1 index 614ff2339..cd7822ec5 100644 --- a/manpages/en/lb_chroot_linux-image.1 +++ b/manpages/en/lb_chroot_linux-image.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_linux\-image\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_local-hooks.1 b/manpages/en/lb_chroot_local-hooks.1 index 371fd60b6..f473e5c09 100644 --- a/manpages/en/lb_chroot_local-hooks.1 +++ b/manpages/en/lb_chroot_local-hooks.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-hooks\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_local-includes.1 b/manpages/en/lb_chroot_local-includes.1 index 3c320db83..f3ea5597f 100644 --- a/manpages/en/lb_chroot_local-includes.1 +++ b/manpages/en/lb_chroot_local-includes.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-includes\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_local-packagelists.1 b/manpages/en/lb_chroot_local-packagelists.1 index 92b9f9f23..6ffa1dd2a 100644 --- a/manpages/en/lb_chroot_local-packagelists.1 +++ b/manpages/en/lb_chroot_local-packagelists.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-packagelists\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_local-patches.1 b/manpages/en/lb_chroot_local-patches.1 index 11abcb560..438b9b10e 100644 --- a/manpages/en/lb_chroot_local-patches.1 +++ b/manpages/en/lb_chroot_local-patches.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-patches\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_local-preseed.1 b/manpages/en/lb_chroot_local-preseed.1 index ab34eb608..e68d8d937 100644 --- a/manpages/en/lb_chroot_local-preseed.1 +++ b/manpages/en/lb_chroot_local-preseed.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_local\-preseed\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_packagelists.1 b/manpages/en/lb_chroot_packagelists.1 index 78f71f044..0b0dc4f01 100644 --- a/manpages/en/lb_chroot_packagelists.1 +++ b/manpages/en/lb_chroot_packagelists.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_packagelists\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_packages.1 b/manpages/en/lb_chroot_packages.1 index 83a772bba..e7be78b06 100644 --- a/manpages/en/lb_chroot_packages.1 +++ b/manpages/en/lb_chroot_packages.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_packages\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_preseed.1 b/manpages/en/lb_chroot_preseed.1 index 75d8b9d0b..6c269877c 100644 --- a/manpages/en/lb_chroot_preseed.1 +++ b/manpages/en/lb_chroot_preseed.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_preseed\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_proc.1 b/manpages/en/lb_chroot_proc.1 index cc906174c..fe8ee9cca 100644 --- a/manpages/en/lb_chroot_proc.1 +++ b/manpages/en/lb_chroot_proc.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_proc\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_resolv.1 b/manpages/en/lb_chroot_resolv.1 index 2cdd59ea6..3a123fe91 100644 --- a/manpages/en/lb_chroot_resolv.1 +++ b/manpages/en/lb_chroot_resolv.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_resolv\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_selinuxfs.1 b/manpages/en/lb_chroot_selinuxfs.1 index 05b00b0b4..09fcae39d 100644 --- a/manpages/en/lb_chroot_selinuxfs.1 +++ b/manpages/en/lb_chroot_selinuxfs.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_selinuxfs\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_sysfs.1 b/manpages/en/lb_chroot_sysfs.1 index e93f114da..caf296984 100644 --- a/manpages/en/lb_chroot_sysfs.1 +++ b/manpages/en/lb_chroot_sysfs.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_sysfs\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_sysv-rc.1 b/manpages/en/lb_chroot_sysv-rc.1 index fff286382..e0ed16bd5 100644 --- a/manpages/en/lb_chroot_sysv-rc.1 +++ b/manpages/en/lb_chroot_sysv-rc.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_sysv-rc\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_task-lists.1 b/manpages/en/lb_chroot_task-lists.1 index e1fb76e6f..dc157bc77 100644 --- a/manpages/en/lb_chroot_task-lists.1 +++ b/manpages/en/lb_chroot_task-lists.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_task\-lists\fR \- Complete the chroot stage diff --git a/manpages/en/lb_chroot_upstart.1 b/manpages/en/lb_chroot_upstart.1 index 7c5714c15..03fd33e92 100644 --- a/manpages/en/lb_chroot_upstart.1 +++ b/manpages/en/lb_chroot_upstart.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb chroot_upstart\fR \- Complete the chroot stage diff --git a/manpages/en/lb_clean.1 b/manpages/en/lb_clean.1 index 597cfef79..4032946eb 100644 --- a/manpages/en/lb_clean.1 +++ b/manpages/en/lb_clean.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb clean\fR \- Clean build directory diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1 index a523ff52d..6b59f314e 100644 --- a/manpages/en/lb_config.1 +++ b/manpages/en/lb_config.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb config\fR \- Create config directory @@ -177,7 +177,7 @@ .br [\fB\-\-mirror\-debian\-installer\fR \fIURL\fR] .br - [\fB\-\-mode\fR debian|emdebian|progress|ubuntu] + [\fB\-\-mode\fR debian|emdebian|progress|ubuntu|kubuntu] .br [\fB\-\-net\-root\-filesystem\fR nfs|cfs] .br diff --git a/manpages/en/lb_local.1 b/manpages/en/lb_local.1 index 0cf986b56..9d14feb57 100644 --- a/manpages/en/lb_local.1 +++ b/manpages/en/lb_local.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb local\fR \- wrapper for local live\-build programs diff --git a/manpages/en/lb_source.1 b/manpages/en/lb_source.1 index 3c012f1b5..e8a3efa41 100644 --- a/manpages/en/lb_source.1 +++ b/manpages/en/lb_source.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source\fR \- Complete the source stage diff --git a/manpages/en/lb_source_checksums.1 b/manpages/en/lb_source_checksums.1 index a090095ba..c8ef00e54 100644 --- a/manpages/en/lb_source_checksums.1 +++ b/manpages/en/lb_source_checksums.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_checksums\fR \- Complete the source stage diff --git a/manpages/en/lb_source_debian-live.1 b/manpages/en/lb_source_debian-live.1 index 9e5872470..5e8d32456 100644 --- a/manpages/en/lb_source_debian-live.1 +++ b/manpages/en/lb_source_debian-live.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_debian\-live\fR \- Complete the source stage diff --git a/manpages/en/lb_source_debian.1 b/manpages/en/lb_source_debian.1 index e7cb147dc..cd23fe331 100644 --- a/manpages/en/lb_source_debian.1 +++ b/manpages/en/lb_source_debian.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_debian\fR \- Complete the source stage diff --git a/manpages/en/lb_source_disk.1 b/manpages/en/lb_source_disk.1 index 8c7104a6d..31fa9432b 100644 --- a/manpages/en/lb_source_disk.1 +++ b/manpages/en/lb_source_disk.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_disk\fR \- Complete the source stage diff --git a/manpages/en/lb_source_iso.1 b/manpages/en/lb_source_iso.1 index a4c78130a..26553faf7 100644 --- a/manpages/en/lb_source_iso.1 +++ b/manpages/en/lb_source_iso.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_iso\fR \- Complete the source stage diff --git a/manpages/en/lb_source_net.1 b/manpages/en/lb_source_net.1 index ab59468a0..d183fd50a 100644 --- a/manpages/en/lb_source_net.1 +++ b/manpages/en/lb_source_net.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_net\fR \- Complete the source stage diff --git a/manpages/en/lb_source_tar.1 b/manpages/en/lb_source_tar.1 index db490a568..d516ac08f 100644 --- a/manpages/en/lb_source_tar.1 +++ b/manpages/en/lb_source_tar.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_tar\fR \- Complete the source stage diff --git a/manpages/en/lb_source_usb.1 b/manpages/en/lb_source_usb.1 index 38c11c2bf..5a260985b 100644 --- a/manpages/en/lb_source_usb.1 +++ b/manpages/en/lb_source_usb.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_usb\fR \- Complete the source stage diff --git a/manpages/en/lb_source_virtual-hdd.1 b/manpages/en/lb_source_virtual-hdd.1 index d1a918140..bfe947e5b 100644 --- a/manpages/en/lb_source_virtual-hdd.1 +++ b/manpages/en/lb_source_virtual-hdd.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb source_virtual\-hdd\fR \- Complete the source stage diff --git a/manpages/en/lb_testroot.1 b/manpages/en/lb_testroot.1 index f15df5545..efb9d1255 100644 --- a/manpages/en/lb_testroot.1 +++ b/manpages/en/lb_testroot.1 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 1 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 1 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlb testroot\fR \- Ensure that a system is built as root diff --git a/manpages/en/live-build.7 b/manpages/en/live-build.7 index 6e01e8718..86358f22d 100644 --- a/manpages/en/live-build.7 +++ b/manpages/en/live-build.7 @@ -1,4 +1,4 @@ -.TH LIVE\-BUILD 7 2011\-07\-15 3.0~a25 "Debian Live Project" +.TH LIVE\-BUILD 7 2011\-07\-19 3.0~a25 "Debian Live Project" .SH NAME \fBlive\-build\fR \- the Debian Live tool suite diff --git a/manpages/po/de/lb.1.po b/manpages/po/de/lb.1.po index f5552efaf..40fa8e4fd 100644 --- a/manpages/po/de/lb.1.po +++ b/manpages/po/de/lb.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary.1.po b/manpages/po/de/lb_binary.1.po index 974969aaf..a7a8aa8e2 100644 --- a/manpages/po/de/lb_binary.1.po +++ b/manpages/po/de/lb_binary.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_checksums.1.po b/manpages/po/de/lb_binary_checksums.1.po index f562efb0d..e10e6f89e 100644 --- a/manpages/po/de/lb_binary_checksums.1.po +++ b/manpages/po/de/lb_binary_checksums.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_chroot.1.po b/manpages/po/de/lb_binary_chroot.1.po index 6fbe0bfe9..4d9c81a10 100644 --- a/manpages/po/de/lb_binary_chroot.1.po +++ b/manpages/po/de/lb_binary_chroot.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_debian-installer.1.po b/manpages/po/de/lb_binary_debian-installer.1.po index addb00c5e..4ae801f5d 100644 --- a/manpages/po/de/lb_binary_debian-installer.1.po +++ b/manpages/po/de/lb_binary_debian-installer.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_disk.1.po b/manpages/po/de/lb_binary_disk.1.po index e931b182a..34f6fe4a2 100644 --- a/manpages/po/de/lb_binary_disk.1.po +++ b/manpages/po/de/lb_binary_disk.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_grub.1.po b/manpages/po/de/lb_binary_grub.1.po index cd11240da..eb1aaa919 100644 --- a/manpages/po/de/lb_binary_grub.1.po +++ b/manpages/po/de/lb_binary_grub.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_grub2.1.po b/manpages/po/de/lb_binary_grub2.1.po index 368859743..e2e1421be 100644 --- a/manpages/po/de/lb_binary_grub2.1.po +++ b/manpages/po/de/lb_binary_grub2.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_includes.1.po b/manpages/po/de/lb_binary_includes.1.po index 7b71be1d2..dfa095b4a 100644 --- a/manpages/po/de/lb_binary_includes.1.po +++ b/manpages/po/de/lb_binary_includes.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_iso.1.po b/manpages/po/de/lb_binary_iso.1.po index 06a847d7b..b53624229 100644 --- a/manpages/po/de/lb_binary_iso.1.po +++ b/manpages/po/de/lb_binary_iso.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_linux-image.1.po b/manpages/po/de/lb_binary_linux-image.1.po index 068c4c177..d1499fc44 100644 --- a/manpages/po/de/lb_binary_linux-image.1.po +++ b/manpages/po/de/lb_binary_linux-image.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_local-hooks.1.po b/manpages/po/de/lb_binary_local-hooks.1.po index 583ec0b4c..f083315aa 100644 --- a/manpages/po/de/lb_binary_local-hooks.1.po +++ b/manpages/po/de/lb_binary_local-hooks.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_local-includes.1.po b/manpages/po/de/lb_binary_local-includes.1.po index bdccd55f3..d934ef008 100644 --- a/manpages/po/de/lb_binary_local-includes.1.po +++ b/manpages/po/de/lb_binary_local-includes.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_local-packagelists.1.po b/manpages/po/de/lb_binary_local-packagelists.1.po index ccca5ce85..0b7e128b9 100644 --- a/manpages/po/de/lb_binary_local-packagelists.1.po +++ b/manpages/po/de/lb_binary_local-packagelists.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_manifest.1.po b/manpages/po/de/lb_binary_manifest.1.po index 1f581da6b..13f923bc3 100644 --- a/manpages/po/de/lb_binary_manifest.1.po +++ b/manpages/po/de/lb_binary_manifest.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_memtest.1.po b/manpages/po/de/lb_binary_memtest.1.po index 445d54ba9..b0e7d328c 100644 --- a/manpages/po/de/lb_binary_memtest.1.po +++ b/manpages/po/de/lb_binary_memtest.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_net.1.po b/manpages/po/de/lb_binary_net.1.po index 184297577..792e65852 100644 --- a/manpages/po/de/lb_binary_net.1.po +++ b/manpages/po/de/lb_binary_net.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_rootfs.1.po b/manpages/po/de/lb_binary_rootfs.1.po index 68a621846..8694c98d1 100644 --- a/manpages/po/de/lb_binary_rootfs.1.po +++ b/manpages/po/de/lb_binary_rootfs.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_silo.1.po b/manpages/po/de/lb_binary_silo.1.po index c79ad62ba..693e250ae 100644 --- a/manpages/po/de/lb_binary_silo.1.po +++ b/manpages/po/de/lb_binary_silo.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_syslinux.1.po b/manpages/po/de/lb_binary_syslinux.1.po index 95b3d9d20..81daf1627 100644 --- a/manpages/po/de/lb_binary_syslinux.1.po +++ b/manpages/po/de/lb_binary_syslinux.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_tar.1.po b/manpages/po/de/lb_binary_tar.1.po index 4f7f07ede..2ce0d4cc9 100644 --- a/manpages/po/de/lb_binary_tar.1.po +++ b/manpages/po/de/lb_binary_tar.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_usb.1.po b/manpages/po/de/lb_binary_usb.1.po index f1e3da802..cd3b43fe1 100644 --- a/manpages/po/de/lb_binary_usb.1.po +++ b/manpages/po/de/lb_binary_usb.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_virtual-hdd.1.po b/manpages/po/de/lb_binary_virtual-hdd.1.po index 6901872f3..befa4b5e2 100644 --- a/manpages/po/de/lb_binary_virtual-hdd.1.po +++ b/manpages/po/de/lb_binary_virtual-hdd.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_win32-loader.1.po b/manpages/po/de/lb_binary_win32-loader.1.po index a83f2405b..053ed375b 100644 --- a/manpages/po/de/lb_binary_win32-loader.1.po +++ b/manpages/po/de/lb_binary_win32-loader.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_binary_yaboot.1.po b/manpages/po/de/lb_binary_yaboot.1.po index 88d4e5db5..c13a7feb1 100644 --- a/manpages/po/de/lb_binary_yaboot.1.po +++ b/manpages/po/de/lb_binary_yaboot.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_bootstrap.1.po b/manpages/po/de/lb_bootstrap.1.po index ccf1ea820..56930267c 100644 --- a/manpages/po/de/lb_bootstrap.1.po +++ b/manpages/po/de/lb_bootstrap.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_bootstrap_cache.1.po b/manpages/po/de/lb_bootstrap_cache.1.po index 6a50d2748..602da57e5 100644 --- a/manpages/po/de/lb_bootstrap_cache.1.po +++ b/manpages/po/de/lb_bootstrap_cache.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po index 0c4643c69..9a9831412 100644 --- a/manpages/po/de/lb_bootstrap_cdebootstrap.1.po +++ b/manpages/po/de/lb_bootstrap_cdebootstrap.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_bootstrap_copy.1.po b/manpages/po/de/lb_bootstrap_copy.1.po index 836958d70..0a7e91d6a 100644 --- a/manpages/po/de/lb_bootstrap_copy.1.po +++ b/manpages/po/de/lb_bootstrap_copy.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_bootstrap_debootstrap.1.po b/manpages/po/de/lb_bootstrap_debootstrap.1.po index b96fedc33..aa832874b 100644 --- a/manpages/po/de/lb_bootstrap_debootstrap.1.po +++ b/manpages/po/de/lb_bootstrap_debootstrap.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_build.1.po b/manpages/po/de/lb_build.1.po index f1ee25b4c..864bfe549 100644 --- a/manpages/po/de/lb_build.1.po +++ b/manpages/po/de/lb_build.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot.1.po b/manpages/po/de/lb_chroot.1.po index 11d104fd1..81ba141cd 100644 --- a/manpages/po/de/lb_chroot.1.po +++ b/manpages/po/de/lb_chroot.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_apt.1.po b/manpages/po/de/lb_chroot_apt.1.po index c284d937c..585fcf77d 100644 --- a/manpages/po/de/lb_chroot_apt.1.po +++ b/manpages/po/de/lb_chroot_apt.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_archives.1.po b/manpages/po/de/lb_chroot_archives.1.po index 764ae13ce..ce497c233 100644 --- a/manpages/po/de/lb_chroot_archives.1.po +++ b/manpages/po/de/lb_chroot_archives.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_cache.1.po b/manpages/po/de/lb_chroot_cache.1.po index 46551ece4..e4307248a 100644 --- a/manpages/po/de/lb_chroot_cache.1.po +++ b/manpages/po/de/lb_chroot_cache.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_debianchroot.1.po b/manpages/po/de/lb_chroot_debianchroot.1.po index 88dc34514..f2520d46a 100644 --- a/manpages/po/de/lb_chroot_debianchroot.1.po +++ b/manpages/po/de/lb_chroot_debianchroot.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_devpts.1.po b/manpages/po/de/lb_chroot_devpts.1.po index 7fa58a756..baf1fcf4f 100644 --- a/manpages/po/de/lb_chroot_devpts.1.po +++ b/manpages/po/de/lb_chroot_devpts.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_dpkg.1.po b/manpages/po/de/lb_chroot_dpkg.1.po index fe5da78b8..d62964fe0 100644 --- a/manpages/po/de/lb_chroot_dpkg.1.po +++ b/manpages/po/de/lb_chroot_dpkg.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_hacks.1.po b/manpages/po/de/lb_chroot_hacks.1.po index c8fa16a7f..cd4d345ce 100644 --- a/manpages/po/de/lb_chroot_hacks.1.po +++ b/manpages/po/de/lb_chroot_hacks.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_hostname.1.po b/manpages/po/de/lb_chroot_hostname.1.po index 4bc460da5..9c3be2af2 100644 --- a/manpages/po/de/lb_chroot_hostname.1.po +++ b/manpages/po/de/lb_chroot_hostname.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_hosts.1.po b/manpages/po/de/lb_chroot_hosts.1.po index b085e272c..0d903fe11 100644 --- a/manpages/po/de/lb_chroot_hosts.1.po +++ b/manpages/po/de/lb_chroot_hosts.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_install-packages.1.po b/manpages/po/de/lb_chroot_install-packages.1.po index f10b465ba..9a0cecc79 100644 --- a/manpages/po/de/lb_chroot_install-packages.1.po +++ b/manpages/po/de/lb_chroot_install-packages.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_interactive.1.po b/manpages/po/de/lb_chroot_interactive.1.po index 9b5fd2e9a..fb6bc9d78 100644 --- a/manpages/po/de/lb_chroot_interactive.1.po +++ b/manpages/po/de/lb_chroot_interactive.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_linux-image.1.po b/manpages/po/de/lb_chroot_linux-image.1.po index eb8719970..ae3c3ad72 100644 --- a/manpages/po/de/lb_chroot_linux-image.1.po +++ b/manpages/po/de/lb_chroot_linux-image.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_local-hooks.1.po b/manpages/po/de/lb_chroot_local-hooks.1.po index 3d559bc23..167eb28ee 100644 --- a/manpages/po/de/lb_chroot_local-hooks.1.po +++ b/manpages/po/de/lb_chroot_local-hooks.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_local-includes.1.po b/manpages/po/de/lb_chroot_local-includes.1.po index d36b49cd3..03bd3dd2f 100644 --- a/manpages/po/de/lb_chroot_local-includes.1.po +++ b/manpages/po/de/lb_chroot_local-includes.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_local-packagelists.1.po b/manpages/po/de/lb_chroot_local-packagelists.1.po index 81aec4473..70175b39e 100644 --- a/manpages/po/de/lb_chroot_local-packagelists.1.po +++ b/manpages/po/de/lb_chroot_local-packagelists.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_local-patches.1.po b/manpages/po/de/lb_chroot_local-patches.1.po index 121805d87..b256a2192 100644 --- a/manpages/po/de/lb_chroot_local-patches.1.po +++ b/manpages/po/de/lb_chroot_local-patches.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_local-preseed.1.po b/manpages/po/de/lb_chroot_local-preseed.1.po index b37380edf..c3b835664 100644 --- a/manpages/po/de/lb_chroot_local-preseed.1.po +++ b/manpages/po/de/lb_chroot_local-preseed.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_packagelists.1.po b/manpages/po/de/lb_chroot_packagelists.1.po index f5b200ee1..1046b78ed 100644 --- a/manpages/po/de/lb_chroot_packagelists.1.po +++ b/manpages/po/de/lb_chroot_packagelists.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_packages.1.po b/manpages/po/de/lb_chroot_packages.1.po index 7617092ff..4bf01c851 100644 --- a/manpages/po/de/lb_chroot_packages.1.po +++ b/manpages/po/de/lb_chroot_packages.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_preseed.1.po b/manpages/po/de/lb_chroot_preseed.1.po index d87b223ff..b97b3df39 100644 --- a/manpages/po/de/lb_chroot_preseed.1.po +++ b/manpages/po/de/lb_chroot_preseed.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_proc.1.po b/manpages/po/de/lb_chroot_proc.1.po index eb9ad13c3..32d154111 100644 --- a/manpages/po/de/lb_chroot_proc.1.po +++ b/manpages/po/de/lb_chroot_proc.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_resolv.1.po b/manpages/po/de/lb_chroot_resolv.1.po index 30fd65694..ab308c28f 100644 --- a/manpages/po/de/lb_chroot_resolv.1.po +++ b/manpages/po/de/lb_chroot_resolv.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_selinuxfs.1.po b/manpages/po/de/lb_chroot_selinuxfs.1.po index fb96b9657..06cc71a27 100644 --- a/manpages/po/de/lb_chroot_selinuxfs.1.po +++ b/manpages/po/de/lb_chroot_selinuxfs.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_sysfs.1.po b/manpages/po/de/lb_chroot_sysfs.1.po index 266ec7994..4a945519e 100644 --- a/manpages/po/de/lb_chroot_sysfs.1.po +++ b/manpages/po/de/lb_chroot_sysfs.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_sysv-rc.1.po b/manpages/po/de/lb_chroot_sysv-rc.1.po index 549d465e5..2dc630e39 100644 --- a/manpages/po/de/lb_chroot_sysv-rc.1.po +++ b/manpages/po/de/lb_chroot_sysv-rc.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_task-lists.1.po b/manpages/po/de/lb_chroot_task-lists.1.po index 5e139ea81..0c2c5b29f 100644 --- a/manpages/po/de/lb_chroot_task-lists.1.po +++ b/manpages/po/de/lb_chroot_task-lists.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_chroot_upstart.1.po b/manpages/po/de/lb_chroot_upstart.1.po index 86bc4b924..220571373 100644 --- a/manpages/po/de/lb_chroot_upstart.1.po +++ b/manpages/po/de/lb_chroot_upstart.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_clean.1.po b/manpages/po/de/lb_clean.1.po index c1e9624de..dae42f3e5 100644 --- a/manpages/po/de/lb_clean.1.po +++ b/manpages/po/de/lb_clean.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po index b45a092f9..39ff220cb 100644 --- a/manpages/po/de/lb_config.1.po +++ b/manpages/po/de/lb_config.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH @@ -1082,7 +1082,7 @@ msgstr "" #. type: Plain text #: en/lb_config.1:181 -msgid " [B<--mode> debian|emdebian|progress|ubuntu]" +msgid " [B<--mode> debian|emdebian|progress|ubuntu|kubuntu]" msgstr "" #. type: Plain text diff --git a/manpages/po/de/lb_local.1.po b/manpages/po/de/lb_local.1.po index 6151a4bfe..fb3494518 100644 --- a/manpages/po/de/lb_local.1.po +++ b/manpages/po/de/lb_local.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source.1.po b/manpages/po/de/lb_source.1.po index cabf4f05b..0fbf73f57 100644 --- a/manpages/po/de/lb_source.1.po +++ b/manpages/po/de/lb_source.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source_checksums.1.po b/manpages/po/de/lb_source_checksums.1.po index 951bed291..fdba9a9d9 100644 --- a/manpages/po/de/lb_source_checksums.1.po +++ b/manpages/po/de/lb_source_checksums.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source_debian-live.1.po b/manpages/po/de/lb_source_debian-live.1.po index 9debf7978..ea73f4257 100644 --- a/manpages/po/de/lb_source_debian-live.1.po +++ b/manpages/po/de/lb_source_debian-live.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source_debian.1.po b/manpages/po/de/lb_source_debian.1.po index 17b9e912c..24e5f3c5d 100644 --- a/manpages/po/de/lb_source_debian.1.po +++ b/manpages/po/de/lb_source_debian.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source_disk.1.po b/manpages/po/de/lb_source_disk.1.po index 269e93650..409e76971 100644 --- a/manpages/po/de/lb_source_disk.1.po +++ b/manpages/po/de/lb_source_disk.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source_iso.1.po b/manpages/po/de/lb_source_iso.1.po index 8b0580131..b37feca16 100644 --- a/manpages/po/de/lb_source_iso.1.po +++ b/manpages/po/de/lb_source_iso.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source_net.1.po b/manpages/po/de/lb_source_net.1.po index 268caff25..881f14e89 100644 --- a/manpages/po/de/lb_source_net.1.po +++ b/manpages/po/de/lb_source_net.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source_tar.1.po b/manpages/po/de/lb_source_tar.1.po index 9797e6b12..ec3e675b1 100644 --- a/manpages/po/de/lb_source_tar.1.po +++ b/manpages/po/de/lb_source_tar.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source_usb.1.po b/manpages/po/de/lb_source_usb.1.po index 75eb229be..f1bbfa014 100644 --- a/manpages/po/de/lb_source_usb.1.po +++ b/manpages/po/de/lb_source_usb.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_source_virtual-hdd.1.po b/manpages/po/de/lb_source_virtual-hdd.1.po index 61df042b6..6ba20906e 100644 --- a/manpages/po/de/lb_source_virtual-hdd.1.po +++ b/manpages/po/de/lb_source_virtual-hdd.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/lb_testroot.1.po b/manpages/po/de/lb_testroot.1.po index 493a0822d..e8bfda552 100644 --- a/manpages/po/de/lb_testroot.1.po +++ b/manpages/po/de/lb_testroot.1.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/po/de/live-build.7.po b/manpages/po/de/live-build.7.po index d216347d4..c63867f60 100644 --- a/manpages/po/de/live-build.7.po +++ b/manpages/po/de/live-build.7.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: 2011-06-15 22:05+0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb.1.pot b/manpages/pot/lb.1.pot index 680bd0691..a6f5b6856 100644 --- a/manpages/pot/lb.1.pot +++ b/manpages/pot/lb.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary.1.pot b/manpages/pot/lb_binary.1.pot index d2cc023d9..c265bda01 100644 --- a/manpages/pot/lb_binary.1.pot +++ b/manpages/pot/lb_binary.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_checksums.1.pot b/manpages/pot/lb_binary_checksums.1.pot index a0ac2cde3..bd9a5a113 100644 --- a/manpages/pot/lb_binary_checksums.1.pot +++ b/manpages/pot/lb_binary_checksums.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_chroot.1.pot b/manpages/pot/lb_binary_chroot.1.pot index 8019812d5..93f01ff5f 100644 --- a/manpages/pot/lb_binary_chroot.1.pot +++ b/manpages/pot/lb_binary_chroot.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_debian-installer.1.pot b/manpages/pot/lb_binary_debian-installer.1.pot index 3ce2bced1..c40e52143 100644 --- a/manpages/pot/lb_binary_debian-installer.1.pot +++ b/manpages/pot/lb_binary_debian-installer.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_disk.1.pot b/manpages/pot/lb_binary_disk.1.pot index c079f0568..c9a8df3be 100644 --- a/manpages/pot/lb_binary_disk.1.pot +++ b/manpages/pot/lb_binary_disk.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_grub.1.pot b/manpages/pot/lb_binary_grub.1.pot index 7e8893b68..30449c82f 100644 --- a/manpages/pot/lb_binary_grub.1.pot +++ b/manpages/pot/lb_binary_grub.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_grub2.1.pot b/manpages/pot/lb_binary_grub2.1.pot index f1c2e389a..f96bb2ab6 100644 --- a/manpages/pot/lb_binary_grub2.1.pot +++ b/manpages/pot/lb_binary_grub2.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_includes.1.pot b/manpages/pot/lb_binary_includes.1.pot index d021897a7..7e29c59a4 100644 --- a/manpages/pot/lb_binary_includes.1.pot +++ b/manpages/pot/lb_binary_includes.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_iso.1.pot b/manpages/pot/lb_binary_iso.1.pot index de22c1a1a..e5d6e166e 100644 --- a/manpages/pot/lb_binary_iso.1.pot +++ b/manpages/pot/lb_binary_iso.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_linux-image.1.pot b/manpages/pot/lb_binary_linux-image.1.pot index fc2dfa5dd..ca7bf14ad 100644 --- a/manpages/pot/lb_binary_linux-image.1.pot +++ b/manpages/pot/lb_binary_linux-image.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_local-hooks.1.pot b/manpages/pot/lb_binary_local-hooks.1.pot index f0eef97a8..a31a73f00 100644 --- a/manpages/pot/lb_binary_local-hooks.1.pot +++ b/manpages/pot/lb_binary_local-hooks.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_local-includes.1.pot b/manpages/pot/lb_binary_local-includes.1.pot index 7f07b1a2d..761af2a30 100644 --- a/manpages/pot/lb_binary_local-includes.1.pot +++ b/manpages/pot/lb_binary_local-includes.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_local-packagelists.1.pot b/manpages/pot/lb_binary_local-packagelists.1.pot index 52fa4177d..1a0f03c53 100644 --- a/manpages/pot/lb_binary_local-packagelists.1.pot +++ b/manpages/pot/lb_binary_local-packagelists.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_manifest.1.pot b/manpages/pot/lb_binary_manifest.1.pot index 6b9a78bae..f91369cdd 100644 --- a/manpages/pot/lb_binary_manifest.1.pot +++ b/manpages/pot/lb_binary_manifest.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_memtest.1.pot b/manpages/pot/lb_binary_memtest.1.pot index cfca6ad8b..73d13c618 100644 --- a/manpages/pot/lb_binary_memtest.1.pot +++ b/manpages/pot/lb_binary_memtest.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_net.1.pot b/manpages/pot/lb_binary_net.1.pot index 6f0ee724b..696c344dd 100644 --- a/manpages/pot/lb_binary_net.1.pot +++ b/manpages/pot/lb_binary_net.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_rootfs.1.pot b/manpages/pot/lb_binary_rootfs.1.pot index 4289e244e..608f0cbf2 100644 --- a/manpages/pot/lb_binary_rootfs.1.pot +++ b/manpages/pot/lb_binary_rootfs.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_silo.1.pot b/manpages/pot/lb_binary_silo.1.pot index 466844b9f..df6672644 100644 --- a/manpages/pot/lb_binary_silo.1.pot +++ b/manpages/pot/lb_binary_silo.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_syslinux.1.pot b/manpages/pot/lb_binary_syslinux.1.pot index a895afd42..ecc0de9e5 100644 --- a/manpages/pot/lb_binary_syslinux.1.pot +++ b/manpages/pot/lb_binary_syslinux.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_tar.1.pot b/manpages/pot/lb_binary_tar.1.pot index 479fa2198..d43ae3f29 100644 --- a/manpages/pot/lb_binary_tar.1.pot +++ b/manpages/pot/lb_binary_tar.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_usb.1.pot b/manpages/pot/lb_binary_usb.1.pot index 5e1e4e329..4d133486e 100644 --- a/manpages/pot/lb_binary_usb.1.pot +++ b/manpages/pot/lb_binary_usb.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_virtual-hdd.1.pot b/manpages/pot/lb_binary_virtual-hdd.1.pot index b46abfd44..b16abddd4 100644 --- a/manpages/pot/lb_binary_virtual-hdd.1.pot +++ b/manpages/pot/lb_binary_virtual-hdd.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_win32-loader.1.pot b/manpages/pot/lb_binary_win32-loader.1.pot index 0f493dd9a..6048ff433 100644 --- a/manpages/pot/lb_binary_win32-loader.1.pot +++ b/manpages/pot/lb_binary_win32-loader.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_binary_yaboot.1.pot b/manpages/pot/lb_binary_yaboot.1.pot index 30ba045d2..03f6ca515 100644 --- a/manpages/pot/lb_binary_yaboot.1.pot +++ b/manpages/pot/lb_binary_yaboot.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_bootstrap.1.pot b/manpages/pot/lb_bootstrap.1.pot index 80fdffc18..f4200dabe 100644 --- a/manpages/pot/lb_bootstrap.1.pot +++ b/manpages/pot/lb_bootstrap.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_bootstrap_cache.1.pot b/manpages/pot/lb_bootstrap_cache.1.pot index 4194776c8..27cf3a53d 100644 --- a/manpages/pot/lb_bootstrap_cache.1.pot +++ b/manpages/pot/lb_bootstrap_cache.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot index a3b806fc1..5150978c0 100644 --- a/manpages/pot/lb_bootstrap_cdebootstrap.1.pot +++ b/manpages/pot/lb_bootstrap_cdebootstrap.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_bootstrap_copy.1.pot b/manpages/pot/lb_bootstrap_copy.1.pot index 7fd49635e..a59f31d3d 100644 --- a/manpages/pot/lb_bootstrap_copy.1.pot +++ b/manpages/pot/lb_bootstrap_copy.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_bootstrap_debootstrap.1.pot b/manpages/pot/lb_bootstrap_debootstrap.1.pot index d18eb932f..6acd6c347 100644 --- a/manpages/pot/lb_bootstrap_debootstrap.1.pot +++ b/manpages/pot/lb_bootstrap_debootstrap.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_build.1.pot b/manpages/pot/lb_build.1.pot index 8a7566a1e..c8692db2f 100644 --- a/manpages/pot/lb_build.1.pot +++ b/manpages/pot/lb_build.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot.1.pot b/manpages/pot/lb_chroot.1.pot index 36374c7e0..aa385fd3e 100644 --- a/manpages/pot/lb_chroot.1.pot +++ b/manpages/pot/lb_chroot.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_apt.1.pot b/manpages/pot/lb_chroot_apt.1.pot index 2b0e25b2b..29d1e62c5 100644 --- a/manpages/pot/lb_chroot_apt.1.pot +++ b/manpages/pot/lb_chroot_apt.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_archives.1.pot b/manpages/pot/lb_chroot_archives.1.pot index 639d0485d..0d4bede11 100644 --- a/manpages/pot/lb_chroot_archives.1.pot +++ b/manpages/pot/lb_chroot_archives.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_cache.1.pot b/manpages/pot/lb_chroot_cache.1.pot index f2a53e676..b986bc5d5 100644 --- a/manpages/pot/lb_chroot_cache.1.pot +++ b/manpages/pot/lb_chroot_cache.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_debianchroot.1.pot b/manpages/pot/lb_chroot_debianchroot.1.pot index 0a06e774f..923501131 100644 --- a/manpages/pot/lb_chroot_debianchroot.1.pot +++ b/manpages/pot/lb_chroot_debianchroot.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_devpts.1.pot b/manpages/pot/lb_chroot_devpts.1.pot index 4799dcdc1..5f6d31419 100644 --- a/manpages/pot/lb_chroot_devpts.1.pot +++ b/manpages/pot/lb_chroot_devpts.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_dpkg.1.pot b/manpages/pot/lb_chroot_dpkg.1.pot index 4aa2a1643..ceddca7ec 100644 --- a/manpages/pot/lb_chroot_dpkg.1.pot +++ b/manpages/pot/lb_chroot_dpkg.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_hacks.1.pot b/manpages/pot/lb_chroot_hacks.1.pot index 2a3025e9e..4fe218578 100644 --- a/manpages/pot/lb_chroot_hacks.1.pot +++ b/manpages/pot/lb_chroot_hacks.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_hostname.1.pot b/manpages/pot/lb_chroot_hostname.1.pot index dd16ab5a5..e4285d0e2 100644 --- a/manpages/pot/lb_chroot_hostname.1.pot +++ b/manpages/pot/lb_chroot_hostname.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_hosts.1.pot b/manpages/pot/lb_chroot_hosts.1.pot index c842125cd..372193245 100644 --- a/manpages/pot/lb_chroot_hosts.1.pot +++ b/manpages/pot/lb_chroot_hosts.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_install-packages.1.pot b/manpages/pot/lb_chroot_install-packages.1.pot index bb84d2d53..dbd65bd76 100644 --- a/manpages/pot/lb_chroot_install-packages.1.pot +++ b/manpages/pot/lb_chroot_install-packages.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_interactive.1.pot b/manpages/pot/lb_chroot_interactive.1.pot index 7edc82854..54af12c79 100644 --- a/manpages/pot/lb_chroot_interactive.1.pot +++ b/manpages/pot/lb_chroot_interactive.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_linux-image.1.pot b/manpages/pot/lb_chroot_linux-image.1.pot index 8dfa7cf72..5807c5131 100644 --- a/manpages/pot/lb_chroot_linux-image.1.pot +++ b/manpages/pot/lb_chroot_linux-image.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_local-hooks.1.pot b/manpages/pot/lb_chroot_local-hooks.1.pot index 292189ab6..158eb730a 100644 --- a/manpages/pot/lb_chroot_local-hooks.1.pot +++ b/manpages/pot/lb_chroot_local-hooks.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_local-includes.1.pot b/manpages/pot/lb_chroot_local-includes.1.pot index d2b7487ea..d33b8bd59 100644 --- a/manpages/pot/lb_chroot_local-includes.1.pot +++ b/manpages/pot/lb_chroot_local-includes.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_local-packagelists.1.pot b/manpages/pot/lb_chroot_local-packagelists.1.pot index 67678e74a..2bf584cbb 100644 --- a/manpages/pot/lb_chroot_local-packagelists.1.pot +++ b/manpages/pot/lb_chroot_local-packagelists.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_local-patches.1.pot b/manpages/pot/lb_chroot_local-patches.1.pot index 878e55e77..0bd32ced2 100644 --- a/manpages/pot/lb_chroot_local-patches.1.pot +++ b/manpages/pot/lb_chroot_local-patches.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_local-preseed.1.pot b/manpages/pot/lb_chroot_local-preseed.1.pot index e990cc4ef..3a54a7ad8 100644 --- a/manpages/pot/lb_chroot_local-preseed.1.pot +++ b/manpages/pot/lb_chroot_local-preseed.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_packagelists.1.pot b/manpages/pot/lb_chroot_packagelists.1.pot index a418e7a25..8a84d512c 100644 --- a/manpages/pot/lb_chroot_packagelists.1.pot +++ b/manpages/pot/lb_chroot_packagelists.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_packages.1.pot b/manpages/pot/lb_chroot_packages.1.pot index 26d61f24b..35f9d130d 100644 --- a/manpages/pot/lb_chroot_packages.1.pot +++ b/manpages/pot/lb_chroot_packages.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_preseed.1.pot b/manpages/pot/lb_chroot_preseed.1.pot index 66d72eb14..eb67eaab9 100644 --- a/manpages/pot/lb_chroot_preseed.1.pot +++ b/manpages/pot/lb_chroot_preseed.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_proc.1.pot b/manpages/pot/lb_chroot_proc.1.pot index cb47719e0..47a598970 100644 --- a/manpages/pot/lb_chroot_proc.1.pot +++ b/manpages/pot/lb_chroot_proc.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_resolv.1.pot b/manpages/pot/lb_chroot_resolv.1.pot index c94e8a482..063f7e444 100644 --- a/manpages/pot/lb_chroot_resolv.1.pot +++ b/manpages/pot/lb_chroot_resolv.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_selinuxfs.1.pot b/manpages/pot/lb_chroot_selinuxfs.1.pot index a5b35c86f..a0803a8a5 100644 --- a/manpages/pot/lb_chroot_selinuxfs.1.pot +++ b/manpages/pot/lb_chroot_selinuxfs.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_sysfs.1.pot b/manpages/pot/lb_chroot_sysfs.1.pot index b2e63e7a5..84eed97f8 100644 --- a/manpages/pot/lb_chroot_sysfs.1.pot +++ b/manpages/pot/lb_chroot_sysfs.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_sysv-rc.1.pot b/manpages/pot/lb_chroot_sysv-rc.1.pot index f4ad852c6..c7ce8ec03 100644 --- a/manpages/pot/lb_chroot_sysv-rc.1.pot +++ b/manpages/pot/lb_chroot_sysv-rc.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_task-lists.1.pot b/manpages/pot/lb_chroot_task-lists.1.pot index fb9ca0593..77b72f579 100644 --- a/manpages/pot/lb_chroot_task-lists.1.pot +++ b/manpages/pot/lb_chroot_task-lists.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_chroot_upstart.1.pot b/manpages/pot/lb_chroot_upstart.1.pot index c3f277062..fcd4abc6a 100644 --- a/manpages/pot/lb_chroot_upstart.1.pot +++ b/manpages/pot/lb_chroot_upstart.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_clean.1.pot b/manpages/pot/lb_clean.1.pot index 9a6b8945d..f152ee6ff 100644 --- a/manpages/pot/lb_clean.1.pot +++ b/manpages/pot/lb_clean.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot index 6f8763d40..eed1b5781 100644 --- a/manpages/pot/lb_config.1.pot +++ b/manpages/pot/lb_config.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH @@ -1082,7 +1082,7 @@ msgstr "" #. type: Plain text #: en/lb_config.1:181 -msgid " [B<--mode> debian|emdebian|progress|ubuntu]" +msgid " [B<--mode> debian|emdebian|progress|ubuntu|kubuntu]" msgstr "" #. type: Plain text diff --git a/manpages/pot/lb_local.1.pot b/manpages/pot/lb_local.1.pot index 53a1d5cac..153bcd0af 100644 --- a/manpages/pot/lb_local.1.pot +++ b/manpages/pot/lb_local.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source.1.pot b/manpages/pot/lb_source.1.pot index bcab7bb30..cb5dfec6d 100644 --- a/manpages/pot/lb_source.1.pot +++ b/manpages/pot/lb_source.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source_checksums.1.pot b/manpages/pot/lb_source_checksums.1.pot index bfaab3880..261a0dcdb 100644 --- a/manpages/pot/lb_source_checksums.1.pot +++ b/manpages/pot/lb_source_checksums.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source_debian-live.1.pot b/manpages/pot/lb_source_debian-live.1.pot index dfdcc3a0b..4bdc9edc7 100644 --- a/manpages/pot/lb_source_debian-live.1.pot +++ b/manpages/pot/lb_source_debian-live.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source_debian.1.pot b/manpages/pot/lb_source_debian.1.pot index a6e2d5361..e42c73681 100644 --- a/manpages/pot/lb_source_debian.1.pot +++ b/manpages/pot/lb_source_debian.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source_disk.1.pot b/manpages/pot/lb_source_disk.1.pot index 9b634b7b3..b810683e6 100644 --- a/manpages/pot/lb_source_disk.1.pot +++ b/manpages/pot/lb_source_disk.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source_iso.1.pot b/manpages/pot/lb_source_iso.1.pot index ab7720efa..22e747f37 100644 --- a/manpages/pot/lb_source_iso.1.pot +++ b/manpages/pot/lb_source_iso.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source_net.1.pot b/manpages/pot/lb_source_net.1.pot index c21c252f4..a024c010b 100644 --- a/manpages/pot/lb_source_net.1.pot +++ b/manpages/pot/lb_source_net.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source_tar.1.pot b/manpages/pot/lb_source_tar.1.pot index d308cee54..5e1e7c53f 100644 --- a/manpages/pot/lb_source_tar.1.pot +++ b/manpages/pot/lb_source_tar.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source_usb.1.pot b/manpages/pot/lb_source_usb.1.pot index 51d673210..35493d1fa 100644 --- a/manpages/pot/lb_source_usb.1.pot +++ b/manpages/pot/lb_source_usb.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_source_virtual-hdd.1.pot b/manpages/pot/lb_source_virtual-hdd.1.pot index 99975c950..10c0f345f 100644 --- a/manpages/pot/lb_source_virtual-hdd.1.pot +++ b/manpages/pot/lb_source_virtual-hdd.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/lb_testroot.1.pot b/manpages/pot/lb_testroot.1.pot index 437617d87..34d122a76 100644 --- a/manpages/pot/lb_testroot.1.pot +++ b/manpages/pot/lb_testroot.1.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/manpages/pot/live-build.7.pot b/manpages/pot/live-build.7.pot index 35257d514..ba2967471 100644 --- a/manpages/pot/live-build.7.pot +++ b/manpages/pot/live-build.7.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2011-07-15 20:32+0300\n" +"POT-Creation-Date: 2011-07-19 10:49+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,7 +81,7 @@ msgstr "" #: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1 #: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1 #, no-wrap -msgid "2011-07-15" +msgid "2011-07-19" msgstr "" #. type: TH diff --git a/package-lists/gnome b/package-lists/gnome index 420fc6837..461d81435 100644 --- a/package-lists/gnome +++ b/package-lists/gnome @@ -3,10 +3,10 @@ #include <gnome-core> gnome-desktop-environment gnome-screensaver gnome-themes-extras -#nif MODE ubuntu +#nif MODE ubuntu kubuntu system-config-printer #endif -#if MODE ubuntu +#if MODE ubuntu kubuntu system-config-printer-gnome #endif diff --git a/package-lists/minimal b/package-lists/minimal index 77f9aa86a..4cb74386f 100644 --- a/package-lists/minimal +++ b/package-lists/minimal @@ -7,6 +7,6 @@ eject file user-setup sudo -#if MODE ubuntu +#if MODE ubuntu kubuntu gnupg #endif diff --git a/package-lists/standard b/package-lists/standard index 94dd3366b..132a02b98 100644 --- a/package-lists/standard +++ b/package-lists/standard @@ -11,6 +11,6 @@ locales locales-all #endif -#if MODE ubuntu +#if MODE ubuntu kubuntu ubuntu-minimal #endif diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer index b193151ac..41376f7af 100755 --- a/scripts/build/lb_binary_debian-installer +++ b/scripts/build/lb_binary_debian-installer @@ -303,7 +303,7 @@ then DI_REQ_PACKAGES="lilo grub" case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic" ;; @@ -318,7 +318,7 @@ then DI_REQ_PACKAGES="elilo lilo grub" case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic" ;; @@ -331,7 +331,7 @@ then sparc) DI_REQ_PACKAGES="silo" case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) DI_PACKAGES="${DI_REQ_PACKAGES} linux-sparc64" ;; @@ -344,7 +344,7 @@ then powerpc) DI_REQ_PACKAGES="yaboot" case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-powerpc linux-image-powerpc64-smp" ;; diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk index 145a0c261..a28a0fe92 100755 --- a/scripts/build/lb_binary_disk +++ b/scripts/build/lb_binary_disk @@ -66,6 +66,12 @@ case "${LB_MODE}" in TRACE="" ;; + kubuntu) + TITLE="Kubuntu" + STRING="Build ${ARCHITECTURE}" + TRACE="" + ;; + *) STRING="Snapshot ${ARCHITECTURE}" TRACE="" diff --git a/scripts/build/lb_binary_rootfs b/scripts/build/lb_binary_rootfs index 663f21212..6f5ed21a9 100755 --- a/scripts/build/lb_binary_rootfs +++ b/scripts/build/lb_binary_rootfs @@ -135,7 +135,7 @@ case "${LB_CHROOT_FILESYSTEM}" in mv chroot/filesystem.${LB_CHROOT_FILESYSTEM} binary/${INITFS} case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size ;; esac @@ -366,7 +366,7 @@ case "${LB_CHROOT_FILESYSTEM}" in rm -f chroot/chroot/excludes case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size ;; esac @@ -431,7 +431,7 @@ case "${LB_CHROOT_FILESYSTEM}" in mksquashfs chroot binary/${INITFS}/filesystem.squashfs ${MKSQUASHFS_OPTIONS} case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) du -B 1 -s chroot | cut -f1 > binary/${INITFS}/filesystem.size ;; esac diff --git a/scripts/build/lb_chroot_archives b/scripts/build/lb_chroot_archives index 4b65365d5..d5dedb43a 100755 --- a/scripts/build/lb_chroot_archives +++ b/scripts/build/lb_chroot_archives @@ -136,7 +136,7 @@ EOF fi ;; - ubuntu) + ubuntu|kubuntu) echo "deb ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list if [ "${LB_SOURCE}" = "true" ] @@ -150,7 +150,7 @@ EOF if [ "${LB_VOLATILE}" = "true" ] then case "${LB_MODE}" in - debian|ubuntu) + debian|ubuntu|kubuntu) echo "deb ${LB_PARENT_MIRROR_CHROOT_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list if [ "${LB_SOURCE}" = "true" ] @@ -204,12 +204,20 @@ EOF for REPOSITORY in ${LB_ARCHIVES} do # ubuntu workaround to allow using live.debian.net - if [ "${LB_MODE}" = "ubuntu" ] && [ "${REPOSITORY}" = "live.debian.net" ] - then - _DISTRIBUTION="sid" - else - _DISTRIBUTION="${LB_PARENT_DISTRIBUTION}" - fi + case "${LB_MODE}" in + ubuntu|kubuntu) + if [ "${REPOSITORY}" = "live.debian.net" ] + then + _DISTRIBUTION="sid" + else + _DISTRIBUTION="${LB_PARENT_DISTRIBUTION}" + fi + ;; + + *) + _DISTRIBUTION="${LB_PARENT_DISTRIBUTION}" + ;; + esac # Prefer archives from the config tree # over the global ones. @@ -660,7 +668,7 @@ EOF fi ;; - ubuntu) + ubuntu|kubuntu) echo "deb ${LB_PARENT_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list if [ "${LB_SOURCE}" = "true" ] @@ -674,7 +682,7 @@ EOF if [ "${LB_VOLATILE}" = "true" ] then case "${LB_MODE}" in - debian|ubuntu) + debian|ubuntu|kubuntu) echo "deb ${LB_PARENT_MIRROR_BINARY_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list if [ "${LB_SOURCE}" = "true" ] diff --git a/scripts/build/lb_chroot_task-lists b/scripts/build/lb_chroot_task-lists index 82aa225ea..2bdffd8d5 100755 --- a/scripts/build/lb_chroot_task-lists +++ b/scripts/build/lb_chroot_task-lists @@ -82,7 +82,7 @@ then APT_TASKS= case "${LB_MODE}" in - ubuntu) + ubuntu|kubuntu) TASKS="$(cat chroot/root/chroot_tasks)" ;; diff --git a/scripts/build/lb_config b/scripts/build/lb_config index 6c464ef92..ad144aa3b 100755 --- a/scripts/build/lb_config +++ b/scripts/build/lb_config @@ -112,7 +112,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [--mirror-binary-volatile URL]\n\ \t [--mirror-binary-backports URL]\n\ \t [--mirror-debian-installer URL]\n\ -\t [--mode debian|emdebian|ubuntu]\n\ +\t [--mode debian|emdebian|ubuntu|kubuntu]\n\ \t [--net-root-filesystem nfs|cfs]\n\ \t [--net-root-mountoptions OPTIONS]\n\ \t [--net-root-path PATH]\n\ diff --git a/scripts/build/lb_source_disk b/scripts/build/lb_source_disk index 3d21223c6..3a93d247a 100755 --- a/scripts/build/lb_source_disk +++ b/scripts/build/lb_source_disk @@ -66,6 +66,12 @@ case "${LB_MODE}" in TRACE="" ;; + kubuntu) + TITLE="Kubuntu" + STRING="Build ${ARCHITECTURE}" + TRACE="" + ;; + *) STRING="Snapshot ${ARCHITECTURE}" TRACE="" |