Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into BUG10730

This commit is contained in:
Alexander Marx
2015-02-03 07:27:03 +01:00
151 changed files with 61762 additions and 3251 deletions

View File

@@ -0,0 +1,2 @@
/etc/monitrc
/etc/monit.d

View File

@@ -3,7 +3,7 @@ driver=nl80211
#
interface=blue0
hw_mode=g
channel=05
channel=6
logger_syslog=-1
logger_syslog_level=3
logger_stdout=-1

View File

@@ -3079,7 +3079,7 @@ CONFIG_REGULATOR_LP8755=m
# CONFIG_REGULATOR_TPS62360 is not set
# CONFIG_REGULATOR_TPS65023 is not set
# CONFIG_REGULATOR_TPS6507X is not set
CONFIG_MEDIA_SUPPORT=y
CONFIG_MEDIA_SUPPORT=m
#
# Multimedia core support
@@ -3090,9 +3090,9 @@ CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
# CONFIG_MEDIA_RADIO_SUPPORT is not set
CONFIG_MEDIA_RC_SUPPORT=y
CONFIG_MEDIA_CONTROLLER=y
CONFIG_VIDEO_DEV=y
CONFIG_VIDEO_DEV=m
CONFIG_VIDEO_V4L2_SUBDEV_API=y
CONFIG_VIDEO_V4L2=y
CONFIG_VIDEO_V4L2=m
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEO_TUNER=m
@@ -3106,7 +3106,7 @@ CONFIG_VIDEOBUF2_CORE=m
CONFIG_VIDEOBUF2_MEMOPS=m
CONFIG_VIDEOBUF2_DMA_CONTIG=m
CONFIG_VIDEOBUF2_VMALLOC=m
CONFIG_DVB_CORE=y
CONFIG_DVB_CORE=m
CONFIG_DVB_NET=y
CONFIG_TTPCI_EEPROM=m
CONFIG_DVB_MAX_ADAPTERS=8
@@ -3115,7 +3115,7 @@ CONFIG_DVB_DYNAMIC_MINORS=y
#
# Media drivers
#
CONFIG_RC_CORE=y
CONFIG_RC_CORE=m
CONFIG_RC_MAP=m
CONFIG_RC_DECODERS=y
CONFIG_LIRC=m

View File

@@ -3330,7 +3330,7 @@ CONFIG_REGULATOR_TI_ABB=y
# CONFIG_REGULATOR_TPS6507X is not set
CONFIG_REGULATOR_TWL4030=y
CONFIG_REGULATOR_VEXPRESS=m
CONFIG_MEDIA_SUPPORT=y
CONFIG_MEDIA_SUPPORT=m
#
# Multimedia core support
@@ -3341,9 +3341,9 @@ CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
# CONFIG_MEDIA_RADIO_SUPPORT is not set
CONFIG_MEDIA_RC_SUPPORT=y
CONFIG_MEDIA_CONTROLLER=y
CONFIG_VIDEO_DEV=y
CONFIG_VIDEO_DEV=m
CONFIG_VIDEO_V4L2_SUBDEV_API=y
CONFIG_VIDEO_V4L2=y
CONFIG_VIDEO_V4L2=m
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEO_TUNER=m
@@ -3357,7 +3357,7 @@ CONFIG_VIDEOBUF2_CORE=m
CONFIG_VIDEOBUF2_MEMOPS=m
CONFIG_VIDEOBUF2_DMA_CONTIG=m
CONFIG_VIDEOBUF2_VMALLOC=m
CONFIG_DVB_CORE=y
CONFIG_DVB_CORE=m
CONFIG_DVB_NET=y
CONFIG_TTPCI_EEPROM=m
CONFIG_DVB_MAX_ADAPTERS=8
@@ -3366,7 +3366,7 @@ CONFIG_DVB_DYNAMIC_MINORS=y
#
# Media drivers
#
CONFIG_RC_CORE=y
CONFIG_RC_CORE=m
CONFIG_RC_MAP=m
CONFIG_RC_DECODERS=y
CONFIG_LIRC=m
@@ -3606,8 +3606,6 @@ CONFIG_VIDEO_OMAP2_VOUT_VRFB=y
CONFIG_VIDEO_OMAP2_VOUT=y
CONFIG_VIDEO_TIMBERDALE=m
CONFIG_SOC_CAMERA=m
CONFIG_SOC_CAMERA_SCALE_CROP=m
CONFIG_SOC_CAMERA_PLATFORM=m
CONFIG_VIDEO_MX3=m
CONFIG_VIDEO_RCAR_VIN=m
# CONFIG_VIDEO_SH_MOBILE_CSI2 is not set

View File

@@ -1453,7 +1453,7 @@ CONFIG_USB_KAWETH=m
CONFIG_USB_PEGASUS=m
CONFIG_USB_RTL8150=m
CONFIG_USB_RTL8152=m
CONFIG_USB_USBNET=y
CONFIG_USB_USBNET=m
CONFIG_USB_NET_AX8817X=m
CONFIG_USB_NET_AX88179_178A=m
CONFIG_USB_NET_CDCETHER=m

252
config/monit/monitrc Normal file
View File

@@ -0,0 +1,252 @@
###############################################################################
## Monit control file
###############################################################################
##
## Comments begin with a '#' and extend through the end of the line. Keywords
## are case insensitive. All path's MUST BE FULLY QUALIFIED, starting with '/'.
##
## Below you will find examples of some frequently used statements. For
## information about the control file and a complete list of statements and
## options, please have a look in the Monit manual.
##
##
###############################################################################
## Global section
###############################################################################
##
## Start Monit in the background (run as a daemon):
#
set daemon 60 # check services at 1-minute intervals
# with start delay 240 # optional: delay the first check by 4-minutes (by
# # default Monit check immediately after Monit start)
#
#
## Set syslog logging with the 'daemon' facility. If the FACILITY option is
## omitted, Monit will use 'user' facility by default. If you want to log to
## a standalone log file instead, specify the full path to the log file
#
set logfile syslog facility log_daemon
#
#
## Set the location of the Monit lock file which stores the process id of the
## running Monit instance. By default this file is stored in $HOME/.monit.pid
#
set pidfile /var/run/monit.pid
#
## Set the location of the Monit id file which stores the unique id for the
## Monit instance. The id is generated and stored on first Monit start. By
## default the file is placed in $HOME/.monit.id.
#
set idfile /var/lib/monit/id
#
## Set the location of the Monit state file which saves monitoring states
## on each cycle. By default the file is placed in $HOME/.monit.state. If
## the state file is stored on a persistent filesystem, Monit will recover
## the monitoring state across reboots. If it is on temporary filesystem, the
## state will be lost on reboot which may be convenient in some situations.
#
set statefile /var/lib/monit/state
#
## Set the list of mail servers for alert delivery. Multiple servers may be
## specified using a comma separator. If the first mail server fails, Monit
# will use the second mail server in the list and so on. By default Monit uses
# port 25 - it is possible to override this with the PORT option.
#
# set mailserver mail.bar.baz, # primary mailserver
# backup.bar.baz port 10025, # backup mailserver on port 10025
# localhost # fallback relay
#
#
## By default Monit will drop alert events if no mail servers are available.
## If you want to keep the alerts for later delivery retry, you can use the
## EVENTQUEUE statement. The base directory where undelivered alerts will be
## stored is specified by the BASEDIR option. You can limit the queue size
## by using the SLOTS option (if omitted, the queue is limited by space
## available in the back end filesystem).
#
set eventqueue
basedir /var/lib/monit # set the base directory where events will be stored
slots 100 # optionally limit the queue size
#
#
## Send status and events to M/Monit (for more informations about M/Monit
## see http://mmonit.com/). By default Monit registers credentials with
## M/Monit so M/Monit can smoothly communicate back to Monit and you don't
## have to register Monit credentials manually in M/Monit. It is possible to
## disable credential registration using the commented out option below.
## Though, if safety is a concern we recommend instead using https when
## communicating with M/Monit and send credentials encrypted.
#
# set mmonit http://monit:monit@192.168.1.10:8080/collector
# # and register without credentials # Don't register credentials
#
#
## Monit by default uses the following format for alerts if the the mail-format
## statement is missing::
## --8<--
## set mail-format {
## from: monit@$HOST
## subject: monit alert -- $EVENT $SERVICE
## message: $EVENT Service $SERVICE
## Date: $DATE
## Action: $ACTION
## Host: $HOST
## Description: $DESCRIPTION
##
## Your faithful employee,
## Monit
## }
## --8<--
##
## You can override this message format or parts of it, such as subject
## or sender using the MAIL-FORMAT statement. Macros such as $DATE, etc.
## are expanded at runtime. For example, to override the sender, use:
#
# set mail-format { from: monit@foo.bar }a
#
#
## You can set alert recipients whom will receive alerts if/when a
## service defined in this file has errors. Alerts may be restricted on
## events by using a filter as in the second example below.
#
# set alert sysadm@foo.bar # receive all alerts
## Do not alert when Monit start, stop or perform a user initiated action.
## This filter is recommended to avoid getting alerts for trivial cases
# set alert your-name@your.domain not on { instance, action }
#
#
## Monit has an embedded web server which can be used to view status of
## services monitored and manage services from a web interface. See the
## Monit Wiki if you want to enable SSL for the web server.
#
set httpd port 2812 and
use address localhost # only accept connection from localhost
allow localhost # allow localhost to connect to the server and
# allow admin:monit # require user 'admin' with password 'monit'
# allow @monit # allow users of group 'monit' to connect (rw)
# allow @users readonly # allow users of group 'users' to connect readonly
###############################################################################
## Services
###############################################################################
##
## Check general system resources such as load average, cpu and memory
## usage. Each test specifies a resource, conditions and the action to be
## performed should a test fail.
#
# check system myhost.mydomain.tld
# if loadavg (1min) > 4 then alert
# if loadavg (5min) > 2 then alert
# if memory usage > 75% then alert
# if swap usage > 25% then alert
# if cpu usage (user) > 70% then alert
# if cpu usage (system) > 30% then alert
# if cpu usage (wait) > 20% then alert
#
#
## Check if a file exists, checksum, permissions, uid and gid. In addition
## to alert recipients in the global section, customized alert can be sent to
## additional recipients by specifying a local alert handler. The service may
## be grouped using the GROUP option. More than one group can be specified by
## repeating the 'group name' statement.
#
# check file apache_bin with path /usr/local/apache/bin/httpd
# if failed checksum and
# expect the sum 8f7f419955cefa0b33a2ba316cba3659 then unmonitor
# if failed permission 755 then unmonitor
# if failed uid root then unmonitor
# if failed gid root then unmonitor
# alert security@foo.bar on {
# checksum, permission, uid, gid, unmonitor
# } with the mail-format { subject: Alarm! }
# group server
#
#
## Check that a process is running, in this case Apache, and that it respond
## to HTTP and HTTPS requests. Check its resource usage such as cpu and memory,
## and number of children. If the process is not running, Monit will restart
## it by default. In case the service is restarted very often and the
## problem remains, it is possible to disable monitoring using the TIMEOUT
## statement. This service depends on another service (apache_bin) which
## is defined above.
#
# check process apache with pidfile /usr/local/apache/logs/httpd.pid
# start program = "/etc/init.d/httpd start" with timeout 60 seconds
# stop program = "/etc/init.d/httpd stop"
# if cpu > 60% for 2 cycles then alert
# if cpu > 80% for 5 cycles then restart
# if totalmem > 200.0 MB for 5 cycles then restart
# if children > 250 then restart
# if loadavg(5min) greater than 10 for 8 cycles then stop
# if failed host www.tildeslash.com port 80 protocol http
# and request "/somefile.html"
# then restart
# if failed port 443 type tcpssl protocol http
# with timeout 15 seconds
# then restart
# if 3 restarts within 5 cycles then timeout
# depends on apache_bin
# group server
#
#
## Check filesystem permissions, uid, gid, space and inode usage. Other services,
## such as databases, may depend on this resource and an automatically graceful
## stop may be cascaded to them before the filesystem will become full and data
## lost.
#
# check filesystem datafs with path /dev/sdb1
# start program = "/bin/mount /data"
# stop program = "/bin/umount /data"
# if failed permission 660 then unmonitor
# if failed uid root then unmonitor
# if failed gid disk then unmonitor
# if space usage > 80% for 5 times within 15 cycles then alert
# if space usage > 99% then stop
# if inode usage > 30000 then alert
# if inode usage > 99% then stop
# group server
#
#
## Check a file's timestamp. In this example, we test if a file is older
## than 15 minutes and assume something is wrong if its not updated. Also,
## if the file size exceed a given limit, execute a script
#
# check file database with path /data/mydatabase.db
# if failed permission 700 then alert
# if failed uid data then alert
# if failed gid data then alert
# if timestamp > 15 minutes then alert
# if size > 100 MB then exec "/my/cleanup/script" as uid dba and gid dba
#
#
## Check directory permission, uid and gid. An event is triggered if the
## directory does not belong to the user with uid 0 and gid 0. In addition,
## the permissions have to match the octal description of 755 (see chmod(1)).
#
# check directory bin with path /bin
# if failed permission 755 then unmonitor
# if failed uid 0 then unmonitor
# if failed gid 0 then unmonitor
#
#
## Check a remote host availability by issuing a ping test and check the
## content of a response from a web server. Up to three pings are sent and
## connection to a port and an application level network check is performed.
#
# check host myserver with address 192.168.1.1
# if failed icmp type echo count 3 with timeout 3 seconds then alert
# if failed port 3306 protocol mysql with timeout 15 seconds then alert
# if failed port 80 protocol http
# and request /monit/ with content = "Monit [0-9.]+ Download"
# then alert
#
#
###############################################################################
## Includes
###############################################################################
##
## It is possible to include additional configuration parts from other files or
## directories.
#
include /etc/monit.d/*
#

1
config/rootfiles/common/armv5tel/initscripts Normal file → Executable file
View File

@@ -52,6 +52,7 @@ etc/rc.d/init.d/mISDN
#etc/rc.d/init.d/mldonkey
etc/rc.d/init.d/modules
#etc/rc.d/init.d/motion
#etc/rc.d/init.d/monit
etc/rc.d/init.d/mountfs
etc/rc.d/init.d/mountkernfs
etc/rc.d/init.d/mounttmpfs

View File

@@ -1,16 +1,16 @@
#boot/MLO
boot/boot.scr
boot/boot.script
boot/convert_bootscript
#boot/u-boot.img
boot/uEnv.txt
usr/bin/mkimage
#usr/share/u-boot
#usr/share/u-boot/banana_pi
usr/share/u-boot/banana_pi/u-boot-sunxi-with-spl.bin
#usr/share/u-boot/pandaboard
#usr/share/u-boot/pandaboard/MLO
#usr/share/u-boot/pandaboard/u-boot.img
usr/share/u-boot/pandaboard/MLO
usr/share/u-boot/pandaboard/u-boot.img
#usr/share/u-boot/wandboard_dl
#usr/share/u-boot/wandboard_dl/u-boot.imx
usr/share/u-boot/wandboard_dl/u-boot.imx
#usr/share/u-boot/wandboard_quad
#usr/share/u-boot/wandboard_quad/u-boot.imx
usr/share/u-boot/wandboard_quad/u-boot.imx
#usr/share/u-boot/wandboard_solo
#usr/share/u-boot/wandboard_solo/u-boot.imx
usr/share/u-boot/wandboard_solo/u-boot.imx

View File

@@ -1,12 +1,14 @@
lib/udev/rules.d/85-regulatory.rules
#root/.python-eggs
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-MACHINE.egg-tmp
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-MACHINE.egg-tmp/M2Crypto
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-MACHINE.egg-tmp/M2Crypto/__m2crypto.so
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-i686.egg-tmp
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-i686.egg-tmp/M2Crypto
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-i686.egg-tmp/M2Crypto/__m2crypto.so
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-i586.egg-tmp
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-i586.egg-tmp/M2Crypto
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-i586.egg-tmp/M2Crypto/__m2crypto.so
sbin/crda
sbin/regdbdump
#usr/include/reglib
#usr/include/reglib/nl80211.h
#usr/include/reglib/regdb.h
#usr/include/reglib/reglib.h
usr/lib/libreg.so
#usr/share/man/man8/crda.8.gz
#usr/share/man/man8/regdbdump.8.gz

View File

@@ -1,4 +1,7 @@
lib/firmware/dvb-fe-bcm3510-01.fw
lib/firmware/dvb-fe-drxj-mc-1.0.8.fw
lib/firmware/dvb-fe-drxj-mc-vsb-1.0.8.fw
lib/firmware/dvb-fe-drxj-mc-vsb-qam-1.0.8.fw
lib/firmware/dvb-fe-or51132-qam.fw
lib/firmware/dvb-fe-or51132-vsb.fw
lib/firmware/dvb-fe-or51211.fw
@@ -21,4 +24,4 @@ lib/firmware/dvb-usb-vp702x-01.fw
lib/firmware/dvb-usb-vp7045-01.fw
lib/firmware/dvb-usb-wt220u-01.fw
lib/firmware/dvb-usb-wt220u-02.fw
lib/firmware/v4l-cx23885-enc.fw
lib/firmware/v4l-cx23885-enc-broken.fw

1
config/rootfiles/common/i586/initscripts Normal file → Executable file
View File

@@ -53,6 +53,7 @@ etc/rc.d/init.d/mISDN
#etc/rc.d/init.d/miniupnpd
#etc/rc.d/init.d/mldonkey
etc/rc.d/init.d/modules
#etc/rc.d/init.d/monit
#etc/rc.d/init.d/motion
etc/rc.d/init.d/mountfs
etc/rc.d/init.d/mountkernfs

View File

@@ -137,6 +137,7 @@ lib/kbd/consolefonts/iso07u-16.psfu.gz
#lib/kbd/consolefonts/lat0-12.psfu.gz
#lib/kbd/consolefonts/lat0-14.psfu.gz
lib/kbd/consolefonts/lat0-16.psfu.gz
lib/kbd/consolefonts/lat0-sun16.psfu.gz
#lib/kbd/consolefonts/lat1-08.psfu.gz
#lib/kbd/consolefonts/lat1-10.psfu.gz
#lib/kbd/consolefonts/lat1-12.psfu.gz
@@ -147,6 +148,7 @@ lib/kbd/consolefonts/lat1-16.psfu.gz
#lib/kbd/consolefonts/lat2-12.psfu.gz
#lib/kbd/consolefonts/lat2-14.psfu.gz
lib/kbd/consolefonts/lat2-16.psfu.gz
lib/kbd/consolefonts/lat2-sun16.psfu.gz
#lib/kbd/consolefonts/lat2a-16.psfu.gz
#lib/kbd/consolefonts/lat4-08.psfu.gz
#lib/kbd/consolefonts/lat4-10.psfu.gz
@@ -188,6 +190,7 @@ lib/kbd/consolefonts/lat5-16.psfu.gz
#lib/kbd/consolefonts/lat9w-12.psfu.gz
#lib/kbd/consolefonts/lat9w-14.psfu.gz
#lib/kbd/consolefonts/lat9w-16.psfu.gz
lib/kbd/consolefonts/latarcyrheb-sun16.psfu.gz
#lib/kbd/consolefonts/partialfonts
#lib/kbd/consolefonts/partialfonts/8859-1.a0-ff.08.gz
#lib/kbd/consolefonts/partialfonts/8859-1.a0-ff.14.gz

View File

@@ -2,6 +2,8 @@
lib/firmware/3com/3C359.bin
lib/firmware/3com/typhoon.bin
lib/firmware/GPL-3
lib/firmware/LICENCE.Abilis
lib/firmware/LICENCE.IntcSST2
lib/firmware/LICENCE.Marvell
lib/firmware/LICENCE.OLPC
lib/firmware/LICENCE.agere
@@ -11,23 +13,30 @@ lib/firmware/LICENCE.ca0132
lib/firmware/LICENCE.chelsio_firmware
lib/firmware/LICENCE.cw1200
lib/firmware/LICENCE.ene_firmware
lib/firmware/LICENCE.fw_sst_0f28
lib/firmware/LICENCE.go7007
lib/firmware/LICENCE.i2400m
lib/firmware/LICENCE.ibt_firmware
lib/firmware/LICENCE.it913x
lib/firmware/LICENCE.iwlwifi_firmware
lib/firmware/LICENCE.mwl8335
lib/firmware/LICENCE.myri10ge_firmware
lib/firmware/LICENCE.phanfw
lib/firmware/LICENCE.qat_dh895xcc_firmware
lib/firmware/LICENCE.qla2xxx
lib/firmware/LICENCE.r8a779x_usb3
lib/firmware/LICENCE.ralink-firmware.txt
lib/firmware/LICENCE.ralink_a_mediatek_company_firmware
lib/firmware/LICENCE.rtlwifi_firmware.txt
lib/firmware/LICENCE.siano
lib/firmware/LICENCE.tda7706-firmware.txt
lib/firmware/LICENCE.ti-connectivity
lib/firmware/LICENCE.ueagle-atm4-firmware
lib/firmware/LICENCE.via_vt6656
lib/firmware/LICENCE.wl1251
lib/firmware/LICENCE.xc4000
lib/firmware/LICENCE.xc5000
lib/firmware/LICENCE.xc5000c
lib/firmware/LICENSE.amd-ucode
lib/firmware/LICENSE.dib0700
lib/firmware/LICENSE.radeon
@@ -58,6 +67,8 @@ lib/firmware/amd-ucode/microcode_amd.bin
lib/firmware/amd-ucode/microcode_amd.bin.asc
lib/firmware/amd-ucode/microcode_amd_fam15h.bin
lib/firmware/amd-ucode/microcode_amd_fam15h.bin.asc
lib/firmware/amd-ucode/microcode_amd_fam16h.bin
lib/firmware/amd-ucode/microcode_amd_fam16h.bin.asc
#lib/firmware/ar3k
#lib/firmware/ar3k/1020200
lib/firmware/ar3k/1020200/PS_ASIC.pst
@@ -100,6 +111,8 @@ lib/firmware/ar7010_1_1.fw
lib/firmware/ar9170-1.fw
lib/firmware/ar9170-2.fw
lib/firmware/ar9271.fw
lib/firmware/as102_data1_st.hex
lib/firmware/as102_data2_st.hex
lib/firmware/ath3k-1.fw
#lib/firmware/ath6k
#lib/firmware/ath6k/AR6002
@@ -191,9 +204,11 @@ lib/firmware/bnx2x/bnx2x-e1-6.2.9.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.0.20.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.0.23.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.0.29.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.10.51.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.2.16.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.2.51.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.8.17.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.8.19.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.8.2.0.fw
lib/firmware/bnx2x/bnx2x-e1h-6.0.34.0.fw
lib/firmware/bnx2x/bnx2x-e1h-6.2.5.0.fw
@@ -201,9 +216,11 @@ lib/firmware/bnx2x/bnx2x-e1h-6.2.9.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.0.20.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.0.23.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.0.29.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.10.51.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.2.16.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.2.51.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.8.17.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.8.19.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.8.2.0.fw
lib/firmware/bnx2x/bnx2x-e2-6.0.34.0.fw
lib/firmware/bnx2x/bnx2x-e2-6.2.5.0.fw
@@ -211,14 +228,18 @@ lib/firmware/bnx2x/bnx2x-e2-6.2.9.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.0.20.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.0.23.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.0.29.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.10.51.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.2.16.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.2.51.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.8.17.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.8.19.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.8.2.0.fw
#lib/firmware/brcm
lib/firmware/brcm/bcm4329-fullmac-4.bin
lib/firmware/brcm/bcm43xx-0.fw
lib/firmware/brcm/bcm43xx_hdr-0.fw
lib/firmware/brcm/brcmfmac43143-sdio.bin
lib/firmware/brcm/brcmfmac43143.bin
lib/firmware/brcm/brcmfmac43236b.bin
lib/firmware/brcm/brcmfmac43241b0-sdio.bin
lib/firmware/brcm/brcmfmac43241b4-sdio.bin
@@ -226,6 +247,8 @@ lib/firmware/brcm/brcmfmac4329-sdio.bin
lib/firmware/brcm/brcmfmac4330-sdio.bin
lib/firmware/brcm/brcmfmac4334-sdio.bin
lib/firmware/brcm/brcmfmac4335-sdio.bin
lib/firmware/brcm/brcmfmac43362-sdio.bin
lib/firmware/brcm/brcmfmac4354-sdio.bin
lib/firmware/carl9170-1.fw
#lib/firmware/carl9170fw
#lib/firmware/carl9170fw/CMakeLists.txt
@@ -391,6 +414,8 @@ lib/firmware/cis/src/PE520.cis
lib/firmware/cis/src/RS-COM-2P.cis
lib/firmware/cis/src/tamarack.cis
lib/firmware/cis/tamarack.cis
lib/firmware/cmmb_vega_12mhz.inp
lib/firmware/cmmb_venice_12mhz.inp
#lib/firmware/configure
#lib/firmware/cpia2
lib/firmware/cpia2/stv0672_vp4.bin
@@ -412,9 +437,9 @@ lib/firmware/cxgb3/t3fw-7.10.0.bin
lib/firmware/cxgb3/t3fw-7.12.0.bin
lib/firmware/cxgb3/t3fw-7.4.0.bin
#lib/firmware/cxgb4
lib/firmware/cxgb4/t4fw-1.9.23.0.bin
lib/firmware/cxgb4/t4fw-1.12.25.0.bin
lib/firmware/cxgb4/t4fw.bin
lib/firmware/cxgb4/t5fw-1.9.23.0.bin
lib/firmware/cxgb4/t5fw-1.12.25.0.bin
lib/firmware/cxgb4/t5fw.bin
#lib/firmware/dabusb
lib/firmware/dabusb/bitstream.bin
@@ -424,9 +449,15 @@ lib/firmware/dabusb/firmware.fw
#lib/firmware/dsp56k/bootstrap.asm
lib/firmware/dsp56k/bootstrap.bin
#lib/firmware/dsp56k/concat-bootstrap.pl
lib/firmware/dvb-fe-xc4000-1.4.1.fw
lib/firmware/dvb-fe-xc5000-1.6.114.fw
lib/firmware/dvb-fe-xc5000c-4.1.30.7.fw
lib/firmware/dvb-usb-dib0700-1.20.fw
lib/firmware/dvb-usb-it9135-01.fw
lib/firmware/dvb-usb-it9135-02.fw
lib/firmware/dvb-usb-terratec-h5-drxk.fw
lib/firmware/dvb_nova_12mhz.inp
lib/firmware/dvb_nova_12mhz_b0.inp
#lib/firmware/e100
lib/firmware/e100/d101m_ucode.bin
lib/firmware/e100/d101s_ucode.bin
@@ -472,9 +503,17 @@ lib/firmware/i2400m-fw-usb-1.4.sbcf
lib/firmware/i2400m-fw-usb-1.5.sbcf
lib/firmware/i6050-fw-usb-1.5.sbcf
#lib/firmware/intel
lib/firmware/intel/IntcSST2.bin
lib/firmware/intel/fw_sst_0f28.bin
lib/firmware/intel/fw_sst_0f28.bin-48kHz_i2s_master
lib/firmware/intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq
lib/firmware/intel/ibt-hw-37.7.10-fw-1.0.2.3.d.bseq
lib/firmware/intel/ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq
lib/firmware/intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
lib/firmware/intel/ibt-hw-37.7.bseq
lib/firmware/intel/ibt-hw-37.8.10-fw-1.10.2.27.d.bseq
lib/firmware/intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
lib/firmware/intel/ibt-hw-37.8.bseq
lib/firmware/intelliport2.bin
#lib/firmware/isci
#lib/firmware/isci/Makefile
@@ -483,6 +522,9 @@ lib/firmware/isci/README
#lib/firmware/isci/create_fw.h
lib/firmware/isci/isci_firmware.bin
#lib/firmware/isci/probe_roms.h
lib/firmware/isdbt_nova_12mhz.inp
lib/firmware/isdbt_nova_12mhz_b0.inp
lib/firmware/isdbt_rio.inp
lib/firmware/iwlwifi-100-5.ucode
lib/firmware/iwlwifi-1000-3.ucode
lib/firmware/iwlwifi-1000-5.ucode
@@ -490,7 +532,10 @@ lib/firmware/iwlwifi-105-6.ucode
lib/firmware/iwlwifi-135-6.ucode
lib/firmware/iwlwifi-2000-6.ucode
lib/firmware/iwlwifi-2030-6.ucode
lib/firmware/iwlwifi-3160-10.ucode
lib/firmware/iwlwifi-3160-7.ucode
lib/firmware/iwlwifi-3160-8.ucode
lib/firmware/iwlwifi-3160-9.ucode
lib/firmware/iwlwifi-3945-2.ucode
lib/firmware/iwlwifi-4965-2.ucode
lib/firmware/iwlwifi-5000-1.ucode
@@ -504,7 +549,14 @@ lib/firmware/iwlwifi-6000g2b-5.ucode
lib/firmware/iwlwifi-6000g2b-6.ucode
lib/firmware/iwlwifi-6050-4.ucode
lib/firmware/iwlwifi-6050-5.ucode
lib/firmware/iwlwifi-7260-10.ucode
lib/firmware/iwlwifi-7260-7.ucode
lib/firmware/iwlwifi-7260-8.ucode
lib/firmware/iwlwifi-7260-9.ucode
lib/firmware/iwlwifi-7265-10.ucode
lib/firmware/iwlwifi-7265-8.ucode
lib/firmware/iwlwifi-7265-9.ucode
lib/firmware/iwlwifi-7265D-10.ucode
#lib/firmware/kaweth
lib/firmware/kaweth/new_code.bin
lib/firmware/kaweth/new_code_fix.bin
@@ -595,15 +647,20 @@ lib/firmware/mwl8k/fmimage_8687.fw
lib/firmware/mwl8k/fmimage_8764_ap-1.fw
lib/firmware/mwl8k/helper_8366.fw
lib/firmware/mwl8k/helper_8687.fw
lib/firmware/myri10ge_eth_big_z8e.dat
lib/firmware/myri10ge_eth_z8e.dat
lib/firmware/myri10ge_ethp_big_z8e.dat
lib/firmware/myri10ge_ethp_z8e.dat
lib/firmware/myri10ge_rss_eth_big_z8e.dat
lib/firmware/myri10ge_rss_eth_z8e.dat
lib/firmware/myri10ge_rss_ethp_big_z8e.dat
lib/firmware/myri10ge_rss_ethp_z8e.dat
#lib/firmware/myricom
lib/firmware/myricom/lanai.bin
#lib/firmware/ositech
lib/firmware/ositech/Xilinx7OD.bin
lib/firmware/phanfw.bin
lib/firmware/qat_895xcc.bin
lib/firmware/ql2100_fw.bin
lib/firmware/ql2200_fw.bin
lib/firmware/ql2300_fw.bin
@@ -618,6 +675,7 @@ lib/firmware/qlogic/isp1000.bin
lib/firmware/qlogic/sd7220.fw
#lib/firmware/r128
lib/firmware/r128/r128_cce.bin
lib/firmware/r8a779x_usb3_v1.dlmem
#lib/firmware/radeon
lib/firmware/radeon/ARUBA_me.bin
lib/firmware/radeon/ARUBA_pfp.bin
@@ -628,6 +686,7 @@ lib/firmware/radeon/BARTS_pfp.bin
lib/firmware/radeon/BARTS_smc.bin
lib/firmware/radeon/BONAIRE_ce.bin
lib/firmware/radeon/BONAIRE_mc.bin
lib/firmware/radeon/BONAIRE_mc2.bin
lib/firmware/radeon/BONAIRE_me.bin
lib/firmware/radeon/BONAIRE_mec.bin
lib/firmware/radeon/BONAIRE_pfp.bin
@@ -635,6 +694,7 @@ lib/firmware/radeon/BONAIRE_rlc.bin
lib/firmware/radeon/BONAIRE_sdma.bin
lib/firmware/radeon/BONAIRE_smc.bin
lib/firmware/radeon/BONAIRE_uvd.bin
lib/firmware/radeon/BONAIRE_vce.bin
lib/firmware/radeon/BTC_rlc.bin
lib/firmware/radeon/CAICOS_mc.bin
lib/firmware/radeon/CAICOS_me.bin
@@ -656,10 +716,20 @@ lib/firmware/radeon/CYPRESS_smc.bin
lib/firmware/radeon/CYPRESS_uvd.bin
lib/firmware/radeon/HAINAN_ce.bin
lib/firmware/radeon/HAINAN_mc.bin
lib/firmware/radeon/HAINAN_mc2.bin
lib/firmware/radeon/HAINAN_me.bin
lib/firmware/radeon/HAINAN_pfp.bin
lib/firmware/radeon/HAINAN_rlc.bin
lib/firmware/radeon/HAINAN_smc.bin
lib/firmware/radeon/HAWAII_ce.bin
lib/firmware/radeon/HAWAII_mc.bin
lib/firmware/radeon/HAWAII_mc2.bin
lib/firmware/radeon/HAWAII_me.bin
lib/firmware/radeon/HAWAII_mec.bin
lib/firmware/radeon/HAWAII_pfp.bin
lib/firmware/radeon/HAWAII_rlc.bin
lib/firmware/radeon/HAWAII_sdma.bin
lib/firmware/radeon/HAWAII_smc.bin
lib/firmware/radeon/JUNIPER_me.bin
lib/firmware/radeon/JUNIPER_pfp.bin
lib/firmware/radeon/JUNIPER_rlc.bin
@@ -676,8 +746,15 @@ lib/firmware/radeon/KAVERI_mec.bin
lib/firmware/radeon/KAVERI_pfp.bin
lib/firmware/radeon/KAVERI_rlc.bin
lib/firmware/radeon/KAVERI_sdma.bin
lib/firmware/radeon/MULLINS_ce.bin
lib/firmware/radeon/MULLINS_me.bin
lib/firmware/radeon/MULLINS_mec.bin
lib/firmware/radeon/MULLINS_pfp.bin
lib/firmware/radeon/MULLINS_rlc.bin
lib/firmware/radeon/MULLINS_sdma.bin
lib/firmware/radeon/OLAND_ce.bin
lib/firmware/radeon/OLAND_mc.bin
lib/firmware/radeon/OLAND_mc2.bin
lib/firmware/radeon/OLAND_me.bin
lib/firmware/radeon/OLAND_pfp.bin
lib/firmware/radeon/OLAND_rlc.bin
@@ -686,6 +763,7 @@ lib/firmware/radeon/PALM_me.bin
lib/firmware/radeon/PALM_pfp.bin
lib/firmware/radeon/PITCAIRN_ce.bin
lib/firmware/radeon/PITCAIRN_mc.bin
lib/firmware/radeon/PITCAIRN_mc2.bin
lib/firmware/radeon/PITCAIRN_me.bin
lib/firmware/radeon/PITCAIRN_pfp.bin
lib/firmware/radeon/PITCAIRN_rlc.bin
@@ -698,6 +776,7 @@ lib/firmware/radeon/R520_cp.bin
lib/firmware/radeon/R600_me.bin
lib/firmware/radeon/R600_pfp.bin
lib/firmware/radeon/R600_rlc.bin
lib/firmware/radeon/R600_uvd.bin
lib/firmware/radeon/R700_rlc.bin
lib/firmware/radeon/REDWOOD_me.bin
lib/firmware/radeon/REDWOOD_pfp.bin
@@ -707,6 +786,7 @@ lib/firmware/radeon/RS600_cp.bin
lib/firmware/radeon/RS690_cp.bin
lib/firmware/radeon/RS780_me.bin
lib/firmware/radeon/RS780_pfp.bin
lib/firmware/radeon/RS780_uvd.bin
lib/firmware/radeon/RV610_me.bin
lib/firmware/radeon/RV610_pfp.bin
lib/firmware/radeon/RV620_me.bin
@@ -728,6 +808,7 @@ lib/firmware/radeon/RV740_smc.bin
lib/firmware/radeon/RV770_me.bin
lib/firmware/radeon/RV770_pfp.bin
lib/firmware/radeon/RV770_smc.bin
lib/firmware/radeon/RV770_uvd.bin
lib/firmware/radeon/SUMO2_me.bin
lib/firmware/radeon/SUMO2_pfp.bin
lib/firmware/radeon/SUMO_me.bin
@@ -736,6 +817,7 @@ lib/firmware/radeon/SUMO_rlc.bin
lib/firmware/radeon/SUMO_uvd.bin
lib/firmware/radeon/TAHITI_ce.bin
lib/firmware/radeon/TAHITI_mc.bin
lib/firmware/radeon/TAHITI_mc2.bin
lib/firmware/radeon/TAHITI_me.bin
lib/firmware/radeon/TAHITI_pfp.bin
lib/firmware/radeon/TAHITI_rlc.bin
@@ -747,11 +829,78 @@ lib/firmware/radeon/TURKS_pfp.bin
lib/firmware/radeon/TURKS_smc.bin
lib/firmware/radeon/VERDE_ce.bin
lib/firmware/radeon/VERDE_mc.bin
lib/firmware/radeon/VERDE_mc2.bin
lib/firmware/radeon/VERDE_me.bin
lib/firmware/radeon/VERDE_pfp.bin
lib/firmware/radeon/VERDE_rlc.bin
lib/firmware/radeon/VERDE_smc.bin
lib/firmware/radeon/bonaire_ce.bin
lib/firmware/radeon/bonaire_mc.bin
lib/firmware/radeon/bonaire_me.bin
lib/firmware/radeon/bonaire_mec.bin
lib/firmware/radeon/bonaire_pfp.bin
lib/firmware/radeon/bonaire_rlc.bin
lib/firmware/radeon/bonaire_sdma.bin
lib/firmware/radeon/bonaire_smc.bin
lib/firmware/radeon/hainan_ce.bin
lib/firmware/radeon/hainan_mc.bin
lib/firmware/radeon/hainan_me.bin
lib/firmware/radeon/hainan_pfp.bin
lib/firmware/radeon/hainan_rlc.bin
lib/firmware/radeon/hainan_smc.bin
lib/firmware/radeon/hawaii_ce.bin
lib/firmware/radeon/hawaii_mc.bin
lib/firmware/radeon/hawaii_me.bin
lib/firmware/radeon/hawaii_mec.bin
lib/firmware/radeon/hawaii_pfp.bin
lib/firmware/radeon/hawaii_rlc.bin
lib/firmware/radeon/hawaii_sdma.bin
lib/firmware/radeon/hawaii_smc.bin
lib/firmware/radeon/kabini_ce.bin
lib/firmware/radeon/kabini_me.bin
lib/firmware/radeon/kabini_mec.bin
lib/firmware/radeon/kabini_pfp.bin
lib/firmware/radeon/kabini_rlc.bin
lib/firmware/radeon/kabini_sdma.bin
lib/firmware/radeon/kaveri_ce.bin
lib/firmware/radeon/kaveri_me.bin
lib/firmware/radeon/kaveri_mec.bin
lib/firmware/radeon/kaveri_mec2.bin
lib/firmware/radeon/kaveri_pfp.bin
lib/firmware/radeon/kaveri_rlc.bin
lib/firmware/radeon/kaveri_sdma.bin
lib/firmware/radeon/mullins_ce.bin
lib/firmware/radeon/mullins_me.bin
lib/firmware/radeon/mullins_mec.bin
lib/firmware/radeon/mullins_pfp.bin
lib/firmware/radeon/mullins_rlc.bin
lib/firmware/radeon/mullins_sdma.bin
lib/firmware/radeon/oland_ce.bin
lib/firmware/radeon/oland_mc.bin
lib/firmware/radeon/oland_me.bin
lib/firmware/radeon/oland_pfp.bin
lib/firmware/radeon/oland_rlc.bin
lib/firmware/radeon/oland_smc.bin
lib/firmware/radeon/pitcairn_ce.bin
lib/firmware/radeon/pitcairn_mc.bin
lib/firmware/radeon/pitcairn_me.bin
lib/firmware/radeon/pitcairn_pfp.bin
lib/firmware/radeon/pitcairn_rlc.bin
lib/firmware/radeon/pitcairn_smc.bin
lib/firmware/radeon/tahiti_ce.bin
lib/firmware/radeon/tahiti_mc.bin
lib/firmware/radeon/tahiti_me.bin
lib/firmware/radeon/tahiti_pfp.bin
lib/firmware/radeon/tahiti_rlc.bin
lib/firmware/radeon/tahiti_smc.bin
lib/firmware/radeon/verde_ce.bin
lib/firmware/radeon/verde_mc.bin
lib/firmware/radeon/verde_me.bin
lib/firmware/radeon/verde_pfp.bin
lib/firmware/radeon/verde_rlc.bin
lib/firmware/radeon/verde_smc.bin
lib/firmware/rp2.fw
lib/firmware/rsi_91x.fw
lib/firmware/rt2561.bin
lib/firmware/rt2561s.bin
lib/firmware/rt2661.bin
@@ -766,6 +915,8 @@ lib/firmware/rt73.bin
lib/firmware/rtl_nic/rtl8105e-1.fw
lib/firmware/rtl_nic/rtl8106e-1.fw
lib/firmware/rtl_nic/rtl8106e-2.fw
lib/firmware/rtl_nic/rtl8107e-1.fw
lib/firmware/rtl_nic/rtl8107e-2.fw
lib/firmware/rtl_nic/rtl8168d-1.fw
lib/firmware/rtl_nic/rtl8168d-2.fw
lib/firmware/rtl_nic/rtl8168e-1.fw
@@ -776,6 +927,8 @@ lib/firmware/rtl_nic/rtl8168f-2.fw
lib/firmware/rtl_nic/rtl8168g-1.fw
lib/firmware/rtl_nic/rtl8168g-2.fw
lib/firmware/rtl_nic/rtl8168g-3.fw
lib/firmware/rtl_nic/rtl8168h-1.fw
lib/firmware/rtl_nic/rtl8168h-2.fw
lib/firmware/rtl_nic/rtl8402-1.fw
lib/firmware/rtl_nic/rtl8411-1.fw
lib/firmware/rtl_nic/rtl8411-2.fw
@@ -790,15 +943,24 @@ lib/firmware/rtlwifi/rtl8192cufw_A.bin
lib/firmware/rtlwifi/rtl8192cufw_B.bin
lib/firmware/rtlwifi/rtl8192cufw_TMSC.bin
lib/firmware/rtlwifi/rtl8192defw.bin
lib/firmware/rtlwifi/rtl8192eefw.bin
lib/firmware/rtlwifi/rtl8192sefw.bin
lib/firmware/rtlwifi/rtl8712u.bin
lib/firmware/rtlwifi/rtl8723aufw_A.bin
lib/firmware/rtlwifi/rtl8723aufw_B.bin
lib/firmware/rtlwifi/rtl8723aufw_B_NoBT.bin
lib/firmware/rtlwifi/rtl8723befw.bin
lib/firmware/rtlwifi/rtl8723fw.bin
lib/firmware/rtlwifi/rtl8723fw_B.bin
lib/firmware/rtlwifi/rtl8821aefw.bin
lib/firmware/rtlwifi/rtl8821aefw_wowlan.bin
lib/firmware/s2250.fw
lib/firmware/s2250_loader.fw
lib/firmware/s5p-mfc
lib/firmware/s5p-mfc/s5p-mfc-v6.fw
lib/firmware/s5p-mfc/s5p-mfc.fw
lib/firmware/s5p-mfc-v6-v2.fw
lib/firmware/s5p-mfc-v6.fw
lib/firmware/s5p-mfc-v7.fw
lib/firmware/s5p-mfc-v8.fw
lib/firmware/s5p-mfc.fw
#lib/firmware/sb16
lib/firmware/sb16/alaw_main.csp
lib/firmware/sb16/ima_adpcm_capture.csp
@@ -812,11 +974,17 @@ lib/firmware/slicoss/gbrcvucode.sys
lib/firmware/slicoss/oasisdbgdownload.sys
lib/firmware/slicoss/oasisdownload.sys
lib/firmware/slicoss/oasisrcvucode.sys
lib/firmware/sms1xxx-hcw-55xxx-dvbt-02.fw
lib/firmware/sms1xxx-hcw-55xxx-isdbt-02.fw
lib/firmware/sms1xxx-nova-a-dvbt-01.fw
lib/firmware/sms1xxx-nova-b-dvbt-01.fw
lib/firmware/sms1xxx-stellar-dvbt-01.fw
#lib/firmware/sun
lib/firmware/sun/cassini.bin
#lib/firmware/sxg
lib/firmware/sxg/saharadbgdownloadB.sys
lib/firmware/sxg/saharadownloadB.sys
lib/firmware/tdmb_nova_12mhz.inp
#lib/firmware/tehuti
lib/firmware/tehuti/bdx.bin
#lib/firmware/ti-connectivity
@@ -850,6 +1018,8 @@ lib/firmware/ti-connectivity/wl128x-nvs.bin
lib/firmware/ti-connectivity/wl12xx-nvs.bin
lib/firmware/ti-connectivity/wl18xx-conf.bin
lib/firmware/ti-connectivity/wl18xx-fw-2.bin
lib/firmware/ti-connectivity/wl18xx-fw-3.bin
lib/firmware/ti-connectivity/wl18xx-fw-4.bin
lib/firmware/ti-connectivity/wl18xx-fw.bin
lib/firmware/ti_3410.fw
lib/firmware/ti_5052.fw

View File

@@ -3,6 +3,7 @@ etc/ntp.conf
etc/rc.d/rc0.d/K46ntpd
etc/rc.d/rc3.d/S26ntpd
etc/rc.d/rc6.d/K46ntpd
usr/bin/calc_tickadj
usr/bin/ntp-keygen
usr/bin/ntp-wait
usr/bin/ntpd
@@ -13,12 +14,273 @@ usr/bin/ntptime
usr/bin/ntptrace
usr/bin/sntp
usr/bin/tickadj
#usr/include/event2
#usr/share/doc/ntp4
#usr/share/doc/ntp4/html
#usr/share/doc/ntp4/html/access.html
#usr/share/doc/ntp4/html/accopt.html
#usr/share/doc/ntp4/html/assoc.html
#usr/share/doc/ntp4/html/audio.html
#usr/share/doc/ntp4/html/authentic.html
#usr/share/doc/ntp4/html/authopt.html
#usr/share/doc/ntp4/html/autokey.html
#usr/share/doc/ntp4/html/bugs.html
#usr/share/doc/ntp4/html/build.html
#usr/share/doc/ntp4/html/clock.html
#usr/share/doc/ntp4/html/clockopt.html
#usr/share/doc/ntp4/html/cluster.html
#usr/share/doc/ntp4/html/comdex.html
#usr/share/doc/ntp4/html/config.html
#usr/share/doc/ntp4/html/confopt.html
#usr/share/doc/ntp4/html/copyright.html
#usr/share/doc/ntp4/html/debug.html
#usr/share/doc/ntp4/html/decode.html
#usr/share/doc/ntp4/html/discipline.html
#usr/share/doc/ntp4/html/discover.html
#usr/share/doc/ntp4/html/drivers
#usr/share/doc/ntp4/html/drivers/driver1.html
#usr/share/doc/ntp4/html/drivers/driver10.html
#usr/share/doc/ntp4/html/drivers/driver11.html
#usr/share/doc/ntp4/html/drivers/driver12.html
#usr/share/doc/ntp4/html/drivers/driver16.html
#usr/share/doc/ntp4/html/drivers/driver18.html
#usr/share/doc/ntp4/html/drivers/driver19.html
#usr/share/doc/ntp4/html/drivers/driver20.html
#usr/share/doc/ntp4/html/drivers/driver22.html
#usr/share/doc/ntp4/html/drivers/driver26.html
#usr/share/doc/ntp4/html/drivers/driver27.html
#usr/share/doc/ntp4/html/drivers/driver28.html
#usr/share/doc/ntp4/html/drivers/driver29.html
#usr/share/doc/ntp4/html/drivers/driver3.html
#usr/share/doc/ntp4/html/drivers/driver30.html
#usr/share/doc/ntp4/html/drivers/driver31.html
#usr/share/doc/ntp4/html/drivers/driver32.html
#usr/share/doc/ntp4/html/drivers/driver33.html
#usr/share/doc/ntp4/html/drivers/driver34.html
#usr/share/doc/ntp4/html/drivers/driver35.html
#usr/share/doc/ntp4/html/drivers/driver36.html
#usr/share/doc/ntp4/html/drivers/driver37.html
#usr/share/doc/ntp4/html/drivers/driver38.html
#usr/share/doc/ntp4/html/drivers/driver39.html
#usr/share/doc/ntp4/html/drivers/driver4.html
#usr/share/doc/ntp4/html/drivers/driver40.html
#usr/share/doc/ntp4/html/drivers/driver42.html
#usr/share/doc/ntp4/html/drivers/driver43.html
#usr/share/doc/ntp4/html/drivers/driver44.html
#usr/share/doc/ntp4/html/drivers/driver45.html
#usr/share/doc/ntp4/html/drivers/driver46.html
#usr/share/doc/ntp4/html/drivers/driver5.html
#usr/share/doc/ntp4/html/drivers/driver6.html
#usr/share/doc/ntp4/html/drivers/driver7.html
#usr/share/doc/ntp4/html/drivers/driver8.html
#usr/share/doc/ntp4/html/drivers/driver9.html
#usr/share/doc/ntp4/html/drivers/icons
#usr/share/doc/ntp4/html/drivers/icons/home.gif
#usr/share/doc/ntp4/html/drivers/icons/mail2.gif
#usr/share/doc/ntp4/html/drivers/mx4200data.html
#usr/share/doc/ntp4/html/drivers/oncore-shmem.html
#usr/share/doc/ntp4/html/drivers/scripts
#usr/share/doc/ntp4/html/drivers/scripts/footer.txt
#usr/share/doc/ntp4/html/drivers/scripts/style.css
#usr/share/doc/ntp4/html/drivers/tf582_4.html
#usr/share/doc/ntp4/html/extern.html
#usr/share/doc/ntp4/html/filter.html
#usr/share/doc/ntp4/html/hints
#usr/share/doc/ntp4/html/hints.html
#usr/share/doc/ntp4/html/hints/a-ux
#usr/share/doc/ntp4/html/hints/aix
#usr/share/doc/ntp4/html/hints/bsdi
#usr/share/doc/ntp4/html/hints/changes
#usr/share/doc/ntp4/html/hints/decosf1
#usr/share/doc/ntp4/html/hints/decosf2
#usr/share/doc/ntp4/html/hints/freebsd
#usr/share/doc/ntp4/html/hints/hpux
#usr/share/doc/ntp4/html/hints/linux
#usr/share/doc/ntp4/html/hints/mpeix
#usr/share/doc/ntp4/html/hints/notes-xntp-v3
#usr/share/doc/ntp4/html/hints/parse
#usr/share/doc/ntp4/html/hints/refclocks
#usr/share/doc/ntp4/html/hints/rs6000
#usr/share/doc/ntp4/html/hints/sco.html
#usr/share/doc/ntp4/html/hints/sgi
#usr/share/doc/ntp4/html/hints/solaris-dosynctodr.html
#usr/share/doc/ntp4/html/hints/solaris.html
#usr/share/doc/ntp4/html/hints/solaris.xtra.4023118
#usr/share/doc/ntp4/html/hints/solaris.xtra.4095849
#usr/share/doc/ntp4/html/hints/solaris.xtra.S99ntpd
#usr/share/doc/ntp4/html/hints/solaris.xtra.patchfreq
#usr/share/doc/ntp4/html/hints/sun4
#usr/share/doc/ntp4/html/hints/svr4-dell
#usr/share/doc/ntp4/html/hints/svr4_package
#usr/share/doc/ntp4/html/hints/todo
#usr/share/doc/ntp4/html/hints/vxworks.html
#usr/share/doc/ntp4/html/hints/winnt.html
#usr/share/doc/ntp4/html/history.html
#usr/share/doc/ntp4/html/howto.html
#usr/share/doc/ntp4/html/huffpuff.html
#usr/share/doc/ntp4/html/icons
#usr/share/doc/ntp4/html/icons/home.gif
#usr/share/doc/ntp4/html/icons/mail2.gif
#usr/share/doc/ntp4/html/icons/sitemap.png
#usr/share/doc/ntp4/html/index.html
#usr/share/doc/ntp4/html/kern.html
#usr/share/doc/ntp4/html/kernpps.html
#usr/share/doc/ntp4/html/keygen.html
#usr/share/doc/ntp4/html/leap.html
#usr/share/doc/ntp4/html/miscopt.html
#usr/share/doc/ntp4/html/monopt.html
#usr/share/doc/ntp4/html/msyslog.html
#usr/share/doc/ntp4/html/ntp-wait.html
#usr/share/doc/ntp4/html/ntp_conf.html
#usr/share/doc/ntp4/html/ntpd.html
#usr/share/doc/ntp4/html/ntpdate.html
#usr/share/doc/ntp4/html/ntpdc.html
#usr/share/doc/ntp4/html/ntpdsim.html
#usr/share/doc/ntp4/html/ntpdsim_new.html
#usr/share/doc/ntp4/html/ntpq.html
#usr/share/doc/ntp4/html/ntptime.html
#usr/share/doc/ntp4/html/ntptrace.html
#usr/share/doc/ntp4/html/orphan.html
#usr/share/doc/ntp4/html/parsedata.html
#usr/share/doc/ntp4/html/parsenew.html
#usr/share/doc/ntp4/html/pic
#usr/share/doc/ntp4/html/pic/9400n.jpg
#usr/share/doc/ntp4/html/pic/alice11.gif
#usr/share/doc/ntp4/html/pic/alice13.gif
#usr/share/doc/ntp4/html/pic/alice15.gif
#usr/share/doc/ntp4/html/pic/alice23.gif
#usr/share/doc/ntp4/html/pic/alice31.gif
#usr/share/doc/ntp4/html/pic/alice32.gif
#usr/share/doc/ntp4/html/pic/alice35.gif
#usr/share/doc/ntp4/html/pic/alice38.gif
#usr/share/doc/ntp4/html/pic/alice44.gif
#usr/share/doc/ntp4/html/pic/alice47.gif
#usr/share/doc/ntp4/html/pic/alice51.gif
#usr/share/doc/ntp4/html/pic/alice61.gif
#usr/share/doc/ntp4/html/pic/barnstable.gif
#usr/share/doc/ntp4/html/pic/beaver.gif
#usr/share/doc/ntp4/html/pic/boom3.gif
#usr/share/doc/ntp4/html/pic/boom3a.gif
#usr/share/doc/ntp4/html/pic/boom4.gif
#usr/share/doc/ntp4/html/pic/broad.gif
#usr/share/doc/ntp4/html/pic/bustardfly.gif
#usr/share/doc/ntp4/html/pic/c51.jpg
#usr/share/doc/ntp4/html/pic/description.jpg
#usr/share/doc/ntp4/html/pic/discipline.gif
#usr/share/doc/ntp4/html/pic/dogsnake.gif
#usr/share/doc/ntp4/html/pic/driver29.gif
#usr/share/doc/ntp4/html/pic/driver43_1.gif
#usr/share/doc/ntp4/html/pic/driver43_2.jpg
#usr/share/doc/ntp4/html/pic/fg6021.gif
#usr/share/doc/ntp4/html/pic/fg6039.jpg
#usr/share/doc/ntp4/html/pic/fig_3_1.gif
#usr/share/doc/ntp4/html/pic/flatheads.gif
#usr/share/doc/ntp4/html/pic/flt1.gif
#usr/share/doc/ntp4/html/pic/flt2.gif
#usr/share/doc/ntp4/html/pic/flt3.gif
#usr/share/doc/ntp4/html/pic/flt4.gif
#usr/share/doc/ntp4/html/pic/flt5.gif
#usr/share/doc/ntp4/html/pic/flt6.gif
#usr/share/doc/ntp4/html/pic/flt7.gif
#usr/share/doc/ntp4/html/pic/flt8.gif
#usr/share/doc/ntp4/html/pic/flt9.gif
#usr/share/doc/ntp4/html/pic/freq1211.gif
#usr/share/doc/ntp4/html/pic/gadget.jpg
#usr/share/doc/ntp4/html/pic/gps167.jpg
#usr/share/doc/ntp4/html/pic/group.gif
#usr/share/doc/ntp4/html/pic/hornraba.gif
#usr/share/doc/ntp4/html/pic/igclock.gif
#usr/share/doc/ntp4/html/pic/neoclock4x.gif
#usr/share/doc/ntp4/html/pic/offset1211.gif
#usr/share/doc/ntp4/html/pic/oncore_evalbig.gif
#usr/share/doc/ntp4/html/pic/oncore_remoteant.jpg
#usr/share/doc/ntp4/html/pic/oncore_utplusbig.gif
#usr/share/doc/ntp4/html/pic/oz2.gif
#usr/share/doc/ntp4/html/pic/panda.gif
#usr/share/doc/ntp4/html/pic/pd_om006.gif
#usr/share/doc/ntp4/html/pic/pd_om011.gif
#usr/share/doc/ntp4/html/pic/peer.gif
#usr/share/doc/ntp4/html/pic/pogo.gif
#usr/share/doc/ntp4/html/pic/pogo1a.gif
#usr/share/doc/ntp4/html/pic/pogo3a.gif
#usr/share/doc/ntp4/html/pic/pogo4.gif
#usr/share/doc/ntp4/html/pic/pogo5.gif
#usr/share/doc/ntp4/html/pic/pogo6.gif
#usr/share/doc/ntp4/html/pic/pogo7.gif
#usr/share/doc/ntp4/html/pic/pogo8.gif
#usr/share/doc/ntp4/html/pic/pzf509.jpg
#usr/share/doc/ntp4/html/pic/pzf511.jpg
#usr/share/doc/ntp4/html/pic/rabbit.gif
#usr/share/doc/ntp4/html/pic/radio2.jpg
#usr/share/doc/ntp4/html/pic/sheepb.jpg
#usr/share/doc/ntp4/html/pic/stack1a.jpg
#usr/share/doc/ntp4/html/pic/stats.gif
#usr/share/doc/ntp4/html/pic/sx5.gif
#usr/share/doc/ntp4/html/pic/thunderbolt.jpg
#usr/share/doc/ntp4/html/pic/time1.gif
#usr/share/doc/ntp4/html/pic/tonea.gif
#usr/share/doc/ntp4/html/pic/tribeb.gif
#usr/share/doc/ntp4/html/pic/wingdorothy.gif
#usr/share/doc/ntp4/html/poll.html
#usr/share/doc/ntp4/html/pps.html
#usr/share/doc/ntp4/html/prefer.html
#usr/share/doc/ntp4/html/quick.html
#usr/share/doc/ntp4/html/rate.html
#usr/share/doc/ntp4/html/rdebug.html
#usr/share/doc/ntp4/html/refclock.html
#usr/share/doc/ntp4/html/release.html
#usr/share/doc/ntp4/html/scripts
#usr/share/doc/ntp4/html/scripts/accopt.txt
#usr/share/doc/ntp4/html/scripts/audio.txt
#usr/share/doc/ntp4/html/scripts/authopt.txt
#usr/share/doc/ntp4/html/scripts/clockopt.txt
#usr/share/doc/ntp4/html/scripts/command.txt
#usr/share/doc/ntp4/html/scripts/config.txt
#usr/share/doc/ntp4/html/scripts/confopt.txt
#usr/share/doc/ntp4/html/scripts/external.txt
#usr/share/doc/ntp4/html/scripts/footer.txt
#usr/share/doc/ntp4/html/scripts/hand.txt
#usr/share/doc/ntp4/html/scripts/install.txt
#usr/share/doc/ntp4/html/scripts/manual.txt
#usr/share/doc/ntp4/html/scripts/misc.txt
#usr/share/doc/ntp4/html/scripts/miscopt.txt
#usr/share/doc/ntp4/html/scripts/monopt.txt
#usr/share/doc/ntp4/html/scripts/refclock.txt
#usr/share/doc/ntp4/html/scripts/special.txt
#usr/share/doc/ntp4/html/scripts/style.css
#usr/share/doc/ntp4/html/select.html
#usr/share/doc/ntp4/html/sitemap.html
#usr/share/doc/ntp4/html/sntp.html
#usr/share/doc/ntp4/html/stats.html
#usr/share/doc/ntp4/html/tickadj.html
#usr/share/doc/ntp4/html/warp.html
#usr/share/doc/ntp4/html/xleave.html
#usr/share/doc/ntp4/ntp-keygen.html
#usr/share/doc/ntp4/ntp-wait.html
#usr/share/doc/ntp4/ntp.conf.html
#usr/share/doc/ntp4/ntp.keys.html
#usr/share/doc/ntp4/ntpd.html
#usr/share/doc/ntp4/ntpdc.html
#usr/share/doc/ntp4/ntpq.html
#usr/share/doc/ntp4/ntpsnmpd.html
#usr/share/doc/ntp4/ntpsweep.html
#usr/share/doc/ntp4/ntptrace.html
#usr/share/doc/sntp
#usr/share/doc/sntp/sntp.html
#usr/share/man/man1/calc_tickadj.1
#usr/share/man/man1/ntp-keygen.1
#usr/share/man/man1/ntp-wait.1
#usr/share/man/man1/ntpd.1
#usr/share/man/man1/ntpdc.1
#usr/share/man/man1/ntpq.1
#usr/share/man/man1/ntpsnmpd.1
#usr/share/man/man1/ntptrace.1
#usr/share/man/man1/sntp.1
#usr/share/man/man5/ntp.conf.5
#usr/share/man/man5/ntp.keys.5
#usr/share/ntp
#usr/share/ntp/lib
#usr/share/ntp/lib/NTP
#usr/share/ntp/lib/NTP/Util.pm
var/ipfire/time/counter.conf
var/ipfire/time/enable
var/ipfire/time/settime.conf

View File

@@ -95,6 +95,7 @@ usr/local/bin/settime
usr/local/bin/timecheck
usr/local/bin/timezone-transition
#usr/local/bin/uname
usr/local/bin/update-bootloader
usr/local/bin/update-lang-cache
#usr/local/include
#usr/local/lib

View File

@@ -0,0 +1 @@
../../../../common/armv5tel/u-boot

View File

@@ -0,0 +1 @@
../../../common/bash

View File

@@ -0,0 +1 @@
../../../common/crda

View File

@@ -1,5 +1,8 @@
etc/system-release
etc/issue
opt/pakfire/etc/pakfire.conf
usr/lib/firewall/rules.pl
usr/local/bin/update-bootloader
var/ipfire/header.pl
var/ipfire/langs
var/ipfire/lang.pl

View File

@@ -0,0 +1 @@
../../../common/iw

View File

@@ -0,0 +1 @@
../../../common/kbd

View File

@@ -0,0 +1,287 @@
etc/ntp
etc/ntp.conf
etc/rc.d/rc0.d/K46ntpd
etc/rc.d/rc3.d/S26ntpd
etc/rc.d/rc6.d/K46ntpd
usr/bin/calc_tickadj
usr/bin/ntp-keygen
usr/bin/ntp-wait
usr/bin/ntpd
usr/bin/ntpdate
usr/bin/ntpdc
usr/bin/ntpq
usr/bin/ntptime
usr/bin/ntptrace
usr/bin/sntp
usr/bin/tickadj
#usr/include/event2
#usr/share/doc/ntp4
#usr/share/doc/ntp4/html
#usr/share/doc/ntp4/html/access.html
#usr/share/doc/ntp4/html/accopt.html
#usr/share/doc/ntp4/html/assoc.html
#usr/share/doc/ntp4/html/audio.html
#usr/share/doc/ntp4/html/authentic.html
#usr/share/doc/ntp4/html/authopt.html
#usr/share/doc/ntp4/html/autokey.html
#usr/share/doc/ntp4/html/bugs.html
#usr/share/doc/ntp4/html/build.html
#usr/share/doc/ntp4/html/clock.html
#usr/share/doc/ntp4/html/clockopt.html
#usr/share/doc/ntp4/html/cluster.html
#usr/share/doc/ntp4/html/comdex.html
#usr/share/doc/ntp4/html/config.html
#usr/share/doc/ntp4/html/confopt.html
#usr/share/doc/ntp4/html/copyright.html
#usr/share/doc/ntp4/html/debug.html
#usr/share/doc/ntp4/html/decode.html
#usr/share/doc/ntp4/html/discipline.html
#usr/share/doc/ntp4/html/discover.html
#usr/share/doc/ntp4/html/drivers
#usr/share/doc/ntp4/html/drivers/driver1.html
#usr/share/doc/ntp4/html/drivers/driver10.html
#usr/share/doc/ntp4/html/drivers/driver11.html
#usr/share/doc/ntp4/html/drivers/driver12.html
#usr/share/doc/ntp4/html/drivers/driver16.html
#usr/share/doc/ntp4/html/drivers/driver18.html
#usr/share/doc/ntp4/html/drivers/driver19.html
#usr/share/doc/ntp4/html/drivers/driver20.html
#usr/share/doc/ntp4/html/drivers/driver22.html
#usr/share/doc/ntp4/html/drivers/driver26.html
#usr/share/doc/ntp4/html/drivers/driver27.html
#usr/share/doc/ntp4/html/drivers/driver28.html
#usr/share/doc/ntp4/html/drivers/driver29.html
#usr/share/doc/ntp4/html/drivers/driver3.html
#usr/share/doc/ntp4/html/drivers/driver30.html
#usr/share/doc/ntp4/html/drivers/driver31.html
#usr/share/doc/ntp4/html/drivers/driver32.html
#usr/share/doc/ntp4/html/drivers/driver33.html
#usr/share/doc/ntp4/html/drivers/driver34.html
#usr/share/doc/ntp4/html/drivers/driver35.html
#usr/share/doc/ntp4/html/drivers/driver36.html
#usr/share/doc/ntp4/html/drivers/driver37.html
#usr/share/doc/ntp4/html/drivers/driver38.html
#usr/share/doc/ntp4/html/drivers/driver39.html
#usr/share/doc/ntp4/html/drivers/driver4.html
#usr/share/doc/ntp4/html/drivers/driver40.html
#usr/share/doc/ntp4/html/drivers/driver42.html
#usr/share/doc/ntp4/html/drivers/driver43.html
#usr/share/doc/ntp4/html/drivers/driver44.html
#usr/share/doc/ntp4/html/drivers/driver45.html
#usr/share/doc/ntp4/html/drivers/driver46.html
#usr/share/doc/ntp4/html/drivers/driver5.html
#usr/share/doc/ntp4/html/drivers/driver6.html
#usr/share/doc/ntp4/html/drivers/driver7.html
#usr/share/doc/ntp4/html/drivers/driver8.html
#usr/share/doc/ntp4/html/drivers/driver9.html
#usr/share/doc/ntp4/html/drivers/icons
#usr/share/doc/ntp4/html/drivers/icons/home.gif
#usr/share/doc/ntp4/html/drivers/icons/mail2.gif
#usr/share/doc/ntp4/html/drivers/mx4200data.html
#usr/share/doc/ntp4/html/drivers/oncore-shmem.html
#usr/share/doc/ntp4/html/drivers/scripts
#usr/share/doc/ntp4/html/drivers/scripts/footer.txt
#usr/share/doc/ntp4/html/drivers/scripts/style.css
#usr/share/doc/ntp4/html/drivers/tf582_4.html
#usr/share/doc/ntp4/html/extern.html
#usr/share/doc/ntp4/html/filter.html
#usr/share/doc/ntp4/html/hints
#usr/share/doc/ntp4/html/hints.html
#usr/share/doc/ntp4/html/hints/a-ux
#usr/share/doc/ntp4/html/hints/aix
#usr/share/doc/ntp4/html/hints/bsdi
#usr/share/doc/ntp4/html/hints/changes
#usr/share/doc/ntp4/html/hints/decosf1
#usr/share/doc/ntp4/html/hints/decosf2
#usr/share/doc/ntp4/html/hints/freebsd
#usr/share/doc/ntp4/html/hints/hpux
#usr/share/doc/ntp4/html/hints/linux
#usr/share/doc/ntp4/html/hints/mpeix
#usr/share/doc/ntp4/html/hints/notes-xntp-v3
#usr/share/doc/ntp4/html/hints/parse
#usr/share/doc/ntp4/html/hints/refclocks
#usr/share/doc/ntp4/html/hints/rs6000
#usr/share/doc/ntp4/html/hints/sco.html
#usr/share/doc/ntp4/html/hints/sgi
#usr/share/doc/ntp4/html/hints/solaris-dosynctodr.html
#usr/share/doc/ntp4/html/hints/solaris.html
#usr/share/doc/ntp4/html/hints/solaris.xtra.4023118
#usr/share/doc/ntp4/html/hints/solaris.xtra.4095849
#usr/share/doc/ntp4/html/hints/solaris.xtra.S99ntpd
#usr/share/doc/ntp4/html/hints/solaris.xtra.patchfreq
#usr/share/doc/ntp4/html/hints/sun4
#usr/share/doc/ntp4/html/hints/svr4-dell
#usr/share/doc/ntp4/html/hints/svr4_package
#usr/share/doc/ntp4/html/hints/todo
#usr/share/doc/ntp4/html/hints/vxworks.html
#usr/share/doc/ntp4/html/hints/winnt.html
#usr/share/doc/ntp4/html/history.html
#usr/share/doc/ntp4/html/howto.html
#usr/share/doc/ntp4/html/huffpuff.html
#usr/share/doc/ntp4/html/icons
#usr/share/doc/ntp4/html/icons/home.gif
#usr/share/doc/ntp4/html/icons/mail2.gif
#usr/share/doc/ntp4/html/icons/sitemap.png
#usr/share/doc/ntp4/html/index.html
#usr/share/doc/ntp4/html/kern.html
#usr/share/doc/ntp4/html/kernpps.html
#usr/share/doc/ntp4/html/keygen.html
#usr/share/doc/ntp4/html/leap.html
#usr/share/doc/ntp4/html/miscopt.html
#usr/share/doc/ntp4/html/monopt.html
#usr/share/doc/ntp4/html/msyslog.html
#usr/share/doc/ntp4/html/ntp-wait.html
#usr/share/doc/ntp4/html/ntp_conf.html
#usr/share/doc/ntp4/html/ntpd.html
#usr/share/doc/ntp4/html/ntpdate.html
#usr/share/doc/ntp4/html/ntpdc.html
#usr/share/doc/ntp4/html/ntpdsim.html
#usr/share/doc/ntp4/html/ntpdsim_new.html
#usr/share/doc/ntp4/html/ntpq.html
#usr/share/doc/ntp4/html/ntptime.html
#usr/share/doc/ntp4/html/ntptrace.html
#usr/share/doc/ntp4/html/orphan.html
#usr/share/doc/ntp4/html/parsedata.html
#usr/share/doc/ntp4/html/parsenew.html
#usr/share/doc/ntp4/html/pic
#usr/share/doc/ntp4/html/pic/9400n.jpg
#usr/share/doc/ntp4/html/pic/alice11.gif
#usr/share/doc/ntp4/html/pic/alice13.gif
#usr/share/doc/ntp4/html/pic/alice15.gif
#usr/share/doc/ntp4/html/pic/alice23.gif
#usr/share/doc/ntp4/html/pic/alice31.gif
#usr/share/doc/ntp4/html/pic/alice32.gif
#usr/share/doc/ntp4/html/pic/alice35.gif
#usr/share/doc/ntp4/html/pic/alice38.gif
#usr/share/doc/ntp4/html/pic/alice44.gif
#usr/share/doc/ntp4/html/pic/alice47.gif
#usr/share/doc/ntp4/html/pic/alice51.gif
#usr/share/doc/ntp4/html/pic/alice61.gif
#usr/share/doc/ntp4/html/pic/barnstable.gif
#usr/share/doc/ntp4/html/pic/beaver.gif
#usr/share/doc/ntp4/html/pic/boom3.gif
#usr/share/doc/ntp4/html/pic/boom3a.gif
#usr/share/doc/ntp4/html/pic/boom4.gif
#usr/share/doc/ntp4/html/pic/broad.gif
#usr/share/doc/ntp4/html/pic/bustardfly.gif
#usr/share/doc/ntp4/html/pic/c51.jpg
#usr/share/doc/ntp4/html/pic/description.jpg
#usr/share/doc/ntp4/html/pic/discipline.gif
#usr/share/doc/ntp4/html/pic/dogsnake.gif
#usr/share/doc/ntp4/html/pic/driver29.gif
#usr/share/doc/ntp4/html/pic/driver43_1.gif
#usr/share/doc/ntp4/html/pic/driver43_2.jpg
#usr/share/doc/ntp4/html/pic/fg6021.gif
#usr/share/doc/ntp4/html/pic/fg6039.jpg
#usr/share/doc/ntp4/html/pic/fig_3_1.gif
#usr/share/doc/ntp4/html/pic/flatheads.gif
#usr/share/doc/ntp4/html/pic/flt1.gif
#usr/share/doc/ntp4/html/pic/flt2.gif
#usr/share/doc/ntp4/html/pic/flt3.gif
#usr/share/doc/ntp4/html/pic/flt4.gif
#usr/share/doc/ntp4/html/pic/flt5.gif
#usr/share/doc/ntp4/html/pic/flt6.gif
#usr/share/doc/ntp4/html/pic/flt7.gif
#usr/share/doc/ntp4/html/pic/flt8.gif
#usr/share/doc/ntp4/html/pic/flt9.gif
#usr/share/doc/ntp4/html/pic/freq1211.gif
#usr/share/doc/ntp4/html/pic/gadget.jpg
#usr/share/doc/ntp4/html/pic/gps167.jpg
#usr/share/doc/ntp4/html/pic/group.gif
#usr/share/doc/ntp4/html/pic/hornraba.gif
#usr/share/doc/ntp4/html/pic/igclock.gif
#usr/share/doc/ntp4/html/pic/neoclock4x.gif
#usr/share/doc/ntp4/html/pic/offset1211.gif
#usr/share/doc/ntp4/html/pic/oncore_evalbig.gif
#usr/share/doc/ntp4/html/pic/oncore_remoteant.jpg
#usr/share/doc/ntp4/html/pic/oncore_utplusbig.gif
#usr/share/doc/ntp4/html/pic/oz2.gif
#usr/share/doc/ntp4/html/pic/panda.gif
#usr/share/doc/ntp4/html/pic/pd_om006.gif
#usr/share/doc/ntp4/html/pic/pd_om011.gif
#usr/share/doc/ntp4/html/pic/peer.gif
#usr/share/doc/ntp4/html/pic/pogo.gif
#usr/share/doc/ntp4/html/pic/pogo1a.gif
#usr/share/doc/ntp4/html/pic/pogo3a.gif
#usr/share/doc/ntp4/html/pic/pogo4.gif
#usr/share/doc/ntp4/html/pic/pogo5.gif
#usr/share/doc/ntp4/html/pic/pogo6.gif
#usr/share/doc/ntp4/html/pic/pogo7.gif
#usr/share/doc/ntp4/html/pic/pogo8.gif
#usr/share/doc/ntp4/html/pic/pzf509.jpg
#usr/share/doc/ntp4/html/pic/pzf511.jpg
#usr/share/doc/ntp4/html/pic/rabbit.gif
#usr/share/doc/ntp4/html/pic/radio2.jpg
#usr/share/doc/ntp4/html/pic/sheepb.jpg
#usr/share/doc/ntp4/html/pic/stack1a.jpg
#usr/share/doc/ntp4/html/pic/stats.gif
#usr/share/doc/ntp4/html/pic/sx5.gif
#usr/share/doc/ntp4/html/pic/thunderbolt.jpg
#usr/share/doc/ntp4/html/pic/time1.gif
#usr/share/doc/ntp4/html/pic/tonea.gif
#usr/share/doc/ntp4/html/pic/tribeb.gif
#usr/share/doc/ntp4/html/pic/wingdorothy.gif
#usr/share/doc/ntp4/html/poll.html
#usr/share/doc/ntp4/html/pps.html
#usr/share/doc/ntp4/html/prefer.html
#usr/share/doc/ntp4/html/quick.html
#usr/share/doc/ntp4/html/rate.html
#usr/share/doc/ntp4/html/rdebug.html
#usr/share/doc/ntp4/html/refclock.html
#usr/share/doc/ntp4/html/release.html
#usr/share/doc/ntp4/html/scripts
#usr/share/doc/ntp4/html/scripts/accopt.txt
#usr/share/doc/ntp4/html/scripts/audio.txt
#usr/share/doc/ntp4/html/scripts/authopt.txt
#usr/share/doc/ntp4/html/scripts/clockopt.txt
#usr/share/doc/ntp4/html/scripts/command.txt
#usr/share/doc/ntp4/html/scripts/config.txt
#usr/share/doc/ntp4/html/scripts/confopt.txt
#usr/share/doc/ntp4/html/scripts/external.txt
#usr/share/doc/ntp4/html/scripts/footer.txt
#usr/share/doc/ntp4/html/scripts/hand.txt
#usr/share/doc/ntp4/html/scripts/install.txt
#usr/share/doc/ntp4/html/scripts/manual.txt
#usr/share/doc/ntp4/html/scripts/misc.txt
#usr/share/doc/ntp4/html/scripts/miscopt.txt
#usr/share/doc/ntp4/html/scripts/monopt.txt
#usr/share/doc/ntp4/html/scripts/refclock.txt
#usr/share/doc/ntp4/html/scripts/special.txt
#usr/share/doc/ntp4/html/scripts/style.css
#usr/share/doc/ntp4/html/select.html
#usr/share/doc/ntp4/html/sitemap.html
#usr/share/doc/ntp4/html/sntp.html
#usr/share/doc/ntp4/html/stats.html
#usr/share/doc/ntp4/html/tickadj.html
#usr/share/doc/ntp4/html/warp.html
#usr/share/doc/ntp4/html/xleave.html
#usr/share/doc/ntp4/ntp-keygen.html
#usr/share/doc/ntp4/ntp-wait.html
#usr/share/doc/ntp4/ntp.conf.html
#usr/share/doc/ntp4/ntp.keys.html
#usr/share/doc/ntp4/ntpd.html
#usr/share/doc/ntp4/ntpdc.html
#usr/share/doc/ntp4/ntpq.html
#usr/share/doc/ntp4/ntpsnmpd.html
#usr/share/doc/ntp4/ntpsweep.html
#usr/share/doc/ntp4/ntptrace.html
#usr/share/doc/sntp
#usr/share/doc/sntp/sntp.html
#usr/share/man/man1/calc_tickadj.1
#usr/share/man/man1/ntp-keygen.1
#usr/share/man/man1/ntp-wait.1
#usr/share/man/man1/ntpd.1
#usr/share/man/man1/ntpdc.1
#usr/share/man/man1/ntpq.1
#usr/share/man/man1/ntptrace.1
#usr/share/man/man1/sntp.1
#usr/share/man/man5/ntp.conf.5
#usr/share/man/man5/ntp.keys.5
#usr/share/ntp
#usr/share/ntp/lib
#usr/share/ntp/lib/NTP
#usr/share/ntp/lib/NTP/Util.pm
var/ipfire/time/counter.conf
var/ipfire/time/enable
var/ipfire/time/settime.conf
var/ipfire/time/settings

View File

@@ -0,0 +1 @@
../../../common/openssl

View File

@@ -0,0 +1 @@
../../../common/openssl-compat

View File

@@ -0,0 +1,202 @@
lib/firmware/amd-ucode/microcode_amd_fam15h.bin
lib/firmware/amd-ucode/microcode_amd_fam15h.bin.asc
lib/firmware/amd-ucode/microcode_amd_fam16h.bin
lib/firmware/amd-ucode/microcode_amd_fam16h.bin.asc
lib/firmware/as102_data1_st.hex
lib/firmware/as102_data2_st.hex
lib/firmware/bnx2x/bnx2x-e1-7.10.51.0.fw
lib/firmware/bnx2x/bnx2x-e1-7.8.19.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.10.51.0.fw
lib/firmware/bnx2x/bnx2x-e1h-7.8.19.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.10.51.0.fw
lib/firmware/bnx2x/bnx2x-e2-7.8.19.0.fw
lib/firmware/brcm/brcmfmac43143.bin
lib/firmware/brcm/brcmfmac43143-sdio.bin
lib/firmware/brcm/brcmfmac43362-sdio.bin
lib/firmware/brcm/brcmfmac4354-sdio.bin
lib/firmware/cmmb_vega_12mhz.inp
lib/firmware/cmmb_venice_12mhz.inp
lib/firmware/cxgb4/t4fw-1.12.25.0.bin
lib/firmware/cxgb4/t4fw.bin
lib/firmware/cxgb4/t5fw-1.12.25.0.bin
lib/firmware/cxgb4/t5fw.bin
lib/firmware/dvb-fe-drxj-mc-1.0.8.fw
lib/firmware/dvb-fe-drxj-mc-vsb-1.0.8.fw
lib/firmware/dvb-fe-drxj-mc-vsb-qam-1.0.8.fw
lib/firmware/dvb-fe-xc4000-1.4.1.fw
lib/firmware/dvb-fe-xc5000c-4.1.30.7.fw
lib/firmware/dvb_nova_12mhz_b0.inp
lib/firmware/dvb_nova_12mhz.inp
lib/firmware/dvb-usb-it9135-01.fw
lib/firmware/dvb-usb-it9135-02.fw
lib/firmware/emi62/bitstream.fw
lib/firmware/intel/fw_sst_0f28.bin
lib/firmware/intel/fw_sst_0f28.bin-48kHz_i2s_master
lib/firmware/intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq
lib/firmware/intel/ibt-hw-37.7.10-fw-1.0.2.3.d.bseq
lib/firmware/intel/ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq
lib/firmware/intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
lib/firmware/intel/ibt-hw-37.8.10-fw-1.10.2.27.d.bseq
lib/firmware/intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
lib/firmware/intel/ibt-hw-37.8.bseq
lib/firmware/intel/IntcSST2.bin
lib/firmware/isdbt_nova_12mhz_b0.inp
lib/firmware/isdbt_nova_12mhz.inp
lib/firmware/isdbt_rio.inp
lib/firmware/iwlwifi-3160-10.ucode
lib/firmware/iwlwifi-3160-8.ucode
lib/firmware/iwlwifi-3160-9.ucode
lib/firmware/iwlwifi-7260-10.ucode
lib/firmware/iwlwifi-7260-8.ucode
lib/firmware/iwlwifi-7260-9.ucode
lib/firmware/iwlwifi-7265-10.ucode
lib/firmware/iwlwifi-7265-8.ucode
lib/firmware/iwlwifi-7265-9.ucode
lib/firmware/iwlwifi-7265D-10.ucode
lib/firmware/LICENCE.Abilis
lib/firmware/LICENCE.chelsio_firmware
lib/firmware/LICENCE.fw_sst_0f28
lib/firmware/LICENCE.ibt_firmware
lib/firmware/LICENCE.IntcSST2
lib/firmware/LICENCE.it913x
lib/firmware/LICENCE.iwlwifi_firmware
lib/firmware/LICENCE.qat_dh895xcc_firmware
lib/firmware/LICENCE.r8a779x_usb3
lib/firmware/LICENCE.siano
lib/firmware/LICENCE.xc4000
lib/firmware/LICENCE.xc5000c
lib/firmware/LICENSE.amd-ucode
lib/firmware/LICENSE.radeon
lib/firmware/myri10ge_eth_big_z8e.dat
lib/firmware/myri10ge_ethp_big_z8e.dat
lib/firmware/myri10ge_ethp_z8e.dat
lib/firmware/myri10ge_eth_z8e.dat
lib/firmware/myri10ge_rss_eth_big_z8e.dat
lib/firmware/myri10ge_rss_ethp_big_z8e.dat
lib/firmware/myri10ge_rss_ethp_z8e.dat
lib/firmware/myri10ge_rss_eth_z8e.dat
lib/firmware/qat_895xcc.bin
lib/firmware/ql2400_fw.bin
lib/firmware/ql2500_fw.bin
lib/firmware/r8a779x_usb3_v1.dlmem
lib/firmware/radeon/bonaire_ce.bin
lib/firmware/radeon/BONAIRE_mc2.bin
lib/firmware/radeon/bonaire_mc.bin
lib/firmware/radeon/bonaire_me.bin
lib/firmware/radeon/bonaire_mec.bin
lib/firmware/radeon/bonaire_pfp.bin
lib/firmware/radeon/bonaire_rlc.bin
lib/firmware/radeon/bonaire_sdma.bin
lib/firmware/radeon/bonaire_smc.bin
lib/firmware/radeon/BONAIRE_vce.bin
lib/firmware/radeon/hainan_ce.bin
lib/firmware/radeon/HAINAN_mc2.bin
lib/firmware/radeon/hainan_mc.bin
lib/firmware/radeon/hainan_me.bin
lib/firmware/radeon/hainan_pfp.bin
lib/firmware/radeon/hainan_rlc.bin
lib/firmware/radeon/hainan_smc.bin
lib/firmware/radeon/hawaii_ce.bin
lib/firmware/radeon/HAWAII_ce.bin
lib/firmware/radeon/HAWAII_mc2.bin
lib/firmware/radeon/hawaii_mc.bin
lib/firmware/radeon/HAWAII_mc.bin
lib/firmware/radeon/hawaii_me.bin
lib/firmware/radeon/HAWAII_me.bin
lib/firmware/radeon/hawaii_mec.bin
lib/firmware/radeon/HAWAII_mec.bin
lib/firmware/radeon/hawaii_pfp.bin
lib/firmware/radeon/HAWAII_pfp.bin
lib/firmware/radeon/hawaii_rlc.bin
lib/firmware/radeon/HAWAII_rlc.bin
lib/firmware/radeon/hawaii_sdma.bin
lib/firmware/radeon/HAWAII_sdma.bin
lib/firmware/radeon/hawaii_smc.bin
lib/firmware/radeon/HAWAII_smc.bin
lib/firmware/radeon/kabini_ce.bin
lib/firmware/radeon/kabini_me.bin
lib/firmware/radeon/kabini_mec.bin
lib/firmware/radeon/kabini_pfp.bin
lib/firmware/radeon/kabini_rlc.bin
lib/firmware/radeon/kabini_sdma.bin
lib/firmware/radeon/kaveri_ce.bin
lib/firmware/radeon/kaveri_me.bin
lib/firmware/radeon/kaveri_mec2.bin
lib/firmware/radeon/kaveri_mec.bin
lib/firmware/radeon/kaveri_pfp.bin
lib/firmware/radeon/kaveri_rlc.bin
lib/firmware/radeon/kaveri_sdma.bin
lib/firmware/radeon/mullins_ce.bin
lib/firmware/radeon/MULLINS_ce.bin
lib/firmware/radeon/mullins_me.bin
lib/firmware/radeon/MULLINS_me.bin
lib/firmware/radeon/mullins_mec.bin
lib/firmware/radeon/MULLINS_mec.bin
lib/firmware/radeon/mullins_pfp.bin
lib/firmware/radeon/MULLINS_pfp.bin
lib/firmware/radeon/mullins_rlc.bin
lib/firmware/radeon/MULLINS_rlc.bin
lib/firmware/radeon/mullins_sdma.bin
lib/firmware/radeon/MULLINS_sdma.bin
lib/firmware/radeon/oland_ce.bin
lib/firmware/radeon/OLAND_mc2.bin
lib/firmware/radeon/oland_mc.bin
lib/firmware/radeon/oland_me.bin
lib/firmware/radeon/oland_pfp.bin
lib/firmware/radeon/oland_rlc.bin
lib/firmware/radeon/oland_smc.bin
lib/firmware/radeon/pitcairn_ce.bin
lib/firmware/radeon/PITCAIRN_mc2.bin
lib/firmware/radeon/pitcairn_mc.bin
lib/firmware/radeon/pitcairn_me.bin
lib/firmware/radeon/pitcairn_pfp.bin
lib/firmware/radeon/pitcairn_rlc.bin
lib/firmware/radeon/pitcairn_smc.bin
lib/firmware/radeon/R600_uvd.bin
lib/firmware/radeon/RS780_uvd.bin
lib/firmware/radeon/RV770_uvd.bin
lib/firmware/radeon/tahiti_ce.bin
lib/firmware/radeon/TAHITI_mc2.bin
lib/firmware/radeon/tahiti_mc.bin
lib/firmware/radeon/tahiti_me.bin
lib/firmware/radeon/tahiti_pfp.bin
lib/firmware/radeon/tahiti_rlc.bin
lib/firmware/radeon/tahiti_smc.bin
lib/firmware/radeon/verde_ce.bin
lib/firmware/radeon/VERDE_mc2.bin
lib/firmware/radeon/verde_mc.bin
lib/firmware/radeon/verde_me.bin
lib/firmware/radeon/verde_pfp.bin
lib/firmware/radeon/verde_rlc.bin
lib/firmware/radeon/verde_smc.bin
lib/firmware/README
lib/firmware/rsi_91x.fw
lib/firmware/rtl_nic/rtl8107e-1.fw
lib/firmware/rtl_nic/rtl8107e-2.fw
lib/firmware/rtl_nic/rtl8168h-1.fw
lib/firmware/rtl_nic/rtl8168h-2.fw
lib/firmware/rtlwifi/rtl8192cfw.bin
lib/firmware/rtlwifi/rtl8192cfwU_B.bin
lib/firmware/rtlwifi/rtl8192defw.bin
lib/firmware/rtlwifi/rtl8192eefw.bin
lib/firmware/rtlwifi/rtl8723aufw_A.bin
lib/firmware/rtlwifi/rtl8723aufw_B.bin
lib/firmware/rtlwifi/rtl8723aufw_B_NoBT.bin
lib/firmware/rtlwifi/rtl8723befw.bin
lib/firmware/rtlwifi/rtl8821aefw.bin
lib/firmware/rtlwifi/rtl8821aefw_wowlan.bin
lib/firmware/s5p-mfc.fw
lib/firmware/s5p-mfc-v6.fw
lib/firmware/s5p-mfc-v6-v2.fw
lib/firmware/s5p-mfc-v7.fw
lib/firmware/s5p-mfc-v8.fw
lib/firmware/sms1xxx-hcw-55xxx-dvbt-02.fw
lib/firmware/sms1xxx-hcw-55xxx-isdbt-02.fw
lib/firmware/sms1xxx-nova-a-dvbt-01.fw
lib/firmware/sms1xxx-nova-b-dvbt-01.fw
lib/firmware/sms1xxx-stellar-dvbt-01.fw
lib/firmware/tdmb_nova_12mhz.inp
lib/firmware/ti-connectivity/wl18xx-fw-3.bin
lib/firmware/ti-connectivity/wl18xx-fw-4.bin
lib/firmware/v4l-cx23885-enc-broken.fw
lib/firmware/WHENCE

View File

@@ -0,0 +1 @@
../../../common/wireless-regdb

View File

@@ -0,0 +1 @@
../../../common/wpa_supplicant

View File

@@ -100,6 +100,7 @@ echo Update Kernel to $KVER ...
rm -rf /boot/System.map-*
rm -rf /boot/config-*
rm -rf /boot/ipfirerd-*
rm -rf /boot/initramfs-*
rm -rf /boot/vmlinuz-*
rm -rf /boot/uImage-ipfire-*
rm -rf /boot/uInit-ipfire-*
@@ -125,6 +126,10 @@ esac
#Extract files
tar xavf /opt/pakfire/tmp/files* --no-overwrite-dir -p --numeric-owner -C /
#
#restart init because glibc was updated.
telinit u
# Check diskspace on boot
BOOTSPACE=`df /boot -Pk | sed "s| * | |g" | cut -d" " -f4 | tail -n 1`
@@ -175,16 +180,10 @@ case "$(uname -m)" in
echo "GRUB_TERMINAL=\"serial\"" >> /etc/default/grub
echo "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=115200\"" >> /etc/default/grub
fi
grub-mkconfig -o /boot/grub/grub.cfg
ROOT=$(mount | grep " / " | cut -d" " -f1)
ROOT=${ROOT::-1}
if ! grub-install --no-floppy --recheck "${ROOT}"; then
if ! grub-install --no-floppy --recheck --force "${ROOT}"; then
logger -p syslog.emerg -t ipfire \
"Could not update the bootloader!"
fi
if ! /usr/local/bin/update-bootloader; then
logger -p syslog.emerg -t ipfire \
"Could not update the bootloader!"
fi
;;
esac

View File

@@ -1,63 +1,79 @@
var/ipfire/lynis-1.2.9
var/ipfire/lynis-1.2.9/db
var/ipfire/lynis-1.2.9/db/fileperms.db
var/ipfire/lynis-1.2.9/db/hints.db
var/ipfire/lynis-1.2.9/db/integrity.db
var/ipfire/lynis-1.2.9/db/malware-susp.db
var/ipfire/lynis-1.2.9/db/malware.db
var/ipfire/lynis-1.2.9/db/sbl.db
var/ipfire/lynis-1.2.9/default.prf
var/ipfire/lynis-1.2.9/include
var/ipfire/lynis-1.2.9/include/binaries
var/ipfire/lynis-1.2.9/include/consts
var/ipfire/lynis-1.2.9/include/functions
var/ipfire/lynis-1.2.9/include/osdetection
var/ipfire/lynis-1.2.9/include/parameters
var/ipfire/lynis-1.2.9/include/profiles
var/ipfire/lynis-1.2.9/include/report
var/ipfire/lynis-1.2.9/include/tests_accounting
var/ipfire/lynis-1.2.9/include/tests_authentication
var/ipfire/lynis-1.2.9/include/tests_banners
var/ipfire/lynis-1.2.9/include/tests_boot_services
var/ipfire/lynis-1.2.9/include/tests_crypto
var/ipfire/lynis-1.2.9/include/tests_databases
var/ipfire/lynis-1.2.9/include/tests_file_integrity
var/ipfire/lynis-1.2.9/include/tests_file_permissions
var/ipfire/lynis-1.2.9/include/tests_filesystems
var/ipfire/lynis-1.2.9/include/tests_firewalls
var/ipfire/lynis-1.2.9/include/tests_hardening
var/ipfire/lynis-1.2.9/include/tests_hardening_tools
var/ipfire/lynis-1.2.9/include/tests_homedirs
var/ipfire/lynis-1.2.9/include/tests_insecure_services
var/ipfire/lynis-1.2.9/include/tests_kernel
var/ipfire/lynis-1.2.9/include/tests_kernel_hardening
var/ipfire/lynis-1.2.9/include/tests_ldap
var/ipfire/lynis-1.2.9/include/tests_logging
var/ipfire/lynis-1.2.9/include/tests_mac_frameworks
var/ipfire/lynis-1.2.9/include/tests_mail_messaging
var/ipfire/lynis-1.2.9/include/tests_malware
var/ipfire/lynis-1.2.9/include/tests_memory_processes
var/ipfire/lynis-1.2.9/include/tests_nameservices
var/ipfire/lynis-1.2.9/include/tests_networking
var/ipfire/lynis-1.2.9/include/tests_php
var/ipfire/lynis-1.2.9/include/tests_ports_packages
var/ipfire/lynis-1.2.9/include/tests_printers_spools
var/ipfire/lynis-1.2.9/include/tests_scheduling
var/ipfire/lynis-1.2.9/include/tests_shells
var/ipfire/lynis-1.2.9/include/tests_snmp
var/ipfire/lynis-1.2.9/include/tests_solaris
var/ipfire/lynis-1.2.9/include/tests_squid
var/ipfire/lynis-1.2.9/include/tests_ssh
var/ipfire/lynis-1.2.9/include/tests_storage
var/ipfire/lynis-1.2.9/include/tests_storage_nfs
var/ipfire/lynis-1.2.9/include/tests_time
var/ipfire/lynis-1.2.9/include/tests_virtualization
var/ipfire/lynis-1.2.9/include/tests_webservers
var/ipfire/lynis-1.2.9/lynis
var/ipfire/lynis-1.2.9/lynis.8
var/ipfire/lynis-1.2.9/plugins
var/ipfire/lynis-1.2.9/plugins/README
var/ipfire/lynis-1.2.9/plugins/plugin_access_files
var/ipfire/lynis-1.2.9/plugins/plugin_compliance_pci
var/ipfire/lynis-1.2.9/plugins/plugin_homedirs
var/ipfire/lynis-1.2.9/plugins/plugin_webserver_data
var/ipfire/lynis
#var/ipfire/lynis/CONTRIBUTORS
#var/ipfire/lynis/db
var/ipfire/lynis/db/fileperms.db
var/ipfire/lynis/db/hints.db
var/ipfire/lynis/db/integrity.db
var/ipfire/lynis/db/malware-susp.db
var/ipfire/lynis/db/malware.db
var/ipfire/lynis/db/sbl.db
var/ipfire/lynis/default.prf
#var/ipfire/lynis/extras
var/ipfire/lynis/extras/.bzrignore
#var/ipfire/lynis/extras/README
#var/ipfire/lynis/extras/bash_completion.d
var/ipfire/lynis/extras/bash_completion.d/lynis
var/ipfire/lynis/extras/build-lynis.sh
var/ipfire/lynis/extras/check-lynis.sh
var/ipfire/lynis/extras/files.dat
var/ipfire/lynis/extras/lynis.spec
#var/ipfire/lynis/extras/openbsd
#var/ipfire/lynis/extras/openbsd/+CONTENTS
#var/ipfire/lynis/extras/systemd
#var/ipfire/lynis/extras/systemd/lynis.service
#var/ipfire/lynis/extras/systemd/lynis.timer
#var/ipfire/lynis/include
var/ipfire/lynis/include/binaries
var/ipfire/lynis/include/consts
var/ipfire/lynis/include/data_upload
var/ipfire/lynis/include/functions
var/ipfire/lynis/include/osdetection
var/ipfire/lynis/include/parameters
var/ipfire/lynis/include/profiles
var/ipfire/lynis/include/report
var/ipfire/lynis/include/tests_accounting
var/ipfire/lynis/include/tests_authentication
var/ipfire/lynis/include/tests_banners
var/ipfire/lynis/include/tests_boot_services
var/ipfire/lynis/include/tests_crypto
var/ipfire/lynis/include/tests_custom.template
var/ipfire/lynis/include/tests_databases
var/ipfire/lynis/include/tests_file_integrity
var/ipfire/lynis/include/tests_file_permissions
var/ipfire/lynis/include/tests_filesystems
var/ipfire/lynis/include/tests_firewalls
var/ipfire/lynis/include/tests_hardening
var/ipfire/lynis/include/tests_hardening_tools
var/ipfire/lynis/include/tests_homedirs
var/ipfire/lynis/include/tests_insecure_services
var/ipfire/lynis/include/tests_kernel
var/ipfire/lynis/include/tests_kernel_hardening
var/ipfire/lynis/include/tests_ldap
var/ipfire/lynis/include/tests_logging
var/ipfire/lynis/include/tests_mac_frameworks
var/ipfire/lynis/include/tests_mail_messaging
var/ipfire/lynis/include/tests_malware
var/ipfire/lynis/include/tests_memory_processes
var/ipfire/lynis/include/tests_nameservices
var/ipfire/lynis/include/tests_networking
var/ipfire/lynis/include/tests_php
var/ipfire/lynis/include/tests_ports_packages
var/ipfire/lynis/include/tests_printers_spools
var/ipfire/lynis/include/tests_scheduling
var/ipfire/lynis/include/tests_shells
var/ipfire/lynis/include/tests_snmp
#var/ipfire/lynis/include/tests_solaris
var/ipfire/lynis/include/tests_squid
var/ipfire/lynis/include/tests_ssh
var/ipfire/lynis/include/tests_storage
var/ipfire/lynis/include/tests_storage_nfs
var/ipfire/lynis/include/tests_tcpwrappers
var/ipfire/lynis/include/tests_time
var/ipfire/lynis/include/tests_tooling
var/ipfire/lynis/include/tests_virtualization
var/ipfire/lynis/include/tests_webservers
var/ipfire/lynis/lynis
var/ipfire/lynis/lynis.8
#var/ipfire/lynis/plugins
var/ipfire/lynis/plugins/README
var/ipfire/lynis/plugins/custom_plugin.template

View File

@@ -0,0 +1,8 @@
etc/monitrc
usr/bin/monit
#usr/share/man/man1/monit.1
var/ipfire/backup/addons/includes/monit
etc/rc.d/init.d/monit
etc/rc.d/rc0.d/K40monit
etc/rc.d/rc3.d/S60monit
etc/rc.d/rc6.d/K40monit

View File

@@ -2,6 +2,8 @@ usr/bin/ncat
usr/bin/ndiff
usr/bin/nmap
usr/bin/nping
usr/lib/python2.7/site-packages/ndiff.py
usr/lib/python2.7/site-packages/ndiff.pyc
#usr/share/man/de/man1/nmap.1
#usr/share/man/es/man1/nmap.1
#usr/share/man/fr/man1/nmap.1
@@ -12,9 +14,7 @@ usr/bin/nping
#usr/share/man/hu/man1
#usr/share/man/hu/man1/nmap.1
#usr/share/man/it/man1/nmap.1
#usr/share/man/jp
#usr/share/man/jp/man1
#usr/share/man/jp/man1/nmap.1
#usr/share/man/ja/man1/nmap.1
#usr/share/man/man1/ncat.1
#usr/share/man/man1/ndiff.1
#usr/share/man/man1/nmap.1
@@ -41,7 +41,7 @@ usr/bin/nping
#usr/share/man/zh/man1
#usr/share/man/zh/man1/nmap.1
#usr/share/ncat
usr/share/ncat/ca-bundle.crt
#usr/share/ncat/ca-bundle.crt
#usr/share/nmap
usr/share/nmap/nmap-mac-prefixes
usr/share/nmap/nmap-os-db
@@ -53,30 +53,50 @@ usr/share/nmap/nmap-services
usr/share/nmap/nmap.dtd
usr/share/nmap/nmap.xsl
usr/share/nmap/nse_main.lua
#usr/share/nmap/nselib
usr/share/nmap/nselib
usr/share/nmap/nselib/afp.lua
usr/share/nmap/nselib/ajp.lua
usr/share/nmap/nselib/amqp.lua
usr/share/nmap/nselib/asn1.lua
usr/share/nmap/nselib/base32.lua
usr/share/nmap/nselib/base64.lua
usr/share/nmap/nselib/bin.luadoc
usr/share/nmap/nselib/bit.luadoc
usr/share/nmap/nselib/bitcoin.lua
usr/share/nmap/nselib/bittorrent.lua
usr/share/nmap/nselib/bjnp.lua
usr/share/nmap/nselib/brute.lua
usr/share/nmap/nselib/cassandra.lua
usr/share/nmap/nselib/citrixxml.lua
usr/share/nmap/nselib/comm.lua
usr/share/nmap/nselib/creds.lua
usr/share/nmap/nselib/cvs.lua
#usr/share/nmap/nselib/data
usr/share/nmap/nselib/data
usr/share/nmap/nselib/data/dns-srv-names
usr/share/nmap/nselib/data/drupal-modules.lst
usr/share/nmap/nselib/data/favicon-db
usr/share/nmap/nselib/data/http-default-accounts-fingerprints.lua
usr/share/nmap/nselib/data/http-devframework-fingerprints.lua
usr/share/nmap/nselib/data/http-fingerprints.lua
usr/share/nmap/nselib/data/http-folders.txt
usr/share/nmap/nselib/data/http-sql-errors.lst
usr/share/nmap/nselib/data/http-web-files-extensions.lst
usr/share/nmap/nselib/data/ike-fingerprints.lua
#usr/share/nmap/nselib/data/jdwp-class
#usr/share/nmap/nselib/data/jdwp-class/JDWPExecCmd.class
#usr/share/nmap/nselib/data/jdwp-class/JDWPExecCmd.java
#usr/share/nmap/nselib/data/jdwp-class/JDWPSystemInfo.class
#usr/share/nmap/nselib/data/jdwp-class/JDWPSystemInfo.java
#usr/share/nmap/nselib/data/jdwp-class/README.txt
usr/share/nmap/nselib/data/mgroupnames.db
usr/share/nmap/nselib/data/mysql-cis.audit
usr/share/nmap/nselib/data/oracle-default-accounts.lst
usr/share/nmap/nselib/data/oracle-sids
usr/share/nmap/nselib/data/packetdecoders.lua
usr/share/nmap/nselib/data/passwords.lst
#usr/share/nmap/nselib/data/pixel.gif
#usr/share/nmap/nselib/data/psexec
usr/share/nmap/nselib/data/psexec/README
#usr/share/nmap/nselib/data/psexec/README
usr/share/nmap/nselib/data/psexec/backdoor.lua
usr/share/nmap/nselib/data/psexec/default.lua
usr/share/nmap/nselib/data/psexec/drives.lua
@@ -92,6 +112,8 @@ usr/share/nmap/nselib/data/ssl-ciphers
usr/share/nmap/nselib/data/ssl-fingerprints
usr/share/nmap/nselib/data/tftplist.txt
usr/share/nmap/nselib/data/usernames.lst
usr/share/nmap/nselib/data/vhosts-default.lst
usr/share/nmap/nselib/data/vhosts-full.lst
usr/share/nmap/nselib/data/wp-plugins.lst
usr/share/nmap/nselib/datafiles.lua
usr/share/nmap/nselib/dhcp.lua
@@ -101,20 +123,29 @@ usr/share/nmap/nselib/dnsbl.lua
usr/share/nmap/nselib/dnssd.lua
usr/share/nmap/nselib/drda.lua
usr/share/nmap/nselib/eap.lua
usr/share/nmap/nselib/eigrp.lua
usr/share/nmap/nselib/formulas.lua
usr/share/nmap/nselib/ftp.lua
usr/share/nmap/nselib/giop.lua
usr/share/nmap/nselib/gps.lua
usr/share/nmap/nselib/http.lua
usr/share/nmap/nselib/httpspider.lua
usr/share/nmap/nselib/iax2.lua
usr/share/nmap/nselib/ike.lua
usr/share/nmap/nselib/imap.lua
usr/share/nmap/nselib/informix.lua
usr/share/nmap/nselib/ipOps.lua
usr/share/nmap/nselib/ipp.lua
usr/share/nmap/nselib/iscsi.lua
usr/share/nmap/nselib/isns.lua
usr/share/nmap/nselib/jdwp.lua
usr/share/nmap/nselib/json.lua
usr/share/nmap/nselib/ldap.lua
usr/share/nmap/nselib/lfs.luadoc
usr/share/nmap/nselib/listop.lua
usr/share/nmap/nselib/match.lua
usr/share/nmap/nselib/membase.lua
usr/share/nmap/nselib/mobileme.lua
usr/share/nmap/nselib/mongodb.lua
usr/share/nmap/nselib/msrpc.lua
usr/share/nmap/nselib/msrpcperformance.lua
@@ -125,14 +156,19 @@ usr/share/nmap/nselib/natpmp.lua
usr/share/nmap/nselib/ncp.lua
usr/share/nmap/nselib/ndmp.lua
usr/share/nmap/nselib/netbios.lua
usr/share/nmap/nselib/nmap.luadoc
usr/share/nmap/nselib/nrpc.lua
usr/share/nmap/nselib/nsedebug.lua
usr/share/nmap/nselib/omp2.lua
usr/share/nmap/nselib/openssl.luadoc
usr/share/nmap/nselib/ospf.lua
usr/share/nmap/nselib/packet.lua
usr/share/nmap/nselib/pcre.luadoc
usr/share/nmap/nselib/pgsql.lua
usr/share/nmap/nselib/pop3.lua
usr/share/nmap/nselib/pppoe.lua
usr/share/nmap/nselib/proxy.lua
usr/share/nmap/nselib/rdp.lua
usr/share/nmap/nselib/redis.lua
usr/share/nmap/nselib/rmi.lua
usr/share/nmap/nselib/rpc.lua
@@ -158,7 +194,10 @@ usr/share/nmap/nselib/stun.lua
usr/share/nmap/nselib/tab.lua
usr/share/nmap/nselib/target.lua
usr/share/nmap/nselib/tftp.lua
usr/share/nmap/nselib/tls.lua
usr/share/nmap/nselib/tns.lua
usr/share/nmap/nselib/unicode.lua
usr/share/nmap/nselib/unittest.lua
usr/share/nmap/nselib/unpwdb.lua
usr/share/nmap/nselib/upnp.lua
usr/share/nmap/nselib/url.lua
@@ -177,6 +216,12 @@ usr/share/nmap/scripts/afp-ls.nse
usr/share/nmap/scripts/afp-path-vuln.nse
usr/share/nmap/scripts/afp-serverinfo.nse
usr/share/nmap/scripts/afp-showmount.nse
usr/share/nmap/scripts/ajp-auth.nse
usr/share/nmap/scripts/ajp-brute.nse
usr/share/nmap/scripts/ajp-headers.nse
usr/share/nmap/scripts/ajp-methods.nse
usr/share/nmap/scripts/ajp-request.nse
usr/share/nmap/scripts/allseeingeye-info.nse
usr/share/nmap/scripts/amqp-info.nse
usr/share/nmap/scripts/asn-query.nse
usr/share/nmap/scripts/auth-owners.nse
@@ -188,12 +233,17 @@ usr/share/nmap/scripts/bitcoin-getaddr.nse
usr/share/nmap/scripts/bitcoin-info.nse
usr/share/nmap/scripts/bitcoinrpc-info.nse
usr/share/nmap/scripts/bittorrent-discovery.nse
usr/share/nmap/scripts/bjnp-discover.nse
usr/share/nmap/scripts/broadcast-ataoe-discover.nse
usr/share/nmap/scripts/broadcast-avahi-dos.nse
usr/share/nmap/scripts/broadcast-bjnp-discover.nse
usr/share/nmap/scripts/broadcast-db2-discover.nse
usr/share/nmap/scripts/broadcast-dhcp-discover.nse
usr/share/nmap/scripts/broadcast-dhcp6-discover.nse
usr/share/nmap/scripts/broadcast-dns-service-discovery.nse
usr/share/nmap/scripts/broadcast-dropbox-listener.nse
usr/share/nmap/scripts/broadcast-eigrp-discovery.nse
usr/share/nmap/scripts/broadcast-igmp-discovery.nse
usr/share/nmap/scripts/broadcast-listener.nse
usr/share/nmap/scripts/broadcast-ms-sql-discover.nse
usr/share/nmap/scripts/broadcast-netbios-master-browser.nse
@@ -201,17 +251,21 @@ usr/share/nmap/scripts/broadcast-networker-discover.nse
usr/share/nmap/scripts/broadcast-novell-locate.nse
usr/share/nmap/scripts/broadcast-pc-anywhere.nse
usr/share/nmap/scripts/broadcast-pc-duo.nse
usr/share/nmap/scripts/broadcast-pim-discovery.nse
usr/share/nmap/scripts/broadcast-ping.nse
usr/share/nmap/scripts/broadcast-pppoe-discover.nse
usr/share/nmap/scripts/broadcast-rip-discover.nse
usr/share/nmap/scripts/broadcast-ripng-discover.nse
usr/share/nmap/scripts/broadcast-sybase-asa-discover.nse
usr/share/nmap/scripts/broadcast-tellstick-discover.nse
usr/share/nmap/scripts/broadcast-upnp-info.nse
usr/share/nmap/scripts/broadcast-versant-locate.nse
usr/share/nmap/scripts/broadcast-wake-on-lan.nse
usr/share/nmap/scripts/broadcast-wpad-discover.nse
usr/share/nmap/scripts/broadcast-wsdd-discover.nse
usr/share/nmap/scripts/broadcast-xdmcp-discover.nse
usr/share/nmap/scripts/cassandra-brute.nse
usr/share/nmap/scripts/cassandra-info.nse
usr/share/nmap/scripts/cccam-version.nse
usr/share/nmap/scripts/citrix-brute-xml.nse
usr/share/nmap/scripts/citrix-enum-apps-xml.nse
@@ -221,6 +275,8 @@ usr/share/nmap/scripts/citrix-enum-servers.nse
usr/share/nmap/scripts/couchdb-databases.nse
usr/share/nmap/scripts/couchdb-stats.nse
usr/share/nmap/scripts/creds-summary.nse
usr/share/nmap/scripts/cups-info.nse
usr/share/nmap/scripts/cups-queue-info.nse
usr/share/nmap/scripts/cvs-brute-repository.nse
usr/share/nmap/scripts/cvs-brute.nse
usr/share/nmap/scripts/daap-get-library.nse
@@ -228,12 +284,17 @@ usr/share/nmap/scripts/daytime.nse
usr/share/nmap/scripts/db2-das-info.nse
usr/share/nmap/scripts/db2-discover.nse
usr/share/nmap/scripts/dhcp-discover.nse
usr/share/nmap/scripts/dict-info.nse
usr/share/nmap/scripts/distcc-cve2004-2687.nse
usr/share/nmap/scripts/dns-blacklist.nse
usr/share/nmap/scripts/dns-brute.nse
usr/share/nmap/scripts/dns-cache-snoop.nse
usr/share/nmap/scripts/dns-check-zone.nse
usr/share/nmap/scripts/dns-client-subnet-scan.nse
usr/share/nmap/scripts/dns-fuzz.nse
usr/share/nmap/scripts/dns-ip6-arpa-scan.nse
usr/share/nmap/scripts/dns-nsec-enum.nse
usr/share/nmap/scripts/dns-nsec3-enum.nse
usr/share/nmap/scripts/dns-nsid.nse
usr/share/nmap/scripts/dns-random-srcport.nse
usr/share/nmap/scripts/dns-random-txid.nse
@@ -252,8 +313,12 @@ usr/share/nmap/scripts/drda-info.nse
usr/share/nmap/scripts/duplicates.nse
usr/share/nmap/scripts/eap-info.nse
usr/share/nmap/scripts/epmd-info.nse
usr/share/nmap/scripts/eppc-enum-processes.nse
usr/share/nmap/scripts/finger.nse
usr/share/nmap/scripts/firewalk.nse
usr/share/nmap/scripts/firewall-bypass.nse
usr/share/nmap/scripts/flume-master-info.nse
usr/share/nmap/scripts/freelancer-info.nse
usr/share/nmap/scripts/ftp-anon.nse
usr/share/nmap/scripts/ftp-bounce.nse
usr/share/nmap/scripts/ftp-brute.nse
@@ -263,7 +328,9 @@ usr/share/nmap/scripts/ftp-vsftpd-backdoor.nse
usr/share/nmap/scripts/ftp-vuln-cve2010-4221.nse
usr/share/nmap/scripts/ganglia-info.nse
usr/share/nmap/scripts/giop-info.nse
usr/share/nmap/scripts/gkrellm-info.nse
usr/share/nmap/scripts/gopher-ls.nse
usr/share/nmap/scripts/gpsd-info.nse
usr/share/nmap/scripts/hadoop-datanode-info.nse
usr/share/nmap/scripts/hadoop-jobtracker-info.nse
usr/share/nmap/scripts/hadoop-namenode-info.nse
@@ -273,6 +340,9 @@ usr/share/nmap/scripts/hbase-master-info.nse
usr/share/nmap/scripts/hbase-region-info.nse
usr/share/nmap/scripts/hddtemp-info.nse
usr/share/nmap/scripts/hostmap-bfk.nse
usr/share/nmap/scripts/hostmap-ip2hosts.nse
usr/share/nmap/scripts/hostmap-robtex.nse
usr/share/nmap/scripts/http-adobe-coldfusion-apsa1301.nse
usr/share/nmap/scripts/http-affiliate-id.nse
usr/share/nmap/scripts/http-apache-negotiation.nse
usr/share/nmap/scripts/http-auth-finder.nse
@@ -284,19 +354,39 @@ usr/share/nmap/scripts/http-barracuda-dir-traversal.nse
usr/share/nmap/scripts/http-brute.nse
usr/share/nmap/scripts/http-cakephp-version.nse
usr/share/nmap/scripts/http-chrono.nse
usr/share/nmap/scripts/http-coldfusion-subzero.nse
usr/share/nmap/scripts/http-comments-displayer.nse
usr/share/nmap/scripts/http-config-backup.nse
usr/share/nmap/scripts/http-cors.nse
usr/share/nmap/scripts/http-csrf.nse
usr/share/nmap/scripts/http-date.nse
usr/share/nmap/scripts/http-default-accounts.nse
usr/share/nmap/scripts/http-devframework.nse
usr/share/nmap/scripts/http-dlink-backdoor.nse
usr/share/nmap/scripts/http-dombased-xss.nse
usr/share/nmap/scripts/http-domino-enum-passwords.nse
usr/share/nmap/scripts/http-drupal-enum-users.nse
usr/share/nmap/scripts/http-drupal-modules.nse
usr/share/nmap/scripts/http-email-harvest.nse
usr/share/nmap/scripts/http-enum.nse
usr/share/nmap/scripts/http-errors.nse
usr/share/nmap/scripts/http-exif-spider.nse
usr/share/nmap/scripts/http-favicon.nse
usr/share/nmap/scripts/http-feed.nse
usr/share/nmap/scripts/http-fileupload-exploiter.nse
usr/share/nmap/scripts/http-form-brute.nse
usr/share/nmap/scripts/http-form-fuzzer.nse
usr/share/nmap/scripts/http-frontpage-login.nse
usr/share/nmap/scripts/http-generator.nse
usr/share/nmap/scripts/http-git.nse
usr/share/nmap/scripts/http-gitweb-projects-enum.nse
usr/share/nmap/scripts/http-google-malware.nse
usr/share/nmap/scripts/http-grep.nse
usr/share/nmap/scripts/http-headers.nse
usr/share/nmap/scripts/http-huawei-hg5xx-vuln.nse
usr/share/nmap/scripts/http-icloud-findmyiphone.nse
usr/share/nmap/scripts/http-icloud-sendmsg.nse
usr/share/nmap/scripts/http-iis-short-name-brute.nse
usr/share/nmap/scripts/http-iis-webdav-vuln.nse
usr/share/nmap/scripts/http-joomla-brute.nse
usr/share/nmap/scripts/http-litespeed-sourcecode-download.nse
@@ -304,49 +394,81 @@ usr/share/nmap/scripts/http-majordomo2-dir-traversal.nse
usr/share/nmap/scripts/http-malware-host.nse
usr/share/nmap/scripts/http-method-tamper.nse
usr/share/nmap/scripts/http-methods.nse
usr/share/nmap/scripts/http-mobileversion-checker.nse
usr/share/nmap/scripts/http-ntlm-info.nse
usr/share/nmap/scripts/http-open-proxy.nse
usr/share/nmap/scripts/http-open-redirect.nse
usr/share/nmap/scripts/http-passwd.nse
usr/share/nmap/scripts/http-php-version.nse
usr/share/nmap/scripts/http-phpmyadmin-dir-traversal.nse
usr/share/nmap/scripts/http-phpself-xss.nse
usr/share/nmap/scripts/http-proxy-brute.nse
usr/share/nmap/scripts/http-put.nse
usr/share/nmap/scripts/http-qnap-nas-info.nse
usr/share/nmap/scripts/http-referer-checker.nse
usr/share/nmap/scripts/http-rfi-spider.nse
usr/share/nmap/scripts/http-robots.txt.nse
usr/share/nmap/scripts/http-robtex-reverse-ip.nse
usr/share/nmap/scripts/http-robtex-shared-ns.nse
usr/share/nmap/scripts/http-server-header.nse
usr/share/nmap/scripts/http-sitemap-generator.nse
usr/share/nmap/scripts/http-slowloris-check.nse
usr/share/nmap/scripts/http-slowloris.nse
usr/share/nmap/scripts/http-sql-injection.nse
usr/share/nmap/scripts/http-stored-xss.nse
usr/share/nmap/scripts/http-title.nse
usr/share/nmap/scripts/http-tplink-dir-traversal.nse
usr/share/nmap/scripts/http-trace.nse
usr/share/nmap/scripts/http-traceroute.nse
usr/share/nmap/scripts/http-unsafe-output-escaping.nse
usr/share/nmap/scripts/http-useragent-tester.nse
usr/share/nmap/scripts/http-userdir-enum.nse
usr/share/nmap/scripts/http-vhosts.nse
usr/share/nmap/scripts/http-virustotal.nse
usr/share/nmap/scripts/http-vlcstreamer-ls.nse
usr/share/nmap/scripts/http-vmware-path-vuln.nse
usr/share/nmap/scripts/http-vuln-cve2009-3960.nse
usr/share/nmap/scripts/http-vuln-cve2010-0738.nse
usr/share/nmap/scripts/http-vuln-cve2010-2861.nse
usr/share/nmap/scripts/http-vuln-cve2011-3192.nse
usr/share/nmap/scripts/http-vuln-cve2011-3368.nse
usr/share/nmap/scripts/http-vuln-cve2012-1823.nse
usr/share/nmap/scripts/http-vuln-cve2013-0156.nse
usr/share/nmap/scripts/http-vuln-zimbra-lfi.nse
usr/share/nmap/scripts/http-waf-detect.nse
usr/share/nmap/scripts/http-waf-fingerprint.nse
usr/share/nmap/scripts/http-wordpress-brute.nse
usr/share/nmap/scripts/http-wordpress-enum.nse
usr/share/nmap/scripts/http-wordpress-plugins.nse
usr/share/nmap/scripts/http-xssed.nse
usr/share/nmap/scripts/iax2-brute.nse
usr/share/nmap/scripts/iax2-version.nse
usr/share/nmap/scripts/icap-info.nse
usr/share/nmap/scripts/ike-version.nse
usr/share/nmap/scripts/imap-brute.nse
usr/share/nmap/scripts/imap-capabilities.nse
usr/share/nmap/scripts/informix-brute.nse
usr/share/nmap/scripts/informix-query.nse
usr/share/nmap/scripts/informix-tables.nse
usr/share/nmap/scripts/ip-forwarding.nse
usr/share/nmap/scripts/ip-geolocation-geobytes.nse
usr/share/nmap/scripts/ip-geolocation-geoplugin.nse
usr/share/nmap/scripts/ip-geolocation-ipinfodb.nse
usr/share/nmap/scripts/ip-geolocation-maxmind.nse
usr/share/nmap/scripts/ipidseq.nse
usr/share/nmap/scripts/ipv6-node-info.nse
usr/share/nmap/scripts/ipv6-ra-flood.nse
usr/share/nmap/scripts/irc-botnet-channels.nse
usr/share/nmap/scripts/irc-brute.nse
usr/share/nmap/scripts/irc-info.nse
usr/share/nmap/scripts/irc-sasl-brute.nse
usr/share/nmap/scripts/irc-unrealircd-backdoor.nse
usr/share/nmap/scripts/iscsi-brute.nse
usr/share/nmap/scripts/iscsi-info.nse
usr/share/nmap/scripts/isns-info.nse
usr/share/nmap/scripts/jdwp-exec.nse
usr/share/nmap/scripts/jdwp-info.nse
usr/share/nmap/scripts/jdwp-inject.nse
usr/share/nmap/scripts/jdwp-version.nse
usr/share/nmap/scripts/krb5-enum-users.nse
usr/share/nmap/scripts/ldap-brute.nse
@@ -354,18 +476,26 @@ usr/share/nmap/scripts/ldap-novell-getpass.nse
usr/share/nmap/scripts/ldap-rootdse.nse
usr/share/nmap/scripts/ldap-search.nse
usr/share/nmap/scripts/lexmark-config.nse
usr/share/nmap/scripts/llmnr-resolve.nse
usr/share/nmap/scripts/lltd-discovery.nse
usr/share/nmap/scripts/maxdb-info.nse
usr/share/nmap/scripts/mcafee-epo-agent.nse
usr/share/nmap/scripts/membase-brute.nse
usr/share/nmap/scripts/membase-http-info.nse
usr/share/nmap/scripts/memcached-info.nse
usr/share/nmap/scripts/metasploit-info.nse
usr/share/nmap/scripts/metasploit-msgrpc-brute.nse
usr/share/nmap/scripts/metasploit-xmlrpc-brute.nse
usr/share/nmap/scripts/mmouse-brute.nse
usr/share/nmap/scripts/mmouse-exec.nse
usr/share/nmap/scripts/modbus-discover.nse
usr/share/nmap/scripts/mongodb-brute.nse
usr/share/nmap/scripts/mongodb-databases.nse
usr/share/nmap/scripts/mongodb-info.nse
usr/share/nmap/scripts/mrinfo.nse
usr/share/nmap/scripts/ms-sql-brute.nse
usr/share/nmap/scripts/ms-sql-config.nse
usr/share/nmap/scripts/ms-sql-dac.nse
usr/share/nmap/scripts/ms-sql-dump-hashes.nse
usr/share/nmap/scripts/ms-sql-empty-password.nse
usr/share/nmap/scripts/ms-sql-hasdbaccess.nse
@@ -373,13 +503,20 @@ usr/share/nmap/scripts/ms-sql-info.nse
usr/share/nmap/scripts/ms-sql-query.nse
usr/share/nmap/scripts/ms-sql-tables.nse
usr/share/nmap/scripts/ms-sql-xp-cmdshell.nse
usr/share/nmap/scripts/msrpc-enum.nse
usr/share/nmap/scripts/mtrace.nse
usr/share/nmap/scripts/murmur-version.nse
usr/share/nmap/scripts/mysql-audit.nse
usr/share/nmap/scripts/mysql-brute.nse
usr/share/nmap/scripts/mysql-databases.nse
usr/share/nmap/scripts/mysql-dump-hashes.nse
usr/share/nmap/scripts/mysql-empty-password.nse
usr/share/nmap/scripts/mysql-enum.nse
usr/share/nmap/scripts/mysql-info.nse
usr/share/nmap/scripts/mysql-query.nse
usr/share/nmap/scripts/mysql-users.nse
usr/share/nmap/scripts/mysql-variables.nse
usr/share/nmap/scripts/mysql-vuln-cve2012-2122.nse
usr/share/nmap/scripts/nat-pmp-info.nse
usr/share/nmap/scripts/nat-pmp-mapport.nse
usr/share/nmap/scripts/nbstat.nse
@@ -405,20 +542,25 @@ usr/share/nmap/scripts/omp2-brute.nse
usr/share/nmap/scripts/omp2-enum-targets.nse
usr/share/nmap/scripts/openlookup-info.nse
usr/share/nmap/scripts/openvas-otp-brute.nse
usr/share/nmap/scripts/oracle-brute-stealth.nse
usr/share/nmap/scripts/oracle-brute.nse
usr/share/nmap/scripts/oracle-enum-users.nse
usr/share/nmap/scripts/oracle-sid-brute.nse
usr/share/nmap/scripts/ovs-agent-version.nse
usr/share/nmap/scripts/p2p-conficker.nse
usr/share/nmap/scripts/path-mtu.nse
usr/share/nmap/scripts/pcanywhere-brute.nse
usr/share/nmap/scripts/pgsql-brute.nse
usr/share/nmap/scripts/pjl-ready-message.nse
usr/share/nmap/scripts/pop3-brute.nse
usr/share/nmap/scripts/pop3-capabilities.nse
usr/share/nmap/scripts/pptp-version.nse
usr/share/nmap/scripts/qconn-exec.nse
usr/share/nmap/scripts/qscan.nse
usr/share/nmap/scripts/quake1-info.nse
usr/share/nmap/scripts/quake3-info.nse
usr/share/nmap/scripts/quake3-master-getservers.nse
usr/share/nmap/scripts/rdp-enum-encryption.nse
usr/share/nmap/scripts/rdp-vuln-ms12-020.nse
usr/share/nmap/scripts/realvnc-auth-bypass.nse
usr/share/nmap/scripts/redis-brute.nse
@@ -426,9 +568,12 @@ usr/share/nmap/scripts/redis-info.nse
usr/share/nmap/scripts/resolveall.nse
usr/share/nmap/scripts/reverse-index.nse
usr/share/nmap/scripts/rexec-brute.nse
usr/share/nmap/scripts/rfc868-time.nse
usr/share/nmap/scripts/riak-http-info.nse
usr/share/nmap/scripts/rlogin-brute.nse
usr/share/nmap/scripts/rmi-dumpregistry.nse
usr/share/nmap/scripts/rmi-vuln-classloader.nse
usr/share/nmap/scripts/rpc-grind.nse
usr/share/nmap/scripts/rpcap-brute.nse
usr/share/nmap/scripts/rpcap-info.nse
usr/share/nmap/scripts/rpcinfo.nse
@@ -440,7 +585,9 @@ usr/share/nmap/scripts/samba-vuln-cve-2012-1182.nse
usr/share/nmap/scripts/script.db
usr/share/nmap/scripts/servicetags.nse
usr/share/nmap/scripts/sip-brute.nse
usr/share/nmap/scripts/sip-call-spoof.nse
usr/share/nmap/scripts/sip-enum-users.nse
usr/share/nmap/scripts/sip-methods.nse
usr/share/nmap/scripts/skypev2-version.nse
usr/share/nmap/scripts/smb-brute.nse
usr/share/nmap/scripts/smb-check-vulns.nse
@@ -451,12 +598,16 @@ usr/share/nmap/scripts/smb-enum-sessions.nse
usr/share/nmap/scripts/smb-enum-shares.nse
usr/share/nmap/scripts/smb-enum-users.nse
usr/share/nmap/scripts/smb-flood.nse
usr/share/nmap/scripts/smb-ls.nse
usr/share/nmap/scripts/smb-mbenum.nse
usr/share/nmap/scripts/smb-os-discovery.nse
usr/share/nmap/scripts/smb-print-text.nse
usr/share/nmap/scripts/smb-psexec.nse
usr/share/nmap/scripts/smb-security-mode.nse
usr/share/nmap/scripts/smb-server-stats.nse
usr/share/nmap/scripts/smb-system-info.nse
usr/share/nmap/scripts/smb-vuln-ms10-054.nse
usr/share/nmap/scripts/smb-vuln-ms10-061.nse
usr/share/nmap/scripts/smbv2-enabled.nse
usr/share/nmap/scripts/smtp-brute.nse
usr/share/nmap/scripts/smtp-commands.nse
@@ -468,6 +619,7 @@ usr/share/nmap/scripts/smtp-vuln-cve2011-1720.nse
usr/share/nmap/scripts/smtp-vuln-cve2011-1764.nse
usr/share/nmap/scripts/sniffer-detect.nse
usr/share/nmap/scripts/snmp-brute.nse
usr/share/nmap/scripts/snmp-hh3c-logins.nse
usr/share/nmap/scripts/snmp-interfaces.nse
usr/share/nmap/scripts/snmp-ios-config.nse
usr/share/nmap/scripts/snmp-netstat.nse
@@ -480,15 +632,17 @@ usr/share/nmap/scripts/snmp-win32-users.nse
usr/share/nmap/scripts/socks-auth-info.nse
usr/share/nmap/scripts/socks-brute.nse
usr/share/nmap/scripts/socks-open-proxy.nse
usr/share/nmap/scripts/sql-injection.nse
usr/share/nmap/scripts/ssh-hostkey.nse
usr/share/nmap/scripts/ssh2-enum-algos.nse
usr/share/nmap/scripts/sshv1.nse
usr/share/nmap/scripts/ssl-cert.nse
usr/share/nmap/scripts/ssl-date.nse
usr/share/nmap/scripts/ssl-enum-ciphers.nse
usr/share/nmap/scripts/ssl-google-cert-catalog.nse
usr/share/nmap/scripts/ssl-heartbleed.nse
usr/share/nmap/scripts/ssl-known-key.nse
usr/share/nmap/scripts/sslv2.nse
usr/share/nmap/scripts/sstp-discover.nse
usr/share/nmap/scripts/stun-info.nse
usr/share/nmap/scripts/stun-version.nse
usr/share/nmap/scripts/stuxnet-detect.nse
@@ -500,12 +654,17 @@ usr/share/nmap/scripts/targets-ipv6-multicast-mld.nse
usr/share/nmap/scripts/targets-ipv6-multicast-slaac.nse
usr/share/nmap/scripts/targets-sniffer.nse
usr/share/nmap/scripts/targets-traceroute.nse
usr/share/nmap/scripts/teamspeak2-version.nse
usr/share/nmap/scripts/telnet-brute.nse
usr/share/nmap/scripts/telnet-encryption.nse
usr/share/nmap/scripts/tftp-enum.nse
usr/share/nmap/scripts/tls-nextprotoneg.nse
usr/share/nmap/scripts/traceroute-geolocation.nse
usr/share/nmap/scripts/unittest.nse
usr/share/nmap/scripts/unusual-port.nse
usr/share/nmap/scripts/upnp-info.nse
usr/share/nmap/scripts/url-snarf.nse
usr/share/nmap/scripts/ventrilo-info.nse
usr/share/nmap/scripts/versant-info.nse
usr/share/nmap/scripts/vmauthd-brute.nse
usr/share/nmap/scripts/vnc-brute.nse
@@ -513,7 +672,9 @@ usr/share/nmap/scripts/vnc-info.nse
usr/share/nmap/scripts/voldemort-info.nse
usr/share/nmap/scripts/vuze-dht-info.nse
usr/share/nmap/scripts/wdb-version.nse
usr/share/nmap/scripts/whois.nse
usr/share/nmap/scripts/weblogic-t3-info.nse
usr/share/nmap/scripts/whois-domain.nse
usr/share/nmap/scripts/whois-ip.nse
usr/share/nmap/scripts/wsdd-discover.nse
usr/share/nmap/scripts/x11-access.nse
usr/share/nmap/scripts/xdmcp-discover.nse

Binary file not shown.

View File

@@ -1,7 +0,0 @@
setenv initrd_high 90000000
fatload mmc 0:1 0x82000000 zImage-ipfire-multi
#fatload mmc 0:1 0x85000000 uInit-ipfire-multi
fatload mmc 0:1 ${fdtaddr} omap4-${board_name}.dtb
setenv bootargs video=800x600 console=tty1 rootwait smsc95xx.macaddr=$usbethaddr root=/dev/mmcblk0p3 ro
#bootz 0x82000000 0x85000000 ${fdtaddr}
bootz 0x82000000 - ${fdtaddr}

View File

@@ -1 +0,0 @@
mkimage -A arm -T script -C none -d boot.script boot.scr

4
config/u-boot/uEnv.txt Executable file
View File

@@ -0,0 +1,4 @@
uenvcmd=if test "$board" = "panda" ;then run bootpanda; else run bootbananapi; fi;
KVER=xxxKVERxxx
bootpanda=setenv initrd_high 90000000; fatload mmc 0:1 0x82000000 zImage-ipfire-multi; fatload mmc 0:1 ${fdtaddr} dtb-${KVER}-ipfire-multi/${fdtfile}; setenv bootargs video=800x600 console=tty1 rootwait smsc95xx.macaddr=$usbethaddr root=/dev/mmcblk0p3 ro; bootz 0x82000000 - ${fdtaddr};
bootbananapi=setenv fdt_high ffffffff; fatload mmc 0:1 0x46000000 zImage-ipfire-multi; fatload mmc 0:1 0x49000000 dtb-${KVER}-ipfire-multi/sun7i-a20-bananapi.dtb; setenv bootargs console=ttyS0,115200n8 rootwait root=/dev/mmcblk0p3 rootwait; bootz 0x46000000 - 0x49000000;

View File

@@ -65,7 +65,7 @@ $wlanapsettings{'SSID'} = 'IPFire';
$wlanapsettings{'HIDESSID'} = 'off';
$wlanapsettings{'ENC'} = 'wpa2'; # none / wpa1 /wpa2
$wlanapsettings{'TXPOWER'} = 'auto';
$wlanapsettings{'CHANNEL'} = '05';
$wlanapsettings{'CHANNEL'} = '6';
$wlanapsettings{'COUNTRY'} = '00';
$wlanapsettings{'HW_MODE'} = 'g';
$wlanapsettings{'PWD'} = 'IPFire-2.x';
@@ -291,7 +291,7 @@ if ( $channel =~ /\d+/ ){push(@temp,$channel);}
my @countrylist_cmd = `regdbdump /usr/lib/crda/regulatory.bin 2>/dev/null`;
# get available country codes
my @temp;
my @temp = "00";
foreach (@countrylist_cmd){
$_ =~ /country (.*):/;
$country = $1;chomp $country;

124
lfs/backports Normal file
View File

@@ -0,0 +1,124 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2015 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VERSUFIX = ipfire$(KCFG)
VER = 3.18.1-1
THISAPP = backports-$(VER)
DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
#ifeq "$(MACHINE_TYPE)" "arm"
CFLAGS += -fno-PIC
#endif
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 6cef5f2c800e12441d2cba9fa42b6a5b
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
dist:
$(PAK)
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar Jxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/backports-3.18.1-1-ipfire-build.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/backports-3.18.1-1-grsecurity.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/backports-3.18.1-1-add_usbnet_modules.patch
# DVB patches
cd $(DIR_APP) && patch -Np2 < $(DIR_SRC)/src/patches/v4l-dvb_fix_tua6034_pll.patch
# Wlan patches
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/compat-drivers-3.8.3-ath_ignore_eeprom_regdomain.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-3.14.22-iwlwifi-noibss_only_on_radar_chan.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-3.10.37-rt2800usb_add_dlink_dwa137_usbid.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/backports-3.18.1-1_add_libertas_uap.patch
# generate config
cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX)/ allmodconfig
# Disable some settings
cd $(DIR_APP) && sed -i -e "s/CPTCFG_CFG80211_DEVELOPER_WARNINGS=y/# CPTCFG_CFG80211_DEVELOPER_WARNINGS is not set/g" .config
cd $(DIR_APP) && sed -i -e "s/CPTCFG_CFG80211_CERTIFICATION_ONUS=y/# CPTCFG_CFG80211_CERTIFICATION_ONUS is not set/g" .config
cd $(DIR_APP) && sed -i -e "s/CPTCFG_CFG80211_REG_CELLULAR_HINTS=y/# CPTCFG_CFG80211_REG_CELLULAR_HINTS is not set/g" .config
cd $(DIR_APP) && sed -i -e "s/CPTCFG_CFG80211_REG_RELAX_NO_IR=y/# CPTCFG_CFG80211_REG_RELAX_NO_IR is not set/g" .config
cd $(DIR_APP) && sed -i -e "s/CPTCFG_CFG80211_INTERNAL_REGDB=y/# CPTCFG_CFG80211_INTERNAL_REGDB is not set/g" .config
cd $(DIR_APP) && sed -i -e "s/CPTCFG_CFG80211_DEFAULT_PS=y/# CPTCFG_CFG80211_DEFAULT_PS is not set/g" .config
cd $(DIR_APP) && sed -i -e "s/CPTCFG_NFC=m/# CPTCFG_NFC is not set/g" .config
# Disable some modules (build fail)
cd $(DIR_APP) && sed -i -e "s/CPTCFG_VIDEO_VIA_CAMERA=m/# CPTCFG_VIDEO_VIA_CAMERA is not set/g" .config
# Disable DEBUG
cd $(DIR_APP) && sed -i -e "s/.*DEBUG=y/# & is not set/g" .config
cd $(DIR_APP) && sed -i -e "s/.*DEBUGFS=y/# & is not set/g" .config
cd $(DIR_APP) && sed -i -e "s/=y is not set/ is not set/g" .config
# Disable OF_GRAPH (not supported by kernel 3.14)
cd $(DIR_APP) && sed -i -e "s/CONFIG_OF/CONFIG_OF_IGNORE/g" include/linux/of_graph.h
cd $(DIR_APP) && make $(MAKETUNING) KLIB=/lib/modules/$(KVER)-$(VERSUFIX)/ install
# Remove vsp1 module (not mach to our platforms)
rm -rf /lib/modules/$(KVER)-$(VERSUFIX)/kernel/drivers/media/platform/vsp1
@rm -rf $(DIR_APP)
@$(POSTBUILD)

View File

@@ -25,7 +25,7 @@
include Config
PKG_NAME = collectd
VER = 4.10.7
VER = 4.10.9
THISAPP = collectd-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -46,7 +46,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = f4193fdb5002ddac8159c88032a726bc
$(DL_FILE)_MD5 = 980dd3387508f9ad209df04a6f7a126c
install : $(TARGET)
@@ -79,6 +79,28 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0001-src-utils_mount.h-Add-stdio.h.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0002-Don-t-notify-continuously-when-MySQL-slave-SQL-threa.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0003-curl_xml.c-avoid-using-uninitalized-variable-in-erro.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0004-interface.c-FreeBSD-10-support.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0005-Revert-curl_xml.c-avoid-using-uninitalized-variable-.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0006-network-set_thread_cbs-so-we-initialize-the-right-th.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0007-apache-plugin-Call-curl_global_init-from-the-init-fu.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0008-network-comment-libgcrypt-initalization-process.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0009-Call-curl_global_init-in-_init-of-plugins-using-curl.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0010-indent-wh_init-to-be-consistent-with-the-rest-of-the.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0011-Configparser-when-we-alocate-an-empty-list-we-also-n.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0012-don-t-assume-pkg-config-is-in-PATH.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0013-add-missing-backticks-which-broke-the-build.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0014-snmp-free-snmp_pdu-struct-allocated-by-snmp_pdu_crea.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0015-curl_xml-plugin-Fixed-tautological-pointer-compariso.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0016-Add-support-for-OpenVPN-2.3.0-status-files.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0017-openvpn-plugin-Don-t-signal-an-error-when-no-clients.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0018-openvpn-Remove-boguous-file-handler-check.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0019-openvpn-Ignore-not-fully-established-connections.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0020-openvpn-Make-read-functions-robust-like-in-8516f9abb.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0021-openvpn-Fix-copy-and-paste-error.patch
cd $(DIR_APP) && patch -p1 -i $(DIR_SRC)/src/patches/collectd/0022-openvpn-Change-data-type-from-COUNTER-to-DERIVE.patch
cd $(DIR_APP) && ./configure --prefix=/usr --localstatedir=/var \
--disable-{apple_sensors,csv,ipvs,mbmon,memcached,mysql} \
--disable-{netlink,nginx,nut,perl,serial,snmp,tape,vserver,xmms} \

View File

@@ -24,10 +24,10 @@
include Config
VER = 1.1.3
VER = 3.13
THISAPP = crda-$(VER)
DL_FILE = $(THISAPP).tar.bz2
DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 29579185e06a75675507527243d28e5c
$(DL_FILE)_MD5 = 66b1b0417c1ad19f0009a5c0c0c1aebc
install : $(TARGET)
@@ -70,8 +70,9 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && USE_OPENSSL=1 make $(MAKETUNING)
cd $(DIR_APP) && USE_OPENSSL=1 make install
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/crda-3.13-crypto_use_optional.patch
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)

View File

@@ -24,10 +24,10 @@
include Config
VER = 2.72
VER = 1062667
THISAPP = dnsmasq-$(VER)
DL_FILE = $(THISAPP).tar.xz
DL_FILE = $(THISAPP)-20150201.tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
@@ -42,7 +42,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 0256e0a71e27c8d8a5c89a0d18f3cfe2
$(DL_FILE)_MD5 = ee58d033a892faa69b099ed598f500c2
install : $(TARGET)
@@ -72,13 +72,7 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/dnsmasq-2.73-remove-floor-on-edns0-packet-size-with-DNSSEC.patch
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/dnsmasq-2.73-fix-crash-in-DNSSEC-code-when-attempting-to-verify-large-RRs.patch
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/dnsmasq-2.73-make-caching-work-for-CNAMEs-pointing-to-A-AAAA-records-shadowed-in-etc-hosts.patch
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/dnsmasq-2.73-fix-problems-validating-NSEC3-and-wildcards.patch
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/dnsmasq-2.73-initialise-return-value.patch
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq/dnsmasq-2.73-bad-packet-protection.patch
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq-2.72rc2-Add-support-to-read-ISC-DHCP-lease-file.patch
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dnsmasq-Add-support-to-read-ISC-DHCP-lease-file.patch
cd $(DIR_APP) && sed -i src/config.h \
-e 's|/\* #define HAVE_IDN \*/|#define HAVE_IDN|g' \
-e 's|/\* #define HAVE_DNSSEC \*/|#define HAVE_DNSSEC|g' \
@@ -86,7 +80,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
-e 's|#define HAVE_DHCP6|//#define HAVE_DHCP6|g' \
-e 's|#define HAVE_TFTP|//#define HAVE_TFTP|g'
cd $(DIR_APP) && make CFLAGS="$(CFLAGS)" COPTS="$(COPTS)" $(MAKETUNING)
cd $(DIR_APP) && make PREFIX=/usr install
cd $(DIR_APP) && make CFLAGS="$(CFLAGS)" COPTS="$(COPTS)" \
PREFIX=/usr all install
@rm -rf $(DIR_APP)
@$(POSTBUILD)

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2012 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007-2015 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,10 +24,10 @@
include Config
VER = 20110802
VER = 20141125
THISAPP = dvb-firmwares-$(VER)
DL_FILE = $(THISAPP).tar.bz2
DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/dvb-firmwares
TARGET = $(DIR_INFO)/$(THISAPP)
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 330e19f9444a03f5338bab590ab9d728
$(DL_FILE)_MD5 = 3c7182522dc091b506d2120d71a6a360
install : $(TARGET)

View File

@@ -75,9 +75,9 @@ else
endif
# /boot: 64MB - OFFSET
# / : 700MB
# / : 750MB
S_BOOT := $(shell echo $$(( 131072 - $(S_OFFSET) )))
S_ROOT := 1433600
S_ROOT := 1536000
PADDING = 100 # MB
@@ -116,11 +116,14 @@ endif
mkdir -pv $(MNThdd)/boot
mount $(PART_BOOT) $(MNThdd)/boot
# Install MLO and uboot first
# Install Pandaboard MLO and uboot first
ifeq "$(MACHINE_TYPE)" "arm"
cp -v /boot/MLO $(MNThdd)/boot/
cp -v /boot/u-boot.img $(MNThdd)/boot/
cp -v /boot/zImage-ipfire-multi $(MNThdd)/boot/
# work around a u-boot bug not find the folders sometimes
mkdir -pv $(MNThdd)/boot/dtb-$(KVER)-ipfire-multi
mkdir -pv $(MNThdd)/boot/dtb-$(KVER)-ipfire-kirkwood
sync
umount $(MNThdd)/boot
mount $(PART_BOOT) $(MNThdd)/boot
@@ -148,8 +151,7 @@ ifeq "$(SCON)" "1"
ifeq "$(MACHINE_TYPE)" "arm"
sed -i -e "s| console=tty1 | console=ttyAMA0,115200n8 |g" $(MNThdd)/boot/cmdline.txt
sed -i -e "s| console=tty1 | console=ttyO2,115200n8 |g" $(MNThdd)/boot/boot.script
cd $(MNThdd)/boot && ./convert_bootscript
sed -i -e "s| console=tty1 | console=ttyO2,115200n8 |g" $(MNThdd)/boot/uEnv.txt
endif
endif
@@ -216,6 +218,11 @@ endif
# not copied to a block device)
dd if=/dev/zero bs=1M count=$(PADDING) >> $(IMG)
ifeq "$(MACHINE_TYPE)" "arm"
# Install u-boot for LeMaker Banana Pi into image 8KB
dd if=/usr/share/u-boot/banana_pi/u-boot-sunxi-with-spl.bin of=$(IMG) bs=1K seek=8 conv=notrunc
endif
# Compress Image
pigz -f9 < $(IMG) > $(IMAGE_FILE)
rm -rf $(IMG) $(MNThdd)

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2014 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007-2015 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
VER = 2.2
VER = 2.3
THISAPP = hostapd-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = hostapd
PAK_VER = 30
PAK_VER = 31
DEPS = ""
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 23c1f78a693c3288802d516adb7fd289
$(DL_FILE)_MD5 = 40b89c61036add0c2dd1fc10767d3b5f
install : $(TARGET)

0
lfs/initscripts Normal file → Executable file
View File

4
lfs/iw
View File

@@ -24,7 +24,7 @@
include Config
VER = 3.10
VER = 3.14
THISAPP = iw-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 07219ad06535bc270f7a8873aba6d5fa
$(DL_FILE)_MD5 = 66e41053f6fc0781b683b5b688442de6
install : $(TARGET)

12
lfs/kbd
View File

@@ -35,13 +35,18 @@ TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE) $(THISAPP)-more-programs-1.patch
objects = $(DL_FILE) $(THISAPP)-more-programs-1.patch \
kbd-latarcyrheb-16-fixed.tar.bz2 kbd-latsun-fonts.tar.bz2
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(THISAPP)-more-programs-1.patch = $(DL_FROM)/kbd-$(VER)-more-programs-1.patch
kbd-latarcyrheb-16-fixed.tar.bz2 = $(DL_FROM)/kbd-latarcyrheb-16-fixed.tar.bz2
kbd-latsun-fonts.tar.bz2 = $(DL_FROM)/kbd-latsun-fonts.tar.bz2
$(DL_FILE)_MD5 = 069d1175b4891343b107a8ac2b4a39f6
$(THISAPP)-more-programs-1.patch_MD5 = dc70180a6bc0afa2b741cd38e3cc2e18
kbd-latarcyrheb-16-fixed.tar.bz2_MD5 = 884fdbb0b952b2e3e8389a0c40a3e301
kbd-latsun-fonts.tar.bz2_MD5 = e22ee88353968df8d4a4b1bf1fa8fc31
install : $(TARGET)
@@ -74,6 +79,11 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-more-programs-1.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-backspace-1.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-gcc4_fixes-1.patch
# Extract our own fonts
cd $(DIR_APP) && tar xvfa $(DIR_DL)/kbd-latarcyrheb-16-fixed.tar.bz2
cd $(DIR_APP) && tar xvfa $(DIR_DL)/kbd-latsun-fonts.tar.bz2
cd $(DIR_APP) && ./configure --datadir=/lib/kbd --disable-nls
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install

View File

@@ -24,11 +24,11 @@
include Config
VER = 3.14.25
VER = 3.14.27
RPI_PATCHES = 3.14.25-grsec-ipfire1
A7M_PATCHES = 3.14.25-grsec-ipfire1
GRS_PATCHES = grsecurity-3.0-3.14.25-201411220954.patch.xz
RPI_PATCHES = 3.14.27-grsec-ipfire1
A7M_PATCHES = 3.14.27-grsec-ipfire1
GRS_PATCHES = grsecurity-3.0-3.14.27-201412170659.patch.xz
THISAPP = linux-$(VER)
DL_FILE = linux-$(VER).tar.xz
@@ -37,7 +37,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)
CFLAGS =
CXXFLAGS =
PAK_VER = 53
PAK_VER = 55
DEPS = ""
VERSUFIX=ipfire$(KCFG)
@@ -77,10 +77,10 @@ rpi-patches-$(RPI_PATCHES).patch.xz = $(URL_IPFIRE)/rpi-patches-$(RPI_PATCHES).
arm7-multi-patches-$(A7M_PATCHES).patch.xz = $(URL_IPFIRE)/arm7-multi-patches-$(A7M_PATCHES).patch.xz
$(GRS_PATCHES) = $(URL_IPFIRE)/$(GRS_PATCHES)
$(DL_FILE)_MD5 = 3ae910d35292706d85870c3939547123
rpi-patches-$(RPI_PATCHES).patch.xz_MD5 = b573af847c28ebed8c15a74542360db1
arm7-multi-patches-$(A7M_PATCHES).patch.xz_MD5 = 8b47b81a530db68cb2c2f6bb6418ca28
$(GRS_PATCHES)_MD5 = 6b2c8669e39304cfe647f9de16260929
$(DL_FILE)_MD5 = 0af2d0702df6ee6d7181e697e0af3481
rpi-patches-$(RPI_PATCHES).patch.xz_MD5 = 543a77d5602829f78b18788e5cb82188
arm7-multi-patches-$(A7M_PATCHES).patch.xz_MD5 = 7014ce20d9ede588ea2c244d901cbeeb
$(GRS_PATCHES)_MD5 = 66af1d48af9dce2d0eb363bbc6bfb668
install : $(TARGET)
@@ -140,6 +140,8 @@ endif
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-3.14.22-iwlwifi-noibss_only_on_radar_chan.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-3.10.37-rt2800usb_add_dlink_dwa137_usbid.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-3.10.55-rt2800usb-change_queue_warn_to_debug.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-3.14.25_rt2x00_fix_bss_bcn_num.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-3.14.25-rt5592_no_special_txop_init.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-3.10.39-add_libertas_uap.patch
# mISDN Patches

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2014 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007-2015 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
VER = 52d77db
VER = 78535e8
THISAPP = linux-firmware-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,8 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 3f6f1e78af3ee67a5540355f2ed8ba14
$(DL_FILE)_MD5 = a4cafb924fbcaeb34d1b464be0e4d089
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
# Copyright (C) 2015 IPfire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,16 +24,16 @@
include Config
VER = 1.2.9
VER = 1.6.4
THISAPP = lynis-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
DIR_APP = $(DIR_SRC)/lynis
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = lynis
PAK_VER = 4
PAK_VER = 5
DEPS = ""
###############################################################################
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 69b369173ffc0f10f021035f73857e1f
$(DL_FILE)_MD5 = dfa946388af8926bd24f772d4fa4830a
install : $(TARGET)

96
lfs/monit Normal file
View File

@@ -0,0 +1,96 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2009 Michael Tremer & Christian Schmidt #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 5.11
THISAPP = monit-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = monit
PAK_VER = 3
DEPS = ""
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = ff00f39d248ed7068932ed82211da9e6
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
dist:
@$(PAK)
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
install -v -m 644 $(DIR_SRC)/config/backup/includes/monit \
/var/ipfire/backup/addons/includes/monit
# Install default configuration
install -v -m 600 $(DIR_SRC)/config/monit/monitrc /etc
# Install start links and backup include file.
ln -sf ../init.d/monit /etc/rc.d/rc3.d/S60monit
ln -sf ../init.d/monit /etc/rc.d/rc0.d/K40monit
ln -sf ../init.d/monit /etc/rc.d/rc6.d/K40monit
@rm -rf $(DIR_APP)
@$(POSTBUILD)

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2011 IPFire Team <info@ipfire.org> #
# Copyright (C) 2015 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
VER = 6.01
VER = 6.47
THISAPP = nmap-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = nmap
PAK_VER = 6
PAK_VER = 7
DEPS = ""
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = a1a71940f238abb835dbf3ee7412bcea
$(DL_FILE)_MD5 = edfe81f6763223c0a29bfa15a8526e2a
install : $(TARGET)

View File

@@ -24,7 +24,7 @@
include Config
VER = 4.2.6p5
VER = 4.2.8
THISAPP = ntp-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 00df80a84ec9528fcfb09498075525bc
$(DL_FILE)_MD5 = 6972a626be6150db8cfbd0b63d8719e7
install : $(TARGET)

View File

@@ -24,7 +24,7 @@
include Config
VER = 1.0.1j
VER = 1.0.1k
THISAPP = openssl-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -51,7 +51,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = f7175c9cd3c39bb1907ac8bba9df8ed3
$(DL_FILE)_MD5 = d4f002bd22a56881340105028842ae1f
install : $(TARGET)
@@ -105,6 +105,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
no-mdc2 \
no-rc5 \
no-srp \
no-ssl2 \
no-ssl3 \
$(CONFIGURE_ARGS) \
-DSSL_FORBID_ENULL \
-DHAVE_CRYPTODEV \

View File

@@ -24,7 +24,7 @@
include Config
VER = 0.9.8zc
VER = 0.9.8zd
THISAPP = openssl-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 1b239eea3a60d67863e7b66700e47a16
$(DL_FILE)_MD5 = e9b9ee12f2911e1a378e2458d9bfff77
install : $(TARGET)

View File

@@ -15,7 +15,7 @@ THISAPP = squid-accounting-$(VER)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = squid-accounting
PAK_VER = 3
PAK_VER = 4
DEPS = "perl-DBI perl-DBD-SQLite perl-File-ReadBackwards perl-PDF-API2 sendEmail"

View File

@@ -24,7 +24,7 @@
include Config
VER = 2013.10
VER = 2014.04
THISAPP = u-boot-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = a076a044b64371edc52f7e562b13f6b2
$(DL_FILE)_MD5 = 6d2116d1385a66e9a59742caa9d62a54
install : $(TARGET)
@@ -84,7 +84,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
# Install pandaboard uboot as default
cd $(DIR_APP) && install MLO /boot/
cd $(DIR_APP) && install u-boot.img /boot/
cp -vf $(DIR_SRC)/config/u-boot/* /boot/
cd $(DIR_APP) && make distclean
# Wandboard Quad
@@ -111,9 +110,24 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
/usr/share/u-boot/wandboard_solo
cd $(DIR_APP) && make distclean
# LeMaker Banana Pi
-mkdir -pv /usr/share/u-boot/banana_pi
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/u-boot/sunxi/001-uboot-sunxi-509d96d4f1f602d62d36db660973249e16f9d088.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/u-boot/sunxi/002-uboot-jwrdegoede-psci-support.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/u-boot/sunxi/003-uboot-fix-gmac-not-working-reliable-on-bananapi.patch
cd $(DIR_APP) && make CROSS_COMPILE="" Bananapi_config
cd $(DIR_APP) && make CROSS_COMPILE="" HOSTCC="gcc $(CFLAGS)"
cd $(DIR_APP) && install -v -m 644 u-boot-sunxi-with-spl.bin \
/usr/share/u-boot/banana_pi
# mkimage
cd $(DIR_APP) && make CROSS_COMPILE="" HOSTCC="gcc $(CFLAGS)" tools
cd $(DIR_APP) && install -v -m 755 tools/mkimage /usr/bin
# config (uEnv.txt)
cp -vf $(DIR_SRC)/config/u-boot/* /boot/
# patch real Kernel version to uEnv.txt
sed -e "s/xxxKVERxxx/$(KVER)/g" -i /boot/uEnv.txt
@rm -rf $(DIR_APP)
@$(POSTBUILD)

View File

@@ -24,7 +24,7 @@
include Config
VER = 2013.02.13
VER = 2014.11.18
THISAPP = wireless-regdb-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 46a4aa49282ea6713c3cf28cc2fc600f
$(DL_FILE)_MD5 = d750c402c5510add7380edcb1d9b75b2
install : $(TARGET)

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2014 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007-2015 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
VER = 2.2
VER = 2.3
THISAPP = wpa_supplicant-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 238e8e888bbd558e1a57e3eb28d1dd07
$(DL_FILE)_MD5 = f2ed8fef72cf63d8d446a2d0a6da630a
install : $(TARGET)

View File

@@ -408,6 +408,7 @@ buildipfire() {
i586)
# x86-pae (Native and new XEN) kernel build
ipfiremake linux KCFG="-pae"
ipfiremake backports KCFG="-pae"
ipfiremake cryptodev KCFG="-pae"
ipfiremake e1000e KCFG="-pae"
ipfiremake igb KCFG="-pae"
@@ -416,6 +417,7 @@ buildipfire() {
# x86 kernel build
ipfiremake linux KCFG=""
ipfiremake backports KCFG=""
ipfiremake cryptodev KCFG=""
ipfiremake e1000e KCFG=""
ipfiremake igb KCFG=""
@@ -426,11 +428,13 @@ buildipfire() {
armv5tel)
# arm-rpi (Raspberry Pi) kernel build
ipfiremake linux KCFG="-rpi"
ipfiremake backports KCFG="-rpi"
ipfiremake cryptodev KCFG="-rpi"
ipfiremake linux-initrd KCFG="-rpi"
# arm multi platform (Panda, Wandboard ...) kernel build
ipfiremake linux KCFG="-multi"
ipfiremake backports KCFG="-multi"
ipfiremake cryptodev KCFG="-multi"
ipfiremake e1000e KCFG="-multi"
ipfiremake igb KCFG="-multi"
@@ -439,6 +443,7 @@ buildipfire() {
# arm-kirkwood (Dreamplug, ICY-Box ...) kernel build
ipfiremake linux KCFG="-kirkwood"
ipfiremake backports KCFG="-kirkwood"
ipfiremake cryptodev KCFG="-kirkwood"
ipfiremake e1000e KCFG="-kirkwood"
ipfiremake igb KCFG="-kirkwood"
@@ -728,6 +733,7 @@ buildipfire() {
ipfiremake iftop
ipfiremake motion
ipfiremake joe
ipfiremake monit
ipfiremake nut
ipfiremake watchdog
ipfiremake libpri

View File

@@ -17,7 +17,7 @@
. ${rc_functions}
eval $(/usr/local/bin/readhash /var/ipfire/main/settings)
FONT="LatArCyrHeb-16"
FONT="latarcyrheb-sun16"
KEYMAP_CORRECTIONS="euro2"
UNICODE="1"
BROKEN_COMPOSE="0"

View File

@@ -0,0 +1,39 @@
#!/bin/sh
########################################################################
# Begin $rc_base/init.d/monit
#
# Description : monit monitoring daemon
#
########################################################################
. /etc/sysconfig/rc
. ${rc_functions}
case "${1}" in
start)
boot_mesg "Starting monit..."
loadproc /usr/bin/monit
;;
stop)
boot_mesg "Stopping monit..."
killproc /usr/bin/monit
;;
restart)
${0} stop
sleep 1
${0} start
;;
status)
statusproc /usr/bin/monit
;;
*)
echo "Usage: ${0} {start|stop|restart|status}"
exit 1
;;
esac
# End $rc_base/init.d/monit

View File

@@ -12,7 +12,7 @@ fi
echo -en '\033%G' && kbd_mode -u
# Load default console font
setfont LatArCyrHeb-16
setfont latarcyrheb-sun16
# Silence the kernel
echo >/proc/sys/kernel/printk "1 4 1 7"

View File

@@ -216,40 +216,55 @@ static char* get_system_release() {
}
static char* center_string(const char* str, int width) {
unsigned int str_len = strlen(str);
unsigned int indent_length = (width - str_len) / 2;
char indent[indent_length + 1];
for (unsigned int i = 0; i < indent_length; i++) {
indent[i] = ' ';
}
indent[indent_length] = '\0';
if (!str)
return NULL;
char* string = NULL;
if (asprintf(&string, "%s%s", indent, str) < 0)
return NULL;
unsigned int str_len = strlen(str);
if (str_len == width) {
string = strdup(str);
} else if (str_len > width) {
string = strdup(str);
string[width - 1] = '\0';
} else {
unsigned int indent_length = (width - str_len) / 2;
char indent[indent_length + 1];
for (unsigned int i = 0; i < indent_length; i++) {
indent[i] = ' ';
}
indent[indent_length] = '\0';
if (asprintf(&string, "%s%s", indent, str) < 0)
return NULL;
}
return string;
}
#define DEFAULT_LANG "English"
#define NUM_LANGS 10
#define DEFAULT_LANG "en_US.utf8"
#define NUM_LANGS 13
static struct lang {
const char* code;
char* name;
} languages[NUM_LANGS + 1] = {
{ "da.utf8", "Danish (Dansk)" },
{ "nl_NL.utf8", "Dutch (Nederlands)" },
{ "en_US.utf8", "English" },
{ "fr_FR.utf8", "French (Français)" },
{ "de_DE.utf8", "German (Deutsch)" },
{ "pl_PL.utf8", "Polish (Polski)" },
{ "pt_BR.utf8", "Portuguese (Brasil)" },
{ "ru_RU.utf8", "Russian (Русский)" },
{ "es_ES.utf8", "Spanish (Español)" },
{ "tr_TR.utf8", "Turkish (Türkçe)" },
{ "fa.utf8", "فارسی (Persian)" },
{ "da.utf8", "Dansk (Danish)" },
{ "es.utf8", "Español (Spanish)" },
{ "en.utf8", "English" },
{ "fr.utf8", "Français (French)" },
{ "hr.utf8", "Hrvatski (Croatian)" },
{ "it.utf8", "Italiano (Italian)" },
{ "de.utf8", "Deutsch (German)" },
{ "nl.utf8", "Nederlands (Dutch)" },
{ "pl.utf8", "Polski (Polish)" },
{ "pt.utf8", "Portuguese (Brasil)" },
{ "ru.utf8", "Русский (Russian)" },
{ "tr.utf8", "Türkçe (Turkish)" },
{ NULL, NULL },
};
@@ -261,6 +276,7 @@ static struct config {
int disable_swap;
char download_url[STRING_SIZE];
char postinstall[STRING_SIZE];
char* language;
} config = {
.unattended = 0,
.serial_console = 0,
@@ -269,6 +285,7 @@ static struct config {
.disable_swap = 0,
.download_url = DOWNLOAD_URL,
.postinstall = "\0",
.language = DEFAULT_LANG,
};
static void parse_command_line(struct config* c) {
@@ -340,7 +357,6 @@ int main(int argc, char *argv[]) {
int rc = 0;
char commandstring[STRING_SIZE];
int choice;
char language[STRING_SIZE];
char message[STRING_SIZE];
char title[STRING_SIZE];
int allok = 0;
@@ -373,7 +389,8 @@ int main(int argc, char *argv[]) {
// Draw title
char* roottext = center_string(system_release, screen_cols);
newtDrawRootText(0, 0, roottext);
if (roottext)
newtDrawRootText(0, 0, roottext);
snprintf(title, sizeof(title), "%s - %s", NAME, SLOGAN);
@@ -393,7 +410,7 @@ int main(int argc, char *argv[]) {
char* langnames[NUM_LANGS + 1];
for (unsigned int i = 0; i < NUM_LANGS; i++) {
if (strcmp(languages[i].name, DEFAULT_LANG) == 0)
if (strcmp(languages[i].code, DEFAULT_LANG) == 0)
choice = i;
langnames[i] = languages[i].name;
@@ -406,10 +423,10 @@ int main(int argc, char *argv[]) {
assert(choice <= NUM_LANGS);
fprintf(flog, "Selected language: %s (%s)\n", languages[choice].name, languages[choice].code);
snprintf(language, sizeof(language), "%s", languages[choice].code);
config.language = languages[choice].code;
setenv("LANGUAGE", language, 1);
setlocale(LC_ALL, language);
setlocale(LC_ALL, config.language);
setenv("LANGUAGE", config.language, 1);
}
// Set helpline
@@ -419,7 +436,8 @@ int main(int argc, char *argv[]) {
else
helpline = center_string(_("<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"), screen_cols);
newtPushHelpLine(helpline);
if (helpline)
newtPushHelpLine(helpline);
if (!config.unattended) {
snprintf(message, sizeof(message),
@@ -770,7 +788,7 @@ int main(int argc, char *argv[]) {
}
/* Save language und local settings */
write_lang_configs(language);
write_lang_configs(config.language);
/* Build cache lang file */
snprintf(commandstring, STRING_SIZE, "/usr/sbin/chroot /harddisk /usr/bin/perl -e \"require '" CONFIG_ROOT "/lang.pl'; &Lang::BuildCacheLang\"");

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/ipfire/language/ar/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/ipfire/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/ipfire/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: cs_CZ\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/ipfire/language/da/)\n"
"MIME-Version: 1.0\n"
@@ -18,85 +18,145 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr "OK"
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr "Annuller"
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr "Jeg accepterer brugerlicensen"
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
msgstr "Vælg sprog"
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr "Vælg det sprog du ønsker at anvende under installationen."
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:323
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr "<Tab>/<Alt-Tab> mellem elementer | <Space> vælger | <F12> næste skærm"
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
"\n"
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
msgstr "Velkommen til %s installationsprogram.\n\nVælg Annuller på ethvert tidspunkt for at genstarte computeren."
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr "Start installationen"
#: main.c:339
msgid "No local source media found. Starting download."
msgstr "Fandt ikke en lokal kilde. Henter fra internettet."
#: main.c:340
msgid "Downloading installation image ..."
msgstr "Henter installationsbillede ..."
#: main.c:342
msgid "Download error"
msgstr "Fejl under hentning"
#: main.c:376
msgid "License Agreement"
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:377
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr "Licensaftale"
#: main.c:544
msgid "License not accepted!"
msgstr "Brugerlicensen ikke accepteret!"
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr "Fandt ikke en harddisk."
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr "Vælg harddisk"
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr "Vælg den eller de harddisk(e) du vil installere IPFire på. Diskene bliver først partitioneret og dernæst bliver der oprettet filsystemer.\n\nAL DATA PÅ DISKENE BLIVER SLETTET."
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr "Ingen harddisk valgt.\n\nVælg venligst en eller flere harddiske du vil installere IPFire på."
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -106,15 +166,15 @@ msgid ""
"Do you agree to continue?"
msgstr "Installationsprogrammet forbereder nu den eller de valgte harddiske:\n\n%s\n\nVil du fortsætte?"
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr "Harddisk opsætning"
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr "Slet alle data"
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -125,119 +185,146 @@ msgid ""
"Do you agree to continue?"
msgstr "Installationsprogrammet vil nu opsætte RAID konfigurationen på de valgte harddiske:\n\n%s\n%s\n\nVil du fortsætte?"
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr "RAID opsætning"
#: main.c:466
msgid "You disk configuration is currently not supported."
msgstr "Din harddisk konfiguration understøttes ikke pt."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr "Din harddisk er for lille."
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
msgstr "Din harddisk er meget lille, men du kan fortsætte uden en swap partition."
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr "ext4 filsystem"
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr "ext4 filsystem uden journal"
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr "XFS filsystem"
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr "ReiserFS filsystem"
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr "Vælg filsystem"
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr "Vælg venligst et filsystem:"
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr "Bygger RAID..."
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr "Kunne ikke bygge RAID."
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr "Partitionerer harddisk..."
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr "Kunne ikke partitionere harddisk."
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr "Opretter filsystemer..."
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr "Kunne ikke oprette filsystemer."
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr "Kunne ikke forbinde til filsystemer."
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr "Installerer systemet..."
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr "Kunne ikke installere systemet."
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr "Installerer sprog arkivet..."
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr "Kunne ikke installere sprog arkivet."
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr "Installerer bootloader..."
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
msgstr "Kunne ikke gemme til /etc/default/grub."
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr "Kunne ikke installere bootloader."
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
msgstr "%s blev installeret korrekt!\n\nFjern venligst installationsmedier fra systemet og vælg Genstart. Efter genstart bliver du bedt om at opsætte netværket og system kodeord. Efter opsætningen, besøg da https://%s:444 (eller hvad du navngav %s) fra din internet browser for at anvende web konsollen."
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr "Tillykke!"
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr "Genstart"
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""
msgstr "Installationen fejlede. Vælg Ok for at genstarte."

View File

@@ -4,14 +4,15 @@
#
# Translators:
# Michael Tremer <michael.tremer@ipfire.org>, 2014
# Peter Cloudstone <rmg-mainz@web.de>, 2014
# Stefan Schantl <stefan.schantl@ipfire.org>, 2014
msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 16:04+0000\n"
"Last-Translator: Stefan Schantl <stefan.schantl@ipfire.org>\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-07 15:02+0000\n"
"Last-Translator: Peter Cloudstone <rmg-mainz@web.de>\n"
"Language-Team: German (http://www.transifex.com/projects/p/ipfire/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -19,31 +20,40 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr "OK"
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr "Abbrechen"
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr "Ich akzeptiere die Lizenz"
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr "Warnung: Automatische Installation startet in 10 Sekunden..."
#: main.c:403
msgid "Language selection"
msgstr "Sprachauswahl"
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr "Wählen Sie die gewünschte Sprache für den Installationsprozess aus."
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr "Automatikmodus"
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr "<Tab>/<Alt-Tab> um zu wechseln | <Leertaste> wählt aus | <F12> nächster Bildschirm"
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -51,53 +61,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr "Willkommen zum %s Installationsprogramm.\n\nWenn Sie auf irgendeiner der folgenden Seiten 'Abbrechen' auswählen, wird der Computer neu gestartet."
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr "Installation beginnen"
#: main.c:339
msgid "No local source media found. Starting download."
msgstr "Kein lokales Quellmedium gefunden. Starte Download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr "Der Installer versucht nun, das Installationsimage herunterzuladen."
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr "Kein Quelllaufwerk gefunden.\n\nBitte versuchen Sie, das erforderliche Installationsabbild herunterzuladen."
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr "Bitte stellen Sie sicher, dass der Computer mit einem Netzwerk verbunden ist, danach wird das Installationsprogramm versuchen, eine IP-Adresse zu erhalten."
#: main.c:460
msgid "Download installation image"
msgstr "Installationsabbild wird heruntergeladen"
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr "Versuche, Netzwerk (DHCP) zu starten..."
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr "Das Netzwerk konnte nicht gestartet werden, es ist aber für das Fortfahren erforderlich.\n\nBitte verbinden Sie den Computer mit einem Netzwerk mit DHCP und versuchen Sie es erneut."
#: main.c:487 main.c:516
msgid "Retry"
msgstr "Erneut versuchen"
#: main.c:501
msgid "Downloading installation image..."
msgstr "Lade Installationsimage herunter..."
#: main.c:342
msgid "Download error"
msgstr "Fehler beim Download"
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr "MD5-Prüfsummen stimmen nicht überein"
#: main.c:376
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr "Das Installationsabbild konnte nicht heruntergeladen werden.\nGrund: %s\n\n%s"
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr "Konnte %s nicht auf %s mounten:\n%s\n"
#: main.c:543
msgid "License Agreement"
msgstr "Lizenzvereinbarung"
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr "Lizenz nicht akzeptiert!"
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr "Es wurde keine Festplatte gefunden."
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr "Festplattenauswahl"
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr "Wählen Sie die Festplatte(n) auf denen IPFire installiert werden soll. Diese wird/werden zuerst partitioniert und danach mit einem Dateisystem ausgestattet.\n\nSÄMTLICHE DATEN AUF DER FESTPLATTE GEHEN VERLOREN."
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr "Keine Festplatte ausgewählt.\n\nBitte wählen Sie eine oder mehrere Festplatten auf denen IPFire installiert werden soll aus."
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -107,15 +168,15 @@ msgid ""
"Do you agree to continue?"
msgstr "Das Installationsprogramm wird die folgende Festplatte nun vorbereiten:\n\n%s\n\nMöchten Sie damit fortfahren?"
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr "Disk-Setup"
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr "Alle Daten löschen"
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -126,119 +187,146 @@ msgid ""
"Do you agree to continue?"
msgstr "Das Installationsprogramm wird nun einen RAID Verbund auf den folgenden Festplatten erstellen:\n\n%s\n%s\n\nMöchten Sie damit fortfahren?"
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr "RAID-Setup"
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr "Die gewählte Festplattenkonstellation wird momentan nicht unterstützt."
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr "Ihre Festplatte ist zu klein."
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr "Die gewählte Festplatte ist sehr klein, die Installation kann aber ohne Swap Partition fortgesetzt werden."
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr "ext4-Dateisystem"
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr "ext4-Dateisystem ohne Journal"
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr "XFS-Dateisystem"
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr "ReiserFS-Dateisystem"
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr "Dateisystemauswahl"
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr "Bitte wählen Sie ein Dateisystem:"
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr "Erstelle RAID..."
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr "Das RAID konnte nicht erstellt werden."
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr "Partitioniere die Festplatte..."
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr "Die Festplatte konnte nicht partitioniert werden."
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr "Erstelle Dateisysteme..."
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr "Die Dateisysteme konnten nicht erstellt werden."
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr "Die Dateisysteme konnten nicht eingehangen werden."
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr "Installiere das System..."
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr "Das System konnte nicht installiert werden."
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr "Installiere den Sprachdateicache..."
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr "Der Sprachdateicache konnte nicht erstellt werden."
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr "Installiere den Bootloader..."
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr "/etc/default/grub konnte nicht geschrieben werden."
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr "Der Bootloader konnte nicht installiert werden."
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr "Eine Sicherungskopie wurde auf dem Installationsmedium gefunden.\n\nMöchten Sie die Sicherungskopie wiederherstellen?"
#: main.c:827
msgid "Yes"
msgstr "Ja"
#: main.c:827
msgid "No"
msgstr "Nein"
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr "Bei der Wiederherstellung der Sicherungskopie trat ein Fehler auf."
#: main.c:869
msgid "Running post-install script..."
msgstr "Führe Post-Installations-Skripte aus..."
#: main.c:870
msgid "Post-install script failed."
msgstr "Post-Installations-Skript fehlgeschlagen."
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr "%s wurde erfolgreich installiert.\n\nEntfernen Sie bitte alle Installionsmedian aus dem Computer und drücken Sie den \"Neustarten\" Knopf . \n\nNach dem erfolgten Neustart wird das Setup-Programm gestartet, in dem Sie Netzwerkkarten und die Systempasswörter konfigurieren können. Sobald dies fertiggestellt ist, können Sie in Ihrem Webbrowser die Weboberfläche mit https://%s:444 (oder welchen Namen Sie Ihrem %s auch immer gegeben haben) erreichen."
msgstr "%s wurde erfolgreich installiert.\n\nEntfernen Sie bitte alle Installionsmedien aus dem Computer und drücken Sie \"Neustarten\". \n\nNach dem erfolgten Neustart wird das Setup-Programm gestartet, in dem Sie Netzwerkkarten und die Systempasswörter konfigurieren können. Sobald dies fertiggestellt ist, können Sie in Ihrem Webbrowser die Weboberfläche über https://%s:444 (oder welchen Namen Sie Ihrem %s auch immer gegeben haben) erreichen."
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr "Herzlichen Glückwunsch!"
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr "Neustarten"
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr "Installation fehlgeschlagen. Drücken Sie \"OK\" für einen Neustart des Systems."

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Greek (Greece) (http://www.transifex.com/projects/p/ipfire/language/el_GR/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: el_GR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/ipfire/language/es/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-12 18:37+0000\n"
"Last-Translator: Khalil Delavaran <khalil.delavaran@gmail.com>\n"
"Language-Team: Persian (http://www.transifex.com/projects/p/ipfire/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,85 +18,145 @@ msgstr ""
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr "بله"
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr "نمی خواهم"
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr "من این پروانه را می پذیرم."
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr "گوشزد: برپاسازی خودکار تا 10 ثانیه دیگر شروع می شود..."
#: main.c:403
msgid "Language selection"
msgstr ""
msgstr "گزینش زبان"
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
msgstr "گزینش زبان شما برای بکارگیری در برپاسازی."
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr "حالت خودکار"
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr "<Tab>/<Alt-Tab> میان عنصری | <Space> گزینش | <F12> برای برگه پسین"
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
"\n"
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
msgstr "به برنامه برپا سازی %s خوش آمدید.\n\nبرای راه اندازی دوباره کامپیوتر، نمی خواهم را در هر صفحه ای می توانید گزینش کنید."
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr "آغاز برپا سازی"
#: main.c:339
msgid "No local source media found. Starting download."
msgstr "هیچ رسانه محلی یافت نشد. دانلود آغاز شد."
#: main.c:340
msgid "Downloading installation image ..."
msgstr "در حال دانلود ایمیج برای برپا سازی..."
#: main.c:342
msgid "Download error"
msgstr "ایراد در دانلود"
#: main.c:376
msgid "License Agreement"
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:377
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:460
msgid "Download installation image"
msgstr "دانلود ایمیج برپاسازی"
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr "دوباره"
#: main.c:501
msgid "Downloading installation image..."
msgstr "در حال دانلود ایمیج برای برپا سازی..."
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr "ایمیج برپاسازی را نمی توان دانلود کرد.\nزیرا: %s\n\n%s"
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr "نمی توان %s را به %s مونت کرد:\n%s\n"
#: main.c:543
msgid "License Agreement"
msgstr "موافقنامه"
#: main.c:544
msgid "License not accepted!"
msgstr "پروانه پذیرفته نشد!"
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr "هارد دیسک یافت نشد."
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr "گزینش دیسک"
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr "دیسک (های) را برای برپاسازی IPFire گزینش کنید. نخست آنها را پارنیشین بندی کرده، و سپس، سیستم فایلی برای پارتیشن ها برگزینید.\n\nهمه داده های دیسک پاک می شوند."
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr "هیچ دیسکی گزینش نشده است.\n\nخواهشمند است یک دیسک یا بیشتر را برای برپا سازی IPFire گزینش کنید."
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -106,15 +166,15 @@ msgid ""
"Do you agree to continue?"
msgstr "آماده سازی دیسک سخت برای برپا سازی برنامه :\n\n%s\n\nآیا شما گرایش به ادامه دارید؟"
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr "پیکربندی دیسک"
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr "پاک کردن همه داده ها"
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -125,119 +185,146 @@ msgid ""
"Do you agree to continue?"
msgstr "پیکربندی RAID بر روی هارد دیسکهای گزینش شده برای برپا سازی برنامه\n\n%s\n%s\n\nآیا شما گرایش به ادامه دارید؟"
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr "پیکربندی RAID"
#: main.c:466
msgid "You disk configuration is currently not supported."
msgstr "پیکربندی دیسک شما پشتیبانی نمی شود."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr "هارد دیسک شما بسیار کوچک است."
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
msgstr "هارد دیسک شما بسیار کوچک است، ولی می توانید بدون ساخت swap پارتیشن ادامه دهید."
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr "فایل سیستم ext4"
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr "سیستم فایل ext4 بدون روزنامه"
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr "فایل سیستم XFS"
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr "فایل سیستم RaiserFS"
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr "گزینش فایل سیستم"
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr "خواهشمند است فایل سیستم خود را گزینش کنید:"
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr "ساخت RAID..."
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr "ناتوانی در ساخت RAID."
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr "پارتیشن بندی دیسک..."
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr "ناتوانی در پارتیشین بندی دیسک."
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr "ساخت سیستم فایل..."
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr "ناتوانی در ساخت سیستم فایل."
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr "ناتوانی در مونت کردن سیستم فایل."
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr "برپا سازی سیستم..."
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr "ناتوانی در برپاسازی سیستم."
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr "در حال برپا سازی کش زبان..."
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr "ناتوانی در برپا سازی کش زبان."
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr "برپا سازی بوت لودر..."
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
msgstr "نمی توان /etc/default/grub را برای ویرایش باز کرد."
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr "ناتوانی در برپا سازی بوت لودر."
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr "بله"
#: main.c:827
msgid "No"
msgstr "خیر"
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
msgstr "%s برپا سازی شده است!\n\nخواهشمند است هر برپاسازی میانه ای از سیستم را پاک کنید و دکمه ریبوت را بزنید. پس از یک بار ریستارت سیستم، شما به پرسش های پیکربندی شبکه و گذر واژه سیستم پاسخ دهید. سپس برای پیکربندی پیشخوان وب، باید در مرورگر خود آدرس https://%s:444 (یا هر نامیکه گزینشی شما %s )را بنویسید."
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr "شادباش می گوییم!"
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr "ریبوت"
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""
msgstr "برپا سازی شکست خورد. برای راه اندازی دوباره بلی را فشار دهید."

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: French (http://www.transifex.com/projects/p/ipfire/language/fr/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

329
src/installer/po/hr.po Normal file
View File

@@ -0,0 +1,329 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR The IPFire Project (www.ipfire.org)
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/ipfire/language/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr "OK"
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr "Otkazati"
#: main.c:176
msgid "I accept this license"
msgstr "Prihvaćam ovu licencu"
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr "Odabir jezika"
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr "Odaberite jezik koji želite koristiti za instalaciju."
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr "<Tab>/<Alt-Tab> Između odabira | <Space> Izaberi | <F12> Idući ekran"
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
"\n"
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr "Dobrodošli u %s instalacijski programa..\n\nOdabirom Otkazati na bilo kojem od sljedećih ekranima će se ponovno pokrenuti računalo."
#: main.c:428
msgid "Start installation"
msgstr "Pokrenite instalaciju"
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr "Ugovor o licenci"
#: main.c:544
msgid "License not accepted!"
msgstr "Licenca nije prihvaćena!"
#: main.c:566
msgid "No hard disk found."
msgstr "Tvrdi disk nije pronađen."
#: main.c:587
msgid "Disk Selection"
msgstr "Izbor diska"
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr "Odaberite disk(ove) na koje želite instalirati IPFire. Prvo će biti podijeljeni, a zatim particije će se datotečni sustav staviti na njih.\n\nSVI PODACI NA DISKU ĆE BITI UNIŠTENI!"
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr "Disk nije izabran. \n\nOdaberite jedan ili više diskova na koje želite instalirati na IPFire."
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
"\n"
" %s\n"
"\n"
"Do you agree to continue?"
msgstr "Instalacijski program će sada pripremiti odabrani tvrdi disk:\n\n %s\n\nSlažete li da nastavimo?"
#: main.c:619
msgid "Disk Setup"
msgstr "Postavke diska"
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr "Izbriši sve podatke"
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
"\n"
" %s\n"
" %s\n"
"\n"
"Do you agree to continue?"
msgstr "Instalacijski program će se sada postaviti RAID konfiguraciju na odabranim tvrdim diskovima:\n\n %s\n %s\n\nSlažete li da nastavimo?"
#: main.c:629
msgid "RAID Setup"
msgstr "Postavljanje RAIDa"
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:655
msgid "Your harddisk is too small."
msgstr "Vaš tvrdi disk je premali."
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr "Vaš tvrdi disk je dosta mali, ali možete nastaviti bez swap particije."
#: main.c:684
msgid "ext4 Filesystem"
msgstr "ext4 datotečni sustav"
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr "ext4 datotečni sustav bez journal-a"
#: main.c:686
msgid "XFS Filesystem"
msgstr "XFS datotečni sustav"
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr "ReiserFS datotečni sustav"
#: main.c:701
msgid "Filesystem Selection"
msgstr "Izabir datotečnog sustava"
#: main.c:701
msgid "Please choose your filesystem:"
msgstr "Molimo odaberite svoj datotečni sustav:"
#: main.c:712
msgid "Building RAID..."
msgstr "Izgradnja RAIDa..."
#: main.c:716
msgid "Unable to build the RAID."
msgstr "Nije moguće izgraditi RAID."
#: main.c:728
msgid "Partitioning disk..."
msgstr "Particioniranje diska ..."
#: main.c:732
msgid "Unable to partition the disk."
msgstr "Nije moguće particionirati disk."
#: main.c:739
msgid "Creating filesystems..."
msgstr "Izrada datotečnog sustava ..."
#: main.c:743
msgid "Unable to create filesystems."
msgstr "Nije moguće stvoriti datotečni sustav."
#: main.c:749
msgid "Unable to mount filesystems."
msgstr "Nije moguće montirati datotečni sustav."
#: main.c:760
msgid "Installing the system..."
msgstr "Instaliranje sustava..."
#: main.c:761
msgid "Unable to install the system."
msgstr "Nije moguće instalirati sustav."
#: main.c:777
msgid "Installing the language cache..."
msgstr "Instaliranje cache-a jezika..."
#: main.c:778
msgid "Unable to install the language cache."
msgstr "Nije moguće instalirati cache jezika."
#: main.c:783
msgid "Installing the bootloader..."
msgstr "Instaliranje bootloadera..."
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr "Ne mogu otvoriti /etc/default/grub grub za pisanje."
#: main.c:812
msgid "Unable to install the bootloader."
msgstr "Nije moguće instalirati bootloader."
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr "%s uspješno je instaliran!\n\nMolimo uklonite sve instalacijske medije iz tog sustava i pritisnite gumb ponovno podizanje sustava. Nakon što je sustav ponovno podigne, od vas će biti zatraženo postavljanje mreže i lozinke sustava. Nakon toga, trebali usmjerite svoj web preglednik nahttps://%s:444 (ili koje god ste nazvali vaš %s) za postavke preko weba."
#: main.c:882
msgid "Congratulations!"
msgstr "Čestitamo!"
#: main.c:882
msgid "Reboot"
msgstr "Ponovno pokretanje"
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr "Postavljanje nije uspjelo. Pritisnite OK za ponovno podizanje sustava."

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/ipfire/language/hu/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/ipfire/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -3,13 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Gabriele, 2014
# luX <lucianocataldo@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-12-06 18:41+0000\n"
"Last-Translator: Gabriele\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/ipfire/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -17,85 +19,145 @@ msgstr ""
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
msgstr "OK"
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
msgstr "Annulla"
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
msgstr "Accetto questa licenza"
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr "Attenzione: L'installazione automatica inizierà tra 10 secondi..."
#: main.c:403
msgid "Language selection"
msgstr ""
msgstr "Scelta della lingua"
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
msgstr "Selezionare la lingua che si desidera utilizzare per l'installazione."
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr "Modalità automatico"
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
msgstr "<Tab>/<Alt-Tab> tra elementi | <Space> seleziona | <F12> schermata successiva"
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
"\n"
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
msgstr "Benvenuti nel programma di installazione %s.\n\nSelezionando Annulla su una delle seguenti schermate si riavvia il computer."
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
msgstr "Avvio installazione"
#: main.c:339
msgid "No local source media found. Starting download."
msgstr ""
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr "Il programma di installazione proverà ora a scaricare l'immagine di installazione."
#: main.c:340
msgid "Downloading installation image ..."
msgstr ""
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr "Nessuna unità di origine trovata.\n\nPuoi provare a scaricare l'immagine d'installazione richiesta."
#: main.c:342
msgid "Download error"
msgstr ""
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr "Per piacere assicurati di collegare il tuo computer ad una rete e il programma d'installazione proverà ad acquisire un indirizzo IP."
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr "Scaricamento immagine d'installazione"
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr "Provo ad avviare la rete (DHCP)..."
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr "Non è stato possibile avviare la rete, ma è richiesto per continuare l'installazione.\n\nPer piacere collega il tuo computer ad una rete con un server DHCP e riprova."
#: main.c:487 main.c:516
msgid "Retry"
msgstr "Riprova"
#: main.c:501
msgid "Downloading installation image..."
msgstr "Scaricamento immagine di installazione..."
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr "Checksum MD5 non corrispondente"
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr "Non è stato possibile scaricare l'immagine di installazione.\nMotivo: %s\n\n%s"
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr "Impossibile montare %s su %s:\n %s\n"
#: main.c:543
msgid "License Agreement"
msgstr ""
msgstr "Contratto di licenza"
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
msgstr "Licenza non accettata!"
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
msgstr "Nessun Hard Disk trovato."
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
msgstr "Selezione disco"
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
msgstr "Selezionare il disco su cui si desidera installare IPFire. In primo luogo verrà partizionato, e quindi le partizioni avranno un filesystem.\n\nTUTTI I DATI SUL DISCO VERRANNO DISTRUTTI."
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
msgstr "Non è stato selezionato alcun disco.\n\nSi prega di selezionare uno o più dischi su cui si desidera installare IPFire."
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -103,17 +165,17 @@ msgid ""
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
msgstr "Il programma di installazione preparerà l'hard disk prescelto.\n\n%s\n\nSiete d'accordo di continuare?"
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
msgstr "Disco di Installazione"
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
msgstr "Elimina tutti i dati"
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -122,121 +184,148 @@ msgid ""
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
msgstr "Il programma di installazione configurerà il RAID sul hard disk selezionato:\n\n%s\n%s\n\nSiete d'accordo di continuare?"
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
msgstr "Installazione RAID"
#: main.c:466
msgid "You disk configuration is currently not supported."
msgstr ""
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr "La tua configurazione disco non è attualmente supportata."
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
msgstr "Il disco rigido è troppo piccolo."
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
msgstr "Il disco rigido è molto piccolo, ma puoi continuare senza una partizione di swap."
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
msgstr "Filesystem ext4"
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
msgstr "ext4 Filesystem senza journal"
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
msgstr "Filesystem XFS"
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
msgstr "Filesystem ReiserFS"
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
msgstr "Selezione del filesystem"
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
msgstr "Scegliere il filesystem:"
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
msgstr "Costruzione RAID..."
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
msgstr "Impossibile generare il RAID."
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
msgstr "Partizionamento del disco..."
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
msgstr "Impossibile partizionare il disco."
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
msgstr "Creazione filesystem..."
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
msgstr "Impossibile creare il filesystem."
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
msgstr "Impossibile montare il filesystem."
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
msgstr "Installazione del sistema..."
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
msgstr "Impossibile installare il sistema."
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
msgstr "Installazione della cache della lingua..."
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
msgstr "Impossibile installare la cache della lingua."
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
msgstr "Installazione del bootloader..."
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
msgstr "Impossibile aprire /etc/default/grub per la scrittura."
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
msgstr "Impossibile installare il bootloader."
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr "Un file di backup è stato trovato sull'immagine di installazione.\n\nVuoi ripristinare il backup?"
#: main.c:827
msgid "Yes"
msgstr "Sì"
#: main.c:827
msgid "No"
msgstr "No"
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr "Si è verificato un errore durante il ripristino del file di backup"
#: main.c:869
msgid "Running post-install script..."
msgstr "Esecuzione degli script post-installazione..."
#: main.c:870
msgid "Post-install script failed."
msgstr "Script post-installazione fallito."
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
msgstr "%s è stato installato con successo!\n\nSi prega di rimuovere eventuali supporti di installazione da questo sistema e premere il pulsante di riavvio. Una volta che il sistema è stato riavviato verrà chiesto di impostare le password di rete e di sistema.\nDopo di che, si dovrebbe puntare il browser web su https://%s:444 (o qualunque altro nome %s) per la console di configurazione web.\n "
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
msgstr "Congratulazioni!"
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
msgstr "Riavvio"
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""
msgstr "Installazione non riuscita. Premere Ok per riavviare."

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Japanese (http://www.transifex.com/projects/p/ipfire/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

329
src/installer/po/ja_JP.po Normal file
View File

@@ -0,0 +1,329 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR The IPFire Project (www.ipfire.org)
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-07-31 09:39+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/ipfire/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ja_JP\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
"\n"
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
"\n"
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
"\n"
" %s\n"
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Khmer (Cambodia) (http://www.transifex.com/projects/p/ipfire/language/km_KH/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: km_KH\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/ipfire/language/nl/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -3,12 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# btelega <btelega@gmail.com>, 2014
# Przemysław Karpeta <przemyslaw.karpeta@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/ipfire/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -17,85 +19,145 @@ msgstr ""
"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
msgstr "OK"
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
msgstr "Anuluj"
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr "Akceptuje licencje"
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:312
#: main.c:403
msgid "Language selection"
msgstr ""
msgstr "Wybór języka"
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr "Wybierz język jaki chcesz użyć do tej instalacji."
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:323
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
msgstr "<Tab>/<Alt-Tab> przełącza między pozycjami | <Space> wybiera | <F12> następny ekran"
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
"\n"
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
msgstr "Witaj w instalatorze %s.\n\nWybranie Cancel na dowolnym z następnych ekranów spowoduje restart komputera."
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr "Rozpoczynam instalację"
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:376
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
msgstr "Umowa Licencyjna"
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
msgstr "Licencja nie została zaakceptowana !"
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
msgstr "Nie znaleziono twardego dysku."
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
msgstr "Wybór Dysku"
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
msgstr "Wybierz dysk(dyski), na którym ma zostać zainstalowany IPFire. Wybrane urządzenia zostaną podzielone na partycje, a na tych partycjach zostaną utworzone systemy plików. \n\nWSZYSTKIE ISTNIEJĄCE NA DYSKACH DANE ZOSTANĄ ZNISZCZONE."
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
msgstr "Nie wybrano żadnego dysku.\n\nWybierz jeden lub więcej dysków, na których chesz zainstalować IPFire."
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -103,17 +165,17 @@ msgid ""
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
msgstr "Instalator przygotuje teraz wybrany dysk twardy:\n\n %s\n\nCzy kontynuować ?"
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
msgstr "Konfiguracja Dysku"
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
msgstr "Usuń wszystkie dane"
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -122,121 +184,148 @@ msgid ""
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
msgstr "Instalator skonfiguruje teraz RAID na wybranych dyskach twardych:\n\n %s\n %s\n\nCzy kontynuować ?"
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr "Konfiguracja RAID"
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
msgstr "Twój dysk twardy jest za mały"
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
msgstr "Dysk twardy jest bardzo mały, ale można kontynuować bez partycji swap."
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
msgstr "ext4 Filesystem"
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
msgstr "ext4 Filesystem bez dziennika"
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
msgstr "XFS Filesystem"
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
msgstr "System plików ReiserFS"
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
msgstr "System plików został wybrany"
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
msgstr "Wybierz system plików:"
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
msgstr "Tworzenie RAID ..."
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
msgstr "Nie udało się utworzyć RAID."
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
msgstr "Partycjonowanie dysku..."
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
msgstr "Partycjonowanie dysku niemożliwe."
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
msgstr "Tworzenie systemów plików..."
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
msgstr "Nie można utworzyć systemów plików."
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
msgstr "Nie można zamontować systemów plików."
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
msgstr "Instalowanie systemu..."
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
msgstr "Nie można zainstalować systemu."
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
msgstr "Instalacja pamięci podręcznej języków."
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
msgstr "Nie można zainstalować pamięci podręcznej języków."
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
msgstr "Instalacja programu rozruchowego..."
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
msgstr "Nie można otworzyć /etc/default/grub do zapisu."
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr "Nie mogę zainstalować programu rozruchowego."
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:666
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
msgstr "Instalacja %s zakończyła się sukcesem !\n\nProsze usunąć nośnik instalacyjny z systemu i wcisnąć przycisk restartu. Po restarcie systemu pojawi się prośba o skonfigurowanie sieci i ustawienie haseł systemowych. Następnie należy oworzyć w przeglądarce WWW adres https://%s:444 (lub inną nazwę, ktora została nadana %s), aby uzyskać dostęp do internetowej konsoli konfiguracyjnej."
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
msgstr "Gratulacje!"
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
msgstr "Uruchom ponownie"
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""
msgstr "Konfiguracja nieudana. Wciśnij Ok, aby zrestartować."

View File

@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/ipfire/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -19,31 +19,40 @@ msgstr ""
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr "Ok"
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr "Cancelar"
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr "Eu aceito esta licença"
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr "<Tab>/<Alt-Tab> entre os elementos | <Space> Selecione | <F12> próxima tela"
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -51,53 +60,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr "Iniciar a instalação"
#: main.c:339
msgid "No local source media found. Starting download."
msgstr "Nenhuma fonte de mídia local encontrada. Iniciando download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
msgstr "Baixando imagem de instalação ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
msgstr "Erro de download"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr "Licença não aceita!"
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr "Nenhum disco rígido foi encontrado."
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr "Seleção de disco"
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr "Selecione o disco(s) que deseja instalar o IPFire. Primeiramente o mesmo será particionado, e então, as partições terão um sistema de arquivos que você escolher. \n\nTODOS OS DADOS NO DISCO SERÃO DESTRUÍDOS."
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr "Nenhum disco foi selecionado.\n\nPor favor seleccione um ou mais discos que você deseja instalar o IPFire."
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -107,15 +167,15 @@ msgid ""
"Do you agree to continue?"
msgstr "O programa de instalação irá agora preparar o disco rígido escolhido:\n\n%s \n\nVocê concorda em continuar?"
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr "Configuração de Discos"
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr "Apagar todos os dados"
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -126,104 +186,131 @@ msgid ""
"Do you agree to continue?"
msgstr "O programa de instalação ira agora definir uma configuração de RAID nos discos rígidos selecionados:\n\n%s\n%s\n \nVocê concorda continuar?"
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr "Configuração de RAID"
#: main.c:466
msgid "You disk configuration is currently not supported."
msgstr "Sua configuração de disco não é suportada atualmente."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr "Seu disco rígido é muito pequeno."
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr "Sistema de arquivos ext4"
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr "Sistema de arquivos ext4 sem journal"
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr "Sistema de arquivos XFS"
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr "Sistema de arquivos ReiserFS"
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr "Seleção do sistema de arquivos"
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr "Por favor, escolha o seu sistema de arquivos:"
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr "Construindo o RAID..."
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr "Não foi possível construir o RAID."
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr "Particionando o disco..."
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr "Não foi possível particionar o disco."
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr "Criando o sistema de arquivos..."
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr "Não foi possível criar sistemas de arquivos."
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr "Não foi possível montar sistemas de arquivos."
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr "Instalando o sistema..."
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr "Não é possível instalar o sistema."
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr "Instalando o cache de linguagem..."
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr "Não foi possível instalar o cache de linguagem."
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr "Instalando o gerenciador de inicialização..."
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr "Não foi possível instalar o gerenciador de inicialização."
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -231,14 +318,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr "Parabéns!"
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr "Reiniciar"
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/ipfire/language/pt_PT/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: pt_PT\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/ipfire/language/ro_RO/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: ro_RO\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/ipfire/language/ru/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: ru\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

329
src/installer/po/rw.po Normal file
View File

@@ -0,0 +1,329 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR The IPFire Project (www.ipfire.org)
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Kinyarwanda (http://www.transifex.com/projects/p/ipfire/language/rw/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: rw\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
"\n"
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
"\n"
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
"\n"
" %s\n"
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Slovak (http://www.transifex.com/projects/p/ipfire/language/sk/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/ipfire/language/sq/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

329
src/installer/po/sr.po Normal file
View File

@@ -0,0 +1,329 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR The IPFire Project (www.ipfire.org)
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-07-31 09:39+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Serbian (http://www.transifex.com/projects/p/ipfire/language/sr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
"\n"
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
"\n"
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
"\n"
" %s\n"
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Swedish (http://www.transifex.com/projects/p/ipfire/language/sv/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Thai (http://www.transifex.com/projects/p/ipfire/language/th/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Turkmen (http://www.transifex.com/projects/p/ipfire/language/tk/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: tk\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -3,13 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Kudret Emre <kudretemre@hotmail.com.tr>, 2014
# Kudret Emre <kudretemre@hotmail.com.tr>, 2014
msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-12-08 17:24+0000\n"
"Last-Translator: Kudret Emre <kudretemre@hotmail.com.tr>\n"
"Language-Team: Turkish (http://www.transifex.com/projects/p/ipfire/language/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -17,85 +19,145 @@ msgstr ""
"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
msgstr "Tamam"
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
msgstr "İptal"
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
msgstr "Lisansı kabul ediyorum"
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr "Uyarı: Katılımsız kurulum 10 saniye içinde başlayacak..."
#: main.c:403
msgid "Language selection"
msgstr ""
msgstr "Dil seçimi"
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
msgstr "Yükleme için istediğiniz dili seçin."
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr "Katılımsız kurulum modu"
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
msgstr "<Tab>/<Alt-Tab> elementler arası geçiş | <Space> seç | <F12> sonraki ekran"
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
"\n"
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
msgstr "%s yükleme programına hoşgeldiniz.\n\nİlerleyen ekranların herhangi birinde İptal'e tıklamanız bilgisayarınızı yeniden başlatır."
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr "Yüklemeyi başlat"
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr "Yükleyici şimdi yükleme dosyasını indirmeyi deneyecek."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr "Hiçbir kaynak sürücüsü bulunamadı.\n\nGerekli yükleme dosyasını indirmeyi deneyebilirsiniz."
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:460
msgid "Download installation image"
msgstr "Yükleme dosyasını indir"
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr "Ağa bağlanmaya çalışılıyor (DHCP)..."
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr "Yüklemenin devam etmesi için ağ bağlantısı gereklidir fakat başlatılamıyor.\n\nLütfen makinenizi bir DHCP sunucu ile ağa bağlayıp tekrar deneyin."
#: main.c:487 main.c:516
msgid "Retry"
msgstr "Tekrar dene"
#: main.c:501
msgid "Downloading installation image..."
msgstr "Yükleme dosyası indiriliyor..."
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr "MD5 checksum uyuşmuyor"
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr "Yükleme dosyası indirilemedi.\nSebep: %s\n\n%s"
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
msgstr ""
#: main.c:342
msgid "Download error"
msgstr ""
#: main.c:376
#: main.c:543
msgid "License Agreement"
msgstr ""
msgstr "Lisans Anlaşması"
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
msgstr "Lisans kabul edilmedi!"
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
msgstr "Sabit disk bulunamadı."
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
msgstr "Disk Seçimi"
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
msgstr "IPFire'ı yüklemek istediğiniz disk(ler)i seçin. Diskler önce bölümlenecek, sonra bölümlere dosya sistemi oluşturulacaktır.\n\nDİSKTEKİ TÜM VERİLER SİLİNECEKTİR."
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
msgstr "Hiçbir disk seçilmedi.\n\nLütfen IPFire'ı yüklemek için bir veya daha fazla disk seçin."
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -103,17 +165,17 @@ msgid ""
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
msgstr "Yükleme programı şimdi seçilen diski hazırlayacak:\n\n%s\n\nDevam etmek istiyor musunuz?"
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
msgstr "Disk Kurulumu"
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
msgstr "Tüm veriyi sil"
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -122,121 +184,148 @@ msgid ""
" %s\n"
"\n"
"Do you agree to continue?"
msgstr ""
msgstr "Yükleme programı şimdi seçilen sabit disk üzerinde bir RAID yapılandırması kuracak:\n\n%s\n%s\n\nDevam etmek istiyor musunuz?"
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
msgstr "RAID Kurulumu"
#: main.c:466
msgid "You disk configuration is currently not supported."
msgstr ""
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr "Disk yapılandırmanız desteklenmiyor."
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
msgstr "Sabit diskiniz çok küçük."
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
msgstr "Sabit diskiniz çok küçük, fakat takas bölümü olmadan devam edebilirsiniz."
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
msgstr "ext4 Dosya sistemi"
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
msgstr "ext4 Dosya sistemi - günlüksüz"
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
msgstr "XFS Dosya sistemi"
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
msgstr "ReiserFS Dosya sistemi"
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
msgstr "Dosya sistemi Seçimi"
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
msgstr "Lütfen dosya sisteminizi seçin:"
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
msgstr "RAID oluşturuluyor..."
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
msgstr "RAID oluşturulamıyor."
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
msgstr "Disk bölümleniyor..."
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
msgstr "Disk bölümlendirilemiyor."
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
msgstr "Dosya sistemleri oluşturuluyor..."
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
msgstr "Dosya sistemleri oluşturulamıyor."
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
msgstr "Dosya sistemleri bağlanamıyor."
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
msgstr "Sistem yükleniyor..."
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
msgstr "Sistem yüklenemiyor."
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
msgstr "Dil ön blleği yükleniyor..."
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
msgstr "Dil ön belleği yüklenemiyor."
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
msgstr "bootloader yükleniyor..."
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
msgstr "/etc/default/grub yazma işlemi için açılamıyor."
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
msgstr "bootloader yüklenemiyor."
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr "Yükleme dosyasında bir yedekleme dosyası bulundu.\n\nYedeği geri yüklemek ister misiniz?"
#: main.c:827
msgid "Yes"
msgstr "Evet"
#: main.c:827
msgid "No"
msgstr "Hayır"
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr "Yedek dosyası geri yüklenirken bir hata oluştu."
#: main.c:869
msgid "Running post-install script..."
msgstr "post-install betiği çalıştırılıyor..."
#: main.c:870
msgid "Post-install script failed."
msgstr "post-install betiği başarısız oldu."
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
"\n"
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
msgstr "%s başarıyla yüklendi!\n\nLütfen yükleme ortamlarını bu sistemden çıkarın ve yeniden başlatma butonuna tıklayın. Sistem yeniden başlatıldığında ağ ve sistem şifrenizi ayarlamanız istenecek. Daha sonra web yapılandırma konsoluna gitmek için yarayıcınızdan https://%s:444 (veya %s yerine ne isim verdiyseniz) adresine gidin."
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
msgstr "Tebrikler!"
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
msgstr "Yeniden başlat."
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""
msgstr "Kurulum başarısız oldu. Yeniden başlatmak için Tamam'a basın."

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Ukrainian (http://www.transifex.com/projects/p/ipfire/language/uk/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: uk\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Uzbek (Latin) (http://www.transifex.com/projects/p/ipfire/language/uz@Latn/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: uz@Latn\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Vietnamese (http://www.transifex.com/projects/p/ipfire/language/vi/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: IPFire Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-08-21 15:09+0000\n"
"PO-Revision-Date: 2014-08-21 15:11+0000\n"
"POT-Creation-Date: 2014-11-05 01:29+0000\n"
"PO-Revision-Date: 2014-11-05 01:33+0000\n"
"Last-Translator: Michael Tremer <michael.tremer@ipfire.org>\n"
"Language-Team: Chinese (http://www.transifex.com/projects/p/ipfire/language/zh/)\n"
"MIME-Version: 1.0\n"
@@ -17,31 +17,40 @@ msgstr ""
"Language: zh\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: main.c:77 main.c:148 main.c:313 main.c:339 main.c:493 main.c:524 main.c:682
#: main.c:78 main.c:179 main.c:404 main.c:670 main.c:702 main.c:893
msgid "OK"
msgstr ""
#: main.c:78 main.c:446 main.c:456 main.c:493 main.c:524
#: main.c:79 main.c:460 main.c:487 main.c:516 main.c:620 main.c:630 main.c:670
#: main.c:702
msgid "Cancel"
msgstr ""
#: main.c:145
#: main.c:176
msgid "I accept this license"
msgstr ""
#: main.c:312
#: main.c:384
msgid "Warning: Unattended installation will start in 10 seconds..."
msgstr ""
#: main.c:403
msgid "Language selection"
msgstr ""
#: main.c:312
#: main.c:403
msgid "Select the language you wish to use for the installation."
msgstr ""
#: main.c:323
#: main.c:418
msgid "Unattended mode"
msgstr ""
#: main.c:420
msgid "<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: main.c:328
#: main.c:426
#, c-format
msgid ""
"Welcome to the %s installation program.\n"
@@ -49,53 +58,104 @@ msgid ""
"Selecting Cancel on any of the following screens will reboot the computer."
msgstr ""
#: main.c:330
#: main.c:428
msgid "Start installation"
msgstr ""
#: main.c:339
msgid "No local source media found. Starting download."
#: main.c:449
#, c-format
msgid "The installer will now try downloading the installation image."
msgstr ""
#: main.c:340
msgid "Downloading installation image ..."
#: main.c:452
#, c-format
msgid ""
"No source drive could be found.\n"
"\n"
"You can try downloading the required installation image."
msgstr ""
#: main.c:342
msgid "Download error"
#: main.c:456
msgid ""
"Please make sure to connect your machine to a network and the installer will"
" try connect to acquire an IP address."
msgstr ""
#: main.c:376
#: main.c:460
msgid "Download installation image"
msgstr ""
#: main.c:473
msgid "Trying to start networking (DHCP)..."
msgstr ""
#: main.c:484
msgid ""
"Networking could not be started but is required to go on with the installation.\n"
"\n"
"Please connect your machine to a network with a DHCP server and retry."
msgstr ""
#: main.c:487 main.c:516
msgid "Retry"
msgstr ""
#: main.c:501
msgid "Downloading installation image..."
msgstr ""
#: main.c:510
#, c-format
msgid "MD5 checksum mismatch"
msgstr ""
#: main.c:513
#, c-format
msgid ""
"The installation image could not be downloaded.\n"
" Reason: %s\n"
"\n"
"%s"
msgstr ""
#: main.c:528
#, c-format
msgid ""
"Could not mount %s to %s:\n"
" %s\n"
msgstr ""
#: main.c:543
msgid "License Agreement"
msgstr ""
#: main.c:377
#: main.c:544
msgid "License not accepted!"
msgstr ""
#: main.c:399
#: main.c:566
msgid "No hard disk found."
msgstr ""
#: main.c:418
#: main.c:587
msgid "Disk Selection"
msgstr ""
#: main.c:419
#: main.c:588
msgid ""
"Select the disk(s) you want to install IPFire on. First those will be partitioned, and then the partitions will have a filesystem put on them.\n"
"\n"
"ALL DATA ON THE DISK WILL BE DESTROYED."
msgstr ""
#: main.c:430
#: main.c:599
msgid ""
"No disk has been selected.\n"
"\n"
"Please select one or more disks you want to install IPFire on."
msgstr ""
#: main.c:443
#: main.c:617
#, c-format
msgid ""
"The installation program will now prepare the chosen harddisk:\n"
@@ -105,15 +165,15 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:445
#: main.c:619
msgid "Disk Setup"
msgstr ""
#: main.c:446 main.c:456
#: main.c:620 main.c:630
msgid "Delete all data"
msgstr ""
#: main.c:453
#: main.c:627
#, c-format
msgid ""
"The installation program will now set up a RAID configuration on the selected harddisks:\n"
@@ -124,104 +184,131 @@ msgid ""
"Do you agree to continue?"
msgstr ""
#: main.c:455
#: main.c:629
msgid "RAID Setup"
msgstr ""
#: main.c:466
msgid "You disk configuration is currently not supported."
#: main.c:640
msgid "Your disk configuration is currently not supported."
msgstr ""
#: main.c:480
#: main.c:655
msgid "Your harddisk is too small."
msgstr ""
#: main.c:494
#: main.c:671
msgid ""
"Your harddisk is very small, but you can continue without a swap partition."
msgstr ""
#: main.c:506
#: main.c:684
msgid "ext4 Filesystem"
msgstr ""
#: main.c:507
#: main.c:685
msgid "ext4 Filesystem without journal"
msgstr ""
#: main.c:508
#: main.c:686
msgid "XFS Filesystem"
msgstr ""
#: main.c:509
#: main.c:687
msgid "ReiserFS Filesystem"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Filesystem Selection"
msgstr ""
#: main.c:523
#: main.c:701
msgid "Please choose your filesystem:"
msgstr ""
#: main.c:534
#: main.c:712
msgid "Building RAID..."
msgstr ""
#: main.c:538
#: main.c:716
msgid "Unable to build the RAID."
msgstr ""
#: main.c:550
#: main.c:728
msgid "Partitioning disk..."
msgstr ""
#: main.c:554
#: main.c:732
msgid "Unable to partition the disk."
msgstr ""
#: main.c:561
#: main.c:739
msgid "Creating filesystems..."
msgstr ""
#: main.c:565
#: main.c:743
msgid "Unable to create filesystems."
msgstr ""
#: main.c:571
#: main.c:749
msgid "Unable to mount filesystems."
msgstr ""
#: main.c:582
#: main.c:760
msgid "Installing the system..."
msgstr ""
#: main.c:583
#: main.c:761
msgid "Unable to install the system."
msgstr ""
#: main.c:599
#: main.c:777
msgid "Installing the language cache..."
msgstr ""
#: main.c:600
#: main.c:778
msgid "Unable to install the language cache."
msgstr ""
#: main.c:605
#: main.c:783
msgid "Installing the bootloader..."
msgstr ""
#: main.c:612
#: main.c:790
msgid "Unable to open /etc/default/grub for writing."
msgstr ""
#: main.c:634
#: main.c:812
msgid "Unable to install the bootloader."
msgstr ""
#: main.c:666
#: main.c:826
msgid ""
"A backup file has been found on the installation image.\n"
"\n"
"Do you want to restore the backup?"
msgstr ""
#: main.c:827
msgid "Yes"
msgstr ""
#: main.c:827
msgid "No"
msgstr ""
#: main.c:834
msgid "An error occured when the backup file was restored."
msgstr ""
#: main.c:869
msgid "Running post-install script..."
msgstr ""
#: main.c:870
msgid "Post-install script failed."
msgstr ""
#: main.c:877
#, c-format
msgid ""
"%s was successfully installed!\n"
@@ -229,14 +316,14 @@ msgid ""
"Please remove any installation mediums from this system and hit the reboot button. Once the system has restarted you will be asked to setup networking and system passwords. After that, you should point your web browser at https://%s:444 (or what ever you name your %s) for the web configuration console."
msgstr ""
#: main.c:671
#: main.c:882
msgid "Congratulations!"
msgstr ""
#: main.c:671
#: main.c:882
msgid "Reboot"
msgstr ""
#: main.c:682
#: main.c:893
msgid "Setup has failed. Press Ok to reboot."
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,34 @@
diff -Naur backports-3.18.1-1.org/Makefile backports-3.18.1-1/Makefile
--- backports-3.18.1-1.org/Makefile 2014-12-21 22:37:13.000000000 +0100
+++ backports-3.18.1-1/Makefile 2014-12-29 15:51:19.358111370 +0100
@@ -8,9 +8,9 @@
SHELL := /bin/bash
BACKPORT_PWD := $(shell pwd)
-KMODDIR ?= updates
+KMODDIR ?= kernel
ifneq ($(origin KLIB), undefined)
-KMODPATH_ARG := "INSTALL_MOD_PATH=$(KLIB)"
+KMODPATH_ARG :=
else
KLIB := /lib/modules/$(shell uname -r)/
KMODPATH_ARG :=
diff -Naur backports-3.18.1-1.org/Makefile.real backports-3.18.1-1/Makefile.real
--- backports-3.18.1-1.org/Makefile.real 2014-12-21 22:37:13.000000000 +0100
+++ backports-3.18.1-1/Makefile.real 2014-12-29 15:51:40.934780933 +0100
@@ -92,11 +92,11 @@
@$(MAKE) -C $(KLIB_BUILD) M=$(BACKPORT_PWD) \
INSTALL_MOD_DIR=$(KMODDIR) $(KMODPATH_ARG) \
modules_install
- @./scripts/blacklist.sh $(KLIB)/ $(KLIB)/$(KMODDIR)
+# @./scripts/blacklist.sh $(KLIB)/ $(KLIB)/$(KMODDIR)
@./scripts/compress_modules.sh $(KLIB)/$(KMODDIR)
- @./scripts/check_depmod.sh
- @/sbin/depmod -a
- @./scripts/update-initramfs.sh $(KLIB)
+# @./scripts/check_depmod.sh
+# @/sbin/depmod -a
+# @./scripts/update-initramfs.sh $(KLIB)
@echo
@echo Your backported driver modules should be installed now.
@echo Reboot.

Some files were not shown because too many files have changed in this diff Show More