Compare commits
17 Commits
master
...
tmp-python
Author | SHA1 | Date |
---|---|---|
Daniel Baumann | 6bd4253bfa | |
Daniel Baumann | d1982cbd94 | |
Daniel Baumann | 86b6ed3e39 | |
Daniel Baumann | 84afa594d6 | |
Daniel Baumann | 22c8569f53 | |
Daniel Baumann | 50cd46d209 | |
Daniel Baumann | 294b8b1602 | |
Daniel Baumann | 0e197eacb7 | |
Daniel Baumann | 5203e46e9d | |
Daniel Baumann | b78f2db21d | |
Daniel Baumann | 6217527ed4 | |
Daniel Baumann | a3e93f9c57 | |
Daniel Baumann | 1fe3b72c63 | |
Daniel Baumann | 1db5b4a96e | |
Daniel Baumann | 7ce82acee7 | |
Daniel Baumann | 33aaf3617f | |
Daniel Baumann | d735e034eb |
|
@ -93,7 +93,7 @@ def main():
|
||||||
exec_hook = subprocess.check_call('cd binary && live-build/' + os.path.basename(hook), shell=True)
|
exec_hook = subprocess.check_call('cd binary && live-build/' + os.path.basename(hook), shell=True)
|
||||||
os.remove('binary/live-build/' + os.path.basename(hook))
|
os.remove('binary/live-build/' + os.path.basename(hook))
|
||||||
|
|
||||||
# unmount coniguration directory
|
# unmount configuration directory
|
||||||
umount = subprocess.check_call('umount binary/live-build/config', shell=True)
|
umount = subprocess.check_call('umount binary/live-build/config', shell=True)
|
||||||
|
|
||||||
os.rmdir('binary/live-build/config')
|
os.rmdir('binary/live-build/config')
|
||||||
|
|
|
@ -42,22 +42,22 @@ def main():
|
||||||
args = arguments.parse_args()
|
args = arguments.parse_args()
|
||||||
|
|
||||||
## Parsing Configuration
|
## Parsing Configuration
|
||||||
if not os.path.isfile('config/build'):
|
if not os.path.isfile('config/build.conf'):
|
||||||
print('E: config/build - no such file', file=sys.stderr)
|
print('E: config/build.conf - no such file', file=sys.stderr)
|
||||||
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
|
|
||||||
config.read('config/build')
|
config.read('config/build.conf')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
architecture = config.get('Image', 'Architecture')
|
architecture = config.get('build', 'Architecture')
|
||||||
distribution = config.get('Image', 'Parent-Distribution')
|
distribution = config.get('build', 'Parent-Distribution')
|
||||||
mirror_bootstrap = config.get('Image', 'Parent-Mirror-Bootstrap')
|
mirror_bootstrap = config.get('build', 'Parent-Mirror-Bootstrap')
|
||||||
except:
|
except:
|
||||||
distribution = config.get('Image', 'Distribution')
|
distribution = config.get('build', 'Distribution')
|
||||||
mirror_bootstrap = config.get('Image', 'Mirror-Bootstrap')
|
mirror_bootstrap = config.get('build', 'Mirror-Bootstrap')
|
||||||
|
|
||||||
# --verbose
|
# --verbose
|
||||||
verbose = args.verbose
|
verbose = args.verbose
|
||||||
|
|
|
@ -12,6 +12,7 @@ import argparse
|
||||||
import configparser
|
import configparser
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
|
import re
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
@ -22,7 +23,6 @@ import sys
|
||||||
# * lockfile handling
|
# * lockfile handling
|
||||||
# * use gettext for i18n
|
# * use gettext for i18n
|
||||||
# * debootstrap-options from config/options/debootstrap
|
# * debootstrap-options from config/options/debootstrap
|
||||||
# * take mirrors from config/archives/mirror.{bootstrap,chroot}
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
## Parsing Arguments
|
## Parsing Arguments
|
||||||
|
@ -42,28 +42,30 @@ def main():
|
||||||
args = arguments.parse_args()
|
args = arguments.parse_args()
|
||||||
|
|
||||||
## Parsing Configuration
|
## Parsing Configuration
|
||||||
if not os.path.isfile('config/build'):
|
if not os.path.isfile('config/build.conf'):
|
||||||
print('E: config/build - no such file', file=sys.stderr)
|
print('E: config/build.conf - no such file', file=sys.stderr)
|
||||||
|
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
|
config.read('config/build.conf')
|
||||||
|
|
||||||
config.read('config/build')
|
architecture = config.get('build', 'architecture')
|
||||||
|
distribution = config.get('build', 'parent-distribution')
|
||||||
try:
|
|
||||||
architecture = config.get('Image', 'Architecture')
|
|
||||||
archive_areas = config.get('Image', 'Parent-Archive-Areas')
|
|
||||||
distribution = config.get('Image', 'Parent-Distribution')
|
|
||||||
mirror_bootstrap = config.get('Image', 'Parent-Mirror-Bootstrap')
|
|
||||||
except:
|
|
||||||
archive_areas = config.get('Image', 'Archive-Areas')
|
|
||||||
distribution = config.get('Image', 'Distribution')
|
|
||||||
mirror_bootstrap = config.get('Image', 'Mirror-Bootstrap')
|
|
||||||
|
|
||||||
# --verbose
|
# --verbose
|
||||||
verbose = args.verbose
|
verbose = args.verbose
|
||||||
|
|
||||||
|
# mirror-bootstrap
|
||||||
|
f = open('config/build.conf', 'r')
|
||||||
|
|
||||||
|
for line in f:
|
||||||
|
if re.match('^deb ', line):
|
||||||
|
mirror_bootstrap = line
|
||||||
|
break
|
||||||
|
|
||||||
|
f.close()
|
||||||
|
|
||||||
# --debootstrap-options
|
# --debootstrap-options
|
||||||
debootstrap_options_late = distribution + ' chroot ' + mirror_bootstrap
|
debootstrap_options_late = distribution + ' chroot ' + mirror_bootstrap
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@ def main():
|
||||||
exec_hook = subprocess.check_call('chroot chroot /live-build/' + os.path.basename(hook), shell=True)
|
exec_hook = subprocess.check_call('chroot chroot /live-build/' + os.path.basename(hook), shell=True)
|
||||||
os.remove('chroot/live-build/' + os.path.basename(hook))
|
os.remove('chroot/live-build/' + os.path.basename(hook))
|
||||||
|
|
||||||
# unmount coniguration directory
|
# unmount configuration directory
|
||||||
umount = subprocess.check_call('umount chroot/live-build/config', shell=True)
|
umount = subprocess.check_call('umount chroot/live-build/config', shell=True)
|
||||||
|
|
||||||
os.rmdir('chroot/live-build/config')
|
os.rmdir('chroot/live-build/config')
|
||||||
|
|
|
@ -93,7 +93,7 @@ def main():
|
||||||
exec_hook = subprocess.check_call('chroot chroot /live-build/' + os.path.basename(hook), shell=True)
|
exec_hook = subprocess.check_call('chroot chroot /live-build/' + os.path.basename(hook), shell=True)
|
||||||
os.remove('chroot/live-build/' + os.path.basename(hook))
|
os.remove('chroot/live-build/' + os.path.basename(hook))
|
||||||
|
|
||||||
# unmount coniguration directory
|
# unmount configuration directory
|
||||||
umount = subprocess.check_call('umount chroot/live-build/config', shell=True)
|
umount = subprocess.check_call('umount chroot/live-build/config', shell=True)
|
||||||
|
|
||||||
os.rmdir('chroot/live-build/config')
|
os.rmdir('chroot/live-build/config')
|
||||||
|
|
376
components/init
376
components/init
|
@ -12,6 +12,7 @@ import argparse
|
||||||
import configparser
|
import configparser
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
|
import platform
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
@ -24,6 +25,12 @@ import urllib.request
|
||||||
# * use gettext for i18n
|
# * use gettext for i18n
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
## early defaults detection
|
||||||
|
architecture = platform.machine()
|
||||||
|
|
||||||
|
if (architecture == 'x86_64'):
|
||||||
|
architecture = 'amd64'
|
||||||
|
|
||||||
## Parsing Arguments
|
## Parsing Arguments
|
||||||
arguments = argparse.ArgumentParser(
|
arguments = argparse.ArgumentParser(
|
||||||
prog = 'lb init',
|
prog = 'lb init',
|
||||||
|
@ -34,25 +41,140 @@ def main():
|
||||||
formatter_class = argparse.ArgumentDefaultsHelpFormatter
|
formatter_class = argparse.ArgumentDefaultsHelpFormatter
|
||||||
)
|
)
|
||||||
|
|
||||||
arguments.add_argument('--version', help='show program\'s version number and exit', action='version', version='live-build 4')
|
arguments.add_argument('--version', help='show program\'s version number and exit', action='version', version='live-build 4')
|
||||||
arguments.add_argument('--verbose', help='set verbose option', action='store_true')
|
arguments.add_argument('--verbose', help='set verbose option', action='store_true')
|
||||||
|
|
||||||
arguments.add_argument('--distribution', help='set default distribution')
|
arguments.add_argument('--project', help='set project defaults', default='debian')
|
||||||
arguments.add_argument('--project', help='set project defaults')
|
arguments.add_argument('--system', help='set system type', default='live')
|
||||||
|
arguments.add_argument('--architecture', help='set system architecture', default=architecture)
|
||||||
|
|
||||||
|
arguments.add_argument('--archive-areas', help='set default archive areas', default='main')
|
||||||
|
arguments.add_argument('--parent-archive-areas', help='set default parent archive areas', default='main')
|
||||||
|
|
||||||
|
arguments.add_argument('--distribution', help='set default distribution', default='jessie')
|
||||||
|
arguments.add_argument('--parent-distribution', help='set default parent distribution', default='jessie')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-bootstrap', help='set default bootstrap mirror', default='http://ftp.debian.org/debian')
|
||||||
|
arguments.add_argument('--parent-mirror-bootstrap', help='set default parent bootstrap mirror', default='http://ftp.debian.org/debian')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-bootstrap-security', help='set default bootstrap security mirror', default='http://security.debian.org')
|
||||||
|
arguments.add_argument('--parent-mirror-bootstrap-security', help='set default parent security bootstrap mirror', default='http://security.debian.org')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-chroot', help='set default chroot mirror', default='http://ftp.debian.org/debian')
|
||||||
|
arguments.add_argument('--parent-mirror-chroot', help='set default parent chroot mirror', default='http://ftp.debian.org/debian')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-chroot-security', help='set default chroot security mirror', default='http://security.debian.org')
|
||||||
|
arguments.add_argument('--parent-mirror-chroot-security', help='set default parent chroot security mirror', default='http://security.debian.org')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-installer', help='set default installer mirror', default='http://ftp.debian.org/debian')
|
||||||
|
arguments.add_argument('--parent-mirror-installer', help='set default parent installer mirror', default='http://ftp.debian.org/debian')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-installer-security', help='set default installer security mirror', default='http://security.debian.org')
|
||||||
|
arguments.add_argument('--parent-mirror-installer-security', help='set default parent installer security mirror', default='http://security.debian.org')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-binary', help='set default binary mirror', default='http://ftp.debian.org/debian')
|
||||||
|
arguments.add_argument('--parent-mirror-binary', help='set default parent binary mirror', default='http://ftp.debian.org/debian')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-binary-security', help='set default binary security mirror', default='http://security.debian.org')
|
||||||
|
arguments.add_argument('--parent-mirror-binary-security', help='set default parent binary security mirror', default='http://security.debian.org')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-source', help='set default source mirror', default='http://ftp.debian.org/debian')
|
||||||
|
arguments.add_argument('--parent-mirror-source', help='set default parent source mirror', default='http://ftp.debian.org/debian')
|
||||||
|
|
||||||
|
arguments.add_argument('--mirror-source-security', help='set default source security mirror', default='http://security.debian.org')
|
||||||
|
arguments.add_argument('--parent-mirror-source-security', help='set default parent source security mirror', default='http://security.debian.org')
|
||||||
|
|
||||||
args = arguments.parse_args()
|
args = arguments.parse_args()
|
||||||
|
|
||||||
# --verbose
|
# --verbose
|
||||||
verbose = args.verbose
|
verbose = args.verbose
|
||||||
|
|
||||||
# --distribution
|
|
||||||
distribution = args.distribution
|
|
||||||
|
|
||||||
# --project
|
# --project
|
||||||
project = args.project
|
project = args.project
|
||||||
|
|
||||||
|
# --system
|
||||||
|
system = args.system
|
||||||
|
|
||||||
|
# --architecture
|
||||||
|
architecture = args.architecture
|
||||||
|
|
||||||
|
# --archive-areas
|
||||||
|
archive_areas = args.archive_areas
|
||||||
|
|
||||||
|
# --parent-archive-areas
|
||||||
|
parent_archive_areas = args.parent_archive_areas
|
||||||
|
|
||||||
|
# --distribution
|
||||||
|
distribution = args.distribution
|
||||||
|
|
||||||
|
# --parent-distribution
|
||||||
|
parent_distribution = args.parent_distribution
|
||||||
|
|
||||||
|
# --mirror-bootstrap
|
||||||
|
mirror_bootstrap = args.mirror_bootstrap
|
||||||
|
|
||||||
|
# --parent-mirror-bootstrap
|
||||||
|
parent_mirror_bootstrap = args.parent_mirror_bootstrap
|
||||||
|
|
||||||
|
# --mirror-bootstrap-security
|
||||||
|
mirror_bootstrap_security = args.mirror_bootstrap_security
|
||||||
|
|
||||||
|
# --parent-mirror-bootstrap-security
|
||||||
|
parent_mirror_bootstrap_security = args.parent_mirror_bootstrap_security
|
||||||
|
|
||||||
|
# --mirror-chroot
|
||||||
|
mirror_chroot = args.mirror_chroot
|
||||||
|
|
||||||
|
# --parent-mirror-chroot
|
||||||
|
parent_mirror_chroot = args.parent_mirror_chroot
|
||||||
|
|
||||||
|
# --mirror-chroot-security
|
||||||
|
mirror_chroot_security = args.mirror_chroot_security
|
||||||
|
|
||||||
|
# --parent-mirror-chroot-security
|
||||||
|
parent_mirror_chroot_security = args.parent_mirror_chroot_security
|
||||||
|
|
||||||
|
# --mirror-installer
|
||||||
|
mirror_installer = args.mirror_installer
|
||||||
|
|
||||||
|
# --parent-mirror-installer
|
||||||
|
parent_mirror_installer = args.parent_mirror_installer
|
||||||
|
|
||||||
|
# --mirror-installer-security
|
||||||
|
mirror_installer_security = args.mirror_installer_security
|
||||||
|
|
||||||
|
# --parent-mirror-installer-security
|
||||||
|
parent_mirror_installer_security = args.parent_mirror_installer_security
|
||||||
|
|
||||||
|
# --mirror-binary
|
||||||
|
mirror_binary = args.mirror_binary
|
||||||
|
|
||||||
|
# --parent-mirror-binary
|
||||||
|
parent_mirror_binary = args.parent_mirror_binary
|
||||||
|
|
||||||
|
# --mirror-binary-security
|
||||||
|
mirror_binary_security = args.mirror_binary_security
|
||||||
|
|
||||||
|
# --parent-mirror-binary-security
|
||||||
|
parent_mirror_binary_security = args.parent_mirror_binary_security
|
||||||
|
|
||||||
|
# --mirror-source
|
||||||
|
mirror_source = args.mirror_source
|
||||||
|
|
||||||
|
# --parent-mirror-source
|
||||||
|
parent_mirror_source = args.parent_mirror_source
|
||||||
|
|
||||||
|
# --mirror-source-security
|
||||||
|
mirror_source_security = args.mirror_source_security
|
||||||
|
|
||||||
|
# --parent-mirror-source-security
|
||||||
|
parent_mirror_source_security = args.parent_mirror_source_security
|
||||||
|
|
||||||
## Setting defaults
|
## Setting defaults
|
||||||
|
|
||||||
|
if not system:
|
||||||
|
system = 'live'
|
||||||
|
|
||||||
if not project:
|
if not project:
|
||||||
# FIXME: hardcoded project information
|
# FIXME: hardcoded project information
|
||||||
project = 'debian'
|
project = 'debian'
|
||||||
|
@ -65,10 +187,62 @@ def main():
|
||||||
|
|
||||||
distribution = default_distribution[project]
|
distribution = default_distribution[project]
|
||||||
|
|
||||||
|
## Setting derivative defaults
|
||||||
|
if (project == 'progress-linux'):
|
||||||
|
# parent-distribution
|
||||||
|
if(distribution == 'artax'):
|
||||||
|
parent_distribution = 'squeeze'
|
||||||
|
if(distribution == 'artax-backports'):
|
||||||
|
parent_distribution = 'squeeze'
|
||||||
|
if(distribution == 'baureo'):
|
||||||
|
parent_distribution = 'wheezy'
|
||||||
|
if(distribution == 'baureo-backports'):
|
||||||
|
parent_distribution = 'wheezy'
|
||||||
|
if(distribution == 'cairon'):
|
||||||
|
parent_distribution = 'jessie'
|
||||||
|
if(distribution == 'cairon-backports'):
|
||||||
|
parent_distribution = 'jessie'
|
||||||
|
else:
|
||||||
|
# parent-architecture
|
||||||
|
parent_architecture = architecture
|
||||||
|
|
||||||
|
# parent-distribution
|
||||||
|
parent_distribution = distribution
|
||||||
|
|
||||||
|
# parent-mirror-bootstrap
|
||||||
|
parent_mirror_bootstrap = mirror_bootstrap
|
||||||
|
|
||||||
|
# parent-mirror-bootstrap-security
|
||||||
|
parent_mirror_bootstrap_security = mirror_bootstrap_security
|
||||||
|
|
||||||
|
# parent-mirror-chroot
|
||||||
|
parent_mirror_chroot = mirror_chroot
|
||||||
|
|
||||||
|
# parent-mirror-chroot-security
|
||||||
|
parent_mirror_chroot_security = mirror_chroot_security
|
||||||
|
|
||||||
|
# parent-mirror-installer
|
||||||
|
parent_mirror_installer = mirror_installer
|
||||||
|
|
||||||
|
# parent-mirror-installer-security
|
||||||
|
parent_mirror_installer_security = mirror_installer_security
|
||||||
|
|
||||||
|
# parent-mirror-binary
|
||||||
|
parent_mirror_binary = mirror_binary
|
||||||
|
|
||||||
|
# parent-mirror-binary-security
|
||||||
|
parent_mirror_binary_security = mirror_binary_security
|
||||||
|
|
||||||
|
# parent-mirror-source
|
||||||
|
parent_mirror_source = mirror_source
|
||||||
|
|
||||||
|
# parent-mirror-source-security
|
||||||
|
parent_mirror_source_security = mirror_source_security
|
||||||
|
|
||||||
## Creating configuration directory
|
## Creating configuration directory
|
||||||
|
|
||||||
# stagefile
|
# stagefile
|
||||||
if os.path.isdir('.build'):
|
if os.path.exists('.build/init'):
|
||||||
if verbose:
|
if verbose:
|
||||||
print('I: configuration directory already initialized - nothing to do')
|
print('I: configuration directory already initialized - nothing to do')
|
||||||
|
|
||||||
|
@ -87,6 +261,173 @@ def main():
|
||||||
|
|
||||||
print('Make sure you are using the newest version at all times.')
|
print('Make sure you are using the newest version at all times.')
|
||||||
|
|
||||||
|
## Writing main configuration file
|
||||||
|
|
||||||
|
os.makedirs('config', exist_ok=True)
|
||||||
|
|
||||||
|
config = configparser.ConfigParser()
|
||||||
|
|
||||||
|
# build.conf
|
||||||
|
f = open('config/build.conf', 'w')
|
||||||
|
|
||||||
|
config.add_section('build')
|
||||||
|
|
||||||
|
config.set('build', 'architecture', architecture)
|
||||||
|
|
||||||
|
config.set('build', 'archive-areas', archive_areas)
|
||||||
|
config.set('build', 'parent-archive-areas', parent_archive_areas)
|
||||||
|
|
||||||
|
config.set('build', 'distribution', distribution)
|
||||||
|
config.set('build', 'parent-distribution', parent_distribution)
|
||||||
|
|
||||||
|
config.set('build', 'project', project)
|
||||||
|
config.set('build', 'system', system)
|
||||||
|
|
||||||
|
config.add_section('meta')
|
||||||
|
|
||||||
|
config.set('meta', 'version', '4.0')
|
||||||
|
|
||||||
|
config.write(f)
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives
|
||||||
|
os.makedirs('config/archives', exist_ok=True)
|
||||||
|
|
||||||
|
if (project == 'debian'):
|
||||||
|
# config/archives/debian.list.bootstrap
|
||||||
|
f = open('config/archives/debian.list.bootstrap', 'w')
|
||||||
|
f.write('deb ' + mirror_bootstrap + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_bootstrap_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_bootstrap + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_bootstrap + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/debian.list.chroot
|
||||||
|
f = open('config/archives/debian.list.chroot', 'w')
|
||||||
|
f.write('deb ' + mirror_chroot + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_chroot_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_chroot + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_chroot + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/debian.list.installer
|
||||||
|
f = open('config/archives/debian.list.installer', 'w')
|
||||||
|
f.write('deb ' + mirror_installer + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_installer_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_installer + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_installer + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/debian.list.binary
|
||||||
|
f = open('config/archives/debian.list.binary', 'w')
|
||||||
|
f.write('deb ' + mirror_binary + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_binary_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_binary + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_binary + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/debian.list.source
|
||||||
|
f = open('config/archives/debian.list.source', 'w')
|
||||||
|
f.write('deb ' + mirror_source + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + mirror_source + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_source_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + mirror_source_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_source + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + mirror_source + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_source + ' ' + distribution + '-backports ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + mirror_source + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
elif(project == 'progress-linux'):
|
||||||
|
# config/archives/debian.list.bootstrap
|
||||||
|
f = open('config/archives/debian.list.bootstrap', 'w')
|
||||||
|
f.write('deb ' + parent_mirror_bootstrap + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-backports' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/debian.list.chroot
|
||||||
|
f = open('config/archives/debian.list.chroot', 'w')
|
||||||
|
f.write('deb ' + parent_mirror_chroot + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_chroot_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-backports' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/debian.list.installer
|
||||||
|
f = open('config/archives/debian.list.installer', 'w')
|
||||||
|
f.write('deb ' + parent_mirror_installer + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_installer_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-backports' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/debian.list.binary
|
||||||
|
f = open('config/archives/debian.list.binary', 'w')
|
||||||
|
f.write('deb ' + parent_mirror_binary + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_binary_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-backports' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/debian.list.source
|
||||||
|
f = open('config/archives/debian.list.source', 'w')
|
||||||
|
f.write('deb ' + parent_mirror_source + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + parent_mirror_source + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_source_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + parent_mirror_source_security + ' ' + distribution + '/updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + parent_mirror_bootstrap + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + parent_mirror_bootstrap + ' ' + distribution + '-backports' + archive_areas + '\n'
|
||||||
|
'deb-src ' + parent_mirror_bootstrap + ' ' + distribution + '-backports' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/project.list.bootstrap
|
||||||
|
f = open('config/archives/' + project + '.list.bootstrap', 'w')
|
||||||
|
f.write('deb ' + mirror_bootstrap + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_bootstrap_security + ' ' + distribution + '-security ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_bootstrap + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_bootstrap + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/project.list.chroot
|
||||||
|
f = open('config/archives/' + project + '.list.chroot', 'w')
|
||||||
|
f.write('deb ' + mirror_chroot + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_chroot_security + ' ' + distribution + '-security ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_chroot + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_chroot + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/project.list.installer
|
||||||
|
f = open('config/archives/' + project + '.list.installer', 'w')
|
||||||
|
f.write('deb ' + mirror_installer + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_installer_security + ' ' + distribution + '-security ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_installer + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_installer + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/project.list.binary
|
||||||
|
f = open('config/archives/' + project + '.list.binary', 'w')
|
||||||
|
f.write('deb ' + mirror_binary + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_binary_security + ' ' + distribution + '-security ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_binary + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_binary + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# config/archives/project.list.source
|
||||||
|
f = open('config/archives/' + project + '.list.source', 'w')
|
||||||
|
f.write('deb ' + mirror_source + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + mirror_source + ' ' + distribution + ' ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_source_security + ' ' + distribution + '-security ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + mirror_source_security + ' ' + distribution + '-security ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_source + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + mirror_source + ' ' + distribution + '-updates ' + archive_areas + '\n'
|
||||||
|
'deb ' + mirror_source + ' ' + distribution + '-backports ' + archive_areas + '\n'
|
||||||
|
'deb-src ' + mirror_source + ' ' + distribution + '-backports ' + archive_areas + '\n')
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
## Populating configuration directory
|
||||||
|
|
||||||
# Configuring default archive-keys
|
# Configuring default archive-keys
|
||||||
if (project == 'progress-linux'):
|
if (project == 'progress-linux'):
|
||||||
# dependencies
|
# dependencies
|
||||||
|
@ -133,13 +474,18 @@ def main():
|
||||||
# Configuring default hooks
|
# Configuring default hooks
|
||||||
os.makedirs('config/hooks', exist_ok=True)
|
os.makedirs('config/hooks', exist_ok=True)
|
||||||
|
|
||||||
for hook in glob.glob('/usr/share/live/build/hooks/*.hook*'):
|
for hook in glob.glob('/usr/share/live/build/hooks/all/*.hook*'):
|
||||||
os.symlink(hook, os.path.join('config/hooks/' + os.path.basename(hook)))
|
os.symlink(hook, os.path.join('config/hooks/' + os.path.basename(hook)))
|
||||||
|
|
||||||
|
if os.path.exists('/usr/share/live/build/hooks/' + system):
|
||||||
|
for hook in glob.glob('/usr/share/live/build/hooks/' + system + '/*.hook*'):
|
||||||
|
os.symlink(hook, os.path.join('config/hooks/' + os.path.basename(hook)))
|
||||||
|
|
||||||
# Configuring default includes
|
# Configuring default includes
|
||||||
os.makedirs('config/includes', exist_ok=True)
|
os.makedirs('config/includes', exist_ok=True)
|
||||||
os.makedirs('config/includes.bootstrap', exist_ok=True)
|
os.makedirs('config/includes.bootstrap', exist_ok=True)
|
||||||
os.makedirs('config/includes.chroot', exist_ok=True)
|
os.makedirs('config/includes.chroot', exist_ok=True)
|
||||||
|
#os.makedirs('config/includes.installer', exist_ok=True) FIXME
|
||||||
os.makedirs('config/includes.binary', exist_ok=True)
|
os.makedirs('config/includes.binary', exist_ok=True)
|
||||||
os.makedirs('config/includes.source', exist_ok=True)
|
os.makedirs('config/includes.source', exist_ok=True)
|
||||||
|
|
||||||
|
@ -147,6 +493,7 @@ def main():
|
||||||
os.chmod('config/includes', 0o755)
|
os.chmod('config/includes', 0o755)
|
||||||
os.chmod('config/includes.bootstrap', 0o755)
|
os.chmod('config/includes.bootstrap', 0o755)
|
||||||
os.chmod('config/includes.chroot', 0o755)
|
os.chmod('config/includes.chroot', 0o755)
|
||||||
|
#os.chmod('config/includes.installer', 0o755) FIXME
|
||||||
os.chmod('config/includes.binary', 0o755)
|
os.chmod('config/includes.binary', 0o755)
|
||||||
os.chmod('config/includes.source', 0o755)
|
os.chmod('config/includes.source', 0o755)
|
||||||
|
|
||||||
|
@ -154,11 +501,20 @@ def main():
|
||||||
os.makedirs('config/package-lists', exist_ok=True)
|
os.makedirs('config/package-lists', exist_ok=True)
|
||||||
|
|
||||||
f = open('config/package-lists/live.list.chroot', 'w')
|
f = open('config/package-lists/live.list.chroot', 'w')
|
||||||
f.write('live-boot\nlive-config\nlive-config-sysvinit\n')
|
|
||||||
|
f.write('live-boot\n'
|
||||||
|
'live-config\n')
|
||||||
|
|
||||||
|
if(parent_distribution == 'wheezy'):
|
||||||
|
f.write('live-config-sysvinit\n')
|
||||||
|
else:
|
||||||
|
f.write('live-config-systemd\n')
|
||||||
|
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
## stagefile
|
## stagefile
|
||||||
os.makedirs('.build', exist_ok=True)
|
os.makedirs('.build', exist_ok=True)
|
||||||
|
open('.build/init', 'w').close()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
|
@ -93,7 +93,7 @@ def main():
|
||||||
exec_hook = subprocess.check_call('cd source && live-build/' + os.path.basename(hook), shell=True)
|
exec_hook = subprocess.check_call('cd source && live-build/' + os.path.basename(hook), shell=True)
|
||||||
os.remove('source/live-build/' + os.path.basename(hook))
|
os.remove('source/live-build/' + os.path.basename(hook))
|
||||||
|
|
||||||
# unmount coniguration directory
|
# unmount configuration directory
|
||||||
umount = subprocess.check_call('umount source/live-build/config', shell=True)
|
umount = subprocess.check_call('umount source/live-build/config', shell=True)
|
||||||
|
|
||||||
os.rmdir('source/live-build/config')
|
os.rmdir('source/live-build/config')
|
||||||
|
|
|
@ -10,74 +10,67 @@
|
||||||
|
|
||||||
New_configuration ()
|
New_configuration ()
|
||||||
{
|
{
|
||||||
## Runtime
|
# Version
|
||||||
|
LIVE_CONFIGURATION_VERSION="${LIVE_CONFIGURATION_VERSION:-$(Get_configuration config/build.conf version)}"
|
||||||
# Image: Architecture
|
|
||||||
if [ -x "/usr/bin/dpkg" ]
|
|
||||||
then
|
|
||||||
CURRENT_IMAGE_ARCHITECTURE="$(dpkg --print-architecture)"
|
|
||||||
else
|
|
||||||
case "$(uname -m)" in
|
|
||||||
x86_64)
|
|
||||||
CURRENT_IMAGE_ARCHITECTURE="amd64"
|
|
||||||
;;
|
|
||||||
|
|
||||||
i?86)
|
|
||||||
CURRENT_IMAGE_ARCHITECTURE="i386"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
Echo_warning "Unable to determine current architecture, using ${CURRENT_IMAGE_ARCHITECTURE}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
## Configuration
|
|
||||||
|
|
||||||
# Configuration-Version
|
|
||||||
LIVE_CONFIGURATION_VERSION="${LIVE_CONFIGURATION_VERSION:-$(Get_configuration config/build Configuration-Version)}"
|
|
||||||
LIVE_CONFIGURATION_VERSION="${LIVE_CONFIGURATION_VERSION:-${LIVE_BUILD_VERSION}}"
|
|
||||||
export LIVE_CONFIGURATION_VERSION
|
export LIVE_CONFIGURATION_VERSION
|
||||||
|
|
||||||
# Image: Name
|
# Name
|
||||||
LIVE_IMAGE_NAME="${LIVE_IMAGE_NAME:-$(Get_configuration config/build Name)}"
|
LIVE_IMAGE_NAME="${LIVE_IMAGE_NAME:-$(Get_configuration config/build.conf name)}"
|
||||||
LIVE_IMAGE_NAME="${LIVE_IMAGE_NAME:-live-image}"
|
LIVE_IMAGE_NAME="${LIVE_IMAGE_NAME:-live-image}" # FIXME
|
||||||
export LIVE_IMAGE_NAME
|
export LIVE_IMAGE_NAME
|
||||||
|
|
||||||
# Image: Architecture (FIXME: Support and default to 'any')
|
# Architecture (FIXME: Support and default to 'any')
|
||||||
LIVE_IMAGE_ARCHITECTURE="${LIVE_IMAGE_ARCHITECTURE:-$(Get_configuration config/build Architecture)}"
|
LIVE_IMAGE_ARCHITECTURE="${LIVE_IMAGE_ARCHITECTURE:-$(Get_configuration config/build.conf architecture)}"
|
||||||
LIVE_IMAGE_ARCHITECTURE="${LIVE_IMAGE_ARCHITECTURE:-${CURRENT_IMAGE_ARCHITECTURE}}"
|
|
||||||
export LIVE_IMAGE_ARCHITECTURE
|
export LIVE_IMAGE_ARCHITECTURE
|
||||||
|
|
||||||
# Image: Archive Areas
|
# Archive Areas
|
||||||
LIVE_IMAGE_ARCHIVE_AREAS="${LIVE_IMAGE_ARCHIVE_AREAS:-$(Get_configuration config/build Archive-Areas)}"
|
LIVE_IMAGE_ARCHIVE_AREAS="${LIVE_IMAGE_ARCHIVE_AREAS:-$(Get_configuration config/build.conf archive-areas)}"
|
||||||
|
|
||||||
case "${LB_MODE}" in
|
|
||||||
progress-linux)
|
|
||||||
LIVE_IMAGE_ARCHIVE_AREAS="${LIVE_IMAGE_ARCHIVE_AREAS:-main contrib non-free}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
ubuntu)
|
|
||||||
LIVE_IMAGE_ARCHIVE_AREAS="${LIVE_IMAGE_ARCHIVE_AREAS:-main restricted}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
LIVE_IMAGE_ARCHIVE_AREAS="${LIVE_IMAGE_ARCHIVE_AREAS:-main}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
export LIVE_IMAGE_ARCHIVE_AREAS
|
export LIVE_IMAGE_ARCHIVE_AREAS
|
||||||
|
|
||||||
# Image: Archive Areas
|
# Archive Areas
|
||||||
LIVE_IMAGE_PARENT_ARCHIVE_AREAS="${LIVE_IMAGE_PARENT_ARCHIVE_AREAS:-$(Get_configuration config/build Parent-Archive-Areas)}"
|
LIVE_IMAGE_PARENT_ARCHIVE_AREAS="${LIVE_IMAGE_PARENT_ARCHIVE_AREAS:-$(Get_configuration config/build.conf parent-archive-areas)}"
|
||||||
LIVE_IMAGE_PARENT_ARCHIVE_AREAS="${LIVE_IMAGE_PARENT_ARCHIVE_AREAS:-${LIVE_IMAGE_ARCHIVE_AREAS}}"
|
|
||||||
export LIVE_IMAGE_PARENT_ARCHIVE_AREAS
|
export LIVE_IMAGE_PARENT_ARCHIVE_AREAS
|
||||||
|
|
||||||
# Image: Type
|
# Type
|
||||||
LIVE_IMAGE_TYPE="${LIVE_IMAGE_TYPE:-$(Get_configuration config/build Type)}"
|
LIVE_IMAGE_TYPE="${LIVE_IMAGE_TYPE:-$(Get_configuration config/build.conf type)}"
|
||||||
LIVE_IMAGE_TYPE="${LIVE_IMAGE_TYPE:-iso-hybrid}"
|
|
||||||
export LIVE_IMAGE_TYPE
|
export LIVE_IMAGE_TYPE
|
||||||
|
|
||||||
|
# Mirrors
|
||||||
|
LB_MIRROR_BOOTSTRAP="$(Get_configuration config/build.conf mirror-bootstrap)"
|
||||||
|
export LB_MIRROR_BOOTSTRAP
|
||||||
|
|
||||||
|
LB_PARENT_MIRROR_BOOTSTRAP="$(Get_configuration config/build.conf parent-mirror-bootstrap)"
|
||||||
|
export LB_PARENT_MIRROR_BOOTSTRAP
|
||||||
|
|
||||||
|
LB_MIRROR_CHROOT="$(Get_configuration config/build.conf mirror-chroot)"
|
||||||
|
export LB_MIRROR_CHROOT
|
||||||
|
|
||||||
|
LB_PARENT_MIRROR_CHROOT="$(Get_configuration config/build.conf parent-mirror-chroot)"
|
||||||
|
export LB_MIRROR_CHROOT
|
||||||
|
|
||||||
|
LB_MIRROR_CHROOT_SECURITY="$(Get_configuration config/build.conf mirror-chroot-security)"
|
||||||
|
export LB_MIRROR_CHROOT_SECURITY
|
||||||
|
|
||||||
|
LB_PARENT_MIRROR_CHROOT_SECURITY="$(Get_configuration config/build.conf parent-mirror-chroot-security)"
|
||||||
|
export LB_PARENT_MIRROR_CHROOT_SECURITY
|
||||||
|
|
||||||
|
LB_MIRROR_BINARY="$(Get_configuration config/build.conf mirror-binary)"
|
||||||
|
export LB_MIRROR_BINARY
|
||||||
|
|
||||||
|
LB_PARENT_MIRROR_BINARY="$(Get_configuration config/build.conf parent-mirror-binary)"
|
||||||
|
export LB_PARENT_MIRROR_BINARY
|
||||||
|
|
||||||
|
LB_MIRROR_BINARY_SECURITY="$(Get_configuration config/build.conf mirror-binary-security)"
|
||||||
|
export LB_MIRROR_BINARY_SECURITY
|
||||||
|
|
||||||
|
LB_PARENT_MIRROR_BINARY_SECURITY="$(Get_configuration config/build.conf parent-mirror-binary-security)"
|
||||||
|
export LB_PARENT_MIRROR_BINARY_SECURITY
|
||||||
|
|
||||||
|
LB_MIRROR_DEBIAN_INSTALLER="$(Get_configuration config/build.conf mirror-installer)"
|
||||||
|
export LB_MIRROR_DEBIAN_INSTALLER
|
||||||
|
|
||||||
|
LB_PARENT_MIRROR_DEBIAN_INSTALLER="$(Get_configuration config/build.conf parent-mirror-installer)"
|
||||||
|
export LB_PARENT_MIRROR_DEBIAN_INSTALLER
|
||||||
}
|
}
|
||||||
|
|
||||||
Set_defaults ()
|
Set_defaults ()
|
||||||
|
@ -370,129 +363,6 @@ Set_defaults ()
|
||||||
|
|
||||||
## config/bootstrap
|
## config/bootstrap
|
||||||
|
|
||||||
# Setting mirror to fetch packages from
|
|
||||||
case "${LB_MODE}" in
|
|
||||||
debian)
|
|
||||||
LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://ftp.debian.org/debian/}"
|
|
||||||
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-${LB_MIRROR_BOOTSTRAP}}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
progress-linux)
|
|
||||||
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://ftp.debian.org/debian/}"
|
|
||||||
LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://cdn.archive.progress-linux.org/packages/}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
ubuntu)
|
|
||||||
case "${LIVE_IMAGE_ARCHITECTURE}" in
|
|
||||||
amd64|i386)
|
|
||||||
LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://archive.ubuntu.com/ubuntu/}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://ports.ubuntu.com/ubuntu-ports/}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-${LB_MIRROR_BOOTSTRAP}}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
LB_PARENT_MIRROR_CHROOT="${LB_PARENT_MIRROR_CHROOT:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
|
|
||||||
LB_MIRROR_CHROOT="${LB_MIRROR_CHROOT:-${LB_MIRROR_BOOTSTRAP}}"
|
|
||||||
|
|
||||||
# Setting security mirror to fetch packages from
|
|
||||||
case "${LB_MODE}" in
|
|
||||||
debian)
|
|
||||||
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-http://security.debian.org/}"
|
|
||||||
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT_SECURITY}}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
progress-linux)
|
|
||||||
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://security.debian.org/}"
|
|
||||||
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT}}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
ubuntu)
|
|
||||||
case "${LIVE_IMAGE_ARCHITECTURE}" in
|
|
||||||
amd64|i386)
|
|
||||||
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-http://security.ubuntu.com/ubuntu/}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-http://ports.ubuntu.com/ubuntu-ports/}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT_SECURITY}}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Setting mirror which ends up in the image
|
|
||||||
case "${LB_MODE}" in
|
|
||||||
debian)
|
|
||||||
LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-http://http.debian.net/debian/}"
|
|
||||||
LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-${LB_MIRROR_BINARY}}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
progress-linux)
|
|
||||||
LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://ftp.debian.org/debian/}"
|
|
||||||
LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_MIRROR_CHROOT}}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
ubuntu)
|
|
||||||
case "${LIVE_IMAGE_ARCHITECTURE}" in
|
|
||||||
amd64|i386)
|
|
||||||
LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-http://archive.ubuntu.com/ubuntu/}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-http://ports.ubuntu.com/ubuntu-ports/}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-${LB_MIRROR_BINARY}}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Setting security mirror which ends up in the image
|
|
||||||
case "${LB_MODE}" in
|
|
||||||
debian)
|
|
||||||
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-http://security.debian.org/}"
|
|
||||||
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-${LB_MIRROR_BINARY_SECURITY}}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
progress-linux)
|
|
||||||
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://security.debian.org/}"
|
|
||||||
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_MIRROR_CHROOT}}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
ubuntu)
|
|
||||||
case "${LIVE_IMAGE_ARCHITECTURE}" in
|
|
||||||
amd64|i386)
|
|
||||||
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-http://security.ubuntu.com/ubuntu/}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-http://ports.ubuntu.com/ubuntu-ports/}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-${LB_MIRROR_BINARY_SECURITY}}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
case "${LB_MODE}" in
|
|
||||||
progress-linux)
|
|
||||||
LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_MIRROR_CHROOT}}"
|
|
||||||
LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER:-${LB_MIRROR_CHROOT}}"
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER:-${LB_MIRROR_CHROOT}}"
|
|
||||||
LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_CHROOT}}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
## config/chroot
|
## config/chroot
|
||||||
|
|
||||||
# Setting chroot filesystem
|
# Setting chroot filesystem
|
||||||
|
@ -627,11 +497,6 @@ Set_defaults ()
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
|
||||||
Echo_error "Architecture(s) ${LIVE_IMAGE_ARCHITECTURE} not yet supported (FIXME)"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Set linux packages
|
# Set linux packages
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
@ -32,16 +32,20 @@ Das \fBlb init\fP Kommando erstellt ein leeres Konfigurationsverzeichnis oder
|
||||||
re\-initialisiert ein bestehendes.
|
re\-initialisiert ein bestehendes.
|
||||||
|
|
||||||
.SH OPTIONEN
|
.SH OPTIONEN
|
||||||
|
.IP "\fB\-\-archive\-areas\fP='ARCHIVE_AREA1 ARCHIVE_AREA2 ...'" 4
|
||||||
|
set the archive areas.
|
||||||
.IP \fB\-\-distribution\fP 4
|
.IP \fB\-\-distribution\fP 4
|
||||||
sets die Standard Distribution.
|
sets die Standard Distribution.
|
||||||
.IP \fB\-\-project\fP 4
|
.IP \fB\-\-project\fP 4
|
||||||
setzt das Projeckt von dem die internen Standardwerte abgeleitet
|
setzt das Projekt von dem interne Standardwerte abgeleitet werden. Momentan
|
||||||
werden. Momentan gültige Projekte sind 'debian' und 'progress\-linux'
|
gültige Projekte sind 'debian' und 'progress\-linux' (Standardwert: debian).
|
||||||
(Standardwert: debian).
|
|
||||||
.IP \fB\-\-verbose\fP 4
|
.IP \fB\-\-verbose\fP 4
|
||||||
setzt verbose Option für mehr Ausgaben (Standardwert: aus).
|
setzt verbose Option für mehr Ausgaben (Standardwert: aus).
|
||||||
.IP "\fB\-h, \-\-help\fP" 4
|
.IP "\fB\-h, \-\-help\fP" 4
|
||||||
zeigt Hilfenachricht und beendet sich.
|
zeigt Hilfenachricht und beendet sich.
|
||||||
|
.IP \fB\-\-system\fP 4
|
||||||
|
setzt den System Typ von dem interne Standardwerte abgeleitet
|
||||||
|
werden. Momentan gültige Typen sind 'live' und 'lxc' (Standardwert: live).
|
||||||
.IP \fB\-\-version\fP 4
|
.IP \fB\-\-version\fP 4
|
||||||
zeigt Versionsnummer des Programms und beendet sich.
|
zeigt Versionsnummer des Programms und beendet sich.
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Live Systems Projekt"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Live Systems Projekt"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fP \- System Build Komponenten
|
\fBlive\-build\fP \- System Build Komponenten
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
@ -24,6 +24,8 @@ live\-build contains the components to build a live system from a configuration
|
||||||
The \fBlb init\fR command creates an empty configuration directory or reinitialize an existing one.
|
The \fBlb init\fR command creates an empty configuration directory or reinitialize an existing one.
|
||||||
|
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
|
.IP "\fB\-\-archive\-areas\fR='ARCHIVE_AREA1 ARCHIVE_AREA2 ...'" 4
|
||||||
|
set the archive areas.
|
||||||
.IP "\fB\-\-distribution\fR" 4
|
.IP "\fB\-\-distribution\fR" 4
|
||||||
set the default distribution.
|
set the default distribution.
|
||||||
.IP "\fB\-\-project\fR" 4
|
.IP "\fB\-\-project\fR" 4
|
||||||
|
@ -32,6 +34,8 @@ set the project to derive internal defaults from. Currently valid projects are '
|
||||||
sets verbose option (default: False).
|
sets verbose option (default: False).
|
||||||
.IP "\fB\-h, \-\-help\fR" 4
|
.IP "\fB\-h, \-\-help\fR" 4
|
||||||
show help message and exit.
|
show help message and exit.
|
||||||
|
.IP "\fB\-\-system\fR" 4
|
||||||
|
set the system type to derive internal defaults from. Currently valid types are 'live' and 'lxc' (default: live).'
|
||||||
.IP "\fB\-\-version\fR" 4
|
.IP "\fB\-\-version\fR" 4
|
||||||
show program's version number and exit.
|
show program's version number and exit.
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
.\" under certain conditions; see COPYING for details.
|
.\" under certain conditions; see COPYING for details.
|
||||||
.\"
|
.\"
|
||||||
.\"
|
.\"
|
||||||
.TH LIVE\-BUILD 1 2014\-07\-24 4.0~alpha39-1 "Live Systems Project"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39-1 "Live Systems Project"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBlive\-build\fR \- Live System Build Components
|
\fBlive\-build\fR \- Live System Build Components
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
@ -32,6 +32,8 @@ El comando \fBlb init\fP crea un directorio de configuración vacio o
|
||||||
reinicializa uno ya existente.
|
reinicializa uno ya existente.
|
||||||
|
|
||||||
.SH OPCIONES
|
.SH OPCIONES
|
||||||
|
.IP "\fB\-\-archive\-areas\fP='ARCHIVE_AREA1 ARCHIVE_AREA2 ...'" 4
|
||||||
|
set the archive areas.
|
||||||
.IP \fB\-\-distribution\fP 4
|
.IP \fB\-\-distribution\fP 4
|
||||||
establece la distribución predeterminada.
|
establece la distribución predeterminada.
|
||||||
.IP \fB\-\-project\fP 4
|
.IP \fB\-\-project\fP 4
|
||||||
|
@ -42,6 +44,9 @@ predeterminados. Actualmente, los proyectos válidos son «debian» y
|
||||||
establece la opción verbose (por defecto: False).
|
establece la opción verbose (por defecto: False).
|
||||||
.IP "\fB\-h, \-\-help\fP" 4
|
.IP "\fB\-h, \-\-help\fP" 4
|
||||||
muestra el mensaje de ayuda y sale.
|
muestra el mensaje de ayuda y sale.
|
||||||
|
.IP \fB\-\-system\fP 4
|
||||||
|
set the system type to derive internal defaults from. Currently valid types
|
||||||
|
are 'live' and 'lxc' (default: live).'
|
||||||
.IP \fB\-\-version\fP 4
|
.IP \fB\-\-version\fP 4
|
||||||
muestra el número de versión del programa y sale.
|
muestra el número de versión del programa y sale.
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
.\" This file was generated with po4a. Translate the source file.
|
.\" This file was generated with po4a. Translate the source file.
|
||||||
.\"
|
.\"
|
||||||
.\"*******************************************************************
|
.\"*******************************************************************
|
||||||
.TH LIVE\-BUILD 1 24.07.2014 4.0~alpha39\-1 "Proyecto Live Systems"
|
.TH LIVE\-BUILD 1 2014\-08\-26 4.0~alpha39\-1 "Proyecto Live Systems"
|
||||||
|
|
||||||
.SH NOMBRE
|
.SH NOMBRE
|
||||||
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
\fBlive\-build\fP \- Componentes de Construcción del Sistema en vivo
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -226,7 +227,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -236,7 +237,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -245,7 +246,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -255,7 +256,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -264,7 +265,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -274,7 +275,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -283,7 +284,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -356,7 +357,7 @@ msgstr "Verzeichnis in das die Hook Dateien kopiert werden."
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -385,7 +386,7 @@ msgstr "I<lb-source-hooks>(1)"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -395,7 +396,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -410,7 +411,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -420,7 +421,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -439,7 +440,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -449,7 +450,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -130,7 +131,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -140,7 +141,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -149,7 +150,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -159,7 +160,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -168,7 +169,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -178,7 +179,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -187,7 +188,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -203,7 +204,7 @@ msgstr "B<binary>:"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -213,7 +214,7 @@ msgstr "SIEHE AUCH"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -223,7 +224,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -238,7 +239,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -248,7 +249,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -267,7 +268,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -277,7 +278,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -121,7 +122,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -131,7 +132,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -140,7 +141,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -150,7 +151,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -159,7 +160,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -169,7 +170,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -178,7 +179,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -188,7 +189,7 @@ msgstr "DATEIEN"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -198,7 +199,7 @@ msgstr "SIEHE AUCH"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -208,7 +209,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -223,7 +224,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -233,7 +234,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -252,7 +253,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -262,7 +263,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -121,7 +122,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -131,7 +132,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -140,7 +141,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -150,7 +151,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -159,7 +160,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -169,7 +170,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -178,7 +179,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -188,7 +189,7 @@ msgstr "DATEIEN"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -198,7 +199,7 @@ msgstr "SIEHE AUCH"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -208,7 +209,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -223,7 +224,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -233,7 +234,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -252,7 +253,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -262,7 +263,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -130,7 +131,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -140,7 +141,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -149,7 +150,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -159,7 +160,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -168,7 +169,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -178,7 +179,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -187,7 +188,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -222,7 +223,7 @@ msgstr "Verzeichnis in das die Hook Dateien kopiert werden."
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -245,7 +246,7 @@ msgstr "I<lb-source-hooks>(1)"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -255,7 +256,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -270,7 +271,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -280,7 +281,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -299,7 +300,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -309,7 +310,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -130,7 +131,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -140,7 +141,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -149,7 +150,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -159,7 +160,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -168,7 +169,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -178,7 +179,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -187,7 +188,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -197,7 +198,7 @@ msgstr "DATEIEN"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -207,7 +208,7 @@ msgstr "SIEHE AUCH"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -217,7 +218,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -232,7 +233,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -242,7 +243,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -261,7 +262,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -271,7 +272,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -130,7 +131,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -140,7 +141,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -149,7 +150,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -159,7 +160,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -168,7 +169,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -178,7 +179,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -187,7 +188,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -222,7 +223,7 @@ msgstr "Verzeichnis in das die Hook Dateien kopiert werden."
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -245,7 +246,7 @@ msgstr "I<lb-source-hooks>(1)"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -255,7 +256,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -270,7 +271,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -280,7 +281,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -299,7 +300,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -309,7 +310,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -130,7 +131,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -140,7 +141,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -149,7 +150,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -159,7 +160,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -168,7 +169,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -178,7 +179,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -187,7 +188,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -197,7 +198,7 @@ msgstr "DATEIEN"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -207,7 +208,7 @@ msgstr "SIEHE AUCH"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -217,7 +218,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -232,7 +233,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -242,7 +243,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -261,7 +262,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -271,7 +272,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -121,7 +122,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -131,7 +132,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -140,7 +141,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -150,7 +151,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -159,7 +160,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -169,7 +170,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -178,7 +179,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -188,7 +189,7 @@ msgstr "DATEIEN"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -198,7 +199,7 @@ msgstr "SIEHE AUCH"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -208,7 +209,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -223,7 +224,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -233,7 +234,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -252,7 +253,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -262,7 +263,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
@ -301,48 +302,73 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb-init.1:27
|
#: en/lb-init.1:27
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
msgid "B<--archive-areas>='ARCHIVE_AREA1 ARCHIVE_AREA2 ...'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: en/lb-init.1:29
|
||||||
|
msgid "set the archive areas."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: IP
|
||||||
|
#: en/lb-init.1:29
|
||||||
|
#, no-wrap
|
||||||
msgid "B<--distribution>"
|
msgid "B<--distribution>"
|
||||||
msgstr "B<--distribution>"
|
msgstr "B<--distribution>"
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:29
|
#: en/lb-init.1:31
|
||||||
msgid "set the default distribution."
|
msgid "set the default distribution."
|
||||||
msgstr "sets die Standard Distribution."
|
msgstr "sets die Standard Distribution."
|
||||||
|
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb-init.1:29
|
#: en/lb-init.1:31
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--project>"
|
msgid "B<--project>"
|
||||||
msgstr "B<--project>"
|
msgstr "B<--project>"
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:31
|
#: en/lb-init.1:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"set the project to derive internal defaults from. Currently valid projects "
|
"set the project to derive internal defaults from. Currently valid projects "
|
||||||
"are 'debian' and 'progress-linux' (default: debian)."
|
"are 'debian' and 'progress-linux' (default: debian)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"setzt das Projeckt von dem die internen Standardwerte abgeleitet werden. "
|
"setzt das Projekt von dem interne Standardwerte abgeleitet werden. Momentan "
|
||||||
"Momentan gültige Projekte sind 'debian' und 'progress-linux' (Standardwert: "
|
"gültige Projekte sind 'debian' und 'progress-linux' (Standardwert: debian)."
|
||||||
"debian)."
|
|
||||||
|
|
||||||
#. type: IP
|
#. type: IP
|
||||||
|
#: en/lb-init.1:37
|
||||||
|
#, no-wrap
|
||||||
|
msgid "B<--system>"
|
||||||
|
msgstr "B<--system>"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
#: en/lb-init.1:39
|
#: en/lb-init.1:39
|
||||||
|
msgid ""
|
||||||
|
"set the system type to derive internal defaults from. Currently valid types "
|
||||||
|
"are 'live' and 'lxc' (default: live).'"
|
||||||
|
msgstr ""
|
||||||
|
"setzt den System Typ von dem interne Standardwerte abgeleitet werden. "
|
||||||
|
"Momentan gültige Typen sind 'live' und 'lxc' (Standardwert: live)."
|
||||||
|
|
||||||
|
#. type: IP
|
||||||
|
#: en/lb-init.1:43
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<config>:"
|
msgid "B<config>:"
|
||||||
msgstr "B<config>:"
|
msgstr "B<config>:"
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:41
|
#: en/lb-init.1:45
|
||||||
msgid "configuration directory."
|
msgid "configuration directory."
|
||||||
msgstr "Konfigurationsverzeichnis."
|
msgstr "Konfigurationsverzeichnis."
|
||||||
|
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb-init.1:41
|
#: en/lb-init.1:45
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<.build>:"
|
msgid "B<.build>:"
|
||||||
msgstr "B<.build>:"
|
msgstr "B<.build>:"
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:43
|
#: en/lb-init.1:47
|
||||||
msgid "configuration directory for meta-information."
|
msgid "configuration directory for meta-information."
|
||||||
msgstr "Konfigurationsverzeichnis für Meta-Informationen."
|
msgstr "Konfigurationsverzeichnis für Meta-Informationen."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -130,7 +131,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -140,7 +141,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -149,7 +150,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -159,7 +160,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -168,7 +169,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -178,7 +179,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -187,7 +188,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -222,7 +223,7 @@ msgstr "Verzeichnis in das die Hook Dateien kopiert werden."
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -245,7 +246,7 @@ msgstr "I<lb-chroot-hooks>(1)"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -255,7 +256,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -270,7 +271,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -280,7 +281,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -299,7 +300,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -309,7 +310,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:38+0100\n"
|
||||||
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
"Last-Translator: Daniel Baumann <mail@daniel-baumann.ch>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -31,9 +31,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -130,7 +131,7 @@ msgstr "OPTIONEN"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -140,7 +141,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
|
@ -149,7 +150,7 @@ msgstr "setzt verbose Option für mehr Ausgaben (Standardwert: aus)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -159,7 +160,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "zeigt Hilfenachricht und beendet sich."
|
msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
|
@ -168,7 +169,7 @@ msgstr "zeigt Hilfenachricht und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -178,7 +179,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
|
@ -187,7 +188,7 @@ msgstr "zeigt Versionsnummer des Programms und beendet sich."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -197,7 +198,7 @@ msgstr "DATEIEN"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -207,7 +208,7 @@ msgstr "SIEHE AUCH"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -217,7 +218,7 @@ msgstr "HOMEPAGE"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -232,7 +233,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -242,7 +243,7 @@ msgstr "FEHLER"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -261,7 +262,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -271,7 +272,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -223,7 +224,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -233,7 +234,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -242,7 +243,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -252,7 +253,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -261,7 +262,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -271,7 +272,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -280,7 +281,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -353,7 +354,7 @@ msgstr "directorio en el que se copian los scripts gancho."
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -382,7 +383,7 @@ msgstr "I<lb-source-hooks>(1)"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -392,7 +393,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -407,7 +408,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -417,7 +418,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -434,7 +435,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -444,7 +445,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -129,7 +130,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +140,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -148,7 +149,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +159,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -167,7 +168,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +178,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -186,7 +187,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -202,7 +203,7 @@ msgstr "B<binary>:"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -212,7 +213,7 @@ msgstr "VER TAMBIÉN"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -222,7 +223,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -237,7 +238,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -247,7 +248,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -264,7 +265,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -274,7 +275,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 09:12+0100\n"
|
"PO-Revision-Date: 2013-11-06 09:12+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -120,7 +121,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -130,7 +131,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -139,7 +140,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -149,7 +150,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -158,7 +159,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -168,7 +169,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -177,7 +178,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -187,7 +188,7 @@ msgstr "FICHEROS"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -197,7 +198,7 @@ msgstr "VER TAMBIÉN"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -207,7 +208,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -222,7 +223,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -232,7 +233,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -249,7 +250,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -259,7 +260,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 09:16+0100\n"
|
"PO-Revision-Date: 2013-11-06 09:16+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -120,7 +121,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -130,7 +131,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -139,7 +140,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -149,7 +150,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -158,7 +159,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -168,7 +169,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -177,7 +178,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -187,7 +188,7 @@ msgstr "FICHEROS"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -197,7 +198,7 @@ msgstr "VER TAMBIÉN"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -207,7 +208,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -222,7 +223,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -232,7 +233,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -249,7 +250,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -259,7 +260,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
|
"PO-Revision-Date: 2010-05-24 09:59+0300\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -129,7 +130,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +140,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -148,7 +149,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +159,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -167,7 +168,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +178,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -186,7 +187,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -221,7 +222,7 @@ msgstr "directorio en el que se copian los scripts gancho."
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -244,7 +245,7 @@ msgstr "I<lb-source-hooks>(1)"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -254,7 +255,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -269,7 +270,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -279,7 +280,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -296,7 +297,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -306,7 +307,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -129,7 +130,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +140,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -148,7 +149,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +159,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -167,7 +168,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +178,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -186,7 +187,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -196,7 +197,7 @@ msgstr "FICHEROS"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -206,7 +207,7 @@ msgstr "VER TAMBIÉN"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -216,7 +217,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -231,7 +232,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -241,7 +242,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -258,7 +259,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -268,7 +269,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 09:50+0100\n"
|
"PO-Revision-Date: 2013-11-06 09:50+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -129,7 +130,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +140,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -148,7 +149,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +159,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -167,7 +168,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +178,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -186,7 +187,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -221,7 +222,7 @@ msgstr "directorio en el que se copian los scripts gancho."
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -244,7 +245,7 @@ msgstr "I<lb-source-hooks>(1)"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -254,7 +255,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -269,7 +270,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -279,7 +280,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -296,7 +297,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -306,7 +307,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -129,7 +130,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +140,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -148,7 +149,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +159,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -167,7 +168,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +178,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -186,7 +187,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -196,7 +197,7 @@ msgstr "FICHEROS"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -206,7 +207,7 @@ msgstr "VER TAMBIÉN"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -216,7 +217,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -231,7 +232,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -241,7 +242,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -258,7 +259,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -268,7 +269,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -120,7 +121,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -130,7 +131,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -139,7 +140,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -149,7 +150,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -158,7 +159,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -168,7 +169,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -177,7 +178,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -187,7 +188,7 @@ msgstr "FICHEROS"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -197,7 +198,7 @@ msgstr "VER TAMBIÉN"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -207,7 +208,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -222,7 +223,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -232,7 +233,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -249,7 +250,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -259,7 +260,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
@ -298,22 +299,33 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb-init.1:27
|
#: en/lb-init.1:27
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
|
msgid "B<--archive-areas>='ARCHIVE_AREA1 ARCHIVE_AREA2 ...'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: en/lb-init.1:29
|
||||||
|
msgid "set the archive areas."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: IP
|
||||||
|
#: en/lb-init.1:29
|
||||||
|
#, no-wrap
|
||||||
msgid "B<--distribution>"
|
msgid "B<--distribution>"
|
||||||
msgstr "B<--distribution>"
|
msgstr "B<--distribution>"
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:29
|
#: en/lb-init.1:31
|
||||||
msgid "set the default distribution."
|
msgid "set the default distribution."
|
||||||
msgstr "establece la distribución predeterminada."
|
msgstr "establece la distribución predeterminada."
|
||||||
|
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb-init.1:29
|
#: en/lb-init.1:31
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--project>"
|
msgid "B<--project>"
|
||||||
msgstr "B<--project>"
|
msgstr "B<--project>"
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:31
|
#: en/lb-init.1:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"set the project to derive internal defaults from. Currently valid projects "
|
"set the project to derive internal defaults from. Currently valid projects "
|
||||||
"are 'debian' and 'progress-linux' (default: debian)."
|
"are 'debian' and 'progress-linux' (default: debian)."
|
||||||
|
@ -323,23 +335,43 @@ msgstr ""
|
||||||
"predeterminado: debian)."
|
"predeterminado: debian)."
|
||||||
|
|
||||||
#. type: IP
|
#. type: IP
|
||||||
|
#: en/lb-init.1:37
|
||||||
|
#, no-wrap
|
||||||
|
msgid "B<--system>"
|
||||||
|
msgstr "B<--system>"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
#: en/lb-init.1:39
|
#: en/lb-init.1:39
|
||||||
|
#, fuzzy
|
||||||
|
#| msgid ""
|
||||||
|
#| "set the project to derive internal defaults from. Currently valid "
|
||||||
|
#| "projects are 'debian' and 'progress-linux' (default: debian)."
|
||||||
|
msgid ""
|
||||||
|
"set the system type to derive internal defaults from. Currently valid types "
|
||||||
|
"are 'live' and 'lxc' (default: live).'"
|
||||||
|
msgstr ""
|
||||||
|
"establece el proyecto para el que se utilizarán sus valores predeterminados. "
|
||||||
|
"Actualmente, los proyectos válidos son «debian» y «progress-linux» (valor "
|
||||||
|
"predeterminado: debian)."
|
||||||
|
|
||||||
|
#. type: IP
|
||||||
|
#: en/lb-init.1:43
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<config>:"
|
msgid "B<config>:"
|
||||||
msgstr "B<config>:"
|
msgstr "B<config>:"
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:41
|
#: en/lb-init.1:45
|
||||||
msgid "configuration directory."
|
msgid "configuration directory."
|
||||||
msgstr "directorio de configuración."
|
msgstr "directorio de configuración."
|
||||||
|
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb-init.1:41
|
#: en/lb-init.1:45
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<.build>:"
|
msgid "B<.build>:"
|
||||||
msgstr "B<.build>"
|
msgstr "B<.build>"
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:43
|
#: en/lb-init.1:47
|
||||||
msgid "configuration directory for meta-information."
|
msgid "configuration directory for meta-information."
|
||||||
msgstr "directorio de configuración para meta-información."
|
msgstr "directorio de configuración para meta-información."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-06 10:12+0100\n"
|
"PO-Revision-Date: 2013-11-06 10:12+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -129,7 +130,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +140,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -148,7 +149,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +159,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -167,7 +168,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +178,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -186,7 +187,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -221,7 +222,7 @@ msgstr "directorio en el que se copian los scripts gancho."
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -244,7 +245,7 @@ msgstr "I<lb-chroot-hooks>(1)"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -254,7 +255,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -269,7 +270,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -279,7 +280,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -296,7 +297,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -306,7 +307,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
"PO-Revision-Date: 2013-11-05 19:30+0100\n"
|
||||||
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
"Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
|
@ -30,9 +30,10 @@ msgstr "LIVE-BUILD"
|
||||||
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
#: en/lb-bootstrap-hooks.1:9 en/lb-bootstrap-includes.1:9
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, fuzzy, no-wrap
|
||||||
msgid "2014-07-24"
|
#| msgid "2014-08-24"
|
||||||
msgstr "24.07.2014"
|
msgid "2014-08-26"
|
||||||
|
msgstr "26.08.2014"
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
#: en/lb-binary-hooks.1:9 en/lb-binary-includes.1:9
|
||||||
|
@ -129,7 +130,7 @@ msgstr "OPCIONES"
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +140,7 @@ msgstr "B<--verbose>"
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr "establece la opción verbose (por defecto: False)."
|
msgstr "establece la opción verbose (por defecto: False)."
|
||||||
|
@ -148,7 +149,7 @@ msgstr "establece la opción verbose (por defecto: False)."
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +159,7 @@ msgstr "B<-h, --help>"
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr "muestra el mensaje de ayuda y sale."
|
msgstr "muestra el mensaje de ayuda y sale."
|
||||||
|
@ -167,7 +168,7 @@ msgstr "muestra el mensaje de ayuda y sale."
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +178,7 @@ msgstr "B<--version>"
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr "muestra el número de versión del programa y sale."
|
msgstr "muestra el número de versión del programa y sale."
|
||||||
|
@ -186,7 +187,7 @@ msgstr "muestra el número de versión del programa y sale."
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -196,7 +197,7 @@ msgstr "FICHEROS"
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -206,7 +207,7 @@ msgstr "VER TAMBIÉN"
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -216,7 +217,7 @@ msgstr "PÁGINA WEB"
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -231,7 +232,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -241,7 +242,7 @@ msgstr "ERRORES"
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -258,7 +259,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -268,7 +269,7 @@ msgstr "AUTOR"
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -202,7 +202,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -212,7 +212,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -221,7 +221,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -231,7 +231,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -240,7 +240,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -250,7 +250,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -259,7 +259,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -330,7 +330,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -359,7 +359,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -369,7 +369,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -381,7 +381,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -391,7 +391,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -404,7 +404,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -414,7 +414,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -129,7 +129,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -148,7 +148,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -167,7 +167,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -186,7 +186,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -202,7 +202,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -212,7 +212,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -222,7 +222,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -234,7 +234,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -244,7 +244,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -257,7 +257,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -267,7 +267,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -120,7 +120,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -130,7 +130,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -149,7 +149,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -168,7 +168,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -187,7 +187,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -207,7 +207,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -219,7 +219,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -229,7 +229,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -242,7 +242,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -252,7 +252,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -120,7 +120,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -130,7 +130,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -149,7 +149,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -168,7 +168,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -187,7 +187,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -207,7 +207,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -219,7 +219,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -229,7 +229,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -242,7 +242,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -252,7 +252,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -129,7 +129,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -148,7 +148,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -167,7 +167,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -186,7 +186,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -221,7 +221,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -244,7 +244,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -254,7 +254,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -266,7 +266,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -276,7 +276,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -289,7 +289,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -299,7 +299,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -129,7 +129,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -148,7 +148,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -167,7 +167,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -186,7 +186,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -196,7 +196,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -206,7 +206,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -216,7 +216,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -228,7 +228,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -238,7 +238,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -261,7 +261,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -129,7 +129,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -148,7 +148,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -167,7 +167,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -186,7 +186,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -221,7 +221,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -244,7 +244,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -254,7 +254,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -266,7 +266,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -276,7 +276,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -289,7 +289,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -299,7 +299,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -129,7 +129,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -148,7 +148,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -167,7 +167,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -186,7 +186,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -196,7 +196,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -206,7 +206,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -216,7 +216,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -228,7 +228,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -238,7 +238,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -261,7 +261,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -120,7 +120,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -130,7 +130,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -149,7 +149,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -168,7 +168,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -187,7 +187,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -197,7 +197,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -207,7 +207,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -219,7 +219,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -229,7 +229,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -242,7 +242,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -252,7 +252,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
@ -285,45 +285,69 @@ msgstr ""
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb-init.1:27
|
#: en/lb-init.1:27
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--distribution>"
|
msgid "B<--archive-areas>='ARCHIVE_AREA1 ARCHIVE_AREA2 ...'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:29
|
#: en/lb-init.1:29
|
||||||
msgid "set the default distribution."
|
msgid "set the archive areas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb-init.1:29
|
#: en/lb-init.1:29
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--project>"
|
msgid "B<--distribution>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:31
|
#: en/lb-init.1:31
|
||||||
|
msgid "set the default distribution."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: IP
|
||||||
|
#: en/lb-init.1:31
|
||||||
|
#, no-wrap
|
||||||
|
msgid "B<--project>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#: en/lb-init.1:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"set the project to derive internal defaults from. Currently valid projects "
|
"set the project to derive internal defaults from. Currently valid projects "
|
||||||
"are 'debian' and 'progress-linux' (default: debian)."
|
"are 'debian' and 'progress-linux' (default: debian)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: IP
|
#. type: IP
|
||||||
|
#: en/lb-init.1:37
|
||||||
|
#, no-wrap
|
||||||
|
msgid "B<--system>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
#: en/lb-init.1:39
|
#: en/lb-init.1:39
|
||||||
|
msgid ""
|
||||||
|
"set the system type to derive internal defaults from. Currently valid types "
|
||||||
|
"are 'live' and 'lxc' (default: live).'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: IP
|
||||||
|
#: en/lb-init.1:43
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<config>:"
|
msgid "B<config>:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:41
|
#: en/lb-init.1:45
|
||||||
msgid "configuration directory."
|
msgid "configuration directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: IP
|
#. type: IP
|
||||||
#: en/lb-init.1:41
|
#: en/lb-init.1:45
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<.build>:"
|
msgid "B<.build>:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: Plain text
|
#. type: Plain text
|
||||||
#: en/lb-init.1:43
|
#: en/lb-init.1:47
|
||||||
msgid "configuration directory for meta-information."
|
msgid "configuration directory for meta-information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -129,7 +129,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -148,7 +148,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -167,7 +167,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -186,7 +186,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -221,7 +221,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -244,7 +244,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -254,7 +254,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -266,7 +266,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -276,7 +276,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -289,7 +289,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -299,7 +299,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
"Project-Id-Version: live-build 4.0~alpha39-1\n"
|
||||||
"POT-Creation-Date: 2014-07-24 05:02+0200\n"
|
"POT-Creation-Date: 2014-08-26 01:09+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -33,7 +33,7 @@ msgstr ""
|
||||||
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
#: en/lb-chroot-hooks.1:9 en/lb-chroot-includes.1:9 en/lb-init.1:9
|
||||||
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
#: en/lb-source-hooks.1:9 en/lb-source-includes.1:9
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "2014-07-24"
|
msgid "2014-08-26"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. type: TH
|
#. type: TH
|
||||||
|
@ -129,7 +129,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
#: en/lb-binary-hooks.1:42 en/lb-binary-includes.1:34
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
#: en/lb-bootstrap-cdebootstrap.1:29 en/lb-bootstrap-debootstrap.1:29
|
||||||
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
#: en/lb-bootstrap-hooks.1:40 en/lb-bootstrap-includes.1:34
|
||||||
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:31
|
#: en/lb-chroot-hooks.1:40 en/lb-chroot-includes.1:34 en/lb-init.1:33
|
||||||
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
#: en/lb-source-hooks.1:42 en/lb-source-includes.1:34
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--verbose>"
|
msgid "B<--verbose>"
|
||||||
|
@ -139,7 +139,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
msgid "sets verbose option (default: False)."
|
msgid "sets verbose option (default: False)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -148,7 +148,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
#: en/lb-binary-hooks.1:44 en/lb-binary-includes.1:36
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
#: en/lb-bootstrap-cdebootstrap.1:31 en/lb-bootstrap-debootstrap.1:31
|
||||||
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
#: en/lb-bootstrap-hooks.1:42 en/lb-bootstrap-includes.1:36
|
||||||
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:33
|
#: en/lb-chroot-hooks.1:42 en/lb-chroot-includes.1:36 en/lb-init.1:35
|
||||||
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
#: en/lb-source-hooks.1:44 en/lb-source-includes.1:36
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<-h, --help>"
|
msgid "B<-h, --help>"
|
||||||
|
@ -158,7 +158,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:37
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
msgid "show help message and exit."
|
msgid "show help message and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -167,7 +167,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
#: en/lb-binary-hooks.1:46 en/lb-binary-includes.1:38
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
#: en/lb-bootstrap-cdebootstrap.1:33 en/lb-bootstrap-debootstrap.1:33
|
||||||
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
#: en/lb-bootstrap-hooks.1:44 en/lb-bootstrap-includes.1:38
|
||||||
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:35
|
#: en/lb-chroot-hooks.1:44 en/lb-chroot-includes.1:38 en/lb-init.1:39
|
||||||
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
#: en/lb-source-hooks.1:46 en/lb-source-includes.1:38
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--version>"
|
msgid "B<--version>"
|
||||||
|
@ -177,7 +177,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
#: en/lb-binary-hooks.1:48 en/lb-binary-includes.1:40
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
#: en/lb-bootstrap-cdebootstrap.1:35 en/lb-bootstrap-debootstrap.1:35
|
||||||
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
#: en/lb-bootstrap-hooks.1:46 en/lb-bootstrap-includes.1:40
|
||||||
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:37
|
#: en/lb-chroot-hooks.1:46 en/lb-chroot-includes.1:40 en/lb-init.1:41
|
||||||
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
#: en/lb-source-hooks.1:48 en/lb-source-includes.1:40
|
||||||
msgid "show program's version number and exit."
|
msgid "show program's version number and exit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -186,7 +186,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
#: en/lb-binary-hooks.1:49 en/lb-binary-includes.1:41
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
#: en/lb-bootstrap-cdebootstrap.1:36 en/lb-bootstrap-debootstrap.1:36
|
||||||
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
#: en/lb-bootstrap-hooks.1:47 en/lb-bootstrap-includes.1:41
|
||||||
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:38
|
#: en/lb-chroot-hooks.1:47 en/lb-chroot-includes.1:41 en/lb-init.1:42
|
||||||
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
#: en/lb-source-hooks.1:49 en/lb-source-includes.1:41
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "FILES"
|
msgid "FILES"
|
||||||
|
@ -196,7 +196,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
#: en/lb-binary-hooks.1:61 en/lb-binary-includes.1:49
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
#: en/lb-bootstrap-cdebootstrap.1:43 en/lb-bootstrap-debootstrap.1:43
|
||||||
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
#: en/lb-bootstrap-hooks.1:59 en/lb-bootstrap-includes.1:49
|
||||||
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:44
|
#: en/lb-chroot-hooks.1:59 en/lb-chroot-includes.1:49 en/lb-init.1:48
|
||||||
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
#: en/lb-source-hooks.1:61 en/lb-source-includes.1:49
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "SEE ALSO"
|
msgid "SEE ALSO"
|
||||||
|
@ -206,7 +206,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
#: en/lb-binary-hooks.1:66 en/lb-binary-includes.1:54
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
#: en/lb-bootstrap-cdebootstrap.1:46 en/lb-bootstrap-debootstrap.1:46
|
||||||
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
#: en/lb-bootstrap-hooks.1:64 en/lb-bootstrap-includes.1:54
|
||||||
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:47
|
#: en/lb-chroot-hooks.1:64 en/lb-chroot-includes.1:54 en/lb-init.1:51
|
||||||
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
#: en/lb-source-hooks.1:66 en/lb-source-includes.1:54
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "HOMEPAGE"
|
msgid "HOMEPAGE"
|
||||||
|
@ -216,7 +216,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
#: en/lb-binary-hooks.1:68 en/lb-binary-includes.1:56
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
#: en/lb-bootstrap-cdebootstrap.1:48 en/lb-bootstrap-debootstrap.1:48
|
||||||
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
#: en/lb-bootstrap-hooks.1:66 en/lb-bootstrap-includes.1:56
|
||||||
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:49
|
#: en/lb-chroot-hooks.1:66 en/lb-chroot-includes.1:56 en/lb-init.1:53
|
||||||
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
#: en/lb-source-hooks.1:68 en/lb-source-includes.1:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"More information about live-build and the Live Systems project can be found "
|
"More information about live-build and the Live Systems project can be found "
|
||||||
|
@ -228,7 +228,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
#: en/lb-binary-hooks.1:69 en/lb-binary-includes.1:57
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
#: en/lb-bootstrap-cdebootstrap.1:49 en/lb-bootstrap-debootstrap.1:49
|
||||||
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
#: en/lb-bootstrap-hooks.1:67 en/lb-bootstrap-includes.1:57
|
||||||
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:50
|
#: en/lb-chroot-hooks.1:67 en/lb-chroot-includes.1:57 en/lb-init.1:54
|
||||||
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
#: en/lb-source-hooks.1:69 en/lb-source-includes.1:57
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "BUGS"
|
msgid "BUGS"
|
||||||
|
@ -238,7 +238,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
#: en/lb-binary-hooks.1:71 en/lb-binary-includes.1:59
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
#: en/lb-bootstrap-cdebootstrap.1:51 en/lb-bootstrap-debootstrap.1:51
|
||||||
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
#: en/lb-bootstrap-hooks.1:69 en/lb-bootstrap-includes.1:59
|
||||||
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:52
|
#: en/lb-chroot-hooks.1:69 en/lb-chroot-includes.1:59 en/lb-init.1:56
|
||||||
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
#: en/lb-source-hooks.1:71 en/lb-source-includes.1:59
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||||
|
@ -251,7 +251,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
#: en/lb-binary-hooks.1:72 en/lb-binary-includes.1:60
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
#: en/lb-bootstrap-cdebootstrap.1:52 en/lb-bootstrap-debootstrap.1:52
|
||||||
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
#: en/lb-bootstrap-hooks.1:70 en/lb-bootstrap-includes.1:60
|
||||||
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:53
|
#: en/lb-chroot-hooks.1:70 en/lb-chroot-includes.1:60 en/lb-init.1:57
|
||||||
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
#: en/lb-source-hooks.1:72 en/lb-source-includes.1:60
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "AUTHOR"
|
msgid "AUTHOR"
|
||||||
|
@ -261,7 +261,7 @@ msgstr ""
|
||||||
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
#: en/lb-binary-hooks.1:73 en/lb-binary-includes.1:61
|
||||||
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
#: en/lb-bootstrap-cdebootstrap.1:53 en/lb-bootstrap-debootstrap.1:53
|
||||||
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
#: en/lb-bootstrap-hooks.1:71 en/lb-bootstrap-includes.1:61
|
||||||
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:54
|
#: en/lb-chroot-hooks.1:71 en/lb-chroot-includes.1:61 en/lb-init.1:58
|
||||||
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
#: en/lb-source-hooks.1:73 en/lb-source-includes.1:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
"live-build was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
|
||||||
|
|
|
@ -26,7 +26,6 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
|
||||||
\t [--apt-recommends true|false]\n\
|
\t [--apt-recommends true|false]\n\
|
||||||
\t [--apt-secure true|false]\n\
|
\t [--apt-secure true|false]\n\
|
||||||
\t [--apt-source-archives true|false]\n\
|
\t [--apt-source-archives true|false]\n\
|
||||||
\t [-a|--architectures ARCHITECTURE]\n\
|
|
||||||
\t [-b|--binary-images iso|iso-hybrid|netboot|tar|hdd]\n\
|
\t [-b|--binary-images iso|iso-hybrid|netboot|tar|hdd]\n\
|
||||||
\t [--binary-filesystem fat16|fat32|ext2|ext3|ext4|ntfs]\n\
|
\t [--binary-filesystem fat16|fat32|ext2|ext3|ext4|ntfs]\n\
|
||||||
\t [--bootappend-install PARAMETER|\"PARAMETERS\"]\n\
|
\t [--bootappend-install PARAMETER|\"PARAMETERS\"]\n\
|
||||||
|
@ -80,18 +79,6 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
|
||||||
\t [--linux-packages \"PACKAGES\"]\n\
|
\t [--linux-packages \"PACKAGES\"]\n\
|
||||||
\t [--losetup losetup|losetup.orig]\n\
|
\t [--losetup losetup|losetup.orig]\n\
|
||||||
\t [--memtest memtest86+|memtest86|none]\n\
|
\t [--memtest memtest86+|memtest86|none]\n\
|
||||||
\t [-m|--parent-mirror-bootstrap URL]\n\
|
|
||||||
\t [--parent-mirror-chroot URL]\n\
|
|
||||||
\t [--parent-mirror-chroot-security URL]\n\
|
|
||||||
\t [--parent-mirror-binary URL]\n\
|
|
||||||
\t [--parent-mirror-binary-security URL]\n\
|
|
||||||
\t [--parent-mirror-debian-installer URL]\n\
|
|
||||||
\t [--mirror-bootstrap URL]\n\
|
|
||||||
\t [--mirror-chroot URL]\n\
|
|
||||||
\t [--mirror-chroot-security URL]\n\
|
|
||||||
\t [--mirror-binary URL]\n\
|
|
||||||
\t [--mirror-binary-security URL]\n\
|
|
||||||
\t [--mirror-debian-installer URL]\n\
|
|
||||||
\t [--mode debian|ubuntu]\n\
|
\t [--mode debian|ubuntu]\n\
|
||||||
\t [--system live|normal]\n\
|
\t [--system live|normal]\n\
|
||||||
\t [--net-root-filesystem nfs|cfs]\n\
|
\t [--net-root-filesystem nfs|cfs]\n\
|
||||||
|
@ -104,8 +91,6 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
|
||||||
\t [--net-cow-server IP|HOSTNAME]\n\
|
\t [--net-cow-server IP|HOSTNAME]\n\
|
||||||
\t [--net-tarball true|false]\n\
|
\t [--net-tarball true|false]\n\
|
||||||
\t [--quiet]\n\
|
\t [--quiet]\n\
|
||||||
\t [--archive-areas ARCHIVE_AREA|\"ARCHIVE_AREAS\"]\n\
|
|
||||||
\t [--parent-archive-areas ARCHIVE_AREA|\"ARCHIVE_AREAS\"]\n\
|
|
||||||
\t [--security true|false]\n\
|
\t [--security true|false]\n\
|
||||||
\t [--source true|false]\n\
|
\t [--source true|false]\n\
|
||||||
\t [-s|--source-images iso|netboot|tar|hdd]\n\
|
\t [-s|--source-images iso|netboot|tar|hdd]\n\
|
||||||
|
@ -131,12 +116,9 @@ Local_arguments ()
|
||||||
apt-pipeline:,apt-recommends:,apt-secure:,apt-source-archives:,bootstrap:,cache:,cache-indices:,cache-packages:,
|
apt-pipeline:,apt-recommends:,apt-secure:,apt-source-archives:,bootstrap:,cache:,cache-indices:,cache-packages:,
|
||||||
cache-stages:,debconf-frontend:,debconf-priority:,dump,
|
cache-stages:,debconf-frontend:,debconf-priority:,dump,
|
||||||
initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,system:,tasksel:,
|
initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,system:,tasksel:,
|
||||||
templates:,architectures:,clean,
|
templates:,clean,
|
||||||
distribution:,parent-distribution:,parent-debian-installer-distribution:,parent-mirror-bootstrap:,parent-mirror-chroot:,parent-mirror-chroot-security:,parent-mirror-binary:,
|
parent-debian-installer-distribution:,
|
||||||
parent-mirror-binary-security:,parent-mirror-debian-installer:,
|
chroot-filesystem:,
|
||||||
mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-binary:,
|
|
||||||
mirror-binary-security:,mirror-debian-installer:,
|
|
||||||
archive-areas:,parent-archive-areas:,chroot-filesystem:,
|
|
||||||
gzip-options:,image-name:,interactive:,keyring-packages:,linux-flavours:,linux-packages:,
|
gzip-options:,image-name:,interactive:,keyring-packages:,linux-flavours:,linux-packages:,
|
||||||
security:,updates:,backports:,binary-filesystem:,binary-images:,
|
security:,updates:,backports:,binary-filesystem:,binary-images:,
|
||||||
apt-indices:,bootappend-install:,bootappend-live:,bootappend-live-failsafe:,bootloader:,checksums:,compression:,config:,zsync:,build-with-chroot:,
|
apt-indices:,bootappend-install:,bootappend-live:,bootappend-live-failsafe:,bootloader:,checksums:,compression:,config:,zsync:,build-with-chroot:,
|
||||||
|
@ -345,92 +327,6 @@ Local_arguments ()
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
# config/bootstrap
|
|
||||||
-a|--architectures)
|
|
||||||
LIVE_IMAGE_ARCHITECTURE="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
-d|--distribution)
|
|
||||||
LB_DISTRIBUTION="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--parent-distribution)
|
|
||||||
LB_PARENT_DISTRIBUTION="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
-m|--parent-mirror-bootstrap)
|
|
||||||
LB_PARENT_MIRROR_BOOTSTRAP="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--parent-mirror-chroot)
|
|
||||||
LB_PARENT_MIRROR_CHROOT="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--parent-mirror-chroot-security)
|
|
||||||
LB_PARENT_MIRROR_CHROOT_SECURITY="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--parent-mirror-binary)
|
|
||||||
LB_PARENT_MIRROR_BINARY="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--parent-mirror-binary-security)
|
|
||||||
LB_PARENT_MIRROR_BINARY_SECURITY="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--parent-mirror-debian-installer)
|
|
||||||
LB_PARENT_MIRROR_DEBIAN_INSTALLER="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--mirror-bootstrap)
|
|
||||||
LB_MIRROR_BOOTSTRAP="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--mirror-chroot)
|
|
||||||
LB_MIRROR_CHROOT="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--mirror-chroot-security)
|
|
||||||
LB_MIRROR_CHROOT_SECURITY="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--mirror-binary)
|
|
||||||
LB_MIRROR_BINARY="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--mirror-binary-security)
|
|
||||||
LB_MIRROR_BINARY_SECURITY="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--mirror-debian-installer)
|
|
||||||
LB_MIRROR_DEBIAN_INSTALLER="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--archive-areas)
|
|
||||||
LIVE_IMAGE_ARCHIVE_AREAS="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
--parent-archive-areas)
|
|
||||||
LIVE_IMAGE_PARENT_ARCHIVE_AREAS="${2}"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
|
|
||||||
# config/chroot
|
# config/chroot
|
||||||
--chroot-filesystem)
|
--chroot-filesystem)
|
||||||
LB_CHROOT_FILESYSTEM="${2}"
|
LB_CHROOT_FILESYSTEM="${2}"
|
||||||
|
@ -1036,54 +932,6 @@ LB_PARENT_DISTRIBUTION="${LB_PARENT_DISTRIBUTION}"
|
||||||
# (Default: ${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION})
|
# (Default: ${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION})
|
||||||
LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"
|
LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_BOOTSTRAP: set parent mirror to bootstrap from
|
|
||||||
# (Default: ${LB_PARENT_MIRROR_BOOTSTRAP})
|
|
||||||
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP}"
|
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_CHROOT: set parent mirror to fetch packages from
|
|
||||||
# (Default: ${LB_PARENT_MIRROR_CHROOT})
|
|
||||||
LB_PARENT_MIRROR_CHROOT="${LB_PARENT_MIRROR_CHROOT}"
|
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_CHROOT_SECURITY: set security parent mirror to fetch packages from
|
|
||||||
# (Default: ${LB_PARENT_MIRROR_CHROOT_SECURITY})
|
|
||||||
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY}"
|
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_BINARY: set parent mirror which ends up in the image
|
|
||||||
# (Default: ${LB_PARENT_MIRROR_BINARY})
|
|
||||||
LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY}"
|
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_BINARY_SECURITY: set security parent mirror which ends up in the image
|
|
||||||
# (Default: ${LB_PARENT_MIRROR_BINARY_SECURITY})
|
|
||||||
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY}"
|
|
||||||
|
|
||||||
# \$LB_PARENT_MIRROR_DEBIAN_INSTALLER: set debian-installer parent mirror
|
|
||||||
# (Default: ${LB_PARENT_MIRROR_BOOTSTRAP})
|
|
||||||
LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER}"
|
|
||||||
|
|
||||||
# \$LB_MIRROR_BOOTSTRAP: set mirror to bootstrap from
|
|
||||||
# (Default: ${LB_MIRROR_BOOTSTRAP})
|
|
||||||
LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP}"
|
|
||||||
|
|
||||||
# \$LB_MIRROR_CHROOT: set mirror to fetch packages from
|
|
||||||
# (Default: ${LB_MIRROR_CHROOT})
|
|
||||||
LB_MIRROR_CHROOT="${LB_MIRROR_CHROOT}"
|
|
||||||
|
|
||||||
# \$LB_MIRROR_CHROOT_SECURITY: set security mirror to fetch packages from
|
|
||||||
# (Default: ${LB_MIRROR_CHROOT_SECURITY})
|
|
||||||
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY}"
|
|
||||||
|
|
||||||
# \$LB_MIRROR_BINARY: set mirror which ends up in the image
|
|
||||||
# (Default: ${LB_MIRROR_BINARY})
|
|
||||||
LB_MIRROR_BINARY="${LB_MIRROR_BINARY}"
|
|
||||||
|
|
||||||
# \$LB_MIRROR_BINARY_SECURITY: set security mirror which ends up in the image
|
|
||||||
# (Default: ${LB_MIRROR_BINARY_SECURITY})
|
|
||||||
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY}"
|
|
||||||
|
|
||||||
# \$LB_MIRROR_DEBIAN_INSTALLER: set debian-installer mirror
|
|
||||||
# (Default: ${LB_MIRROR_BOOTSTRAP})
|
|
||||||
LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER}"
|
|
||||||
|
|
||||||
# \$LB_BOOTSTRAP_QEMU_ARCHITECTURES: architectures to use foreign bootstrap
|
# \$LB_BOOTSTRAP_QEMU_ARCHITECTURES: architectures to use foreign bootstrap
|
||||||
# (Default: ${LB_BOOTSTRAP_QEMU_ARCHITECTURES})
|
# (Default: ${LB_BOOTSTRAP_QEMU_ARCHITECTURES})
|
||||||
LB_BOOTSTRAP_QEMU_ARCHITECTURES="${LB_BOOTSTRAP_QEMU_ARCHITECTURES}"
|
LB_BOOTSTRAP_QEMU_ARCHITECTURES="${LB_BOOTSTRAP_QEMU_ARCHITECTURES}"
|
||||||
|
@ -1338,33 +1186,5 @@ then
|
||||||
rmdir --ignore-fail-on-non-empty local > /dev/null 2>&1 || true
|
rmdir --ignore-fail-on-non-empty local > /dev/null 2>&1 || true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cat > config/build << EOF
|
|
||||||
[Image]
|
|
||||||
Architecture: ${LIVE_IMAGE_ARCHITECTURE}
|
|
||||||
Archive-Areas: ${LIVE_IMAGE_ARCHIVE_AREAS}
|
|
||||||
Distribution: ${LB_DISTRIBUTION}
|
|
||||||
Mirror-Bootstrap: ${LB_MIRROR_BOOTSTRAP}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
if [ "${LB_DERIVATIVE}" = "true" ]
|
|
||||||
then
|
|
||||||
|
|
||||||
cat >> config/build << EOF
|
|
||||||
|
|
||||||
Parent-Archive-Areas: ${LIVE_IMAGE_ARCHIVE_AREAS}
|
|
||||||
Parent-Distribution: ${LB_PARENT_DISTRIBUTION}
|
|
||||||
Parent-Mirror-Bootstrap: ${LB_PARENT_MIRROR_BOOTSTRAP}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
||||||
cat >> config/build << EOF
|
|
||||||
|
|
||||||
[FIXME]
|
|
||||||
Configuration-Version: ${LIVE_CONFIGURATION_VERSION}
|
|
||||||
Name: ${LIVE_IMAGE_NAME}
|
|
||||||
Type: ${LIVE_IMAGE_TYPE}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Creating stage file
|
# Creating stage file
|
||||||
Create_stagefile .build/config
|
Create_stagefile .build/config
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Disabling loginuid (requires read-write proc filesystem)
|
||||||
|
if grep -E -qs "^ *session *required *pam_loginuid.so" /etc/pam.d/login
|
||||||
|
then
|
||||||
|
sed -i -e 's|^.*\(session.*required.*pam_loginuid.so\)$|#\1|' /etc/pam.d/login
|
||||||
|
fi
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Disabling loginuid (requires read-write proc filesystem)
|
||||||
|
if grep -E -qs "^ *session *required *pam_loginuid.so" /etc/pam.d/cron
|
||||||
|
then
|
||||||
|
sed -i -e 's|^.*\(session.*required.*pam_loginuid.so\)$|#\1|' /etc/pam.d/cron
|
||||||
|
fi
|
|
@ -0,0 +1,37 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# /etc/default/hwclock is supported as of util-linux version 2.20.1-5
|
||||||
|
_UTIL_LINUX_VERSION="$(dpkg -l util-linux | awk '/^ii/ { print $3 }')"
|
||||||
|
|
||||||
|
if dpkg --compare-versions "${_UTIL_LINUX_VERSION}" lt 2.20.1-5~
|
||||||
|
then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e /etc/default/hwclock ]
|
||||||
|
then
|
||||||
|
. /etc/default/hwclock
|
||||||
|
|
||||||
|
# HWCLOCKACCESS is commented in /etc/default/hwclock
|
||||||
|
if [ -z "${HWCLOCKACCESS}" ]
|
||||||
|
then
|
||||||
|
# uncommenting it
|
||||||
|
sed -e "s|^# *HWCLOCKACCESS=|HWCLOCKACCESS=|" \
|
||||||
|
/etc/default/hwclock > /etc/default/hwclock.tmp
|
||||||
|
else
|
||||||
|
cp /etc/default/hwclock /etc/default/hwclock.tmp
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
touch /etc/default/hwclock.tmp
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Set the hwclock parameters
|
||||||
|
grep -Eq '^ *HWCLOCKACCESS=' /etc/default/hwclock.tmp || \
|
||||||
|
echo "HWCLOCKACCESS=" >> /etc/default/hwclock.tmp
|
||||||
|
|
||||||
|
sed -i -e "s|^ *HWCLOCKACCESS=.*|HWCLOCKACCESS=\"${_HWCLOCKACCESS}\"|" \
|
||||||
|
/etc/default/hwclock.tmp
|
||||||
|
|
||||||
|
mv /etc/default/hwclock.tmp /etc/default/hwclock
|
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
for _FILE in /etc/rsyslog.conf /etc/rsyslog.d/*
|
||||||
|
do
|
||||||
|
if [ -e "${_FILE}" ]
|
||||||
|
then
|
||||||
|
sed -i -e 's|^ *$ModLoad *imklog|#$ModLoad imklog|' "${_FILE}"
|
||||||
|
fi
|
||||||
|
done
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue